1. Packages
  2. Opsgenie
  3. API Docs
  4. NotificationRule
Opsgenie v1.3.6 published on Tuesday, Feb 27, 2024 by Pulumi

opsgenie.NotificationRule

Explore with Pulumi AI

opsgenie logo
Opsgenie v1.3.6 published on Tuesday, Feb 27, 2024 by Pulumi

    Manages a Notification Rule within Opsgenie.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Opsgenie = Pulumi.Opsgenie;
    
    return await Deployment.RunAsync(() => 
    {
        var testUser = new Opsgenie.User("testUser", new()
        {
            Username = "Example user",
            FullName = "Name Lastname",
            Role = "User",
        });
    
        var testNotificationRule = new Opsgenie.NotificationRule("testNotificationRule", new()
        {
            Username = testUser.Username,
            ActionType = "schedule-end",
            NotificationTimes = new[]
            {
                "just-before",
                "15-minutes-ago",
            },
            Steps = new[]
            {
                new Opsgenie.Inputs.NotificationRuleStepArgs
                {
                    Contacts = new[]
                    {
                        new Opsgenie.Inputs.NotificationRuleStepContactArgs
                        {
                            Method = "email",
                            To = "example@user.com",
                        },
                    },
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-opsgenie/sdk/go/opsgenie"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		testUser, err := opsgenie.NewUser(ctx, "testUser", &opsgenie.UserArgs{
    			Username: pulumi.String("Example user"),
    			FullName: pulumi.String("Name Lastname"),
    			Role:     pulumi.String("User"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = opsgenie.NewNotificationRule(ctx, "testNotificationRule", &opsgenie.NotificationRuleArgs{
    			Username:   testUser.Username,
    			ActionType: pulumi.String("schedule-end"),
    			NotificationTimes: pulumi.StringArray{
    				pulumi.String("just-before"),
    				pulumi.String("15-minutes-ago"),
    			},
    			Steps: opsgenie.NotificationRuleStepArray{
    				&opsgenie.NotificationRuleStepArgs{
    					Contacts: opsgenie.NotificationRuleStepContactArray{
    						&opsgenie.NotificationRuleStepContactArgs{
    							Method: pulumi.String("email"),
    							To:     pulumi.String("example@user.com"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.opsgenie.User;
    import com.pulumi.opsgenie.UserArgs;
    import com.pulumi.opsgenie.NotificationRule;
    import com.pulumi.opsgenie.NotificationRuleArgs;
    import com.pulumi.opsgenie.inputs.NotificationRuleStepArgs;
    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) {
            var testUser = new User("testUser", UserArgs.builder()        
                .username("Example user")
                .fullName("Name Lastname")
                .role("User")
                .build());
    
            var testNotificationRule = new NotificationRule("testNotificationRule", NotificationRuleArgs.builder()        
                .username(testUser.username())
                .actionType("schedule-end")
                .notificationTimes(            
                    "just-before",
                    "15-minutes-ago")
                .steps(NotificationRuleStepArgs.builder()
                    .contacts(NotificationRuleStepContactArgs.builder()
                        .method("email")
                        .to("example@user.com")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_opsgenie as opsgenie
    
    test_user = opsgenie.User("testUser",
        username="Example user",
        full_name="Name Lastname",
        role="User")
    test_notification_rule = opsgenie.NotificationRule("testNotificationRule",
        username=test_user.username,
        action_type="schedule-end",
        notification_times=[
            "just-before",
            "15-minutes-ago",
        ],
        steps=[opsgenie.NotificationRuleStepArgs(
            contacts=[opsgenie.NotificationRuleStepContactArgs(
                method="email",
                to="example@user.com",
            )],
        )])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as opsgenie from "@pulumi/opsgenie";
    
    const testUser = new opsgenie.User("testUser", {
        username: "Example user",
        fullName: "Name Lastname",
        role: "User",
    });
    const testNotificationRule = new opsgenie.NotificationRule("testNotificationRule", {
        username: testUser.username,
        actionType: "schedule-end",
        notificationTimes: [
            "just-before",
            "15-minutes-ago",
        ],
        steps: [{
            contacts: [{
                method: "email",
                to: "example@user.com",
            }],
        }],
    });
    
    resources:
      testUser:
        type: opsgenie:User
        properties:
          username: Example user
          fullName: Name Lastname
          role: User
      testNotificationRule:
        type: opsgenie:NotificationRule
        properties:
          username: ${testUser.username}
          actionType: schedule-end
          notificationTimes:
            - just-before
            - 15-minutes-ago
          steps:
            - contacts:
                - method: email
                  to: example@user.com
    

    Create NotificationRule Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new NotificationRule(name: string, args: NotificationRuleArgs, opts?: CustomResourceOptions);
    @overload
    def NotificationRule(resource_name: str,
                         args: NotificationRuleArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def NotificationRule(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         action_type: Optional[str] = None,
                         username: Optional[str] = None,
                         criterias: Optional[Sequence[NotificationRuleCriteriaArgs]] = None,
                         enabled: Optional[bool] = None,
                         name: Optional[str] = None,
                         notification_times: Optional[Sequence[str]] = None,
                         order: Optional[int] = None,
                         repeats: Optional[Sequence[NotificationRuleRepeatArgs]] = None,
                         schedules: Optional[Sequence[NotificationRuleScheduleArgs]] = None,
                         steps: Optional[Sequence[NotificationRuleStepArgs]] = None,
                         time_restrictions: Optional[Sequence[NotificationRuleTimeRestrictionArgs]] = None)
    func NewNotificationRule(ctx *Context, name string, args NotificationRuleArgs, opts ...ResourceOption) (*NotificationRule, error)
    public NotificationRule(string name, NotificationRuleArgs args, CustomResourceOptions? opts = null)
    public NotificationRule(String name, NotificationRuleArgs args)
    public NotificationRule(String name, NotificationRuleArgs args, CustomResourceOptions options)
    
    type: opsgenie:NotificationRule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NotificationRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NotificationRuleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NotificationRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NotificationRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NotificationRuleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var notificationRuleResource = new Opsgenie.NotificationRule("notificationRuleResource", new()
    {
        ActionType = "string",
        Username = "string",
        Criterias = new[]
        {
            new Opsgenie.Inputs.NotificationRuleCriteriaArgs
            {
                Type = "string",
                Conditions = new[]
                {
                    new Opsgenie.Inputs.NotificationRuleCriteriaConditionArgs
                    {
                        Field = "string",
                        Operation = "string",
                        ExpectedValue = "string",
                        Key = "string",
                        Not = false,
                        Order = 0,
                    },
                },
            },
        },
        Enabled = false,
        Name = "string",
        NotificationTimes = new[]
        {
            "string",
        },
        Order = 0,
        Repeats = new[]
        {
            new Opsgenie.Inputs.NotificationRuleRepeatArgs
            {
                LoopAfter = 0,
                Enabled = false,
            },
        },
        Schedules = new[]
        {
            new Opsgenie.Inputs.NotificationRuleScheduleArgs
            {
                Name = "string",
                Type = "string",
            },
        },
        Steps = new[]
        {
            new Opsgenie.Inputs.NotificationRuleStepArgs
            {
                Contacts = new[]
                {
                    new Opsgenie.Inputs.NotificationRuleStepContactArgs
                    {
                        Method = "string",
                        To = "string",
                    },
                },
                Enabled = false,
                SendAfter = 0,
            },
        },
        TimeRestrictions = new[]
        {
            new Opsgenie.Inputs.NotificationRuleTimeRestrictionArgs
            {
                Type = "string",
                Restriction = new[]
                {
                    new Opsgenie.Inputs.NotificationRuleTimeRestrictionRestrictionArgs
                    {
                        EndDay = "string",
                        EndHour = 0,
                        EndMin = 0,
                        StartDay = "string",
                        StartHour = 0,
                        StartMin = 0,
                    },
                },
                Restrictions = new[]
                {
                    new Opsgenie.Inputs.NotificationRuleTimeRestrictionRestrictionArgs
                    {
                        EndDay = "string",
                        EndHour = 0,
                        EndMin = 0,
                        StartDay = "string",
                        StartHour = 0,
                        StartMin = 0,
                    },
                },
            },
        },
    });
    
    example, err := opsgenie.NewNotificationRule(ctx, "notificationRuleResource", &opsgenie.NotificationRuleArgs{
    	ActionType: pulumi.String("string"),
    	Username:   pulumi.String("string"),
    	Criterias: opsgenie.NotificationRuleCriteriaArray{
    		&opsgenie.NotificationRuleCriteriaArgs{
    			Type: pulumi.String("string"),
    			Conditions: opsgenie.NotificationRuleCriteriaConditionArray{
    				&opsgenie.NotificationRuleCriteriaConditionArgs{
    					Field:         pulumi.String("string"),
    					Operation:     pulumi.String("string"),
    					ExpectedValue: pulumi.String("string"),
    					Key:           pulumi.String("string"),
    					Not:           pulumi.Bool(false),
    					Order:         pulumi.Int(0),
    				},
    			},
    		},
    	},
    	Enabled: pulumi.Bool(false),
    	Name:    pulumi.String("string"),
    	NotificationTimes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Order: pulumi.Int(0),
    	Repeats: opsgenie.NotificationRuleRepeatArray{
    		&opsgenie.NotificationRuleRepeatArgs{
    			LoopAfter: pulumi.Int(0),
    			Enabled:   pulumi.Bool(false),
    		},
    	},
    	Schedules: opsgenie.NotificationRuleScheduleArray{
    		&opsgenie.NotificationRuleScheduleArgs{
    			Name: pulumi.String("string"),
    			Type: pulumi.String("string"),
    		},
    	},
    	Steps: opsgenie.NotificationRuleStepArray{
    		&opsgenie.NotificationRuleStepArgs{
    			Contacts: opsgenie.NotificationRuleStepContactArray{
    				&opsgenie.NotificationRuleStepContactArgs{
    					Method: pulumi.String("string"),
    					To:     pulumi.String("string"),
    				},
    			},
    			Enabled:   pulumi.Bool(false),
    			SendAfter: pulumi.Int(0),
    		},
    	},
    	TimeRestrictions: opsgenie.NotificationRuleTimeRestrictionArray{
    		&opsgenie.NotificationRuleTimeRestrictionArgs{
    			Type: pulumi.String("string"),
    			Restriction: opsgenie.NotificationRuleTimeRestrictionRestrictionArray{
    				&opsgenie.NotificationRuleTimeRestrictionRestrictionArgs{
    					EndDay:    pulumi.String("string"),
    					EndHour:   pulumi.Int(0),
    					EndMin:    pulumi.Int(0),
    					StartDay:  pulumi.String("string"),
    					StartHour: pulumi.Int(0),
    					StartMin:  pulumi.Int(0),
    				},
    			},
    			Restrictions: opsgenie.NotificationRuleTimeRestrictionRestrictionArray{
    				&opsgenie.NotificationRuleTimeRestrictionRestrictionArgs{
    					EndDay:    pulumi.String("string"),
    					EndHour:   pulumi.Int(0),
    					EndMin:    pulumi.Int(0),
    					StartDay:  pulumi.String("string"),
    					StartHour: pulumi.Int(0),
    					StartMin:  pulumi.Int(0),
    				},
    			},
    		},
    	},
    })
    
    var notificationRuleResource = new NotificationRule("notificationRuleResource", NotificationRuleArgs.builder()        
        .actionType("string")
        .username("string")
        .criterias(NotificationRuleCriteriaArgs.builder()
            .type("string")
            .conditions(NotificationRuleCriteriaConditionArgs.builder()
                .field("string")
                .operation("string")
                .expectedValue("string")
                .key("string")
                .not(false)
                .order(0)
                .build())
            .build())
        .enabled(false)
        .name("string")
        .notificationTimes("string")
        .order(0)
        .repeats(NotificationRuleRepeatArgs.builder()
            .loopAfter(0)
            .enabled(false)
            .build())
        .schedules(NotificationRuleScheduleArgs.builder()
            .name("string")
            .type("string")
            .build())
        .steps(NotificationRuleStepArgs.builder()
            .contacts(NotificationRuleStepContactArgs.builder()
                .method("string")
                .to("string")
                .build())
            .enabled(false)
            .sendAfter(0)
            .build())
        .timeRestrictions(NotificationRuleTimeRestrictionArgs.builder()
            .type("string")
            .restriction(NotificationRuleTimeRestrictionRestrictionArgs.builder()
                .endDay("string")
                .endHour(0)
                .endMin(0)
                .startDay("string")
                .startHour(0)
                .startMin(0)
                .build())
            .restrictions(NotificationRuleTimeRestrictionRestrictionArgs.builder()
                .endDay("string")
                .endHour(0)
                .endMin(0)
                .startDay("string")
                .startHour(0)
                .startMin(0)
                .build())
            .build())
        .build());
    
    notification_rule_resource = opsgenie.NotificationRule("notificationRuleResource",
        action_type="string",
        username="string",
        criterias=[opsgenie.NotificationRuleCriteriaArgs(
            type="string",
            conditions=[opsgenie.NotificationRuleCriteriaConditionArgs(
                field="string",
                operation="string",
                expected_value="string",
                key="string",
                not_=False,
                order=0,
            )],
        )],
        enabled=False,
        name="string",
        notification_times=["string"],
        order=0,
        repeats=[opsgenie.NotificationRuleRepeatArgs(
            loop_after=0,
            enabled=False,
        )],
        schedules=[opsgenie.NotificationRuleScheduleArgs(
            name="string",
            type="string",
        )],
        steps=[opsgenie.NotificationRuleStepArgs(
            contacts=[opsgenie.NotificationRuleStepContactArgs(
                method="string",
                to="string",
            )],
            enabled=False,
            send_after=0,
        )],
        time_restrictions=[opsgenie.NotificationRuleTimeRestrictionArgs(
            type="string",
            restriction=[opsgenie.NotificationRuleTimeRestrictionRestrictionArgs(
                end_day="string",
                end_hour=0,
                end_min=0,
                start_day="string",
                start_hour=0,
                start_min=0,
            )],
            restrictions=[opsgenie.NotificationRuleTimeRestrictionRestrictionArgs(
                end_day="string",
                end_hour=0,
                end_min=0,
                start_day="string",
                start_hour=0,
                start_min=0,
            )],
        )])
    
    const notificationRuleResource = new opsgenie.NotificationRule("notificationRuleResource", {
        actionType: "string",
        username: "string",
        criterias: [{
            type: "string",
            conditions: [{
                field: "string",
                operation: "string",
                expectedValue: "string",
                key: "string",
                not: false,
                order: 0,
            }],
        }],
        enabled: false,
        name: "string",
        notificationTimes: ["string"],
        order: 0,
        repeats: [{
            loopAfter: 0,
            enabled: false,
        }],
        schedules: [{
            name: "string",
            type: "string",
        }],
        steps: [{
            contacts: [{
                method: "string",
                to: "string",
            }],
            enabled: false,
            sendAfter: 0,
        }],
        timeRestrictions: [{
            type: "string",
            restriction: [{
                endDay: "string",
                endHour: 0,
                endMin: 0,
                startDay: "string",
                startHour: 0,
                startMin: 0,
            }],
            restrictions: [{
                endDay: "string",
                endHour: 0,
                endMin: 0,
                startDay: "string",
                startHour: 0,
                startMin: 0,
            }],
        }],
    });
    
    type: opsgenie:NotificationRule
    properties:
        actionType: string
        criterias:
            - conditions:
                - expectedValue: string
                  field: string
                  key: string
                  not: false
                  operation: string
                  order: 0
              type: string
        enabled: false
        name: string
        notificationTimes:
            - string
        order: 0
        repeats:
            - enabled: false
              loopAfter: 0
        schedules:
            - name: string
              type: string
        steps:
            - contacts:
                - method: string
                  to: string
              enabled: false
              sendAfter: 0
        timeRestrictions:
            - restriction:
                - endDay: string
                  endHour: 0
                  endMin: 0
                  startDay: string
                  startHour: 0
                  startMin: 0
              restrictions:
                - endDay: string
                  endHour: 0
                  endMin: 0
                  startDay: string
                  startHour: 0
                  startMin: 0
              type: string
        username: string
    

    NotificationRule Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The NotificationRule resource accepts the following input properties:

    ActionType string
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    Username string
    Username of user to which this notification rule belongs to.
    Criterias List<NotificationRuleCriteria>
    Enabled bool
    If policy should be enabled. Default: true
    Name string
    Name of the notification policy
    NotificationTimes List<string>
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    Order int
    Order of the condition in conditions list
    Repeats List<NotificationRuleRepeat>
    Schedules List<NotificationRuleSchedule>
    Steps List<NotificationRuleStep>
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    TimeRestrictions List<NotificationRuleTimeRestriction>
    ActionType string
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    Username string
    Username of user to which this notification rule belongs to.
    Criterias []NotificationRuleCriteriaArgs
    Enabled bool
    If policy should be enabled. Default: true
    Name string
    Name of the notification policy
    NotificationTimes []string
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    Order int
    Order of the condition in conditions list
    Repeats []NotificationRuleRepeatArgs
    Schedules []NotificationRuleScheduleArgs
    Steps []NotificationRuleStepArgs
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    TimeRestrictions []NotificationRuleTimeRestrictionArgs
    actionType String
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    username String
    Username of user to which this notification rule belongs to.
    criterias List<NotificationRuleCriteria>
    enabled Boolean
    If policy should be enabled. Default: true
    name String
    Name of the notification policy
    notificationTimes List<String>
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    order Integer
    Order of the condition in conditions list
    repeats List<NotificationRuleRepeat>
    schedules List<NotificationRuleSchedule>
    steps List<NotificationRuleStep>
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    timeRestrictions List<NotificationRuleTimeRestriction>
    actionType string
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    username string
    Username of user to which this notification rule belongs to.
    criterias NotificationRuleCriteria[]
    enabled boolean
    If policy should be enabled. Default: true
    name string
    Name of the notification policy
    notificationTimes string[]
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    order number
    Order of the condition in conditions list
    repeats NotificationRuleRepeat[]
    schedules NotificationRuleSchedule[]
    steps NotificationRuleStep[]
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    timeRestrictions NotificationRuleTimeRestriction[]
    action_type str
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    username str
    Username of user to which this notification rule belongs to.
    criterias Sequence[NotificationRuleCriteriaArgs]
    enabled bool
    If policy should be enabled. Default: true
    name str
    Name of the notification policy
    notification_times Sequence[str]
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    order int
    Order of the condition in conditions list
    repeats Sequence[NotificationRuleRepeatArgs]
    schedules Sequence[NotificationRuleScheduleArgs]
    steps Sequence[NotificationRuleStepArgs]
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    time_restrictions Sequence[NotificationRuleTimeRestrictionArgs]
    actionType String
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    username String
    Username of user to which this notification rule belongs to.
    criterias List<Property Map>
    enabled Boolean
    If policy should be enabled. Default: true
    name String
    Name of the notification policy
    notificationTimes List<String>
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    order Number
    Order of the condition in conditions list
    repeats List<Property Map>
    schedules List<Property Map>
    steps List<Property Map>
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    timeRestrictions List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the NotificationRule resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NotificationRule Resource

    Get an existing NotificationRule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: NotificationRuleState, opts?: CustomResourceOptions): NotificationRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action_type: Optional[str] = None,
            criterias: Optional[Sequence[NotificationRuleCriteriaArgs]] = None,
            enabled: Optional[bool] = None,
            name: Optional[str] = None,
            notification_times: Optional[Sequence[str]] = None,
            order: Optional[int] = None,
            repeats: Optional[Sequence[NotificationRuleRepeatArgs]] = None,
            schedules: Optional[Sequence[NotificationRuleScheduleArgs]] = None,
            steps: Optional[Sequence[NotificationRuleStepArgs]] = None,
            time_restrictions: Optional[Sequence[NotificationRuleTimeRestrictionArgs]] = None,
            username: Optional[str] = None) -> NotificationRule
    func GetNotificationRule(ctx *Context, name string, id IDInput, state *NotificationRuleState, opts ...ResourceOption) (*NotificationRule, error)
    public static NotificationRule Get(string name, Input<string> id, NotificationRuleState? state, CustomResourceOptions? opts = null)
    public static NotificationRule get(String name, Output<String> id, NotificationRuleState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ActionType string
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    Criterias List<NotificationRuleCriteria>
    Enabled bool
    If policy should be enabled. Default: true
    Name string
    Name of the notification policy
    NotificationTimes List<string>
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    Order int
    Order of the condition in conditions list
    Repeats List<NotificationRuleRepeat>
    Schedules List<NotificationRuleSchedule>
    Steps List<NotificationRuleStep>
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    TimeRestrictions List<NotificationRuleTimeRestriction>
    Username string
    Username of user to which this notification rule belongs to.
    ActionType string
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    Criterias []NotificationRuleCriteriaArgs
    Enabled bool
    If policy should be enabled. Default: true
    Name string
    Name of the notification policy
    NotificationTimes []string
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    Order int
    Order of the condition in conditions list
    Repeats []NotificationRuleRepeatArgs
    Schedules []NotificationRuleScheduleArgs
    Steps []NotificationRuleStepArgs
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    TimeRestrictions []NotificationRuleTimeRestrictionArgs
    Username string
    Username of user to which this notification rule belongs to.
    actionType String
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    criterias List<NotificationRuleCriteria>
    enabled Boolean
    If policy should be enabled. Default: true
    name String
    Name of the notification policy
    notificationTimes List<String>
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    order Integer
    Order of the condition in conditions list
    repeats List<NotificationRuleRepeat>
    schedules List<NotificationRuleSchedule>
    steps List<NotificationRuleStep>
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    timeRestrictions List<NotificationRuleTimeRestriction>
    username String
    Username of user to which this notification rule belongs to.
    actionType string
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    criterias NotificationRuleCriteria[]
    enabled boolean
    If policy should be enabled. Default: true
    name string
    Name of the notification policy
    notificationTimes string[]
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    order number
    Order of the condition in conditions list
    repeats NotificationRuleRepeat[]
    schedules NotificationRuleSchedule[]
    steps NotificationRuleStep[]
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    timeRestrictions NotificationRuleTimeRestriction[]
    username string
    Username of user to which this notification rule belongs to.
    action_type str
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    criterias Sequence[NotificationRuleCriteriaArgs]
    enabled bool
    If policy should be enabled. Default: true
    name str
    Name of the notification policy
    notification_times Sequence[str]
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    order int
    Order of the condition in conditions list
    repeats Sequence[NotificationRuleRepeatArgs]
    schedules Sequence[NotificationRuleScheduleArgs]
    steps Sequence[NotificationRuleStepArgs]
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    time_restrictions Sequence[NotificationRuleTimeRestrictionArgs]
    username str
    Username of user to which this notification rule belongs to.
    actionType String
    Type of the action that notification rule will have. Allowed values: create-alert, acknowledged-alert, closed-alert, assigned-alert, add-note, schedule-start, schedule-end, incoming-call-routing
    criterias List<Property Map>
    enabled Boolean
    If policy should be enabled. Default: true
    name String
    Name of the notification policy
    notificationTimes List<String>
    List of Time Periods that notification for schedule start/end will be sent. Allowed values: just-before, 15-minutes-ago, 1-hour-ago, 1-day-ago. If action_type is schedule-start or schedule-end then it is required.
    order Number
    Order of the condition in conditions list
    repeats List<Property Map>
    schedules List<Property Map>
    steps List<Property Map>
    Notification rule steps to take (eg. SMS or email message). This is a block, structure is documented below.
    timeRestrictions List<Property Map>
    username String
    Username of user to which this notification rule belongs to.

    Supporting Types

    NotificationRuleCriteria, NotificationRuleCriteriaArgs

    Type string
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    Conditions List<NotificationRuleCriteriaCondition>
    Defines the fields and values when the condition applies
    Type string
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    Conditions []NotificationRuleCriteriaCondition
    Defines the fields and values when the condition applies
    type String
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    conditions List<NotificationRuleCriteriaCondition>
    Defines the fields and values when the condition applies
    type string
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    conditions NotificationRuleCriteriaCondition[]
    Defines the fields and values when the condition applies
    type str
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    conditions Sequence[NotificationRuleCriteriaCondition]
    Defines the fields and values when the condition applies
    type String
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    conditions List<Property Map>
    Defines the fields and values when the condition applies

    NotificationRuleCriteriaCondition, NotificationRuleCriteriaConditionArgs

    Field string
    Possible values: message, alias, description, source, entity, tags, actions, details, extra-properties, recipients, teams, priority
    Operation string
    Possible values: matches, contains, starts-with, ends-with, equals, contains-key, contains-value, greater-than, less-than, is-empty, equals-ignore-whitespace
    ExpectedValue string
    User defined value that will be compared with alert field according to the operation. Default: empty string
    Key string
    If 'field' is set as 'extra-properties', key could be used for key-value pair
    Not bool
    Indicates behaviour of the given operation. Default: false
    Order int
    Order of the condition in conditions list
    Field string
    Possible values: message, alias, description, source, entity, tags, actions, details, extra-properties, recipients, teams, priority
    Operation string
    Possible values: matches, contains, starts-with, ends-with, equals, contains-key, contains-value, greater-than, less-than, is-empty, equals-ignore-whitespace
    ExpectedValue string
    User defined value that will be compared with alert field according to the operation. Default: empty string
    Key string
    If 'field' is set as 'extra-properties', key could be used for key-value pair
    Not bool
    Indicates behaviour of the given operation. Default: false
    Order int
    Order of the condition in conditions list
    field String
    Possible values: message, alias, description, source, entity, tags, actions, details, extra-properties, recipients, teams, priority
    operation String
    Possible values: matches, contains, starts-with, ends-with, equals, contains-key, contains-value, greater-than, less-than, is-empty, equals-ignore-whitespace
    expectedValue String
    User defined value that will be compared with alert field according to the operation. Default: empty string
    key String
    If 'field' is set as 'extra-properties', key could be used for key-value pair
    not Boolean
    Indicates behaviour of the given operation. Default: false
    order Integer
    Order of the condition in conditions list
    field string
    Possible values: message, alias, description, source, entity, tags, actions, details, extra-properties, recipients, teams, priority
    operation string
    Possible values: matches, contains, starts-with, ends-with, equals, contains-key, contains-value, greater-than, less-than, is-empty, equals-ignore-whitespace
    expectedValue string
    User defined value that will be compared with alert field according to the operation. Default: empty string
    key string
    If 'field' is set as 'extra-properties', key could be used for key-value pair
    not boolean
    Indicates behaviour of the given operation. Default: false
    order number
    Order of the condition in conditions list
    field str
    Possible values: message, alias, description, source, entity, tags, actions, details, extra-properties, recipients, teams, priority
    operation str
    Possible values: matches, contains, starts-with, ends-with, equals, contains-key, contains-value, greater-than, less-than, is-empty, equals-ignore-whitespace
    expected_value str
    User defined value that will be compared with alert field according to the operation. Default: empty string
    key str
    If 'field' is set as 'extra-properties', key could be used for key-value pair
    not_ bool
    Indicates behaviour of the given operation. Default: false
    order int
    Order of the condition in conditions list
    field String
    Possible values: message, alias, description, source, entity, tags, actions, details, extra-properties, recipients, teams, priority
    operation String
    Possible values: matches, contains, starts-with, ends-with, equals, contains-key, contains-value, greater-than, less-than, is-empty, equals-ignore-whitespace
    expectedValue String
    User defined value that will be compared with alert field according to the operation. Default: empty string
    key String
    If 'field' is set as 'extra-properties', key could be used for key-value pair
    not Boolean
    Indicates behaviour of the given operation. Default: false
    order Number
    Order of the condition in conditions list

    NotificationRuleRepeat, NotificationRuleRepeatArgs

    LoopAfter int
    Enabled bool
    If policy should be enabled. Default: true
    LoopAfter int
    Enabled bool
    If policy should be enabled. Default: true
    loopAfter Integer
    enabled Boolean
    If policy should be enabled. Default: true
    loopAfter number
    enabled boolean
    If policy should be enabled. Default: true
    loop_after int
    enabled bool
    If policy should be enabled. Default: true
    loopAfter Number
    enabled Boolean
    If policy should be enabled. Default: true

    NotificationRuleSchedule, NotificationRuleScheduleArgs

    Name string
    Name of the notification policy
    Type string
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    Name string
    Name of the notification policy
    Type string
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    name String
    Name of the notification policy
    type String
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    name string
    Name of the notification policy
    type string
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    name str
    Name of the notification policy
    type str
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    name String
    Name of the notification policy
    type String
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions

    NotificationRuleStep, NotificationRuleStepArgs

    Contacts List<NotificationRuleStepContact>
    Defines the contact that notification will be sent to. This is a block, structure is documented below.
    Enabled bool
    Defined if this step is enabled. Default: true
    SendAfter int
    Time period, in minutes, notification will be sent after.
    Contacts []NotificationRuleStepContact
    Defines the contact that notification will be sent to. This is a block, structure is documented below.
    Enabled bool
    Defined if this step is enabled. Default: true
    SendAfter int
    Time period, in minutes, notification will be sent after.
    contacts List<NotificationRuleStepContact>
    Defines the contact that notification will be sent to. This is a block, structure is documented below.
    enabled Boolean
    Defined if this step is enabled. Default: true
    sendAfter Integer
    Time period, in minutes, notification will be sent after.
    contacts NotificationRuleStepContact[]
    Defines the contact that notification will be sent to. This is a block, structure is documented below.
    enabled boolean
    Defined if this step is enabled. Default: true
    sendAfter number
    Time period, in minutes, notification will be sent after.
    contacts Sequence[NotificationRuleStepContact]
    Defines the contact that notification will be sent to. This is a block, structure is documented below.
    enabled bool
    Defined if this step is enabled. Default: true
    send_after int
    Time period, in minutes, notification will be sent after.
    contacts List<Property Map>
    Defines the contact that notification will be sent to. This is a block, structure is documented below.
    enabled Boolean
    Defined if this step is enabled. Default: true
    sendAfter Number
    Time period, in minutes, notification will be sent after.

    NotificationRuleStepContact, NotificationRuleStepContactArgs

    Method string
    Contact method. Possible values: email, sms, voice, mobile
    To string
    Address of a given method (eg. email address for email, phone number for sms/voice or mobile application name for mobile)
    Method string
    Contact method. Possible values: email, sms, voice, mobile
    To string
    Address of a given method (eg. email address for email, phone number for sms/voice or mobile application name for mobile)
    method String
    Contact method. Possible values: email, sms, voice, mobile
    to String
    Address of a given method (eg. email address for email, phone number for sms/voice or mobile application name for mobile)
    method string
    Contact method. Possible values: email, sms, voice, mobile
    to string
    Address of a given method (eg. email address for email, phone number for sms/voice or mobile application name for mobile)
    method str
    Contact method. Possible values: email, sms, voice, mobile
    to str
    Address of a given method (eg. email address for email, phone number for sms/voice or mobile application name for mobile)
    method String
    Contact method. Possible values: email, sms, voice, mobile
    to String
    Address of a given method (eg. email address for email, phone number for sms/voice or mobile application name for mobile)

    NotificationRuleTimeRestriction, NotificationRuleTimeRestrictionArgs

    Type string
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    Restriction List<NotificationRuleTimeRestrictionRestriction>
    Restrictions List<NotificationRuleTimeRestrictionRestriction>
    Type string
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    Restriction []NotificationRuleTimeRestrictionRestriction
    Restrictions []NotificationRuleTimeRestrictionRestriction
    type String
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    restriction List<NotificationRuleTimeRestrictionRestriction>
    restrictions List<NotificationRuleTimeRestrictionRestriction>
    type string
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    restriction NotificationRuleTimeRestrictionRestriction[]
    restrictions NotificationRuleTimeRestrictionRestriction[]
    type str
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    restriction Sequence[NotificationRuleTimeRestrictionRestriction]
    restrictions Sequence[NotificationRuleTimeRestrictionRestriction]
    type String
    Kind of matching filter. Possible values: match-all, match-any-condition, match-all-conditions
    restriction List<Property Map>
    restrictions List<Property Map>

    NotificationRuleTimeRestrictionRestriction, NotificationRuleTimeRestrictionRestrictionArgs

    EndDay string
    EndHour int
    EndMin int
    StartDay string
    StartHour int
    StartMin int
    EndDay string
    EndHour int
    EndMin int
    StartDay string
    StartHour int
    StartMin int
    endDay String
    endHour Integer
    endMin Integer
    startDay String
    startHour Integer
    startMin Integer
    endDay string
    endHour number
    endMin number
    startDay string
    startHour number
    startMin number
    endDay String
    endHour Number
    endMin Number
    startDay String
    startHour Number
    startMin Number

    Import

    Notification policies can be imported using the user_id/notification_rule_id, e.g.

    $ pulumi import opsgenie:index/notificationRule:NotificationRule test user_id/notification_rule_id`
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Opsgenie pulumi/pulumi-opsgenie
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the opsgenie Terraform Provider.
    opsgenie logo
    Opsgenie v1.3.6 published on Tuesday, Feb 27, 2024 by Pulumi