Commit b6fafd9
fixes Azure#20256
This swagger definition is defining property applicationGatewayIpConfigurations,
```
"applicationGatewayIpConfigurations": {
"type": "array",
"items": {
"$ref": "./applicationGateway.json#/definitions/ApplicationGatewayIPConfiguration"
},
"description": "Application gateway IP configurations of virtual network resource."
}
```
but actual rest api returned applicationGatewayIPConfigurations, the P is upper case while in swagger it is lower case.
```
{
"name": "subnet-agw",
"id": "/subscriptions/<sub-id>/resourceGroups/<rg-name>/providers/Microsoft.Network/virtualNetworks/<vnet-name>/subnets/subnet-agw",
"properties": {
"applicationGatewayIPConfigurations": [
{
"id": "/subscriptions/<sub-id>/resourceGroups/<rg-name>/providers/Microsoft.Network/applicationGateways/<agw-name>/gatewayIPConfigurations/appGatewayIpConfig"
}
]
},
"type": "Microsoft.Network/virtualNetworks/subnets"
}
```
Please update correspondingly.
1 parent 8340c7e commit b6fafd9
File tree
1 file changed
+1
-1
lines changed- specification/network/resource-manager/Microsoft.Network/stable/2022-09-01
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1625 | 1625 | | |
1626 | 1626 | | |
1627 | 1627 | | |
1628 | | - | |
| 1628 | + | |
1629 | 1629 | | |
1630 | 1630 | | |
1631 | 1631 | | |
| |||
0 commit comments