Class: Google::Cloud::Dataplex::V1::DataQualityResult::PostScanActionsResult

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 result of post scan actions of DataQualityScan job.

Defined Under Namespace

Classes: BigQueryExportResult

Instance Attribute Summary collapse

Instance Attribute Details

#bigquery_export_result::Google::Cloud::Dataplex::V1::DataQualityResult::PostScanActionsResult::BigQueryExportResult (readonly)

Returns Output only. The result of BigQuery export post scan action.

Returns:



183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# File 'proto_docs/google/cloud/dataplex/v1/data_quality.rb', line 183

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

  # The result of BigQuery export post scan action.
  # @!attribute [r] state
  #   @return [::Google::Cloud::Dataplex::V1::DataQualityResult::PostScanActionsResult::BigQueryExportResult::State]
  #     Output only. Execution state for the BigQuery exporting.
  # @!attribute [r] message
  #   @return [::String]
  #     Output only. Additional information about the BigQuery exporting.
  class BigQueryExportResult
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods

    # Execution state for the exporting.
    module State
      # The exporting state is unspecified.
      STATE_UNSPECIFIED = 0

      # The exporting completed successfully.
      SUCCEEDED = 1

      # The exporting is no longer running due to an error.
      FAILED = 2

      # The exporting is skipped due to no valid scan result to export
      # (usually caused by scan failed).
      SKIPPED = 3
    end
  end
end