importVersions

Import new component versions
This command polls the source configuration for new component versions.

Format

udclient [global-args...] [global-flags...]
  importVersions [JSON file]

Parameters

None.

Template

This command takes a JSON request string or file. Use the following template for the request:
{
  "component": "Component name or ID",
  "properties": {"name": "value (Optional - repeat as 
  necessary)"}
}

Example

udclient -username admin -password admin 
  -weburl https://myserver.example.com:8443
  importVersions newVersions.json

Example JSON request

{
  "component": "JPetStore-WEB",
  "properties": {
    "Prop1": "value1"
  }
}

Related REST command: Import new component versions.


Feedback