Class: Google::Cloud::Dataplex::V1::DataQualitySpec::PostScanActions

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

Overview

The configuration of post scan actions of DataQualityScan.

Defined Under Namespace

Classes: BigQueryExport

Instance Attribute Summary collapse

Instance Attribute Details

#bigquery_export::Google::Cloud::Dataplex::V1::DataQualitySpec::PostScanActions::BigQueryExport

Returns Optional. If set, results will be exported to the provided BigQuery table.

Returns:



56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'proto_docs/google/cloud/dataplex/v1/data_quality.rb', line 56

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 DataQualityScan 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