import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TaskManagementWorktypeStatusTransitionConfig extends cdktf.TerraformMetaArguments { /** * Default destination status to which this Status will transition to if auto status transition enabled. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status_transition#default_destination_status_id TaskManagementWorktypeStatusTransition#default_destination_status_id} */ readonly defaultDestinationStatusId?: string; /** * A list of destination Statuses where a Workitem with this Status can transition to. If the list is empty Workitems with this Status can transition to all other Statuses defined on the Worktype. A Status can have a maximum of 24 destinations. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status_transition#destination_status_ids TaskManagementWorktypeStatusTransition#destination_status_ids} */ readonly destinationStatusIds?: string[]; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status_transition#id TaskManagementWorktypeStatusTransition#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 status. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status_transition#status_id TaskManagementWorktypeStatusTransition#status_id} */ readonly statusId: string; /** * Delay in seconds for auto status transition. Required if default_destination_status_id is provided. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status_transition#status_transition_delay_seconds TaskManagementWorktypeStatusTransition#status_transition_delay_seconds} */ readonly statusTransitionDelaySeconds?: number; /** * Time is represented as an ISO-8601 string without a timezone. For example: HH:mm:ss * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status_transition#status_transition_time TaskManagementWorktypeStatusTransition#status_transition_time} */ readonly statusTransitionTime?: string; /** * The id of the worktype this status belongs to. Changing this attribute will cause the status to be dropped and recreated. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status_transition#worktype_id TaskManagementWorktypeStatusTransition#worktype_id} */ readonly worktypeId: string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status_transition genesyscloud_task_management_worktype_status_transition} */ export declare class TaskManagementWorktypeStatusTransition extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_task_management_worktype_status_transition"; /** * Generates CDKTF code for importing a TaskManagementWorktypeStatusTransition 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 TaskManagementWorktypeStatusTransition to import * @param importFromId The id of the existing TaskManagementWorktypeStatusTransition that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status_transition#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TaskManagementWorktypeStatusTransition 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/task_management_worktype_status_transition genesyscloud_task_management_worktype_status_transition} 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 TaskManagementWorktypeStatusTransitionConfig */ constructor(scope: Construct, id: string, config: TaskManagementWorktypeStatusTransitionConfig); private _defaultDestinationStatusId?; get defaultDestinationStatusId(): string; set defaultDestinationStatusId(value: string); resetDefaultDestinationStatusId(): void; get defaultDestinationStatusIdInput(): string; private _destinationStatusIds?; get destinationStatusIds(): string[]; set destinationStatusIds(value: string[]); resetDestinationStatusIds(): void; get destinationStatusIdsInput(): string[]; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _statusId?; get statusId(): string; set statusId(value: string); get statusIdInput(): string; private _statusTransitionDelaySeconds?; get statusTransitionDelaySeconds(): number; set statusTransitionDelaySeconds(value: number); resetStatusTransitionDelaySeconds(): void; get statusTransitionDelaySecondsInput(): number; private _statusTransitionTime?; get statusTransitionTime(): string; set statusTransitionTime(value: string); resetStatusTransitionTime(): void; get statusTransitionTimeInput(): string; private _worktypeId?; get worktypeId(): string; set worktypeId(value: string); get worktypeIdInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }