import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DlcUserConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user#id DlcUser#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; /** * User alias, and its characters are less than 50. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user#user_alias DlcUser#user_alias} */ readonly userAlias?: string; /** * User description, which can make it easy to identify different users. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user#user_description DlcUser#user_description} */ readonly userDescription?: string; /** * Sub-user UIN that needs to be granted permissions. It can be checked through the upper right corner of Tencent Cloud Console -> Account Information -> Account ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user#user_id DlcUser#user_id} */ readonly userId: string; /** * Types of users. ADMIN: administrators; COMMON: general users. When the type of user is administrator, the collections of permissions and bound working groups cannot be set. Administrators own all the permissions by default. If the parameter is not filled in, it will be COMMON by default. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user#user_type DlcUser#user_type} */ readonly userType?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user tencentcloud_dlc_user} */ export declare class DlcUser extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dlc_user"; /** * Generates CDKTF code for importing a DlcUser 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 DlcUser to import * @param importFromId The id of the existing DlcUser that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dlc_user#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DlcUser 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_user tencentcloud_dlc_user} 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 DlcUserConfig */ constructor(scope: Construct, id: string, config: DlcUserConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _userAlias?; get userAlias(): string; set userAlias(value: string); resetUserAlias(): void; get userAliasInput(): string; private _userDescription?; get userDescription(): string; set userDescription(value: string); resetUserDescription(): void; get userDescriptionInput(): string; private _userId?; get userId(): string; set userId(value: string); get userIdInput(): string; private _userType?; get userType(): string; set userType(value: string); resetUserType(): void; get userTypeInput(): string; get workGroupIds(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }