Show / Hide Table of Contents

Class Erratum

Details about the erratum.

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

Properties

AdvisoryType

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

Type of the erratum.

AffectedInstances

Declaration
[JsonProperty(PropertyName = "affectedInstances")]
public List<Id> AffectedInstances { get; set; }
Property Value
Type Description
List<Id>

list of managed instances to this 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

Description

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

Details describing the erratum.

From

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

Information specifying from where the erratum was release.

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

Packages

Declaration
[JsonProperty(PropertyName = "packages")]
public List<SoftwarePackageSummary> Packages { get; set; }
Property Value
Type Description
List<SoftwarePackageSummary>

list of Packages affected by this erratum

References

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

Information describing how to find more information about the erratum.

RelatedCves

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

list of CVEs applicable to this erratum

SoftwareSources

Declaration
[JsonProperty(PropertyName = "softwareSources")]
public List<Id> SoftwareSources { get; set; }
Property Value
Type Description
List<Id>

list of Software Sources

Solution

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

Information describing how the erratum can be resolved.

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