StorageTaskOperationArgs

data class StorageTaskOperationArgs(val name: Output<Either<String, StorageTaskOperationName>>, val onFailure: Output<OnFailure>? = null, val onSuccess: Output<OnSuccess>? = null, val parameters: Output<Map<String, String>>? = null) : ConvertibleToJava<StorageTaskOperationArgs>

Represents an operation to be performed on the object

Constructors

Link copied to clipboard
constructor(name: Output<Either<String, StorageTaskOperationName>>, onFailure: Output<OnFailure>? = null, onSuccess: Output<OnSuccess>? = null, parameters: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val name: Output<Either<String, StorageTaskOperationName>>

The operation to be performed on the object.

Link copied to clipboard
val onFailure: Output<OnFailure>? = null

Action to be taken when the operation fails for a object.

Link copied to clipboard
val onSuccess: Output<OnSuccess>? = null

Action to be taken when the operation is successful for a object.

Link copied to clipboard
val parameters: Output<Map<String, String>>? = null

Key-value parameters for the operation.

Functions

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