Show / Hide Table of Contents

Class ErratumSummary

Important changes for software. This can include security | advisories, bug fixes, or enhancements.

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

Properties

AdvisoryType

Declaration
[JsonProperty(PropertyName = "advisoryType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UpdateTypes? AdvisoryType { get; set; }
Property Value
Type Description
UpdateTypes?

Type of the erratum.

CompartmentId

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

OCID for the Compartment.

Remarks

Required

Id

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

OCID for the Erratum.

Remarks

Required

Issued

Declaration
[JsonProperty(PropertyName = "issued")]
public string Issued { get; set; }
Property Value
Type Description
string

date the erratum was issued

Name

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

Advisory name

Remarks

Required

RelatedCves

Declaration
[JsonProperty(PropertyName = "relatedCves")]
public List<string> RelatedCves { get; set; }
Property Value
Type Description
List<string>

list of CVEs applicable to this erratum

Synopsis

Declaration
[JsonProperty(PropertyName = "synopsis")]
public string Synopsis { get; set; }
Property Value
Type Description
string

Summary description of the erratum.

Updated

Declaration
[JsonProperty(PropertyName = "updated")]
public string Updated { get; set; }
Property Value
Type Description
string

most recent date the erratum was updated

In this article
Back to top