Show / Hide Table of Contents

Class AvailableUpdateSummary

An update available for a managed instance

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

Properties

Architecture

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

The architecture for which this package was built

AvailableVersion

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

Version of the package available for update

Remarks

Required

DisplayName

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

Package name

Remarks

Required

Errata

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

List of errata containing this update

InstalledVersion

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

Version of the installed package

Remarks

Required

Name

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

Unique identifier for the package available for update. NOTE - This is not an OCID

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

SoftwareSources

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

list of software sources that provide the software package

Type

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

Type of the package

Remarks

Required

UpdateType

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

The purpose of this update.

In this article
Back to top