updateApplicationPipeline

Update an application pipeline definition

Format

udclient [global-args...] [global-flags...]
  updateApplicationPipeline [parameters] [JSON file]

Parameters

Table 1. Parameters
Parameter Type Required Description
application string false Application name or id. Required if pipeline specified by name.
pipeline string true Pipeline name or id.

Template

This command takes a JSON request string or file. Use the following template for the request:
{
  "name": "name of the application pipeline",
  "stages": [{
    "blocks": [{
      "environment": "name of the environment for this 
  block",
      "processes": ["process-name"]
    }],
    "name": "name of the stage"
  }]
}

Related REST command: Update an application pipeline definition.