Copyright 2013 WANdisco.
| name | data type | description |
|---|---|---|
| repositoryIdentity | string | |
| name | string | |
| fileSystemPath | string | |
| globalReadOnly | boolean | |
| localReadOnly | boolean | Return true if the repository is in read only mode locally. It will return false if the repository is in
global read only but not locally.
|
| readOnlyReason | string | |
| readOnlyTime | number | |
| latestRevision | RepositoryRevisionDTO | Returns the details of the repository's youngest revision. |
| state | RepositoryStateDTO | |
| replicationGroupId | string | |
| pendingTransactions | number | |
| pendingTransactionsForAllNodes | VCSNodesTransactionsListDTO | |
| dsmId | string | |
| isInitTxnSequenced | boolean | |
| txnSequence | number |
Example
{
"repositoryIdentity" : "...",
"name" : "...",
"fileSystemPath" : "...",
"globalReadOnly" : true,
"localReadOnly" : true,
"readOnlyReason" : "...",
"readOnlyTime" : 12345,
"latestRevision" : {
"revision" : "...",
"timestamp" : 12345
},
"state" : { },
"replicationGroupId" : "...",
"pendingTransactions" : 12345,
"pendingTransactionsForAllNodes" : {
"repositoryNodesTransactions" : [ {
"nodeId" : "...",
"lastOutput" : 12345,
"lastDelivered" : 12345,
"pendingTransactions" : 12345
}, {
"nodeId" : "...",
"lastOutput" : 12345,
"lastDelivered" : 12345,
"pendingTransactions" : 12345
} ]
},
"dsmId" : "...",
"isInitTxnSequenced" : true,
"txnSequence" : 12345
}