Ottiene tutte le deleghe subnet disponibili per questa sottoscrizione in questa area.
GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/availableDelegations?api-version=2024-05-01
Parametri dell'URI
Nome |
In |
Necessario |
Tipo |
Descrizione |
location
|
path |
True
|
string
|
Posizione della subnet.
|
subscriptionId
|
path |
True
|
string
|
Credenziali della sottoscrizione che identificano in modo univoco la sottoscrizione di Microsoft Azure. L'ID sottoscrizione fa parte dell'URI per ogni chiamata al servizio.
|
api-version
|
query |
True
|
string
|
Versione dell'API client.
|
Risposte
Nome |
Tipo |
Descrizione |
200 OK
|
AvailableDelegationsResult
|
Richiesta riuscita. Restituisce tutte le possibili deleghe per una subnet in questa sottoscrizione nell'area.
|
Other Status Codes
|
CloudError
|
Risposta di errore che descrive il motivo per cui l'operazione non è riuscita.
|
Sicurezza
azure_auth
Flusso OAuth2 di Azure Active Directory.
Tipo:
oauth2
Flow:
implicit
URL di autorizzazione:
https://login.microsoftonline.com/common/oauth2/authorize
Ambiti
Nome |
Descrizione |
user_impersonation
|
rappresentare l'account utente
|
Esempio
Get available delegations
Esempio di richiesta
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
Risposta di esempio
{
"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"
]
}
]
}
Definizioni
AvailableDelegation
Il serviceName di un oggetto AvailableDelegation indica una possibile delega per una subnet.
Nome |
Tipo |
Descrizione |
actions
|
string[]
|
Azioni consentite al servizio al momento della delega.
|
id
|
string
|
Identificatore univoco della risorsa AvailableDelegation.
|
name
|
string
|
Nome della risorsa AvailableDelegation.
|
serviceName
|
string
|
Nome del servizio e della risorsa.
|
type
|
string
|
Tipo di risorsa.
|
AvailableDelegationsResult
Matrice di deleghe disponibili.
Nome |
Tipo |
Descrizione |
nextLink
|
string
|
URL per ottenere il set di risultati successivo.
|
value
|
AvailableDelegation[]
|
Matrice di deleghe disponibili.
|
CloudError
Risposta di errore dal servizio.
CloudErrorBody
Risposta di errore dal servizio.
Nome |
Tipo |
Descrizione |
code
|
string
|
Identificatore dell'errore. I codici sono invarianti e devono essere utilizzati a livello di codice.
|
details
|
CloudErrorBody[]
|
Elenco di dettagli aggiuntivi sull'errore.
|
message
|
string
|
Messaggio che descrive l'errore, destinato a essere adatto per la visualizzazione in un'interfaccia utente.
|
target
|
string
|
Destinazione dell'errore specifico. Ad esempio, il nome della proprietà in errore.
|