Show / Hide Table of Contents

Class ManagedInstanceErratumSummary

Provides summary information about an erratum associated with a managed instance.

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

Properties

AdvisoryType

Declaration
[Required(ErrorMessage = "AdvisoryType is required.")]
[JsonProperty(PropertyName = "advisoryType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ClassificationTypes? AdvisoryType { get; set; }
Property Value
Type Description
ClassificationTypes?

The advisory type of the erratum.

Remarks

Required

Name

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

The identifier of the erratum.

Remarks

Required

Packages

Declaration
[Required(ErrorMessage = "Packages is required.")]
[JsonProperty(PropertyName = "packages")]
public List<PackageNameSummary> Packages { get; set; }
Property Value
Type Description
List<PackageNameSummary>

The list of packages affected by this erratum.

Remarks

Required

RelatedCves

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

The list of CVEs applicable to this erratum.

Synopsis

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

A summary description of the erratum.

TimeIssued

Declaration
[JsonProperty(PropertyName = "timeIssued")]
public DateTime? TimeIssued { get; set; }
Property Value
Type Description
DateTime?

The date and time the package was issued by a providing erratum (in RFC 3339 format).

In this article
Back to top