Show / Hide Table of Contents

Class SoftwareSourceVendorSummary

Provides summary information about a software source vendor, including name, operating system family, and architecture type.

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

Properties

ArchTypes

Declaration
[Required(ErrorMessage = "ArchTypes is required.")]
[JsonProperty(PropertyName = "archTypes", ItemConverterType = typeof(ResponseEnumConverter))]
public List<ArchType> ArchTypes { get; set; }
Property Value
Type Description
List<ArchType>

List of corresponding architecture types.

Remarks

Required

Name

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

Name of the vendor providing the software source.

Remarks

Required

OsFamilies

Declaration
[Required(ErrorMessage = "OsFamilies is required.")]
[JsonProperty(PropertyName = "osFamilies", ItemConverterType = typeof(ResponseEnumConverter))]
public List<OsFamily> OsFamilies { get; set; }
Property Value
Type Description
List<OsFamily>

List of corresponding operating system families.

Remarks

Required

In this article
Back to top