Class: Google::Apis::RedisV1beta1::GoogleCloudRedisV1beta1LocationMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::RedisV1beta1::GoogleCloudRedisV1beta1LocationMetadata
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/redis_v1beta1/classes.rb,
generated/google/apis/redis_v1beta1/representations.rb,
generated/google/apis/redis_v1beta1/representations.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.
Instance Attribute Summary collapse
- 
  
    
      #available_zones  ⇒ Hash<String,Google::Apis::RedisV1beta1::GoogleCloudRedisV1beta1ZoneMetadata> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudRedisV1beta1LocationMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudRedisV1beta1LocationMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudRedisV1beta1LocationMetadata
Returns a new instance of GoogleCloudRedisV1beta1LocationMetadata
      118 119 120  | 
    
      # File 'generated/google/apis/redis_v1beta1/classes.rb', line 118 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#available_zones ⇒ Hash<String,Google::Apis::RedisV1beta1::GoogleCloudRedisV1beta1ZoneMetadata>
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.
Corresponds to the JSON property availableZones
      116 117 118  | 
    
      # File 'generated/google/apis/redis_v1beta1/classes.rb', line 116 def available_zones @available_zones end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      123 124 125  | 
    
      # File 'generated/google/apis/redis_v1beta1/classes.rb', line 123 def update!(**args) @available_zones = args[:available_zones] if args.key?(:available_zones) end  |