你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
按网络资源组列出
获取给定资源组中的所有网络资源。
获取给定资源组中所有网络资源的相关信息。 该信息包括网络说明和其他运行时属性。
请求
方法 | 请求 URI |
---|---|
GET | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/networks?api-version=2018-07-01-preview |
参数
名称 | 类型 | 必须 | 位置 |
---|---|---|---|
subscriptionId |
string | 是 | 路径 |
resourceGroupName |
字符串 | 是 | 路径 |
api-version |
字符串 | 是 | 查询 |
subscriptionId
类型:字符串
必需:是
客户订阅标识符
resourceGroupName
类型:字符串
必需:是
Azure 资源组名称
api-version
类型:字符串
必需:是
默认:
API 的版本。 此参数是必需的,其值必须为 2018-07-01-preview
。
响应
HTTP 状态代码 | 说明 | 响应架构 |
---|---|---|
200 (正常) | 确定 |
NetworkResourceDescriptionList |
所有其他状态代码 | 错误 |
ErrorModel |
示例
NetworksList
请求
GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks?api-version=2018-07-01-preview
200 响应
正文
{
"value": [
{
"type": "Microsoft.ServiceFabricMesh/networks",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork",
"name": "helloWorldNetwork",
"tags": {},
"properties": {
"provisioningState": "Succeeded",
"addressPrefix": "10.0.0.4/22",
"ingressConfig": {
"qosLevel": "Bronze",
"publicIPAddress": "52.191.12.219",
"layer4": [
{
"publicPort": "80",
"applicationName": "helloWorldApp",
"serviceName": "helloWorldService",
"endpointName": "helloWorldListener"
}
]
}
}
},
{
"type": "Microsoft.ServiceFabricMesh/networks",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows",
"name": "helloWorldNetworkWindows",
"tags": {},
"properties": {
"provisioningState": "Succeeded",
"addressPrefix": "10.0.0.4/22",
"ingressConfig": {
"qosLevel": "Bronze",
"publicIPAddress": "52.191.255.103",
"layer4": [
{
"publicPort": "80",
"applicationName": "helloWorldAppWindows",
"serviceName": "helloWorldService",
"endpointName": "helloWorldListener"
}
]
}
}
}
]
}