Interface QueryDirectoryContentsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QueryDirectoryContentsResponse,QueryDirectoryContentsResponse.Builder
public interface QueryDirectoryContentsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryDirectoryContentsResponse.DirectoryEntrygetDirectoryEntries(int index)List of entries in the directory.intgetDirectoryEntriesCount()List of entries in the directory.List<QueryDirectoryContentsResponse.DirectoryEntry>getDirectoryEntriesList()List of entries in the directory.QueryDirectoryContentsResponse.DirectoryEntryOrBuildergetDirectoryEntriesOrBuilder(int index)List of entries in the directory.List<? extends QueryDirectoryContentsResponse.DirectoryEntryOrBuilder>getDirectoryEntriesOrBuilderList()List of entries in the directory.StringgetNextPageToken()A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token, which can be sent as `page_token` to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDirectoryEntriesList
List<QueryDirectoryContentsResponse.DirectoryEntry> getDirectoryEntriesList()
List of entries in the directory.
repeated .google.cloud.dataform.v1alpha2.QueryDirectoryContentsResponse.DirectoryEntry directory_entries = 1;
-
getDirectoryEntries
QueryDirectoryContentsResponse.DirectoryEntry getDirectoryEntries(int index)
List of entries in the directory.
repeated .google.cloud.dataform.v1alpha2.QueryDirectoryContentsResponse.DirectoryEntry directory_entries = 1;
-
getDirectoryEntriesCount
int getDirectoryEntriesCount()
List of entries in the directory.
repeated .google.cloud.dataform.v1alpha2.QueryDirectoryContentsResponse.DirectoryEntry directory_entries = 1;
-
getDirectoryEntriesOrBuilderList
List<? extends QueryDirectoryContentsResponse.DirectoryEntryOrBuilder> getDirectoryEntriesOrBuilderList()
List of entries in the directory.
repeated .google.cloud.dataform.v1alpha2.QueryDirectoryContentsResponse.DirectoryEntry directory_entries = 1;
-
getDirectoryEntriesOrBuilder
QueryDirectoryContentsResponse.DirectoryEntryOrBuilder getDirectoryEntriesOrBuilder(int index)
List of entries in the directory.
repeated .google.cloud.dataform.v1alpha2.QueryDirectoryContentsResponse.DirectoryEntry directory_entries = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-