Get-PASIPAllowList
Get-PASIPAllowList
SYNOPSIS
List allowed IP addresses that are enabled for communication with the Privilege Cloud SaaS environment.
SYNTAX
Get-PASIPAllowList [<CommonParameters>]
DESCRIPTION
Requires one of the following roles:
- Privilege Cloud Administrator
- Privilege Cloud Administrator Basic
- Privilege Cloud Administrator Lite
EXAMPLES
EXAMPLE 1
Get-PASIPAllowList
List the current IP Allow List configuration
EXAMPLE 2
(Get-PASIPAllowList).customerPublicIPs
Returns just the list of IP addresses and subnets currently permitted to communicate with the Privilege Cloud SaaS environment.
EXAMPLE 3
if (-not (Get-PASIPAllowList).updateInProgress) {
Set-PASIPAllowList -customerPublicIPs '10.0.0.0/24','192.168.1.0/28'
}
Checks that no IP Allow List update is already in progress before applying a new configuration.
PARAMETERS
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.