import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ArchitectIvrConfig extends cdktf.TerraformMetaArguments { /** * ID of inbound call flow for closed hours. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#closed_hours_flow_id ArchitectIvr#closed_hours_flow_id} */ readonly closedHoursFlowId?: string; /** * IVR Config description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#description ArchitectIvr#description} */ readonly description?: string; /** * Division ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#division_id ArchitectIvr#division_id} */ readonly divisionId?: string; /** * The phone number(s) to contact the IVR by. Each phone number in the array must be in an E.164 number format. (Note: An array with a length greater than 50 will be broken into chunks and uploaded in subsequent PUT requests.) * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#dnis ArchitectIvr#dnis} */ readonly dnis?: string[]; /** * ID of inbound call flow for holidays. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#holiday_hours_flow_id ArchitectIvr#holiday_hours_flow_id} */ readonly holidayHoursFlowId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#id ArchitectIvr#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; /** * Name of the IVR config. Note: If the name changes, the existing Genesys Cloud IVR config will be dropped and recreated with a new ID. This can cause an Architect Flow to become invalid if the old flow is reference in the flow. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#name ArchitectIvr#name} */ readonly name: string; /** * ID of inbound call flow for open hours. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#open_hours_flow_id ArchitectIvr#open_hours_flow_id} */ readonly openHoursFlowId?: string; /** * Schedule group ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#schedule_group_id ArchitectIvr#schedule_group_id} */ readonly scheduleGroupId?: string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr genesyscloud_architect_ivr} */ export declare class ArchitectIvr extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_architect_ivr"; /** * Generates CDKTF code for importing a ArchitectIvr 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 ArchitectIvr to import * @param importFromId The id of the existing ArchitectIvr that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_ivr#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ArchitectIvr 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/architect_ivr genesyscloud_architect_ivr} 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 ArchitectIvrConfig */ constructor(scope: Construct, id: string, config: ArchitectIvrConfig); private _closedHoursFlowId?; get closedHoursFlowId(): string; set closedHoursFlowId(value: string); resetClosedHoursFlowId(): void; get closedHoursFlowIdInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _divisionId?; get divisionId(): string; set divisionId(value: string); resetDivisionId(): void; get divisionIdInput(): string; private _dnis?; get dnis(): string[]; set dnis(value: string[]); resetDnis(): void; get dnisInput(): string[]; private _holidayHoursFlowId?; get holidayHoursFlowId(): string; set holidayHoursFlowId(value: string); resetHolidayHoursFlowId(): void; get holidayHoursFlowIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _openHoursFlowId?; get openHoursFlowId(): string; set openHoursFlowId(value: string); resetOpenHoursFlowId(): void; get openHoursFlowIdInput(): string; private _scheduleGroupId?; get scheduleGroupId(): string; set scheduleGroupId(value: string); resetScheduleGroupId(): void; get scheduleGroupIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }