Package com.google.container.v1beta1
Interface ListLocationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListLocationsResponse
,ListLocationsResponse.Builder
public interface ListLocationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Location
getLocations(int index)
A full list of GKE locations.int
getLocationsCount()
A full list of GKE locations.List<Location>
getLocationsList()
A full list of GKE locations.LocationOrBuilder
getLocationsOrBuilder(int index)
A full list of GKE locations.List<? extends LocationOrBuilder>
getLocationsOrBuilderList()
A full list of GKE locations.String
getNextPageToken()
Only return ListLocationsResponse that occur after the page_token.com.google.protobuf.ByteString
getNextPageTokenBytes()
Only return ListLocationsResponse that occur after the page_token.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLocationsList
List<Location> getLocationsList()
A full list of GKE locations.
repeated .google.container.v1beta1.Location locations = 1;
-
getLocations
Location getLocations(int index)
A full list of GKE locations.
repeated .google.container.v1beta1.Location locations = 1;
-
getLocationsCount
int getLocationsCount()
A full list of GKE locations.
repeated .google.container.v1beta1.Location locations = 1;
-
getLocationsOrBuilderList
List<? extends LocationOrBuilder> getLocationsOrBuilderList()
A full list of GKE locations.
repeated .google.container.v1beta1.Location locations = 1;
-
getLocationsOrBuilder
LocationOrBuilder getLocationsOrBuilder(int index)
A full list of GKE locations.
repeated .google.container.v1beta1.Location locations = 1;
-
getNextPageToken
String getNextPageToken()
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).
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
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).
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-