gitRepositoryDTO Data Type

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs constraints description
denyNonFastForwards boolean element 1/1 required boolean  
dsmId string element 0/1    
fileSystemPath string element 1/1 required the path on the file system of the repository
globalReadOnly boolean element 1/1 required boolean true if the repository is read only
latestRevision repositoryRevisionDTO element 0/1   Returns the details of the repository's youngest revision.
localReadOnly boolean element 1/1 required 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.
name string element 1/1 required the friendly name of the repository
pendingTransactions long element 0/1    
pendingTransactionsForAllNodes VCSNodesTransactionsListDTO element 0/1    
readOnlyReason string element 0/1    
readOnlyTime long element 0/1    
replicationGroupId string element 0/1    
repositoryIdentity string element 1/1 required the UUID of the repository
state repositoryStateDTO element 1/1 required  

Example

<git-repository>
  <repositoryIdentity>...</repositoryIdentity>
  <name>...</name>
  <fileSystemPath>...</fileSystemPath>
  <globalReadOnly>...</globalReadOnly>
  <localReadOnly>...</localReadOnly>
  <readOnlyReason>...</readOnlyReason>
  <readOnlyTime>...</readOnlyTime>
  <latestRevision>
    <timestamp>...</timestamp>
  </latestRevision>
  <state/>
  <replicationGroupId>...</replicationGroupId>
  <pendingTransactions>...</pendingTransactions>
  <pendingTransactionsForAllNodes>
    <repositoryNodesTransactions>
      <nodeId>...</nodeId>
      <lastOutput>...</lastOutput>
      <lastDelivered>...</lastDelivered>
      <pendingTransactions>...</pendingTransactions>
    </repositoryNodesTransactions>
  </pendingTransactionsForAllNodes>
  <dsmId>...</dsmId>
  <denyNonFastForwards>...</denyNonFastForwards>
</git-repository>