Package com.google.container.v1
Interface ListUsableSubnetworksResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListUsableSubnetworksResponse
,ListUsableSubnetworksResponse.Builder
public interface ListUsableSubnetworksResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
This token allows you to get the next page of results for list requests.com.google.protobuf.ByteString
getNextPageTokenBytes()
This token allows you to get the next page of results for list requests.UsableSubnetwork
getSubnetworks(int index)
A list of usable subnetworks in the specified network project.int
getSubnetworksCount()
A list of usable subnetworks in the specified network project.List<UsableSubnetwork>
getSubnetworksList()
A list of usable subnetworks in the specified network project.UsableSubnetworkOrBuilder
getSubnetworksOrBuilder(int index)
A list of usable subnetworks in the specified network project.List<? extends UsableSubnetworkOrBuilder>
getSubnetworksOrBuilderList()
A list of usable subnetworks in the specified network project.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSubnetworksList
List<UsableSubnetwork> getSubnetworksList()
A list of usable subnetworks in the specified network project.
repeated .google.container.v1.UsableSubnetwork subnetworks = 1;
-
getSubnetworks
UsableSubnetwork getSubnetworks(int index)
A list of usable subnetworks in the specified network project.
repeated .google.container.v1.UsableSubnetwork subnetworks = 1;
-
getSubnetworksCount
int getSubnetworksCount()
A list of usable subnetworks in the specified network project.
repeated .google.container.v1.UsableSubnetwork subnetworks = 1;
-
getSubnetworksOrBuilderList
List<? extends UsableSubnetworkOrBuilder> getSubnetworksOrBuilderList()
A list of usable subnetworks in the specified network project.
repeated .google.container.v1.UsableSubnetwork subnetworks = 1;
-
getSubnetworksOrBuilder
UsableSubnetworkOrBuilder getSubnetworksOrBuilder(int index)
A list of usable subnetworks in the specified network project.
repeated .google.container.v1.UsableSubnetwork subnetworks = 1;
-
getNextPageToken
String getNextPageToken()
This token allows you to get the next page of results for list requests. If the number of results is larger than `page_size`, use the `next_page_token` as a value for the query parameter `page_token` in the next request. The value will become empty when there are no more pages.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
This token allows you to get the next page of results for list requests. If the number of results is larger than `page_size`, use the `next_page_token` as a value for the query parameter `page_token` in the next request. The value will become empty when there are no more pages.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-