Show / Hide Table of Contents

Class PluginErrorSummary

Entity that represents an error identified in a plugin.

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

Properties

AgentType

Declaration
[JsonProperty(PropertyName = "agentType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public AgentType? AgentType { get; set; }
Property Value
Type Description
AgentType?

The agent type.

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<PluginErrorDetails> Errors { get; set; }
Property Value
Type Description
List<PluginErrorDetails>

List of plugin error details.

Remarks

Required

HostName

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

The HostName or Compute Instance name of the Managed Instance running the plugin.

ManagedInstanceId

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

The OCID of the Managed Instance running the plugin.

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