Interface StreamMetastorePartitionsRequestOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
StreamMetastorePartitionsRequest, StreamMetastorePartitionsRequest.Builder

public interface StreamMetastorePartitionsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getParent

      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:
      The parent.
    • getParentBytes

      com.google.protobuf.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:
      The bytes for parent.
    • getMetastorePartitionsList

      List<MetastorePartition> getMetastorePartitionsList()
       Optional. A list of metastore partitions to be added to the table.
       
      repeated .google.cloud.bigquery.storage.v1beta.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getMetastorePartitions

      MetastorePartition getMetastorePartitions(int index)
       Optional. A list of metastore partitions to be added to the table.
       
      repeated .google.cloud.bigquery.storage.v1beta.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getMetastorePartitionsCount

      int getMetastorePartitionsCount()
       Optional. A list of metastore partitions to be added to the table.
       
      repeated .google.cloud.bigquery.storage.v1beta.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getMetastorePartitionsOrBuilderList

      List<? extends MetastorePartitionOrBuilder> getMetastorePartitionsOrBuilderList()
       Optional. A list of metastore partitions to be added to the table.
       
      repeated .google.cloud.bigquery.storage.v1beta.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getMetastorePartitionsOrBuilder

      MetastorePartitionOrBuilder getMetastorePartitionsOrBuilder(int index)
       Optional. A list of metastore partitions to be added to the table.
       
      repeated .google.cloud.bigquery.storage.v1beta.MetastorePartition metastore_partitions = 2 [(.google.api.field_behavior) = OPTIONAL];
    • getSkipExistingPartitions

      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:
      The skipExistingPartitions.