Interface ListRuntimesResponse.RuntimeOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getDisplayName()
      The user facing name, eg 'Go 1.13', 'Node.js 12', etc.
      com.google.protobuf.ByteString getDisplayNameBytes()
      The user facing name, eg 'Go 1.13', 'Node.js 12', etc.
      Environment getEnvironment()
      The environment for the runtime.
      int getEnvironmentValue()
      The environment for the runtime.
      String getName()
      The name of the runtime, e.g., 'go113', 'nodejs12', etc.
      com.google.protobuf.ByteString getNameBytes()
      The name of the runtime, e.g., 'go113', 'nodejs12', etc.
      ListRuntimesResponse.RuntimeStage getStage()
      The stage of life this runtime is in, e.g., BETA, GA, etc.
      int getStageValue()
      The stage of life this runtime is in, e.g., BETA, GA, etc.
      String getWarnings​(int index)
      Warning messages, e.g., a deprecation warning.
      com.google.protobuf.ByteString getWarningsBytes​(int index)
      Warning messages, e.g., a deprecation warning.
      int getWarningsCount()
      Warning messages, e.g., a deprecation warning.
      List<String> getWarningsList()
      Warning messages, e.g., a deprecation warning.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getName

        String getName()
         The name of the runtime, e.g., 'go113', 'nodejs12', etc.
         
        string name = 1;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         The name of the runtime, e.g., 'go113', 'nodejs12', etc.
         
        string name = 1;
        Returns:
        The bytes for name.
      • getDisplayName

        String getDisplayName()
         The user facing name, eg 'Go 1.13', 'Node.js 12', etc.
         
        string display_name = 5;
        Returns:
        The displayName.
      • getDisplayNameBytes

        com.google.protobuf.ByteString getDisplayNameBytes()
         The user facing name, eg 'Go 1.13', 'Node.js 12', etc.
         
        string display_name = 5;
        Returns:
        The bytes for displayName.
      • getStageValue

        int getStageValue()
         The stage of life this runtime is in, e.g., BETA, GA, etc.
         
        .google.cloud.functions.v2beta.ListRuntimesResponse.RuntimeStage stage = 2;
        Returns:
        The enum numeric value on the wire for stage.
      • getStage

        ListRuntimesResponse.RuntimeStage getStage()
         The stage of life this runtime is in, e.g., BETA, GA, etc.
         
        .google.cloud.functions.v2beta.ListRuntimesResponse.RuntimeStage stage = 2;
        Returns:
        The stage.
      • getWarningsList

        List<String> getWarningsList()
         Warning messages, e.g., a deprecation warning.
         
        repeated string warnings = 3;
        Returns:
        A list containing the warnings.
      • getWarningsCount

        int getWarningsCount()
         Warning messages, e.g., a deprecation warning.
         
        repeated string warnings = 3;
        Returns:
        The count of warnings.
      • getWarnings

        String getWarnings​(int index)
         Warning messages, e.g., a deprecation warning.
         
        repeated string warnings = 3;
        Parameters:
        index - The index of the element to return.
        Returns:
        The warnings at the given index.
      • getWarningsBytes

        com.google.protobuf.ByteString getWarningsBytes​(int index)
         Warning messages, e.g., a deprecation warning.
         
        repeated string warnings = 3;
        Parameters:
        index - The index of the value to return.
        Returns:
        The bytes of the warnings at the given index.
      • getEnvironmentValue

        int getEnvironmentValue()
         The environment for the runtime.
         
        .google.cloud.functions.v2beta.Environment environment = 4;
        Returns:
        The enum numeric value on the wire for environment.
      • getEnvironment

        Environment getEnvironment()
         The environment for the runtime.
         
        .google.cloud.functions.v2beta.Environment environment = 4;
        Returns:
        The environment.