azure-native.network.CustomIPPrefix
Explore with Pulumi AI
Custom 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: 2021-03-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 custom IP prefix allocation method
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var customIPPrefix = new AzureNative.Network.CustomIPPrefix("customIPPrefix", new()
    {
        Cidr = "0.0.0.0/24",
        CustomIpPrefixName = "test-customipprefix",
        Location = "westus",
        ResourceGroupName = "rg1",
    });
});
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.NewCustomIPPrefix(ctx, "customIPPrefix", &network.CustomIPPrefixArgs{
			Cidr:               pulumi.String("0.0.0.0/24"),
			CustomIpPrefixName: pulumi.String("test-customipprefix"),
			Location:           pulumi.String("westus"),
			ResourceGroupName:  pulumi.String("rg1"),
		})
		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.network.CustomIPPrefix;
import com.pulumi.azurenative.network.CustomIPPrefixArgs;
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 customIPPrefix = new CustomIPPrefix("customIPPrefix", CustomIPPrefixArgs.builder()
            .cidr("0.0.0.0/24")
            .customIpPrefixName("test-customipprefix")
            .location("westus")
            .resourceGroupName("rg1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const customIPPrefix = new azure_native.network.CustomIPPrefix("customIPPrefix", {
    cidr: "0.0.0.0/24",
    customIpPrefixName: "test-customipprefix",
    location: "westus",
    resourceGroupName: "rg1",
});
import pulumi
import pulumi_azure_native as azure_native
custom_ip_prefix = azure_native.network.CustomIPPrefix("customIPPrefix",
    cidr="0.0.0.0/24",
    custom_ip_prefix_name="test-customipprefix",
    location="westus",
    resource_group_name="rg1")
resources:
  customIPPrefix:
    type: azure-native:network:CustomIPPrefix
    properties:
      cidr: 0.0.0.0/24
      customIpPrefixName: test-customipprefix
      location: westus
      resourceGroupName: rg1
Create CustomIPPrefix Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomIPPrefix(name: string, args: CustomIPPrefixArgs, opts?: CustomResourceOptions);@overload
def CustomIPPrefix(resource_name: str,
                   args: CustomIPPrefixArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def CustomIPPrefix(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   geo: Optional[Union[str, Geo]] = None,
                   extended_location: Optional[ExtendedLocationArgs] = None,
                   commissioned_state: Optional[Union[str, CommissionedState]] = None,
                   custom_ip_prefix_name: Optional[str] = None,
                   id: Optional[str] = None,
                   express_route_advertise: Optional[bool] = None,
                   cidr: Optional[str] = None,
                   asn: Optional[str] = None,
                   custom_ip_prefix_parent: Optional[SubResourceArgs] = None,
                   location: Optional[str] = None,
                   no_internet_advertise: Optional[bool] = None,
                   prefix_type: Optional[Union[str, CustomIpPrefixType]] = None,
                   authorization_message: Optional[str] = None,
                   signed_message: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   zones: Optional[Sequence[str]] = None)func NewCustomIPPrefix(ctx *Context, name string, args CustomIPPrefixArgs, opts ...ResourceOption) (*CustomIPPrefix, error)public CustomIPPrefix(string name, CustomIPPrefixArgs args, CustomResourceOptions? opts = null)
public CustomIPPrefix(String name, CustomIPPrefixArgs args)
public CustomIPPrefix(String name, CustomIPPrefixArgs args, CustomResourceOptions options)
type: azure-native:network:CustomIPPrefix
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 CustomIPPrefixArgs
- 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 CustomIPPrefixArgs
- 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 CustomIPPrefixArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomIPPrefixArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CustomIPPrefixArgs
- 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 customIPPrefixResource = new AzureNative.Network.CustomIPPrefix("customIPPrefixResource", new()
{
    ResourceGroupName = "string",
    Geo = "string",
    ExtendedLocation = new AzureNative.Network.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    CommissionedState = "string",
    CustomIpPrefixName = "string",
    Id = "string",
    ExpressRouteAdvertise = false,
    Cidr = "string",
    Asn = "string",
    CustomIpPrefixParent = new AzureNative.Network.Inputs.SubResourceArgs
    {
        Id = "string",
    },
    Location = "string",
    NoInternetAdvertise = false,
    PrefixType = "string",
    AuthorizationMessage = "string",
    SignedMessage = "string",
    Tags = 
    {
        { "string", "string" },
    },
    Zones = new[]
    {
        "string",
    },
});
example, err := network.NewCustomIPPrefix(ctx, "customIPPrefixResource", &network.CustomIPPrefixArgs{
	ResourceGroupName: pulumi.String("string"),
	Geo:               pulumi.String("string"),
	ExtendedLocation: &network.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	CommissionedState:     pulumi.String("string"),
	CustomIpPrefixName:    pulumi.String("string"),
	Id:                    pulumi.String("string"),
	ExpressRouteAdvertise: pulumi.Bool(false),
	Cidr:                  pulumi.String("string"),
	Asn:                   pulumi.String("string"),
	CustomIpPrefixParent: &network.SubResourceArgs{
		Id: pulumi.String("string"),
	},
	Location:             pulumi.String("string"),
	NoInternetAdvertise:  pulumi.Bool(false),
	PrefixType:           pulumi.String("string"),
	AuthorizationMessage: pulumi.String("string"),
	SignedMessage:        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var customIPPrefixResource = new CustomIPPrefix("customIPPrefixResource", CustomIPPrefixArgs.builder()
    .resourceGroupName("string")
    .geo("string")
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .commissionedState("string")
    .customIpPrefixName("string")
    .id("string")
    .expressRouteAdvertise(false)
    .cidr("string")
    .asn("string")
    .customIpPrefixParent(SubResourceArgs.builder()
        .id("string")
        .build())
    .location("string")
    .noInternetAdvertise(false)
    .prefixType("string")
    .authorizationMessage("string")
    .signedMessage("string")
    .tags(Map.of("string", "string"))
    .zones("string")
    .build());
custom_ip_prefix_resource = azure_native.network.CustomIPPrefix("customIPPrefixResource",
    resource_group_name="string",
    geo="string",
    extended_location={
        "name": "string",
        "type": "string",
    },
    commissioned_state="string",
    custom_ip_prefix_name="string",
    id="string",
    express_route_advertise=False,
    cidr="string",
    asn="string",
    custom_ip_prefix_parent={
        "id": "string",
    },
    location="string",
    no_internet_advertise=False,
    prefix_type="string",
    authorization_message="string",
    signed_message="string",
    tags={
        "string": "string",
    },
    zones=["string"])
const customIPPrefixResource = new azure_native.network.CustomIPPrefix("customIPPrefixResource", {
    resourceGroupName: "string",
    geo: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    commissionedState: "string",
    customIpPrefixName: "string",
    id: "string",
    expressRouteAdvertise: false,
    cidr: "string",
    asn: "string",
    customIpPrefixParent: {
        id: "string",
    },
    location: "string",
    noInternetAdvertise: false,
    prefixType: "string",
    authorizationMessage: "string",
    signedMessage: "string",
    tags: {
        string: "string",
    },
    zones: ["string"],
});
type: azure-native:network:CustomIPPrefix
properties:
    asn: string
    authorizationMessage: string
    cidr: string
    commissionedState: string
    customIpPrefixName: string
    customIpPrefixParent:
        id: string
    expressRouteAdvertise: false
    extendedLocation:
        name: string
        type: string
    geo: string
    id: string
    location: string
    noInternetAdvertise: false
    prefixType: string
    resourceGroupName: string
    signedMessage: string
    tags:
        string: string
    zones:
        - string
CustomIPPrefix 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 CustomIPPrefix resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group.
- Asn string
- The ASN for CIDR advertising. Should be an integer as string.
- string
- Authorization message for WAN validation.
- Cidr string
- The prefix range in CIDR notation. Should include the start address and the prefix length.
- CommissionedState string | Pulumi.Azure Native. Network. Commissioned State 
- The commissioned state of the Custom IP Prefix.
- CustomIp stringPrefix Name 
- The name of the custom IP prefix.
- CustomIp Pulumi.Prefix Parent Azure Native. Network. Inputs. Sub Resource 
- The Parent CustomIpPrefix for IPv6 /64 CustomIpPrefix.
- ExpressRoute boolAdvertise 
- Whether to do express route advertise.
- ExtendedLocation Pulumi.Azure Native. Network. Inputs. Extended Location 
- The extended location of the custom IP prefix.
- Geo
string | Pulumi.Azure Native. Network. Geo 
- The Geo for CIDR advertising. Should be an Geo code.
- Id string
- Resource ID.
- Location string
- Resource location.
- NoInternet boolAdvertise 
- Whether to Advertise the range to Internet.
- PrefixType string | Pulumi.Azure Native. Network. Custom Ip Prefix Type 
- Type of custom IP prefix. Should be Singular, Parent, or Child.
- SignedMessage string
- Signed message for WAN validation.
- Dictionary<string, string>
- Resource tags.
- Zones List<string>
- A list of availability zones denoting the IP allocated for the resource needs to come from.
- ResourceGroup stringName 
- The name of the resource group.
- Asn string
- The ASN for CIDR advertising. Should be an integer as string.
- string
- Authorization message for WAN validation.
- Cidr string
- The prefix range in CIDR notation. Should include the start address and the prefix length.
- CommissionedState string | CommissionedState 
- The commissioned state of the Custom IP Prefix.
- CustomIp stringPrefix Name 
- The name of the custom IP prefix.
- CustomIp SubPrefix Parent Resource Args 
- The Parent CustomIpPrefix for IPv6 /64 CustomIpPrefix.
- ExpressRoute boolAdvertise 
- Whether to do express route advertise.
- ExtendedLocation ExtendedLocation Args 
- The extended location of the custom IP prefix.
- Geo string | Geo
- The Geo for CIDR advertising. Should be an Geo code.
- Id string
- Resource ID.
- Location string
- Resource location.
- NoInternet boolAdvertise 
- Whether to Advertise the range to Internet.
- PrefixType string | CustomIp Prefix Type 
- Type of custom IP prefix. Should be Singular, Parent, or Child.
- SignedMessage string
- Signed message for WAN validation.
- map[string]string
- Resource tags.
- Zones []string
- A list of availability zones denoting the IP allocated for the resource needs to come from.
- resourceGroup StringName 
- The name of the resource group.
- asn String
- The ASN for CIDR advertising. Should be an integer as string.
- String
- Authorization message for WAN validation.
- cidr String
- The prefix range in CIDR notation. Should include the start address and the prefix length.
- commissionedState String | CommissionedState 
- The commissioned state of the Custom IP Prefix.
- customIp StringPrefix Name 
- The name of the custom IP prefix.
- customIp SubPrefix Parent Resource 
- The Parent CustomIpPrefix for IPv6 /64 CustomIpPrefix.
- expressRoute BooleanAdvertise 
- Whether to do express route advertise.
- extendedLocation ExtendedLocation 
- The extended location of the custom IP prefix.
- geo String | Geo
- The Geo for CIDR advertising. Should be an Geo code.
- id String
- Resource ID.
- location String
- Resource location.
- noInternet BooleanAdvertise 
- Whether to Advertise the range to Internet.
- prefixType String | CustomIp Prefix Type 
- Type of custom IP prefix. Should be Singular, Parent, or Child.
- signedMessage String
- Signed message for WAN validation.
- Map<String,String>
- Resource tags.
- zones List<String>
- A list of availability zones denoting the IP allocated for the resource needs to come from.
- resourceGroup stringName 
- The name of the resource group.
- asn string
- The ASN for CIDR advertising. Should be an integer as string.
- string
- Authorization message for WAN validation.
- cidr string
- The prefix range in CIDR notation. Should include the start address and the prefix length.
- commissionedState string | CommissionedState 
- The commissioned state of the Custom IP Prefix.
- customIp stringPrefix Name 
- The name of the custom IP prefix.
- customIp SubPrefix Parent Resource 
- The Parent CustomIpPrefix for IPv6 /64 CustomIpPrefix.
- expressRoute booleanAdvertise 
- Whether to do express route advertise.
- extendedLocation ExtendedLocation 
- The extended location of the custom IP prefix.
- geo string | Geo
- The Geo for CIDR advertising. Should be an Geo code.
- id string
- Resource ID.
- location string
- Resource location.
- noInternet booleanAdvertise 
- Whether to Advertise the range to Internet.
- prefixType string | CustomIp Prefix Type 
- Type of custom IP prefix. Should be Singular, Parent, or Child.
- signedMessage string
- Signed message for WAN validation.
- {[key: string]: string}
- Resource tags.
- zones string[]
- A list of availability zones denoting the IP allocated for the resource needs to come from.
- resource_group_ strname 
- The name of the resource group.
- asn str
- The ASN for CIDR advertising. Should be an integer as string.
- str
- Authorization message for WAN validation.
- cidr str
- The prefix range in CIDR notation. Should include the start address and the prefix length.
- commissioned_state str | CommissionedState 
- The commissioned state of the Custom IP Prefix.
- custom_ip_ strprefix_ name 
- The name of the custom IP prefix.
- custom_ip_ Subprefix_ parent Resource Args 
- The Parent CustomIpPrefix for IPv6 /64 CustomIpPrefix.
- express_route_ booladvertise 
- Whether to do express route advertise.
- extended_location ExtendedLocation Args 
- The extended location of the custom IP prefix.
- geo str | Geo
- The Geo for CIDR advertising. Should be an Geo code.
- id str
- Resource ID.
- location str
- Resource location.
- no_internet_ booladvertise 
- Whether to Advertise the range to Internet.
- prefix_type str | CustomIp Prefix Type 
- Type of custom IP prefix. Should be Singular, Parent, or Child.
- signed_message str
- Signed message for WAN validation.
- Mapping[str, str]
- Resource tags.
- zones Sequence[str]
- A list of availability zones denoting the IP allocated for the resource needs to come from.
- resourceGroup StringName 
- The name of the resource group.
- asn String
- The ASN for CIDR advertising. Should be an integer as string.
- String
- Authorization message for WAN validation.
- cidr String
- The prefix range in CIDR notation. Should include the start address and the prefix length.
- commissionedState String | "Provisioning" | "Provisioned" | "Commissioning" | "CommissionedNo Internet Advertise" | "Commissioned" | "Decommissioning" | "Deprovisioning" | "Deprovisioned" 
- The commissioned state of the Custom IP Prefix.
- customIp StringPrefix Name 
- The name of the custom IP prefix.
- customIp Property MapPrefix Parent 
- The Parent CustomIpPrefix for IPv6 /64 CustomIpPrefix.
- expressRoute BooleanAdvertise 
- Whether to do express route advertise.
- extendedLocation Property Map
- The extended location of the custom IP prefix.
- geo String | "GLOBAL" | "AFRI" | "APAC" | "EURO" | "LATAM" | "NAM" | "ME" | "OCEANIA" | "AQ"
- The Geo for CIDR advertising. Should be an Geo code.
- id String
- Resource ID.
- location String
- Resource location.
- noInternet BooleanAdvertise 
- Whether to Advertise the range to Internet.
- prefixType String | "Singular" | "Parent" | "Child"
- Type of custom IP prefix. Should be Singular, Parent, or Child.
- signedMessage String
- Signed message for WAN validation.
- Map<String>
- Resource tags.
- zones List<String>
- A list of availability zones denoting the IP allocated for the resource needs to come from.
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomIPPrefix resource produces the following output properties:
- ChildCustom List<Pulumi.Ip Prefixes Azure Native. Network. Outputs. Sub Resource Response> 
- The list of all Children for IPv6 /48 CustomIpPrefix.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- FailedReason string
- The reason why resource is in failed state.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- ProvisioningState string
- The provisioning state of the custom IP prefix resource.
- PublicIp List<Pulumi.Prefixes Azure Native. Network. Outputs. Sub Resource Response> 
- The list of all referenced PublicIpPrefixes.
- ResourceGuid string
- The resource GUID property of the custom IP prefix resource.
- Type string
- Resource type.
- ChildCustom []SubIp Prefixes Resource Response 
- The list of all Children for IPv6 /48 CustomIpPrefix.
- Etag string
- A unique read-only string that changes whenever the resource is updated.
- FailedReason string
- The reason why resource is in failed state.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- ProvisioningState string
- The provisioning state of the custom IP prefix resource.
- PublicIp []SubPrefixes Resource Response 
- The list of all referenced PublicIpPrefixes.
- ResourceGuid string
- The resource GUID property of the custom IP prefix resource.
- Type string
- Resource type.
- childCustom List<SubIp Prefixes Resource Response> 
- The list of all Children for IPv6 /48 CustomIpPrefix.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- failedReason String
- The reason why resource is in failed state.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioningState String
- The provisioning state of the custom IP prefix resource.
- publicIp List<SubPrefixes Resource Response> 
- The list of all referenced PublicIpPrefixes.
- resourceGuid String
- The resource GUID property of the custom IP prefix resource.
- type String
- Resource type.
- childCustom SubIp Prefixes Resource Response[] 
- The list of all Children for IPv6 /48 CustomIpPrefix.
- etag string
- A unique read-only string that changes whenever the resource is updated.
- failedReason string
- The reason why resource is in failed state.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- provisioningState string
- The provisioning state of the custom IP prefix resource.
- publicIp SubPrefixes Resource Response[] 
- The list of all referenced PublicIpPrefixes.
- resourceGuid string
- The resource GUID property of the custom IP prefix resource.
- type string
- Resource type.
- child_custom_ Sequence[Subip_ prefixes Resource Response] 
- The list of all Children for IPv6 /48 CustomIpPrefix.
- etag str
- A unique read-only string that changes whenever the resource is updated.
- failed_reason str
- The reason why resource is in failed state.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- provisioning_state str
- The provisioning state of the custom IP prefix resource.
- public_ip_ Sequence[Subprefixes Resource Response] 
- The list of all referenced PublicIpPrefixes.
- resource_guid str
- The resource GUID property of the custom IP prefix resource.
- type str
- Resource type.
- childCustom List<Property Map>Ip Prefixes 
- The list of all Children for IPv6 /48 CustomIpPrefix.
- etag String
- A unique read-only string that changes whenever the resource is updated.
- failedReason String
- The reason why resource is in failed state.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioningState String
- The provisioning state of the custom IP prefix resource.
- publicIp List<Property Map>Prefixes 
- The list of all referenced PublicIpPrefixes.
- resourceGuid String
- The resource GUID property of the custom IP prefix resource.
- type String
- Resource type.
Supporting Types
CommissionedState, CommissionedStateArgs    
- Provisioning
- Provisioning
- Provisioned
- Provisioned
- Commissioning
- Commissioning
- CommissionedNo Internet Advertise 
- CommissionedNoInternetAdvertise
- Commissioned
- Commissioned
- Decommissioning
- Decommissioning
- Deprovisioning
- Deprovisioning
- Deprovisioned
- Deprovisioned
- CommissionedState Provisioning 
- Provisioning
- CommissionedState Provisioned 
- Provisioned
- CommissionedState Commissioning 
- Commissioning
- CommissionedState Commissioned No Internet Advertise 
- CommissionedNoInternetAdvertise
- CommissionedState Commissioned 
- Commissioned
- CommissionedState Decommissioning 
- Decommissioning
- CommissionedState Deprovisioning 
- Deprovisioning
- CommissionedState Deprovisioned 
- Deprovisioned
- Provisioning
- Provisioning
- Provisioned
- Provisioned
- Commissioning
- Commissioning
- CommissionedNo Internet Advertise 
- CommissionedNoInternetAdvertise
- Commissioned
- Commissioned
- Decommissioning
- Decommissioning
- Deprovisioning
- Deprovisioning
- Deprovisioned
- Deprovisioned
- Provisioning
- Provisioning
- Provisioned
- Provisioned
- Commissioning
- Commissioning
- CommissionedNo Internet Advertise 
- CommissionedNoInternetAdvertise
- Commissioned
- Commissioned
- Decommissioning
- Decommissioning
- Deprovisioning
- Deprovisioning
- Deprovisioned
- Deprovisioned
- PROVISIONING
- Provisioning
- PROVISIONED
- Provisioned
- COMMISSIONING
- Commissioning
- COMMISSIONED_NO_INTERNET_ADVERTISE
- CommissionedNoInternetAdvertise
- COMMISSIONED
- Commissioned
- DECOMMISSIONING
- Decommissioning
- DEPROVISIONING
- Deprovisioning
- DEPROVISIONED
- Deprovisioned
- "Provisioning"
- Provisioning
- "Provisioned"
- Provisioned
- "Commissioning"
- Commissioning
- "CommissionedNo Internet Advertise" 
- CommissionedNoInternetAdvertise
- "Commissioned"
- Commissioned
- "Decommissioning"
- Decommissioning
- "Deprovisioning"
- Deprovisioning
- "Deprovisioned"
- Deprovisioned
CustomIpPrefixType, CustomIpPrefixTypeArgs        
- Singular
- Singular
- Parent
- Parent
- Child
- Child
- CustomIp Prefix Type Singular 
- Singular
- CustomIp Prefix Type Parent 
- Parent
- CustomIp Prefix Type Child 
- Child
- Singular
- Singular
- Parent
- Parent
- Child
- Child
- Singular
- Singular
- Parent
- Parent
- Child
- Child
- SINGULAR
- Singular
- PARENT
- Parent
- CHILD
- Child
- "Singular"
- Singular
- "Parent"
- Parent
- "Child"
- Child
ExtendedLocation, ExtendedLocationArgs    
- Name string
- The name of the extended location.
- Type
string | Pulumi.Azure Native. Network. Extended Location Types 
- The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | ExtendedLocation Types 
- The type of the extended location.
- name string
- The name of the extended location.
- type
string | ExtendedLocation Types 
- The type of the extended location.
- name str
- The name of the extended location.
- type
str | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | "EdgeZone" 
- The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs      
ExtendedLocationTypes, ExtendedLocationTypesArgs      
- EdgeZone 
- EdgeZone
- ExtendedLocation Types Edge Zone 
- EdgeZone
- EdgeZone 
- EdgeZone
- EdgeZone 
- EdgeZone
- EDGE_ZONE
- EdgeZone
- "EdgeZone" 
- EdgeZone
Geo, GeoArgs  
- GLOBAL
- GLOBAL
- AFRI
- AFRI
- APAC
- APAC
- EURO
- EURO
- LATAM
- LATAM
- NAM
- NAM
- ME
- ME
- OCEANIA
- OCEANIA
- AQ
- AQ
- GeoGLOBAL 
- GLOBAL
- GeoAFRI 
- AFRI
- GeoAPAC 
- APAC
- GeoEURO 
- EURO
- GeoLATAM 
- LATAM
- GeoNAM 
- NAM
- GeoME 
- ME
- GeoOCEANIA 
- OCEANIA
- GeoAQ 
- AQ
- GLOBAL
- GLOBAL
- AFRI
- AFRI
- APAC
- APAC
- EURO
- EURO
- LATAM
- LATAM
- NAM
- NAM
- ME
- ME
- OCEANIA
- OCEANIA
- AQ
- AQ
- GLOBAL
- GLOBAL
- AFRI
- AFRI
- APAC
- APAC
- EURO
- EURO
- LATAM
- LATAM
- NAM
- NAM
- ME
- ME
- OCEANIA
- OCEANIA
- AQ
- AQ
- GLOBAL_
- GLOBAL
- AFRI
- AFRI
- APAC
- APAC
- EURO
- EURO
- LATAM
- LATAM
- NAM
- NAM
- ME
- ME
- OCEANIA
- OCEANIA
- AQ
- AQ
- "GLOBAL"
- GLOBAL
- "AFRI"
- AFRI
- "APAC"
- APAC
- "EURO"
- EURO
- "LATAM"
- LATAM
- "NAM"
- NAM
- "ME"
- ME
- "OCEANIA"
- OCEANIA
- "AQ"
- AQ
SubResource, SubResourceArgs    
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- Id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id string
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id str
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
- id String
- Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
SubResourceResponse, SubResourceResponseArgs      
- Id string
- Resource ID.
- Id string
- Resource ID.
- id String
- Resource ID.
- id string
- Resource ID.
- id str
- Resource ID.
- id String
- Resource ID.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:network:CustomIPPrefix test-customipprefix /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/customIpPrefixes/{customIpPrefixName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0