From e9c674c50f1da9f4449c9f0ab529b83d20cbebf6 Mon Sep 17 00:00:00 2001 From: kvprasoon Date: Wed, 4 Aug 2021 22:23:44 +0530 Subject: [PATCH] Add remaining allowed DiskTypes for -DiskType parameter --- Google.PowerShell/Compute/GceDisk.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Google.PowerShell/Compute/GceDisk.cs b/Google.PowerShell/Compute/GceDisk.cs index 30e01a5c..d8ac69b7 100644 --- a/Google.PowerShell/Compute/GceDisk.cs +++ b/Google.PowerShell/Compute/GceDisk.cs @@ -218,7 +218,7 @@ private class ParameterSetNames /// Type of disk, e.g. pd-ssd or pd-standard. /// /// - [Parameter, ValidateSet("pd-ssd", "pd-standard")] + [Parameter, ValidateSet("pd-ssd", "pd-standard", "pd-balanced", "pd-extreme")] public string DiskType { get; set; } ///