Class: Google::Apis::DataformV1beta1::BigQueryAction
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1beta1::BigQueryAction
- 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
-
#sql_script ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BigQueryAction
constructor
A new instance of BigQueryAction.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_script ⇒ String
Output only. The generated BigQuery SQL script that will be executed.
Corresponds to the JSON property sqlScript
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 |