import * as pulumi from "@pulumi/pulumi"; import * as enums from "../../types/enums"; /** * Creates a new run. */ export declare class Run extends pulumi.CustomResource { /** * Get an existing Run resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Run; /** * Returns true if the given object is an instance of Run. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Run; /** * 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. */ readonly attributes: pulumi.Output<{ [key: string]: string; }>; /** * 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 `_-:&.` */ readonly displayName: pulumi.Output; /** * Optional. The timestamp of the end of the run. */ readonly endTime: pulumi.Output; readonly location: pulumi.Output; /** * 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_-:.` */ readonly name: pulumi.Output; readonly processId: pulumi.Output; readonly project: pulumi.Output; /** * 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. */ readonly requestId: pulumi.Output; /** * The timestamp of the start of the run. */ readonly startTime: pulumi.Output; /** * The state of the run. */ readonly state: pulumi.Output; /** * Create a Run resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: RunArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Run resource. */ export interface RunArgs { /** * 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. */ attributes?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * 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 `_-:&.` */ displayName?: pulumi.Input; /** * Optional. The timestamp of the end of the run. */ endTime?: pulumi.Input; location?: pulumi.Input; /** * 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_-:.` */ name?: pulumi.Input; processId: pulumi.Input; project?: pulumi.Input; /** * 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. */ requestId?: pulumi.Input; /** * The timestamp of the start of the run. */ startTime: pulumi.Input; /** * The state of the run. */ state: pulumi.Input; }