Class NetworkSecurityGroupRule


  • public class NetworkSecurityGroupRule
    extends Object
    A network security group rule to apply to an inbound endpoint.
    • Constructor Detail

      • NetworkSecurityGroupRule

        public NetworkSecurityGroupRule()
    • Method Detail

      • priority

        public int priority()
        Get priorities within a Pool must be unique and are evaluated in order of priority. The lower the number the higher the priority. For example, rules could be specified with order numbers of 150, 250, and 350. The rule with the order number of 150 takes precedence over the rule that has an order of 250. Allowed priorities are 150 to 4096. If any reserved or duplicate values are provided the request fails with HTTP status code 400.
        Returns:
        the priority value
      • withPriority

        public NetworkSecurityGroupRule withPriority​(int priority)
        Set priorities within a Pool must be unique and are evaluated in order of priority. The lower the number the higher the priority. For example, rules could be specified with order numbers of 150, 250, and 350. The rule with the order number of 150 takes precedence over the rule that has an order of 250. Allowed priorities are 150 to 4096. If any reserved or duplicate values are provided the request fails with HTTP status code 400.
        Parameters:
        priority - the priority value to set
        Returns:
        the NetworkSecurityGroupRule object itself.
      • sourceAddressPrefix

        public String sourceAddressPrefix()
        Get valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400.
        Returns:
        the sourceAddressPrefix value
      • withSourceAddressPrefix

        public NetworkSecurityGroupRule withSourceAddressPrefix​(String sourceAddressPrefix)
        Set valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400.
        Parameters:
        sourceAddressPrefix - the sourceAddressPrefix value to set
        Returns:
        the NetworkSecurityGroupRule object itself.
      • sourcePortRanges

        public List<String> sourcePortRanges()
        Get valid values are '*' (for all ports 0 - 65535), a specific port (i.e. 22), or a port range (i.e. 100-200). The ports must be in the range of 0 to 65535. Each entry in this collection must not overlap any other entry (either a range or an individual port). If any other values are provided the request fails with HTTP status code 400. The default value is '*'.
        Returns:
        the sourcePortRanges value
      • withSourcePortRanges

        public NetworkSecurityGroupRule withSourcePortRanges​(List<String> sourcePortRanges)
        Set valid values are '*' (for all ports 0 - 65535), a specific port (i.e. 22), or a port range (i.e. 100-200). The ports must be in the range of 0 to 65535. Each entry in this collection must not overlap any other entry (either a range or an individual port). If any other values are provided the request fails with HTTP status code 400. The default value is '*'.
        Parameters:
        sourcePortRanges - the sourcePortRanges value to set
        Returns:
        the NetworkSecurityGroupRule object itself.