Show / Hide Table of Contents

Class ManageModuleStreamsInScheduledJobDetails

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

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

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.

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