import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ResponsemanagementResponseConfig extends cdktf.TerraformMetaArguments { /** * Assets used in the response * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#asset_ids ResponsemanagementResponse#asset_ids} */ readonly assetIds?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#id ResponsemanagementResponse#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id?: string; /** * The interaction type for this response. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#interaction_type ResponsemanagementResponse#interaction_type} */ readonly interactionType?: string; /** * One or more libraries response is associated with. Changing the library IDs will result in the resource being recreated * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#library_ids ResponsemanagementResponse#library_ids} */ readonly libraryIds: string[]; /** * Name of the responsemanagement response * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#name ResponsemanagementResponse#name} */ readonly name: string; /** * The response type represented by the response. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#response_type ResponsemanagementResponse#response_type} */ readonly responseType?: string; /** * Metadata about the text substitutions in json schema format. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#substitutions_schema_id ResponsemanagementResponse#substitutions_schema_id} */ readonly substitutionsSchemaId?: string; /** * footer block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#footer ResponsemanagementResponse#footer} */ readonly footer?: ResponsemanagementResponseFooter; /** * messaging_template block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#messaging_template ResponsemanagementResponse#messaging_template} */ readonly messagingTemplate?: ResponsemanagementResponseMessagingTemplate; /** * substitutions block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#substitutions ResponsemanagementResponse#substitutions} */ readonly substitutions?: ResponsemanagementResponseSubstitutions[] | cdktf.IResolvable; /** * texts block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#texts ResponsemanagementResponse#texts} */ readonly texts: ResponsemanagementResponseTexts[] | cdktf.IResolvable; } export interface ResponsemanagementResponseFooter { /** * Specifies the canned response template where the footer can be used.Valid values: Campaign. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#applicable_resources ResponsemanagementResponse#applicable_resources} */ readonly applicableResources?: string[]; /** * Specifies the type represented by Footer.Valid values: Signature. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#type ResponsemanagementResponse#type} */ readonly type?: string; } export declare function responsemanagementResponseFooterToTerraform(struct?: ResponsemanagementResponseFooterOutputReference | ResponsemanagementResponseFooter): any; export declare function responsemanagementResponseFooterToHclTerraform(struct?: ResponsemanagementResponseFooterOutputReference | ResponsemanagementResponseFooter): any; export declare class ResponsemanagementResponseFooterOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): ResponsemanagementResponseFooter | undefined; set internalValue(value: ResponsemanagementResponseFooter | undefined); private _applicableResources?; get applicableResources(): string[]; set applicableResources(value: string[]); resetApplicableResources(): void; get applicableResourcesInput(): string[]; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; } export interface ResponsemanagementResponseMessagingTemplateWhatsApp { /** * The messaging template language configured for this template. This is a WhatsApp specific value. For example, 'en_US' * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#language ResponsemanagementResponse#language} */ readonly language: string; /** * The messaging template name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#name ResponsemanagementResponse#name} */ readonly name: string; /** * The messaging template namespace. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#namespace ResponsemanagementResponse#namespace} */ readonly namespace?: string; } export declare function responsemanagementResponseMessagingTemplateWhatsAppToTerraform(struct?: ResponsemanagementResponseMessagingTemplateWhatsAppOutputReference | ResponsemanagementResponseMessagingTemplateWhatsApp): any; export declare function responsemanagementResponseMessagingTemplateWhatsAppToHclTerraform(struct?: ResponsemanagementResponseMessagingTemplateWhatsAppOutputReference | ResponsemanagementResponseMessagingTemplateWhatsApp): any; export declare class ResponsemanagementResponseMessagingTemplateWhatsAppOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): ResponsemanagementResponseMessagingTemplateWhatsApp | undefined; set internalValue(value: ResponsemanagementResponseMessagingTemplateWhatsApp | undefined); private _language?; get language(): string; set language(value: string); get languageInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _namespace?; get namespace(): string; set namespace(value: string); resetNamespace(): void; get namespaceInput(): string; } export interface ResponsemanagementResponseMessagingTemplate { /** * whats_app block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#whats_app ResponsemanagementResponse#whats_app} */ readonly whatsApp?: ResponsemanagementResponseMessagingTemplateWhatsApp; } export declare function responsemanagementResponseMessagingTemplateToTerraform(struct?: ResponsemanagementResponseMessagingTemplateOutputReference | ResponsemanagementResponseMessagingTemplate): any; export declare function responsemanagementResponseMessagingTemplateToHclTerraform(struct?: ResponsemanagementResponseMessagingTemplateOutputReference | ResponsemanagementResponseMessagingTemplate): any; export declare class ResponsemanagementResponseMessagingTemplateOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): ResponsemanagementResponseMessagingTemplate | undefined; set internalValue(value: ResponsemanagementResponseMessagingTemplate | undefined); private _whatsApp; get whatsApp(): ResponsemanagementResponseMessagingTemplateWhatsAppOutputReference; putWhatsApp(value: ResponsemanagementResponseMessagingTemplateWhatsApp): void; resetWhatsApp(): void; get whatsAppInput(): ResponsemanagementResponseMessagingTemplateWhatsApp; } export interface ResponsemanagementResponseSubstitutions { /** * Response substitution default value. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#default_value ResponsemanagementResponse#default_value} */ readonly defaultValue?: string; /** * Response substitution description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#description ResponsemanagementResponse#description} */ readonly description?: string; /** * Response substitution identifier. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#id ResponsemanagementResponse#id} * * Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. * If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. */ readonly id: string; } export declare function responsemanagementResponseSubstitutionsToTerraform(struct?: ResponsemanagementResponseSubstitutions | cdktf.IResolvable): any; export declare function responsemanagementResponseSubstitutionsToHclTerraform(struct?: ResponsemanagementResponseSubstitutions | cdktf.IResolvable): any; export declare class ResponsemanagementResponseSubstitutionsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): ResponsemanagementResponseSubstitutions | cdktf.IResolvable | undefined; set internalValue(value: ResponsemanagementResponseSubstitutions | cdktf.IResolvable | undefined); private _defaultValue?; get defaultValue(): string; set defaultValue(value: string); resetDefaultValue(): void; get defaultValueInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _id?; get id(): string; set id(value: string); get idInput(): string; } export declare class ResponsemanagementResponseSubstitutionsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ResponsemanagementResponseSubstitutions[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): ResponsemanagementResponseSubstitutionsOutputReference; } export interface ResponsemanagementResponseTexts { /** * Response text content. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#content ResponsemanagementResponse#content} */ readonly content: string; /** * Response text content type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#content_type ResponsemanagementResponse#content_type} */ readonly contentType?: string; /** * Response text type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#type ResponsemanagementResponse#type} */ readonly type?: string; } export declare function responsemanagementResponseTextsToTerraform(struct?: ResponsemanagementResponseTexts | cdktf.IResolvable): any; export declare function responsemanagementResponseTextsToHclTerraform(struct?: ResponsemanagementResponseTexts | cdktf.IResolvable): any; export declare class ResponsemanagementResponseTextsOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): ResponsemanagementResponseTexts | cdktf.IResolvable | undefined; set internalValue(value: ResponsemanagementResponseTexts | cdktf.IResolvable | undefined); private _content?; get content(): string; set content(value: string); get contentInput(): string; private _contentType?; get contentType(): string; set contentType(value: string); resetContentType(): void; get contentTypeInput(): string; private _type?; get type(): string; set type(value: string); resetType(): void; get typeInput(): string; } export declare class ResponsemanagementResponseTextsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ResponsemanagementResponseTexts[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): ResponsemanagementResponseTextsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response genesyscloud_responsemanagement_response} */ export declare class ResponsemanagementResponse extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_responsemanagement_response"; /** * Generates CDKTF code for importing a ResponsemanagementResponse resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the ResponsemanagementResponse to import * @param importFromId The id of the existing ResponsemanagementResponse that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ResponsemanagementResponse to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/responsemanagement_response genesyscloud_responsemanagement_response} Resource * * @param scope The scope in which to define this construct * @param id The scoped construct ID. Must be unique amongst siblings in the same scope * @param options ResponsemanagementResponseConfig */ constructor(scope: Construct, id: string, config: ResponsemanagementResponseConfig); private _assetIds?; get assetIds(): string[]; set assetIds(value: string[]); resetAssetIds(): void; get assetIdsInput(): string[]; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _interactionType?; get interactionType(): string; set interactionType(value: string); resetInteractionType(): void; get interactionTypeInput(): string; private _libraryIds?; get libraryIds(): string[]; set libraryIds(value: string[]); get libraryIdsInput(): string[]; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _responseType?; get responseType(): string; set responseType(value: string); resetResponseType(): void; get responseTypeInput(): string; private _substitutionsSchemaId?; get substitutionsSchemaId(): string; set substitutionsSchemaId(value: string); resetSubstitutionsSchemaId(): void; get substitutionsSchemaIdInput(): string; private _footer; get footer(): ResponsemanagementResponseFooterOutputReference; putFooter(value: ResponsemanagementResponseFooter): void; resetFooter(): void; get footerInput(): ResponsemanagementResponseFooter; private _messagingTemplate; get messagingTemplate(): ResponsemanagementResponseMessagingTemplateOutputReference; putMessagingTemplate(value: ResponsemanagementResponseMessagingTemplate): void; resetMessagingTemplate(): void; get messagingTemplateInput(): ResponsemanagementResponseMessagingTemplate; private _substitutions; get substitutions(): ResponsemanagementResponseSubstitutionsList; putSubstitutions(value: ResponsemanagementResponseSubstitutions[] | cdktf.IResolvable): void; resetSubstitutions(): void; get substitutionsInput(): any; private _texts; get texts(): ResponsemanagementResponseTextsList; putTexts(value: ResponsemanagementResponseTexts[] | cdktf.IResolvable): void; get textsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }