Show / Hide Table of Contents

Class PluginErrorAggregationSummary

High level view of plugin error aggregations.

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

Properties

HealthyPluginCount

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

Count of plugins with no problems.

Remarks

Required

PluginErrorAggregations

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

List of plugin aggregation errors.

Remarks

Required

In this article
Back to top