class Google::Apis::DataflowV1b3::BigQueryIoDetails
Metadata for a BigQuery connector used by the job.
Attributes
dataset[RW]
Dataset accessed in the connection. Corresponds to the JSON property `dataset` @return [String]
project_id[RW]
Project accessed in the connection. Corresponds to the JSON property `projectId` @return [String]
query[RW]
Query used to access data in the connection. Corresponds to the JSON property `query` @return [String]
table[RW]
Table accessed in the connection. Corresponds to the JSON property `table` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 237 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 242 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