Show / Hide Table of Contents

Class SoftwareSourceDetails

Provides identifying information for the specified software source.

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

Properties

Description

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

Software source description.

DisplayName

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

Software source name.

Id

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

The OCID of the software source.

Remarks

Required

IsMandatoryForAutonomousLinux

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

Indicates whether this is a required software source for Autonomous Linux instances. If true, the user can't unselect it.

SoftwareSourceType

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

Type of the software source.

In this article
Back to top