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.
2466 2467 2468 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2466 def initialize(**args) update!(**args) end |
Instance Attribute Details
#overview ⇒ String
Output only. Generated Dataset description.
Corresponds to the JSON property overview
2453 2454 2455 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2453 def overview @overview end |
#queries ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultQuery>
Output only. Sample SQL queries for the dataset.
Corresponds to the JSON property queries
2458 2459 2460 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2458 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
2464 2465 2466 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2464 def schema_relationships @schema_relationships end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2471 2472 2473 2474 2475 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2471 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 |