Show / Hide Table of Contents

Class UpdatablePackageSummary

Provides summary information for a software package available for installation on a managed instance.

Inheritance
object
PackageSummary
UpdatablePackageSummary
Inherited Members
PackageSummary.DisplayName
PackageSummary.Name
PackageSummary.Type
PackageSummary.Version
PackageSummary.Architecture
PackageSummary.SoftwareSources
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 UpdatablePackageSummary : PackageSummary

Properties

Errata

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

List of errata applicable to this update.

InstalledVersion

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

The version of the package that is currently installed on the instance.

RelatedCves

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

List of CVEs applicable to this erratum.

UpdateType

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

The type of update.

Remarks

Required

In this article
Back to top