Class MonitorStatusCountMap
Details of the monitor count per state. Example: { "total" : 5, "enabled" : 3 , "disabled" : 2, "invalid" : 0 }
Inherited Members
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