ProxyConnector Data Type

Available Since
1.4-M1
Properties
name data type description
order number Get the order of the proxy connectors. (0 means no order specified)
Properties inherited from AbstractRepositoryConnector
blackListPatterns array of string
disabled boolean
policies object
policiesEntries array of PropertyEntry
properties object
propertiesEntries array of PropertyEntry
proxyId string
sourceRepoId string
targetRepoId string
whiteListPatterns array of string

Example

{
  "order" : 12345.0,
  "propertiesEntries" : [ {
    "key" : "...",
    "value" : "..."
  }, {
    "key" : "...",
    "value" : "..."
  } ],
  "sourceRepoId" : "...",
  "policiesEntries" : [ {
    "key" : "...",
    "value" : "..."
  }, {
    "key" : "...",
    "value" : "..."
  } ],
  "blackListPatterns" : [ "...", "..." ],
  "policies" : {
    "property1" : "...",
    "property2" : "..."
  },
  "whiteListPatterns" : [ "...", "..." ],
  "proxyId" : "...",
  "properties" : {
    "property1" : "...",
    "property2" : "..."
  },
  "targetRepoId" : "...",
  "disabled" : true
}