Class: Google::Apis::AppengineV1beta5::LocationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta5::LocationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta5/classes.rb,
generated/google/apis/appengine_v1beta5/representations.rb,
generated/google/apis/appengine_v1beta5/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.
-
#standard_environment_available ⇒ Boolean
(also: #standard_environment_available?)
App Engine Standard Environment is available in the given location.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LocationMetadata
constructor
A new instance of LocationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LocationMetadata
Returns a new instance of LocationMetadata.
1809 1810 1811 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1809 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
1806 1807 1808 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1806 def flexible_environment_available @flexible_environment_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
1799 1800 1801 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1799 def standard_environment_available @standard_environment_available end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1814 1815 1816 1817 |
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1814 def update!(**args) @standard_environment_available = args[:standard_environment_available] if args.key?(:standard_environment_available) @flexible_environment_available = args[:flexible_environment_available] if args.key?(:flexible_environment_available) end |