Class: Google::Apis::DataformV1beta1::Operations
- Inherits:
-
Object
- Object
- Google::Apis::DataformV1beta1::Operations
- 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 list of arbitrary database operations.
Instance Attribute Summary collapse
-
#dependency_targets ⇒ Array<Google::Apis::DataformV1beta1::Target>
A list of actions that this action depends on.
-
#disabled ⇒ Boolean
(also: #disabled?)
Whether this action is disabled (i.e. should not be run).
-
#has_output ⇒ Boolean
(also: #has_output?)
Whether these operations produce an output relation.
-
#queries ⇒ Array<String>
A list of arbitrary SQL statements that will be executed without alteration.
-
#relation_descriptor ⇒ Google::Apis::DataformV1beta1::RelationDescriptor
Describes a relation and its columns.
-
#tags ⇒ Array<String>
Arbitrary, user-defined tags on this action.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Operations
constructor
A new instance of Operations.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Operations
Returns a new instance of Operations.
1627 1628 1629 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1627 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dependency_targets ⇒ Array<Google::Apis::DataformV1beta1::Target>
A list of actions that this action depends on.
Corresponds to the JSON property dependencyTargets
1598 1599 1600 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1598 def dependency_targets @dependency_targets end |
#disabled ⇒ Boolean Also known as: disabled?
Whether this action is disabled (i.e. should not be run).
Corresponds to the JSON property disabled
1603 1604 1605 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1603 def disabled @disabled end |
#has_output ⇒ Boolean Also known as: has_output?
Whether these operations produce an output relation.
Corresponds to the JSON property hasOutput
1609 1610 1611 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1609 def has_output @has_output end |
#queries ⇒ Array<String>
A list of arbitrary SQL statements that will be executed without alteration.
Corresponds to the JSON property queries
1615 1616 1617 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1615 def queries @queries end |
#relation_descriptor ⇒ Google::Apis::DataformV1beta1::RelationDescriptor
Describes a relation and its columns.
Corresponds to the JSON property relationDescriptor
1620 1621 1622 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1620 def relation_descriptor @relation_descriptor end |
#tags ⇒ Array<String>
Arbitrary, user-defined tags on this action.
Corresponds to the JSON property tags
1625 1626 1627 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1625 def @tags end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1632 1633 1634 1635 1636 1637 1638 1639 |
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1632 def update!(**args) @dependency_targets = args[:dependency_targets] if args.key?(:dependency_targets) @disabled = args[:disabled] if args.key?(:disabled) @has_output = args[:has_output] if args.key?(:has_output) @queries = args[:queries] if args.key?(:queries) @relation_descriptor = args[:relation_descriptor] if args.key?(:relation_descriptor) @tags = args[:tags] if args.key?(:tags) end |