1. Registry
  2. Packages
  3. Azure Native
  4. API Docs
  5. azurestackhci
  6. InboundRule
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.26.0
published on Thursday, Aug 13, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.26.0
published on Thursday, Aug 13, 2026 by Pulumi

    The inbound rule resource definition.

    Uses Azure REST API version 2026-04-01-preview.

    Example Usage

    CreateOrUpdateInboundRule

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var inboundRule = new AzureNative.AzureStackHCI.InboundRule("inboundRule", new()
        {
            ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
            {
                Name = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
                Type = AzureNative.AzureStackHCI.ExtendedLocationTypes.CustomLocation,
            },
            InboundRuleName = "sample-inbound-rule",
            NatGatewayName = "test-nat-gw",
            Properties = new AzureNative.AzureStackHCI.Inputs.InboundRulePropertiesArgs
            {
                BackendIPConfiguration = new AzureNative.AzureStackHCI.Inputs.IPConfigurationArmReferenceArgs
                {
                    ResourceId = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/networkInterfaces/test-nic/ipConfigurations/ipconfig1",
                },
                BackendPort = 3389,
                FrontendPort = 3389,
                Protocol = AzureNative.AzureStackHCI.InboundNATRuleProtocol.TCP,
                PublicIPAddress = new AzureNative.AzureStackHCI.Inputs.PublicIPAddressArmReferenceArgs
                {
                    ResourceId = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/publicIPAddresses/test-public-ip",
                },
            },
            ResourceGroupName = "test-rg",
        });
    
    });
    
    package main
    
    import (
    	azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := azurestackhci.NewInboundRule(ctx, "inboundRule", &azurestackhci.InboundRuleArgs{
    			ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"),
    				Type: pulumi.String(azurestackhci.ExtendedLocationTypesCustomLocation),
    			},
    			InboundRuleName: pulumi.String("sample-inbound-rule"),
    			NatGatewayName:  pulumi.String("test-nat-gw"),
    			Properties: &azurestackhci.InboundRulePropertiesArgs{
    				BackendIPConfiguration: &azurestackhci.IPConfigurationArmReferenceArgs{
    					ResourceId: pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/networkInterfaces/test-nic/ipConfigurations/ipconfig1"),
    				},
    				BackendPort:  pulumi.Int(3389),
    				FrontendPort: pulumi.Int(3389),
    				Protocol:     pulumi.String(azurestackhci.InboundNATRuleProtocolTCP),
    				PublicIPAddress: &azurestackhci.PublicIPAddressArmReferenceArgs{
    					ResourceId: pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/publicIPAddresses/test-public-ip"),
    				},
    			},
    			ResourceGroupName: pulumi.String("test-rg"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_azurestackhci_inboundrule" "inboundRule" {
      extended_location = {
        name = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"
        type = "CustomLocation"
      }
      inbound_rule_name = "sample-inbound-rule"
      nat_gateway_name  = "test-nat-gw"
      properties = {
        backend_ip_configuration = {
          resource_id = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/networkInterfaces/test-nic/ipConfigurations/ipconfig1"
        }
        backend_port  = 3389
        frontend_port = 3389
        protocol      = "Tcp"
        public_ip_address = {
          resource_id = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/publicIPAddresses/test-public-ip"
        }
      }
      resource_group_name = "test-rg"
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.azurestackhci.InboundRule;
    import com.pulumi.azurenative.azurestackhci.InboundRuleArgs;
    import com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs;
    import com.pulumi.azurenative.azurestackhci.inputs.InboundRulePropertiesArgs;
    import com.pulumi.azurenative.azurestackhci.inputs.IPConfigurationArmReferenceArgs;
    import com.pulumi.azurenative.azurestackhci.inputs.PublicIPAddressArmReferenceArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var inboundRule = new InboundRule("inboundRule", InboundRuleArgs.builder()
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location")
                    .type("CustomLocation")
                    .build())
                .inboundRuleName("sample-inbound-rule")
                .natGatewayName("test-nat-gw")
                .properties(InboundRulePropertiesArgs.builder()
                    .backendIPConfiguration(IPConfigurationArmReferenceArgs.builder()
                        .resourceId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/networkInterfaces/test-nic/ipConfigurations/ipconfig1")
                        .build())
                    .backendPort(3389)
                    .frontendPort(3389)
                    .protocol("Tcp")
                    .publicIPAddress(PublicIPAddressArmReferenceArgs.builder()
                        .resourceId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/publicIPAddresses/test-public-ip")
                        .build())
                    .build())
                .resourceGroupName("test-rg")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const inboundRule = new azure_native.azurestackhci.InboundRule("inboundRule", {
        extendedLocation: {
            name: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
            type: azure_native.azurestackhci.ExtendedLocationTypes.CustomLocation,
        },
        inboundRuleName: "sample-inbound-rule",
        natGatewayName: "test-nat-gw",
        properties: {
            backendIPConfiguration: {
                resourceId: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/networkInterfaces/test-nic/ipConfigurations/ipconfig1",
            },
            backendPort: 3389,
            frontendPort: 3389,
            protocol: azure_native.azurestackhci.InboundNATRuleProtocol.TCP,
            publicIPAddress: {
                resourceId: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/publicIPAddresses/test-public-ip",
            },
        },
        resourceGroupName: "test-rg",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    inbound_rule = azure_native.azurestackhci.InboundRule("inboundRule",
        extended_location={
            "name": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
            "type": azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
        },
        inbound_rule_name="sample-inbound-rule",
        nat_gateway_name="test-nat-gw",
        properties={
            "backend_ip_configuration": {
                "resource_id": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/networkInterfaces/test-nic/ipConfigurations/ipconfig1",
            },
            "backend_port": 3389,
            "frontend_port": 3389,
            "protocol": azure_native.azurestackhci.InboundNATRuleProtocol.TCP,
            "public_ip_address": {
                "resource_id": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/publicIPAddresses/test-public-ip",
            },
        },
        resource_group_name="test-rg")
    
    resources:
      inboundRule:
        type: azure-native:azurestackhci:InboundRule
        properties:
          extendedLocation:
            name: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location
            type: CustomLocation
          inboundRuleName: sample-inbound-rule
          natGatewayName: test-nat-gw
          properties:
            backendIPConfiguration:
              resourceId: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/networkInterfaces/test-nic/ipConfigurations/ipconfig1
            backendPort: 3389
            frontendPort: 3389
            protocol: Tcp
            publicIPAddress:
              resourceId: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/publicIPAddresses/test-public-ip
          resourceGroupName: test-rg
    

    Create InboundRule Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new InboundRule(name: string, args: InboundRuleArgs, opts?: CustomResourceOptions);
    @overload
    def InboundRule(resource_name: str,
                    args: InboundRuleArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def InboundRule(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    nat_gateway_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    extended_location: Optional[ExtendedLocationArgs] = None,
                    inbound_rule_name: Optional[str] = None,
                    properties: Optional[InboundRulePropertiesArgs] = None)
    func NewInboundRule(ctx *Context, name string, args InboundRuleArgs, opts ...ResourceOption) (*InboundRule, error)
    public InboundRule(string name, InboundRuleArgs args, CustomResourceOptions? opts = null)
    public InboundRule(String name, InboundRuleArgs args)
    public InboundRule(String name, InboundRuleArgs args, CustomResourceOptions options)
    
    type: azure-native:azurestackhci:InboundRule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_azurestackhci_inbound_rule" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args InboundRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args InboundRuleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args InboundRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InboundRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InboundRuleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var inboundRuleResource = new AzureNative.AzureStackHCI.InboundRule("inboundRuleResource", new()
    {
        NatGatewayName = "string",
        ResourceGroupName = "string",
        ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        InboundRuleName = "string",
        Properties = new AzureNative.AzureStackHCI.Inputs.InboundRulePropertiesArgs
        {
            BackendIPConfiguration = new AzureNative.AzureStackHCI.Inputs.IPConfigurationArmReferenceArgs
            {
                ResourceId = "string",
            },
            BackendPort = 0,
            FrontendPort = 0,
            Protocol = "string",
            PublicIPAddress = new AzureNative.AzureStackHCI.Inputs.PublicIPAddressArmReferenceArgs
            {
                ResourceId = "string",
            },
        },
    });
    
    example, err := azurestackhci.NewInboundRule(ctx, "inboundRuleResource", &azurestackhci.InboundRuleArgs{
    	NatGatewayName:    pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	InboundRuleName: pulumi.String("string"),
    	Properties: &azurestackhci.InboundRulePropertiesArgs{
    		BackendIPConfiguration: &azurestackhci.IPConfigurationArmReferenceArgs{
    			ResourceId: pulumi.String("string"),
    		},
    		BackendPort:  pulumi.Int(0),
    		FrontendPort: pulumi.Int(0),
    		Protocol:     pulumi.String("string"),
    		PublicIPAddress: &azurestackhci.PublicIPAddressArmReferenceArgs{
    			ResourceId: pulumi.String("string"),
    		},
    	},
    })
    
    resource "azure-native_azurestackhci_inbound_rule" "inboundRuleResource" {
      lifecycle {
        create_before_destroy = true
      }
      nat_gateway_name    = "string"
      resource_group_name = "string"
      extended_location = {
        name = "string"
        type = "string"
      }
      inbound_rule_name = "string"
      properties = {
        backend_ip_configuration = {
          resource_id = "string"
        }
        backend_port  = 0
        frontend_port = 0
        protocol      = "string"
        public_ip_address = {
          resource_id = "string"
        }
      }
    }
    
    var inboundRuleResource = new InboundRule("inboundRuleResource", InboundRuleArgs.builder()
        .natGatewayName("string")
        .resourceGroupName("string")
        .extendedLocation(com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .inboundRuleName("string")
        .properties(InboundRulePropertiesArgs.builder()
            .backendIPConfiguration(IPConfigurationArmReferenceArgs.builder()
                .resourceId("string")
                .build())
            .backendPort(0)
            .frontendPort(0)
            .protocol("string")
            .publicIPAddress(PublicIPAddressArmReferenceArgs.builder()
                .resourceId("string")
                .build())
            .build())
        .build());
    
    inbound_rule_resource = azure_native.azurestackhci.InboundRule("inboundRuleResource",
        nat_gateway_name="string",
        resource_group_name="string",
        extended_location={
            "name": "string",
            "type": "string",
        },
        inbound_rule_name="string",
        properties={
            "backend_ip_configuration": {
                "resource_id": "string",
            },
            "backend_port": 0,
            "frontend_port": 0,
            "protocol": "string",
            "public_ip_address": {
                "resource_id": "string",
            },
        })
    
    const inboundRuleResource = new azure_native.azurestackhci.InboundRule("inboundRuleResource", {
        natGatewayName: "string",
        resourceGroupName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        inboundRuleName: "string",
        properties: {
            backendIPConfiguration: {
                resourceId: "string",
            },
            backendPort: 0,
            frontendPort: 0,
            protocol: "string",
            publicIPAddress: {
                resourceId: "string",
            },
        },
    });
    
    type: azure-native:azurestackhci:InboundRule
    properties:
        extendedLocation:
            name: string
            type: string
        inboundRuleName: string
        natGatewayName: string
        properties:
            backendIPConfiguration:
                resourceId: string
            backendPort: 0
            frontendPort: 0
            protocol: string
            publicIPAddress:
                resourceId: string
        resourceGroupName: string
    

    InboundRule Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The InboundRule resource accepts the following input properties:

    NatGatewayName string
    Name of the nat gateway
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation Pulumi.AzureNative.AzureStackHCI.Inputs.ExtendedLocation
    The extendedLocation of the resource.
    InboundRuleName string
    Name of the inbound rule
    Properties Pulumi.AzureNative.AzureStackHCI.Inputs.InboundRuleProperties
    The resource-specific properties for this resource.
    NatGatewayName string
    Name of the nat gateway
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation ExtendedLocationArgs
    The extendedLocation of the resource.
    InboundRuleName string
    Name of the inbound rule
    Properties InboundRulePropertiesArgs
    The resource-specific properties for this resource.
    nat_gateway_name string
    Name of the nat gateway
    resource_group_name string
    The name of the resource group. The name is case insensitive.
    extended_location object
    The extendedLocation of the resource.
    inbound_rule_name string
    Name of the inbound rule
    properties object
    The resource-specific properties for this resource.
    natGatewayName String
    Name of the nat gateway
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation ExtendedLocation
    The extendedLocation of the resource.
    inboundRuleName String
    Name of the inbound rule
    properties InboundRuleProperties
    The resource-specific properties for this resource.
    natGatewayName string
    Name of the nat gateway
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    extendedLocation ExtendedLocation
    The extendedLocation of the resource.
    inboundRuleName string
    Name of the inbound rule
    properties InboundRuleProperties
    The resource-specific properties for this resource.
    nat_gateway_name str
    Name of the nat gateway
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    extended_location ExtendedLocationArgs
    The extendedLocation of the resource.
    inbound_rule_name str
    Name of the inbound rule
    properties InboundRulePropertiesArgs
    The resource-specific properties for this resource.
    natGatewayName String
    Name of the nat gateway
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation Property Map
    The extendedLocation of the resource.
    inboundRuleName String
    Name of the inbound rule
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the InboundRule resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.AzureStackHCI.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    system_data object
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ExtendedLocation, ExtendedLocationArgs

    The complex type of the extended location.
    Name string
    The name of the extended location.
    Type string | Pulumi.AzureNative.AzureStackHCI.ExtendedLocationTypes
    The type of the extended location.
    Name string
    The name of the extended location.
    Type string | ExtendedLocationTypes
    The type of the extended location.
    name string
    The name of the extended location.
    type string | "CustomLocation"
    The type of the extended location.
    name String
    The name of the extended location.
    type String | ExtendedLocationTypes
    The type of the extended location.
    name string
    The name of the extended location.
    type string | ExtendedLocationTypes
    The type of the extended location.
    name str
    The name of the extended location.
    type str | ExtendedLocationTypes
    The type of the extended location.
    name String
    The name of the extended location.
    type String | "CustomLocation"
    The type of the extended location.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    The complex type of the extended location.
    Name string
    The name of the extended location.
    Type string
    The type of the extended location.
    Name string
    The name of the extended location.
    Type string
    The type of the extended location.
    name string
    The name of the extended location.
    type string
    The type of the extended location.
    name String
    The name of the extended location.
    type String
    The type of the extended location.
    name string
    The name of the extended location.
    type string
    The type of the extended location.
    name str
    The name of the extended location.
    type str
    The type of the extended location.
    name String
    The name of the extended location.
    type String
    The type of the extended location.

    ExtendedLocationTypes, ExtendedLocationTypesArgs

    CustomLocation
    CustomLocation Custom extended location type
    ExtendedLocationTypesCustomLocation
    CustomLocation Custom extended location type
    "CustomLocation"
    CustomLocation Custom extended location type
    CustomLocation
    CustomLocation Custom extended location type
    CustomLocation
    CustomLocation Custom extended location type
    CUSTOM_LOCATION
    CustomLocation Custom extended location type
    "CustomLocation"
    CustomLocation Custom extended location type

    IPConfigurationArmReference, IPConfigurationArmReferenceArgs

    The Azure Resource ID of an IPConfiguration resource
    ResourceId string
    The Azure Resource ID of an IPConfiguration resource
    ResourceId string
    The Azure Resource ID of an IPConfiguration resource
    resource_id string
    The Azure Resource ID of an IPConfiguration resource
    resourceId String
    The Azure Resource ID of an IPConfiguration resource
    resourceId string
    The Azure Resource ID of an IPConfiguration resource
    resource_id str
    The Azure Resource ID of an IPConfiguration resource
    resourceId String
    The Azure Resource ID of an IPConfiguration resource

    IPConfigurationArmReferenceResponse, IPConfigurationArmReferenceResponseArgs

    The Azure Resource ID of an IPConfiguration resource
    ResourceId string
    The Azure Resource ID of an IPConfiguration resource
    ResourceId string
    The Azure Resource ID of an IPConfiguration resource
    resource_id string
    The Azure Resource ID of an IPConfiguration resource
    resourceId String
    The Azure Resource ID of an IPConfiguration resource
    resourceId string
    The Azure Resource ID of an IPConfiguration resource
    resource_id str
    The Azure Resource ID of an IPConfiguration resource
    resourceId String
    The Azure Resource ID of an IPConfiguration resource

    InboundNATRuleProtocol, InboundNATRuleProtocolArgs

    TCP
    Tcp TCP - load balance only tcp traffic
    UDP
    Udp Udp - load balance only UDP traffic
    InboundNATRuleProtocolTCP
    Tcp TCP - load balance only tcp traffic
    InboundNATRuleProtocolUDP
    Udp Udp - load balance only UDP traffic
    "Tcp"
    Tcp TCP - load balance only tcp traffic
    "Udp"
    Udp Udp - load balance only UDP traffic
    TCP
    Tcp TCP - load balance only tcp traffic
    UDP
    Udp Udp - load balance only UDP traffic
    TCP
    Tcp TCP - load balance only tcp traffic
    UDP
    Udp Udp - load balance only UDP traffic
    TCP
    Tcp TCP - load balance only tcp traffic
    UDP
    Udp Udp - load balance only UDP traffic
    "Tcp"
    Tcp TCP - load balance only tcp traffic
    "Udp"
    Udp Udp - load balance only UDP traffic

    InboundRuleProperties, InboundRulePropertiesArgs

    Inbound rule properties - extends InboundNATRuleProperties with additional status tracking
    BackendIPConfiguration Pulumi.AzureNative.AzureStackHCI.Inputs.IPConfigurationArmReference
    IP configuration for the target backend.
    BackendPort int
    backend Port for the inbound rule
    FrontendPort int
    Frontend Port for the inbound rule
    Protocol string | Pulumi.AzureNative.AzureStackHCI.InboundNATRuleProtocol
    Protocol for the NAT rule
    PublicIPAddress Pulumi.AzureNative.AzureStackHCI.Inputs.PublicIPAddressArmReference
    Public IP Address for this NAT rule
    BackendIPConfiguration IPConfigurationArmReference
    IP configuration for the target backend.
    BackendPort int
    backend Port for the inbound rule
    FrontendPort int
    Frontend Port for the inbound rule
    Protocol string | InboundNATRuleProtocol
    Protocol for the NAT rule
    PublicIPAddress PublicIPAddressArmReference
    Public IP Address for this NAT rule
    backend_ip_configuration object
    IP configuration for the target backend.
    backend_port number
    backend Port for the inbound rule
    frontend_port number
    Frontend Port for the inbound rule
    protocol string | "Tcp" | "Udp"
    Protocol for the NAT rule
    public_ip_address object
    Public IP Address for this NAT rule
    backendIPConfiguration IPConfigurationArmReference
    IP configuration for the target backend.
    backendPort Integer
    backend Port for the inbound rule
    frontendPort Integer
    Frontend Port for the inbound rule
    protocol String | InboundNATRuleProtocol
    Protocol for the NAT rule
    publicIPAddress PublicIPAddressArmReference
    Public IP Address for this NAT rule
    backendIPConfiguration IPConfigurationArmReference
    IP configuration for the target backend.
    backendPort number
    backend Port for the inbound rule
    frontendPort number
    Frontend Port for the inbound rule
    protocol string | InboundNATRuleProtocol
    Protocol for the NAT rule
    publicIPAddress PublicIPAddressArmReference
    Public IP Address for this NAT rule
    backend_ip_configuration IPConfigurationArmReference
    IP configuration for the target backend.
    backend_port int
    backend Port for the inbound rule
    frontend_port int
    Frontend Port for the inbound rule
    protocol str | InboundNATRuleProtocol
    Protocol for the NAT rule
    public_ip_address PublicIPAddressArmReference
    Public IP Address for this NAT rule
    backendIPConfiguration Property Map
    IP configuration for the target backend.
    backendPort Number
    backend Port for the inbound rule
    frontendPort Number
    Frontend Port for the inbound rule
    protocol String | "Tcp" | "Udp"
    Protocol for the NAT rule
    publicIPAddress Property Map
    Public IP Address for this NAT rule

    InboundRulePropertiesResponse, InboundRulePropertiesResponseArgs

    Inbound rule properties - extends InboundNATRuleProperties with additional status tracking
    BackendIPConfiguration Pulumi.AzureNative.AzureStackHCI.Inputs.IPConfigurationArmReferenceResponse
    IP configuration for the target backend.
    BackendPort int
    backend Port for the inbound rule
    FrontendPort int
    Frontend Port for the inbound rule
    Protocol string
    Protocol for the NAT rule
    ProvisioningState string
    Provisioning state of the inbound rule
    PublicIPAddress Pulumi.AzureNative.AzureStackHCI.Inputs.PublicIPAddressArmReferenceResponse
    Public IP Address for this NAT rule
    Status Pulumi.AzureNative.AzureStackHCI.Inputs.InboundRuleStatusResponse
    The observed state of Inbound Rule
    BackendIPConfiguration IPConfigurationArmReferenceResponse
    IP configuration for the target backend.
    BackendPort int
    backend Port for the inbound rule
    FrontendPort int
    Frontend Port for the inbound rule
    Protocol string
    Protocol for the NAT rule
    ProvisioningState string
    Provisioning state of the inbound rule
    PublicIPAddress PublicIPAddressArmReferenceResponse
    Public IP Address for this NAT rule
    Status InboundRuleStatusResponse
    The observed state of Inbound Rule
    backend_ip_configuration object
    IP configuration for the target backend.
    backend_port number
    backend Port for the inbound rule
    frontend_port number
    Frontend Port for the inbound rule
    protocol string
    Protocol for the NAT rule
    provisioning_state string
    Provisioning state of the inbound rule
    public_ip_address object
    Public IP Address for this NAT rule
    status object
    The observed state of Inbound Rule
    backendIPConfiguration IPConfigurationArmReferenceResponse
    IP configuration for the target backend.
    backendPort Integer
    backend Port for the inbound rule
    frontendPort Integer
    Frontend Port for the inbound rule
    protocol String
    Protocol for the NAT rule
    provisioningState String
    Provisioning state of the inbound rule
    publicIPAddress PublicIPAddressArmReferenceResponse
    Public IP Address for this NAT rule
    status InboundRuleStatusResponse
    The observed state of Inbound Rule
    backendIPConfiguration IPConfigurationArmReferenceResponse
    IP configuration for the target backend.
    backendPort number
    backend Port for the inbound rule
    frontendPort number
    Frontend Port for the inbound rule
    protocol string
    Protocol for the NAT rule
    provisioningState string
    Provisioning state of the inbound rule
    publicIPAddress PublicIPAddressArmReferenceResponse
    Public IP Address for this NAT rule
    status InboundRuleStatusResponse
    The observed state of Inbound Rule
    backend_ip_configuration IPConfigurationArmReferenceResponse
    IP configuration for the target backend.
    backend_port int
    backend Port for the inbound rule
    frontend_port int
    Frontend Port for the inbound rule
    protocol str
    Protocol for the NAT rule
    provisioning_state str
    Provisioning state of the inbound rule
    public_ip_address PublicIPAddressArmReferenceResponse
    Public IP Address for this NAT rule
    status InboundRuleStatusResponse
    The observed state of Inbound Rule
    backendIPConfiguration Property Map
    IP configuration for the target backend.
    backendPort Number
    backend Port for the inbound rule
    frontendPort Number
    Frontend Port for the inbound rule
    protocol String
    Protocol for the NAT rule
    provisioningState String
    Provisioning state of the inbound rule
    publicIPAddress Property Map
    Public IP Address for this NAT rule
    status Property Map
    The observed state of Inbound Rule

    InboundRuleStatusProvisioningStatusResponse, InboundRuleStatusProvisioningStatusResponseArgs

    Provisioning status of Inbound Rule
    Status string
    The status of the operation performed on the inbound rule [Succeeded, Failed, InProgress]
    OperationId string
    The ID of the operation performed on the inbound rule
    Status string
    The status of the operation performed on the inbound rule [Succeeded, Failed, InProgress]
    OperationId string
    The ID of the operation performed on the inbound rule
    status string
    The status of the operation performed on the inbound rule [Succeeded, Failed, InProgress]
    operation_id string
    The ID of the operation performed on the inbound rule
    status String
    The status of the operation performed on the inbound rule [Succeeded, Failed, InProgress]
    operationId String
    The ID of the operation performed on the inbound rule
    status string
    The status of the operation performed on the inbound rule [Succeeded, Failed, InProgress]
    operationId string
    The ID of the operation performed on the inbound rule
    status str
    The status of the operation performed on the inbound rule [Succeeded, Failed, InProgress]
    operation_id str
    The ID of the operation performed on the inbound rule
    status String
    The status of the operation performed on the inbound rule [Succeeded, Failed, InProgress]
    operationId String
    The ID of the operation performed on the inbound rule

    InboundRuleStatusResponse, InboundRuleStatusResponseArgs

    The observed state of inbound rule
    ErrorCode string
    InboundRule provisioning error code
    ErrorMessage string
    Descriptive error message
    ProvisioningStatus Pulumi.AzureNative.AzureStackHCI.Inputs.InboundRuleStatusProvisioningStatusResponse
    InboundRule provisioning status
    ErrorCode string
    InboundRule provisioning error code
    ErrorMessage string
    Descriptive error message
    ProvisioningStatus InboundRuleStatusProvisioningStatusResponse
    InboundRule provisioning status
    error_code string
    InboundRule provisioning error code
    error_message string
    Descriptive error message
    provisioning_status object
    InboundRule provisioning status
    errorCode String
    InboundRule provisioning error code
    errorMessage String
    Descriptive error message
    provisioningStatus InboundRuleStatusProvisioningStatusResponse
    InboundRule provisioning status
    errorCode string
    InboundRule provisioning error code
    errorMessage string
    Descriptive error message
    provisioningStatus InboundRuleStatusProvisioningStatusResponse
    InboundRule provisioning status
    error_code str
    InboundRule provisioning error code
    error_message str
    Descriptive error message
    provisioning_status InboundRuleStatusProvisioningStatusResponse
    InboundRule provisioning status
    errorCode String
    InboundRule provisioning error code
    errorMessage String
    Descriptive error message
    provisioningStatus Property Map
    InboundRule provisioning status

    PublicIPAddressArmReference, PublicIPAddressArmReferenceArgs

    The Azure Resource ID of a Public IP resource
    ResourceId string
    The Azure Resource ID of a Public IP resource
    ResourceId string
    The Azure Resource ID of a Public IP resource
    resource_id string
    The Azure Resource ID of a Public IP resource
    resourceId String
    The Azure Resource ID of a Public IP resource
    resourceId string
    The Azure Resource ID of a Public IP resource
    resource_id str
    The Azure Resource ID of a Public IP resource
    resourceId String
    The Azure Resource ID of a Public IP resource

    PublicIPAddressArmReferenceResponse, PublicIPAddressArmReferenceResponseArgs

    The Azure Resource ID of a Public IP resource
    ResourceId string
    The Azure Resource ID of a Public IP resource
    ResourceId string
    The Azure Resource ID of a Public IP resource
    resource_id string
    The Azure Resource ID of a Public IP resource
    resourceId String
    The Azure Resource ID of a Public IP resource
    resourceId string
    The Azure Resource ID of a Public IP resource
    resource_id str
    The Azure Resource ID of a Public IP resource
    resourceId String
    The Azure Resource ID of a Public IP resource

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    created_at string
    The timestamp of resource creation (UTC).
    created_by string
    The identity that created the resource.
    created_by_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:azurestackhci:InboundRule sample-inbound-rule /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/natGateways/{natGatewayName}/inboundRules/{inboundRuleName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.26.0
    published on Thursday, Aug 13, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial