Show / Hide Table of Contents

Class SoftwareSourceRepoSummary

Provides summary information for available repos to add directly to compartments. A software source contains a collection of packages. For more information, see Managing Software Sources.

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

Properties

ArchType

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

The architecture type supported by the software source.

Remarks

Required

Description

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

Description of the software source. For custom software sources, this is user-specified.

DisplayName

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

User-friendly name for the software source.

Remarks

Required

OsFamily

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

The OS family of the software source.

Remarks

Required

RepoId

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

The repository ID for the software source.

Remarks

Required

SoftwareSourceType

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

Type of software source.

Remarks

Required

In this article
Back to top