class Google::Apis::AppengineV1::LocationMetadata

Metadata for the given google.cloud.location.Location.

Attributes

flexible_environment_available[RW]

App Engine flexible environment is available in the given location.@OutputOnly Corresponds to the JSON property `flexibleEnvironmentAvailable` @return [Boolean]

flexible_environment_available?[RW]

App Engine flexible environment is available in the given location.@OutputOnly Corresponds to the JSON property `flexibleEnvironmentAvailable` @return [Boolean]

search_api_available[RW]

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]

search_api_available?[RW]

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]

standard_environment_available[RW]

App Engine standard environment is available in the given location.@OutputOnly Corresponds to the JSON property `standardEnvironmentAvailable` @return [Boolean]

standard_environment_available?[RW]

App Engine standard environment is available in the given location.@OutputOnly Corresponds to the JSON property `standardEnvironmentAvailable` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/appengine_v1/classes.rb, line 1830
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

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