Class: Google::Apis::AppengineV1alpha::LocationMetadata

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ LocationMetadata

Returns a new instance of LocationMetadata.



560
561
562
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 560

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)


544
545
546
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 544

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)


551
552
553
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 551

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)


557
558
559
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 557

def standard_environment_available
  @standard_environment_available
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



565
566
567
568
569
# File 'lib/google/apis/appengine_v1alpha/classes.rb', line 565

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