Show / Hide Table of Contents

Class ModuleStreamSummary

Provides the summary information for a module stream contained within a software source.

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

Properties

IsLatest

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

Indicates whether this module stream is the latest.

ModuleName

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

The name of the module that contains the stream.

Remarks

Required

Name

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

The name of the stream.

Remarks

Required

Profiles

Declaration
[Required(ErrorMessage = "Profiles is required.")]
[JsonProperty(PropertyName = "profiles")]
public List<string> Profiles { get; set; }
Property Value
Type Description
List<string>

List of profiles in the stream.

Remarks

Required

SoftwareSourceId

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

The OCID of the software source that contains the the module stream.

In this article
Back to top