Show / Hide Table of Contents

Class Recurrence

Alarm suppression recurring schedule. Only one recurrence condition is supported within the list of preconditions for a suppression (suppressionConditions).

Inheritance
object
SuppressionCondition
Recurrence
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.MonitoringService.Models
Assembly: OCI.DotNetSDK.Monitoring.dll
Syntax
public class Recurrence : SuppressionCondition

Properties

SuppressionDuration

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

Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: PT1M (1 minute). Maximum: PT24H (24 hours).

Remarks

Required

SuppressionRecurrence

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

Frequency and start time of the recurring suppression. The format follows the iCalendar specification (RFC 5545, section 3.3.10). Supported rule parts:

  • FREQ: Frequency of the recurring suppression: WEEKLY or DAILY only.
  • BYDAY: Comma separated days. Use with weekly suppressions only. Supported values: MO, TU, WE, TH, FR, SA ,SU.
  • BYHOUR, BYMINUTE, BYSECOND: Start time in UTC, after timeSuppressFrom value. Default is 00:00:00 UTC after timeSuppressFrom.
Remarks

Required

In this article
Back to top