Class: Google::Apis::ContainerV1beta1::ListLocationsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContainerV1beta1::ListLocationsResponse
 
- Defined in:
- generated/google/apis/container_v1beta1/classes.rb,
 generated/google/apis/container_v1beta1/representations.rb,
 generated/google/apis/container_v1beta1/representations.rb
Overview
ListLocationsResponse returns the list of all GKE locations and their recommendation state.
Instance Attribute Summary collapse
- 
  
    
      #locations  ⇒ Array<Google::Apis::ContainerV1beta1::Location> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A full list of GKE locations. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Only return ListLocationsResponse that occur after the page_token. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListLocationsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListLocationsResponse. 
- 
  
    
      #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) ⇒ ListLocationsResponse
Returns a new instance of ListLocationsResponse
| 1121 1122 1123 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1121 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#locations ⇒ Array<Google::Apis::ContainerV1beta1::Location>
A full list of GKE locations.
Corresponds to the JSON property locations
| 1111 1112 1113 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1111 def locations @locations end | 
#next_page_token ⇒ String
Only return ListLocationsResponse that occur after the page_token. This
value should be populated from the ListLocationsResponse.next_page_token if
that response token was set (which happens when listing more Locations than
fit in a single ListLocationsResponse).
Corresponds to the JSON property nextPageToken
| 1119 1120 1121 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1119 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1126 1127 1128 1129 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1126 def update!(**args) @locations = args[:locations] if args.key?(:locations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |