import * as pulumi from "@pulumi/pulumi"; /** * Creates an agent version. The new version points to the agent instance in the "default" environment. * Auto-naming is currently not supported for this resource. */ export declare class Version extends pulumi.CustomResource { /** * Get an existing Version 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): Version; /** * Returns true if the given object is an instance of Version. 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 Version; /** * The creation time of this version. This field is read-only, i.e., it cannot be set by create and update methods. */ readonly createTime: pulumi.Output; /** * Optional. The developer-provided description of this version. */ readonly description: pulumi.Output; readonly location: pulumi.Output; /** * The unique identifier of this agent version. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versions/` */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The status of this version. This field is read-only and cannot be set by create and update methods. */ readonly status: pulumi.Output; /** * The sequential number of this version. This field is read-only which means it cannot be set by create and update methods. */ readonly versionNumber: pulumi.Output; /** * Create a Version 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?: VersionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Version resource. */ export interface VersionArgs { /** * Optional. The developer-provided description of this version. */ description?: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; }