共用方式為


LastPatchInstallationSummary Constructors

Definition

Overloads

LastPatchInstallationSummary()

Initializes a new instance of the LastPatchInstallationSummary class.

LastPatchInstallationSummary(String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, ApiError)

Initializes a new instance of the LastPatchInstallationSummary class.

LastPatchInstallationSummary()

Initializes a new instance of the LastPatchInstallationSummary class.

public LastPatchInstallationSummary ();
Public Sub New ()

Applies to

LastPatchInstallationSummary(String, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, ApiError)

Initializes a new instance of the LastPatchInstallationSummary class.

public LastPatchInstallationSummary (string status = default, string installationActivityId = default, bool? maintenanceWindowExceeded = default, int? notSelectedPatchCount = default, int? excludedPatchCount = default, int? pendingPatchCount = default, int? installedPatchCount = default, int? failedPatchCount = default, DateTime? startTime = default, DateTime? lastModifiedTime = default, Microsoft.Azure.Management.Compute.Models.ApiError error = default);
new Microsoft.Azure.Management.Compute.Models.LastPatchInstallationSummary : string * string * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<DateTime> * Nullable<DateTime> * Microsoft.Azure.Management.Compute.Models.ApiError -> Microsoft.Azure.Management.Compute.Models.LastPatchInstallationSummary
Public Sub New (Optional status As String = Nothing, Optional installationActivityId As String = Nothing, Optional maintenanceWindowExceeded As Nullable(Of Boolean) = Nothing, Optional notSelectedPatchCount As Nullable(Of Integer) = Nothing, Optional excludedPatchCount As Nullable(Of Integer) = Nothing, Optional pendingPatchCount As Nullable(Of Integer) = Nothing, Optional installedPatchCount As Nullable(Of Integer) = Nothing, Optional failedPatchCount As Nullable(Of Integer) = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional lastModifiedTime As Nullable(Of DateTime) = Nothing, Optional error As ApiError = Nothing)

Parameters

status
String

The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Unknown", "Failed", "Succeeded", or "CompletedWithWarnings.". Possible values include: 'Unknown', 'InProgress', 'Failed', 'Succeeded', 'CompletedWithWarnings'

installationActivityId
String

The activity ID of the operation that produced this result. It is used to correlate across CRP and extension logs.

maintenanceWindowExceeded
Nullable<Boolean>

Describes whether the operation ran out of time before it completed all its intended actions

notSelectedPatchCount
Nullable<Int32>

The number of all available patches but not going to be installed because it didn't match a classification or inclusion list entry.

excludedPatchCount
Nullable<Int32>

The number of all available patches but excluded explicitly by a customer-specified exclusion list match.

pendingPatchCount
Nullable<Int32>

The number of all available patches expected to be installed over the course of the patch installation operation.

installedPatchCount
Nullable<Int32>

The count of patches that successfully installed.

failedPatchCount
Nullable<Int32>

The count of patches that failed installation.

startTime
Nullable<DateTime>

The UTC timestamp when the operation began.

lastModifiedTime
Nullable<DateTime>

The UTC timestamp when the operation began.

error
ApiError

The errors that were encountered during execution of the operation. The details array contains the list of them.

Applies to