Show / Hide Table of Contents

Class FleetErrorSummary

The summary of a fleet error.

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

Properties

CompartmentId

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

The compartment OCID of the Fleet.

Remarks

Required

Errors

Declaration
[Required(ErrorMessage = "Errors is required.")]
[JsonProperty(PropertyName = "errors")]
public List<FleetErrorDetails> Errors { get; set; }
Property Value
Type Description
List<FleetErrorDetails>

List of fleet error details.

Remarks

Required

FleetId

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

The OCID of the Fleet.

Remarks

Required

FleetName

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

The display name of the Fleet.

Remarks

Required

TimeFirstSeen

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

The timestamp of the first time an error was detected.

Remarks

Required

TimeLastSeen

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

The timestamp of the last time an error was detected.

Remarks

Required

In this article
Back to top