Show / Hide Table of Contents

Class AvailableSoftwareSourceSummary

A software source which can be added to a managed instance. Once a software source is added, packages from that software source can be installed on that managed instance.

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

Properties

CompartmentId

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

OCID for the Compartment

Remarks

Required

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

Id

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

unique identifier that is immutable on creation

Remarks

Required

ParentId

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

OCID for the parent software source, if there is one

ParentName

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

Display name of the parent software source, if there is one

In this article
Back to top