import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface OutboundCallabletimesetConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset#id OutboundCallabletimeset#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 name of the CallableTimeSet. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset#name OutboundCallabletimeset#name} */ readonly name: string; /** * callable_times block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset#callable_times OutboundCallabletimeset#callable_times} */ readonly callableTimes?: OutboundCallabletimesetCallableTimes[] | cdktf.IResolvable; } export interface OutboundCallabletimesetCallableTimesTimeSlots { /** * The day of the interval. Valid values: [1-7], representing Monday through Sunday * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset#day OutboundCallabletimeset#day} */ readonly day: number; /** * The start time of the interval as an ISO-8601 string, i.e. HH:mm:ss * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset#start_time OutboundCallabletimeset#start_time} */ readonly startTime: string; /** * The end time of the interval as an ISO-8601 string, i.e. HH:mm:ss * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset#stop_time OutboundCallabletimeset#stop_time} */ readonly stopTime: string; } export declare function outboundCallabletimesetCallableTimesTimeSlotsToTerraform(struct?: OutboundCallabletimesetCallableTimesTimeSlots | cdktf.IResolvable): any; export declare function outboundCallabletimesetCallableTimesTimeSlotsToHclTerraform(struct?: OutboundCallabletimesetCallableTimesTimeSlots | cdktf.IResolvable): any; export declare class OutboundCallabletimesetCallableTimesTimeSlotsOutputReference 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(): OutboundCallabletimesetCallableTimesTimeSlots | cdktf.IResolvable | undefined; set internalValue(value: OutboundCallabletimesetCallableTimesTimeSlots | cdktf.IResolvable | undefined); private _day?; get day(): number; set day(value: number); get dayInput(): number; private _startTime?; get startTime(): string; set startTime(value: string); get startTimeInput(): string; private _stopTime?; get stopTime(): string; set stopTime(value: string); get stopTimeInput(): string; } export declare class OutboundCallabletimesetCallableTimesTimeSlotsList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: OutboundCallabletimesetCallableTimesTimeSlots[] | 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): OutboundCallabletimesetCallableTimesTimeSlotsOutputReference; } export interface OutboundCallabletimesetCallableTimes { /** * The time zone for the time slots; for example, Africa/Abidjan * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset#time_zone_id OutboundCallabletimeset#time_zone_id} */ readonly timeZoneId: string; /** * time_slots block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset#time_slots OutboundCallabletimeset#time_slots} */ readonly timeSlots: OutboundCallabletimesetCallableTimesTimeSlots[] | cdktf.IResolvable; } export declare function outboundCallabletimesetCallableTimesToTerraform(struct?: OutboundCallabletimesetCallableTimes | cdktf.IResolvable): any; export declare function outboundCallabletimesetCallableTimesToHclTerraform(struct?: OutboundCallabletimesetCallableTimes | cdktf.IResolvable): any; export declare class OutboundCallabletimesetCallableTimesOutputReference 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(): OutboundCallabletimesetCallableTimes | cdktf.IResolvable | undefined; set internalValue(value: OutboundCallabletimesetCallableTimes | cdktf.IResolvable | undefined); private _timeZoneId?; get timeZoneId(): string; set timeZoneId(value: string); get timeZoneIdInput(): string; private _timeSlots; get timeSlots(): OutboundCallabletimesetCallableTimesTimeSlotsList; putTimeSlots(value: OutboundCallabletimesetCallableTimesTimeSlots[] | cdktf.IResolvable): void; get timeSlotsInput(): any; } export declare class OutboundCallabletimesetCallableTimesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: OutboundCallabletimesetCallableTimes[] | 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): OutboundCallabletimesetCallableTimesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset genesyscloud_outbound_callabletimeset} */ export declare class OutboundCallabletimeset extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_outbound_callabletimeset"; /** * Generates CDKTF code for importing a OutboundCallabletimeset 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 OutboundCallabletimeset to import * @param importFromId The id of the existing OutboundCallabletimeset that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/outbound_callabletimeset#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the OutboundCallabletimeset 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/outbound_callabletimeset genesyscloud_outbound_callabletimeset} 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 OutboundCallabletimesetConfig */ constructor(scope: Construct, id: string, config: OutboundCallabletimesetConfig); 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 _callableTimes; get callableTimes(): OutboundCallabletimesetCallableTimesList; putCallableTimes(value: OutboundCallabletimesetCallableTimes[] | cdktf.IResolvable): void; resetCallableTimes(): void; get callableTimesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }