Creates or updates a static or dynamic public IP prefix.
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/publicIPPrefixes/{publicIpPrefixName}?api-version=2024-03-01
URI Parameters
Name |
In |
Required |
Type |
Description |
publicIpPrefixName
|
path |
True
|
string
|
The name of the public IP prefix.
|
resourceGroupName
|
path |
True
|
string
|
The name of the resource group.
|
subscriptionId
|
path |
True
|
string
|
The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
api-version
|
query |
True
|
string
|
Client API version.
|
Request Body
Name |
Type |
Description |
extendedLocation
|
ExtendedLocation
|
The extended location of the public ip address.
|
id
|
string
|
Resource ID.
|
location
|
string
|
Resource location.
|
properties.customIPPrefix
|
SubResource
|
The customIpPrefix that this prefix is associated with.
|
properties.ipTags
|
IpTag[]
|
The list of tags associated with the public IP prefix.
|
properties.natGateway
|
NatGateway
|
NatGateway of Public IP Prefix.
|
properties.prefixLength
|
integer
|
The Length of the Public IP Prefix.
|
properties.publicIPAddressVersion
|
IPVersion
|
The public IP address version.
|
sku
|
PublicIPPrefixSku
|
The public IP prefix SKU.
|
tags
|
object
|
Resource tags.
|
zones
|
string[]
|
A list of availability zones denoting the IP allocated for the resource needs to come from.
|
Responses
Name |
Type |
Description |
200 OK
|
PublicIPPrefix
|
Update successful. The operation returns the resulting PublicIPPrefix resource.
|
201 Created
|
PublicIPPrefix
|
Create successful. The operation returns the resulting PublicIPPrefix resource.
|
Other Status Codes
|
CloudError
|
Error response describing why the operation failed.
|
Security
azure_auth
Azure Active Directory OAuth2 Flow.
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
Name |
Description |
user_impersonation
|
impersonate your user account
|
Examples
Create public IP prefix allocation method
Sample request
PUT https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPPrefixes/test-ipprefix?api-version=2024-03-01
{
"location": "westus",
"properties": {
"publicIPAddressVersion": "IPv4",
"prefixLength": 30
},
"sku": {
"name": "Standard",
"tier": "Regional"
}
}
import com.azure.resourcemanager.network.fluent.models.PublicIpPrefixInner;
import com.azure.resourcemanager.network.models.IpVersion;
import com.azure.resourcemanager.network.models.PublicIpPrefixSku;
import com.azure.resourcemanager.network.models.PublicIpPrefixSkuName;
import com.azure.resourcemanager.network.models.PublicIpPrefixSkuTier;
/**
* Samples for PublicIpPrefixes CreateOrUpdate.
*/
public final class Main {
/*
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/
* PublicIpPrefixCreateCustomizedValues.json
*/
/**
* Sample code: Create public IP prefix allocation method.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void createPublicIPPrefixAllocationMethod(com.azure.resourcemanager.AzureResourceManager azure) {
azure.networks().manager().serviceClient().getPublicIpPrefixes().createOrUpdate("rg1", "test-ipprefix",
new PublicIpPrefixInner().withLocation("westus")
.withSku(new PublicIpPrefixSku().withName(PublicIpPrefixSkuName.STANDARD)
.withTier(PublicIpPrefixSkuTier.REGIONAL))
.withPublicIpAddressVersion(IpVersion.IPV4).withPrefixLength(30),
com.azure.core.util.Context.NONE);
}
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
from azure.identity import DefaultAzureCredential
from azure.mgmt.network import NetworkManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-network
# USAGE
python public_ip_prefix_create_customized_values.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = NetworkManagementClient(
credential=DefaultAzureCredential(),
subscription_id="subid",
)
response = client.public_ip_prefixes.begin_create_or_update(
resource_group_name="rg1",
public_ip_prefix_name="test-ipprefix",
parameters={
"location": "westus",
"properties": {"prefixLength": 30, "publicIPAddressVersion": "IPv4"},
"sku": {"name": "Standard", "tier": "Regional"},
},
).result()
print(response)
# x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/PublicIpPrefixCreateCustomizedValues.json
if __name__ == "__main__":
main()
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
package armnetwork_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v6"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/4883fa5dbf6f2c9093fac8ce334547e9dfac68fa/specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/PublicIpPrefixCreateCustomizedValues.json
func ExamplePublicIPPrefixesClient_BeginCreateOrUpdate_createPublicIpPrefixAllocationMethod() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armnetwork.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewPublicIPPrefixesClient().BeginCreateOrUpdate(ctx, "rg1", "test-ipprefix", armnetwork.PublicIPPrefix{
Location: to.Ptr("westus"),
Properties: &armnetwork.PublicIPPrefixPropertiesFormat{
PrefixLength: to.Ptr[int32](30),
PublicIPAddressVersion: to.Ptr(armnetwork.IPVersionIPv4),
},
SKU: &armnetwork.PublicIPPrefixSKU{
Name: to.Ptr(armnetwork.PublicIPPrefixSKUNameStandard),
Tier: to.Ptr(armnetwork.PublicIPPrefixSKUTierRegional),
},
}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res.PublicIPPrefix = armnetwork.PublicIPPrefix{
// Name: to.Ptr("test-ipprefix"),
// Type: to.Ptr("Microsoft.Network/publicIPPrefixes"),
// ID: to.Ptr("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPPrefixes/test-ipprefix"),
// Location: to.Ptr("westus"),
// Etag: to.Ptr("W/\"00000000-0000-0000-0000-00000000\""),
// Properties: &armnetwork.PublicIPPrefixPropertiesFormat{
// IPPrefix: to.Ptr("192.168.254.2/30"),
// IPTags: []*armnetwork.IPTag{
// },
// PrefixLength: to.Ptr[int32](30),
// ProvisioningState: to.Ptr(armnetwork.ProvisioningStateSucceeded),
// PublicIPAddressVersion: to.Ptr(armnetwork.IPVersionIPv4),
// ResourceGUID: to.Ptr("00000000-0000-0000-0000-00000000"),
// },
// SKU: &armnetwork.PublicIPPrefixSKU{
// Name: to.Ptr(armnetwork.PublicIPPrefixSKUNameStandard),
// Tier: to.Ptr(armnetwork.PublicIPPrefixSKUTierRegional),
// },
// Zones: []*string{
// to.Ptr("1")},
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const { NetworkManagementClient } = require("@azure/arm-network");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Creates or updates a static or dynamic public IP prefix.
*
* @summary Creates or updates a static or dynamic public IP prefix.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/PublicIpPrefixCreateCustomizedValues.json
*/
async function createPublicIPPrefixAllocationMethod() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
const resourceGroupName = process.env["NETWORK_RESOURCE_GROUP"] || "rg1";
const publicIpPrefixName = "test-ipprefix";
const parameters = {
location: "westus",
prefixLength: 30,
publicIPAddressVersion: "IPv4",
sku: { name: "Standard", tier: "Regional" },
};
const credential = new DefaultAzureCredential();
const client = new NetworkManagementClient(credential, subscriptionId);
const result = await client.publicIPPrefixes.beginCreateOrUpdateAndWait(
resourceGroupName,
publicIpPrefixName,
parameters,
);
console.log(result);
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
using Azure;
using Azure.ResourceManager;
using System;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Identity;
using Azure.ResourceManager.Network.Models;
using Azure.ResourceManager.Resources;
using Azure.ResourceManager.Network;
// Generated from example definition: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/PublicIpPrefixCreateCustomizedValues.json
// this example is just showing the usage of "PublicIPPrefixes_CreateOrUpdate" operation, for the dependent resources, they will have to be created separately.
// get your azure access token, for more details of how Azure SDK get your access token, please refer to https://zcusa.951200.xyz/en-us/dotnet/azure/sdk/authentication?tabs=command-line
TokenCredential cred = new DefaultAzureCredential();
// authenticate your client
ArmClient client = new ArmClient(cred);
// this example assumes you already have this ResourceGroupResource created on azure
// for more information of creating ResourceGroupResource, please refer to the document of ResourceGroupResource
string subscriptionId = "subid";
string resourceGroupName = "rg1";
ResourceIdentifier resourceGroupResourceId = ResourceGroupResource.CreateResourceIdentifier(subscriptionId, resourceGroupName);
ResourceGroupResource resourceGroupResource = client.GetResourceGroupResource(resourceGroupResourceId);
// get the collection of this PublicIPPrefixResource
PublicIPPrefixCollection collection = resourceGroupResource.GetPublicIPPrefixes();
// invoke the operation
string publicIPPrefixName = "test-ipprefix";
PublicIPPrefixData data = new PublicIPPrefixData()
{
Sku = new PublicIPPrefixSku()
{
Name = PublicIPPrefixSkuName.Standard,
Tier = PublicIPPrefixSkuTier.Regional,
},
PublicIPAddressVersion = NetworkIPVersion.IPv4,
PrefixLength = 30,
Location = new AzureLocation("westus"),
};
ArmOperation<PublicIPPrefixResource> lro = await collection.CreateOrUpdateAsync(WaitUntil.Completed, publicIPPrefixName, data);
PublicIPPrefixResource result = lro.Value;
// the variable result is a resource, you could call other operations on this instance as well
// but just for demo, we get its data from this resource instance
PublicIPPrefixData resourceData = result.Data;
// for demo we just print out the id
Console.WriteLine($"Succeeded on id: {resourceData.Id}");
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
Sample response
{
"name": "test-ipprefix",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPPrefixes/test-ipprefix",
"etag": "W/\"00000000-0000-0000-0000-00000000\"",
"location": "westus",
"zones": [
"1"
],
"properties": {
"provisioningState": "Succeeded",
"resourceGuid": "00000000-0000-0000-0000-00000000",
"publicIPAddressVersion": "IPv4",
"prefixLength": 30,
"ipPrefix": "192.168.254.2/30",
"ipTags": []
},
"sku": {
"name": "Standard",
"tier": "Regional"
},
"type": "Microsoft.Network/publicIPPrefixes"
}
{
"name": "test-ipprefix",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPAddresses/test-ipprefix",
"etag": "W/\"00000000-0000-0000-0000-00000000\"",
"location": "westus",
"zones": [
"1"
],
"properties": {
"provisioningState": "Succeeded",
"resourceGuid": "00000000-0000-0000-0000-00000000",
"publicIPAddressVersion": "IPv4",
"prefixLength": 30,
"ipPrefix": "192.168.254.2/30",
"ipTags": []
},
"sku": {
"name": "Standard",
"tier": "Regional"
},
"type": "Microsoft.Network/publicIPPrefixes"
}
Create public IP prefix defaults
Sample request
PUT https://management.azure.com/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPPrefixes/test-ipprefix?api-version=2024-03-01
{
"location": "westus",
"properties": {
"prefixLength": 30
},
"sku": {
"name": "Standard"
}
}
import com.azure.resourcemanager.network.fluent.models.PublicIpPrefixInner;
import com.azure.resourcemanager.network.models.PublicIpPrefixSku;
import com.azure.resourcemanager.network.models.PublicIpPrefixSkuName;
/**
* Samples for PublicIpPrefixes CreateOrUpdate.
*/
public final class Main {
/*
* x-ms-original-file:
* specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/PublicIpPrefixCreateDefaults.
* json
*/
/**
* Sample code: Create public IP prefix defaults.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void createPublicIPPrefixDefaults(com.azure.resourcemanager.AzureResourceManager azure) {
azure.networks().manager().serviceClient().getPublicIpPrefixes().createOrUpdate("rg1", "test-ipprefix",
new PublicIpPrefixInner().withLocation("westus")
.withSku(new PublicIpPrefixSku().withName(PublicIpPrefixSkuName.STANDARD)).withPrefixLength(30),
com.azure.core.util.Context.NONE);
}
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
from azure.identity import DefaultAzureCredential
from azure.mgmt.network import NetworkManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-network
# USAGE
python public_ip_prefix_create_defaults.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = NetworkManagementClient(
credential=DefaultAzureCredential(),
subscription_id="subid",
)
response = client.public_ip_prefixes.begin_create_or_update(
resource_group_name="rg1",
public_ip_prefix_name="test-ipprefix",
parameters={"location": "westus", "properties": {"prefixLength": 30}, "sku": {"name": "Standard"}},
).result()
print(response)
# x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/PublicIpPrefixCreateDefaults.json
if __name__ == "__main__":
main()
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
package armnetwork_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork/v6"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/4883fa5dbf6f2c9093fac8ce334547e9dfac68fa/specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/PublicIpPrefixCreateDefaults.json
func ExamplePublicIPPrefixesClient_BeginCreateOrUpdate_createPublicIpPrefixDefaults() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armnetwork.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewPublicIPPrefixesClient().BeginCreateOrUpdate(ctx, "rg1", "test-ipprefix", armnetwork.PublicIPPrefix{
Location: to.Ptr("westus"),
Properties: &armnetwork.PublicIPPrefixPropertiesFormat{
PrefixLength: to.Ptr[int32](30),
},
SKU: &armnetwork.PublicIPPrefixSKU{
Name: to.Ptr(armnetwork.PublicIPPrefixSKUNameStandard),
},
}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res.PublicIPPrefix = armnetwork.PublicIPPrefix{
// Name: to.Ptr("test-ipprefix"),
// Type: to.Ptr("Microsoft.Network/publicIPPrefixes"),
// ID: to.Ptr("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPPrefixes/test-ipprefix"),
// Location: to.Ptr("westus"),
// Etag: to.Ptr("W/\"00000000-0000-0000-0000-00000000\""),
// Properties: &armnetwork.PublicIPPrefixPropertiesFormat{
// IPPrefix: to.Ptr("192.168.254.2/30"),
// IPTags: []*armnetwork.IPTag{
// },
// PrefixLength: to.Ptr[int32](30),
// ProvisioningState: to.Ptr(armnetwork.ProvisioningStateSucceeded),
// PublicIPAddressVersion: to.Ptr(armnetwork.IPVersionIPv4),
// ResourceGUID: to.Ptr("00000000-0000-0000-0000-00000000"),
// },
// SKU: &armnetwork.PublicIPPrefixSKU{
// Name: to.Ptr(armnetwork.PublicIPPrefixSKUNameStandard),
// },
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const { NetworkManagementClient } = require("@azure/arm-network");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Creates or updates a static or dynamic public IP prefix.
*
* @summary Creates or updates a static or dynamic public IP prefix.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/PublicIpPrefixCreateDefaults.json
*/
async function createPublicIPPrefixDefaults() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
const resourceGroupName = process.env["NETWORK_RESOURCE_GROUP"] || "rg1";
const publicIpPrefixName = "test-ipprefix";
const parameters = {
location: "westus",
prefixLength: 30,
sku: { name: "Standard" },
};
const credential = new DefaultAzureCredential();
const client = new NetworkManagementClient(credential, subscriptionId);
const result = await client.publicIPPrefixes.beginCreateOrUpdateAndWait(
resourceGroupName,
publicIpPrefixName,
parameters,
);
console.log(result);
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
using Azure;
using Azure.ResourceManager;
using System;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Identity;
using Azure.ResourceManager.Network.Models;
using Azure.ResourceManager.Resources;
using Azure.ResourceManager.Network;
// Generated from example definition: specification/network/resource-manager/Microsoft.Network/stable/2024-03-01/examples/PublicIpPrefixCreateDefaults.json
// this example is just showing the usage of "PublicIPPrefixes_CreateOrUpdate" operation, for the dependent resources, they will have to be created separately.
// get your azure access token, for more details of how Azure SDK get your access token, please refer to https://zcusa.951200.xyz/en-us/dotnet/azure/sdk/authentication?tabs=command-line
TokenCredential cred = new DefaultAzureCredential();
// authenticate your client
ArmClient client = new ArmClient(cred);
// this example assumes you already have this ResourceGroupResource created on azure
// for more information of creating ResourceGroupResource, please refer to the document of ResourceGroupResource
string subscriptionId = "subid";
string resourceGroupName = "rg1";
ResourceIdentifier resourceGroupResourceId = ResourceGroupResource.CreateResourceIdentifier(subscriptionId, resourceGroupName);
ResourceGroupResource resourceGroupResource = client.GetResourceGroupResource(resourceGroupResourceId);
// get the collection of this PublicIPPrefixResource
PublicIPPrefixCollection collection = resourceGroupResource.GetPublicIPPrefixes();
// invoke the operation
string publicIPPrefixName = "test-ipprefix";
PublicIPPrefixData data = new PublicIPPrefixData()
{
Sku = new PublicIPPrefixSku()
{
Name = PublicIPPrefixSkuName.Standard,
},
PrefixLength = 30,
Location = new AzureLocation("westus"),
};
ArmOperation<PublicIPPrefixResource> lro = await collection.CreateOrUpdateAsync(WaitUntil.Completed, publicIPPrefixName, data);
PublicIPPrefixResource result = lro.Value;
// the variable result is a resource, you could call other operations on this instance as well
// but just for demo, we get its data from this resource instance
PublicIPPrefixData resourceData = result.Data;
// for demo we just print out the id
Console.WriteLine($"Succeeded on id: {resourceData.Id}");
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
Sample response
{
"name": "test-ipprefix",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPPrefixes/test-ipprefix",
"etag": "W/\"00000000-0000-0000-0000-00000000\"",
"location": "westus",
"properties": {
"provisioningState": "Succeeded",
"resourceGuid": "00000000-0000-0000-0000-00000000",
"publicIPAddressVersion": "IPv4",
"prefixLength": 30,
"ipPrefix": "192.168.254.2/30",
"ipTags": []
},
"sku": {
"name": "Standard"
},
"type": "Microsoft.Network/publicIPPrefixes"
}
{
"name": "test-ipprefix",
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/publicIPPrefixes/test-ipprefix",
"etag": "W/\"00000000-0000-0000-0000-00000000\"",
"location": "westus",
"properties": {
"provisioningState": "Succeeded",
"resourceGuid": "00000000-0000-0000-0000-00000000",
"publicIPAddressVersion": "IPv4",
"prefixLength": 30,
"ipPrefix": "192.168.254.2/30",
"ipTags": []
},
"sku": {
"name": "Standard"
},
"type": "Microsoft.Network/publicIPPrefixes"
}
Definitions
CloudError
An error response from the service.
CloudErrorBody
An error response from the service.
Name |
Type |
Description |
code
|
string
|
An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
|
details
|
CloudErrorBody[]
|
A list of additional details about the error.
|
message
|
string
|
A message describing the error, intended to be suitable for display in a user interface.
|
target
|
string
|
The target of the particular error. For example, the name of the property in error.
|
ExtendedLocation
ExtendedLocation complex type.
Name |
Type |
Description |
name
|
string
|
The name of the extended location.
|
type
|
ExtendedLocationTypes
|
The type of the extended location.
|
ExtendedLocationTypes
The type of the extended location.
Name |
Type |
Description |
EdgeZone
|
string
|
|
IpTag
Contains the IpTag associated with the object.
Name |
Type |
Description |
ipTagType
|
string
|
The IP tag type. Example: FirstPartyUsage.
|
tag
|
string
|
The value of the IP tag associated with the public IP. Example: SQL.
|
IPVersion
IP address version.
Name |
Type |
Description |
IPv4
|
string
|
|
IPv6
|
string
|
|
NatGateway
Nat Gateway resource.
Name |
Type |
Description |
etag
|
string
|
A unique read-only string that changes whenever the resource is updated.
|
id
|
string
|
Resource ID.
|
location
|
string
|
Resource location.
|
name
|
string
|
Resource name.
|
properties.idleTimeoutInMinutes
|
integer
|
The idle timeout of the nat gateway.
|
properties.provisioningState
|
ProvisioningState
|
The provisioning state of the NAT gateway resource.
|
properties.publicIpAddresses
|
SubResource[]
|
An array of public ip addresses associated with the nat gateway resource.
|
properties.publicIpPrefixes
|
SubResource[]
|
An array of public ip prefixes associated with the nat gateway resource.
|
properties.resourceGuid
|
string
|
The resource GUID property of the NAT gateway resource.
|
properties.subnets
|
SubResource[]
|
An array of references to the subnets using this nat gateway resource.
|
sku
|
NatGatewaySku
|
The nat gateway SKU.
|
tags
|
object
|
Resource tags.
|
type
|
string
|
Resource type.
|
zones
|
string[]
|
A list of availability zones denoting the zone in which Nat Gateway should be deployed.
|
NatGatewaySku
SKU of nat gateway.
NatGatewaySkuName
Name of Nat Gateway SKU.
Name |
Type |
Description |
Standard
|
string
|
|
ProvisioningState
The current provisioning state.
Name |
Type |
Description |
Deleting
|
string
|
|
Failed
|
string
|
|
Succeeded
|
string
|
|
Updating
|
string
|
|
PublicIPPrefix
Public IP prefix resource.
Name |
Type |
Description |
etag
|
string
|
A unique read-only string that changes whenever the resource is updated.
|
extendedLocation
|
ExtendedLocation
|
The extended location of the public ip address.
|
id
|
string
|
Resource ID.
|
location
|
string
|
Resource location.
|
name
|
string
|
Resource name.
|
properties.customIPPrefix
|
SubResource
|
The customIpPrefix that this prefix is associated with.
|
properties.ipPrefix
|
string
|
The allocated Prefix.
|
properties.ipTags
|
IpTag[]
|
The list of tags associated with the public IP prefix.
|
properties.loadBalancerFrontendIpConfiguration
|
SubResource
|
The reference to load balancer frontend IP configuration associated with the public IP prefix.
|
properties.natGateway
|
NatGateway
|
NatGateway of Public IP Prefix.
|
properties.prefixLength
|
integer
|
The Length of the Public IP Prefix.
|
properties.provisioningState
|
ProvisioningState
|
The provisioning state of the public IP prefix resource.
|
properties.publicIPAddressVersion
|
IPVersion
|
The public IP address version.
|
properties.publicIPAddresses
|
ReferencedPublicIpAddress[]
|
The list of all referenced PublicIPAddresses.
|
properties.resourceGuid
|
string
|
The resource GUID property of the public IP prefix resource.
|
sku
|
PublicIPPrefixSku
|
The public IP prefix SKU.
|
tags
|
object
|
Resource tags.
|
type
|
string
|
Resource type.
|
zones
|
string[]
|
A list of availability zones denoting the IP allocated for the resource needs to come from.
|
PublicIPPrefixSku
SKU of a public IP prefix.
PublicIPPrefixSkuName
Name of a public IP prefix SKU.
Name |
Type |
Description |
Standard
|
string
|
|
PublicIPPrefixSkuTier
Tier of a public IP prefix SKU.
Name |
Type |
Description |
Global
|
string
|
|
Regional
|
string
|
|
ReferencedPublicIpAddress
Reference to a public IP address.
Name |
Type |
Description |
id
|
string
|
The PublicIPAddress Reference.
|
SubResource
Reference to another subresource.
Name |
Type |
Description |
id
|
string
|
Resource ID.
|