public interface StreamMetastorePartitionsRequestOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getMetastorePartitions(int index)
public abstract MetastorePartition getMetastorePartitions(int index)
Optional. A list of metastore partitions to be added to the table.
repeated .google.cloud.bigquery.storage.v1alpha.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
index |
int |
Returns | |
---|---|
Type | Description |
MetastorePartition |
getMetastorePartitionsCount()
public abstract int getMetastorePartitionsCount()
Optional. A list of metastore partitions to be added to the table.
repeated .google.cloud.bigquery.storage.v1alpha.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
int |
getMetastorePartitionsList()
public abstract List<MetastorePartition> getMetastorePartitionsList()
Optional. A list of metastore partitions to be added to the table.
repeated .google.cloud.bigquery.storage.v1alpha.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
List<MetastorePartition> |
getMetastorePartitionsOrBuilder(int index)
public abstract MetastorePartitionOrBuilder getMetastorePartitionsOrBuilder(int index)
Optional. A list of metastore partitions to be added to the table.
repeated .google.cloud.bigquery.storage.v1alpha.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
Parameter | |
---|---|
Name | Description |
index |
int |
Returns | |
---|---|
Type | Description |
MetastorePartitionOrBuilder |
getMetastorePartitionsOrBuilderList()
public abstract List<? extends MetastorePartitionOrBuilder> getMetastorePartitionsOrBuilderList()
Optional. A list of metastore partitions to be added to the table.
repeated .google.cloud.bigquery.storage.v1alpha.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
List<? extends com.google.cloud.bigquery.storage.v1alpha.MetastorePartitionOrBuilder> |
getParent()
public abstract String getParent()
Required. Reference to the table to where the partition to be added, in the format of projects/{project}/locations/{location}/datasets/{dataset}/tables/{table}.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
Returns | |
---|---|
Type | Description |
String |
The parent. |
getParentBytes()
public abstract ByteString getParentBytes()
Required. Reference to the table to where the partition to be added, in the format of projects/{project}/locations/{location}/datasets/{dataset}/tables/{table}.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for parent. |
getSkipExistingPartitions()
public abstract boolean getSkipExistingPartitions()
Optional. Mimics the ifNotExists flag in IMetaStoreClient
add_partitions(..). If the flag is set to false, the server will return
ALREADY_EXISTS on commit if any partition already exists. If the flag is
set to true:
1) the server will skip existing partitions
insert only the non-existing partitions as part of the commit.
2) The client must set the skip_existing_partitions
field to true for
all requests in the stream.
bool skip_existing_partitions = 3 [(.google.api.field_behavior) = OPTIONAL];
Returns | |
---|---|
Type | Description |
boolean |
The skipExistingPartitions. |