Class: Google::Cloud::Redis::V1::LocationMetadata
- Inherits:
-
Object
- Object
- Google::Cloud::Redis::V1::LocationMetadata
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/redis/v1/cloud_redis.rb
Overview
This location metadata represents additional configuration options for a
given location where a Redis instance may be created. All fields are output
only. It is returned as content of the
google.cloud.location.Location.metadata
field.
Defined Under Namespace
Classes: AvailableZonesEntry
Instance Attribute Summary collapse
-
#available_zones ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::Redis::V1::ZoneMetadata}
readonly
Output only.
Instance Attribute Details
#available_zones ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::Redis::V1::ZoneMetadata} (readonly)
Returns Output only. The set of available zones in the location. The map is keyed
by the lowercase ID of each zone, as defined by GCE. These keys can be
specified in location_id
or alternative_location_id
fields when
creating a Redis instance.
788 789 790 791 792 793 794 795 796 797 798 799 800 |
# File 'proto_docs/google/cloud/redis/v1/cloud_redis.rb', line 788 class LocationMetadata include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::Redis::V1::ZoneMetadata] class AvailableZonesEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |