Skip to content

Commit 6404bbe

Browse files
committed
Add missing argument completer.
1 parent fe1b523 commit 6404bbe

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/ResourceManager/DataMigration/Commands.DataMigration/Cmdlets/NewAzureRmDataMigrationService.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
using System.Management.Automation;
1616
using Microsoft.Azure.Commands.DataMigration.Models;
17+
using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters;
1718
using Microsoft.Azure.Management.DataMigration;
1819
using Microsoft.Azure.Management.DataMigration.Models;
1920

@@ -51,6 +52,7 @@ public sealed class NewAzureRmDataMigrationService : DataMigrationCmdlet
5152
HelpMessage = "The SKU for DataMigration service instance, possible values are Basic_1vCore, Basic_2vCores, GeneralPurpose_4vCores"
5253
)]
5354
[ValidateNotNullOrEmpty]
55+
[PSArgumentCompleter("Basic_1vCore", "Basic_2vCores", "GeneralPurpose_4vCores")]
5456
public string Sku { get; set; }
5557

5658
[Parameter(

0 commit comments

Comments
 (0)