다음을 통해 공유


UpgradeDetails Constructors

Definition

Overloads

UpgradeDetails()

Initializes a new instance of the UpgradeDetails class.

UpgradeDetails(String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, String, String, String, String, String)

Initializes a new instance of the UpgradeDetails class.

UpgradeDetails()

Initializes a new instance of the UpgradeDetails class.

public UpgradeDetails ();
Public Sub New ()

Applies to

UpgradeDetails(String, Nullable<DateTime>, Nullable<DateTime>, Nullable<DateTime>, String, String, String, String, String)

Initializes a new instance of the UpgradeDetails class.

public UpgradeDetails (string operationId = default, DateTime? startTimeUtc = default, DateTime? lastUpdatedTimeUtc = default, DateTime? endTimeUtc = default, string status = default, string message = default, string triggerType = default, string upgradedResourceId = default, string previousResourceId = default);
new Microsoft.Azure.Management.RecoveryServices.Models.UpgradeDetails : string * Nullable<DateTime> * Nullable<DateTime> * Nullable<DateTime> * string * string * string * string * string -> Microsoft.Azure.Management.RecoveryServices.Models.UpgradeDetails
Public Sub New (Optional operationId As String = Nothing, Optional startTimeUtc As Nullable(Of DateTime) = Nothing, Optional lastUpdatedTimeUtc As Nullable(Of DateTime) = Nothing, Optional endTimeUtc As Nullable(Of DateTime) = Nothing, Optional status As String = Nothing, Optional message As String = Nothing, Optional triggerType As String = Nothing, Optional upgradedResourceId As String = Nothing, Optional previousResourceId As String = Nothing)

Parameters

operationId
String

ID of the vault upgrade operation.

startTimeUtc
Nullable<DateTime>

UTC time at which the upgrade operation has started.

lastUpdatedTimeUtc
Nullable<DateTime>

UTC time at which the upgrade operation status was last updated.

endTimeUtc
Nullable<DateTime>

UTC time at which the upgrade operation has ended.

status
String

Status of the vault upgrade operation. Possible values include: 'Unknown', 'InProgress', 'Upgraded', 'Failed'

message
String

Message to the user containing information about the upgrade operation.

triggerType
String

The way the vault upgrade was triggered. Possible values include: 'UserTriggered', 'ForcedUpgrade'

upgradedResourceId
String

Resource ID of the upgraded vault.

previousResourceId
String

Resource ID of the vault before the upgrade.

Applies to