import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface TaskManagementWorktypeStatusConfig extends cdktf.TerraformMetaArguments { /** * The Category of the Status. Changing the category will cause the resource to be dropped and recreated with a new id. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status#category TaskManagementWorktypeStatus#category} */ readonly category: string; /** * This status is the default status for Workitems created from this Worktype. Only one status can be set as the default status at a time. Once set there must always be a default status. The default can not be deleted. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status#default TaskManagementWorktypeStatus#default} */ readonly default?: boolean | cdktf.IResolvable; /** * *DEPRECATED: Deprecated. Use default_destination_status_id in genesyscloud_task_management_worktype_status_transition instead* 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#default_destination_status_id TaskManagementWorktypeStatus#default_destination_status_id} */ readonly defaultDestinationStatusId?: string; /** * The description of the Status. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status#description TaskManagementWorktypeStatus#description} */ readonly description?: string; /** * *DEPRECATED: Deprecated. Use destination_status_ids in genesyscloud_task_management_worktype_status_transition instead* 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#destination_status_ids TaskManagementWorktypeStatus#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#id TaskManagementWorktypeStatus#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#name TaskManagementWorktypeStatus#name} */ readonly name: string; /** * *DEPRECATED: Deprecated. Use status_transition_delay_seconds in genesyscloud_task_management_worktype_status_transition instead* 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#status_transition_delay_seconds TaskManagementWorktypeStatus#status_transition_delay_seconds} */ readonly statusTransitionDelaySeconds?: number; /** * *DEPRECATED: Deprecated. Use status_transition_time in genesyscloud_task_management_worktype_status_transition instead* 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#status_transition_time TaskManagementWorktypeStatus#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#worktype_id TaskManagementWorktypeStatus#worktype_id} */ readonly worktypeId: string; } /** * Represents a {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status genesyscloud_task_management_worktype_status} */ export declare class TaskManagementWorktypeStatus extends cdktf.TerraformResource { static readonly tfResourceType = "genesyscloud_task_management_worktype_status"; /** * Generates CDKTF code for importing a TaskManagementWorktypeStatus 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 TaskManagementWorktypeStatus to import * @param importFromId The id of the existing TaskManagementWorktypeStatus that should be imported. Refer to the {@link https://registry.terraform.io/providers/mypurecloud/genesyscloud/1.73.0/docs/resources/task_management_worktype_status#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the TaskManagementWorktypeStatus 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 genesyscloud_task_management_worktype_status} 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 TaskManagementWorktypeStatusConfig */ constructor(scope: Construct, id: string, config: TaskManagementWorktypeStatusConfig); private _category?; get category(): string; set category(value: string); get categoryInput(): string; private _default?; get default(): boolean | cdktf.IResolvable; set default(value: boolean | cdktf.IResolvable); resetDefault(): void; get defaultInput(): any; private _defaultDestinationStatusId?; get defaultDestinationStatusId(): string; set defaultDestinationStatusId(value: string); resetDefaultDestinationStatusId(): void; get defaultDestinationStatusIdInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): 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 _name?; get name(): string; set name(value: string); get nameInput(): 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; }; }