Interface AppendRowsRequest.ProtoDataOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      ProtoRows getRows()
      Serialized row data in protobuf message format.
      ProtoRowsOrBuilder getRowsOrBuilder()
      Serialized row data in protobuf message format.
      ProtoSchema getWriterSchema()
      The protocol buffer schema used to serialize the data.
      ProtoSchemaOrBuilder getWriterSchemaOrBuilder()
      The protocol buffer schema used to serialize the data.
      boolean hasRows()
      Serialized row data in protobuf message format.
      boolean hasWriterSchema()
      The protocol buffer schema used to serialize the data.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasWriterSchema

        boolean hasWriterSchema()
         The protocol buffer schema used to serialize the data. Provide this value
         whenever:
        
         * You send the first request of an RPC connection.
        
         * You change the input schema.
        
         * You specify a new destination table.
         
        .google.cloud.bigquery.storage.v1.ProtoSchema writer_schema = 1;
        Returns:
        Whether the writerSchema field is set.
      • getWriterSchema

        ProtoSchema getWriterSchema()
         The protocol buffer schema used to serialize the data. Provide this value
         whenever:
        
         * You send the first request of an RPC connection.
        
         * You change the input schema.
        
         * You specify a new destination table.
         
        .google.cloud.bigquery.storage.v1.ProtoSchema writer_schema = 1;
        Returns:
        The writerSchema.
      • getWriterSchemaOrBuilder

        ProtoSchemaOrBuilder getWriterSchemaOrBuilder()
         The protocol buffer schema used to serialize the data. Provide this value
         whenever:
        
         * You send the first request of an RPC connection.
        
         * You change the input schema.
        
         * You specify a new destination table.
         
        .google.cloud.bigquery.storage.v1.ProtoSchema writer_schema = 1;
      • hasRows

        boolean hasRows()
         Serialized row data in protobuf message format.
         Currently, the backend expects the serialized rows to adhere to
         proto2 semantics when appending rows, particularly with respect to
         how default values are encoded.
         
        .google.cloud.bigquery.storage.v1.ProtoRows rows = 2;
        Returns:
        Whether the rows field is set.
      • getRows

        ProtoRows getRows()
         Serialized row data in protobuf message format.
         Currently, the backend expects the serialized rows to adhere to
         proto2 semantics when appending rows, particularly with respect to
         how default values are encoded.
         
        .google.cloud.bigquery.storage.v1.ProtoRows rows = 2;
        Returns:
        The rows.
      • getRowsOrBuilder

        ProtoRowsOrBuilder getRowsOrBuilder()
         Serialized row data in protobuf message format.
         Currently, the backend expects the serialized rows to adhere to
         proto2 semantics when appending rows, particularly with respect to
         how default values are encoded.
         
        .google.cloud.bigquery.storage.v1.ProtoRows rows = 2;