Skip to content

Commit

Permalink
Added O365Policy to VpnSite resource. (#10192)
Browse files Browse the repository at this point in the history
Co-authored-by: Neel Bhavsar <nebhavsa@microsoft.com>
  • Loading branch information
3vilbuff3r and Neel Bhavsar authored Jul 20, 2020
1 parent fc5a94c commit 50fc371
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,14 @@
}
}
}
]
],
"o365Policy": {
"breakOutCategories": {
"allow": true,
"optimize": true,
"default": false
}
}
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5024,6 +5024,11 @@
"items": {
"$ref": "#/definitions/VpnSiteLink"
}
},
"o365Policy": {
"readOnly": false,
"description": "Office365 Policy.",
"$ref": "#/definitions/O365PolicyProperties"
}
},
"description": "Parameters for VpnSite."
Expand Down Expand Up @@ -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."
}
}
}

0 comments on commit 50fc371

Please sign in to comment.