Show / Hide Table of Contents

Class SoftwareSourceAvailability

An object that defines the OCID and the availability of a vendor software source.

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

Properties

Availability

Declaration
[JsonProperty(PropertyName = "availability")]
[JsonConverter(typeof(StringEnumConverter))]
public Availability? Availability { get; set; }
Property Value
Type Description
Availability?

Availability of the software source to instances in private data centers or third-party clouds.

AvailabilityAtOci

Declaration
[JsonProperty(PropertyName = "availabilityAtOci")]
[JsonConverter(typeof(StringEnumConverter))]
public Availability? AvailabilityAtOci { get; set; }
Property Value
Type Description
Availability?

Availability of the software source to OCI instances.

SoftwareSourceId

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

The OCID of the vendor software source.

Remarks

Required

In this article
Back to top