forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
29c68f3
commit 9ecb5a5
Showing
9 changed files
with
875 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...ager/Microsoft.Network/stable/2018-01-01/examples/ApplicationGatewayBackendHealthGet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2018-01-01", | ||
"subscriptionId": "subid", | ||
"resourceGroupName": "appgw", | ||
"applicationGatewayName": "appgw" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"backendAddressPools": [ | ||
{ | ||
"backendAddressPool": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/backendaddressPools/MFAnalyticsPool" | ||
}, | ||
"backendHttpSettingsCollection": [ | ||
{ | ||
"backendHttpSettings": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/backendHttpSettingsCollection/MFPoolSettings" | ||
}, | ||
"servers": [ | ||
{ | ||
"address": "10.220.1.8", | ||
"health": "Up" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"backendAddressPool": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/backendaddressPools/MFPool" | ||
}, | ||
"backendHttpSettingsCollection": [ | ||
{ | ||
"backendHttpSettings": { | ||
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/applicationGateways/appgw/backendHttpSettingsCollection/MFPoolSettings" | ||
}, | ||
"servers": [ | ||
{ | ||
"address": "10.220.1.4", | ||
"health": "Up" | ||
}, | ||
{ | ||
"address": "10.220.1.5", | ||
"health": "Up" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
"202": {} | ||
} | ||
} |
Oops, something went wrong.