Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/PasswordSyncGroup.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
v2024-password-sync-group PasswordSyncGroup PasswordSyncGroup PasswordSyncGroup pythonsdk
python
Python
sdk
PasswordSyncGroup
V2024PasswordSyncGroup
/tools/sdk/python/v2024/models/password-sync-group
SDK
Software Development Kit
PasswordSyncGroup
V2024PasswordSyncGroup

PasswordSyncGroup

Properties

Name Type Description Notes
id str ID of the sync group [optional]
name str Name of the sync group [optional]
password_policy_id str ID of the password policy [optional]
source_ids []str List of password managed sources IDs [optional]
created datetime The date and time this sync group was created [optional]
modified datetime The date and time this sync group was last modified [optional]
}

Example

from sailpoint.v2024.models.password_sync_group import PasswordSyncGroup

password_sync_group = PasswordSyncGroup(
id='6881f631-3bd5-4213-9c75-8e05cc3e35dd',
name='Password Sync Group 1',
password_policy_id='2c91808d744ba0ce01746f93b6204501',
source_ids=[2c918084660f45d6016617daa9210584, 2c918084660f45d6016617daa9210500],
created='2023-03-16T04:00Z',
modified='2023-03-16T04:00Z'
)

[Back to top]