Show / Hide Table of Contents

Class PatchOperationsSummary

Patch operation list summary by status record.

Inheritance
object
PatchOperationsSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DblmService.Models
Assembly: OCI.DotNetSDK.Dblm.dll
Syntax
public class PatchOperationsSummary

Properties

FailedPatchOpsCount

Declaration
[JsonProperty(PropertyName = "failedPatchOpsCount")]
public int? FailedPatchOpsCount { get; set; }
Property Value
Type Description
int?

Total number of failed Patch operations.

RunningPatchOpsCount

Declaration
[JsonProperty(PropertyName = "runningPatchOpsCount")]
public int? RunningPatchOpsCount { get; set; }
Property Value
Type Description
int?

Total number of in progress Patch operations.

ScheduledPatchOpsCount

Declaration
[JsonProperty(PropertyName = "scheduledPatchOpsCount")]
public int? ScheduledPatchOpsCount { get; set; }
Property Value
Type Description
int?

Total number of scheduled Patch operations.

SuccessfulPatchOpsCount

Declaration
[JsonProperty(PropertyName = "successfulPatchOpsCount")]
public int? SuccessfulPatchOpsCount { get; set; }
Property Value
Type Description
int?

Total number of successful Patch operations.

WarningsPatchOpsCount

Declaration
[JsonProperty(PropertyName = "warningsPatchOpsCount")]
public int? WarningsPatchOpsCount { get; set; }
Property Value
Type Description
int?

Total number of Patch operations that have warnings.

In this article
Back to top