import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DasbBindDeviceAccountPrivateKeyConfig extends cdktf.TerraformMetaArguments { /** * Host account ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_bind_device_account_private_key#device_account_id DasbBindDeviceAccountPrivateKey#device_account_id} */ readonly deviceAccountId: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_bind_device_account_private_key#id DasbBindDeviceAccountPrivateKey#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; /** * Host account private key, the latest length is 128 bytes, the maximum length is 8192 bytes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_bind_device_account_private_key#private_key DasbBindDeviceAccountPrivateKey#private_key} */ readonly privateKey: string; /** * Host account private key password, maximum length 256 bytes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_bind_device_account_private_key#private_key_password DasbBindDeviceAccountPrivateKey#private_key_password} */ readonly privateKeyPassword?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_bind_device_account_private_key tencentcloud_dasb_bind_device_account_private_key} */ export declare class DasbBindDeviceAccountPrivateKey extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dasb_bind_device_account_private_key"; /** * Generates CDKTF code for importing a DasbBindDeviceAccountPrivateKey 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 DasbBindDeviceAccountPrivateKey to import * @param importFromId The id of the existing DasbBindDeviceAccountPrivateKey that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_bind_device_account_private_key#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DasbBindDeviceAccountPrivateKey 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/dasb_bind_device_account_private_key tencentcloud_dasb_bind_device_account_private_key} 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 DasbBindDeviceAccountPrivateKeyConfig */ constructor(scope: Construct, id: string, config: DasbBindDeviceAccountPrivateKeyConfig); private _deviceAccountId?; get deviceAccountId(): number; set deviceAccountId(value: number); get deviceAccountIdInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _privateKey?; get privateKey(): string; set privateKey(value: string); get privateKeyInput(): string; private _privateKeyPassword?; get privateKeyPassword(): string; set privateKeyPassword(value: string); resetPrivateKeyPassword(): void; get privateKeyPasswordInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }