Class: Google::Apis::WorkloadmanagerV1::BigQueryDestination
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::BigQueryDestination
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workloadmanager_v1/classes.rb,
lib/google/apis/workloadmanager_v1/representations.rb,
lib/google/apis/workloadmanager_v1/representations.rb
Overview
Message describing big query destination
Instance Attribute Summary collapse
-
#create_new_results_table ⇒ Boolean
(also: #create_new_results_table?)
Optional.
-
#destination_dataset ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BigQueryDestination
constructor
A new instance of BigQueryDestination.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BigQueryDestination
Returns a new instance of BigQueryDestination.
113 114 115 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_new_results_table ⇒ Boolean Also known as: create_new_results_table?
Optional. determine if results will be saved in a new table
Corresponds to the JSON property createNewResultsTable
105 106 107 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 105 def create_new_results_table @create_new_results_table end |
#destination_dataset ⇒ String
Optional. destination dataset to save evaluation results
Corresponds to the JSON property destinationDataset
111 112 113 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 111 def destination_dataset @destination_dataset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
118 119 120 121 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 118 def update!(**args) @create_new_results_table = args[:create_new_results_table] if args.key?(:create_new_results_table) @destination_dataset = args[:destination_dataset] if args.key?(:destination_dataset) end |