Show / Hide Table of Contents

Class ModuleStreamProfileOnManagedInstanceSummary

Summary information pertaining to a module stream profile on a managed instance

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

Properties

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

ProfileName

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

The name of the profile

Remarks

Required

Status

Declaration
[Required(ErrorMessage = "Status is required.")]
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ModuleStreamProfileOnManagedInstanceSummary.StatusEnum? Status { get; set; }
Property Value
Type Description
ModuleStreamProfileOnManagedInstanceSummary.StatusEnum?

The status of the profile.
A profile with the "INSTALLED" status indicates that the profile has been installed.
A profile with the "AVAILABLE" status indicates that the profile is not installed, but can be.

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

TimeModified

Declaration
[JsonProperty(PropertyName = "timeModified")]
public DateTime? TimeModified { get; set; }
Property Value
Type Description
DateTime?

The date and time of the last status change for this profile, as described in RFC 3339, section 14.29.

In this article
Back to top