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.OsmanagementService.Models
Assembly: OCI.DotNetSDK.Osmanagement.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.

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

In this article
Back to top