oci.Monitoring.getAlarmSuppressions
Explore with Pulumi AI
This data source provides the list of Alarm Suppressions in Oracle Cloud Infrastructure Monitoring service.
Lists alarm suppressions for the specified alarm. For more information, see Listing Alarm Suppressions.
For important limits information, see Limits on Monitoring.
This call is subject to a Monitoring limit that applies to the total number of requests across all alarm operations. Monitoring might throttle this call to reject an otherwise valid request when the total rate of alarm operations exceeds 10 requests, or transactions, per second (TPS) for a given tenancy.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAlarmSuppressions = oci.Monitoring.getAlarmSuppressions({
    alarmId: testAlarm.id,
    compartmentId: compartmentId,
    compartmentIdInSubtree: alarmSuppressionCompartmentIdInSubtree,
    displayName: alarmSuppressionDisplayName,
    isAllSuppressions: alarmSuppressionIsAllSuppressions,
    level: alarmSuppressionLevel,
    state: alarmSuppressionState,
    targetType: alarmSuppressionTargetType,
});
import pulumi
import pulumi_oci as oci
test_alarm_suppressions = oci.Monitoring.get_alarm_suppressions(alarm_id=test_alarm["id"],
    compartment_id=compartment_id,
    compartment_id_in_subtree=alarm_suppression_compartment_id_in_subtree,
    display_name=alarm_suppression_display_name,
    is_all_suppressions=alarm_suppression_is_all_suppressions,
    level=alarm_suppression_level,
    state=alarm_suppression_state,
    target_type=alarm_suppression_target_type)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/monitoring"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := monitoring.GetAlarmSuppressions(ctx, &monitoring.GetAlarmSuppressionsArgs{
			AlarmId:                pulumi.StringRef(testAlarm.Id),
			CompartmentId:          pulumi.StringRef(compartmentId),
			CompartmentIdInSubtree: pulumi.BoolRef(alarmSuppressionCompartmentIdInSubtree),
			DisplayName:            pulumi.StringRef(alarmSuppressionDisplayName),
			IsAllSuppressions:      pulumi.BoolRef(alarmSuppressionIsAllSuppressions),
			Level:                  pulumi.StringRef(alarmSuppressionLevel),
			State:                  pulumi.StringRef(alarmSuppressionState),
			TargetType:             pulumi.StringRef(alarmSuppressionTargetType),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testAlarmSuppressions = Oci.Monitoring.GetAlarmSuppressions.Invoke(new()
    {
        AlarmId = testAlarm.Id,
        CompartmentId = compartmentId,
        CompartmentIdInSubtree = alarmSuppressionCompartmentIdInSubtree,
        DisplayName = alarmSuppressionDisplayName,
        IsAllSuppressions = alarmSuppressionIsAllSuppressions,
        Level = alarmSuppressionLevel,
        State = alarmSuppressionState,
        TargetType = alarmSuppressionTargetType,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Monitoring.MonitoringFunctions;
import com.pulumi.oci.Monitoring.inputs.GetAlarmSuppressionsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testAlarmSuppressions = MonitoringFunctions.getAlarmSuppressions(GetAlarmSuppressionsArgs.builder()
            .alarmId(testAlarm.id())
            .compartmentId(compartmentId)
            .compartmentIdInSubtree(alarmSuppressionCompartmentIdInSubtree)
            .displayName(alarmSuppressionDisplayName)
            .isAllSuppressions(alarmSuppressionIsAllSuppressions)
            .level(alarmSuppressionLevel)
            .state(alarmSuppressionState)
            .targetType(alarmSuppressionTargetType)
            .build());
    }
}
variables:
  testAlarmSuppressions:
    fn::invoke:
      function: oci:Monitoring:getAlarmSuppressions
      arguments:
        alarmId: ${testAlarm.id}
        compartmentId: ${compartmentId}
        compartmentIdInSubtree: ${alarmSuppressionCompartmentIdInSubtree}
        displayName: ${alarmSuppressionDisplayName}
        isAllSuppressions: ${alarmSuppressionIsAllSuppressions}
        level: ${alarmSuppressionLevel}
        state: ${alarmSuppressionState}
        targetType: ${alarmSuppressionTargetType}
Using getAlarmSuppressions
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAlarmSuppressions(args: GetAlarmSuppressionsArgs, opts?: InvokeOptions): Promise<GetAlarmSuppressionsResult>
function getAlarmSuppressionsOutput(args: GetAlarmSuppressionsOutputArgs, opts?: InvokeOptions): Output<GetAlarmSuppressionsResult>def get_alarm_suppressions(alarm_id: Optional[str] = None,
                           compartment_id: Optional[str] = None,
                           compartment_id_in_subtree: Optional[bool] = None,
                           display_name: Optional[str] = None,
                           filters: Optional[Sequence[GetAlarmSuppressionsFilter]] = None,
                           is_all_suppressions: Optional[bool] = None,
                           level: Optional[str] = None,
                           state: Optional[str] = None,
                           target_type: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetAlarmSuppressionsResult
def get_alarm_suppressions_output(alarm_id: Optional[pulumi.Input[str]] = None,
                           compartment_id: Optional[pulumi.Input[str]] = None,
                           compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                           display_name: Optional[pulumi.Input[str]] = None,
                           filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAlarmSuppressionsFilterArgs]]]] = None,
                           is_all_suppressions: Optional[pulumi.Input[bool]] = None,
                           level: Optional[pulumi.Input[str]] = None,
                           state: Optional[pulumi.Input[str]] = None,
                           target_type: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetAlarmSuppressionsResult]func GetAlarmSuppressions(ctx *Context, args *GetAlarmSuppressionsArgs, opts ...InvokeOption) (*GetAlarmSuppressionsResult, error)
func GetAlarmSuppressionsOutput(ctx *Context, args *GetAlarmSuppressionsOutputArgs, opts ...InvokeOption) GetAlarmSuppressionsResultOutput> Note: This function is named GetAlarmSuppressions in the Go SDK.
public static class GetAlarmSuppressions 
{
    public static Task<GetAlarmSuppressionsResult> InvokeAsync(GetAlarmSuppressionsArgs args, InvokeOptions? opts = null)
    public static Output<GetAlarmSuppressionsResult> Invoke(GetAlarmSuppressionsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAlarmSuppressionsResult> getAlarmSuppressions(GetAlarmSuppressionsArgs args, InvokeOptions options)
public static Output<GetAlarmSuppressionsResult> getAlarmSuppressions(GetAlarmSuppressionsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Monitoring/getAlarmSuppressions:getAlarmSuppressions
  arguments:
    # arguments dictionaryThe following arguments are supported:
- AlarmId string
- The OCID of the alarm that is the target of the alarm suppression.
- CompartmentId string
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- CompartmentId boolIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- DisplayName string
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- Filters
List<GetAlarm Suppressions Filter> 
- IsAll boolSuppressions 
- Setting this parameter to true requires the query to specify the alarm ( - alarmId).- When true, lists all alarm suppressions that affect the specified alarm, including suppressions that target the corresponding compartment or tenancy. When false, lists only the alarm suppressions that target the specified alarm. - Default is false. 
- Level string
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- State string
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- TargetType string
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- AlarmId string
- The OCID of the alarm that is the target of the alarm suppression.
- CompartmentId string
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- CompartmentId boolIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- DisplayName string
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- Filters
[]GetAlarm Suppressions Filter 
- IsAll boolSuppressions 
- Setting this parameter to true requires the query to specify the alarm ( - alarmId).- When true, lists all alarm suppressions that affect the specified alarm, including suppressions that target the corresponding compartment or tenancy. When false, lists only the alarm suppressions that target the specified alarm. - Default is false. 
- Level string
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- State string
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- TargetType string
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- alarmId String
- The OCID of the alarm that is the target of the alarm suppression.
- compartmentId String
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- compartmentId BooleanIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- displayName String
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- filters
List<GetAlarm Suppressions Filter> 
- isAll BooleanSuppressions 
- Setting this parameter to true requires the query to specify the alarm ( - alarmId).- When true, lists all alarm suppressions that affect the specified alarm, including suppressions that target the corresponding compartment or tenancy. When false, lists only the alarm suppressions that target the specified alarm. - Default is false. 
- level String
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state String
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- targetType String
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- alarmId string
- The OCID of the alarm that is the target of the alarm suppression.
- compartmentId string
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- compartmentId booleanIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- displayName string
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- filters
GetAlarm Suppressions Filter[] 
- isAll booleanSuppressions 
- Setting this parameter to true requires the query to specify the alarm ( - alarmId).- When true, lists all alarm suppressions that affect the specified alarm, including suppressions that target the corresponding compartment or tenancy. When false, lists only the alarm suppressions that target the specified alarm. - Default is false. 
- level string
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state string
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- targetType string
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- alarm_id str
- The OCID of the alarm that is the target of the alarm suppression.
- compartment_id str
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- compartment_id_ boolin_ subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- display_name str
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- filters
Sequence[GetAlarm Suppressions Filter] 
- is_all_ boolsuppressions 
- Setting this parameter to true requires the query to specify the alarm ( - alarmId).- When true, lists all alarm suppressions that affect the specified alarm, including suppressions that target the corresponding compartment or tenancy. When false, lists only the alarm suppressions that target the specified alarm. - Default is false. 
- level str
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state str
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- target_type str
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- alarmId String
- The OCID of the alarm that is the target of the alarm suppression.
- compartmentId String
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- compartmentId BooleanIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- displayName String
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- filters List<Property Map>
- isAll BooleanSuppressions 
- Setting this parameter to true requires the query to specify the alarm ( - alarmId).- When true, lists all alarm suppressions that affect the specified alarm, including suppressions that target the corresponding compartment or tenancy. When false, lists only the alarm suppressions that target the specified alarm. - Default is false. 
- level String
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state String
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- targetType String
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
getAlarmSuppressions Result
The following output properties are available:
- AlarmSuppression List<GetCollections Alarm Suppressions Alarm Suppression Collection> 
- The list of alarm_suppression_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AlarmId string
- The OCID of the alarm that is the target of the alarm suppression.
- CompartmentId string
- The OCID of the compartment containing the alarm suppression.
- CompartmentId boolIn Subtree 
- When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
- DisplayName string
- A user-friendly name for the alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<GetAlarm Suppressions Filter> 
- IsAll boolSuppressions 
- Level string
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- State string
- The current lifecycle state of the alarm suppression. Example: DELETED
- TargetType string
- The type of the alarm suppression target.
- AlarmSuppression []GetCollections Alarm Suppressions Alarm Suppression Collection 
- The list of alarm_suppression_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AlarmId string
- The OCID of the alarm that is the target of the alarm suppression.
- CompartmentId string
- The OCID of the compartment containing the alarm suppression.
- CompartmentId boolIn Subtree 
- When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
- DisplayName string
- A user-friendly name for the alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]GetAlarm Suppressions Filter 
- IsAll boolSuppressions 
- Level string
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- State string
- The current lifecycle state of the alarm suppression. Example: DELETED
- TargetType string
- The type of the alarm suppression target.
- alarmSuppression List<GetCollections Alarm Suppressions Alarm Suppression Collection> 
- The list of alarm_suppression_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- alarmId String
- The OCID of the alarm that is the target of the alarm suppression.
- compartmentId String
- The OCID of the compartment containing the alarm suppression.
- compartmentId BooleanIn Subtree 
- When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
- displayName String
- A user-friendly name for the alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<GetAlarm Suppressions Filter> 
- isAll BooleanSuppressions 
- level String
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state String
- The current lifecycle state of the alarm suppression. Example: DELETED
- targetType String
- The type of the alarm suppression target.
- alarmSuppression GetCollections Alarm Suppressions Alarm Suppression Collection[] 
- The list of alarm_suppression_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- alarmId string
- The OCID of the alarm that is the target of the alarm suppression.
- compartmentId string
- The OCID of the compartment containing the alarm suppression.
- compartmentId booleanIn Subtree 
- When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
- displayName string
- A user-friendly name for the alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
GetAlarm Suppressions Filter[] 
- isAll booleanSuppressions 
- level string
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state string
- The current lifecycle state of the alarm suppression. Example: DELETED
- targetType string
- The type of the alarm suppression target.
- alarm_suppression_ Sequence[Getcollections Alarm Suppressions Alarm Suppression Collection] 
- The list of alarm_suppression_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- alarm_id str
- The OCID of the alarm that is the target of the alarm suppression.
- compartment_id str
- The OCID of the compartment containing the alarm suppression.
- compartment_id_ boolin_ subtree 
- When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
- display_name str
- A user-friendly name for the alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Sequence[GetAlarm Suppressions Filter] 
- is_all_ boolsuppressions 
- level str
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state str
- The current lifecycle state of the alarm suppression. Example: DELETED
- target_type str
- The type of the alarm suppression target.
- alarmSuppression List<Property Map>Collections 
- The list of alarm_suppression_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- alarmId String
- The OCID of the alarm that is the target of the alarm suppression.
- compartmentId String
- The OCID of the compartment containing the alarm suppression.
- compartmentId BooleanIn Subtree 
- When true, the alarm suppression targets all alarms under all compartments and subcompartments of the tenancy specified. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). When false, the alarm suppression targets only the alarms under the specified compartment.
- displayName String
- A user-friendly name for the alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
- isAll BooleanSuppressions 
- level String
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state String
- The current lifecycle state of the alarm suppression. Example: DELETED
- targetType String
- The type of the alarm suppression target.
Supporting Types
GetAlarmSuppressionsAlarmSuppressionCollection     
GetAlarmSuppressionsAlarmSuppressionCollectionItem      
- AlarmSuppression List<GetTargets Alarm Suppressions Alarm Suppression Collection Item Alarm Suppression Target> 
- The target of the alarm suppression.
- CompartmentId string
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- Dictionary<string, string>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"Operations.CostCenter": "42"}
- Description string
- Human-readable reason for this alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dimensions Dictionary<string, string>
- Configured dimension filter for suppressing alarm state entries that include the set of specified dimension key-value pairs. Example: {"resourceId": "instance.region1.phx.exampleuniqueID"}
- DisplayName string
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"Department": "Finance"}
- Id string
- The OCID of the alarm suppression.
- Level string
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- State string
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- SuppressionConditions List<GetAlarm Suppressions Alarm Suppression Collection Item Suppression Condition> 
- Array of all preconditions for alarm suppression. Example: [{ conditionType: "RECURRENCE", suppressionRecurrence: "FRQ=DAILY;BYHOUR=10", suppressionDuration: "PT1H" }]
- TimeCreated string
- The date and time the alarm suppression was created. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- TimeSuppress stringFrom 
- The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- TimeSuppress stringUntil 
- The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T02:02:29.600Z
- TimeUpdated string
- The date and time the alarm suppression was last updated (deleted). Format defined by RFC3339. Example: 2018-02-03T01:02:29.600Z
- AlarmSuppression []GetTargets Alarm Suppressions Alarm Suppression Collection Item Alarm Suppression Target 
- The target of the alarm suppression.
- CompartmentId string
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- map[string]string
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"Operations.CostCenter": "42"}
- Description string
- Human-readable reason for this alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dimensions map[string]string
- Configured dimension filter for suppressing alarm state entries that include the set of specified dimension key-value pairs. Example: {"resourceId": "instance.region1.phx.exampleuniqueID"}
- DisplayName string
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"Department": "Finance"}
- Id string
- The OCID of the alarm suppression.
- Level string
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- State string
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- SuppressionConditions []GetAlarm Suppressions Alarm Suppression Collection Item Suppression Condition 
- Array of all preconditions for alarm suppression. Example: [{ conditionType: "RECURRENCE", suppressionRecurrence: "FRQ=DAILY;BYHOUR=10", suppressionDuration: "PT1H" }]
- TimeCreated string
- The date and time the alarm suppression was created. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- TimeSuppress stringFrom 
- The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- TimeSuppress stringUntil 
- The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T02:02:29.600Z
- TimeUpdated string
- The date and time the alarm suppression was last updated (deleted). Format defined by RFC3339. Example: 2018-02-03T01:02:29.600Z
- alarmSuppression List<GetTargets Alarm Suppressions Alarm Suppression Collection Item Alarm Suppression Target> 
- The target of the alarm suppression.
- compartmentId String
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- Map<String,String>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"Operations.CostCenter": "42"}
- description String
- Human-readable reason for this alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- dimensions Map<String,String>
- Configured dimension filter for suppressing alarm state entries that include the set of specified dimension key-value pairs. Example: {"resourceId": "instance.region1.phx.exampleuniqueID"}
- displayName String
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"Department": "Finance"}
- id String
- The OCID of the alarm suppression.
- level String
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state String
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- suppressionConditions List<GetAlarm Suppressions Alarm Suppression Collection Item Suppression Condition> 
- Array of all preconditions for alarm suppression. Example: [{ conditionType: "RECURRENCE", suppressionRecurrence: "FRQ=DAILY;BYHOUR=10", suppressionDuration: "PT1H" }]
- timeCreated String
- The date and time the alarm suppression was created. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- timeSuppress StringFrom 
- The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- timeSuppress StringUntil 
- The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T02:02:29.600Z
- timeUpdated String
- The date and time the alarm suppression was last updated (deleted). Format defined by RFC3339. Example: 2018-02-03T01:02:29.600Z
- alarmSuppression GetTargets Alarm Suppressions Alarm Suppression Collection Item Alarm Suppression Target[] 
- The target of the alarm suppression.
- compartmentId string
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- {[key: string]: string}
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"Operations.CostCenter": "42"}
- description string
- Human-readable reason for this alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- dimensions {[key: string]: string}
- Configured dimension filter for suppressing alarm state entries that include the set of specified dimension key-value pairs. Example: {"resourceId": "instance.region1.phx.exampleuniqueID"}
- displayName string
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"Department": "Finance"}
- id string
- The OCID of the alarm suppression.
- level string
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state string
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- suppressionConditions GetAlarm Suppressions Alarm Suppression Collection Item Suppression Condition[] 
- Array of all preconditions for alarm suppression. Example: [{ conditionType: "RECURRENCE", suppressionRecurrence: "FRQ=DAILY;BYHOUR=10", suppressionDuration: "PT1H" }]
- timeCreated string
- The date and time the alarm suppression was created. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- timeSuppress stringFrom 
- The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- timeSuppress stringUntil 
- The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T02:02:29.600Z
- timeUpdated string
- The date and time the alarm suppression was last updated (deleted). Format defined by RFC3339. Example: 2018-02-03T01:02:29.600Z
- alarm_suppression_ Sequence[Gettargets Alarm Suppressions Alarm Suppression Collection Item Alarm Suppression Target] 
- The target of the alarm suppression.
- compartment_id str
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- Mapping[str, str]
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"Operations.CostCenter": "42"}
- description str
- Human-readable reason for this alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- dimensions Mapping[str, str]
- Configured dimension filter for suppressing alarm state entries that include the set of specified dimension key-value pairs. Example: {"resourceId": "instance.region1.phx.exampleuniqueID"}
- display_name str
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"Department": "Finance"}
- id str
- The OCID of the alarm suppression.
- level str
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state str
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- suppression_conditions Sequence[GetAlarm Suppressions Alarm Suppression Collection Item Suppression Condition] 
- Array of all preconditions for alarm suppression. Example: [{ conditionType: "RECURRENCE", suppressionRecurrence: "FRQ=DAILY;BYHOUR=10", suppressionDuration: "PT1H" }]
- time_created str
- The date and time the alarm suppression was created. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- time_suppress_ strfrom 
- The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- time_suppress_ struntil 
- The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T02:02:29.600Z
- time_updated str
- The date and time the alarm suppression was last updated (deleted). Format defined by RFC3339. Example: 2018-02-03T01:02:29.600Z
- alarmSuppression List<Property Map>Targets 
- The target of the alarm suppression.
- compartmentId String
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- Map<String>
- Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: {"Operations.CostCenter": "42"}
- description String
- Human-readable reason for this alarm suppression. It does not have to be unique, and it's changeable. Avoid entering confidential information.
- dimensions Map<String>
- Configured dimension filter for suppressing alarm state entries that include the set of specified dimension key-value pairs. Example: {"resourceId": "instance.region1.phx.exampleuniqueID"}
- displayName String
- A filter to return only resources that match the given display name exactly. Use this filter to list an alarm suppression by name. Alternatively, when you know the alarm suppression OCID, use the GetAlarmSuppression operation.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"Department": "Finance"}
- id String
- The OCID of the alarm suppression.
- level String
- The level of this alarm suppression. ALARMindicates a suppression of the entire alarm, regardless of dimension.DIMENSIONindicates a suppression configured for specified dimensions.
- state String
- A filter to return only resources that match the given lifecycle state exactly. When not specified, only resources in the ACTIVE lifecycle state are listed.
- suppressionConditions List<Property Map>
- Array of all preconditions for alarm suppression. Example: [{ conditionType: "RECURRENCE", suppressionRecurrence: "FRQ=DAILY;BYHOUR=10", suppressionDuration: "PT1H" }]
- timeCreated String
- The date and time the alarm suppression was created. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- timeSuppress StringFrom 
- The start date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T01:02:29.600Z
- timeSuppress StringUntil 
- The end date and time for the suppression to take place, inclusive. Format defined by RFC3339. Example: 2018-02-01T02:02:29.600Z
- timeUpdated String
- The date and time the alarm suppression was last updated (deleted). Format defined by RFC3339. Example: 2018-02-03T01:02:29.600Z
GetAlarmSuppressionsAlarmSuppressionCollectionItemAlarmSuppressionTarget         
- AlarmId string
- The OCID of the alarm that is the target of the alarm suppression.
- CompartmentId string
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- CompartmentId boolIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- TargetType string
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- AlarmId string
- The OCID of the alarm that is the target of the alarm suppression.
- CompartmentId string
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- CompartmentId boolIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- TargetType string
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- alarmId String
- The OCID of the alarm that is the target of the alarm suppression.
- compartmentId String
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- compartmentId BooleanIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- targetType String
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- alarmId string
- The OCID of the alarm that is the target of the alarm suppression.
- compartmentId string
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- compartmentId booleanIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- targetType string
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- alarm_id str
- The OCID of the alarm that is the target of the alarm suppression.
- compartment_id str
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- compartment_id_ boolin_ subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- target_type str
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
- alarmId String
- The OCID of the alarm that is the target of the alarm suppression.
- compartmentId String
- The OCID of the compartment for searching. Use the tenancy OCID to search in the root compartment. - If targetType is not specified, searches all suppressions defined under the compartment. If targetType is - COMPARTMENT, searches suppressions in the specified compartment only.- Example: - ocid1.compartment.oc1..exampleuniqueID
- compartmentId BooleanIn Subtree 
- When true, returns resources from all compartments and subcompartments. The parameter can only be set to true when compartmentId is the tenancy OCID (the tenancy is the root compartment). A true value requires the user to have tenancy-level permissions. If this requirement is not met, then the call is rejected. When false, returns resources from only the compartment specified in compartmentId. Default is false.
- targetType String
- The target type to use when listing alarm suppressions. ALARMlists all suppression records for the specified alarm.COMPARTMENTlists all suppression records for the specified compartment or tenancy.
GetAlarmSuppressionsAlarmSuppressionCollectionItemSuppressionCondition        
- ConditionType string
- Type of suppression condition.
- SuppressionDuration string
- Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: PT1M(1 minute). Maximum:PT24H(24 hours).
- SuppressionRecurrence 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:- WEEKLYor- DAILYonly.
- 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- timeSuppressFromvalue. Default is 00:00:00 UTC after- timeSuppressFrom.
 
- ConditionType string
- Type of suppression condition.
- SuppressionDuration string
- Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: PT1M(1 minute). Maximum:PT24H(24 hours).
- SuppressionRecurrence 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:- WEEKLYor- DAILYonly.
- 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- timeSuppressFromvalue. Default is 00:00:00 UTC after- timeSuppressFrom.
 
- conditionType String
- Type of suppression condition.
- suppressionDuration String
- Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: PT1M(1 minute). Maximum:PT24H(24 hours).
- suppressionRecurrence 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:- WEEKLYor- DAILYonly.
- 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- timeSuppressFromvalue. Default is 00:00:00 UTC after- timeSuppressFrom.
 
- conditionType string
- Type of suppression condition.
- suppressionDuration string
- Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: PT1M(1 minute). Maximum:PT24H(24 hours).
- suppressionRecurrence 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:- WEEKLYor- DAILYonly.
- 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- timeSuppressFromvalue. Default is 00:00:00 UTC after- timeSuppressFrom.
 
- condition_type str
- Type of suppression condition.
- suppression_duration str
- Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: PT1M(1 minute). Maximum:PT24H(24 hours).
- suppression_recurrence str
- 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:- WEEKLYor- DAILYonly.
- 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- timeSuppressFromvalue. Default is 00:00:00 UTC after- timeSuppressFrom.
 
- conditionType String
- Type of suppression condition.
- suppressionDuration String
- Duration of the recurring suppression. Specified as a string in ISO 8601 format. Minimum: PT1M(1 minute). Maximum:PT24H(24 hours).
- suppressionRecurrence 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:- WEEKLYor- DAILYonly.
- 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- timeSuppressFromvalue. Default is 00:00:00 UTC after- timeSuppressFrom.
 
GetAlarmSuppressionsFilter   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.