Show / Hide Table of Contents

Class OsPatchPackageSummary

Summary of a package contained in a os patch.

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

Properties

PackageName

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

The package's name.

Remarks

Required

PackageType

Declaration
[JsonProperty(PropertyName = "packageType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OsPatchPackageSummary.PackageTypeEnum? PackageType { get; set; }
Property Value
Type Description
OsPatchPackageSummary.PackageTypeEnum?

Package type based on package installation manager.

RelatedCVEs

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

Related CVEs of the package update.

Remarks

Required

TargetVersion

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

The target version of the package.

UpdateType

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

The action that current package will be executed on the cluster.

Remarks

Required

In this article
Back to top