Skip to content

Commit e56c6f1

Browse files
committed
Fixing the parameter name
1 parent 40eea94 commit e56c6f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vnet/GetAzureRemoteAppVpnDeviceConfigScript.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class GetAzureRemoteAppVpnDeviceConfigScript : RdsCmdlet
3939
Position = 2,
4040
ValueFromPipeline = true,
4141
HelpMessage = "Device model.")]
42-
public string VpnDevice { get; set; }
42+
public string Platform { get; set; }
4343

4444
[Parameter(Mandatory = true,
4545
Position = 3,
@@ -49,7 +49,7 @@ public class GetAzureRemoteAppVpnDeviceConfigScript : RdsCmdlet
4949

5050
public override void ExecuteCmdlet()
5151
{
52-
VNetConfigScriptResult response = CallClient(() => Client.VNet.GetVpnDeviceConfigScript(VNetName, Vendor, VpnDevice, OSFamily), Client.VNet);
52+
VNetConfigScriptResult response = CallClient(() => Client.VNet.GetVpnDeviceConfigScript(VNetName, Vendor, Platform, OSFamily), Client.VNet);
5353
if (response != null)
5454
{
5555
WriteObject(response.ConfigScript);

0 commit comments

Comments
 (0)