Class: Google::Apis::AppengineV1::LocationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1::LocationMetadata
- 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
-
#flexible_environment_available ⇒ Boolean
(also: #flexible_environment_available?)
App Engine flexible environment is available in the given location.@OutputOnly Corresponds to the JSON property
flexibleEnvironmentAvailable
. -
#search_api_available ⇒ Boolean
(also: #search_api_available?)
Output only.
-
#standard_environment_available ⇒ Boolean
(also: #standard_environment_available?)
App Engine standard environment is available in the given location.@OutputOnly Corresponds to the JSON property
standardEnvironmentAvailable
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LocationMetadata
constructor
A new instance of LocationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LocationMetadata
Returns a new instance of LocationMetadata.
1856 1857 1858 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1856 def initialize(**args) update!(**args) end |
Instance Attribute Details
#flexible_environment_available ⇒ Boolean Also known as: flexible_environment_available?
App Engine flexible environment is available in the given location.@OutputOnly
Corresponds to the JSON property flexibleEnvironmentAvailable
1840 1841 1842 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1840 def flexible_environment_available @flexible_environment_available end |
#search_api_available ⇒ Boolean 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
1847 1848 1849 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1847 def search_api_available @search_api_available end |
#standard_environment_available ⇒ Boolean Also known as: standard_environment_available?
App Engine standard environment is available in the given location.@OutputOnly
Corresponds to the JSON property standardEnvironmentAvailable
1853 1854 1855 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1853 def standard_environment_available @standard_environment_available end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1861 1862 1863 1864 1865 |
# File 'lib/google/apis/appengine_v1/classes.rb', line 1861 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 |