Show / Hide Table of Contents

Class ManageModuleStreamsOnManagedInstanceDetails

The set of changes to make to the state of the modules, streams, and profiles on a managed instance

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

Properties

Disable

Declaration
[JsonProperty(PropertyName = "disable")]
public List<ModuleStreamDetails> Disable { get; set; }
Property Value
Type Description
List<ModuleStreamDetails>

The set of module streams to disable. Any profiles that are installed for the module stream will be removed as part of the operation. Once complete, the streams will be in 'DISABLED' status.

Enable

Declaration
[JsonProperty(PropertyName = "enable")]
public List<ModuleStreamDetails> Enable { get; set; }
Property Value
Type Description
List<ModuleStreamDetails>

The set of module streams to enable. If any streams of a module are already enabled, the service switches from the current stream to the new stream. Once complete, the streams will be in 'ENABLED' status.

Install

Declaration
[JsonProperty(PropertyName = "install")]
public List<ModuleStreamProfileDetails> Install { get; set; }
Property Value
Type Description
List<ModuleStreamProfileDetails>

The set of module stream profiles to install. Any packages that are part of the profile are installed on the managed instance. Once complete, the profile will be in 'INSTALLED' status. The operation will return an error if you attempt to install a profile from a disabled stream, unless enabling the new module stream is included in this operation.

IsDryRun

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

Indicates if this operation is a dry run or if the operation should be committed. If set to true, the result of the operation will be evaluated but not committed. If set to false, the operation is committed to the managed instance. The default is false.

Remove

Declaration
[JsonProperty(PropertyName = "remove")]
public List<ModuleStreamProfileDetails> Remove { get; set; }
Property Value
Type Description
List<ModuleStreamProfileDetails>

The set of module stream profiles to remove. Once complete, the profile will be in 'AVAILABLE' status. The status of packages within the profile after the operation is complete is defined by the package manager on the managed instance group.

WorkRequestDetails

Declaration
[JsonProperty(PropertyName = "workRequestDetails")]
public WorkRequestDetails WorkRequestDetails { get; set; }
Property Value
Type Description
WorkRequestDetails
In this article
Back to top