import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface NatConfig extends cdktf.TerraformMetaArguments { /** * Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is `all`. * - Choices: `all`, `attributes` * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/nat#delete_mode Nat#delete_mode} */ readonly deleteMode?: string; /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/nat#device Nat#device} */ readonly device?: string; /** * Specify access list describing local addresses * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/nat#inside_source_interfaces Nat#inside_source_interfaces} */ readonly insideSourceInterfaces?: NatInsideSourceInterfaces[] | cdktf.IResolvable; } export interface NatInsideSourceInterfacesInterfaces { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/nat#interface Nat#interface} */ readonly interface: string; /** * Overload an address translation * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/nat#overload Nat#overload} */ readonly overload?: boolean | cdktf.IResolvable; } export declare function natInsideSourceInterfacesInterfacesToTerraform(struct?: NatInsideSourceInterfacesInterfaces | cdktf.IResolvable): any; export declare function natInsideSourceInterfacesInterfacesToHclTerraform(struct?: NatInsideSourceInterfacesInterfaces | cdktf.IResolvable): any; export declare class NatInsideSourceInterfacesInterfacesOutputReference 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(): NatInsideSourceInterfacesInterfaces | cdktf.IResolvable | undefined; set internalValue(value: NatInsideSourceInterfacesInterfaces | cdktf.IResolvable | undefined); private _interface?; get interface(): string; set interface(value: string); get interfaceInput(): string; private _overload?; get overload(): boolean | cdktf.IResolvable; set overload(value: boolean | cdktf.IResolvable); resetOverload(): void; get overloadInput(): any; } export declare class NatInsideSourceInterfacesInterfacesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: NatInsideSourceInterfacesInterfaces[] | 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): NatInsideSourceInterfacesInterfacesOutputReference; } export interface NatInsideSourceInterfaces { /** * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/nat#id Nat#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; /** * Specify interface for global address * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/nat#interfaces Nat#interfaces} */ readonly interfaces?: NatInsideSourceInterfacesInterfaces[] | cdktf.IResolvable; } export declare function natInsideSourceInterfacesToTerraform(struct?: NatInsideSourceInterfaces | cdktf.IResolvable): any; export declare function natInsideSourceInterfacesToHclTerraform(struct?: NatInsideSourceInterfaces | cdktf.IResolvable): any; export declare class NatInsideSourceInterfacesOutputReference 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(): NatInsideSourceInterfaces | cdktf.IResolvable | undefined; set internalValue(value: NatInsideSourceInterfaces | cdktf.IResolvable | undefined); private _id?; get id(): string; set id(value: string); get idInput(): string; private _interfaces; get interfaces(): NatInsideSourceInterfacesInterfacesList; putInterfaces(value: NatInsideSourceInterfacesInterfaces[] | cdktf.IResolvable): void; resetInterfaces(): void; get interfacesInput(): any; } export declare class NatInsideSourceInterfacesList extends cdktf.ComplexList { protected terraformResource: cdktf.IInterpolatingParent; protected terraformAttribute: string; protected wrapsSet: boolean; internalValue?: NatInsideSourceInterfaces[] | 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): NatInsideSourceInterfacesOutputReference; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/nat iosxe_nat} */ export declare class Nat extends cdktf.TerraformResource { static readonly tfResourceType = "iosxe_nat"; /** * Generates CDKTF code for importing a Nat 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 Nat to import * @param importFromId The id of the existing Nat that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/resources/nat#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the Nat 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/ciscodevnet/iosxe/0.15.0/docs/resources/nat iosxe_nat} 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 NatConfig = {} */ constructor(scope: Construct, id: string, config?: NatConfig); private _deleteMode?; get deleteMode(): string; set deleteMode(value: string); resetDeleteMode(): void; get deleteModeInput(): string; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; private _insideSourceInterfaces; get insideSourceInterfaces(): NatInsideSourceInterfacesList; putInsideSourceInterfaces(value: NatInsideSourceInterfaces[] | cdktf.IResolvable): void; resetInsideSourceInterfaces(): void; get insideSourceInterfacesInput(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }