WorkflowPuppetStepDefinition Data Type

A Puppet workflow step definition

Namespace
(Default)
Properties
name data type type namespace min/max occurs description
action WorkflowPuppetAction element 0/1 The Puppet Action to execute
classes string element 0/1 Comma separated list of classes to apply
command string element 0/1 Custom Rake command to execute when action == CUSTOM
environment string element 0/1 The Puppet environment
groups string element 0/1 Comma separated list of groups to apply
node string element 0/1 The name of the node to configure
variables string element 0/1 Comma separated list of variables (key=value) to apply
Properties inherited from WorkflowStepDefinition
condition string element 0/1 Gets the condition.
domainCredential ManagedObjectReference element 0/1 Gets the domain credential.
guestOSCredential ManagedObjectReference element 0/1 The credential used to access the Guest OS.
id long element 1/1 Gets the id.
name string element 0/1 Gets the name.
stepNumber int element 1/1 The order in which this step executes. Starts at zero.
type WorkflowStepType element 0/1 Gets the type.
workflowDefinitionId long element 1/1 The workflow definition Id. Not needed when creating step for the first time.
Properties inherited from supportTemplating
xsitype string attribute 0/1  

Example

<WorkflowPuppetStepDefinition xsitype="...">
  <action>...</action>
  <node>...</node>
  <classes>...</classes>
  <groups>...</groups>
  <variables>...</variables>
  <environment>...</environment>
  <guestOSCredential>
    <displayName>...</displayName>
    <type>...</type>
    <id>...</id>
  </guestOSCredential>
  <domainCredential>
    <displayName>...</displayName>
    <type>...</type>
    <id>...</id>
  </domainCredential>
  <workflowDefinitionId>...</workflowDefinitionId>
  <id>...</id>
  <name>...</name>
  <type>...</type>
  <stepNumber>...</stepNumber>
  <condition>...</condition>
</WorkflowPuppetStepDefinition>