modifyEnvironmentTemplate

Back to index

Summary

Modifies an environment template.
projectName
Stringrequired
The name for the project that must be unique among all projects.
environmentTemplateName
Stringrequired
The name of the environment template.
description
Stringoptional
Comment text describing this object that is not interpreted at all by CloudBees CD/RO.
newName
Stringoptional
The new name for an existing object that is being renamed.

Usage

Perl

$cmdr->modifyEnvironmentTemplate( "test-projectName", # projectName "test-environmentTemplateName" # environmentTemplateName # optionals );

ectool

ectool modifyEnvironmentTemplate \ "test-projectName" `# projectName` \ "test-environmentTemplateName" `# environmentTemplateName` \ # optionals

Examples

Perl

$cmdr->modifyEnvironmentTemplate("Default", "Dev Test 1");

ectool

ectool modifyEnvironmentTemplate "Default" "Dev Test 1"