Show / Hide Table of Contents

Class ManagementApplianceConnectionStatus

Current state of management appliance connection.

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

Properties

Details

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

Information about current connection status.

State

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

Current connection status.

Remarks

Required

Type

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

Type of connection.

Remarks

Required

In this article
Back to top