Ruft alle verfügbaren Subnetzdelegierungen für dieses Abonnement in dieser Region ab.
GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availableDelegations?api-version=2024-05-01
URI-Parameter
Name |
In |
Erforderlich |
Typ |
Beschreibung |
location
|
path |
True
|
string
|
Der Speicherort des Subnetzes.
|
subscriptionId
|
path |
True
|
string
|
Die Abonnementanmeldeinformationen, die das Microsoft Azure-Abonnement eindeutig identifizieren. Die Abonnement-ID ist Teil des URI für jeden Dienstaufruf.
|
api-version
|
query |
True
|
string
|
Client-API-Version.
|
Antworten
Name |
Typ |
Beschreibung |
200 OK
|
AvailableDelegationsResult
|
Anforderung erfolgreich. Gibt alle möglichen Delegierungen für ein Subnetz in diesem Abonnement in der Region zurück.
|
Other Status Codes
|
CloudError
|
Fehlerantwort, die beschreibt, warum der Vorgang fehlgeschlagen ist.
|
Sicherheit
azure_auth
Azure Active Directory OAuth2-Fluss.
Typ:
oauth2
Ablauf:
implicit
Autorisierungs-URL:
https://login.microsoftonline.com/common/oauth2/authorize
Bereiche
Name |
Beschreibung |
user_impersonation
|
Identitätswechsel ihres Benutzerkontos
|
Beispiele
Get available delegations
Beispielanforderung
GET https://management.azure.com/subscriptions/subId/providers/Microsoft.Network/locations/westcentralus/availableDelegations?api-version=2024-05-01
/**
* Samples for AvailableDelegations List.
*/
public final class Main {
/*
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/
* AvailableDelegationsSubscriptionGet.json
*/
/**
* Sample code: Get available delegations.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void getAvailableDelegations(com.azure.resourcemanager.AzureResourceManager azure) {
azure.networks().manager().serviceClient().getAvailableDelegations().list("westcentralus",
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 available_delegations_subscription_get.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.available_delegations.list(
location="westcentralus",
)
for item in response:
print(item)
# x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/AvailableDelegationsSubscriptionGet.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/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/ab04533261eff228f28e08900445d0edef3eb70c/specification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/AvailableDelegationsSubscriptionGet.json
func ExampleAvailableDelegationsClient_NewListPager() {
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)
}
pager := clientFactory.NewAvailableDelegationsClient().NewListPager("westcentralus", nil)
for pager.More() {
page, err := pager.NextPage(ctx)
if err != nil {
log.Fatalf("failed to advance page: %v", err)
}
for _, v := range page.Value {
// You could use page here. We use blank identifier for just demo purposes.
_ = v
}
// If the HTTP response code is 200 as defined in example definition, your page structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// page.AvailableDelegationsResult = armnetwork.AvailableDelegationsResult{
// Value: []*armnetwork.AvailableDelegation{
// {
// Name: to.Ptr("Microsoft.Provider.resourceType"),
// Type: to.Ptr("Microsoft.Network/availableDelegations"),
// Actions: []*string{
// to.Ptr("Microsoft.Network/resource/action")},
// ID: to.Ptr("/subscriptions/subId/providers/Microsoft.Network/availableDelegations/Microsoft.Provider.resourceType"),
// ServiceName: to.Ptr("Microsoft.Provider/resourceType"),
// }},
// }
}
}
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 Gets all of the available subnet delegations for this subscription in this region.
*
* @summary Gets all of the available subnet delegations for this subscription in this region.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2024-05-01/examples/AvailableDelegationsSubscriptionGet.json
*/
async function getAvailableDelegations() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subId";
const location = "westcentralus";
const credential = new DefaultAzureCredential();
const client = new NetworkManagementClient(credential, subscriptionId);
const resArray = new Array();
for await (let item of client.availableDelegations.list(location)) {
resArray.push(item);
}
console.log(resArray);
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
Beispiel für eine Antwort
{
"value": [
{
"name": "Microsoft.Provider.resourceType",
"id": "/subscriptions/subId/providers/Microsoft.Network/availableDelegations/Microsoft.Provider.resourceType",
"type": "Microsoft.Network/availableDelegations",
"serviceName": "Microsoft.Provider/resourceType",
"actions": [
"Microsoft.Network/resource/action"
]
}
]
}
Definitionen
AvailableDelegation
Der ServiceName einer AvailableDelegation gibt eine mögliche Delegierung für ein Subnetz an.
Name |
Typ |
Beschreibung |
actions
|
string[]
|
Die Aktionen, die dem Dienst bei der Delegierung gestattet sind.
|
id
|
string
|
Ein eindeutiger Bezeichner der AvailableDelegation-Ressource.
|
name
|
string
|
Der Name der AvailableDelegation-Ressource.
|
serviceName
|
string
|
Der Name des Diensts und der Ressource.
|
type
|
string
|
Ressourcentyp.
|
AvailableDelegationsResult
Ein Array verfügbarer Delegierungen.
Name |
Typ |
Beschreibung |
nextLink
|
string
|
Die URL, um den nächsten Satz von Ergebnissen abzurufen.
|
value
|
AvailableDelegation[]
|
Ein Array verfügbarer Delegierungen.
|
CloudError
Eine Fehlerantwort des Diensts.
CloudErrorBody
Eine Fehlerantwort des Diensts.
Name |
Typ |
Beschreibung |
code
|
string
|
Ein Bezeichner für den Fehler. Codes sind unveränderlich und sollen programmgesteuert genutzt werden.
|
details
|
CloudErrorBody[]
|
Eine Liste mit zusätzlichen Details zum Fehler.
|
message
|
string
|
Eine Meldung, die den Fehler beschreibt, der für die Anzeige in einer Benutzeroberfläche geeignet ist.
|
target
|
string
|
Das Ziel des bestimmten Fehlers. Beispielsweise der Name der Eigenschaft im Fehler.
|