import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ArchitectEmergencygroupConfig extends cdktf.TerraformMetaArguments { /** * Description of the emergency group. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup#description ArchitectEmergencygroup#description} */ readonly description?: string; /** * The division to which this emergency group will belong. If not set, the home division will be used. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup#division_id ArchitectEmergencygroup#division_id} */ readonly divisionId?: string; /** * The state of the emergency group. Defaults to false/inactive. Defaults to `false`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup#enabled ArchitectEmergencygroup#enabled} */ readonly enabled?: boolean | cdktf.IResolvable; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup#id ArchitectEmergencygroup#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 emergency group. Note: If the name is changed, the emergency group is dropped and recreated with a new ID. This can cause an Architect flow to be invalid if it references the old emergency group * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup#name ArchitectEmergencygroup#name} */ readonly name: string; /** * emergency_call_flows block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup#emergency_call_flows ArchitectEmergencygroup#emergency_call_flows} */ readonly emergencyCallFlows?: ArchitectEmergencygroupEmergencyCallFlows[] | cdktf.IResolvable; } export interface ArchitectEmergencygroupEmergencyCallFlows { /** * The ID of the connected call flow. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup#emergency_flow_id ArchitectEmergencygroup#emergency_flow_id} */ readonly emergencyFlowId: string; /** * The IDs of the connected IVRs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup#ivr_ids ArchitectEmergencygroup#ivr_ids} */ readonly ivrIds: string[]; } export declare function architectEmergencygroupEmergencyCallFlowsToTerraform(struct?: ArchitectEmergencygroupEmergencyCallFlows | cdktf.IResolvable): any; export declare function architectEmergencygroupEmergencyCallFlowsToHclTerraform(struct?: ArchitectEmergencygroupEmergencyCallFlows | cdktf.IResolvable): any; export declare class ArchitectEmergencygroupEmergencyCallFlowsOutputReference 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(): ArchitectEmergencygroupEmergencyCallFlows | cdktf.IResolvable | undefined; set internalValue(value: ArchitectEmergencygroupEmergencyCallFlows | cdktf.IResolvable | undefined); private _emergencyFlowId?; get emergencyFlowId(): string; set emergencyFlowId(value: string); get emergencyFlowIdInput(): string; private _ivrIds?; get ivrIds(): string[]; set ivrIds(value: string[]); get ivrIdsInput(): string[]; } export declare class ArchitectEmergencygroupEmergencyCallFlowsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: ArchitectEmergencygroupEmergencyCallFlows[] | 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): ArchitectEmergencygroupEmergencyCallFlowsOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup genesyscloud_architect_emergencygroup} */ export declare class ArchitectEmergencygroup extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_architect_emergencygroup"; /** * Generates CDKTF code for importing a ArchitectEmergencygroup 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 ArchitectEmergencygroup to import * @param importFromId The id of the existing ArchitectEmergencygroup that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/architect_emergencygroup#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ArchitectEmergencygroup 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_emergencygroup genesyscloud_architect_emergencygroup} 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 ArchitectEmergencygroupConfig */ constructor(scope: Construct, id: string, config: ArchitectEmergencygroupConfig); 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 _enabled?; get enabled(): boolean | cdktf.IResolvable; set enabled(value: boolean | cdktf.IResolvable); resetEnabled(): void; get enabledInput(): any; 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 _emergencyCallFlows; get emergencyCallFlows(): ArchitectEmergencygroupEmergencyCallFlowsList; putEmergencyCallFlows(value: ArchitectEmergencygroupEmergencyCallFlows[] | cdktf.IResolvable): void; resetEmergencyCallFlows(): void; get emergencyCallFlowsInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }