Package com.google.appengine.v1
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 boolean
getFlexibleEnvironmentAvailable()
App Engine flexible environment is available in the given location.boolean
getSearchApiAvailable()
Output only.boolean
getStandardEnvironmentAvailable()
App Engine standard environment is available in the given location.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStandardEnvironmentAvailable
boolean getStandardEnvironmentAvailable()
App Engine standard environment is available in the given location. @OutputOnly
bool standard_environment_available = 2;
- Returns:
- The standardEnvironmentAvailable.
-
getFlexibleEnvironmentAvailable
boolean getFlexibleEnvironmentAvailable()
App Engine flexible environment is available in the given location. @OutputOnly
bool flexible_environment_available = 4;
- Returns:
- The flexibleEnvironmentAvailable.
-
getSearchApiAvailable
boolean getSearchApiAvailable()
Output only. [Search API](https://cloud.google.com/appengine/docs/standard/python/search) is available in the given location.
bool search_api_available = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The searchApiAvailable.
-
-