Package com.google.appengine.v1
Interface ListInstancesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListInstancesResponse,ListInstancesResponse.Builder
public interface ListInstancesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InstancegetInstances(int index)The instances belonging to the requested version.intgetInstancesCount()The instances belonging to the requested version.List<Instance>getInstancesList()The instances belonging to the requested version.InstanceOrBuildergetInstancesOrBuilder(int index)The instances belonging to the requested version.List<? extends InstanceOrBuilder>getInstancesOrBuilderList()The instances belonging to the requested version.StringgetNextPageToken()Continuation token for fetching the next page of results.com.google.protobuf.ByteStringgetNextPageTokenBytes()Continuation token for fetching the next page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getInstancesList
List<Instance> getInstancesList()
The instances belonging to the requested version.
repeated .google.appengine.v1.Instance instances = 1;
-
getInstances
Instance getInstances(int index)
The instances belonging to the requested version.
repeated .google.appengine.v1.Instance instances = 1;
-
getInstancesCount
int getInstancesCount()
The instances belonging to the requested version.
repeated .google.appengine.v1.Instance instances = 1;
-
getInstancesOrBuilderList
List<? extends InstanceOrBuilder> getInstancesOrBuilderList()
The instances belonging to the requested version.
repeated .google.appengine.v1.Instance instances = 1;
-
getInstancesOrBuilder
InstanceOrBuilder getInstancesOrBuilder(int index)
The instances belonging to the requested version.
repeated .google.appengine.v1.Instance instances = 1;
-
getNextPageToken
String getNextPageToken()
Continuation token for fetching the next page of results.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Continuation token for fetching the next page of results.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-