import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DlcAddUsersToWorkGroupAttachmentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_add_users_to_work_group_attachment#id DlcAddUsersToWorkGroupAttachment#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; /** * add_info block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_add_users_to_work_group_attachment#add_info DlcAddUsersToWorkGroupAttachment#add_info} */ readonly addInfo: DlcAddUsersToWorkGroupAttachmentAddInfo; } export interface DlcAddUsersToWorkGroupAttachmentAddInfo { /** * User ID which matches the Uin on the CAM side. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_add_users_to_work_group_attachment#user_ids DlcAddUsersToWorkGroupAttachment#user_ids} */ readonly userIds: string[]; /** * Working group ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_add_users_to_work_group_attachment#work_group_id DlcAddUsersToWorkGroupAttachment#work_group_id} */ readonly workGroupId: number; } export declare function dlcAddUsersToWorkGroupAttachmentAddInfoToTerraform(struct?: DlcAddUsersToWorkGroupAttachmentAddInfoOutputReference | DlcAddUsersToWorkGroupAttachmentAddInfo): any; export declare function dlcAddUsersToWorkGroupAttachmentAddInfoToHclTerraform(struct?: DlcAddUsersToWorkGroupAttachmentAddInfoOutputReference | DlcAddUsersToWorkGroupAttachmentAddInfo): any; export declare class DlcAddUsersToWorkGroupAttachmentAddInfoOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string); get internalValue(): DlcAddUsersToWorkGroupAttachmentAddInfo | undefined; set internalValue(value: DlcAddUsersToWorkGroupAttachmentAddInfo | undefined); private _userIds?; get userIds(): string[]; set userIds(value: string[]); get userIdsInput(): string[]; private _workGroupId?; get workGroupId(): number; set workGroupId(value: number); get workGroupIdInput(): number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_add_users_to_work_group_attachment tencentcloud_dlc_add_users_to_work_group_attachment} */ export declare class DlcAddUsersToWorkGroupAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dlc_add_users_to_work_group_attachment"; /** * Generates CDKTF code for importing a DlcAddUsersToWorkGroupAttachment 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 DlcAddUsersToWorkGroupAttachment to import * @param importFromId The id of the existing DlcAddUsersToWorkGroupAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_add_users_to_work_group_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DlcAddUsersToWorkGroupAttachment 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/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_add_users_to_work_group_attachment tencentcloud_dlc_add_users_to_work_group_attachment} 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 DlcAddUsersToWorkGroupAttachmentConfig */ constructor(scope: Construct, id: string, config: DlcAddUsersToWorkGroupAttachmentConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _addInfo; get addInfo(): DlcAddUsersToWorkGroupAttachmentAddInfoOutputReference; putAddInfo(value: DlcAddUsersToWorkGroupAttachmentAddInfo): void; get addInfoInput(): DlcAddUsersToWorkGroupAttachmentAddInfo; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }