Show / Hide Table of Contents

Class ModuleStreamProfileSummary

Provides the summary information for a module stream profile contained within a software source.

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

Properties

IsDefault

Declaration
[JsonProperty(PropertyName = "isDefault")]
public bool? IsDefault { get; set; }
Property Value
Type Description
bool?

Indicates if this profile is the default for the module stream.

ModuleName

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

The name of the module that contains the stream profile.

Remarks

Required

Name

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

The name of the profile.

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 the stream that contains the profile.

Remarks

Required

In this article
Back to top