Udostępnij za pośrednictwem


LastPatchInstallationSummary Constructors

Definition

Overloads

LastPatchInstallationSummary()

Initializes a new instance of the LastPatchInstallationSummary class.

LastPatchInstallationSummary(PatchOperationStatus, String, Nullable<Boolean>, RebootStatus, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, String, 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(PatchOperationStatus, String, Nullable<Boolean>, RebootStatus, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, String, ApiError)

Initializes a new instance of the LastPatchInstallationSummary class.

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

Parameters

status
PatchOperationStatus

The overall success or failure status of the operation. It remains "InProgress" until the operation completes. At that point it will become "Failed", "Succeeded", or "CompletedWithWarnings.". Possible values include: '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

rebootStatus
RebootStatus

The reboot status of the machine after the patch operation. It will be in "NotNeeded" status if reboot is not needed after the patch operation. "Required" will be the status once the patch is applied and machine is required to reboot. "Started" will be the reboot status when the machine has started to reboot. "Failed" will be the status if the machine is failed to reboot. "Completed" will be the status once the machine is rebooted successfully. Possible values include: 'NotNeeded', 'Required', 'Started', 'Failed', 'Completed'

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.

startedBy
String

The person or system account that started the operation

error
ApiError

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

Applies to