Class: Google::Apis::DataformV1beta1::WorkflowInvocationAction

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 single action in a workflow invocation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WorkflowInvocationAction

Returns a new instance of WorkflowInvocationAction.



2029
2030
2031
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2029

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

Instance Attribute Details

#bigquery_actionGoogle::Apis::DataformV1beta1::BigQueryAction

Represents a workflow action that will run against BigQuery. Corresponds to the JSON property bigqueryAction



1997
1998
1999
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 1997

def bigquery_action
  @bigquery_action
end

#canonical_targetGoogle::Apis::DataformV1beta1::Target

Represents an action identifier. If the action writes output, the output will be written to the referenced database object. Corresponds to the JSON property canonicalTarget



2003
2004
2005
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2003

def canonical_target
  @canonical_target
end

#failure_reasonString

Output only. If and only if action's state is FAILED a failure reason is set. Corresponds to the JSON property failureReason

Returns:

  • (String)


2008
2009
2010
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2008

def failure_reason
  @failure_reason
end

#invocation_timingGoogle::Apis::DataformV1beta1::Interval

Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time. Corresponds to the JSON property invocationTiming



2016
2017
2018
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2016

def invocation_timing
  @invocation_timing
end

#stateString

Output only. This action's current state. Corresponds to the JSON property state

Returns:

  • (String)


2021
2022
2023
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2021

def state
  @state
end

#targetGoogle::Apis::DataformV1beta1::Target

Represents an action identifier. If the action writes output, the output will be written to the referenced database object. Corresponds to the JSON property target



2027
2028
2029
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2027

def target
  @target
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2034
2035
2036
2037
2038
2039
2040
2041
# File 'lib/google/apis/dataform_v1beta1/classes.rb', line 2034

def update!(**args)
  @bigquery_action = args[:bigquery_action] if args.key?(:bigquery_action)
  @canonical_target = args[:canonical_target] if args.key?(:canonical_target)
  @failure_reason = args[:failure_reason] if args.key?(:failure_reason)
  @invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
  @state = args[:state] if args.key?(:state)
  @target = args[:target] if args.key?(:target)
end