mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.1 KiB
1.1 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2025-network-configuration | NetworkConfiguration | NetworkConfiguration | NetworkConfiguration | pythonsdk |
|
/tools/sdk/python/v2025/models/network-configuration |
|
NetworkConfiguration
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| range | []str | The collection of ip ranges. | [optional] |
| geolocation | []str | The collection of country codes. | [optional] |
| whitelisted | bool | Denotes whether the provided lists are whitelisted or blacklisted for geo location. | [optional] [default to False] |
| } |
Example
from sailpoint.v2025.models.network_configuration import NetworkConfiguration
network_configuration = NetworkConfiguration(
range=[1.3.7.2, 255.255.255.252/30],
geolocation=[CA, FR, HT],
whitelisted=True
)