uninstallPlugin

On this page
Back to index

Summary

Uninstalls a plugin and deletes the associated project and any installed files.
request
Stringrequired
This parameter and the value displayed are required; request=uninstallPlugin must appear in your query string.
pluginName
Stringrequired
The name of the plugin.
timeout
Integeroptional
The optional amount of time to wait for the uninstall to complete. If not specified, defaults to the overall request timeout.

Usage

Groovy

import com.electriccloud.client.groovy.ElectricFlow import com.electriccloud.client.groovy.models.* ElectricFlow ef = new ElectricFlow() def result = ef.uninstallPlugin( request: "test-request", pluginName: "test-pluginName" /* optional arguments */ )