Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResult

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

The output of a DataDocumentation scan.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataDocumentationResult

Returns a new instance of GoogleCloudDataplexV1DataDocumentationResult.



2449
2450
2451
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2449

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

Instance Attribute Details

#dataset_resultGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultDatasetResult

Insights for a dataset resource. Corresponds to the JSON property datasetResult



2442
2443
2444
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2442

def dataset_result
  @dataset_result
end

#table_resultGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultTableResult

Insights for a table resource. Corresponds to the JSON property tableResult



2447
2448
2449
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2447

def table_result
  @table_result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2454
2455
2456
2457
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2454

def update!(**args)
  @dataset_result = args[:dataset_result] if args.key?(:dataset_result)
  @table_result = args[:table_result] if args.key?(:table_result)
end