Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig
- 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
Describes BigQuery publishing configurations.
Instance Attribute Summary collapse
-
#connection ⇒ String
Optional.
-
#table_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig
constructor
A new instance of GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig
Returns a new instance of GoogleCloudDataplexV1DataDiscoverySpecBigQueryPublishingConfig.
1646 1647 1648 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1646 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connection ⇒ String
Optional. The BigQuery connection used to create BigLake tables. Must be in
the form projects/project_id
/locations/location_id
/connections/
connection_id
Corresponds to the JSON property connection
1638 1639 1640 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1638 def connection @connection end |
#table_type ⇒ String
Optional. Determines whether to publish discovered tables as BigLake external
tables or non-BigLake external tables.
Corresponds to the JSON property tableType
1644 1645 1646 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1644 def table_type @table_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1651 1652 1653 1654 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 1651 def update!(**args) @connection = args[:connection] if args.key?(:connection) @table_type = args[:table_type] if args.key?(:table_type) end |