import * as pulumi from "@pulumi/pulumi"; import { output as outputs } from "../../types"; /** * Creates a Version in the specified Flow. */ export declare class AgentFlowVersion extends pulumi.CustomResource { /** * Get an existing AgentFlowVersion 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): AgentFlowVersion; /** * Returns true if the given object is an instance of AgentFlowVersion. 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 AgentFlowVersion; /** * Create time of the version. */ readonly createTime: pulumi.Output; /** * The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected. */ readonly description: pulumi.Output; /** * Required. The human-readable name of the version. Limit of 64 characters. */ readonly displayName: pulumi.Output; /** * Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation. */ readonly name: pulumi.Output; /** * The NLU settings of the flow at version creation. */ readonly nluSettings: pulumi.Output; /** * The state of this version. This field is read-only and cannot be set by create and update methods. */ readonly state: pulumi.Output; /** * Create a AgentFlowVersion 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: AgentFlowVersionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AgentFlowVersion resource. */ export interface AgentFlowVersionArgs { readonly agentsId: pulumi.Input; /** * The description of the version. The maximum length is 500 characters. If exceeded, the request is rejected. */ readonly description?: pulumi.Input; /** * Required. The human-readable name of the version. Limit of 64 characters. */ readonly displayName?: pulumi.Input; readonly flowsId: pulumi.Input; readonly locationsId: pulumi.Input; /** * Format: projects//locations//agents//flows//versions/. Version ID is a self-increasing number generated by Dialogflow upon version creation. */ readonly name?: pulumi.Input; readonly projectsId: pulumi.Input; readonly versionsId: pulumi.Input; }