import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Notification extends pulumi.CustomResource { /** * Get an existing Notification 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?: NotificationState, opts?: pulumi.CustomResourceOptions): Notification; /** * Returns true if the given object is an instance of Notification. 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 Notification; /** * Configuration for Ansible Tower Notification */ readonly ansibleTower: pulumi.Output; /** * Configuration for Generic Notification */ readonly config: pulumi.Output; /** * Configuration for Email Notification */ readonly email: pulumi.Output; /** * Configuration for Jira Notification */ readonly jira: pulumi.Output; /** * Configuration for OpsGenie Notification */ readonly opsGenie: pulumi.Output; /** * Configuration for PagerDuty Notification */ readonly pagerDuty: pulumi.Output; /** * Configuration for ServiceNow Notification */ readonly serviceNow: pulumi.Output; /** * Configuration for Slack Notification */ readonly slack: pulumi.Output; /** * Configuration for Trello Notification */ readonly trello: pulumi.Output; /** * Configuration for VictorOps Notification */ readonly victorOps: pulumi.Output; /** * Configuration for WebHook Notification */ readonly webHook: pulumi.Output; /** * Configuration for XMatters Notification */ readonly xmatters: pulumi.Output; /** * Create a Notification 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?: NotificationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Notification resources. */ export interface NotificationState { /** * Configuration for Ansible Tower Notification */ ansibleTower?: pulumi.Input; /** * Configuration for Generic Notification */ config?: pulumi.Input; /** * Configuration for Email Notification */ email?: pulumi.Input; /** * Configuration for Jira Notification */ jira?: pulumi.Input; /** * Configuration for OpsGenie Notification */ opsGenie?: pulumi.Input; /** * Configuration for PagerDuty Notification */ pagerDuty?: pulumi.Input; /** * Configuration for ServiceNow Notification */ serviceNow?: pulumi.Input; /** * Configuration for Slack Notification */ slack?: pulumi.Input; /** * Configuration for Trello Notification */ trello?: pulumi.Input; /** * Configuration for VictorOps Notification */ victorOps?: pulumi.Input; /** * Configuration for WebHook Notification */ webHook?: pulumi.Input; /** * Configuration for XMatters Notification */ xmatters?: pulumi.Input; } /** * The set of arguments for constructing a Notification resource. */ export interface NotificationArgs { /** * Configuration for Ansible Tower Notification */ ansibleTower?: pulumi.Input; /** * Configuration for Generic Notification */ config?: pulumi.Input; /** * Configuration for Email Notification */ email?: pulumi.Input; /** * Configuration for Jira Notification */ jira?: pulumi.Input; /** * Configuration for OpsGenie Notification */ opsGenie?: pulumi.Input; /** * Configuration for PagerDuty Notification */ pagerDuty?: pulumi.Input; /** * Configuration for ServiceNow Notification */ serviceNow?: pulumi.Input; /** * Configuration for Slack Notification */ slack?: pulumi.Input; /** * Configuration for Trello Notification */ trello?: pulumi.Input; /** * Configuration for VictorOps Notification */ victorOps?: pulumi.Input; /** * Configuration for WebHook Notification */ webHook?: pulumi.Input; /** * Configuration for XMatters Notification */ xmatters?: pulumi.Input; }