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.
11050 11051 11052 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11050 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Output only. The inferred description.
Corresponds to the JSON property description
11036 11037 11038 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11036 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
11042 11043 11044 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11042 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
11048 11049 11050 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 11048 def @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 |