Google Cloud Dataplex V1Task Execution Spec Args
data class GoogleCloudDataplexV1TaskExecutionSpecArgs(val args: Output<Map<String, String>>? = null, val kmsKey: Output<String>? = null, val maxJobExecutionLifetime: Output<String>? = null, val project: Output<String>? = null, val serviceAccount: Output<String>) : ConvertibleToJava<GoogleCloudDataplexV1TaskExecutionSpecArgs>
Execution related settings, like retry and service_account.
Constructors
Functions
Properties
Link copied to clipboard
Optional. The arguments to pass to the task. The args can use placeholders of the format ${placeholder} as part of key/value string. These will be interpolated before passing the args to the driver. Currently supported placeholders: - ${task_id} - ${job_time} To pass positional args, set the key as TASK_ARGS. The value should be a comma-separated string of all the positional arguments. To use a delimiter other than comma, refer to https://cloud.google.com/sdk/gcloud/reference/topic/escaping. In case of other keys being present in the args, then TASK_ARGS will be passed as the last argument.