1. Packages
  2. Azure Classic
  3. API Docs
  4. network
  5. getPublicIpPrefix

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

azure.network.getPublicIpPrefix

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

    Use this data source to access information about an existing Public IP Prefix.

    Example Usage

    Reference An Existing)

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = azure.network.getPublicIpPrefix({
        name: "name_of_public_ip",
        resourceGroupName: "name_of_resource_group",
    });
    export const publicIpPrefix = example.then(example => example.ipPrefix);
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.network.get_public_ip_prefix(name="name_of_public_ip",
        resource_group_name="name_of_resource_group")
    pulumi.export("publicIpPrefix", example.ip_prefix)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := network.LookupPublicIpPrefix(ctx, &network.LookupPublicIpPrefixArgs{
    			Name:              "name_of_public_ip",
    			ResourceGroupName: "name_of_resource_group",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("publicIpPrefix", example.IpPrefix)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Azure.Network.GetPublicIpPrefix.Invoke(new()
        {
            Name = "name_of_public_ip",
            ResourceGroupName = "name_of_resource_group",
        });
    
        return new Dictionary<string, object?>
        {
            ["publicIpPrefix"] = example.Apply(getPublicIpPrefixResult => getPublicIpPrefixResult.IpPrefix),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.network.NetworkFunctions;
    import com.pulumi.azure.network.inputs.GetPublicIpPrefixArgs;
    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) {
            final var example = NetworkFunctions.getPublicIpPrefix(GetPublicIpPrefixArgs.builder()
                .name("name_of_public_ip")
                .resourceGroupName("name_of_resource_group")
                .build());
    
            ctx.export("publicIpPrefix", example.applyValue(getPublicIpPrefixResult -> getPublicIpPrefixResult.ipPrefix()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: azure:network:getPublicIpPrefix
          Arguments:
            name: name_of_public_ip
            resourceGroupName: name_of_resource_group
    outputs:
      publicIpPrefix: ${example.ipPrefix}
    

    Using getPublicIpPrefix

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getPublicIpPrefix(args: GetPublicIpPrefixArgs, opts?: InvokeOptions): Promise<GetPublicIpPrefixResult>
    function getPublicIpPrefixOutput(args: GetPublicIpPrefixOutputArgs, opts?: InvokeOptions): Output<GetPublicIpPrefixResult>
    def get_public_ip_prefix(name: Optional[str] = None,
                             resource_group_name: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetPublicIpPrefixResult
    def get_public_ip_prefix_output(name: Optional[pulumi.Input[str]] = None,
                             resource_group_name: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetPublicIpPrefixResult]
    func LookupPublicIpPrefix(ctx *Context, args *LookupPublicIpPrefixArgs, opts ...InvokeOption) (*LookupPublicIpPrefixResult, error)
    func LookupPublicIpPrefixOutput(ctx *Context, args *LookupPublicIpPrefixOutputArgs, opts ...InvokeOption) LookupPublicIpPrefixResultOutput

    > Note: This function is named LookupPublicIpPrefix in the Go SDK.

    public static class GetPublicIpPrefix 
    {
        public static Task<GetPublicIpPrefixResult> InvokeAsync(GetPublicIpPrefixArgs args, InvokeOptions? opts = null)
        public static Output<GetPublicIpPrefixResult> Invoke(GetPublicIpPrefixInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPublicIpPrefixResult> getPublicIpPrefix(GetPublicIpPrefixArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: azure:network/getPublicIpPrefix:getPublicIpPrefix
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Name string
    Specifies the name of the public IP prefix.
    ResourceGroupName string
    Specifies the name of the resource group.
    Name string
    Specifies the name of the public IP prefix.
    ResourceGroupName string
    Specifies the name of the resource group.
    name String
    Specifies the name of the public IP prefix.
    resourceGroupName String
    Specifies the name of the resource group.
    name string
    Specifies the name of the public IP prefix.
    resourceGroupName string
    Specifies the name of the resource group.
    name str
    Specifies the name of the public IP prefix.
    resource_group_name str
    Specifies the name of the resource group.
    name String
    Specifies the name of the public IP prefix.
    resourceGroupName String
    Specifies the name of the resource group.

    getPublicIpPrefix Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    IpPrefix string
    The Public IP address range, in CIDR notation.
    Location string
    The supported Azure location where the resource exists.
    Name string
    PrefixLength int
    The number of bits of the prefix.
    ResourceGroupName string
    Sku string
    The SKU of the Public IP Prefix.
    Tags Dictionary<string, string>
    A mapping of tags to assigned to the resource.
    Zones List<string>
    A list of Availability Zones in which this Public IP Prefix is located.
    Id string
    The provider-assigned unique ID for this managed resource.
    IpPrefix string
    The Public IP address range, in CIDR notation.
    Location string
    The supported Azure location where the resource exists.
    Name string
    PrefixLength int
    The number of bits of the prefix.
    ResourceGroupName string
    Sku string
    The SKU of the Public IP Prefix.
    Tags map[string]string
    A mapping of tags to assigned to the resource.
    Zones []string
    A list of Availability Zones in which this Public IP Prefix is located.
    id String
    The provider-assigned unique ID for this managed resource.
    ipPrefix String
    The Public IP address range, in CIDR notation.
    location String
    The supported Azure location where the resource exists.
    name String
    prefixLength Integer
    The number of bits of the prefix.
    resourceGroupName String
    sku String
    The SKU of the Public IP Prefix.
    tags Map<String,String>
    A mapping of tags to assigned to the resource.
    zones List<String>
    A list of Availability Zones in which this Public IP Prefix is located.
    id string
    The provider-assigned unique ID for this managed resource.
    ipPrefix string
    The Public IP address range, in CIDR notation.
    location string
    The supported Azure location where the resource exists.
    name string
    prefixLength number
    The number of bits of the prefix.
    resourceGroupName string
    sku string
    The SKU of the Public IP Prefix.
    tags {[key: string]: string}
    A mapping of tags to assigned to the resource.
    zones string[]
    A list of Availability Zones in which this Public IP Prefix is located.
    id str
    The provider-assigned unique ID for this managed resource.
    ip_prefix str
    The Public IP address range, in CIDR notation.
    location str
    The supported Azure location where the resource exists.
    name str
    prefix_length int
    The number of bits of the prefix.
    resource_group_name str
    sku str
    The SKU of the Public IP Prefix.
    tags Mapping[str, str]
    A mapping of tags to assigned to the resource.
    zones Sequence[str]
    A list of Availability Zones in which this Public IP Prefix is located.
    id String
    The provider-assigned unique ID for this managed resource.
    ipPrefix String
    The Public IP address range, in CIDR notation.
    location String
    The supported Azure location where the resource exists.
    name String
    prefixLength Number
    The number of bits of the prefix.
    resourceGroupName String
    sku String
    The SKU of the Public IP Prefix.
    tags Map<String>
    A mapping of tags to assigned to the resource.
    zones List<String>
    A list of Availability Zones in which this Public IP Prefix is located.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi