Show / Hide Table of Contents

Class ModuleStreamProfileDetails

Updatable information for a module stream profile

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

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

ProfileName

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

The name of a profile of the specified module stream

Remarks

Required

StreamName

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

The name of a stream of the specified module

Remarks

Required

In this article
Back to top