Class: Google::Cloud::Dataplex::V1::DataProfileSpec::PostScanActions
- Inherits:
-
Object
- Object
- Google::Cloud::Dataplex::V1::DataProfileSpec::PostScanActions
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dataplex/v1/data_profile.rb
Overview
The configuration of post scan actions of DataProfileScan job.
Defined Under Namespace
Classes: BigQueryExport
Instance Attribute Summary collapse
-
#bigquery_export ⇒ ::Google::Cloud::Dataplex::V1::DataProfileSpec::PostScanActions::BigQueryExport
Optional.
Instance Attribute Details
#bigquery_export ⇒ ::Google::Cloud::Dataplex::V1::DataProfileSpec::PostScanActions::BigQueryExport
Returns Optional. If set, results will be exported to the provided BigQuery table.
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'proto_docs/google/cloud/dataplex/v1/data_profile.rb', line 64 class PostScanActions include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The configuration of BigQuery export post scan action. # @!attribute [rw] results_table # @return [::String] # Optional. The BigQuery table to export DataProfileScan results to. # Format: # //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/TABLE_ID class BigQueryExport include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |