import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DlcBindWorkGroupsToUserAttachmentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_bind_work_groups_to_user_attachment#id DlcBindWorkGroupsToUserAttachment#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_bind_work_groups_to_user_attachment#add_info DlcBindWorkGroupsToUserAttachment#add_info} */ readonly addInfo: DlcBindWorkGroupsToUserAttachmentAddInfo; } export interface DlcBindWorkGroupsToUserAttachmentAddInfo { /** * User ID, which matches Uin on the CAM side. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_bind_work_groups_to_user_attachment#user_id DlcBindWorkGroupsToUserAttachment#user_id} */ readonly userId: string; /** * Collections of IDs of working groups. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_bind_work_groups_to_user_attachment#work_group_ids DlcBindWorkGroupsToUserAttachment#work_group_ids} */ readonly workGroupIds: number[]; } export declare function dlcBindWorkGroupsToUserAttachmentAddInfoToTerraform(struct?: DlcBindWorkGroupsToUserAttachmentAddInfoOutputReference | DlcBindWorkGroupsToUserAttachmentAddInfo): any; export declare function dlcBindWorkGroupsToUserAttachmentAddInfoToHclTerraform(struct?: DlcBindWorkGroupsToUserAttachmentAddInfoOutputReference | DlcBindWorkGroupsToUserAttachmentAddInfo): any; export declare class DlcBindWorkGroupsToUserAttachmentAddInfoOutputReference 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(): DlcBindWorkGroupsToUserAttachmentAddInfo | undefined; set internalValue(value: DlcBindWorkGroupsToUserAttachmentAddInfo | undefined); private _userId?; get userId(): string; set userId(value: string); get userIdInput(): string; private _workGroupIds?; get workGroupIds(): number[]; set workGroupIds(value: number[]); get workGroupIdsInput(): number[]; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_bind_work_groups_to_user_attachment tencentcloud_dlc_bind_work_groups_to_user_attachment} */ export declare class DlcBindWorkGroupsToUserAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dlc_bind_work_groups_to_user_attachment"; /** * Generates CDKTF code for importing a DlcBindWorkGroupsToUserAttachment 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 DlcBindWorkGroupsToUserAttachment to import * @param importFromId The id of the existing DlcBindWorkGroupsToUserAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_bind_work_groups_to_user_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DlcBindWorkGroupsToUserAttachment 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_bind_work_groups_to_user_attachment tencentcloud_dlc_bind_work_groups_to_user_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 DlcBindWorkGroupsToUserAttachmentConfig */ constructor(scope: Construct, id: string, config: DlcBindWorkGroupsToUserAttachmentConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _addInfo; get addInfo(): DlcBindWorkGroupsToUserAttachmentAddInfoOutputReference; putAddInfo(value: DlcBindWorkGroupsToUserAttachmentAddInfo): void; get addInfoInput(): DlcBindWorkGroupsToUserAttachmentAddInfo; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }