Show / Hide Table of Contents

Class VersionedCustomSoftwareSourceSummary

Provides summary information for a versioned custom software source.

Inheritance
object
SoftwareSourceSummary
VersionedCustomSoftwareSourceSummary
Inherited Members
SoftwareSourceSummary.Id
SoftwareSourceSummary.CompartmentId
SoftwareSourceSummary.DisplayName
SoftwareSourceSummary.RepoId
SoftwareSourceSummary.Url
SoftwareSourceSummary.TimeCreated
SoftwareSourceSummary.TimeUpdated
SoftwareSourceSummary.Description
SoftwareSourceSummary.Availability
SoftwareSourceSummary.AvailabilityAtOci
SoftwareSourceSummary.OsFamily
SoftwareSourceSummary.ArchType
SoftwareSourceSummary.PackageCount
SoftwareSourceSummary.LifecycleState
SoftwareSourceSummary.Size
SoftwareSourceSummary.FreeformTags
SoftwareSourceSummary.DefinedTags
SoftwareSourceSummary.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 VersionedCustomSoftwareSourceSummary : SoftwareSourceSummary

Properties

SoftwareSourceSubType

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

Identifies how the versioned custom software source was created.

SoftwareSourceVersion

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

The version to assign to this custom software source.

Remarks

Required

VendorSoftwareSources

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

List of vendor software sources that are used for the basis of the versioned custom software source.

Remarks

Required

In this article
Back to top