Show / Hide Table of Contents

Class UpdateModuleDetails

A description of a module and its stream

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

Properties

ModuleName

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

The name of a module

Remarks

Required

Streams

Declaration
[JsonProperty(PropertyName = "streams")]
public List<UpdateModuleStreamDetails> Streams { get; set; }
Property Value
Type Description
List<UpdateModuleStreamDetails>

The streams of the module

In this article
Back to top