File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/ResourceManager/Compute/Commands.Compute Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ public string ResourceGroupName
99
99
// Gets or sets the virtual machine zones.
100
100
public IList < string > Zones { get ; set ; }
101
101
102
- public string Fqdn { get ; set ; }
102
+ // Gets or sets the FQDN.
103
+ public string FullyQualifiedDomainName { get ; set ; }
103
104
}
104
105
}
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ async Task StrategyExecuteCmdletAsync(IAsyncCmdlet asyncCmdlet)
261
261
if ( result != null )
262
262
{
263
263
var psResult = ComputeAutoMapperProfile . Mapper . Map < PSVirtualMachine > ( result ) ;
264
- psResult . Fqdn = fqdn ;
264
+ psResult . FullyQualifiedDomainName = fqdn ;
265
265
asyncCmdlet . WriteVerbose ( isWindows
266
266
? "Use 'mstsc /v:" + fqdn + "' to connect to the VM."
267
267
: "Use 'ssh " + Credential . UserName + "@" + fqdn + "' to connect to the VM." ) ;
You can’t perform that action at this time.
0 commit comments