CacheUpgradeStatus Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CacheUpgradeStatus() |
Initializes a new instance of the CacheUpgradeStatus class. |
CacheUpgradeStatus(String, String, Nullable<DateTime>, Nullable<DateTime>, String) |
Initializes a new instance of the CacheUpgradeStatus class. |
CacheUpgradeStatus()
Initializes a new instance of the CacheUpgradeStatus class.
public CacheUpgradeStatus ();
Public Sub New ()
Applies to
CacheUpgradeStatus(String, String, Nullable<DateTime>, Nullable<DateTime>, String)
Initializes a new instance of the CacheUpgradeStatus class.
public CacheUpgradeStatus (string currentFirmwareVersion = default, string firmwareUpdateStatus = default, DateTime? firmwareUpdateDeadline = default, DateTime? lastFirmwareUpdate = default, string pendingFirmwareVersion = default);
new Microsoft.Azure.Management.StorageCache.Models.CacheUpgradeStatus : string * string * Nullable<DateTime> * Nullable<DateTime> * string -> Microsoft.Azure.Management.StorageCache.Models.CacheUpgradeStatus
Public Sub New (Optional currentFirmwareVersion As String = Nothing, Optional firmwareUpdateStatus As String = Nothing, Optional firmwareUpdateDeadline As Nullable(Of DateTime) = Nothing, Optional lastFirmwareUpdate As Nullable(Of DateTime) = Nothing, Optional pendingFirmwareVersion As String = Nothing)
Parameters
- currentFirmwareVersion
- String
Version string of the firmware currently installed on this Cache.
- firmwareUpdateStatus
- String
True if there is a firmware update ready to install on this Cache. The firmware will automatically be installed after firmwareUpdateDeadline if not triggered earlier via the upgrade operation. Possible values include: 'available', 'unavailable'
Time at which the pending firmware update will automatically be installed on the Cache.
- pendingFirmwareVersion
- String
When firmwareUpdateAvailable is true, this field holds the version string for the update.
Applies to
Azure SDK for .NET