Class QueryAssetsOutputConfig.BigQueryDestination (3.45.0)

public static final class QueryAssetsOutputConfig.BigQueryDestination extends GeneratedMessageV3 implements QueryAssetsOutputConfig.BigQueryDestinationOrBuilder

BigQuery destination.

Protobuf type google.cloud.asset.v1.QueryAssetsOutputConfig.BigQueryDestination

Inheritance

Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > QueryAssetsOutputConfig.BigQueryDestination

Static Fields

DATASET_FIELD_NUMBER

public static final int DATASET_FIELD_NUMBER
Field Value
TypeDescription
int

TABLE_FIELD_NUMBER

public static final int TABLE_FIELD_NUMBER
Field Value
TypeDescription
int

WRITE_DISPOSITION_FIELD_NUMBER

public static final int WRITE_DISPOSITION_FIELD_NUMBER
Field Value
TypeDescription
int

Static Methods

getDefaultInstance()

public static QueryAssetsOutputConfig.BigQueryDestination getDefaultInstance()
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

newBuilder()

public static QueryAssetsOutputConfig.BigQueryDestination.Builder newBuilder()
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination.Builder

newBuilder(QueryAssetsOutputConfig.BigQueryDestination prototype)

public static QueryAssetsOutputConfig.BigQueryDestination.Builder newBuilder(QueryAssetsOutputConfig.BigQueryDestination prototype)
Parameter
NameDescription
prototypeQueryAssetsOutputConfig.BigQueryDestination
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination.Builder

parseDelimitedFrom(InputStream input)

public static QueryAssetsOutputConfig.BigQueryDestination parseDelimitedFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static QueryAssetsOutputConfig.BigQueryDestination parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
IOException

parseFrom(byte[] data)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(byte[] data)
Parameter
NameDescription
databyte[]
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
databyte[]
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(ByteString data)
Parameter
NameDescription
dataByteString
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteString
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
IOException

parseFrom(InputStream input)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
IOException

parseFrom(ByteBuffer data)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(ByteBuffer data)
Parameter
NameDescription
dataByteBuffer
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static QueryAssetsOutputConfig.BigQueryDestination parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteBuffer
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination
Exceptions
TypeDescription
InvalidProtocolBufferException

parser()

public static Parser<QueryAssetsOutputConfig.BigQueryDestination> parser()
Returns
TypeDescription
Parser<BigQueryDestination>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getDataset()

public String getDataset()

Required. The BigQuery dataset where the query results will be saved. It has the format of "projects/{projectId}/datasets/{datasetId}".

string dataset = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
String

The dataset.

getDatasetBytes()

public ByteString getDatasetBytes()

Required. The BigQuery dataset where the query results will be saved. It has the format of "projects/{projectId}/datasets/{datasetId}".

string dataset = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
ByteString

The bytes for dataset.

getDefaultInstanceForType()

public QueryAssetsOutputConfig.BigQueryDestination getDefaultInstanceForType()
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination

getParserForType()

public Parser<QueryAssetsOutputConfig.BigQueryDestination> getParserForType()
Returns
TypeDescription
Parser<BigQueryDestination>
Overrides

getSerializedSize()

public int getSerializedSize()
Returns
TypeDescription
int
Overrides

getTable()

public String getTable()

Required. The BigQuery table where the query results will be saved. If this table does not exist, a new table with the given name will be created.

string table = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
String

The table.

getTableBytes()

public ByteString getTableBytes()

Required. The BigQuery table where the query results will be saved. If this table does not exist, a new table with the given name will be created.

string table = 2 [(.google.api.field_behavior) = REQUIRED];

Returns
TypeDescription
ByteString

The bytes for table.

getWriteDisposition()

public String getWriteDisposition()

Specifies the action that occurs if the destination table or partition already exists. The following values are supported:

  • WRITE_TRUNCATE: If the table or partition already exists, BigQuery overwrites the entire table or all the partitions data.
  • WRITE_APPEND: If the table or partition already exists, BigQuery appends the data to the table or the latest partition.
  • WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in the job result.

    The default value is WRITE_EMPTY.

string write_disposition = 3;

Returns
TypeDescription
String

The writeDisposition.

getWriteDispositionBytes()

public ByteString getWriteDispositionBytes()

Specifies the action that occurs if the destination table or partition already exists. The following values are supported:

  • WRITE_TRUNCATE: If the table or partition already exists, BigQuery overwrites the entire table or all the partitions data.
  • WRITE_APPEND: If the table or partition already exists, BigQuery appends the data to the table or the latest partition.
  • WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in the job result.

    The default value is WRITE_EMPTY.

string write_disposition = 3;

Returns
TypeDescription
ByteString

The bytes for writeDisposition.

hashCode()

public int hashCode()
Returns
TypeDescription
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

newBuilderForType()

public QueryAssetsOutputConfig.BigQueryDestination.Builder newBuilderForType()
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected QueryAssetsOutputConfig.BigQueryDestination.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
NameDescription
parentBuilderParent
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
NameDescription
unusedUnusedPrivateParameter
Returns
TypeDescription
Object
Overrides

toBuilder()

public QueryAssetsOutputConfig.BigQueryDestination.Builder toBuilder()
Returns
TypeDescription
QueryAssetsOutputConfig.BigQueryDestination.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream
Overrides
Exceptions
TypeDescription
IOException