import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ReservedInstanceConfig extends cdktf.TerraformMetaArguments { /** * Configuration ID of the reserved instance. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/reserved_instance#config_id ReservedInstance#config_id} */ readonly configId: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/reserved_instance#id ReservedInstance#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; /** * Number of reserved instances to be purchased. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/reserved_instance#instance_count ReservedInstance#instance_count} */ readonly instanceCount: number; /** * Reserved Instance display name. * - If you do not specify an instance display name, 'Unnamed' is displayed by default. * - Up to 60 characters (including pattern strings) are supported. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/reserved_instance#reserved_instance_name ReservedInstance#reserved_instance_name} */ readonly reservedInstanceName?: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/reserved_instance tencentcloud_reserved_instance} */ export declare class ReservedInstance extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_reserved_instance"; /** * Generates CDKTF code for importing a ReservedInstance 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 ReservedInstance to import * @param importFromId The id of the existing ReservedInstance that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/reserved_instance#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ReservedInstance 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/reserved_instance tencentcloud_reserved_instance} 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 ReservedInstanceConfig */ constructor(scope: Construct, id: string, config: ReservedInstanceConfig); private _configId?; get configId(): string; set configId(value: string); get configIdInput(): string; get endTime(): any; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceCount?; get instanceCount(): number; set instanceCount(value: number); get instanceCountInput(): number; private _reservedInstanceName?; get reservedInstanceName(): string; set reservedInstanceName(value: string); resetReservedInstanceName(): void; get reservedInstanceNameInput(): string; get startTime(): any; get status(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }