Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultDatasetResult

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

Insights for a dataset resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataDocumentationResultDatasetResult

Returns a new instance of GoogleCloudDataplexV1DataDocumentationResultDatasetResult.



2406
2407
2408
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2406

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

Instance Attribute Details

#overviewString

Output only. Generated Dataset description. Corresponds to the JSON property overview

Returns:

  • (String)


2393
2394
2395
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2393

def overview
  @overview
end

#queriesArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultQuery>

Output only. Sample SQL queries for the dataset. Corresponds to the JSON property queries



2398
2399
2400
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2398

def queries
  @queries
end

#schema_relationshipsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship>

Output only. Relationships suggesting how tables in the dataset are related to each other, based on their schema. Corresponds to the JSON property schemaRelationships



2404
2405
2406
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2404

def schema_relationships
  @schema_relationships
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2411
2412
2413
2414
2415
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2411

def update!(**args)
  @overview = args[:overview] if args.key?(:overview)
  @queries = args[:queries] if args.key?(:queries)
  @schema_relationships = args[:schema_relationships] if args.key?(:schema_relationships)
end