Show / Hide Table of Contents

Class SummarizeAlarmSuppressionHistoryDetails

The configuration details for returning history of suppressions for the specified alarm.

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

Properties

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public Dictionary<string, string> Dimensions { get; set; }
Property Value
Type Description
Dictionary<string, string>

A filter to suppress only alarm state entries that include the set of specified dimension key-value pairs. If you specify {"availabilityDomain": "phx-ad-1"} and the alarm state entry corresponds to the set {"availabilityDomain": "phx-ad-1" and "resourceId": "ocid1.instance.region1.phx.exampleuniqueID"}, then this alarm will be included for suppression.
Example: {"resourceId": "ocid1.instance.region1.phx.exampleuniqueID"}

TimeSuppressFromGreaterThanOrEqualTo

Declaration
[JsonProperty(PropertyName = "timeSuppressFromGreaterThanOrEqualTo")]
public DateTime? TimeSuppressFromGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
DateTime?

A filter to return only entries with "timeSuppressFrom" time occurring on or after the specified time.
The value cannot be a future time. Format defined by RFC3339.
Example: 2023-02-01T01:02:29.600Z

TimeSuppressFromLessThan

Declaration
[JsonProperty(PropertyName = "timeSuppressFromLessThan")]
public DateTime? TimeSuppressFromLessThan { get; set; }
Property Value
Type Description
DateTime?

A filter to return only entries with "timeSuppressFrom" time occurring before the specified time.
The value cannot be a future time. Format defined by RFC3339.
Example: 2023-02-01T01:02:29.600Z

In this article
Back to top