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.



11088
11089
11090
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11088

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

Instance Attribute Details

#descriptionString

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

Returns:

  • (String)


11074
11075
11076
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11074

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



11080
11081
11082
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11080

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)


11086
11087
11088
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11086

def partial_failure_message
  @partial_failure_message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11093
11094
11095
11096
11097
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11093

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