import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface VpcBandwidthPackageConfig extends cdktf.TerraformMetaArguments { /** * Bandwidth package name. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package#bandwidth_package_name VpcBandwidthPackage#bandwidth_package_name} */ readonly bandwidthPackageName?: string; /** * Bandwidth package billing type, default: `TOP5_POSTPAID_BY_MONTH`. Optional value: `TOP5_POSTPAID_BY_MONTH`: TOP5 billed by monthly postpaid; `PERCENT95_POSTPAID_BY_MONTH`: 95 billed monthly postpaid; `FIXED_PREPAID_BY_MONTH`: Monthly prepaid billing (Type FIXED_PREPAID_BY_MONTH product API capability is under construction); `BANDWIDTH_POSTPAID_BY_DAY`: bandwidth billed by daily postpaid; `ENHANCED95_POSTPAID_BY_MONTH`: enhanced 95 billed monthly postpaid. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package#charge_type VpcBandwidthPackage#charge_type} */ readonly chargeType?: string; /** * Network egress. It defaults to `center_egress1`. If you want to try the egress feature, please [submit a ticket](https://console.cloud.tencent.com/workorder/category). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package#egress VpcBandwidthPackage#egress} */ readonly egress?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package#id VpcBandwidthPackage#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; /** * Bandwidth packet speed limit size. Unit: Mbps, -1 means no speed limit. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package#internet_max_bandwidth VpcBandwidthPackage#internet_max_bandwidth} */ readonly internetMaxBandwidth?: number; /** * Bandwidth packet type, default: `BGP`. Optional value: `BGP`: common BGP shared bandwidth package; `HIGH_QUALITY_BGP`: High Quality BGP Shared Bandwidth Package; `SINGLEISP_CMCC`: CMCC shared bandwidth package; `SINGLEISP_CTCC:`: CTCC shared bandwidth package; `SINGLEISP_CUCC`: CUCC shared bandwidth package. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package#network_type VpcBandwidthPackage#network_type} */ readonly networkType?: string; /** * Tag description list. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package#tags VpcBandwidthPackage#tags} */ readonly tags?: { [key: string]: string; }; /** * The purchase duration of the prepaid monthly bandwidth package, unit: month, value range: 1~60. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package#time_span VpcBandwidthPackage#time_span} */ readonly timeSpan?: number; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package tencentcloud_vpc_bandwidth_package} */ export declare class VpcBandwidthPackage extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_vpc_bandwidth_package"; /** * Generates CDKTF code for importing a VpcBandwidthPackage 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 VpcBandwidthPackage to import * @param importFromId The id of the existing VpcBandwidthPackage that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/vpc_bandwidth_package#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the VpcBandwidthPackage 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/vpc_bandwidth_package tencentcloud_vpc_bandwidth_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 VpcBandwidthPackageConfig = {} */ constructor(scope: Construct, id: string, config?: VpcBandwidthPackageConfig); private _bandwidthPackageName?; get bandwidthPackageName(): string; set bandwidthPackageName(value: string); resetBandwidthPackageName(): void; get bandwidthPackageNameInput(): string; private _chargeType?; get chargeType(): string; set chargeType(value: string); resetChargeType(): void; get chargeTypeInput(): string; private _egress?; get egress(): string; set egress(value: string); resetEgress(): void; get egressInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _internetMaxBandwidth?; get internetMaxBandwidth(): number; set internetMaxBandwidth(value: number); resetInternetMaxBandwidth(): void; get internetMaxBandwidthInput(): number; private _networkType?; get networkType(): string; set networkType(value: string); resetNetworkType(): void; get networkTypeInput(): string; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; private _timeSpan?; get timeSpan(): number; set timeSpan(value: number); resetTimeSpan(): void; get timeSpanInput(): number; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }