AvailablePatchSummary Constructors

Definition

Overloads

AvailablePatchSummary()

Initializes a new instance of the AvailablePatchSummary class.

AvailablePatchSummary(PatchOperationStatus, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, ApiError)

Initializes a new instance of the AvailablePatchSummary class.

AvailablePatchSummary()

Initializes a new instance of the AvailablePatchSummary class.

public AvailablePatchSummary ();
Public Sub New ()

Applies to

AvailablePatchSummary(PatchOperationStatus, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, Nullable<DateTime>, Nullable<DateTime>, ApiError)

Initializes a new instance of the AvailablePatchSummary class.

public AvailablePatchSummary (Microsoft.Azure.Management.Compute.Fluent.Models.PatchOperationStatus status = default, string assessmentActivityId = default, bool? rebootPending = default, int? criticalAndSecurityPatchCount = default, int? otherPatchCount = default, DateTime? startTime = default, DateTime? lastModifiedTime = default, Microsoft.Azure.Management.Compute.Fluent.Models.ApiError error = default);
new Microsoft.Azure.Management.Compute.Fluent.Models.AvailablePatchSummary : Microsoft.Azure.Management.Compute.Fluent.Models.PatchOperationStatus * string * Nullable<bool> * Nullable<int> * Nullable<int> * Nullable<DateTime> * Nullable<DateTime> * Microsoft.Azure.Management.Compute.Fluent.Models.ApiError -> Microsoft.Azure.Management.Compute.Fluent.Models.AvailablePatchSummary
Public Sub New (Optional status As PatchOperationStatus = Nothing, Optional assessmentActivityId As String = Nothing, Optional rebootPending As Nullable(Of Boolean) = Nothing, Optional criticalAndSecurityPatchCount As Nullable(Of Integer) = Nothing, Optional otherPatchCount 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
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'

assessmentActivityId
String

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

rebootPending
Nullable<Boolean>

The overall reboot status of the VM. It will be true when partially installed patches require a reboot to complete installation but the reboot has not yet occurred.

criticalAndSecurityPatchCount
Nullable<Int32>

The number of critical or security patches that have been detected as available and not yet installed.

otherPatchCount
Nullable<Int32>

The number of all available patches excluding critical and security.

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