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)
List of namespacesint
getNamespacesCount()
List of namespacesList<Namespace>
getNamespacesList()
List of namespacesNamespaceOrBuilder
getNamespacesOrBuilder(int index)
List of namespacesList<? extends NamespaceOrBuilder>
getNamespacesOrBuilderList()
List of namespacesString
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()
List of namespaces
repeated .google.cloud.datafusion.v1beta1.Namespace namespaces = 1;
-
getNamespaces
Namespace getNamespaces(int index)
List of namespaces
repeated .google.cloud.datafusion.v1beta1.Namespace namespaces = 1;
-
getNamespacesCount
int getNamespacesCount()
List of namespaces
repeated .google.cloud.datafusion.v1beta1.Namespace namespaces = 1;
-
getNamespacesOrBuilderList
List<? extends NamespaceOrBuilder> getNamespacesOrBuilderList()
List of namespaces
repeated .google.cloud.datafusion.v1beta1.Namespace namespaces = 1;
-
getNamespacesOrBuilder
NamespaceOrBuilder getNamespacesOrBuilder(int index)
List of namespaces
repeated .google.cloud.datafusion.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.
-
-