Class: Google::Apis::ContainerV1beta1::ListClustersResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContainerV1beta1::ListClustersResponse
 
 
- Defined in:
 - generated/google/apis/container_v1beta1/classes.rb,
generated/google/apis/container_v1beta1/representations.rb,
generated/google/apis/container_v1beta1/representations.rb 
Overview
ListClustersResponse is the result of ListClustersRequest.
Instance Attribute Summary collapse
- 
  
    
      #clusters  ⇒ Array<Google::Apis::ContainerV1beta1::Cluster> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of clusters in the project in the specified zone, or across all ones.
 - 
  
    
      #missing_zones  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If any zones are listed here, the list of clusters returned may be missing those zones.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListClustersResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListClustersResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListClustersResponse
Returns a new instance of ListClustersResponse
      1242 1243 1244  | 
    
      # File 'generated/google/apis/container_v1beta1/classes.rb', line 1242 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#clusters ⇒ Array<Google::Apis::ContainerV1beta1::Cluster>
A list of clusters in the project in the specified zone, or
across all ones.
Corresponds to the JSON property clusters
      1234 1235 1236  | 
    
      # File 'generated/google/apis/container_v1beta1/classes.rb', line 1234 def clusters @clusters end  | 
  
#missing_zones ⇒ Array<String>
If any zones are listed here, the list of clusters returned
may be missing those zones.
Corresponds to the JSON property missingZones
      1240 1241 1242  | 
    
      # File 'generated/google/apis/container_v1beta1/classes.rb', line 1240 def missing_zones @missing_zones end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1247 1248 1249 1250  | 
    
      # File 'generated/google/apis/container_v1beta1/classes.rb', line 1247 def update!(**args) @clusters = args[:clusters] if args.key?(:clusters) @missing_zones = args[:missing_zones] if args.key?(:missing_zones) end  |