From e106896f94f71501ba80483fd13972154208cbcf Mon Sep 17 00:00:00 2001 From: Neel Bhavsar Date: Fri, 17 Jul 2020 10:13:00 +0530 Subject: [PATCH] Added O365Policy to VpnSite resource. --- .../2020-06-01/examples/VpnSitePut.json | 9 ++++- .../stable/2020-06-01/virtualWan.json | 35 +++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/specification/network/resource-manager/Microsoft.Network/stable/2020-06-01/examples/VpnSitePut.json b/specification/network/resource-manager/Microsoft.Network/stable/2020-06-01/examples/VpnSitePut.json index 350e29ca5af1..a9ea0355f6be 100644 --- a/specification/network/resource-manager/Microsoft.Network/stable/2020-06-01/examples/VpnSitePut.json +++ b/specification/network/resource-manager/Microsoft.Network/stable/2020-06-01/examples/VpnSitePut.json @@ -35,7 +35,14 @@ } } } - ] + ], + "o365Policy": { + "breakOutCategories": { + "allow": true, + "optimize": true, + "default": false + } + } } } }, diff --git a/specification/network/resource-manager/Microsoft.Network/stable/2020-06-01/virtualWan.json b/specification/network/resource-manager/Microsoft.Network/stable/2020-06-01/virtualWan.json index 8d2a88bf0849..af4f29898cb9 100644 --- a/specification/network/resource-manager/Microsoft.Network/stable/2020-06-01/virtualWan.json +++ b/specification/network/resource-manager/Microsoft.Network/stable/2020-06-01/virtualWan.json @@ -5024,6 +5024,11 @@ "items": { "$ref": "#/definitions/VpnSiteLink" } + }, + "o365Policy": { + "readOnly": false, + "description": "Office365 Policy.", + "$ref": "#/definitions/O365PolicyProperties" } }, "description": "Parameters for VpnSite." @@ -7075,6 +7080,36 @@ "description": "The type of the specified resource like RouteTable, ExpressRouteConnection, HubVirtualNetworkConnection, VpnConnection and P2SConnection." } } + }, + "O365PolicyProperties": { + "properties": { + "breakOutCategories": { + "readOnly": false, + "description": "Office365 breakout categories.", + "$ref": "#/definitions/O365BreakOutCategoryPolicies" + } + }, + "description": "The Office365 breakout policy." + }, + "O365BreakOutCategoryPolicies": { + "properties": { + "allow": { + "type": "boolean", + "readOnly": false, + "description": "Flag to control allow category." + }, + "optimize": { + "type": "boolean", + "readOnly": false, + "description": "Flag to control optimize category." + }, + "default": { + "type": "boolean", + "readOnly": false, + "description": "Flag to control default category." + } + }, + "description": "Office365 breakout categories." } } }