import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface ElasticPublicIpv6Config extends cdktf.TerraformMetaArguments { /** * External network IP address. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#address_ip ElasticPublicIpv6#address_ip} */ readonly addressIp?: string; /** * EIP name, used to customize the personalized name of the EIP when applying for EIP. Default value: unnamed. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#address_name ElasticPublicIpv6#address_name} */ readonly addressName?: string; /** * Elastic IPv6 type, optional values: * - EIPv6: Ordinary IPv6 * - HighQualityEIPv6: Premium IPv6 * Note: You need to contact the product to open a premium IPv6 white list, and only some regions support premium IPv6 * Default value: EIPv6. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#address_type ElasticPublicIpv6#address_type} */ readonly addressType?: string; /** * Bandwidth packet unique ID parameter. If this parameter is set and the InternetChargeType is BANDWIDTH_PACKAGE, it means that the EIP created is added to the BGP bandwidth packet and the bandwidth packet is charged. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#bandwidth_package_id ElasticPublicIpv6#bandwidth_package_id} */ readonly bandwidthPackageId?: string; /** * Elastic IPv6 network exit, optional values: * - CENTER_EGRESS_1: Center Exit 1 * - CENTER_EGRESS_2: Center Exit 2 * - CENTER_EGRESS_3: Center Exit 3 * Note: Network exports corresponding to different operators or resource types need to contact the product for clarification * Default value: CENTER_EGRESS_1. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#egress ElasticPublicIpv6#egress} */ readonly egress?: string; /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#id ElasticPublicIpv6#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; /** * Elastic IPv6 charging method, optional values: * - BANDWIDTH_PACKAGE: Payment for Shared Bandwidth Package * - TRAFFIC_POSTPAID_BY_HOUR: Traffic is paid by the hour * Default value: TRAFFIC_POSTPAID_BY_HOUR. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#internet_charge_type ElasticPublicIpv6#internet_charge_type} */ readonly internetChargeType?: string; /** * Elastic IPv6 bandwidth limit in Mbps. * The range of selectable values depends on the EIP billing method: * - BANDWIDTH_PACKAGE: 1 Mbps to 2000 Mbps * - TRAFFIC_POSTPAID_BY_HOUR: 1 Mbps to 100 Mbps * Default value: 1 Mbps. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#internet_max_bandwidth_out ElasticPublicIpv6#internet_max_bandwidth_out} */ readonly internetMaxBandwidthOut?: number; /** * Elastic IPv6 line type, default value: BGP. * For users who have activated a static single-line IP whitelist, selectable values: * - CMCC: China Mobile * - CTCC: China Telecom * - CUCC: China Unicom * Note: Static single-wire IP is only supported in some regions. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#internet_service_provider ElasticPublicIpv6#internet_service_provider} */ readonly internetServiceProvider?: string; /** * Tags. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#tags ElasticPublicIpv6#tags} */ readonly tags?: { [key: string]: string; }; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6 tencentcloud_elastic_public_ipv6} */ export declare class ElasticPublicIpv6 extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_elastic_public_ipv6"; /** * Generates CDKTF code for importing a ElasticPublicIpv6 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 ElasticPublicIpv6 to import * @param importFromId The id of the existing ElasticPublicIpv6 that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/elastic_public_ipv6#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the ElasticPublicIpv6 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/elastic_public_ipv6 tencentcloud_elastic_public_ipv6} 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 ElasticPublicIpv6Config = {} */ constructor(scope: Construct, id: string, config?: ElasticPublicIpv6Config); private _addressIp?; get addressIp(): string; set addressIp(value: string); resetAddressIp(): void; get addressIpInput(): string; private _addressName?; get addressName(): string; set addressName(value: string); resetAddressName(): void; get addressNameInput(): string; private _addressType?; get addressType(): string; set addressType(value: string); resetAddressType(): void; get addressTypeInput(): string; private _bandwidthPackageId?; get bandwidthPackageId(): string; set bandwidthPackageId(value: string); resetBandwidthPackageId(): void; get bandwidthPackageIdInput(): 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 _internetChargeType?; get internetChargeType(): string; set internetChargeType(value: string); resetInternetChargeType(): void; get internetChargeTypeInput(): string; private _internetMaxBandwidthOut?; get internetMaxBandwidthOut(): number; set internetMaxBandwidthOut(value: number); resetInternetMaxBandwidthOut(): void; get internetMaxBandwidthOutInput(): number; private _internetServiceProvider?; get internetServiceProvider(): string; set internetServiceProvider(value: string); resetInternetServiceProvider(): void; get internetServiceProviderInput(): string; 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; }; }