Package com.google.cloud.dataplex.v1
Interface ListPartitionsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListPartitionsResponse
,ListPartitionsResponse.Builder
public interface ListPartitionsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Token to retrieve the next page of results, or empty if there are no remaining results in the list.com.google.protobuf.ByteString
getNextPageTokenBytes()
Token to retrieve the next page of results, or empty if there are no remaining results in the list.Partition
getPartitions(int index)
Partitions under the specified parent entity.int
getPartitionsCount()
Partitions under the specified parent entity.List<Partition>
getPartitionsList()
Partitions under the specified parent entity.PartitionOrBuilder
getPartitionsOrBuilder(int index)
Partitions under the specified parent entity.List<? extends PartitionOrBuilder>
getPartitionsOrBuilderList()
Partitions under the specified parent entity.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPartitionsList
List<Partition> getPartitionsList()
Partitions under the specified parent entity.
repeated .google.cloud.dataplex.v1.Partition partitions = 1;
-
getPartitions
Partition getPartitions(int index)
Partitions under the specified parent entity.
repeated .google.cloud.dataplex.v1.Partition partitions = 1;
-
getPartitionsCount
int getPartitionsCount()
Partitions under the specified parent entity.
repeated .google.cloud.dataplex.v1.Partition partitions = 1;
-
getPartitionsOrBuilderList
List<? extends PartitionOrBuilder> getPartitionsOrBuilderList()
Partitions under the specified parent entity.
repeated .google.cloud.dataplex.v1.Partition partitions = 1;
-
getPartitionsOrBuilder
PartitionOrBuilder getPartitionsOrBuilder(int index)
Partitions under the specified parent entity.
repeated .google.cloud.dataplex.v1.Partition partitions = 1;
-
getNextPageToken
String getNextPageToken()
Token to retrieve the next page of results, or empty if there are no remaining 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 remaining results in the list.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-