class Google::Apis::ContainerV1beta1::ListLocationsResponse

ListLocationsResponse returns the list of all GKE locations and their recommendation state.

Attributes

locations[RW]

A full list of GKE locations. Corresponds to the JSON property `locations` @return [Array<Google::Apis::ContainerV1beta1::Location>]

next_page_token[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/container_v1beta1/classes.rb, line 2416
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/container_v1beta1/classes.rb, line 2421
def update!(**args)
  @locations = args[:locations] if args.key?(:locations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end