import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataTencentcloudCamUsersConfig extends cdktf.TerraformMetaArguments { /** * Indicate whether the user can login in. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#console_login DataTencentcloudCamUsers#console_login} */ readonly consoleLogin?: boolean | cdktf.IResolvable; /** * Country code of the CAM user to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#country_code DataTencentcloudCamUsers#country_code} */ readonly countryCode?: string; /** * Email of the CAM user to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#email DataTencentcloudCamUsers#email} */ readonly email?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#id DataTencentcloudCamUsers#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 CAM user to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#name DataTencentcloudCamUsers#name} */ readonly name?: string; /** * Phone num of the CAM user to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#phone_num DataTencentcloudCamUsers#phone_num} */ readonly phoneNum?: string; /** * Remark of the CAM user to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#remark DataTencentcloudCamUsers#remark} */ readonly remark?: string; /** * Used to save results. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#result_output_file DataTencentcloudCamUsers#result_output_file} */ readonly resultOutputFile?: string; /** * Uid of the CAM user to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#uid DataTencentcloudCamUsers#uid} */ readonly uid?: number; /** * Uin of the CAM user to be queried. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#uin DataTencentcloudCamUsers#uin} */ readonly uin?: number; } export interface DataTencentcloudCamUsersUserListStruct { } export declare function dataTencentcloudCamUsersUserListStructToTerraform(struct?: DataTencentcloudCamUsersUserListStruct): any; export declare function dataTencentcloudCamUsersUserListStructToHclTerraform(struct?: DataTencentcloudCamUsersUserListStruct): any; export declare class DataTencentcloudCamUsersUserListStructOutputReference extends cdktf.ComplexObject { private isEmptyObject; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): DataTencentcloudCamUsersUserListStruct | undefined; set internalValue(value: DataTencentcloudCamUsersUserListStruct | undefined); get consoleLogin(): any; get countryCode(): any; get email(): any; get name(): any; get phoneNum(): any; get remark(): any; get uid(): any; get uin(): any; get userId(): any; } export declare class DataTencentcloudCamUsersUserListStructList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): DataTencentcloudCamUsersUserListStructOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users tencentcloud_cam_users} */ export declare class DataTencentcloudCamUsers extends cdktf.TerraformDataSource { static readonly tfResourceType = "tencentcloud_cam_users"; /** * Generates CDKTF code for importing a DataTencentcloudCamUsers 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 DataTencentcloudCamUsers to import * @param importFromId The id of the existing DataTencentcloudCamUsers that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/data-sources/cam_users#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataTencentcloudCamUsers 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/data-sources/cam_users tencentcloud_cam_users} Data Source * * @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 DataTencentcloudCamUsersConfig = {} */ constructor(scope: Construct, id: string, config?: DataTencentcloudCamUsersConfig); private _consoleLogin?; get consoleLogin(): boolean | cdktf.IResolvable; set consoleLogin(value: boolean | cdktf.IResolvable); resetConsoleLogin(): void; get consoleLoginInput(): any; private _countryCode?; get countryCode(): string; set countryCode(value: string); resetCountryCode(): void; get countryCodeInput(): string; private _email?; get email(): string; set email(value: string); resetEmail(): void; get emailInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _phoneNum?; get phoneNum(): string; set phoneNum(value: string); resetPhoneNum(): void; get phoneNumInput(): string; private _remark?; get remark(): string; set remark(value: string); resetRemark(): void; get remarkInput(): string; private _resultOutputFile?; get resultOutputFile(): string; set resultOutputFile(value: string); resetResultOutputFile(): void; get resultOutputFileInput(): string; private _uid?; get uid(): number; set uid(value: number); resetUid(): void; get uidInput(): number; private _uin?; get uin(): number; set uin(value: number); resetUin(): void; get uinInput(): number; private _userList; get userList(): DataTencentcloudCamUsersUserListStructList; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }