createProject

Back to index

Summary

Creates a new project.
projectName
Stringrequired
The name for the project that must be unique among all projects.
credentialName
Stringoptional
The name of the credential object.
description
Stringoptional
Comment text describing this object that is not interpreted at all by CloudBees CD/RO.
resourceName
Stringoptional
Name for the resource; must be unique among all resources.
tracked
Booleanoptional
True to enable change tracking for this project.
workspaceName
Stringoptional
The name of the workspace.

Usage

Perl

$cmdr->createProject( "test-projectName" # projectName # optionals );

ectool

ectool createProject \ "test-projectName" `# projectName` \ # optionals

Examples

Perl

$cmdr->createProject("Default", {workspaceName => "Primary"});

ectool

ectool createProject "Default" --workspaceName "Primary"