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.



2375
2376
2377
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2375

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



2368
2369
2370
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2368

def dataset_result
  @dataset_result
end

#table_resultGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultTableResult

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



2373
2374
2375
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2373

def table_result
  @table_result
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2380
2381
2382
2383
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2380

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