Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,11 @@
"name": "exrsdwan",
"hasPublicIp": true
}
],
"internetIngressPublicIps": [
{
"id": "/subscriptions/{{subscriptionId}}/resourceGroups/{{rg}}/providers/Microsoft.Network/publicIPAddresses/slbip"
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
"name": "exrsdwan",
"hasPublicIp": true
}
],
"internetIngressPublicIps": [
{
"id": "/subscriptions/{{subscriptionId}}/resourceGroups/{{rg}}/providers/Microsoft.Network/publicIPAddresses/slbip"
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,15 @@
},
"x-ms-identifiers": []
},
"internetIngressPublicIps": {
"type": "array",
"readOnly": false,
"description": "List of Resource Uri of Public IPs for Internet Ingress Scenario.",
"items": {
"$ref": "#/definitions/InternetIngressPublicIpsProperties"
},
"x-ms-identifiers": []
},
"virtualApplianceSites": {
"type": "array",
"readOnly": true,
Expand Down Expand Up @@ -972,6 +981,26 @@
}
}
},
"InternetIngressPublicIpsProperties": {
"type": "object",
"title": "Internet Ingress Public Ip Properties",
"description": "Resource Uri of Public Ip for Standard Load Balancer Frontend End.",
"properties": {
"id": {
"type": "string",
"readOnly": false,
"description": "Resource Uri of Public Ip",
"format": "arm-id",
"x-ms-arm-id-details": {
"allowedResources": [
{
"type": "Microsoft.Network/publicIPAddresses"
}
]
}
}
}
},
"VirtualApplianceSite": {
"properties": {
"properties": {
Expand Down