TriggerParametersArgs

data class TriggerParametersArgs(val endBy: Output<String>? = null, val interval: Output<Int>? = null, val intervalUnit: Output<IntervalUnit>? = null, val startFrom: Output<String>? = null, val startOn: Output<String>? = null) : ConvertibleToJava<TriggerParametersArgs>

The trigger parameters update for the storage task assignment execution

Constructors

Link copied to clipboard
constructor(endBy: Output<String>? = null, interval: Output<Int>? = null, intervalUnit: Output<IntervalUnit>? = null, startFrom: Output<String>? = null, startOn: Output<String>? = null)

Properties

Link copied to clipboard
val endBy: Output<String>? = null

When to end task execution. This is a required field when ExecutionTrigger.properties.type is 'OnSchedule'; this property should not be present when ExecutionTrigger.properties.type is 'RunOnce'

Link copied to clipboard
val interval: Output<Int>? = null

Run interval of task execution. This is a required field when ExecutionTrigger.properties.type is 'OnSchedule'; this property should not be present when ExecutionTrigger.properties.type is 'RunOnce'

Link copied to clipboard
val intervalUnit: Output<IntervalUnit>? = null

Run interval unit of task execution. This is a required field when ExecutionTrigger.properties.type is 'OnSchedule'; this property should not be present when ExecutionTrigger.properties.type is 'RunOnce'

Link copied to clipboard
val startFrom: Output<String>? = null

When to start task execution. This is a required field when ExecutionTrigger.properties.type is 'OnSchedule'; this property should not be present when ExecutionTrigger.properties.type is 'RunOnce'

Link copied to clipboard
val startOn: Output<String>? = null

When to start task execution. This is an optional field when ExecutionTrigger.properties.type is 'RunOnce'; this property should not be present when ExecutionTrigger.properties.type is 'OnSchedule'

Functions

Link copied to clipboard
open override fun toJava(): TriggerParametersArgs