Show / Hide Table of Contents

Class ModuleStream

An object that defines a module stream provided by a software source.

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

Properties

ArchType

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

The architecture for which the packages in this module stream were built.

Description

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

A description of the contents of the module stream.

IsDefault

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

Indicates if this stream is the default for its module.

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

Packages

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

A list of packages that are contained by the stream. Each element in the list is the name of a package. The name is suitable to use as an argument to other OS Management Hub APIs that interact directly with packages.

Profiles

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

A list of profiles that are part of the stream. Each element in the list is the name of a profile. The name is suitable to use as an argument to other OS Management Hub APIs that interact directly with module stream profiles. However, it is not URL encoded.

SoftwareSourceId

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

The OCID of the software source that provides this module stream.

In this article
Back to top