Create a generic process
Request
PUT https://{hostname}:{port}
/cli/process/create
Accept: {contentType}
Parameter | Type | Required | Description |
---|---|---|---|
Accept |
|
true |
This command takes a JSON request string or file. Use the following template for
the request:
{
"defaultResourceId": "DEPRECATED, legacy format which is
single default resource ID.",
"defaultResourceIds": ["JSONArray of Default resource ID
(s) This property takes precedence when both
defaultResourceIds and defaultResourceId are present"],
"description": "Description. This template includes two
steps: Download Artifacts and Run Shell as a good starting
point for your process.",
"name": "Process name or ID",
"notificationScheme": "Name of notification scheme",
"propDefs": [{
"allowedValues": [{"label": "value"}],
"defaultLabel": "defaultLabel",
"description": "description",
"httpBasePath": "httpBasePath",
"httpFormat": "httpFormat",
"httpLabelPath": "httpLabelPath",
"httpPassword": "httpPassword",
"httpUrl": "httpurl",
"httpUsername": "httpUsername",
"httpValuePath": "httpValuePath",
"label": "label",
"name": "name",
"pattern": "Pattern",
"required": "required",
"resolveHttpValuesUrl": "resolveHttpValuesUrl",
"type": "type",
"value": "value"
}],
"properties": {"Property name": "Property value
(Optional)"},
"rootActivity": {
"children": [
{
"allowFailure": false,
"children": [],
"commandName": "Download Artifacts",
"impersonationUseSudo": false,
"name": "First step",
"pluginName": "Launch Versioned File Storage",
"pluginVersion": 46,
"properties": {
"artifactSetBaseDir": "",
"compId": "${p:component.id}",
"directoryOffset": ".",
"fileExcludePatterns": "",
"fileIncludePatterns": "**/*",
"fullVerification": true,
"label": "${p:version.name",
"repositoryId": "${p:
component/code_station/repository}",
"repositoryUrl": "${p:server.url}/vfs",
"resId": "${p:resource.id}",
"serverUrl": "${p:server.url}",
"setFileExecuteBits": false,
"syncMode": true,
"verifyFileIntegrity": false
},
"showHidden": false,
"type": "plugin",
"useImpersonation": false
},
{
"allowFailure": false,
"children": [],
"commandName": "Shell",
"impersonationUseSudo": false,
"name": "Second step",
"pluginName": "Shell",
"pluginVersion": 20,
"properties": {
"directoryOffset": ".",
"outputFile": "",
"runAsDaemon": false,
"scriptBody": "echo \"Hello World\"",
"shellInterpreter": ""
},
"showHidden": false,
"type": "plugin",
"useImpersonation": false
},
{
"children": [],
"name": "FINISH",
"type": "finish"
}
],
"edges": [
{
"to": "First step",
"type": "ALWAYS",
"value": ""
},
{
"from": "First step",
"to": "Second step",
"type": "ALWAYS",
"value": ""
},
{
"from": "Second step",
"to": "FINISH",
"type": "ALWAYS",
"value": ""
}
],
"name": "GRAPH",
"offsets": [
{
"name": "First step",
"x": "-65",
"y": "90"
},
{
"name": "Second step",
"x": "-70",
"y": "210"
},
{
"name": "FINISH",
"x": "-60",
"y": "450"
}
],
"type": "graph"
},
"workingDir": "${p:resource/work.dir}/${p:process.name}"
}
Related CLI command: createGenericProcess.