Class: Google::Cloud::Asset::V1::QueryAssetsOutputConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/asset/v1/asset_service.rb

Overview

Output configuration query assets.

Defined Under Namespace

Classes: BigQueryDestination

Instance Attribute Summary collapse

Instance Attribute Details

#bigquery_destination::Google::Cloud::Asset::V1::QueryAssetsOutputConfig::BigQueryDestination

Returns BigQuery destination where the query results will be saved.

Returns:



1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
# File 'proto_docs/google/cloud/asset/v1/asset_service.rb', line 1635

class QueryAssetsOutputConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # BigQuery destination.
  # @!attribute [rw] dataset
  #   @return [::String]
  #     Required. The BigQuery dataset where the query results will be saved. It
  #     has the format of "projects/\\{projectId}/datasets/\\{datasetId}".
  # @!attribute [rw] table
  #   @return [::String]
  #     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.
  # @!attribute [rw] write_disposition
  #   @return [::String]
  #     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.
  class BigQueryDestination
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end