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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Extended
Location Pulumi.Azure Native. Azure Stack HCI. Inputs. Extended Location - The extendedLocation of the resource.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Public IPAddress Properties - The resource-specific properties for this resource.
- Public
IPAddress stringName - Name of the public IP
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Extended
Location ExtendedLocation Args - The extendedLocation of the resource.
- Location string
- The geo-location where the resource lives
- Properties
Public
IPAddress Properties Args - The resource-specific properties for this resource.
- Public
IPAddress stringName - Name of the public IP
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- location String
- The geo-location where the resource lives
- properties
Public
IPAddress Properties - The resource-specific properties for this resource.
- public
IPAddress StringName - Name of the public IP
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- location string
- The geo-location where the resource lives
- properties
Public
IPAddress Properties - The resource-specific properties for this resource.
- public
IPAddress stringName - Name of the public IP
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- extended_
location ExtendedLocation Args - The extendedLocation of the resource.
- location str
- The geo-location where the resource lives
- properties
Public
IPAddress Properties Args - The resource-specific properties for this resource.
- public_
ip_ straddress_ name - Name of the public IP
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- extended
Location 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.
- public
IPAddress StringName - Name of the public IP
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the PublicIPAddress resource produces the following output properties:
- Azure
Api stringVersion - 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 Pulumi.Azure Native. Azure Stack HCI. Outputs. System Data Response - 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 stringVersion - 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 SystemData Response - 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 StringVersion - 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 SystemData Response - 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 stringVersion - 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 SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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 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.
Azure Native. Azure Stack HCI. Extended Location Types - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Types - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Types - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Custom
Location" - The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs
The complex type of the extended location.ExtendedLocationTypes, ExtendedLocationTypesArgs
- Custom
Location CustomLocationCustom extended location type
- Extended
Location Types Custom Location CustomLocationCustom extended location type
- Custom
Location CustomLocationCustom extended location type
- Custom
Location CustomLocationCustom extended location type
- CUSTOM_LOCATION
CustomLocationCustom extended location type
- "Custom
Location" CustomLocationCustom extended location type
IPConfigurationArmReferenceResponse, IPConfigurationArmReferenceResponseArgs
The Azure Resource ID of an IPConfiguration resource- Resource
Id string - The Azure Resource ID of an IPConfiguration resource
- Resource
Id string - The Azure Resource ID of an IPConfiguration resource
- resource
Id String - The Azure Resource ID of an IPConfiguration resource
- resource
Id string - The Azure Resource ID of an IPConfiguration resource
- resource_
id str - The Azure Resource ID of an IPConfiguration resource
- resource
Id String - The Azure Resource ID of an IPConfiguration resource
NatGatewayArmReferenceResponse, NatGatewayArmReferenceResponseArgs
The ARM ID for a Network Security Group.- Resource
Id string - The ARM ID for a Network Security Group.
- Resource
Id string - The ARM ID for a Network Security Group.
- resource
Id String - The ARM ID for a Network Security Group.
- resource
Id string - The ARM ID for a Network Security Group.
- resource_
id str - The ARM ID for a Network Security Group.
- resource
Id String - The ARM ID for a Network Security Group.
PublicIPAddressProperties, PublicIPAddressPropertiesArgs
Public IP Properties resource.- Ip
Address string - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- Ip
Allocation stringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- Public
IPAddress string | Pulumi.Version Azure Native. Azure Stack HCI. Public IPAddress Type - Whether the public IP is v4 or v6. Defaults to IPv4
- Ip
Address string - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- Ip
Allocation stringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- Public
IPAddress string | PublicVersion IPAddress Type - Whether the public IP is v4 or v6. Defaults to IPv4
- ip
Address String - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- ip
Allocation StringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- public
IPAddress String | PublicVersion IPAddress Type - Whether the public IP is v4 or v6. Defaults to IPv4
- ip
Address string - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- ip
Allocation stringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- public
IPAddress string | PublicVersion IPAddress Type - 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_ strscope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- public_
ip_ str | Publicaddress_ version IPAddress Type - Whether the public IP is v4 or v6. Defaults to IPv4
- ip
Address String - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- ip
Allocation StringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- public
IPAddress String | "IPv4" | "IPv6"Version - Whether the public IP is v4 or v6. Defaults to IPv4
PublicIPAddressPropertiesResponse, PublicIPAddressPropertiesResponseArgs
Public IP Properties resource.- Ip
Configuration Pulumi.Azure Native. Azure Stack HCI. Inputs. IPConfiguration Arm Reference Response - network interface or LoadBalancer frontendIPconfiguration using this public IP
- Nat
Gateway Pulumi.Azure Native. Azure Stack HCI. Inputs. Nat Gateway Arm Reference Response - natGateway using this public IP
- Provisioning
State string - Provisioning state of the public IP
- Ip
Address string - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- Ip
Allocation stringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- Public
IPAddress stringVersion - Whether the public IP is v4 or v6. Defaults to IPv4
- Ip
Configuration IPConfigurationArm Reference Response - network interface or LoadBalancer frontendIPconfiguration using this public IP
- Nat
Gateway NatGateway Arm Reference Response - natGateway using this public IP
- Provisioning
State string - Provisioning state of the public IP
- Ip
Address string - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- Ip
Allocation stringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- Public
IPAddress stringVersion - Whether the public IP is v4 or v6. Defaults to IPv4
- ip
Configuration IPConfigurationArm Reference Response - network interface or LoadBalancer frontendIPconfiguration using this public IP
- nat
Gateway NatGateway Arm Reference Response - natGateway using this public IP
- provisioning
State String - Provisioning state of the public IP
- ip
Address String - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- ip
Allocation StringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- public
IPAddress StringVersion - Whether the public IP is v4 or v6. Defaults to IPv4
- ip
Configuration IPConfigurationArm Reference Response - network interface or LoadBalancer frontendIPconfiguration using this public IP
- nat
Gateway NatGateway Arm Reference Response - natGateway using this public IP
- provisioning
State string - Provisioning state of the public IP
- ip
Address string - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- ip
Allocation stringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- public
IPAddress stringVersion - Whether the public IP is v4 or v6. Defaults to IPv4
- ip_
configuration IPConfigurationArm Reference Response - network interface or LoadBalancer frontendIPconfiguration using this public IP
- nat_
gateway NatGateway Arm Reference Response - 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_ strscope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- public_
ip_ straddress_ version - Whether the public IP is v4 or v6. Defaults to IPv4
- ip
Configuration Property Map - network interface or LoadBalancer frontendIPconfiguration using this public IP
- nat
Gateway Property Map - natGateway using this public IP
- provisioning
State String - Provisioning state of the public IP
- ip
Address String - IP Address. This is static. If the user specifies, we allocate that otherwise allocate from logical network address space.
- ip
Allocation StringScope - ipAllocationScope: Azure Reference to a particular IP Pool (ALM) or a LogicalNetwork (ALL) for allocating public IP
- public
IPAddress StringVersion - Whether the public IP is v4 or v6. Defaults to IPv4
PublicIPAddressType, PublicIPAddressTypeArgs
- IPv4
IPv4IPv4 IP Address- IPv6
IPv6IPv6 IP Address
- Public
IPAddress Type IPv4 IPv4IPv4 IP Address- Public
IPAddress Type IPv6 IPv6IPv6 IP Address
- IPv4
IPv4IPv4 IP Address- IPv6
IPv6IPv6 IP Address
- IPv4
IPv4IPv4 IP Address- IPv6
IPv6IPv6 IP Address
- I_PV4
IPv4IPv4 IP Address- I_PV6
IPv6IPv6 IP Address
- "IPv4"
IPv4IPv4 IP Address- "IPv6"
IPv6IPv6 IP Address
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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 stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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
