Show / Hide Table of Contents

Class AvailabilityHistorySummary

Availability history of Management Agent.

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

Properties

AvailabilityStatus

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

The availability status of managementAgent

Remarks

Required

ManagementAgentId

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

agent identifier

Remarks

Required

TimeAvailabilityStatusEnded

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

The time till which the Management Agent was known to be in the availability status. An RFC3339 formatted datetime string

TimeAvailabilityStatusStarted

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

The time at which the Management Agent moved to the availability status. An RFC3339 formatted datetime string

In this article
Back to top