環境別に一覧表示
指定した環境で使用できる Service Fabric クラスター コード バージョンの一覧を取得します。
環境別に Service Fabric クラスター リソースで使用可能なすべてのコード バージョンを取得します。
Request
Method | 要求 URI |
---|---|
GET | /subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/locations/{location}/environments/{environment}/clusterVersions?api-version=2018-02-01 |
パラメーター
名前 | Type | 必須 | 場所 |
---|---|---|---|
location | string | はい | パス |
environment | string (enum) | はい | パス |
subscriptionId | string | はい | パス |
api-version | string | はい | クエリ |
location
型: string
必須: はい
クラスター コード バージョンの場所。 これはクラスターの場所とは異なります。
環境
型: string (enum)
必須: はい
クラスターのオペレーティング システム。 既定値は all を意味します。 使用可能な値は次のとおりです: 'Windows'、'Linux'
subscriptionId
型: string
必須: はい
顧客サブスクリプション識別子。
api-version
型: string
必須: はい
既定値: 2018-02-01
Service Fabric リソース プロバイダー API のバージョン。 これは必須のパラメーターであり、この仕様の値は "2018-02-01" である必要があります。
応答
HTTP 状態コード | 説明 | 応答スキーマ |
---|---|---|
200 (OK) | 操作は正常に完了しました。 |
ClusterCodeVersionsListResult |
使用例
環境別にクラスターのバージョンを一覧表示する
要求
GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/environments/Windows/clusterVersions?api-version=2018-02-01
200 応答
本文
{
"value": [
{
"id": "subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/eastus/environments/Windows/clusterVersions/6.1.480.9494",
"name": "6.1.480.9494",
"type": "Microsoft.ServiceFabric/locations/environments/clusterVersions",
"properties": {
"codeVersion": "6.1.480.9494",
"supportExpiryUtc": "2018-06-15T23:59:59.9999999",
"environment": "Windows"
}
}
]
}