Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1UnstructuredDataProfileResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb

Overview

Contains the result of an unstructured data profile scan.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1UnstructuredDataProfileResult

Returns a new instance of GoogleCloudDataplexV1UnstructuredDataProfileResult.



10805
10806
10807
# File 'lib/google/apis/dataplex_v1/classes.rb', line 10805

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

Output only. The inferred description. Corresponds to the JSON property description

Returns:

  • (String)


10791
10792
10793
# File 'lib/google/apis/dataplex_v1/classes.rb', line 10791

def description
  @description
end

#graph_profileGoogle::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfile

Contains the strict structure for graph-profile for semantic inference scan result. Corresponds to the JSON property graphProfile



10797
10798
10799
# File 'lib/google/apis/dataplex_v1/classes.rb', line 10797

def graph_profile
  @graph_profile
end

#partial_failure_messageString

Output only. Optional message for partial failures (e.g. node type extraction failed). Corresponds to the JSON property partialFailureMessage

Returns:

  • (String)


10803
10804
10805
# File 'lib/google/apis/dataplex_v1/classes.rb', line 10803

def partial_failure_message
  @partial_failure_message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10810
10811
10812
10813
10814
# File 'lib/google/apis/dataplex_v1/classes.rb', line 10810

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @graph_profile = args[:graph_profile] if args.key?(:graph_profile)
  @partial_failure_message = args[:partial_failure_message] if args.key?(:partial_failure_message)
end