createPersonaCategory

Back to index

Summary

Creates a new personaCategory object. Specify the name of the new page with personaCategoryName.
personaCategoryName
Stringrequired
The persona category name.
afterCategory
Stringoptional
If specified, the category will be placed after the named category.
beforeCategory
Stringoptional
If specified, the category will be placed before the named category.
description
Stringoptional
Comment text describing this object that is not interpreted at all by CloudBees CD/RO.
enabled
Booleanoptional
Whether to enable the PersonaCategory.
personaPages
Collectionoptional
A list of pages in a persona category.

Usage

Perl

$cmdr->createPersonaCategory( "test-personaCategoryName" # personaCategoryName # optionals );

ectool

ectool createPersonaCategory \ "test-personaCategoryName" `# personaCategoryName` \ # optionals

Examples

Perl

$cmdr->createPersonaCategory('Deploy East', {personaPages => "application","environment"});

ectool

ectool createPersonaCategory "Deploy East" --personaPages "application" "environment"