import * as pulumi from "@pulumi/pulumi";
export declare class HttpMonitorOutage extends pulumi.CustomResource {
    /**
     * Get an existing HttpMonitorOutage 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?: HttpMonitorOutageState, opts?: pulumi.CustomResourceOptions): HttpMonitorOutage;
    /**
     * Returns true if the given object is an instance of HttpMonitorOutage.  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 HttpMonitorOutage;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Alert if all locations are unable to access my web application
     */
    readonly globalConsecutiveOutageCountThreshold: pulumi.Output<number | undefined>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Generate a problem and send an alert when the monitor is unavailable at all configured locations.
     */
    readonly globalOutages: pulumi.Output<boolean>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) are unable to access my web application
     */
    readonly localConsecutiveOutageCountThreshold: pulumi.Output<number | undefined>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Alert if at least
     */
    readonly localLocationOutageCountThreshold: pulumi.Output<number | undefined>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Generate a problem and send an alert when the monitor is unavailable for one or more consecutive runs at any location.
     */
    readonly localOutages: pulumi.Output<boolean>;
    /**
     * The scope of this setting (HTTP_CHECK). Omit this property if you want to cover the whole environment.
     */
    readonly scope: pulumi.Output<string | undefined>;
    /**
     * Create a HttpMonitorOutage 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: HttpMonitorOutageArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering HttpMonitorOutage resources.
 */
export interface HttpMonitorOutageState {
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Alert if all locations are unable to access my web application
     */
    globalConsecutiveOutageCountThreshold?: pulumi.Input<number>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Generate a problem and send an alert when the monitor is unavailable at all configured locations.
     */
    globalOutages?: pulumi.Input<boolean>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) are unable to access my web application
     */
    localConsecutiveOutageCountThreshold?: pulumi.Input<number>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Alert if at least
     */
    localLocationOutageCountThreshold?: pulumi.Input<number>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Generate a problem and send an alert when the monitor is unavailable for one or more consecutive runs at any location.
     */
    localOutages?: pulumi.Input<boolean>;
    /**
     * The scope of this setting (HTTP_CHECK). Omit this property if you want to cover the whole environment.
     */
    scope?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a HttpMonitorOutage resource.
 */
export interface HttpMonitorOutageArgs {
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Alert if all locations are unable to access my web application
     */
    globalConsecutiveOutageCountThreshold?: pulumi.Input<number>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Generate a problem and send an alert when the monitor is unavailable at all configured locations.
     */
    globalOutages: pulumi.Input<boolean>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) are unable to access my web application
     */
    localConsecutiveOutageCountThreshold?: pulumi.Input<number>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Alert if at least
     */
    localLocationOutageCountThreshold?: pulumi.Input<number>;
    /**
     * (Field has overlap with `dynatrace.HttpMonitor`) Generate a problem and send an alert when the monitor is unavailable for one or more consecutive runs at any location.
     */
    localOutages: pulumi.Input<boolean>;
    /**
     * The scope of this setting (HTTP_CHECK). Omit this property if you want to cover the whole environment.
     */
    scope?: pulumi.Input<string>;
}
