Scripts/ProtectionJob/Stop-CohesityProtectionJob.ps1
function Stop-CohesityProtectionJob { <# .SYNOPSIS Cancels a running protection job. .DESCRIPTION The Stop-CohesityProtectionJob function is used to stop the protection job. Cancels a running protection job. .NOTES Published by Cohesity .LINK https://cohesity.github.io/cohesity-powershell-module/#/README .EXAMPLE Stop-CohesityProtectionJob -Id 78773 -JobRunId 85510 Cancels a running protection job with Id 78773 and JobRunId 85510. #> [OutputType('System.Object')] [CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = "High")] Param( [Parameter(Mandatory = $true, ValueFromPipelineByPropertyName = $true, ParameterSetName = "ById")] [ValidateRange(1, [long]::MaxValue)] # Specifies the unique id of the protection job. [long]$Id, [Parameter(Mandatory = $true, ParameterSetName = "ByName")] [ValidateNotNullOrEmpty()] # Specifies the name of the protection job. [string]$Name, [Parameter(Mandatory = $false)] # Specifies flag to stop archival job. [switch]$StopArchivalJob, [Parameter(Mandatory = $false)] # Specifies flag to stop cloud spin job. [switch]$StopCloudSpinJob, [Parameter(Mandatory = $false)] # Specifies flag to stop replication job. [switch]$StopReplicationJob, [Parameter(Mandatory = $false)] # Run Id of a protection job run that needs to be cancelled. # If this run id does not match the id of an active run in the protection job, the job run is not cancelled and an error will be returned. # If this is not specified, the last job run id is used. [long]$JobRunId ) Begin { } Process { $currentProtectionJob = $null if ($Name) { $job = Get-CohesityProtectionJob -Names $Name if (-not $job) { Write-Output "Job name '$Name' not found" return } $Id = $job.Id $currentProtectionJob = $job } if (-not $JobRunId) { $job = Get-CohesityProtectionJob -Ids $Id if (-not $job) { Write-Output "Job id '$Id' not found" return } $JobRunId = $job.LastRun.BackupRun.JobRunId $currentProtectionjob = $job } if ($PSCmdlet.ShouldProcess($Id)) { $copyRun = $null; if ($StopArchivalJob.IsPresent) { $copyRun = $currentProtectionjob.LastRun.CopyRun | where-object { $_.Target.Type -eq "kArchival" } if (-not $copyRun) { Write-Output "Could not find the archival task." return } } if ($StopCloudSpinJob.IsPresent) { $copyRun = $currentProtectionjob.LastRun.CopyRun | where-object { $_.Target.Type -eq "kCloudDeploy" } if (-not $copyRun) { Write-Output "Could not find the cloud deploy task." return } } if ($StopReplicationJob.IsPresent) { $copyRun = $currentProtectionjob.LastRun.CopyRun | where-object { $_.Target.Type -eq "kRemote" } if (-not $copyRun) { Write-Output "Could not find the replication task." return } } $payload = [Cohesity.Model.CancelProtectionJobRunParam]::new() if ($copyRun) { $taskUid = [Cohesity.Model.UniversalId]::new() $taskUid.Id = $copyRun.TaskUid.Id $taskUid.clusterId = $copyRun.TaskUid.clusterId $taskUid.clusterIncarnationId = $copyRun.TaskUid.clusterIncarnationId # When the non-local job is being stopped # The copy task uid and job id would be used for Archival, Cloud spin and Remote targets $payload.CopyTaskUid = $taskUid } else { # When the local job is being stopped $payload.JobRunId = $JobRunId } $url = '/irisservices/api/v1/public/protectionRuns/cancel/' + $Id $payloadJson = $payload | ConvertTo-Json -Depth 100 $resp = Invoke-RestApi -Method Post -Uri $url -Body $payloadJson $resp | Out-Null Write-Output "Protection Job Run cancelled." } } End { } } |