replicatedFolderUIDTO element
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<replicatedFolderUIDTO>
<uri>...</uri>
<membershipId>...</membershipId>
<consistency>...</consistency>
<lastConsistencyCheck>...</lastConsistencyCheck>
<nextConsistencyCheck>...</nextConsistencyCheck>
<zones>
<id>...</id>
<name>...</name>
</zones>
<zones>
<!--...-->
</zones>
<!--...more "zones" elements...-->
<consistencyCheckResult>
<path>...</path>
<taskId>...</taskId>
<lastCheck>...</lastCheck>
<nextCheck>...</nextCheck>
<state>...</state>
<inconsistencies>
<zoneId>...</zoneId>
<zoneId>...</zoneId>
<!--...more "zoneId" elements...-->
<differences>
<path>...</path>
<length>...</length>
<directory>...</directory>
<owner>...</owner>
<group>...</group>
<permission>...</permission>
</differences>
<differences>
<!--...-->
</differences>
<!--...more "differences" elements...-->
</inconsistencies>
<inconsistencies>
<!--...-->
</inconsistencies>
<!--...more "inconsistencies" elements...-->
</consistencyCheckResult>
<transferSummary>
<totalSize>...</totalSize>
<totalNumberOfFiles>...</totalNumberOfFiles>
<path>...</path>
</transferSummary>
<pendingReplication>...</pendingReplication>
<pendingConsistencyCheck>...</pendingConsistencyCheck>
</replicatedFolderUIDTO>
Example JSON
{
"uri" : "...",
"membershipId" : "...",
"consistency" : "...",
"lastConsistencyCheck" : ...,
"nextConsistencyCheck" : ...,
"zones" : [ {
"id" : "...",
"name" : "..."
}, ... ],
"consistencyCheckResult" : {
"path" : "...",
"taskId" : "...",
"lastCheck" : ...,
"nextCheck" : ...,
"state" : "...",
"inconsistencies" : [ {
"zoneId" : [ "...", ... ],
"differences" : [ {
"path" : "...",
"length" : ...,
"directory" : false,
"owner" : "...",
"group" : "...",
"permission" : "..."
}, ... ]
}, ... ]
},
"transferSummary" : {
"totalSize" : ...,
"totalNumberOfFiles" : ...,
"path" : "..."
},
"pendingReplication" : false,
"pendingConsistencyCheck" : false
}