Public IPPrefix Args
data class PublicIPPrefixArgs(val customIPPrefix: Output<SubResourceArgs>? = null, val extendedLocation: Output<ExtendedLocationArgs>? = null, val id: Output<String>? = null, val ipTags: Output<List<IpTagArgs>>? = null, val location: Output<String>? = null, val natGateway: Output<NatGatewayArgs>? = null, val prefixLength: Output<Int>? = null, val publicIPAddressVersion: Output<Either<String, IPVersion>>? = null, val publicIpPrefixName: Output<String>? = null, val resourceGroupName: Output<String>? = null, val sku: Output<PublicIPPrefixSkuArgs>? = null, val tags: Output<Map<String, String>>? = null, val zones: Output<List<String>>? = null) : ConvertibleToJava<PublicIPPrefixArgs>
Public IP prefix resource. Uses Azure REST API version 2023-02-01. In version 1.x of the Azure Native provider, it used API version 2020-11-01. Other available API versions: 2019-06-01, 2019-08-01, 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01, 2024-05-01.
Example Usage
Create public IP prefix allocation method
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var publicIPPrefix = new AzureNative.Network.PublicIPPrefix("publicIPPrefix", new()
{
Location = "westus",
PrefixLength = 30,
PublicIPAddressVersion = AzureNative.Network.IPVersion.IPv4,
PublicIpPrefixName = "test-ipprefix",
ResourceGroupName = "rg1",
Sku = new AzureNative.Network.Inputs.PublicIPPrefixSkuArgs
{
Name = AzureNative.Network.PublicIPPrefixSkuName.Standard,
Tier = AzureNative.Network.PublicIPPrefixSkuTier.Regional,
},
});
});
Content copied to clipboard
package main
import (
network "github.com/pulumi/pulumi-azure-native-sdk/network/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := network.NewPublicIPPrefix(ctx, "publicIPPrefix", &network.PublicIPPrefixArgs{
Location: pulumi.String("westus"),
PrefixLength: pulumi.Int(30),
PublicIPAddressVersion: pulumi.String(network.IPVersionIPv4),
PublicIpPrefixName: pulumi.String("test-ipprefix"),
ResourceGroupName: pulumi.String("rg1"),
Sku: &network.PublicIPPrefixSkuArgs{
Name: pulumi.String(network.PublicIPPrefixSkuNameStandard),
Tier: pulumi.String(network.PublicIPPrefixSkuTierRegional),
},
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.PublicIPPrefix;
import com.pulumi.azurenative.network.PublicIPPrefixArgs;
import com.pulumi.azurenative.network.inputs.PublicIPPrefixSkuArgs;
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 publicIPPrefix = new PublicIPPrefix("publicIPPrefix", PublicIPPrefixArgs.builder()
.location("westus")
.prefixLength(30)
.publicIPAddressVersion("IPv4")
.publicIpPrefixName("test-ipprefix")
.resourceGroupName("rg1")
.sku(PublicIPPrefixSkuArgs.builder()
.name("Standard")
.tier("Regional")
.build())
.build());
}
}
Content copied to clipboard
Create public IP prefix defaults
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var publicIPPrefix = new AzureNative.Network.PublicIPPrefix("publicIPPrefix", new()
{
Location = "westus",
PrefixLength = 30,
PublicIpPrefixName = "test-ipprefix",
ResourceGroupName = "rg1",
Sku = new AzureNative.Network.Inputs.PublicIPPrefixSkuArgs
{
Name = AzureNative.Network.PublicIPPrefixSkuName.Standard,
},
});
});
Content copied to clipboard
package main
import (
network "github.com/pulumi/pulumi-azure-native-sdk/network/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := network.NewPublicIPPrefix(ctx, "publicIPPrefix", &network.PublicIPPrefixArgs{
Location: pulumi.String("westus"),
PrefixLength: pulumi.Int(30),
PublicIpPrefixName: pulumi.String("test-ipprefix"),
ResourceGroupName: pulumi.String("rg1"),
Sku: &network.PublicIPPrefixSkuArgs{
Name: pulumi.String(network.PublicIPPrefixSkuNameStandard),
},
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.PublicIPPrefix;
import com.pulumi.azurenative.network.PublicIPPrefixArgs;
import com.pulumi.azurenative.network.inputs.PublicIPPrefixSkuArgs;
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 publicIPPrefix = new PublicIPPrefix("publicIPPrefix", PublicIPPrefixArgs.builder()
.location("westus")
.prefixLength(30)
.publicIpPrefixName("test-ipprefix")
.resourceGroupName("rg1")
.sku(PublicIPPrefixSkuArgs.builder()
.name("Standard")
.build())
.build());
}
}
Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:network:PublicIPPrefix test-ipprefix /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(customIPPrefix: Output<SubResourceArgs>? = null, extendedLocation: Output<ExtendedLocationArgs>? = null, id: Output<String>? = null, ipTags: Output<List<IpTagArgs>>? = null, location: Output<String>? = null, natGateway: Output<NatGatewayArgs>? = null, prefixLength: Output<Int>? = null, publicIPAddressVersion: Output<Either<String, IPVersion>>? = null, publicIpPrefixName: Output<String>? = null, resourceGroupName: Output<String>? = null, sku: Output<PublicIPPrefixSkuArgs>? = null, tags: Output<Map<String, String>>? = null, zones: Output<List<String>>? = null)
Properties
Link copied to clipboard
The customIpPrefix that this prefix is associated with.
Link copied to clipboard
The extended location of the public ip address.
Link copied to clipboard
NatGateway of Public IP Prefix.
Link copied to clipboard
The Length of the Public IP Prefix.
Link copied to clipboard
The public IP address version.
Link copied to clipboard
The name of the public IP prefix.
Link copied to clipboard
The name of the resource group.
Link copied to clipboard
The public IP prefix SKU.