Show / Hide Table of Contents

Class PatchRecommendationsDetailsSummary

Summary of patch recommendations for databases.

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

Properties

AbstractText

Declaration
[Required(ErrorMessage = "AbstractText is required.")]
[JsonProperty(PropertyName = "abstractText")]
public string AbstractText { get; set; }
Property Value
Type Description
string

Description of the patch recommendation.

Remarks

Required

ClassificationName

Declaration
[Required(ErrorMessage = "ClassificationName is required.")]
[JsonProperty(PropertyName = "classificationName")]
public string ClassificationName { get; set; }
Property Value
Type Description
string

Classification of the patch recommendation.

Remarks

Required

HasFixForCve

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

If the patch has a fix for a CVE.

Remarks

Required

PatchName

Declaration
[Required(ErrorMessage = "PatchName is required.")]
[JsonProperty(PropertyName = "patchName")]
public string PatchName { get; set; }
Property Value
Type Description
string

Name of the patch recommendation.

Remarks

Required

TimeEvaluated

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

Evaluation date for the patch recommendation.

Remarks

Required

TimeReleased

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

Release date for the patch.

Remarks

Required

In this article
Back to top