Quotas - Get
Retourneert het aangevraagde rekenquotum.
Haal een bestaand rekenquotum op.
GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Compute.Admin/locations/{location}/quotas/{quotaName}?api-version=2018-02-09
URI-parameters
Name | In | Vereist | Type | Description |
---|---|---|---|---|
location
|
path | True |
string |
Locatie van de resource. |
quota
|
path | True |
string |
Naam van het quotum. |
subscription
|
path | True |
string |
Abonnementsreferenties waarmee het Microsoft Azure-abonnement uniek wordt geïdentificeerd. De abonnements-id maakt deel uit van de URI voor elke service-aanroep. |
api-version
|
query | True |
string |
De API-versie die voor deze bewerking moet worden gebruikt. |
Antwoorden
Name | Type | Description |
---|---|---|
200 OK |
OK |
Beveiliging
azure_auth
Autorisatie maakt gebruik van een Azure Active Directory OAuth2-stroom.
Type:
oauth2
Stroom:
implicit
Autorisatie-URL:
https://login.microsoftonline.com/common/oauth2/authorize
Bereiken
Name | Description |
---|---|
user_impersonation | Uw gebruikersaccount imiteren |
Voorbeelden
Get an existing Compute Quota.
Voorbeeldaanvraag
GET https://management.azure.com/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete?api-version=2018-02-09
Voorbeeldrespons
{
"id": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/quotas/testQuotaCreateUpdateDelete",
"name": "testQuotaCreateUpdateDelete",
"type": "Microsoft.Compute.Admin/quotas",
"location": "local",
"properties": {
"virtualMachineCount": 1,
"coresLimit": 1,
"availabilitySetCount": 1,
"vmScaleSetCount": 1,
"maxAllocationStandardManagedDisksAndSnapshots": 1024,
"maxAllocationPremiumManagedDisksAndSnapshots": 1024
}
}
Definities
Quota
Bevat rekenquotumgegevens die worden gebruikt om de toewijzing van resources te beheren.
Name | Type | Description |
---|---|---|
id |
string |
Id van de resource. |
location |
string |
Locatie van de resource. |
name |
string |
De naam van de resource. |
properties.availabilitySetCount |
integer |
Maximum aantal toegestane beschikbaarheidssets. |
properties.coresLimit |
integer |
Maximum aantal toegestane kernen. |
properties.maxAllocationPremiumManagedDisksAndSnapshots |
integer |
Maximum aantal beheerde schijven en momentopnamen van het type Premium is toegestaan. |
properties.maxAllocationStandardManagedDisksAndSnapshots |
integer |
Maximum aantal beheerde schijven en momentopnamen van het type standaard toegestaan. |
properties.virtualMachineCount |
integer |
Maximum aantal toegestane virtuele machines. |
properties.vmScaleSetCount |
integer |
Maximum aantal toegestane schaalsets. |
type |
string |
Type of Resource. |