Show / Hide Table of Contents

Class ManagedInstanceModuleSummary

Provides summary information for a module on a managed instance.

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

Properties

ActiveStreams

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

List of streams that are active in the module.

DisabledStreams

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

List of streams that are disabled in the module.

EnabledStream

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

The stream that is enabled in the module.

InstalledProfiles

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

List of installed profiles in the enabled stream of the module.

Name

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

The module name.

Remarks

Required

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 and the associated streams.

In this article
Back to top