Public/ps1/Job/Remove-ApprxrPipelineJob.ps1
|
<#
.SYNOPSIS Removes an Apprxr pipeline job from the configuration. .DESCRIPTION This function deletes the configuration value for a pipeline job, effectively removing it from the Apprxr system. .PARAMETER jobParam The job parameter object containing the Name property. .EXAMPLE Remove-ApprxrPipelineJob -jobParam $job .NOTES This function is part of the Apprxr job management system. #> function Remove-ApprxrPipelineJob { param ($jobParam) # Remove the configuration value for the pipeline job Remove-ApprxrConfigurationValue -name ($jobParam.Name+"Sleep") -value $sleep } |