Package com.google.api.serviceusage.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 StringgetNextPageToken()Token that can be passed to `ListServices` to resume a paginated query.com.google.protobuf.ByteStringgetNextPageTokenBytes()Token that can be passed to `ListServices` to resume a paginated query.ServicegetServices(int index)The available services for the requested project.intgetServicesCount()The available services for the requested project.List<Service>getServicesList()The available services for the requested project.ServiceOrBuildergetServicesOrBuilder(int index)The available services for the requested project.List<? extends ServiceOrBuilder>getServicesOrBuilderList()The available services for the requested project.-
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 available services for the requested project.
repeated .google.api.serviceusage.v1.Service services = 1;
-
getServices
Service getServices(int index)
The available services for the requested project.
repeated .google.api.serviceusage.v1.Service services = 1;
-
getServicesCount
int getServicesCount()
The available services for the requested project.
repeated .google.api.serviceusage.v1.Service services = 1;
-
getServicesOrBuilderList
List<? extends ServiceOrBuilder> getServicesOrBuilderList()
The available services for the requested project.
repeated .google.api.serviceusage.v1.Service services = 1;
-
getServicesOrBuilder
ServiceOrBuilder getServicesOrBuilder(int index)
The available services for the requested project.
repeated .google.api.serviceusage.v1.Service services = 1;
-
getNextPageToken
String getNextPageToken()
Token that can be passed to `ListServices` to resume a paginated query.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token that can be passed to `ListServices` to resume a paginated query.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-