Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaNextTask

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaNextTask

Returns a new instance of GoogleCloudIntegrationsV1alphaNextTask.



7987
7988
7989
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7987

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

Instance Attribute Details

#conditionString

Standard filter expression for this task to become an eligible next task. Corresponds to the JSON property condition

Returns:

  • (String)


7964
7965
7966
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7964

def condition
  @condition
end

#descriptionString

User-provided description intended to give additional business context about the task. Corresponds to the JSON property description

Returns:

  • (String)


7970
7971
7972
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7970

def description
  @description
end

#display_nameString

User-provided label that is attached to this edge in the UI. Corresponds to the JSON property displayName

Returns:

  • (String)


7975
7976
7977
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7975

def display_name
  @display_name
end

#task_config_idString

ID of the next task. Corresponds to the JSON property taskConfigId

Returns:

  • (String)


7980
7981
7982
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7980

def task_config_id
  @task_config_id
end

#task_idString

Task number of the next task. Corresponds to the JSON property taskId

Returns:

  • (String)


7985
7986
7987
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7985

def task_id
  @task_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7992
7993
7994
7995
7996
7997
7998
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7992

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