Package com.google.cloud.run.v2
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()
A token indicating there are more items than page_size.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token indicating there are more items than page_size.Service
getServices(int index)
The resulting list of Services.int
getServicesCount()
The resulting list of Services.List<Service>
getServicesList()
The resulting list of Services.ServiceOrBuilder
getServicesOrBuilder(int index)
The resulting list of Services.List<? extends ServiceOrBuilder>
getServicesOrBuilderList()
The resulting list of Services.-
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 resulting list of Services.
repeated .google.cloud.run.v2.Service services = 1;
-
getServices
Service getServices(int index)
The resulting list of Services.
repeated .google.cloud.run.v2.Service services = 1;
-
getServicesCount
int getServicesCount()
The resulting list of Services.
repeated .google.cloud.run.v2.Service services = 1;
-
getServicesOrBuilderList
List<? extends ServiceOrBuilder> getServicesOrBuilderList()
The resulting list of Services.
repeated .google.cloud.run.v2.Service services = 1;
-
getServicesOrBuilder
ServiceOrBuilder getServicesOrBuilder(int index)
The resulting list of Services.
repeated .google.cloud.run.v2.Service services = 1;
-
getNextPageToken
String getNextPageToken()
A token indicating there are more items than page_size. Use it in the next ListServices request to continue.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token indicating there are more items than page_size. Use it in the next ListServices request to continue.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-