Show / Hide Table of Contents

Class AddPackagesToSoftwareSourceDetails

Provides the list of packages to add to a software source.

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

Properties

IsContinueOnMissingPackages

Declaration
[JsonProperty(PropertyName = "isContinueOnMissingPackages")]
public bool? IsContinueOnMissingPackages { get; set; }
Property Value
Type Description
bool?

Indicates whether the service should generate a custom software source when the package list contains invalid values. When set to true, the service ignores any invalid packages and generates the custom software source with using the valid packages.

Packages

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

List of packages specified by the name of the package (N) or the full package name (NVRA or NEVRA).

Remarks

Required

In this article
Back to top