Skip to main content

PasswordSyncGroup

Properties

NameTypeDescriptionNotes
idstrID of the sync group[optional]
namestrName of the sync group[optional]
password_policy_idstrID of the password policy[optional]
source_ids[]strList of password managed sources IDs[optional]
createddatetimeThe date and time this sync group was created[optional]
modifieddatetimeThe 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]