Quotas - List
すべてのコンピューティング クォータを一覧表示します。
既存のコンピューティング クォータの一覧を取得します。
GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Compute.Admin/locations/{location}/quotas?api-version=2018-02-09
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
location
|
path | True |
string |
リソースの場所。 |
subscription
|
path | True |
string |
Microsoft Azure サブスクリプションを一意に識別するサブスクリプション資格情報。 サブスクリプション ID は、すべてのサービス呼び出しの URI の一部を形成します。 |
api-version
|
query | True |
string minLength: 1 |
この操作に使用する API バージョン。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
わかりました |
セキュリティ
azure_auth
承認では、Azure Active Directory OAuth2 フローが使用されます。
型:
oauth2
フロー:
implicit
Authorization URL (承認 URL):
https://login.microsoftonline.com/common/oauth2/authorize
スコープ
名前 | 説明 |
---|---|
user_impersonation | ユーザー アカウントを偽装する |
例
Get a list of existing Compute quotas.
要求のサンプル
GET https://management.azure.com/subscriptions/20ff7fc3-e762-44dd-bd96-b71116dcdc23/providers/Microsoft.Compute.Admin/locations/local/quotas?api-version=2018-02-09
応答のサンプル
{
"value": [
{
"id": "/subscriptions/8158498d-27b1-4ccf-9aa1-de0f925731e6/providers/Microsoft.Compute.Admin/locations/local/quotas/Default Quota",
"name": "Default Quota",
"type": "Microsoft.Compute.Admin/quotas",
"location": "local",
"properties": {
"virtualMachineCount": 20,
"coresLimit": 50,
"availabilitySetCount": 10,
"vmScaleSetCount": 20,
"maxAllocationStandardManagedDisksAndSnapshots": 1024,
"maxAllocationPremiumManagedDisksAndSnapshots": 1024
}
}
]
}
定義
名前 | 説明 |
---|---|
Quota |
リソースの割り当てを制御するために使用されるコンピューティング クォータ情報を保持します。 |
Quota |
コンピューティング クォータの一覧 |
Quota
リソースの割り当てを制御するために使用されるコンピューティング クォータ情報を保持します。
名前 | 型 | 説明 |
---|---|---|
id |
string |
リソースの ID。 |
location |
string |
リソースの場所。 |
name |
string |
リソースの名前。 |
properties.availabilitySetCount |
integer (int32) minimum: 0 |
許可される可用性セットの最大数。 |
properties.coresLimit |
integer (int32) minimum: 0 |
許可されるコアの最大数。 |
properties.maxAllocationPremiumManagedDisksAndSnapshots |
integer (int32) minimum: 0 |
許可される Premium の種類のマネージド ディスクとスナップショットの最大数。 |
properties.maxAllocationStandardManagedDisksAndSnapshots |
integer (int32) minimum: 0 |
許可される Standard の種類のマネージド ディスクとスナップショットの最大数。 |
properties.virtualMachineCount |
integer (int32) minimum: 0 |
許可される仮想マシンの最大数。 |
properties.vmScaleSetCount |
integer (int32) minimum: 0 |
許可されるスケール セットの最大数。 |
type |
string |
リソースの種類。 |
QuotaList
コンピューティング クォータの一覧
名前 | 型 | 説明 |
---|---|---|
nextLink |
string |
次のページへの URI。 |
value |
Quota[] |
コンピューティング クォータの一覧 |