Show / Hide Table of Contents

Class MonitorStatusCountMap

Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }

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

Properties

Disabled

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

Number of disabled monitors using the script.

Remarks

Required

Enabled

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

Number of enabled monitors using the script.

Remarks

Required

Invalid

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

Number of invalid monitors using the script.

Remarks

Required

Total

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

Total number of monitors using the script.

Remarks

Required

In this article
Back to top