Show / Hide Table of Contents

Class AvailabilityConfiguration

Monitor availability configuration details.

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

Properties

MaxAllowedFailuresPerInterval

Declaration
[JsonProperty(PropertyName = "maxAllowedFailuresPerInterval")]
public int? MaxAllowedFailuresPerInterval { get; set; }
Property Value
Type Description
int?

Maximum number of failed runs allowed in an interval. If an interval has more failed runs than the specified value, then the interval will be classified as UNAVAILABLE.

MinAllowedRunsPerInterval

Declaration
[JsonProperty(PropertyName = "minAllowedRunsPerInterval")]
public int? MinAllowedRunsPerInterval { get; set; }
Property Value
Type Description
int?

Minimum number of runs allowed in an interval. If an interval has fewer runs than the specified value, then the interval will be classified as UNKNOWN and will be excluded from the availability calculations.

In this article
Back to top