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

981 B

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-sod-policy-owner-ref SodPolicyOwnerRef SodPolicyOwnerRef SodPolicyOwnerRef pythonsdk
python
Python
sdk
SodPolicyOwnerRef
V2024SodPolicyOwnerRef
/tools/sdk/python/v2024/models/sod-policy-owner-ref
SDK
Software Development Kit
SodPolicyOwnerRef
V2024SodPolicyOwnerRef

SodPolicyOwnerRef

The owner of the SOD policy.

Properties

Name Type Description Notes
type Enum [ 'IDENTITY', 'GOVERNANCE_GROUP' ] Owner type. [optional]
id str Owner's ID. [optional]
name str Owner's name. [optional]
}

Example

from sailpoint.v2024.models.sod_policy_owner_ref import SodPolicyOwnerRef

sod_policy_owner_ref = SodPolicyOwnerRef(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='Support'
)

[Back to top]