Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AuthProfile.md
2025-02-20 12:59:19 -05:00

1.4 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
beta-auth-profile AuthProfile AuthProfile AuthProfile pythonsdk
python
Python
sdk
AuthProfile
BetaAuthProfile
/tools/sdk/python/beta/models/auth-profile
SDK
Software Development Kit
AuthProfile
BetaAuthProfile

AuthProfile

Properties

Name Type Description Notes
name str Authentication Profile name. [optional]
off_network bool Use it to block access from off network. [optional] [default to False]
untrusted_geography bool Use it to block access from untrusted geoographies. [optional] [default to False]
application_id str Application ID. [optional]
application_name str Application name. [optional]
type Enum [ 'BLOCK', 'MFA', 'NON_PTA', 'PTA' ] Type of the Authentication Profile. [optional]
strong_auth_login bool Use it to enable strong authentication. [optional] [default to False]
}

Example

from sailpoint.beta.models.auth_profile import AuthProfile

auth_profile = AuthProfile(
name='EndToEnd-Profile',
off_network=True,
untrusted_geography=True,
application_id='2c91808458ae7a4f0158b1bbf8af0628',
application_name='EndToEnd-Source',
type='PTA',
strong_auth_login=True
)

[Back to top]