import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DasbDeviceConfig extends cdktf.TerraformMetaArguments { /** * The department ID to which the device belongs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_device#department_id DasbDevice#department_id} */ readonly departmentId?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_device#id DasbDevice#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; /** * IP address. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_device#ip DasbDevice#ip} */ readonly ip: string; /** * Asset multi-node: fields ip and port. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_device#ip_port_set DasbDevice#ip_port_set} */ readonly ipPortSet?: string[]; /** * Hostname, can be empty. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_device#name DasbDevice#name} */ readonly name?: string; /** * Operating system name, only Linux, Windows or MySQL. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_device#os_name DasbDevice#os_name} */ readonly osName: string; /** * Management port. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_device#port DasbDevice#port} */ readonly port: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_device tencentcloud_dasb_device} */ export declare class DasbDevice extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_dasb_device"; /** * Generates CDKTF code for importing a DasbDevice 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 DasbDevice to import * @param importFromId The id of the existing DasbDevice that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/dasb_device#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DasbDevice 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_device tencentcloud_dasb_device} 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 DasbDeviceConfig */ constructor(scope: Construct, id: string, config: DasbDeviceConfig); private _departmentId?; get departmentId(): string; set departmentId(value: string); resetDepartmentId(): void; get departmentIdInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ip?; get ip(): string; set ip(value: string); get ipInput(): string; private _ipPortSet?; get ipPortSet(): string[]; set ipPortSet(value: string[]); resetIpPortSet(): void; get ipPortSetInput(): string[]; private _name?; get name(): string; set name(value: string); resetName(): void; get nameInput(): string; private _osName?; get osName(): string; set osName(value: string); get osNameInput(): string; private _port?; get port(): number; set port(value: number); get portInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }