import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface CcnConfig extends cdktf.TerraformMetaArguments { /** * The speed limit type. Valid values: `INTER_REGION_LIMIT`, `OUTER_REGION_LIMIT`. `OUTER_REGION_LIMIT` represents the regional export speed limit, `INTER_REGION_LIMIT` is the inter-regional speed limit. The default is `OUTER_REGION_LIMIT`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#bandwidth_limit_type Ccn#bandwidth_limit_type} */ readonly bandwidthLimitType?: string; /** * Billing mode. Valid values: `PREPAID`, `POSTPAID`. `PREPAID` means prepaid, which means annual and monthly subscription, `POSTPAID` means post-payment, which means billing by volume. The default is `POSTPAID`. The prepaid model only supports inter-regional speed limit, and the post-paid model supports inter-regional speed limit and regional export speed limit. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#charge_type Ccn#charge_type} */ readonly chargeType?: string; /** * Description of CCN, and maximum length does not exceed 100 bytes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#description Ccn#description} */ readonly description?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#id Ccn#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; /** * Name of the CCN to be queried, and maximum length does not exceed 60 bytes. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#name Ccn#name} */ readonly name: string; /** * CCN service quality, 'PT': Platinum, 'AU': Gold, 'AG': Silver. The default is 'AU'. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#qos Ccn#qos} */ readonly qos?: string; /** * Whether to enable the equivalent routing function. `true`: enabled, `false`: disabled. Default is false. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#route_ecmp_flag Ccn#route_ecmp_flag} */ readonly routeEcmpFlag?: boolean | cdktf.IResolvable; /** * Whether to enable the routing overlap function. `true`: enabled, `false`: disabled. Default is true, cannot set to false. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#route_overlap_flag Ccn#route_overlap_flag} */ readonly routeOverlapFlag?: boolean | cdktf.IResolvable; /** * Instance tag. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#tags Ccn#tags} */ readonly tags?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn tencentcloud_ccn} */ export declare class Ccn extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_ccn"; /** * Generates CDKTF code for importing a Ccn 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 Ccn to import * @param importFromId The id of the existing Ccn that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/ccn#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Ccn 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/ccn tencentcloud_ccn} 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 CcnConfig */ constructor(scope: Construct, id: string, config: CcnConfig); private _bandwidthLimitType?; get bandwidthLimitType(): string; set bandwidthLimitType(value: string); resetBandwidthLimitType(): void; get bandwidthLimitTypeInput(): string; private _chargeType?; get chargeType(): string; set chargeType(value: string); resetChargeType(): void; get chargeTypeInput(): string; get createTime(): any; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; get instanceCount(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; private _qos?; get qos(): string; set qos(value: string); resetQos(): void; get qosInput(): string; private _routeEcmpFlag?; get routeEcmpFlag(): boolean | cdktf.IResolvable; set routeEcmpFlag(value: boolean | cdktf.IResolvable); resetRouteEcmpFlag(): void; get routeEcmpFlagInput(): any; private _routeOverlapFlag?; get routeOverlapFlag(): boolean | cdktf.IResolvable; set routeOverlapFlag(value: boolean | cdktf.IResolvable); resetRouteOverlapFlag(): void; get routeOverlapFlagInput(): any; get state(): any; private _tags?; get tags(): { [key: string]: string; }; set tags(value: { [key: string]: string; }); resetTags(): void; get tagsInput(): { [key: string]: string; }; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }