Class: Google::Cloud::Dataplex::V1::DataScanEvent::PostScanActionsResult

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

Overview

Post scan actions result for data scan job.

Defined Under Namespace

Classes: BigQueryExportResult

Instance Attribute Summary collapse

Instance Attribute Details

#bigquery_export_result::Google::Cloud::Dataplex::V1::DataScanEvent::PostScanActionsResult::BigQueryExportResult

Returns The result of BigQuery export post scan action.

Returns:



653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
# File 'proto_docs/google/cloud/dataplex/v1/logs.rb', line 653

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

  # The result of BigQuery export post scan action.
  # @!attribute [rw] state
  #   @return [::Google::Cloud::Dataplex::V1::DataScanEvent::PostScanActionsResult::BigQueryExportResult::State]
  #     Execution state for the BigQuery exporting.
  # @!attribute [rw] message
  #   @return [::String]
  #     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