diff --git a/src/Compute/Compute/ChangeLog.md b/src/Compute/Compute/ChangeLog.md index a31d2a9e4704..a10a56ba52da 100644 --- a/src/Compute/Compute/ChangeLog.md +++ b/src/Compute/Compute/ChangeLog.md @@ -23,6 +23,7 @@ ## Version 8.2.0 * Renamed parameter `-VmId` to `-SourceId` and added `-VmId` as an alias to `New-AzRestorePointCollection` cmdlet. +* Added `TimeCreated` read-only field to `PSVirtualMachineScaleSetVMProfile` object. ## Version 8.1.0 * Added parameter `-SourceResourceId` to cmdlet `Add-AzVMDataDisk`. diff --git a/src/Compute/Compute/Manual/PSVirtualMachineScaleSetVMProfile.cs b/src/Compute/Compute/Manual/PSVirtualMachineScaleSetVMProfile.cs index 1e4eba7d2c80..df108bd70467 100644 --- a/src/Compute/Compute/Manual/PSVirtualMachineScaleSetVMProfile.cs +++ b/src/Compute/Compute/Manual/PSVirtualMachineScaleSetVMProfile.cs @@ -39,5 +39,6 @@ public class PSVirtualMachineScaleSetVMProfile public CapacityReservationProfile CapacityReservation { get; set; } public string UserData { get; set; } public PSApplicationProfile ApplicationProfile { get; set; } + public System.DateTime? TimeCreated { get; private set; } } }