Create a new application pipeline
Request
POST https://{hostname}:{port}
/cli/applicationPipeline/create?{parameters}
Accept: {contentType}
Parameter | Type | Required | Description |
---|---|---|---|
application | string | true | Application name or id. |
Parameter | Type | Required | Description |
---|---|---|---|
Accept |
|
true |
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 CLI command: createApplicationPipeline.