You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the validate set is looking for the following on the SnapshotConsistencyMandate parameter of the Get-RubrikNutanixVM cmdlet
[ValidateSet('AUTOMATIC','APP_CONSISTENT','CRASH_CONSISTENT','FILE_SYSTEM_CONSISTENT','VSS_CONSISTENT','INCONSISTENT','UNKNOWN')]
The API docs specify that these should be one of the following
"Automatic""CrashConsistent""ApplicationConsistent"
FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestComma
nd Expected Behavior:
We need to change the validate set to allow only
"Automatic""CrashConsistent""ApplicationConsistent"
The text was updated successfully, but these errors were encountered:
Current Behavior:
Currently the validate set is looking for the following on the SnapshotConsistencyMandate parameter of the Get-RubrikNutanixVM cmdlet
[ValidateSet('AUTOMATIC','APP_CONSISTENT','CRASH_CONSISTENT','FILE_SYSTEM_CONSISTENT','VSS_CONSISTENT','INCONSISTENT','UNKNOWN')]
The API docs specify that these should be one of the following
"Automatic""CrashConsistent""ApplicationConsistent"
PS C:\Users\bill.sahm> Get-RubrikNutanixVM |select -first 10 | Set-RubrikNutanixVM -SnapConsistency 'CRASH_CONSISTENT'
Invoke-WebRequest : Request malformed
At C:\Program Files (x86)\WindowsPowerShell\Modules\Rubrik\5.0.0\Private\Invoke-RubrikWebRequest.ps1:20 char:19
WebException
nd
Expected Behavior:
We need to change the validate set to allow only
"Automatic""CrashConsistent""ApplicationConsistent"
The text was updated successfully, but these errors were encountered: