Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultTableResult

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 table resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataDocumentationResultTableResult

Returns a new instance of GoogleCloudDataplexV1DataDocumentationResultTableResult.



2646
2647
2648
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2646

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

Instance Attribute Details

#nameString

Output only. The service-qualified full resource name of the cloud resource. Ex: //bigquery.googleapis.com/projects/PROJECT_ID/datasets/DATASET_ID/tables/ TABLE_ID Corresponds to the JSON property name

Returns:

  • (String)


2629
2630
2631
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2629

def name
  @name
end

#overviewString

Output only. Generated description of the table. Corresponds to the JSON property overview

Returns:

  • (String)


2634
2635
2636
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2634

def overview
  @overview
end

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

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



2639
2640
2641
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2639

def queries
  @queries
end

#schemaGoogle::Apis::DataplexV1::GoogleCloudDataplexV1DataDocumentationResultSchema

Schema of the table with generated metadata of columns. Corresponds to the JSON property schema



2644
2645
2646
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2644

def schema
  @schema
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2651
2652
2653
2654
2655
2656
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2651

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