Show / Hide Table of Contents

Class SoftwarePackageSearchSummary

Summary information for a software package

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

Properties

AdvisoryType

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

Type of the erratum.

Architecture

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

the architecture for which this software was built

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 software package

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. NOTE - This is not an OCID

Remarks

Required

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

Summary

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

a summary description of 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

Version

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

Version of the package

Remarks

Required

In this article
Back to top