Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add API to add an IpSecurityRestriction while Defining a WebApp #548

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
fix documentation to pull from generated model
  • Loading branch information
dpetillo committed Dec 10, 2018
commit 2d58ce38dbf3671ba302070963a3bfa0c2a0c851
Original file line number Diff line number Diff line change
Expand Up @@ -1022,12 +1022,19 @@ WebAppBase.Definition.IWithCreate<FluentT> WebAppBase.Definition.IWithWebContain
/// <summary>
/// WithIpSecurityRestriction
/// </summary>
/// <param name="ipAddress">The IP address.</param>
/// <param name="subnetMask">The subnet mask.</param>
/// <param name="action">The action specifying to Allow or Deny traffic.</param>
/// <param name="priority">The priority for this rule.</param>
/// <param name="name">Name for this rule.</param>
/// <param name="description">Description for this rule.</param>
/// <param name="ipAddress">IP address the security restriction is
/// valid for.
/// It can be in form of pure ipv4 address (required SubnetMask
/// property) or
/// CIDR notation such as ipv4/mask (leading bit match). For CIDR,
/// SubnetMask property must not be specified.</param>
/// <param name="subnetMask">Subnet mask for the range of IP addresses
/// the restriction is valid for.</param>
/// <param name="action">Allow or Deny access for this IP
/// range.</param>
/// <param name="priority">Priority of IP restriction rule.</param>
/// <param name="name">IP restriction rule name.</param>
/// <param name="description">IP restriction rule description.</param>
/// <return>The next stage of the definition.</return>
WebAppBase.Definition.IWithCreate<FluentT> WebAppBase.Definition.IWithIpSecurityRestriction<FluentT>.WithIpSecurityRestriction(string ipAddress, string subnetMask = default(string), string action = default(string), int? priority = default(int?), string name = default(string), string description = default(string))
{
Expand Down