import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a conversation profile in the specified project. ConversationProfile.CreateTime and ConversationProfile.UpdateTime aren't populated in the response. You can retrieve them via GetConversationProfile API. */ export declare class ConversationProfile extends pulumi.CustomResource { /** * Get an existing ConversationProfile 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): ConversationProfile; /** * Returns true if the given object is an instance of ConversationProfile. 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 ConversationProfile; /** * Configuration for an automated agent to use with this profile. */ readonly automatedAgentConfig: pulumi.Output; /** * Create time of the conversation profile. */ readonly createTime: pulumi.Output; /** * Human readable name for this profile. Max length 1024 bytes. */ readonly displayName: pulumi.Output; /** * Configuration for agent assistance to use with this profile. */ readonly humanAgentAssistantConfig: pulumi.Output; /** * Configuration for connecting to a live agent. Currently, this feature is not general available, please contact Google to get access. */ readonly humanAgentHandoffConfig: pulumi.Output; /** * Language code for the conversation profile. If not specified, the language is en-US. Language at ConversationProfile should be set for all non en-us languages. This should be a [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag. Example: "en-US". */ readonly languageCode: pulumi.Output; readonly location: pulumi.Output; /** * Configuration for logging conversation lifecycle events. */ readonly loggingConfig: pulumi.Output; /** * The unique identifier of this conversation profile. Format: `projects//locations//conversationProfiles/`. */ readonly name: pulumi.Output; /** * Configuration for publishing new message events. Event will be sent in format of ConversationEvent */ readonly newMessageEventNotificationConfig: pulumi.Output; /** * Configuration for publishing conversation lifecycle events. */ readonly notificationConfig: pulumi.Output; readonly project: pulumi.Output; /** * Name of the CX SecuritySettings reference for the agent. Format: `projects//locations//securitySettings/`. */ readonly securitySettings: pulumi.Output; /** * Settings for speech transcription. */ readonly sttConfig: pulumi.Output; /** * The time zone of this conversational profile from the [time zone database](https://www.iana.org/time-zones), e.g., America/New_York, Europe/Paris. Defaults to America/New_York. */ readonly timeZone: pulumi.Output; /** * Configuration for Text-to-Speech synthesization. Used by Phone Gateway to specify synthesization options. If agent defines synthesization options as well, agent settings overrides the option here. */ readonly ttsConfig: pulumi.Output; /** * Update time of the conversation profile. */ readonly updateTime: pulumi.Output; /** * Create a ConversationProfile 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: ConversationProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ConversationProfile resource. */ export interface ConversationProfileArgs { /** * Configuration for an automated agent to use with this profile. */ automatedAgentConfig?: pulumi.Input; /** * Human readable name for this profile. Max length 1024 bytes. */ displayName: pulumi.Input; /** * Configuration for agent assistance to use with this profile. */ humanAgentAssistantConfig?: pulumi.Input; /** * Configuration for connecting to a live agent. Currently, this feature is not general available, please contact Google to get access. */ humanAgentHandoffConfig?: pulumi.Input; /** * Language code for the conversation profile. If not specified, the language is en-US. Language at ConversationProfile should be set for all non en-us languages. This should be a [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag. Example: "en-US". */ languageCode?: pulumi.Input; location?: pulumi.Input; /** * Configuration for logging conversation lifecycle events. */ loggingConfig?: pulumi.Input; /** * The unique identifier of this conversation profile. Format: `projects//locations//conversationProfiles/`. */ name?: pulumi.Input; /** * Configuration for publishing new message events. Event will be sent in format of ConversationEvent */ newMessageEventNotificationConfig?: pulumi.Input; /** * Configuration for publishing conversation lifecycle events. */ notificationConfig?: pulumi.Input; project?: pulumi.Input; /** * Name of the CX SecuritySettings reference for the agent. Format: `projects//locations//securitySettings/`. */ securitySettings?: pulumi.Input; /** * Settings for speech transcription. */ sttConfig?: pulumi.Input; /** * The time zone of this conversational profile from the [time zone database](https://www.iana.org/time-zones), e.g., America/New_York, Europe/Paris. Defaults to America/New_York. */ timeZone?: pulumi.Input; /** * Configuration for Text-to-Speech synthesization. Used by Phone Gateway to specify synthesization options. If agent defines synthesization options as well, agent settings overrides the option here. */ ttsConfig?: pulumi.Input; }