Class: Google::Apis::AppengineV1::GoogleAppengineV1betaLocationMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/appengine_v1/classes.rb,
lib/google/apis/appengine_v1/representations.rb,
lib/google/apis/appengine_v1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAppengineV1betaLocationMetadata

Returns a new instance of GoogleAppengineV1betaLocationMetadata.



1090
1091
1092
# File 'lib/google/apis/appengine_v1/classes.rb', line 1090

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#flexible_environment_availableBoolean Also known as: flexible_environment_available?

App Engine flexible environment is available in the given location.@OutputOnly Corresponds to the JSON property flexibleEnvironmentAvailable

Returns:

  • (Boolean)


1074
1075
1076
# File 'lib/google/apis/appengine_v1/classes.rb', line 1074

def flexible_environment_available
  @flexible_environment_available
end

#search_api_availableBoolean Also known as: search_api_available?

Output only. Search API (https://cloud.google.com/appengine/docs/standard/ python/search) is available in the given location. Corresponds to the JSON property searchApiAvailable

Returns:

  • (Boolean)


1081
1082
1083
# File 'lib/google/apis/appengine_v1/classes.rb', line 1081

def search_api_available
  @search_api_available
end

#standard_environment_availableBoolean Also known as: standard_environment_available?

App Engine standard environment is available in the given location.@OutputOnly Corresponds to the JSON property standardEnvironmentAvailable

Returns:

  • (Boolean)


1087
1088
1089
# File 'lib/google/apis/appengine_v1/classes.rb', line 1087

def standard_environment_available
  @standard_environment_available
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1095
1096
1097
1098
1099
# File 'lib/google/apis/appengine_v1/classes.rb', line 1095

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