Show / Hide Table of Contents

Class FleetErrorDetails

Details of a fleet error.

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

Properties

Details

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

Optional string containing additional details.

Reason

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

The fleet error reason.

Remarks

Required

TimeLastSeen

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

The date and time the resource was last reported to JMS. This is potentially after the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

Remarks

Required

In this article
Back to top