Show / Hide Table of Contents

Class ModuleStreamProfile

An object that defines a module stream profile provide by a software source.

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

Properties

Description

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

A description of the contents of the module stream profile.

IsDefault

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

Indicates if this profile is the default for its module stream.

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 profile.

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 profile.

Remarks

Required

Packages

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

A list of packages that constitute the profile. 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.

Remarks

Required

StreamName

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

The name of the stream that contains the profile.

Remarks

Required

In this article
Back to top