Skip to main content

Networkconfiguration

Properties

NameTypeDescriptionNotes
range[]strThe collection of ip ranges.[optional]
geolocation[]strThe collection of country codes.[optional]
whitelistedboolDenotes whether the provided lists are whitelisted or blacklisted for geo location.[optional] [default to False]
}

Example

from sailpoint.global_tenant_security_settings.models.networkconfiguration import Networkconfiguration

networkconfiguration = Networkconfiguration(
range=["1.3.7.2","255.255.255.252/30"],
geolocation=["CA","FR","HT"],
whitelisted=True
)

[Back to top]