Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/NetworkConfiguration.md
2025-02-03 22:09:17 +00:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-network-configuration NetworkConfiguration NetworkConfiguration NetworkConfiguration powershellsdk
powershell
PowerShell
sdk
NetworkConfiguration
V2024NetworkConfiguration
/tools/sdk/powershell/v2024/models/network-configuration
SDK
Software Development Kit
NetworkConfiguration
V2024NetworkConfiguration

NetworkConfiguration

Properties

Name Type Description Notes
Range []String The collection of ip ranges. [optional]
Geolocation []String The collection of country codes. [optional]
Whitelisted Boolean Denotes whether the provided lists are whitelisted or blacklisted for geo location. [optional] [default to $false]

Examples

  • Prepare the resource
$NetworkConfiguration = Initialize-PSSailpoint.V2024NetworkConfiguration  -Range [1.3.7.2, 255.255.255.252/30] `
 -Geolocation [CA, FR, HT] `
 -Whitelisted true
  • Convert the resource to JSON
$NetworkConfiguration | ConvertTo-JSON

[Back to top]