import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new process. */ export declare class Process extends pulumi.CustomResource { /** * Get an existing Process 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): Process; /** * Returns true if the given object is an instance of Process. 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 Process; /** * Optional. The attributes of the process. Should only be used for the purpose of non-semantic management (classifying, describing or labeling the process). 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 200 characters and only contain UTF-8 letters or numbers, spaces or characters like `_-:&.` */ readonly displayName: pulumi.Output; readonly location: pulumi.Output; /** * Immutable. The resource name of the lineage process. Format: `projects/{project}/locations/{location}/processes/{process}`. Can be specified or auto-assigned. {process} must be not longer than 200 characters and only contain characters in a set: `a-zA-Z0-9_-:.` */ readonly name: pulumi.Output; /** * Optional. The origin of this process and its runs and lineage events. */ readonly origin: 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; /** * Create a Process 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?: ProcessArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Process resource. */ export interface ProcessArgs { /** * Optional. The attributes of the process. Should only be used for the purpose of non-semantic management (classifying, describing or labeling the process). 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 200 characters and only contain UTF-8 letters or numbers, spaces or characters like `_-:&.` */ displayName?: pulumi.Input; location?: pulumi.Input; /** * Immutable. The resource name of the lineage process. Format: `projects/{project}/locations/{location}/processes/{process}`. Can be specified or auto-assigned. {process} must be not longer than 200 characters and only contain characters in a set: `a-zA-Z0-9_-:.` */ name?: pulumi.Input; /** * Optional. The origin of this process and its runs and lineage events. */ origin?: 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; }