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
Copy file name to clipboardExpand all lines: src/ServiceManagement/Compute/Commands.ServiceManagement/IaaS/PersistentVMs/StartAzureVM.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -29,12 +29,12 @@ public class StartAzureVMCommand : IaaSDeploymentManagementCmdletBase
29
29
{
30
30
[Parameter(Position=1,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The name of the Virtual Machine to start.",ParameterSetName="ByName")]
31
31
[ValidateNotNullOrEmpty]
32
-
publicstringName{get;set;}
32
+
publicstring[]Name{get;set;}
33
33
34
34
[Parameter(Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The Virtual Machine to restart.",ParameterSetName="Input")]
@@ -30,12 +31,12 @@ public class StopAzureVMCommand : IaaSDeploymentManagementCmdletBase
30
31
{
31
32
[Parameter(Position=1,Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The name of the Virtual Machine to stop.",ParameterSetName="ByName")]
32
33
[ValidateNotNullOrEmpty]
33
-
publicstringName{get;set;}
34
+
publicstring[]Name{get;set;}
34
35
35
36
[Parameter(Mandatory=true,ValueFromPipelineByPropertyName=true,HelpMessage="The Virtual Machine to restart.",ParameterSetName="Input")]
36
37
[ValidateNotNullOrEmpty]
37
38
[Alias("InputObject")]
38
-
publicModel.PersistentVMVM{get;set;}
39
+
publicModel.PersistentVM[]VM{get;set;}
39
40
40
41
[Parameter(Position=2,HelpMessage="Keeps the VM provisioned")]
0 commit comments