Class GeoFilter

java.lang.Object
com.microsoft.azure.management.cdn.GeoFilter

public class GeoFilter extends Object
Rules defining user's geo access within a CDN endpoint.
  • Constructor Details

    • GeoFilter

      public GeoFilter()
  • Method Details

    • relativePath

      public String relativePath()
      Get relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.).
      Returns:
      the relativePath value
    • withRelativePath

      public GeoFilter withRelativePath(String relativePath)
      Set relative path applicable to geo filter. (e.g. '/mypictures', '/mypicture/kitty.jpg', and etc.).
      Parameters:
      relativePath - the relativePath value to set
      Returns:
      the GeoFilter object itself.
    • action

      public GeoFilterActions action()
      Get action of the geo filter, i.e. allow or block access. Possible values include: 'Block', 'Allow'.
      Returns:
      the action value
    • withAction

      public GeoFilter withAction(GeoFilterActions action)
      Set action of the geo filter, i.e. allow or block access. Possible values include: 'Block', 'Allow'.
      Parameters:
      action - the action value to set
      Returns:
      the GeoFilter object itself.
    • countryCodes

      public List<String> countryCodes()
      Get two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
      Returns:
      the countryCodes value
    • withCountryCodes

      public GeoFilter withCountryCodes(List<String> countryCodes)
      Set two letter country codes defining user country access in a geo filter, e.g. AU, MX, US.
      Parameters:
      countryCodes - the countryCodes value to set
      Returns:
      the GeoFilter object itself.