Class NetworkAccessControlEntry
- java.lang.Object
-
- com.microsoft.azure.management.appservice.NetworkAccessControlEntry
-
public class NetworkAccessControlEntry extends Object
Network access control entry.
-
-
Constructor Summary
Constructors Constructor Description NetworkAccessControlEntry()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AccessControlEntryActionaction()Get action object.Stringdescription()Get description of network access control entry.Integerorder()Get order of precedence.StringremoteSubnet()Get remote subnet.NetworkAccessControlEntrywithAction(AccessControlEntryAction action)Set action object.NetworkAccessControlEntrywithDescription(String description)Set description of network access control entry.NetworkAccessControlEntrywithOrder(Integer order)Set order of precedence.NetworkAccessControlEntrywithRemoteSubnet(String remoteSubnet)Set remote subnet.
-
-
-
Method Detail
-
action
public AccessControlEntryAction action()
Get action object. Possible values include: 'Permit', 'Deny'.- Returns:
- the action value
-
withAction
public NetworkAccessControlEntry withAction(AccessControlEntryAction action)
Set action object. Possible values include: 'Permit', 'Deny'.- Parameters:
action- the action value to set- Returns:
- the NetworkAccessControlEntry object itself.
-
description
public String description()
Get description of network access control entry.- Returns:
- the description value
-
withDescription
public NetworkAccessControlEntry withDescription(String description)
Set description of network access control entry.- Parameters:
description- the description value to set- Returns:
- the NetworkAccessControlEntry object itself.
-
order
public Integer order()
Get order of precedence.- Returns:
- the order value
-
withOrder
public NetworkAccessControlEntry withOrder(Integer order)
Set order of precedence.- Parameters:
order- the order value to set- Returns:
- the NetworkAccessControlEntry object itself.
-
remoteSubnet
public String remoteSubnet()
Get remote subnet.- Returns:
- the remoteSubnet value
-
withRemoteSubnet
public NetworkAccessControlEntry withRemoteSubnet(String remoteSubnet)
Set remote subnet.- Parameters:
remoteSubnet- the remoteSubnet value to set- Returns:
- the NetworkAccessControlEntry object itself.
-
-