RunArgs

data class RunArgs(val attributes: Output<Map<String, String>>? = null, val displayName: Output<String>? = null, val endTime: Output<String>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val processId: Output<String>? = null, val project: Output<String>? = null, val requestId: Output<String>? = null, val startTime: Output<String>? = null, val state: Output<RunState>? = null) : ConvertibleToJava<RunArgs>

Creates a new run.

Constructors

Link copied to clipboard
constructor(attributes: Output<Map<String, String>>? = null, displayName: Output<String>? = null, endTime: Output<String>? = null, location: Output<String>? = null, name: Output<String>? = null, processId: Output<String>? = null, project: Output<String>? = null, requestId: Output<String>? = null, startTime: Output<String>? = null, state: Output<RunState>? = null)

Properties

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

Optional. The attributes of the run. Should only be used for the purpose of non-semantic management (classifying, describing or labeling the run). Up to 100 attributes are allowed.

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

Optional. A human-readable name you can set to display in a user interface. Must be not longer than 1024 characters and only contain UTF-8 letters or numbers, spaces or characters like _-:&.

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

Optional. The timestamp of the end of the run.

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

Immutable. The resource name of the run. Format: projects/{project}/locations/{location}/processes/{process}/runs/{run}. Can be specified or auto-assigned. {run} must be not longer than 200 characters and only contain characters in a set: a-zA-Z0-9_-:.

Link copied to clipboard
val processId: Output<String>? = null
Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val requestId: Output<String>? = null

A unique identifier for this request. Restricted to 36 ASCII characters. A random UUID is recommended. This request is idempotent only if a request_id is provided.

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

The timestamp of the start of the run.

Link copied to clipboard
val state: Output<RunState>? = null

The state of the run.

Functions

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