import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates an agent environment. * Auto-naming is currently not supported for this resource. */ export declare class Environment extends pulumi.CustomResource { /** * Get an existing Environment 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): Environment; /** * Returns true if the given object is an instance of Environment. 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 Environment; /** * Optional. The agent version loaded into this environment. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versions/` */ readonly agentVersion: pulumi.Output; /** * Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected. */ readonly description: pulumi.Output; /** * Required. The unique id of the new environment. */ readonly environmentId: pulumi.Output; /** * Optional. The fulfillment settings to use for this environment. */ readonly fulfillment: pulumi.Output; readonly location: pulumi.Output; /** * The unique identifier of this agent environment. Supported formats: - `projects//agent/environments/` - `projects//locations//agent/environments/` The environment ID for the default environment is `-`. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The state of this environment. This field is read-only, i.e., it cannot be set by create and update methods. */ readonly state: pulumi.Output; /** * Optional. Text to speech settings for this environment. */ readonly textToSpeechSettings: pulumi.Output; /** * The last update time of this environment. This field is read-only, i.e., it cannot be set by create and update methods. */ readonly updateTime: pulumi.Output; /** * Create a Environment 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: EnvironmentArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Environment resource. */ export interface EnvironmentArgs { /** * Optional. The agent version loaded into this environment. Supported formats: - `projects//agent/versions/` - `projects//locations//agent/versions/` */ agentVersion?: pulumi.Input; /** * Optional. The developer-provided description for this environment. The maximum length is 500 characters. If exceeded, the request is rejected. */ description?: pulumi.Input; /** * Required. The unique id of the new environment. */ environmentId: pulumi.Input; /** * Optional. The fulfillment settings to use for this environment. */ fulfillment?: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; /** * Optional. Text to speech settings for this environment. */ textToSpeechSettings?: pulumi.Input; }