1. Packages
  2. Azure Native
  3. API Docs
  4. azurestackhci
  5. PublicIPAddress
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 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.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    The publicIP resource definition.

    Uses Azure REST API version 2025-09-01-preview.

    Example Usage

    CreatePublicIPAddress

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var publicIPAddress = new AzureNative.AzureStackHCI.PublicIPAddress("publicIPAddress", new()
        {
            Location = "eastus",
            Properties = new AzureNative.AzureStackHCI.Inputs.PublicIPAddressPropertiesArgs
            {
                IpAddress = "10.100.100.4",
                IpAllocationScope = "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.AzureStackHCI/logicalNetworks/lnet1",
                PublicIPAddressVersion = AzureNative.AzureStackHCI.PublicIPAddressType.IPv4,
            },
            PublicIPAddressName = "public-ip1",
            ResourceGroupName = "testrg",
        });
    
    });
    
    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.NewPublicIPAddress(ctx, "publicIPAddress", &azurestackhci.PublicIPAddressArgs{
    			Location: pulumi.String("eastus"),
    			Properties: &azurestackhci.PublicIPAddressPropertiesArgs{
    				IpAddress:              pulumi.String("10.100.100.4"),
    				IpAllocationScope:      pulumi.String("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.AzureStackHCI/logicalNetworks/lnet1"),
    				PublicIPAddressVersion: pulumi.String(azurestackhci.PublicIPAddressTypeIPv4),
    			},
    			PublicIPAddressName: pulumi.String("public-ip1"),
    			ResourceGroupName:   pulumi.String("testrg"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.azurestackhci.PublicIPAddress;
    import com.pulumi.azurenative.azurestackhci.PublicIPAddressArgs;
    import com.pulumi.azurenative.azurestackhci.inputs.PublicIPAddressPropertiesArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 publicIPAddress = new PublicIPAddress("publicIPAddress", PublicIPAddressArgs.builder()
                .location("eastus")
                .properties(PublicIPAddressPropertiesArgs.builder()
                    .ipAddress("10.100.100.4")
                    .ipAllocationScope("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.AzureStackHCI/logicalNetworks/lnet1")
                    .publicIPAddressVersion("IPv4")
                    .build())
                .publicIPAddressName("public-ip1")
                .resourceGroupName("testrg")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const publicIPAddress = new azure_native.azurestackhci.PublicIPAddress("publicIPAddress", {
        location: "eastus",
        properties: {
            ipAddress: "10.100.100.4",
            ipAllocationScope: "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.AzureStackHCI/logicalNetworks/lnet1",
            publicIPAddressVersion: azure_native.azurestackhci.PublicIPAddressType.IPv4,
        },
        publicIPAddressName: "public-ip1",
        resourceGroupName: "testrg",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    public_ip_address = azure_native.azurestackhci.PublicIPAddress("publicIPAddress",
        location="eastus",
        properties={
            "ip_address": "10.100.100.4",
            "ip_allocation_scope": "/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.AzureStackHCI/logicalNetworks/lnet1",
            "public_ip_address_version": azure_native.azurestackhci.PublicIPAddressType.I_PV4,
        },
        public_ip_address_name="public-ip1",
        resource_group_name="testrg")
    
    resources:
      publicIPAddress:
        type: azure-native:azurestackhci:PublicIPAddress
        properties:
          location: eastus
          properties:
            ipAddress: 10.100.100.4
            ipAllocationScope: /subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.AzureStackHCI/logicalNetworks/lnet1
            publicIPAddressVersion: IPv4
          publicIPAddressName: public-ip1
          resourceGroupName: testrg
    

    Create PublicIPAddress Resource

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

    Constructor syntax

    new PublicIPAddress(name: string, args: PublicIPAddressArgs, opts?: CustomResourceOptions);
    @overload
    def PublicIPAddress(resource_name: str,
                        args: PublicIPAddressArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def PublicIPAddress(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        resource_group_name: Optional[str] = None,
                        extended_location: Optional[ExtendedLocationArgs] = None,
                        location: Optional[str] = None,
                        properties: Optional[PublicIPAddressPropertiesArgs] = None,
                        public_ip_address_name: Optional[str] = None,
                        tags: Optional[Mapping[str, str]] = None)
    func NewPublicIPAddress(ctx *Context, name string, args PublicIPAddressArgs, opts ...ResourceOption) (*PublicIPAddress, error)
    public PublicIPAddress(string name, PublicIPAddressArgs args, CustomResourceOptions? opts = null)
    public PublicIPAddress(String name, PublicIPAddressArgs args)
    public PublicIPAddress(String name, PublicIPAddressArgs args, CustomResourceOptions options)
    
    type: azure-native:azurestackhci:PublicIPAddress
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PublicIPAddressArgs
    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 PublicIPAddressArgs
    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 PublicIPAddressArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PublicIPAddressArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PublicIPAddressArgs
    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 publicIPAddressResource = new AzureNative.AzureStackHCI.PublicIPAddress("publicIPAddressResource", new()
    {
        ResourceGroupName = "string",
        ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        Location = "string",
        Properties = new AzureNative.AzureStackHCI.Inputs.PublicIPAddressPropertiesArgs
        {
            IpAddress = "string",
            IpAllocationScope = "string",
            PublicIPAddressVersion = "string",
        },
        PublicIPAddressName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := azurestackhci.NewPublicIPAddress(ctx, "publicIPAddressResource", &azurestackhci.PublicIPAddressArgs{
    	ResourceGroupName: pulumi.String("string"),
    	ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Properties: &azurestackhci.PublicIPAddressPropertiesArgs{
    		IpAddress:              pulumi.String("string"),
    		IpAllocationScope:      pulumi.String("string"),
    		PublicIPAddressVersion: pulumi.String("string"),
    	},
    	PublicIPAddressName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var publicIPAddressResource = new com.pulumi.azurenative.azurestackhci.PublicIPAddress("publicIPAddressResource", com.pulumi.azurenative.azurestackhci.PublicIPAddressArgs.builder()
        .resourceGroupName("string")
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .location("string")
        .properties(PublicIPAddressPropertiesArgs.builder()
            .ipAddress("string")
            .ipAllocationScope("string")
            .publicIPAddressVersion("string")
            .build())
        .publicIPAddressName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    public_ip_address_resource = azure_native.azurestackhci.PublicIPAddress("publicIPAddressResource",
        resource_group_name="string",
        extended_location={
            "name": "string",
            "type": "string",
        },
        location="string",
        properties={
            "ip_address": "string",
            "ip_allocation_scope": "string",
            "public_ip_address_version": "string",
        },
        public_ip_address_name="string",
        tags={
            "string": "string",
        })
    
    const publicIPAddressResource = new azure_native.azurestackhci.PublicIPAddress("publicIPAddressResource", {
        resourceGroupName: "string",
        extendedLocation: {
            name: "string",
            type: "string",
        },
        location: "string",
        properties: {
            ipAddress: "string",
            ipAllocationScope: "string",
            publicIPAddressVersion: "string",
        },
        publicIPAddressName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:azurestackhci:PublicIPAddress
    properties:
        extendedLocation:
            name: string
            type: string
        location: string
        properties:
            ipAddress: string
            ipAllocationScope: string
            publicIPAddressVersion: string
        publicIPAddressName: string
        resourceGroupName: string
        tags:
            string: string
    

    PublicIPAddress 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 PublicIPAddress resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation Pulumi.AzureNative.AzureStackHCI.Inputs.ExtendedLocation
    The extendedLocation of the resource.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.AzureStackHCI.Inputs.PublicIPAddressProperties
    The resource-specific properties for this resource.
    PublicIPAddressName string
    Name of the public IP
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ExtendedLocation ExtendedLocationArgs
    The extendedLocation of the resource.
    Location string
    The geo-location where the resource lives
    Properties PublicIPAddressPropertiesArgs
    The resource-specific properties for this resource.
    PublicIPAddressName string
    Name of the public IP
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation ExtendedLocation
    The extendedLocation of the resource.
    location String
    The geo-location where the resource lives
    properties PublicIPAddressProperties
    The resource-specific properties for this resource.
    publicIPAddressName String
    Name of the public IP
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    extendedLocation ExtendedLocation
    The extendedLocation of the resource.
    location string
    The geo-location where the resource lives
    properties PublicIPAddressProperties
    The resource-specific properties for this resource.
    publicIPAddressName string
    Name of the public IP
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    extended_location ExtendedLocationArgs
    The extendedLocation of the resource.
    location str
    The geo-location where the resource lives
    properties PublicIPAddressPropertiesArgs
    The resource-specific properties for this resource.
    public_ip_address_name str
    Name of the public IP
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    extendedLocation Property Map
    The extendedLocation of the resource.
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    publicIPAddressName String
    Name of the public IP
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PublicIPAddress 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"
    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 | 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 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
    CUSTOM_LOCATION
    CustomLocation Custom extended location type
    "CustomLocation"
    CustomLocation Custom extended location type

    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
    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

    NatGatewayArmReferenceResponse, NatGatewayArmReferenceResponseArgs

    The ARM ID for a Network Security Group.
    ResourceId string
    The ARM ID for a Network Security Group.
    ResourceId string
    The ARM ID for a Network Security Group.
    resourceId String
    The ARM ID for a Network Security Group.
    resourceId string
    The ARM ID for a Network Security Group.
    resource_id str
    The ARM ID for a Network Security Group.
    resourceId String
    The ARM ID for a Network Security Group.

    PublicIPAddressProperties, PublicIPAddressPropertiesArgs

    Public IP Properties resource.
    IpAddress string
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    IpAllocationScope string
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    PublicIPAddressVersion string | Pulumi.AzureNative.AzureStackHCI.PublicIPAddressType
    Whether the public IP is v4 or v6. Defaults to IPv4
    IpAddress string
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    IpAllocationScope string
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    PublicIPAddressVersion string | PublicIPAddressType
    Whether the public IP is v4 or v6. Defaults to IPv4
    ipAddress String
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    ipAllocationScope String
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    publicIPAddressVersion String | PublicIPAddressType
    Whether the public IP is v4 or v6. Defaults to IPv4
    ipAddress string
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    ipAllocationScope string
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    publicIPAddressVersion string | PublicIPAddressType
    Whether the public IP is v4 or v6. Defaults to IPv4
    ip_address str
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    ip_allocation_scope str
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    public_ip_address_version str | PublicIPAddressType
    Whether the public IP is v4 or v6. Defaults to IPv4
    ipAddress String
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    ipAllocationScope String
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    publicIPAddressVersion String | "IPv4" | "IPv6"
    Whether the public IP is v4 or v6. Defaults to IPv4

    PublicIPAddressPropertiesResponse, PublicIPAddressPropertiesResponseArgs

    Public IP Properties resource.
    IpConfiguration Pulumi.AzureNative.AzureStackHCI.Inputs.IPConfigurationArmReferenceResponse
    network interface or LoadBalancer frontendIPconfiguration using this public IP
    NatGateway Pulumi.AzureNative.AzureStackHCI.Inputs.NatGatewayArmReferenceResponse
    natGateway using this public IP
    ProvisioningState string
    Provisioning state of the public IP
    IpAddress string
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    IpAllocationScope string
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    PublicIPAddressVersion string
    Whether the public IP is v4 or v6. Defaults to IPv4
    IpConfiguration IPConfigurationArmReferenceResponse
    network interface or LoadBalancer frontendIPconfiguration using this public IP
    NatGateway NatGatewayArmReferenceResponse
    natGateway using this public IP
    ProvisioningState string
    Provisioning state of the public IP
    IpAddress string
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    IpAllocationScope string
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    PublicIPAddressVersion string
    Whether the public IP is v4 or v6. Defaults to IPv4
    ipConfiguration IPConfigurationArmReferenceResponse
    network interface or LoadBalancer frontendIPconfiguration using this public IP
    natGateway NatGatewayArmReferenceResponse
    natGateway using this public IP
    provisioningState String
    Provisioning state of the public IP
    ipAddress String
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    ipAllocationScope String
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    publicIPAddressVersion String
    Whether the public IP is v4 or v6. Defaults to IPv4
    ipConfiguration IPConfigurationArmReferenceResponse
    network interface or LoadBalancer frontendIPconfiguration using this public IP
    natGateway NatGatewayArmReferenceResponse
    natGateway using this public IP
    provisioningState string
    Provisioning state of the public IP
    ipAddress string
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    ipAllocationScope string
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    publicIPAddressVersion string
    Whether the public IP is v4 or v6. Defaults to IPv4
    ip_configuration IPConfigurationArmReferenceResponse
    network interface or LoadBalancer frontendIPconfiguration using this public IP
    nat_gateway NatGatewayArmReferenceResponse
    natGateway using this public IP
    provisioning_state str
    Provisioning state of the public IP
    ip_address str
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    ip_allocation_scope str
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    public_ip_address_version str
    Whether the public IP is v4 or v6. Defaults to IPv4
    ipConfiguration Property Map
    network interface or LoadBalancer frontendIPconfiguration using this public IP
    natGateway Property Map
    natGateway using this public IP
    provisioningState String
    Provisioning state of the public IP
    ipAddress String
    IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
    ipAllocationScope String
    ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
    publicIPAddressVersion String
    Whether the public IP is v4 or v6. Defaults to IPv4

    PublicIPAddressType, PublicIPAddressTypeArgs

    IPv4
    IPv4 IPv4 IP Address
    IPv6
    IPv6 IPv6 IP Address
    PublicIPAddressTypeIPv4
    IPv4 IPv4 IP Address
    PublicIPAddressTypeIPv6
    IPv6 IPv6 IP Address
    IPv4
    IPv4 IPv4 IP Address
    IPv6
    IPv6 IPv6 IP Address
    IPv4
    IPv4 IPv4 IP Address
    IPv6
    IPv6 IPv6 IP Address
    I_PV4
    IPv4 IPv4 IP Address
    I_PV6
    IPv6 IPv6 IP Address
    "IPv4"
    IPv4 IPv4 IP Address
    "IPv6"
    IPv6 IPv6 IP Address

    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.
    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:PublicIPAddress public-ip1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/publicIPAddresses/{publicIPAddressName} 
    

    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.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate