Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/SourcePasswordPoliciesInner.md
2025-02-20 12:59:19 -05: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
source-password-policies-inner SourcePasswordPoliciesInner SourcePasswordPoliciesInner SourcePasswordPoliciesInner pythonsdk
python
Python
sdk
SourcePasswordPoliciesInner
SourcePasswordPoliciesInner
/tools/sdk/python/v3/models/source-password-policies-inner
SDK
Software Development Kit
SourcePasswordPoliciesInner
SourcePasswordPoliciesInner

SourcePasswordPoliciesInner

Properties

Name Type Description Notes
type Enum [ 'PASSWORD_POLICY' ] Type of object being referenced. [optional]
id str Policy ID. [optional]
name str Policy's human-readable display name. [optional]
}

Example

from sailpoint.v3.models.source_password_policies_inner import SourcePasswordPoliciesInner

source_password_policies_inner = SourcePasswordPoliciesInner(
type='PASSWORD_POLICY',
id='2c91808568c529c60168cca6f90c1777',
name='My Password Policy'
)

[Back to top]