Show / Hide Table of Contents

Class ModuleSummary

Provides summary information about a module which is provided by a software source.

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

Properties

Name

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

The name of the module.

Remarks

Required

SoftwareSourceId

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

The OCID of the software source.

Remarks

Required

Streams

Declaration
[JsonProperty(PropertyName = "streams")]
public List<string> Streams { get; set; }
Property Value
Type Description
List<string>

List of stream names.

In this article
Back to top