Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoTeardownTaskConfig

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseCrmEventbusProtoTeardownTaskConfig

Returns a new instance of EnterpriseCrmEventbusProtoTeardownTaskConfig.



3145
3146
3147
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3145

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

Instance Attribute Details

#creator_emailString

The creator's email address. Corresponds to the JSON property creatorEmail

Returns:

  • (String)


3112
3113
3114
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3112

def creator_email
  @creator_email
end

#nameString

Required. Unique identifier of the teardown task within this Config. We use this field as the identifier to find next teardown tasks. Corresponds to the JSON property name

Returns:

  • (String)


3118
3119
3120
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3118

def name
  @name
end

#next_teardown_taskGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoNextTeardownTask

The teardown task that is next in line to be executed. We support only sequential execution of teardown tasks (i.e. no branching). Corresponds to the JSON property nextTeardownTask



3124
3125
3126
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3124

def next_teardown_task
  @next_teardown_task
end

#parametersGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoEventParameters

LINT.IfChange This message is used for processing and persisting (when applicable) key value pair parameters for each event in the event bus. Please see go/integration-platform/event_bus.md for more details. Next id: 4 Corresponds to the JSON property parameters



3131
3132
3133
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3131

def parameters
  @parameters
end

#propertiesGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoEventBusProperties

LINT.IfChange This message is used for storing key value pair properties for each Event / Task in the EventBus. Please see go/cloud-crm-eng/platform/ event_bus.md for more details. Corresponds to the JSON property properties



3138
3139
3140
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3138

def properties
  @properties
end

#teardown_task_implementation_class_nameString

Required. Implementation class name. Corresponds to the JSON property teardownTaskImplementationClassName

Returns:

  • (String)


3143
3144
3145
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3143

def teardown_task_implementation_class_name
  @teardown_task_implementation_class_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3150
3151
3152
3153
3154
3155
3156
3157
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 3150

def update!(**args)
  @creator_email = args[:creator_email] if args.key?(:creator_email)
  @name = args[:name] if args.key?(:name)
  @next_teardown_task = args[:next_teardown_task] if args.key?(:next_teardown_task)
  @parameters = args[:parameters] if args.key?(:parameters)
  @properties = args[:properties] if args.key?(:properties)
  @teardown_task_implementation_class_name = args[:teardown_task_implementation_class_name] if args.key?(:teardown_task_implementation_class_name)
end