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
Next Next commit
fix whitespace
  • Loading branch information
dpetillo committed Dec 10, 2018
commit 7eceba6a8af652eafd405a45dce635c26d9703bb
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,6 @@ public interface IWithSiteConfigs<FluentT>
/// <param name="enabled">True if web sockets are enabled.</param>
/// <return>The next stage of the definition.</return>
Microsoft.Azure.Management.AppService.Fluent.WebAppBase.Definition.IWithCreate<FluentT> WithWebSocketsEnabled(bool enabled);

}

/// <summary>
Expand Down Expand Up @@ -516,6 +515,4 @@ public interface IWithIpSecurityRestriction<FluentT>
{
Microsoft.Azure.Management.AppService.Fluent.WebAppBase.Definition.IWithCreate<FluentT> WithIpSecurityRestriction(string ipAddress, string subnetMask = default(string), string action = default(string), int? priority = default(int?), string name = default(string), string description = default(string));
}


}