class Google::Apis::AppengineV1::LocationMetadata
Metadata for the given google.cloud.location.Location.
Attributes
App Engine flexible environment is available in the given location.@OutputOnly Corresponds to the JSON property `flexibleEnvironmentAvailable` @return [Boolean]
App Engine flexible environment is available in the given location.@OutputOnly Corresponds to the JSON property `flexibleEnvironmentAvailable` @return [Boolean]
Output only. Search API (cloud.google.com/appengine/docs/standard/ python/search) is available in the given location. Corresponds to the JSON property `searchApiAvailable` @return [Boolean]
Output only. Search API (cloud.google.com/appengine/docs/standard/ python/search) is available in the given location. Corresponds to the JSON property `searchApiAvailable` @return [Boolean]
App Engine standard environment is available in the given location.@OutputOnly Corresponds to the JSON property `standardEnvironmentAvailable` @return [Boolean]
App Engine standard environment is available in the given location.@OutputOnly Corresponds to the JSON property `standardEnvironmentAvailable` @return [Boolean]
Public Class Methods
# File lib/google/apis/appengine_v1/classes.rb, line 1830 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/appengine_v1/classes.rb, line 1835 def update!(**args) @flexible_environment_available = args[:flexible_environment_available] if args.key?(:flexible_environment_available) @search_api_available = args[:search_api_available] if args.key?(:search_api_available) @standard_environment_available = args[:standard_environment_available] if args.key?(:standard_environment_available) end