import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CynosdbResourcePackageConfig extends cdktf.TerraformMetaArguments { /** * Validity period of resource package, in days. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#expire_day CynosdbResourcePackage#expire_day} */ readonly expireDay: number; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#id CynosdbResourcePackage#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; /** * Instance Type. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#instance_type CynosdbResourcePackage#instance_type} */ readonly instanceType: string; /** * Number of purchased resource packs. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#package_count CynosdbResourcePackage#package_count} */ readonly packageCount: number; /** * Resource Package Name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#package_name CynosdbResourcePackage#package_name} */ readonly packageName?: string; /** * Resource package usage region China - common in mainland China, overseas - common in Hong Kong, Macao, Taiwan, and overseas. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#package_region CynosdbResourcePackage#package_region} */ readonly packageRegion: string; /** * Resource package size, calculated in 10000 units; Storage resources: GB. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#package_spec CynosdbResourcePackage#package_spec} */ readonly packageSpec: number; /** * Resource package type: CCU computing resource package, DISK storage resource package. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#package_type CynosdbResourcePackage#package_type} */ readonly packageType: string; /** * Resource package version base basic version, common general version, enterprise enterprise version. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#package_version CynosdbResourcePackage#package_version} */ readonly packageVersion: string; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package tencentcloud_cynosdb_resource_package} */ export declare class CynosdbResourcePackage extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_cynosdb_resource_package"; /** * Generates CDKTF code for importing a CynosdbResourcePackage 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 CynosdbResourcePackage to import * @param importFromId The id of the existing CynosdbResourcePackage that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/cynosdb_resource_package#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the CynosdbResourcePackage 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/cynosdb_resource_package tencentcloud_cynosdb_resource_package} 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 CynosdbResourcePackageConfig */ constructor(scope: Construct, id: string, config: CynosdbResourcePackageConfig); private _expireDay?; get expireDay(): number; set expireDay(value: number); get expireDayInput(): number; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _instanceType?; get instanceType(): string; set instanceType(value: string); get instanceTypeInput(): string; private _packageCount?; get packageCount(): number; set packageCount(value: number); get packageCountInput(): number; private _packageName?; get packageName(): string; set packageName(value: string); resetPackageName(): void; get packageNameInput(): string; private _packageRegion?; get packageRegion(): string; set packageRegion(value: string); get packageRegionInput(): string; private _packageSpec?; get packageSpec(): number; set packageSpec(value: number); get packageSpecInput(): number; private _packageType?; get packageType(): string; set packageType(value: string); get packageTypeInput(): string; private _packageVersion?; get packageVersion(): string; set packageVersion(value: string); get packageVersionInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }