Class: Google::Apis::DataflowV1b3::BigQueryIoDetails
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::BigQueryIoDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
Metadata for a BigQuery connector used by the job.
Instance Attribute Summary collapse
-
#dataset ⇒ String
Dataset accessed in the connection.
-
#project_id ⇒ String
Project accessed in the connection.
-
#query ⇒ String
Query used to access data in the connection.
-
#table ⇒ String
Table accessed in the connection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BigQueryIoDetails
constructor
A new instance of BigQueryIoDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ BigQueryIoDetails
Returns a new instance of BigQueryIoDetails
238 239 240 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 238 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset ⇒ String
Dataset accessed in the connection.
Corresponds to the JSON property dataset
221 222 223 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 221 def dataset @dataset end |
#project_id ⇒ String
Project accessed in the connection.
Corresponds to the JSON property projectId
226 227 228 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 226 def project_id @project_id end |
#query ⇒ String
Query used to access data in the connection.
Corresponds to the JSON property query
231 232 233 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 231 def query @query end |
#table ⇒ String
Table accessed in the connection.
Corresponds to the JSON property table
236 237 238 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 236 def table @table end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
243 244 245 246 247 248 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 243 def update!(**args) @dataset = args[:dataset] if args.key?(:dataset) @project_id = args[:project_id] if args.key?(:project_id) @query = args[:query] if args.key?(:query) @table = args[:table] if args.key?(:table) end |