import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface EniIpv6AddressConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#id EniIpv6Address#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; /** * The number of automatically assigned IPv6 addresses and the total number of private IP addresses cannot exceed the quota. This should be combined with the input parameter `ipv6_addresses` for quota calculation. At least one of them, either this or 'Ipv6Addresses', must be provided. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#ipv6_address_count EniIpv6Address#ipv6_address_count} */ readonly ipv6AddressCount?: number; /** * ENI instance `ID`, in the form of `eni-m6dyj72l`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#network_interface_id EniIpv6Address#network_interface_id} */ readonly networkInterfaceId: string; /** * ipv6_addresses block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#ipv6_addresses EniIpv6Address#ipv6_addresses} */ readonly ipv6Addresses?: EniIpv6AddressIpv6Addresses[] | cdktf.IResolvable; } export interface EniIpv6AddressIpv6Addresses { /** * `IPv6` address, in the form of: `3402:4e00:20:100:0:8cd9:2a67:71f3`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#address EniIpv6Address#address} */ readonly address: string; /** * `EIP` instance `ID`, such as:`eip-hxlqja90`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#address_id EniIpv6Address#address_id} */ readonly addressId?: string; /** * Description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#description EniIpv6Address#description} */ readonly description?: string; /** * Whether the public network IP is blocked. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#is_wan_ip_blocked EniIpv6Address#is_wan_ip_blocked} */ readonly isWanIpBlocked?: boolean | cdktf.IResolvable; /** * Whether to master `IP`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#primary EniIpv6Address#primary} */ readonly primary?: boolean | cdktf.IResolvable; /** * `IPv6` address status: `PENDING`: pending, `MIGRATING`: migrating, `DELETING`: deleting, `AVAILABLE`: available. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#state EniIpv6Address#state} */ readonly state?: string; } export declare function eniIpv6AddressIpv6AddressesToTerraform(struct?: EniIpv6AddressIpv6Addresses | cdktf.IResolvable): any; export declare function eniIpv6AddressIpv6AddressesToHclTerraform(struct?: EniIpv6AddressIpv6Addresses | cdktf.IResolvable): any; export declare class EniIpv6AddressIpv6AddressesOutputReference extends cdktf.ComplexObject { private isEmptyObject; private resolvableValue?; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param complexObjectIndex the index of this item in the list * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean); get internalValue(): EniIpv6AddressIpv6Addresses | cdktf.IResolvable | undefined; set internalValue(value: EniIpv6AddressIpv6Addresses | cdktf.IResolvable | undefined); private _address?; get address(): string; set address(value: string); get addressInput(): string; private _addressId?; get addressId(): string; set addressId(value: string); resetAddressId(): void; get addressIdInput(): string; private _description?; get description(): string; set description(value: string); resetDescription(): void; get descriptionInput(): string; private _isWanIpBlocked?; get isWanIpBlocked(): boolean | cdktf.IResolvable; set isWanIpBlocked(value: boolean | cdktf.IResolvable); resetIsWanIpBlocked(): void; get isWanIpBlockedInput(): any; private _primary?; get primary(): boolean | cdktf.IResolvable; set primary(value: boolean | cdktf.IResolvable); resetPrimary(): void; get primaryInput(): any; private _state?; get state(): string; set state(value: string); resetState(): void; get stateInput(): string; } export declare class EniIpv6AddressIpv6AddressesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: EniIpv6AddressIpv6Addresses[] | cdktf.IResolvable; /** * @param terraformResource The parent resource * @param terraformAttribute The attribute on the parent resource this class is referencing * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index) */ constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean); /** * @param index the index of the item to return */ get(index: number): EniIpv6AddressIpv6AddressesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address tencentcloud_eni_ipv6_address} */ export declare class EniIpv6Address extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_eni_ipv6_address"; /** * Generates CDKTF code for importing a EniIpv6Address 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 EniIpv6Address to import * @param importFromId The id of the existing EniIpv6Address that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv6_address#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the EniIpv6Address 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/eni_ipv6_address tencentcloud_eni_ipv6_address} 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 EniIpv6AddressConfig */ constructor(scope: Construct, id: string, config: EniIpv6AddressConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _ipv6AddressCount?; get ipv6AddressCount(): number; set ipv6AddressCount(value: number); resetIpv6AddressCount(): void; get ipv6AddressCountInput(): number; private _networkInterfaceId?; get networkInterfaceId(): string; set networkInterfaceId(value: string); get networkInterfaceIdInput(): string; private _ipv6Addresses; get ipv6Addresses(): EniIpv6AddressIpv6AddressesList; putIpv6Addresses(value: EniIpv6AddressIpv6Addresses[] | cdktf.IResolvable): void; resetIpv6Addresses(): void; get ipv6AddressesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }