Interface LocationMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LocationMetadata,LocationMetadata.Builder
public interface LocationMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EnvironmentgetEnvironments(int index)The Cloud Function environments this location supports.intgetEnvironmentsCount()The Cloud Function environments this location supports.List<Environment>getEnvironmentsList()The Cloud Function environments this location supports.intgetEnvironmentsValue(int index)The Cloud Function environments this location supports.List<Integer>getEnvironmentsValueList()The Cloud Function environments this location supports.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEnvironmentsList
List<Environment> getEnvironmentsList()
The Cloud Function environments this location supports.
repeated .google.cloud.functions.v2alpha.Environment environments = 1;- Returns:
- A list containing the environments.
-
getEnvironmentsCount
int getEnvironmentsCount()
The Cloud Function environments this location supports.
repeated .google.cloud.functions.v2alpha.Environment environments = 1;- Returns:
- The count of environments.
-
getEnvironments
Environment getEnvironments(int index)
The Cloud Function environments this location supports.
repeated .google.cloud.functions.v2alpha.Environment environments = 1;- Parameters:
index- The index of the element to return.- Returns:
- The environments at the given index.
-
getEnvironmentsValueList
List<Integer> getEnvironmentsValueList()
The Cloud Function environments this location supports.
repeated .google.cloud.functions.v2alpha.Environment environments = 1;- Returns:
- A list containing the enum numeric values on the wire for environments.
-
getEnvironmentsValue
int getEnvironmentsValue(int index)
The Cloud Function environments this location supports.
repeated .google.cloud.functions.v2alpha.Environment environments = 1;- Parameters:
index- The index of the value to return.- Returns:
- The enum numeric value on the wire of environments at the given index.
-
-