-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get AsyncRequestStatus... #60
Comments
Thanks for reporting this - Engineering is still working on it, we will circle back. |
My work-around #$Status = Get-RscEventSeries -List | Where-Object {$.ObjectId -eq $RscMssqlDatabaseID} | Select-Object LastActivityStatus, ObjectType, ObjectId, ActivitySeriesId, Fid } until ( $Status.LastActivityStatus -eq 'SUCCESS' -or $Status.LastActivityStatus -eq "FAILURE") |
-WaitForCompletion works after upgrade to Rubrik cmdlet (9.0.1) $Database_ids | ForEach-Object{ $backup_job = New-RubrikSnapshot -id $_ -SLA $Sla -Confirm:$false Get-RubrikRequest -id $backup_job.id -Type mssql -WaitForCompletion #-Verbose } |
Hello,
Does anyone have any idea how to get the status a of a job that was executed via a createOnDemandMssqlBackup mutuation? I can't for the life of me figure out how this query or example isn't riddled throughout the documentation but I can't seem to find anything on it.
This goes to different issue which I will post separately... I never needed to figure this out when using the CDM Powershell module because the similar cmdlet in that module allowed us to supply a flag to wait for the job completion. This isn't included in the new RSC cmdlet, so it's on the user/customer to come up with their own wait logic.
The text was updated successfully, but these errors were encountered: