Show / Hide Table of Contents

Class PatchRecommendationSummary

Total count summary of patch recommendations for databases.

Inheritance
object
PatchRecommendationSummary
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 PatchRecommendationSummary

Properties

PatchAvailable

Declaration
[Required(ErrorMessage = "PatchAvailable is required.")]
[JsonProperty(PropertyName = "patchAvailable")]
public int? PatchAvailable { get; set; }
Property Value
Type Description
int?

Number of databases pending to be updated.

Remarks

Required

Total

Declaration
[Required(ErrorMessage = "Total is required.")]
[JsonProperty(PropertyName = "total")]
public int? Total { get; set; }
Property Value
Type Description
int?

Total number of databases pending to be updated and/or with latest patches.

Remarks

Required

UpToDate

Declaration
[Required(ErrorMessage = "UpToDate is required.")]
[JsonProperty(PropertyName = "upToDate")]
public int? UpToDate { get; set; }
Property Value
Type Description
int?

Number of databases with latest patches.

Remarks

Required

In this article
Back to top