Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing

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

Describes BigQuery publishing configurations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing

Returns a new instance of GoogleCloudDataplexV1DataDiscoveryResultBigQueryPublishing.



2119
2120
2121
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2119

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

Instance Attribute Details

#datasetString

Output only. The BigQuery dataset the discovered tables are published to. Corresponds to the JSON property dataset

Returns:

  • (String)


2112
2113
2114
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2112

def dataset
  @dataset
end

#locationString

Output only. The location of the BigQuery publishing dataset. Corresponds to the JSON property location

Returns:

  • (String)


2117
2118
2119
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2117

def location
  @location
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2124
2125
2126
2127
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2124

def update!(**args)
  @dataset = args[:dataset] if args.key?(:dataset)
  @location = args[:location] if args.key?(:location)
end