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.



11050
11051
11052
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11050

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

Instance Attribute Details

#descriptionString

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

Returns:

  • (String)


11036
11037
11038
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11036

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



11042
11043
11044
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11042

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)


11048
11049
11050
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11048

def partial_failure_message
  @partial_failure_message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11055
11056
11057
11058
11059
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11055

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