import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * An Unrouted Orchestration allows users to create a set of Event Rules that will be evaluated against all events that don't match any rules in the Orchestration's Router. * * The Unrouted Orchestration evaluates events sent to it against each of its rules, beginning with the rules in the "start" set. When a matching rule is found, it can modify and enhance the event and can route the event to another set of rules within this Unrouted Orchestration for further processing. * * ## Example of configuring Unrouted Rules for an Orchestration * * In this example of an Unrouted Orchestration, the rule matches only if the condition is matched. * Alerts created for events that do not match the rule will have severity level set to `info` as defined in `catchAll` block. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as pagerduty from "@pulumi/pagerduty"; * * const unrouted = new pagerduty.EventOrchestrationUnrouted("unrouted", { * eventOrchestration: myMonitor.id, * sets: [{ * id: "start", * rules: [{ * label: "Update the summary of un-matched Critical alerts so they're easier to spot", * conditions: [{ * expression: "event.severity matches 'critical'", * }], * actions: { * severity: "critical", * extractions: [{ * target: "event.summary", * template: "[Critical Unrouted] {{event.summary}}", * }], * }, * }], * }], * catchAll: { * actions: { * severity: "info", * }, * }, * }); * ``` * * ## Import * * Unrouted Orchestration can be imported using the `id` of the Event Orchestration, e.g. * * ```sh * $ pulumi import pagerduty:index/eventOrchestrationUnrouted:EventOrchestrationUnrouted unrouted 1b49abe7-26db-4439-a715-c6d883acfb3e * ``` */ export declare class EventOrchestrationUnrouted extends pulumi.CustomResource { /** * Get an existing EventOrchestrationUnrouted resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: EventOrchestrationUnroutedState, opts?: pulumi.CustomResourceOptions): EventOrchestrationUnrouted; /** * Returns true if the given object is an instance of EventOrchestrationUnrouted. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is EventOrchestrationUnrouted; /** * the `catchAll` actions will be applied if an Event reaches the end of any set without matching any rules in that set. */ readonly catchAll: pulumi.Output; /** * The Event Orchestration to which this Unrouted Orchestration belongs to. */ readonly eventOrchestration: pulumi.Output; /** * An Unrouted Orchestration must contain at least a "start" set, but can contain any number of additional sets that are routed to by other rules to form a directional graph. */ readonly sets: pulumi.Output; /** * Create a EventOrchestrationUnrouted resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: EventOrchestrationUnroutedArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EventOrchestrationUnrouted resources. */ export interface EventOrchestrationUnroutedState { /** * the `catchAll` actions will be applied if an Event reaches the end of any set without matching any rules in that set. */ catchAll?: pulumi.Input; /** * The Event Orchestration to which this Unrouted Orchestration belongs to. */ eventOrchestration?: pulumi.Input; /** * An Unrouted Orchestration must contain at least a "start" set, but can contain any number of additional sets that are routed to by other rules to form a directional graph. */ sets?: pulumi.Input[]>; } /** * The set of arguments for constructing a EventOrchestrationUnrouted resource. */ export interface EventOrchestrationUnroutedArgs { /** * the `catchAll` actions will be applied if an Event reaches the end of any set without matching any rules in that set. */ catchAll: pulumi.Input; /** * The Event Orchestration to which this Unrouted Orchestration belongs to. */ eventOrchestration: pulumi.Input; /** * An Unrouted Orchestration must contain at least a "start" set, but can contain any number of additional sets that are routed to by other rules to form a directional graph. */ sets: pulumi.Input[]>; }