Skip to content

Commit 9abc791

Browse files
FQDN => FullyQualifiedDomainName
1 parent c6e89ca commit 9abc791

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/ResourceManager/Compute/Commands.Compute/Models/PSVirtualMachine.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ public string ResourceGroupName
9999
// Gets or sets the virtual machine zones.
100100
public IList<string> Zones { get; set; }
101101

102-
public string Fqdn { get; set; }
102+
// Gets or sets the FQDN.
103+
public string FullyQualifiedDomainName { get; set; }
103104
}
104105
}

src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/NewAzureVMCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ async Task StrategyExecuteCmdletAsync(IAsyncCmdlet asyncCmdlet)
261261
if (result != null)
262262
{
263263
var psResult = ComputeAutoMapperProfile.Mapper.Map<PSVirtualMachine>(result);
264-
psResult.Fqdn = fqdn;
264+
psResult.FullyQualifiedDomainName = fqdn;
265265
asyncCmdlet.WriteVerbose(isWindows
266266
? "Use 'mstsc /v:" + fqdn + "' to connect to the VM."
267267
: "Use 'ssh " + Credential.UserName + "@" + fqdn + "' to connect to the VM.");

0 commit comments

Comments
 (0)