Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultDatasetResult
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultDatasetResult
- 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
-
#overview ⇒ String
Output only.
-
#queries ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultQuery>
Output only.
-
#schema_relationships ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultSchemaRelationship>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataDocumentationResultDatasetResult
constructor
A new instance of GoogleCloudDataplexV1DataDocumentationResultDatasetResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataDocumentationResultDatasetResult
Returns a new instance of GoogleCloudDataplexV1DataDocumentationResultDatasetResult.
2480 2481 2482 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2480 def initialize(**args) update!(**args) end |
Instance Attribute Details
#overview ⇒ String
Output only. Generated Dataset description.
Corresponds to the JSON property overview
2467 2468 2469 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2467 def overview @overview end |
#queries ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultQuery>
Output only. Sample SQL queries for the dataset.
Corresponds to the JSON property queries
2472 2473 2474 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2472 def queries @queries end |
#schema_relationships ⇒ Array<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
2478 2479 2480 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2478 def schema_relationships @schema_relationships end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2485 2486 2487 2488 2489 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2485 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 |