Class ListMetastorePartitionsRequest.Builder

java.lang.Object
com.google.protobuf.AbstractMessageLite.Builder
com.google.protobuf.AbstractMessage.Builder<BuilderT>
com.google.protobuf.GeneratedMessage.Builder<ListMetastorePartitionsRequest.Builder>
com.google.cloud.bigquery.storage.v1beta.ListMetastorePartitionsRequest.Builder
All Implemented Interfaces:
ListMetastorePartitionsRequestOrBuilder, com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, Cloneable
Enclosing class:
ListMetastorePartitionsRequest

public static final class ListMetastorePartitionsRequest.Builder extends com.google.protobuf.GeneratedMessage.Builder<ListMetastorePartitionsRequest.Builder> implements ListMetastorePartitionsRequestOrBuilder
 Request message for ListMetastorePartitions.
 
Protobuf type google.cloud.bigquery.storage.v1beta.ListMetastorePartitionsRequest
  • Method Details

    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessage.Builder<ListMetastorePartitionsRequest.Builder>
    • clear

      Specified by:
      clear in interface com.google.protobuf.Message.Builder
      Specified by:
      clear in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      clear in class com.google.protobuf.GeneratedMessage.Builder<ListMetastorePartitionsRequest.Builder>
    • getDescriptorForType

      public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
      Specified by:
      getDescriptorForType in interface com.google.protobuf.Message.Builder
      Specified by:
      getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
      Overrides:
      getDescriptorForType in class com.google.protobuf.GeneratedMessage.Builder<ListMetastorePartitionsRequest.Builder>
    • getDefaultInstanceForType

      public ListMetastorePartitionsRequest getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
    • build

      Specified by:
      build in interface com.google.protobuf.Message.Builder
      Specified by:
      build in interface com.google.protobuf.MessageLite.Builder
    • buildPartial

      public ListMetastorePartitionsRequest buildPartial()
      Specified by:
      buildPartial in interface com.google.protobuf.Message.Builder
      Specified by:
      buildPartial in interface com.google.protobuf.MessageLite.Builder
    • mergeFrom

      public ListMetastorePartitionsRequest.Builder mergeFrom(com.google.protobuf.Message other)
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<ListMetastorePartitionsRequest.Builder>
    • mergeFrom

    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessage.Builder<ListMetastorePartitionsRequest.Builder>
    • mergeFrom

      public ListMetastorePartitionsRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Specified by:
      mergeFrom in interface com.google.protobuf.Message.Builder
      Specified by:
      mergeFrom in interface com.google.protobuf.MessageLite.Builder
      Overrides:
      mergeFrom in class com.google.protobuf.AbstractMessage.Builder<ListMetastorePartitionsRequest.Builder>
      Throws:
      IOException
    • getParent

      public String getParent()
       Required. Reference to the table to which these metastore partitions
       belong, in the format of
       projects/{project}/locations/{location}/datasets/{dataset}/tables/{table}.
       
      string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Specified by:
      getParent in interface ListMetastorePartitionsRequestOrBuilder
      Returns:
      The parent.
    • getParentBytes

      public com.google.protobuf.ByteString getParentBytes()
       Required. Reference to the table to which these metastore partitions
       belong, in the format of
       projects/{project}/locations/{location}/datasets/{dataset}/tables/{table}.
       
      string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Specified by:
      getParentBytes in interface ListMetastorePartitionsRequestOrBuilder
      Returns:
      The bytes for parent.
    • setParent

       Required. Reference to the table to which these metastore partitions
       belong, in the format of
       projects/{project}/locations/{location}/datasets/{dataset}/tables/{table}.
       
      string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Parameters:
      value - The parent to set.
      Returns:
      This builder for chaining.
    • clearParent

       Required. Reference to the table to which these metastore partitions
       belong, 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:
      This builder for chaining.
    • setParentBytes

      public ListMetastorePartitionsRequest.Builder setParentBytes(com.google.protobuf.ByteString value)
       Required. Reference to the table to which these metastore partitions
       belong, in the format of
       projects/{project}/locations/{location}/datasets/{dataset}/tables/{table}.
       
      string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
      Parameters:
      value - The bytes for parent to set.
      Returns:
      This builder for chaining.
    • getFilter

      public String getFilter()
       Optional. SQL text filtering statement, similar to a WHERE clause in a
       query. Only supports single-row expressions.  Aggregate functions are not
       supported.
      
       Examples:
       * "int_field > 5"
       * "date_field = CAST('2014-9-27' as DATE)"
       * "nullable_field is not NULL"
       * "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
       * "numeric_field BETWEEN 1.0 AND 5.0"
      
       Restricted to a maximum length of 1 MB.
       
      string filter = 2 [(.google.api.field_behavior) = OPTIONAL];
      Specified by:
      getFilter in interface ListMetastorePartitionsRequestOrBuilder
      Returns:
      The filter.
    • getFilterBytes

      public com.google.protobuf.ByteString getFilterBytes()
       Optional. SQL text filtering statement, similar to a WHERE clause in a
       query. Only supports single-row expressions.  Aggregate functions are not
       supported.
      
       Examples:
       * "int_field > 5"
       * "date_field = CAST('2014-9-27' as DATE)"
       * "nullable_field is not NULL"
       * "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
       * "numeric_field BETWEEN 1.0 AND 5.0"
      
       Restricted to a maximum length of 1 MB.
       
      string filter = 2 [(.google.api.field_behavior) = OPTIONAL];
      Specified by:
      getFilterBytes in interface ListMetastorePartitionsRequestOrBuilder
      Returns:
      The bytes for filter.
    • setFilter

       Optional. SQL text filtering statement, similar to a WHERE clause in a
       query. Only supports single-row expressions.  Aggregate functions are not
       supported.
      
       Examples:
       * "int_field > 5"
       * "date_field = CAST('2014-9-27' as DATE)"
       * "nullable_field is not NULL"
       * "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
       * "numeric_field BETWEEN 1.0 AND 5.0"
      
       Restricted to a maximum length of 1 MB.
       
      string filter = 2 [(.google.api.field_behavior) = OPTIONAL];
      Parameters:
      value - The filter to set.
      Returns:
      This builder for chaining.
    • clearFilter

       Optional. SQL text filtering statement, similar to a WHERE clause in a
       query. Only supports single-row expressions.  Aggregate functions are not
       supported.
      
       Examples:
       * "int_field > 5"
       * "date_field = CAST('2014-9-27' as DATE)"
       * "nullable_field is not NULL"
       * "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
       * "numeric_field BETWEEN 1.0 AND 5.0"
      
       Restricted to a maximum length of 1 MB.
       
      string filter = 2 [(.google.api.field_behavior) = OPTIONAL];
      Returns:
      This builder for chaining.
    • setFilterBytes

      public ListMetastorePartitionsRequest.Builder setFilterBytes(com.google.protobuf.ByteString value)
       Optional. SQL text filtering statement, similar to a WHERE clause in a
       query. Only supports single-row expressions.  Aggregate functions are not
       supported.
      
       Examples:
       * "int_field > 5"
       * "date_field = CAST('2014-9-27' as DATE)"
       * "nullable_field is not NULL"
       * "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
       * "numeric_field BETWEEN 1.0 AND 5.0"
      
       Restricted to a maximum length of 1 MB.
       
      string filter = 2 [(.google.api.field_behavior) = OPTIONAL];
      Parameters:
      value - The bytes for filter to set.
      Returns:
      This builder for chaining.
    • getTraceId

      public String getTraceId()
       Optional. Optional trace id to be used for debugging. It is expected that
       the client sets the same `trace_id` for all the batches in the same
       operation, so that it is possible to tie together the logs to all the
       batches in the same operation. Limited to 256 characters. This is expected,
       but not required, to be globally unique.
       
      string trace_id = 3 [(.google.api.field_behavior) = OPTIONAL];
      Specified by:
      getTraceId in interface ListMetastorePartitionsRequestOrBuilder
      Returns:
      The traceId.
    • getTraceIdBytes

      public com.google.protobuf.ByteString getTraceIdBytes()
       Optional. Optional trace id to be used for debugging. It is expected that
       the client sets the same `trace_id` for all the batches in the same
       operation, so that it is possible to tie together the logs to all the
       batches in the same operation. Limited to 256 characters. This is expected,
       but not required, to be globally unique.
       
      string trace_id = 3 [(.google.api.field_behavior) = OPTIONAL];
      Specified by:
      getTraceIdBytes in interface ListMetastorePartitionsRequestOrBuilder
      Returns:
      The bytes for traceId.
    • setTraceId

       Optional. Optional trace id to be used for debugging. It is expected that
       the client sets the same `trace_id` for all the batches in the same
       operation, so that it is possible to tie together the logs to all the
       batches in the same operation. Limited to 256 characters. This is expected,
       but not required, to be globally unique.
       
      string trace_id = 3 [(.google.api.field_behavior) = OPTIONAL];
      Parameters:
      value - The traceId to set.
      Returns:
      This builder for chaining.
    • clearTraceId

       Optional. Optional trace id to be used for debugging. It is expected that
       the client sets the same `trace_id` for all the batches in the same
       operation, so that it is possible to tie together the logs to all the
       batches in the same operation. Limited to 256 characters. This is expected,
       but not required, to be globally unique.
       
      string trace_id = 3 [(.google.api.field_behavior) = OPTIONAL];
      Returns:
      This builder for chaining.
    • setTraceIdBytes

      public ListMetastorePartitionsRequest.Builder setTraceIdBytes(com.google.protobuf.ByteString value)
       Optional. Optional trace id to be used for debugging. It is expected that
       the client sets the same `trace_id` for all the batches in the same
       operation, so that it is possible to tie together the logs to all the
       batches in the same operation. Limited to 256 characters. This is expected,
       but not required, to be globally unique.
       
      string trace_id = 3 [(.google.api.field_behavior) = OPTIONAL];
      Parameters:
      value - The bytes for traceId to set.
      Returns:
      This builder for chaining.