import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Manages Grafana Alerting contact points.
 *
 * * Official documentation
 * * [HTTP API](https://grafana.com/docs/grafana/latest/developers/http_api/alerting_provisioning/#contact-points)
 *
 * This resource requires Grafana 9.1.0 or later.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as grafana from "@pulumiverse/grafana";
 *
 * const myContactPoint = new grafana.alerting.ContactPoint("my_contact_point", {
 *     name: "My Contact Point",
 *     emails: [{
 *         addresses: [
 *             "one@company.org",
 *             "two@company.org",
 *         ],
 *         message: "{{ len .Alerts.Firing }} firing.",
 *         subject: "{{ template \"default.title\" .}}",
 *         singleEmail: true,
 *         disableResolveMessage: false,
 *     }],
 * });
 * ```
 *
 * ## Import
 *
 * ```sh
 * $ pulumi import grafana:alerting/contactPoint:ContactPoint name "{{ name }}"
 * ```
 *
 * ```sh
 * $ pulumi import grafana:alerting/contactPoint:ContactPoint name "{{ orgID }}:{{ name }}"
 * ```
 */
export declare class ContactPoint extends pulumi.CustomResource {
    /**
     * Get an existing ContactPoint 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<pulumi.ID>, state?: ContactPointState, opts?: pulumi.CustomResourceOptions): ContactPoint;
    /**
     * Returns true if the given object is an instance of ContactPoint.  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 ContactPoint;
    /**
     * A contact point that sends notifications to other Alertmanager instances.
     */
    readonly alertmanagers: pulumi.Output<outputs.alerting.ContactPointAlertmanager[] | undefined>;
    /**
     * A contact point that sends notifications to DingDing.
     */
    readonly dingdings: pulumi.Output<outputs.alerting.ContactPointDingding[] | undefined>;
    readonly disableProvenance: pulumi.Output<boolean | undefined>;
    /**
     * A contact point that sends notifications as Discord messages
     */
    readonly discords: pulumi.Output<outputs.alerting.ContactPointDiscord[] | undefined>;
    /**
     * A contact point that sends notifications to an email address.
     */
    readonly emails: pulumi.Output<outputs.alerting.ContactPointEmail[] | undefined>;
    /**
     * A contact point that sends notifications to Google Chat.
     */
    readonly googlechats: pulumi.Output<outputs.alerting.ContactPointGooglechat[] | undefined>;
    /**
     * A contact point that publishes notifications to Apache Kafka topics.
     */
    readonly kafkas: pulumi.Output<outputs.alerting.ContactPointKafka[] | undefined>;
    /**
     * A contact point that sends notifications to LINE.me.
     */
    readonly lines: pulumi.Output<outputs.alerting.ContactPointLine[] | undefined>;
    /**
     * The name of the contact point.
     */
    readonly name: pulumi.Output<string>;
    /**
     * A contact point that sends notifications to Grafana On-Call.
     */
    readonly oncalls: pulumi.Output<outputs.alerting.ContactPointOncall[] | undefined>;
    /**
     * A contact point that sends notifications to OpsGenie.
     */
    readonly opsgenies: pulumi.Output<outputs.alerting.ContactPointOpsgeny[] | undefined>;
    /**
     * The Organization ID. If not set, the Org ID defined in the provider block will be used.
     */
    readonly orgId: pulumi.Output<string | undefined>;
    /**
     * A contact point that sends notifications to PagerDuty.
     */
    readonly pagerduties: pulumi.Output<outputs.alerting.ContactPointPagerduty[] | undefined>;
    /**
     * A contact point that sends notifications to Pushover.
     */
    readonly pushovers: pulumi.Output<outputs.alerting.ContactPointPushover[] | undefined>;
    /**
     * A contact point that sends notifications to SensuGo.
     */
    readonly sensugos: pulumi.Output<outputs.alerting.ContactPointSensugo[] | undefined>;
    /**
     * A contact point that sends notifications to Slack.
     */
    readonly slacks: pulumi.Output<outputs.alerting.ContactPointSlack[] | undefined>;
    /**
     * A contact point that sends notifications to Amazon SNS. Requires Amazon Managed Grafana.
     */
    readonly sns: pulumi.Output<outputs.alerting.ContactPointSn[] | undefined>;
    /**
     * A contact point that sends notifications to Microsoft Teams.
     */
    readonly teams: pulumi.Output<outputs.alerting.ContactPointTeam[] | undefined>;
    /**
     * A contact point that sends notifications to Telegram.
     */
    readonly telegrams: pulumi.Output<outputs.alerting.ContactPointTelegram[] | undefined>;
    /**
     * A contact point that sends notifications to Threema.
     */
    readonly threemas: pulumi.Output<outputs.alerting.ContactPointThreema[] | undefined>;
    /**
     * A contact point that sends notifications to VictorOps (now known as Splunk OnCall).
     */
    readonly victorops: pulumi.Output<outputs.alerting.ContactPointVictorop[] | undefined>;
    /**
     * A contact point that sends notifications to Cisco Webex.
     */
    readonly webexes: pulumi.Output<outputs.alerting.ContactPointWebex[] | undefined>;
    /**
     * A contact point that sends notifications to an arbitrary webhook, using the Prometheus webhook format defined here: https://prometheus.io/docs/alerting/latest/configuration/#webhook_config
     */
    readonly webhooks: pulumi.Output<outputs.alerting.ContactPointWebhook[] | undefined>;
    /**
     * A contact point that sends notifications to WeCom.
     */
    readonly wecoms: pulumi.Output<outputs.alerting.ContactPointWecom[] | undefined>;
    /**
     * Create a ContactPoint 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?: ContactPointArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering ContactPoint resources.
 */
export interface ContactPointState {
    /**
     * A contact point that sends notifications to other Alertmanager instances.
     */
    alertmanagers?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointAlertmanager>[]>;
    /**
     * A contact point that sends notifications to DingDing.
     */
    dingdings?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointDingding>[]>;
    disableProvenance?: pulumi.Input<boolean>;
    /**
     * A contact point that sends notifications as Discord messages
     */
    discords?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointDiscord>[]>;
    /**
     * A contact point that sends notifications to an email address.
     */
    emails?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointEmail>[]>;
    /**
     * A contact point that sends notifications to Google Chat.
     */
    googlechats?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointGooglechat>[]>;
    /**
     * A contact point that publishes notifications to Apache Kafka topics.
     */
    kafkas?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointKafka>[]>;
    /**
     * A contact point that sends notifications to LINE.me.
     */
    lines?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointLine>[]>;
    /**
     * The name of the contact point.
     */
    name?: pulumi.Input<string>;
    /**
     * A contact point that sends notifications to Grafana On-Call.
     */
    oncalls?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointOncall>[]>;
    /**
     * A contact point that sends notifications to OpsGenie.
     */
    opsgenies?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointOpsgeny>[]>;
    /**
     * The Organization ID. If not set, the Org ID defined in the provider block will be used.
     */
    orgId?: pulumi.Input<string>;
    /**
     * A contact point that sends notifications to PagerDuty.
     */
    pagerduties?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointPagerduty>[]>;
    /**
     * A contact point that sends notifications to Pushover.
     */
    pushovers?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointPushover>[]>;
    /**
     * A contact point that sends notifications to SensuGo.
     */
    sensugos?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointSensugo>[]>;
    /**
     * A contact point that sends notifications to Slack.
     */
    slacks?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointSlack>[]>;
    /**
     * A contact point that sends notifications to Amazon SNS. Requires Amazon Managed Grafana.
     */
    sns?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointSn>[]>;
    /**
     * A contact point that sends notifications to Microsoft Teams.
     */
    teams?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointTeam>[]>;
    /**
     * A contact point that sends notifications to Telegram.
     */
    telegrams?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointTelegram>[]>;
    /**
     * A contact point that sends notifications to Threema.
     */
    threemas?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointThreema>[]>;
    /**
     * A contact point that sends notifications to VictorOps (now known as Splunk OnCall).
     */
    victorops?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointVictorop>[]>;
    /**
     * A contact point that sends notifications to Cisco Webex.
     */
    webexes?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointWebex>[]>;
    /**
     * A contact point that sends notifications to an arbitrary webhook, using the Prometheus webhook format defined here: https://prometheus.io/docs/alerting/latest/configuration/#webhook_config
     */
    webhooks?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointWebhook>[]>;
    /**
     * A contact point that sends notifications to WeCom.
     */
    wecoms?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointWecom>[]>;
}
/**
 * The set of arguments for constructing a ContactPoint resource.
 */
export interface ContactPointArgs {
    /**
     * A contact point that sends notifications to other Alertmanager instances.
     */
    alertmanagers?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointAlertmanager>[]>;
    /**
     * A contact point that sends notifications to DingDing.
     */
    dingdings?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointDingding>[]>;
    disableProvenance?: pulumi.Input<boolean>;
    /**
     * A contact point that sends notifications as Discord messages
     */
    discords?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointDiscord>[]>;
    /**
     * A contact point that sends notifications to an email address.
     */
    emails?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointEmail>[]>;
    /**
     * A contact point that sends notifications to Google Chat.
     */
    googlechats?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointGooglechat>[]>;
    /**
     * A contact point that publishes notifications to Apache Kafka topics.
     */
    kafkas?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointKafka>[]>;
    /**
     * A contact point that sends notifications to LINE.me.
     */
    lines?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointLine>[]>;
    /**
     * The name of the contact point.
     */
    name?: pulumi.Input<string>;
    /**
     * A contact point that sends notifications to Grafana On-Call.
     */
    oncalls?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointOncall>[]>;
    /**
     * A contact point that sends notifications to OpsGenie.
     */
    opsgenies?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointOpsgeny>[]>;
    /**
     * The Organization ID. If not set, the Org ID defined in the provider block will be used.
     */
    orgId?: pulumi.Input<string>;
    /**
     * A contact point that sends notifications to PagerDuty.
     */
    pagerduties?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointPagerduty>[]>;
    /**
     * A contact point that sends notifications to Pushover.
     */
    pushovers?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointPushover>[]>;
    /**
     * A contact point that sends notifications to SensuGo.
     */
    sensugos?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointSensugo>[]>;
    /**
     * A contact point that sends notifications to Slack.
     */
    slacks?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointSlack>[]>;
    /**
     * A contact point that sends notifications to Amazon SNS. Requires Amazon Managed Grafana.
     */
    sns?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointSn>[]>;
    /**
     * A contact point that sends notifications to Microsoft Teams.
     */
    teams?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointTeam>[]>;
    /**
     * A contact point that sends notifications to Telegram.
     */
    telegrams?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointTelegram>[]>;
    /**
     * A contact point that sends notifications to Threema.
     */
    threemas?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointThreema>[]>;
    /**
     * A contact point that sends notifications to VictorOps (now known as Splunk OnCall).
     */
    victorops?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointVictorop>[]>;
    /**
     * A contact point that sends notifications to Cisco Webex.
     */
    webexes?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointWebex>[]>;
    /**
     * A contact point that sends notifications to an arbitrary webhook, using the Prometheus webhook format defined here: https://prometheus.io/docs/alerting/latest/configuration/#webhook_config
     */
    webhooks?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointWebhook>[]>;
    /**
     * A contact point that sends notifications to WeCom.
     */
    wecoms?: pulumi.Input<pulumi.Input<inputs.alerting.ContactPointWecom>[]>;
}
