ネットワーク サブスクリプション別の一覧表示
特定のサブスクリプション内のすべてのネットワーク リソースを取得します。
特定のサブスクリプション内のすべてのネットワーク リソースに関する情報を取得します。 この情報には、ネットワークの説明とその他のランタイム プロパティが含まれます。
Request
Method | 要求 URI |
---|---|
GET | /subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabricMesh/networks?api-version=2018-07-01-preview |
パラメーター
名前 | Type | 必須 | 場所 |
---|---|---|---|
subscriptionId |
string | はい | パス |
api-version |
string | はい | クエリ |
subscriptionId
型: string
必須: はい
顧客サブスクリプション識別子
api-version
型: string
必須: はい
既定値:
API のバージョン。 このパラメーターは必須であり、その値は である 2018-07-01-preview
必要があります。
応答
HTTP 状態コード | 説明 | 応答スキーマ |
---|---|---|
200 (OK) | OK |
NetworkResourceDescriptionList |
その他すべての状態コード | エラー |
ErrorModel |
使用例
NetworksList
要求
GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/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/{resourceGroup}/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/{resourceGroup}/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"
}
]
}
}
}
]
}