Show / Hide Table of Contents

Class VendorSoftwareSource

The object that defines a vendor software source. A software source is a collection of packages. For more information, see Managing Software Sources.

Inheritance
object
SoftwareSource
VendorSoftwareSource
Inherited Members
SoftwareSource.Id
SoftwareSource.CompartmentId
SoftwareSource.DisplayName
SoftwareSource.TimeCreated
SoftwareSource.Description
SoftwareSource.Availability
SoftwareSource.AvailabilityAtOci
SoftwareSource.RepoId
SoftwareSource.OsFamily
SoftwareSource.ArchType
SoftwareSource.LifecycleState
SoftwareSource.PackageCount
SoftwareSource.Url
SoftwareSource.ChecksumType
SoftwareSource.GpgKeyUrl
SoftwareSource.GpgKeyId
SoftwareSource.GpgKeyFingerprint
SoftwareSource.Size
SoftwareSource.FreeformTags
SoftwareSource.DefinedTags
SoftwareSource.SystemTags
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 VendorSoftwareSource : SoftwareSource

Properties

IsMandatoryForAutonomousLinux

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

Indicates whether the software source is required for the Autonomous Linux service.

OriginSoftwareSourceId

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

The OCID of the vendor software source in the root compartment. This property applies only to replicated vendor software sources.

VendorName

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

Name of the vendor providing the software source.

Remarks

Required

In this article
Back to top