import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new Execution in a given project and location. * Auto-naming is currently not supported for this resource. */ export declare class Execution extends pulumi.CustomResource { /** * Get an existing Execution 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): Execution; /** * Returns true if the given object is an instance of Execution. 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 Execution; /** * Time the Execution was instantiated. */ readonly createTime: pulumi.Output; /** * A brief description of this execution. */ readonly description: pulumi.Output; /** * Name used for UI purposes. Name can only contain alphanumeric characters and underscores '_'. */ readonly displayName: pulumi.Output; /** * Required. User-defined unique ID of this execution. */ readonly executionId: pulumi.Output; /** * execute metadata including name, hardware spec, region, labels, etc. */ readonly executionTemplate: pulumi.Output; /** * The URI of the external job used to execute the notebook. */ readonly jobUri: pulumi.Output; readonly location: pulumi.Output; /** * The resource name of the execute. Format: `projects/{project_id}/locations/{location}/executions/{execution_id}` */ readonly name: pulumi.Output; /** * Output notebook file generated by this execution */ readonly outputNotebookFile: pulumi.Output; readonly project: pulumi.Output; /** * State of the underlying AI Platform job. */ readonly state: pulumi.Output; /** * Time the Execution was last updated. */ readonly updateTime: pulumi.Output; /** * Create a Execution 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: ExecutionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Execution resource. */ export interface ExecutionArgs { /** * A brief description of this execution. */ description?: pulumi.Input; /** * Required. User-defined unique ID of this execution. */ executionId: pulumi.Input; /** * execute metadata including name, hardware spec, region, labels, etc. */ executionTemplate?: pulumi.Input; location?: pulumi.Input; /** * Output notebook file generated by this execution */ outputNotebookFile?: pulumi.Input; project?: pulumi.Input; }