The results of performing an LDAP sync.
name | data type | type | namespace | min/max occurs | wrapped by | description |
---|---|---|---|---|---|---|
error | string | element | 0/1 | An message indicating the reason for failure, if an error occurred during LDAP sync.
This message may or may not be localized and is generally not suitable to be displayed to the end user. |
||
group | string | element | 0/unbounded | added_groups | The new groups that have been found in the LDAP directory. | |
group | string | element | 0/unbounded | modified_groups | The groups that have been modified. | |
group | string | element | 0/unbounded | deleted_groups | The groups that have been deleted because they could no longer be found in the LDAP directory. | |
status | string | element | 0/1 | The final status of the LDAP sync job.
Possible values are:
|
||
user | string | element | 0/unbounded | added_users | The new users that have been found in the LDAP directory. | |
user | string | element | 0/unbounded | modified_users | The users that have been modified. | |
user | string | element | 0/unbounded | deleted_users | The users that have been deleted because they could no longer be found in the LDAP directory. | |
user | string | element | 0/unbounded | disabled_users | The users that have been disabled because they could no longer be found in the LDAP directory. |
Example
<ldap_sync_results> <status>...</status> <added_users> <user>...</user> </added_users> <modified_users> <user>...</user> </modified_users> <deleted_users> <user>...</user> </deleted_users> <disabled_users> <user>...</user> </disabled_users> <added_groups> <group>...</group> </added_groups> <modified_groups> <group>...</group> </modified_groups> <deleted_groups> <group>...</group> </deleted_groups> <error>...</error> </ldap_sync_results>