Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1UnstructuredDataProfileResult
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1UnstructuredDataProfileResult
- 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
-
#description ⇒ String
Output only.
-
#graph_profile ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1GraphProfile
Contains the strict structure for graph-profile for semantic inference scan result.
-
#partial_failure_message ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1UnstructuredDataProfileResult
constructor
A new instance of GoogleCloudDataplexV1UnstructuredDataProfileResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#description ⇒ String
Output only. The inferred description.
Corresponds to the JSON property description
10791 10792 10793 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 10791 def description @description end |
#graph_profile ⇒ Google::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_message ⇒ String
Output only. Optional message for partial failures (e.g. node type extraction
failed).
Corresponds to the JSON property partialFailureMessage
10803 10804 10805 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 10803 def @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 |