Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AccessProfileRef.md
2025-04-01 09:23:12 -04:00

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-access-profile-ref AccessProfileRef AccessProfileRef AccessProfileRef pythonsdk
python
Python
sdk
AccessProfileRef
V2025AccessProfileRef
/tools/sdk/python/v2025/models/access-profile-ref
SDK
Software Development Kit
AccessProfileRef
V2025AccessProfileRef

AccessProfileRef

Properties

Name Type Description Notes
id str ID of the Access Profile [optional]
type Enum [ 'ACCESS_PROFILE' ] Type of requested object. This field must be either left null or set to 'ACCESS_PROFILE' when creating an Access Profile, otherwise a 400 Bad Request error will result. [optional]
name str Human-readable display name of the Access Profile. This field is ignored on input. [optional]
}

Example

from sailpoint.v2025.models.access_profile_ref import AccessProfileRef

access_profile_ref = AccessProfileRef(
id='ff808081751e6e129f1518161919ecca',
type='ACCESS_PROFILE',
name='Access Profile 2567'
)

[Back to top]