Back to index
Summary
Retrieves an application or component process step.projectNameStringrequiredThe name for the project that must be unique among all projects. processNameStringrequiredThe name of the process. processStepNameStringrequiredThe name of the process step. applicationEntityRevisionIdUUIDoptionalThe revision ID of the versioned object. applicationNameStringoptionalThe name of the application, if the process is owned by an application. componentApplicationNameStringoptionalIf specified, the component is scoped to this application not the project. componentNameStringoptionalThe name of the component, if the process is owned by a component. microserviceApplicationNameStringoptionalIf specified, the microservice is scoped to an application. microserviceNameStringoptionalThe name of the microservice, if the process is owned by a microservice. |
Usage
Perl
$cmdr->getProcessStep( "test-projectName", # projectName "test-processName", # processName "test-processStepName" # processStepName # optionals );
ectool
ectool getProcessStep \ "test-projectName" `# projectName` \ "test-processName" `# processName` \ "test-processStepName" `# processStepName` \ # optionals
Examples
Perl
To retrieve a component process step in a master component:
$cmdr->getProcessStep('Default', 'Deploy', 'Check out', {componentName => 'WAR file'});
To retrieve a component process step in a specific application:
$cmdr->getProcessStep('Default', 'Deploy', 'Check out', {componentName => 'WAR file', componentApplicationName => 'Shopping Cart'});
To retrieve an application process step:
$cmdr->getProcessStep('Default', 'Deploy', 'Check out', {applicationName => 'Shopping Cart'});
ectool
To retrieve a component process step in a master component:
ectool getProcessStep 'Default' 'Deploy' 'Check out' --componentName 'WAR file'
To retrieve a component process step in a specific application:
ectool getProcessStep 'Default' 'Deploy' 'Check out' --componentName 'WAR file' --componentApplicationName 'Shopping Cart'
To retrieve an application process step:
ectool getProcessStep 'Default' 'Deploy' 'Check out' --applicationName 'Shopping Cart'