Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • PROJECT_TYPE - Partial deploy project type, GENERIC, EBS, MDS etc
  • OBJECT_TYPE_CODE - Object type for the File.
  • FILE_PATH - File path of the partial deploy file. (File Name (with path)) on the partial deployment screen.
  • FILE_NAME - File name of the partial deploy file
  • FILE_PATH_PREFIX - File path,  discluding excluding the file name and extension
  • FILE_EXTENSION - File extension on the partial deploy file.
  • SOURCE_FILE - Fully qualified location of the file on the endpoint.  

All partial file attributes are included as well.

Environment/Instance Properties

Property Name

Property Code

Required

Description





...

Code Block
languagepowershell
setOutput {output name} {output value}
 
Example: setOutput STATUS $env:STATUS_VARIABLE

Outputs are aggregated into a csv list for partial deployments.

The above STATUS example would contain an entry for each file in the object list.  [SUCCESS,

...

FAILED]

Code Block
languagebash
titleIndicate file was not processed and should not consider status
# just call ignoreStatus for File that this shell did not process
ignoreStatus

In the case where your Build or Deployment is hanging on your PowerShell plugin step, the most common issue is that the cmdlet you entered requires user input. If this occurs then you need to force the cmdlet to complete without the user input and then re-build or re-deploy.

...