Class: Google::Cloud::Dataplex::V1::DataScanCatalogPublishingStatus

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

Overview

The status of publishing the data scan result as Dataplex Universal Catalog metadata.

Defined Under Namespace

Modules: State

Instance Attribute Summary collapse

Instance Attribute Details

#state::Google::Cloud::Dataplex::V1::DataScanCatalogPublishingStatus::State (readonly)

Returns Output only. Execution state for catalog publishing.

Returns:



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'proto_docs/google/cloud/dataplex/v1/datascans_common.rb', line 29

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

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

    # Publish to catalog completed successfully.
    SUCCEEDED = 1

    # Publish to catalog failed.
    FAILED = 2
  end
end