Class: Google::Apis::ContainerV1beta1::ListLocationsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListLocationsResponse

Returns a new instance of ListLocationsResponse.



2005
2006
2007
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2005

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#locationsArray<Google::Apis::ContainerV1beta1::Location>

A full list of GKE locations. Corresponds to the JSON property locations



1995
1996
1997
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1995

def locations
  @locations
end

#next_page_tokenString

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

Returns:

  • (String)


2003
2004
2005
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2003

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2010
2011
2012
2013
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2010

def update!(**args)
  @locations = args[:locations] if args.key?(:locations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end