import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CwpLicenseBindAttachmentConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cwp_license_bind_attachment#id CwpLicenseBindAttachment#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; /** * License ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cwp_license_bind_attachment#license_id CwpLicenseBindAttachment#license_id} */ readonly licenseId: number; /** * LicenseType, 0 CWP Pro - Pay as you go, 1 CWP Pro - Monthly subscription, 2 CWP Ultimate - Monthly subscription. Default is 0. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cwp_license_bind_attachment#license_type CwpLicenseBindAttachment#license_type} */ readonly licenseType: number; /** * Machine quota that needs to be bound. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cwp_license_bind_attachment#quuid CwpLicenseBindAttachment#quuid} */ readonly quuid: string; /** * Resource ID. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cwp_license_bind_attachment#resource_id CwpLicenseBindAttachment#resource_id} */ readonly resourceId: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cwp_license_bind_attachment tencentcloud_cwp_license_bind_attachment} */ export declare class CwpLicenseBindAttachment extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cwp_license_bind_attachment"; /** * Generates CDKTF code for importing a CwpLicenseBindAttachment 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 CwpLicenseBindAttachment to import * @param importFromId The id of the existing CwpLicenseBindAttachment that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cwp_license_bind_attachment#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CwpLicenseBindAttachment 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/cwp_license_bind_attachment tencentcloud_cwp_license_bind_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 CwpLicenseBindAttachmentConfig */ constructor(scope: Construct, id: string, config: CwpLicenseBindAttachmentConfig); get agentStatus(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get isSwitchBind(): any; get isUnbind(): any; private _licenseId?; get licenseId(): number; set licenseId(value: number); get licenseIdInput(): number; private _licenseType?; get licenseType(): number; set licenseType(value: number); get licenseTypeInput(): number; get machineIp(): any; get machineName(): any; get machineWanIp(): any; private _quuid?; get quuid(): string; set quuid(value: string); get quuidInput(): string; private _resourceId?; get resourceId(): string; set resourceId(value: string); get resourceIdInput(): string; get uuid(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }