Class: Google::Apis::DataformV1beta1::BigQueryAction

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataform_v1beta1/classes.rb,
lib/google/apis/dataform_v1beta1/representations.rb,
lib/google/apis/dataform_v1beta1/representations.rb

Overview

Represents a workflow action that will run against BigQuery.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BigQueryAction

Returns a new instance of BigQueryAction.



86
87
88
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 86

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

Instance Attribute Details

#sql_scriptString

Output only. The generated BigQuery SQL script that will be executed. Corresponds to the JSON property sqlScript

Returns:

  • (String)


84
85
86
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 84

def sql_script
  @sql_script
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



91
92
93
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 91

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