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.



2435
2436
2437
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2435

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



2428
2429
2430
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2428

def dataset_result
  @dataset_result
end

#table_resultGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultTableResult

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



2433
2434
2435
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2433

def table_result
  @table_result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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