Class: Google::Cloud::Asset::V1::QueryAssetsOutputConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Asset::V1::QueryAssetsOutputConfig
- 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
-
#bigquery_destination ⇒ ::Google::Cloud::Asset::V1::QueryAssetsOutputConfig::BigQueryDestination
BigQuery destination where the query results will be saved.
Instance Attribute Details
#bigquery_destination ⇒ ::Google::Cloud::Asset::V1::QueryAssetsOutputConfig::BigQueryDestination
Returns BigQuery destination where the query results will be saved.
1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 |
# File 'proto_docs/google/cloud/asset/v1/asset_service.rb', line 1619 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 |