Show / Hide Table of Contents

Class StationHealth

Overall health information of the management station.

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

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

Explanation of the health status.

State

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

Overall health status of the management station.

Remarks

Required

In this article
Back to top