Interface WebAppBase.DefinitionStages.WithNetworkAccess<FluentT>

    • Method Detail

      • withAccessFromNetworkSubnet

        WebAppBase.DefinitionStages.WithCreate<FluentT> withAccessFromNetworkSubnet​(String subnetId,
                                                                                    int priority)
        Specifies that access to the web app from the specific virtual network subnet should be allowed.
        Parameters:
        subnetId - the virtual network subnet id
        priority - the priority of the rule
        Returns:
        the next stage of the definition
      • withAccessFromIpAddress

        WebAppBase.DefinitionStages.WithCreate<FluentT> withAccessFromIpAddress​(String ipAddress,
                                                                                int priority)
        Specifies that access to the web app from the specific ip address should be allowed. Allowing any specific access will add a Deny Any rule with least priority.
        Parameters:
        ipAddress - the ip address
        priority - the priority of the rule
        Returns:
        the next stage of the definition
      • withAccessFromIpAddressRange

        WebAppBase.DefinitionStages.WithCreate<FluentT> withAccessFromIpAddressRange​(String ipAddressCidr,
                                                                                     int priority)
        Specifies that access to the web app from the specific ip range should be allowed. Allowing any specific access will add a Deny Any rule with least priority.
        Parameters:
        ipAddressCidr - the ip address range expressed in cidr format
        priority - the priority of the rule
        Returns:
        the next stage of the definition