Interface ListNamespacesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListNamespacesResponse
,ListNamespacesResponse.Builder
public interface ListNamespacesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Namespace
getNamespaces(int index)
The list of namespaces.int
getNamespacesCount()
The list of namespaces.List<Namespace>
getNamespacesList()
The list of namespaces.NamespaceOrBuilder
getNamespacesOrBuilder(int index)
The list of namespaces.List<? extends NamespaceOrBuilder>
getNamespacesOrBuilderList()
The list of namespaces.String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNamespacesList
List<Namespace> getNamespacesList()
The list of namespaces.
repeated .google.cloud.servicedirectory.v1beta1.Namespace namespaces = 1;
-
getNamespaces
Namespace getNamespaces(int index)
The list of namespaces.
repeated .google.cloud.servicedirectory.v1beta1.Namespace namespaces = 1;
-
getNamespacesCount
int getNamespacesCount()
The list of namespaces.
repeated .google.cloud.servicedirectory.v1beta1.Namespace namespaces = 1;
-
getNamespacesOrBuilderList
List<? extends NamespaceOrBuilder> getNamespacesOrBuilderList()
The list of namespaces.
repeated .google.cloud.servicedirectory.v1beta1.Namespace namespaces = 1;
-
getNamespacesOrBuilder
NamespaceOrBuilder getNamespacesOrBuilder(int index)
The list of namespaces.
repeated .google.cloud.servicedirectory.v1beta1.Namespace namespaces = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no more results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-