We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37f6a59 commit d51c868Copy full SHA for d51c868
src/Compute/Compute/ChangeLog.md
@@ -23,6 +23,7 @@
23
24
## Version 8.2.0
25
* Renamed parameter `-VmId` to `-SourceId` and added `-VmId` as an alias to `New-AzRestorePointCollection` cmdlet.
26
+* Added `TimeCreated` read-only field to `PSVirtualMachineScaleSetVMProfile` object.
27
28
## Version 8.1.0
29
* Added parameter `-SourceResourceId` to cmdlet `Add-AzVMDataDisk`.
src/Compute/Compute/Manual/PSVirtualMachineScaleSetVMProfile.cs
@@ -39,5 +39,6 @@ public class PSVirtualMachineScaleSetVMProfile
39
public CapacityReservationProfile CapacityReservation { get; set; }
40
public string UserData { get; set; }
41
public PSApplicationProfile ApplicationProfile { get; set; }
42
+ public System.DateTime? TimeCreated { get; private set; }
43
}
44
0 commit comments