Class: Google::Cloud::VmwareEngine::V1::LocationMetadata
- Inherits:
-
Object
- Object
- Google::Cloud::VmwareEngine::V1::LocationMetadata
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb
Overview
VmwareEngine specific metadata for the given
::Google::Cloud::Location::Location
. It is
returned as a content of the google.cloud.location.Location.metadata
field.
Defined Under Namespace
Modules: Capability
Instance Attribute Summary collapse
-
#capabilities ⇒ ::Array<::Google::Cloud::VmwareEngine::V1::LocationMetadata::Capability>
readonly
Output only.
Instance Attribute Details
#capabilities ⇒ ::Array<::Google::Cloud::VmwareEngine::V1::LocationMetadata::Capability> (readonly)
Returns Output only. Capabilities of this location.
1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 |
# File 'proto_docs/google/cloud/vmwareengine/v1/vmwareengine_resources.rb', line 1626 class LocationMetadata include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Capability of a location. module Capability # The default value. This value is used if the capability is omitted or # unknown. CAPABILITY_UNSPECIFIED = 0 # Stretch clusters are supported in this location. STRETCHED_CLUSTERS = 1 end end |