你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
按环境列出
获取可用于指定环境的 Service Fabric 群集代码版本的列表。
按环境获取 Service Fabric 群集资源的所有可用代码版本。
请求
方法 | 请求 URI |
---|---|
GET | /subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabric/locations/{location}/environments/{environment}/clusterVersions?api-version=2018-02-01 |
参数
名称 | 类型 | 必须 | 位置 |
---|---|---|---|
location | 字符串 | 是 | 路径 |
环境 | string (枚举) | 是 | 路径 |
subscriptionId | string | 是 | 路径 |
api-version | string | 是 | 查询 |
location
类型:字符串
必需:是
群集代码版本的位置。 这与群集位置不同。
环境
类型:字符串 (枚举)
必需:是
群集的操作系统。 默认值表示 all。 可能的值包括:“Windows”、“Linux”
subscriptionId
类型:字符串
必需:是
客户订阅标识符。
api-version
类型:字符串
必需:是
默认值:2018-02-01
Service Fabric 资源提供程序 API 的版本。 这是必需参数,对于此规范,其值必须为“2018-02-01”。
响应
HTTP 状态代码 | 说明 | 响应架构 |
---|---|---|
200 (正常) | 操作已成功完成。 |
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"
}
}
]
}