Class: Google::Apis::WorkloadmanagerV1::BigQueryDestination

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_tableBoolean Also known as: create_new_results_table?

Optional. determine if results will be saved in a new table Corresponds to the JSON property createNewResultsTable

Returns:

  • (Boolean)


105
106
107
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 105

def create_new_results_table
  @create_new_results_table
end

#destination_datasetString

Optional. destination dataset to save evaluation results Corresponds to the JSON property destinationDataset

Returns:

  • (String)


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