public static interface WebAppBase.UpdateStages.WithNetworkAccess<FluentT>
| Modifier and Type | Method and Description |
|---|---|
WebAppBase.Update<FluentT> |
withAccessFromAllNetworks()
Specifies that access to web app should be allowed from all networks.
|
WebAppBase.Update<FluentT> |
withAccessFromIpAddress(String ipAddress,
int priority)
Specifies that access to the web app from the specific ip address should be allowed.
|
WebAppBase.Update<FluentT> |
withAccessFromIpAddressRange(String ipAddressCidr,
int priority)
Specifies that access to the web app from the specific ip range should be allowed.
|
WebAppBase.Update<FluentT> |
withAccessFromNetworkSubnet(String subnetId,
int priority)
Specifies that access to the web app from the specific virtual network subnet should be allowed.
|
WebAppBase.Update<FluentT> |
withAccessRule(IpSecurityRestriction ipSecurityRule)
Specifies that the ip security rule.
|
WebAppBase.Update<FluentT> |
withoutAccessRule(IpSecurityRestriction ipSecurityRule)
Specifies that the access rule should be removed.
|
WebAppBase.Update<FluentT> |
withoutIpAddressAccess(String ipAddress)
Specifies that previously allowed access from specific ip address should be removed.
|
WebAppBase.Update<FluentT> |
withoutIpAddressRangeAccess(String ipAddressCidr)
Specifies that previously allowed access from specific ip range should be removed.
|
WebAppBase.Update<FluentT> |
withoutNetworkSubnetAccess(String subnetId)
Specifies that previously allowed access from specific virtual network subnet should be removed.
|
WebAppBase.Update<FluentT> withAccessFromAllNetworks()
WebAppBase.Update<FluentT> withAccessFromNetworkSubnet(String subnetId, int priority)
subnetId - the virtual network subnet idpriority - the priority of the ruleWebAppBase.Update<FluentT> withAccessFromIpAddress(String ipAddress, int priority)
ipAddress - the ip addresspriority - the priority of the ruleWebAppBase.Update<FluentT> withAccessFromIpAddressRange(String ipAddressCidr, int priority)
ipAddressCidr - the ip address range expressed in cidr formatpriority - the priority of the ruleWebAppBase.Update<FluentT> withAccessRule(IpSecurityRestriction ipSecurityRule)
ipSecurityRule - the ip security ruleWebAppBase.Update<FluentT> withoutNetworkSubnetAccess(String subnetId)
subnetId - the virtual network subnet idWebAppBase.Update<FluentT> withoutIpAddressAccess(String ipAddress)
ipAddress - the ip addressWebAppBase.Update<FluentT> withoutAccessRule(IpSecurityRestriction ipSecurityRule)
ipSecurityRule - the ip security ruleWebAppBase.Update<FluentT> withoutIpAddressRangeAccess(String ipAddressCidr)
ipAddressCidr - the ip address range expressed in cidr formatVisit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.