Package com.google.appengine.v1
Interface ListServicesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListServicesResponse
,ListServicesResponse.Builder
public interface ListServicesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Continuation token for fetching the next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
Continuation token for fetching the next page of results.Service
getServices(int index)
The services belonging to the requested application.int
getServicesCount()
The services belonging to the requested application.List<Service>
getServicesList()
The services belonging to the requested application.ServiceOrBuilder
getServicesOrBuilder(int index)
The services belonging to the requested application.List<? extends ServiceOrBuilder>
getServicesOrBuilderList()
The services belonging to the requested application.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getServicesList
List<Service> getServicesList()
The services belonging to the requested application.
repeated .google.appengine.v1.Service services = 1;
-
getServices
Service getServices(int index)
The services belonging to the requested application.
repeated .google.appengine.v1.Service services = 1;
-
getServicesCount
int getServicesCount()
The services belonging to the requested application.
repeated .google.appengine.v1.Service services = 1;
-
getServicesOrBuilderList
List<? extends ServiceOrBuilder> getServicesOrBuilderList()
The services belonging to the requested application.
repeated .google.appengine.v1.Service services = 1;
-
getServicesOrBuilder
ServiceOrBuilder getServicesOrBuilder(int index)
The services belonging to the requested application.
repeated .google.appengine.v1.Service services = 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.
-
-