import * as pulumi from "@pulumi/pulumi"; /** * Manages the association between a Network Interface and a Load Balancer's NAT Rule. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-network", * addressSpaces: ["10.0.0.0/16"], * location: example.location, * resourceGroupName: example.name, * }); * const exampleSubnet = new azure.network.Subnet("example", { * name: "internal", * resourceGroupName: example.name, * virtualNetworkName: exampleVirtualNetwork.name, * addressPrefixes: ["10.0.2.0/24"], * }); * const examplePublicIp = new azure.network.PublicIp("example", { * name: "example-pip", * location: example.location, * resourceGroupName: example.name, * allocationMethod: "Static", * }); * const exampleLoadBalancer = new azure.lb.LoadBalancer("example", { * name: "example-lb", * location: example.location, * resourceGroupName: example.name, * frontendIpConfigurations: [{ * name: "primary", * publicIpAddressId: examplePublicIp.id, * }], * }); * const exampleNatRule = new azure.lb.NatRule("example", { * resourceGroupName: example.name, * loadbalancerId: exampleLoadBalancer.id, * name: "RDPAccess", * protocol: "Tcp", * frontendPort: 3389, * backendPort: 3389, * frontendIpConfigurationName: "primary", * }); * const exampleNetworkInterface = new azure.network.NetworkInterface("example", { * name: "example-nic", * location: example.location, * resourceGroupName: example.name, * ipConfigurations: [{ * name: "testconfiguration1", * subnetId: exampleSubnet.id, * privateIpAddressAllocation: "Dynamic", * }], * }); * const exampleNetworkInterfaceNatRuleAssociation = new azure.network.NetworkInterfaceNatRuleAssociation("example", { * networkInterfaceId: exampleNetworkInterface.id, * ipConfigurationName: "testconfiguration1", * natRuleId: exampleNatRule.id, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 * * ## Import * * Associations between Network Interfaces and Load Balancer NAT Rule can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:network/networkInterfaceNatRuleAssociation:NetworkInterfaceNatRuleAssociation association1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/networkInterfaces/nic1/ipConfigurations/example|/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/loadBalancers/lb1/inboundNatRules/rule1 * ``` * * > **Note:** This ID is specific to this provider - and is of the format `{networkInterfaceId}/ipConfigurations/{ipConfigurationName}|{natRuleId}`. */ export declare class NetworkInterfaceNatRuleAssociation extends pulumi.CustomResource { /** * Get an existing NetworkInterfaceNatRuleAssociation resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: NetworkInterfaceNatRuleAssociationState, opts?: pulumi.CustomResourceOptions): NetworkInterfaceNatRuleAssociation; /** * Returns true if the given object is an instance of NetworkInterfaceNatRuleAssociation. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is NetworkInterfaceNatRuleAssociation; /** * The Name of the IP Configuration within the Network Interface which should be connected to the NAT Rule. Changing this forces a new resource to be created. */ readonly ipConfigurationName: pulumi.Output; /** * The ID of the Load Balancer NAT Rule which this Network Interface which should be connected to. Changing this forces a new resource to be created. */ readonly natRuleId: pulumi.Output; /** * The ID of the Network Interface. Changing this forces a new resource to be created. */ readonly networkInterfaceId: pulumi.Output; /** * Create a NetworkInterfaceNatRuleAssociation resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: NetworkInterfaceNatRuleAssociationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkInterfaceNatRuleAssociation resources. */ export interface NetworkInterfaceNatRuleAssociationState { /** * The Name of the IP Configuration within the Network Interface which should be connected to the NAT Rule. Changing this forces a new resource to be created. */ ipConfigurationName?: pulumi.Input; /** * The ID of the Load Balancer NAT Rule which this Network Interface which should be connected to. Changing this forces a new resource to be created. */ natRuleId?: pulumi.Input; /** * The ID of the Network Interface. Changing this forces a new resource to be created. */ networkInterfaceId?: pulumi.Input; } /** * The set of arguments for constructing a NetworkInterfaceNatRuleAssociation resource. */ export interface NetworkInterfaceNatRuleAssociationArgs { /** * The Name of the IP Configuration within the Network Interface which should be connected to the NAT Rule. Changing this forces a new resource to be created. */ ipConfigurationName: pulumi.Input; /** * The ID of the Load Balancer NAT Rule which this Network Interface which should be connected to. Changing this forces a new resource to be created. */ natRuleId: pulumi.Input; /** * The ID of the Network Interface. Changing this forces a new resource to be created. */ networkInterfaceId: pulumi.Input; }