Show / Hide Table of Contents

Class ManageModuleStreamsOnManagedInstanceGroupDetails

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

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

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.

Enable

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

The set of module streams to enable.

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.

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(s). 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.

WorkRequestDetails

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