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. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01. Other available API versions: 2019-06-01, 2019-08-01, 2023-04-01, 2023-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 = "IPv4",
PublicIpPrefixName = "test-ipprefix",
ResourceGroupName = "rg1",
Sku = new AzureNative.Network.Inputs.PublicIPPrefixSkuArgs
{
Name = "Standard",
Tier = "Regional",
},
});
});
Content copied to clipboard
package main
import (
"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("IPv4"),
PublicIpPrefixName: pulumi.String("test-ipprefix"),
ResourceGroupName: pulumi.String("rg1"),
Sku: &network.PublicIPPrefixSkuArgs{
Name: pulumi.String("Standard"),
Tier: pulumi.String("Regional"),
},
})
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 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(Map.ofEntries(
Map.entry("name", "Standard"),
Map.entry("tier", "Regional")
))
.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 = "Standard",
},
});
});
Content copied to clipboard
package main
import (
"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("Standard"),
},
})
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 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(Map.of("name", "Standard"))
.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
fun PublicIPPrefixArgs(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)