Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
- neueste
- 2025-07-01
- 2025-05-01
- 2025-03-01
- 2025-01-01
- 2024-10-01
- 2024-07-01
- 2024-05-01
- 2024-03-01
- 2024-01-01
- 2023-11-01
- 2023-09-01
- 2023-06-01
- 2023-05-01
- 2023-04-01
- 2023-02-01
- 2022-11-01
- 2022-09-01
- 2022-07-01
- 2022-05-01
- 2022-01-01
- 2021-08-01
- 2021-05-01
- 2021-03-01
- 2021-02-01
- 2020-11-01
- 2020-08-01
- 2020-07-01
- 2020-06-01
- 2020-05-01
- 2020-04-01
- 2020-03-01
Bicep-Ressourcendefinition
Der Ressourcentyp "IpAllocations" kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:
- Ressourcengruppen – Siehe Ressourcengruppenbereitstellungsbefehle
Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie unter Änderungsprotokoll.
Ressourcenformat
Um eine Microsoft.Network/IpAllocations-Ressource zu erstellen, fügen Sie Ihrer Vorlage die folgende Bicep hinzu.
resource symbolicname 'Microsoft.Network/IpAllocations@2025-07-01' = {
location: 'string'
name: 'string'
properties: {
allocationTags: {
{customized property}: 'string'
}
ipamAllocationId: 'string'
prefix: 'string'
prefixLength: int
prefixType: 'string'
type: 'string'
}
tags: {
{customized property}: 'string'
}
}
Eigenschaftswerte
Microsoft.Network/IpAllocations
| Name | Beschreibung | Wert |
|---|---|---|
| Ort | Ressourcenspeicherort. | Schnur |
| Name | Der Ressourcenname | Zeichenfolge (erforderlich) |
| Eigenschaften | Eigenschaften der IpAllocation. | IpAllocationPropertiesFormat- |
| Schilder | Ressourcentags | Wörterbuch der Tagnamen und -werte. Siehe Tags in Vorlagen |
CommonResourceTags
| Name | Beschreibung | Wert |
|---|
IpAllocationPropertiesFormat
| Name | Beschreibung | Wert |
|---|---|---|
| Zuordnung-Tags | IpAllocation-Tags. | IpAllocationPropertiesFormatAllocationTags |
| ipamAllocationId | Die IPAM-Zuordnungs-ID. | Schnur |
| Präfix | Das Adresspräfix für ipAllocation. | Schnur |
| PräfixLänge | Die Länge des Adresspräfixs für die IpAllocation. | Int |
| prefixType | Der Adresspräfixtyp für die IpAllocation. | "IPv4" "IPv6" |
| Art | Der Typ für die IpAllocation. | "Hypernet" "Undefined" |
IpAllocationPropertiesFormatAllocationTags
| Name | Beschreibung | Wert |
|---|
ARM-Vorlagenressourcendefinition
Der Ressourcentyp "IpAllocations" kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:
- Ressourcengruppen – Siehe Ressourcengruppenbereitstellungsbefehle
Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie unter Änderungsprotokoll.
Ressourcenformat
Um eine Microsoft.Network/IpAllocations-Ressource zu erstellen, fügen Sie der Vorlage den folgenden JSON-Code hinzu.
{
"type": "Microsoft.Network/IpAllocations",
"apiVersion": "2025-07-01",
"name": "string",
"location": "string",
"properties": {
"allocationTags": {
"{customized property}": "string"
},
"ipamAllocationId": "string",
"prefix": "string",
"prefixLength": "int",
"prefixType": "string",
"type": "string"
},
"tags": {
"{customized property}": "string"
}
}
Eigenschaftswerte
Microsoft.Network/IpAllocations
| Name | Beschreibung | Wert |
|---|---|---|
| apiVersion (Englisch) | Die API-Version | '2025-07-01' |
| Ort | Ressourcenspeicherort. | Schnur |
| Name | Der Ressourcenname | Zeichenfolge (erforderlich) |
| Eigenschaften | Eigenschaften der IpAllocation. | IpAllocationPropertiesFormat- |
| Schilder | Ressourcentags | Wörterbuch der Tagnamen und -werte. Siehe Tags in Vorlagen |
| Art | Der Ressourcentyp | "Microsoft.Network/IpAllocations" |
CommonResourceTags
| Name | Beschreibung | Wert |
|---|
IpAllocationPropertiesFormat
| Name | Beschreibung | Wert |
|---|---|---|
| Zuordnung-Tags | IpAllocation-Tags. | IpAllocationPropertiesFormatAllocationTags |
| ipamAllocationId | Die IPAM-Zuordnungs-ID. | Schnur |
| Präfix | Das Adresspräfix für ipAllocation. | Schnur |
| PräfixLänge | Die Länge des Adresspräfixs für die IpAllocation. | Int |
| prefixType | Der Adresspräfixtyp für die IpAllocation. | "IPv4" "IPv6" |
| Art | Der Typ für die IpAllocation. | "Hypernet" "Undefined" |
IpAllocationPropertiesFormatAllocationTags
| Name | Beschreibung | Wert |
|---|
Verwendungsbeispiele
Terraform -Ressourcendefinition (AzAPI-Anbieter)
Der Ressourcentyp "IpAllocations" kann mit Vorgängen bereitgestellt werden, die auf Folgendes abzielen:
- Ressourcengruppen
Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie unter Änderungsprotokoll.
Ressourcenformat
Um eine Microsoft.Network/IpAllocations-Ressource zu erstellen, fügen Sie Ihrer Vorlage die folgende Terraform hinzu.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Network/IpAllocations@2025-07-01"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
allocationTags = {
{customized property} = "string"
}
ipamAllocationId = "string"
prefix = "string"
prefixLength = int
prefixType = "string"
type = "string"
}
}
}
Eigenschaftswerte
Microsoft.Network/IpAllocations
| Name | Beschreibung | Wert |
|---|---|---|
| Ort | Ressourcenspeicherort. | Schnur |
| Name | Der Ressourcenname | Zeichenfolge (erforderlich) |
| Eigenschaften | Eigenschaften der IpAllocation. | IpAllocationPropertiesFormat- |
| Schilder | Ressourcentags | Wörterbuch der Tagnamen und -werte. |
| Art | Der Ressourcentyp | "Microsoft. Netzwerk/IpAllocations@2025-07-01" |
CommonResourceTags
| Name | Beschreibung | Wert |
|---|
IpAllocationPropertiesFormat
| Name | Beschreibung | Wert |
|---|---|---|
| Zuordnung-Tags | IpAllocation-Tags. | IpAllocationPropertiesFormatAllocationTags |
| ipamAllocationId | Die IPAM-Zuordnungs-ID. | Schnur |
| Präfix | Das Adresspräfix für ipAllocation. | Schnur |
| PräfixLänge | Die Länge des Adresspräfixs für die IpAllocation. | Int |
| prefixType | Der Adresspräfixtyp für die IpAllocation. | "IPv4" "IPv6" |
| Art | Der Typ für die IpAllocation. | "Hypernet" "Undefined" |
IpAllocationPropertiesFormatAllocationTags
| Name | Beschreibung | Wert |
|---|