Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
The task that is next in line to be executed, if the condition specified evaluated to true.
Instance Attribute Summary collapse
-
#condition ⇒ String
Standard filter expression for this task to become an eligible next task.
-
#description ⇒ String
User-provided description intended to give additional business context about the task.
-
#display_name ⇒ String
User-provided label that is attached to this edge in the UI.
-
#task_config_id ⇒ String
ID of the next task.
-
#task_id ⇒ String
Task number of the next task.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaNextTask
constructor
A new instance of GoogleCloudIntegrationsV1alphaNextTask.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaNextTask
Returns a new instance of GoogleCloudIntegrationsV1alphaNextTask.
7484 7485 7486 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7484 def initialize(**args) update!(**args) end |
Instance Attribute Details
#condition ⇒ String
Standard filter expression for this task to become an eligible next task.
Corresponds to the JSON property condition
7461 7462 7463 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7461 def condition @condition end |
#description ⇒ String
User-provided description intended to give additional business context about
the task.
Corresponds to the JSON property description
7467 7468 7469 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7467 def description @description end |
#display_name ⇒ String
User-provided label that is attached to this edge in the UI.
Corresponds to the JSON property displayName
7472 7473 7474 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7472 def display_name @display_name end |
#task_config_id ⇒ String
ID of the next task.
Corresponds to the JSON property taskConfigId
7477 7478 7479 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7477 def task_config_id @task_config_id end |
#task_id ⇒ String
Task number of the next task.
Corresponds to the JSON property taskId
7482 7483 7484 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7482 def task_id @task_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7489 7490 7491 7492 7493 7494 7495 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7489 def update!(**args) @condition = args[:condition] if args.key?(:condition) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @task_config_id = args[:task_config_id] if args.key?(:task_config_id) @task_id = args[:task_id] if args.key?(:task_id) end |