Show / Hide Table of Contents

Class ChannelStatus

Runtime status summary of a Channel, aggregating information about health and operational indicators.

Inheritance
object
ChannelStatus
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MysqlService.Models
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class ChannelStatus

Properties

ChannelStatusResult

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

Required

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time that the Work Request to generate the Channel status was issued, as described by RFC 3339.

Remarks

Required

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time that the Channel status was generated, as described by RFC 3339.

Remarks

Required

In this article
Back to top