import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface EniIpv4AddressConfig extends cdktf.TerraformMetaArguments { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#id EniIpv4Address#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 ID of the ENI instance, such as `eni-m6dyj72l`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#network_interface_id EniIpv4Address#network_interface_id} */ readonly networkInterfaceId: string; /** * IP service level. It is used together with `SecondaryPrivateIpAddressCount`. Values: PT`(Gold), `AU`(Silver), `AG `(Bronze) and DEFAULT (Default). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#qos_level EniIpv4Address#qos_level} */ readonly qosLevel?: string; /** * The number of newly-applied private IP addresses. You should provide either this parameter or PrivateIpAddresses, or both. The total number of private IP addresses cannot exceed the quota. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#secondary_private_ip_address_count EniIpv4Address#secondary_private_ip_address_count} */ readonly secondaryPrivateIpAddressCount?: number; /** * private_ip_addresses block * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#private_ip_addresses EniIpv4Address#private_ip_addresses} */ readonly privateIpAddresses?: EniIpv4AddressPrivateIpAddresses[] | cdktf.IResolvable; } export interface EniIpv4AddressPrivateIpAddresses { /** * EIP instance ID, such as `eip-11112222`. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#address_id EniIpv4Address#address_id} */ readonly addressId?: string; /** * Private IP description. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#description EniIpv4Address#description} */ readonly description?: string; /** * Whether the public IP is blocked. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#is_wan_ip_blocked EniIpv4Address#is_wan_ip_blocked} */ readonly isWanIpBlocked?: boolean | cdktf.IResolvable; /** * Whether it is a primary IP. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#primary EniIpv4Address#primary} */ readonly primary?: boolean | cdktf.IResolvable; /** * Private IP address. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#private_ip_address EniIpv4Address#private_ip_address} */ readonly privateIpAddress: string; /** * Public IP address. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#public_ip_address EniIpv4Address#public_ip_address} */ readonly publicIpAddress?: string; /** * IP service level. Values: PT` (Gold), `AU` (Silver), `AG `(Bronze) and DEFAULT` (Default). * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#qos_level EniIpv4Address#qos_level} */ readonly qosLevel?: string; /** * IP status: `PENDING`: Creating, `MIGRATING`: Migrating, `DELETING`: Deleting, `AVAILABLE`: Available. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#state EniIpv4Address#state} */ readonly state?: string; } export declare function eniIpv4AddressPrivateIpAddressesToTerraform(struct?: EniIpv4AddressPrivateIpAddresses | cdktf.IResolvable): any; export declare function eniIpv4AddressPrivateIpAddressesToHclTerraform(struct?: EniIpv4AddressPrivateIpAddresses | cdktf.IResolvable): any; export declare class EniIpv4AddressPrivateIpAddressesOutputReference 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(): EniIpv4AddressPrivateIpAddresses | cdktf.IResolvable | undefined; set internalValue(value: EniIpv4AddressPrivateIpAddresses | cdktf.IResolvable | undefined); 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 _privateIpAddress?; get privateIpAddress(): string; set privateIpAddress(value: string); get privateIpAddressInput(): string; private _publicIpAddress?; get publicIpAddress(): string; set publicIpAddress(value: string); resetPublicIpAddress(): void; get publicIpAddressInput(): string; private _qosLevel?; get qosLevel(): string; set qosLevel(value: string); resetQosLevel(): void; get qosLevelInput(): string; private _state?; get state(): string; set state(value: string); resetState(): void; get stateInput(): string; } export declare class EniIpv4AddressPrivateIpAddressesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: EniIpv4AddressPrivateIpAddresses[] | 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): EniIpv4AddressPrivateIpAddressesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address tencentcloud_eni_ipv4_address} */ export declare class EniIpv4Address extends cdktf.TerraformResource { static readonly tfResourceType = "tencentcloud_eni_ipv4_address"; /** * Generates CDKTF code for importing a EniIpv4Address 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 EniIpv4Address to import * @param importFromId The id of the existing EniIpv4Address that should be imported. Refer to the {@link https://registry.terraform.io/providers/tencentcloudstack/tencentcloud/1.82.49/docs/resources/eni_ipv4_address#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the EniIpv4Address 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_ipv4_address tencentcloud_eni_ipv4_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 EniIpv4AddressConfig */ constructor(scope: Construct, id: string, config: EniIpv4AddressConfig); private _id?; get id(): string; set id(value: string); resetId(): void; get idInput(): string; private _networkInterfaceId?; get networkInterfaceId(): string; set networkInterfaceId(value: string); get networkInterfaceIdInput(): string; private _qosLevel?; get qosLevel(): string; set qosLevel(value: string); resetQosLevel(): void; get qosLevelInput(): string; private _secondaryPrivateIpAddressCount?; get secondaryPrivateIpAddressCount(): number; set secondaryPrivateIpAddressCount(value: number); resetSecondaryPrivateIpAddressCount(): void; get secondaryPrivateIpAddressCountInput(): number; private _privateIpAddresses; get privateIpAddresses(): EniIpv4AddressPrivateIpAddressesList; putPrivateIpAddresses(value: EniIpv4AddressPrivateIpAddresses[] | cdktf.IResolvable): void; resetPrivateIpAddresses(): void; get privateIpAddressesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }