Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing
- 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
-
#dataset ⇒ String
Output only.
-
#location ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing
constructor
A new instance of GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing
Returns a new instance of GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing.
2105 2106 2107 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2105 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset ⇒ String
Output only. The BigQuery dataset the discovered tables are published to.
Corresponds to the JSON property dataset
2098 2099 2100 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2098 def dataset @dataset end |
#location ⇒ String
Output only. The location of the BigQuery publishing dataset.
Corresponds to the JSON property location
2103 2104 2105 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2103 def location @location end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2110 2111 2112 2113 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2110 def update!(**args) @dataset = args[:dataset] if args.key?(:dataset) @location = args[:location] if args.key?(:location) end |