createApplicationFromDeploymentPackage

On this page
Back to index

Summary

Runs a procedure that creates an application from a deployment package.
artifactFileName
Stringrequired
The artifact file name.
artifactGroup
Stringrequired
The artifact group.
artifactKey
Stringrequired
The artifact key.
artifactVersion
Stringrequired
The artifact version.
dslString
Stringoptional
The DSL to pass to invoking procedure.
retrieveToFolder
Stringoptional
The folder where the artifact is retrieved. The default value is a dot (.).

Usage

Groovy

import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.createApplicationFromDeploymentPackage( artifactFileName: "test-artifactFileName", artifactGroup: "test-artifactGroup", artifactKey: "test-artifactKey", artifactVersion: "test-artifactVersion" /* optional arguments */ )