import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare class ServiceAnomaliesV2 extends pulumi.CustomResource {
    /**
     * Get an existing ServiceAnomaliesV2 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?: ServiceAnomaliesV2State, opts?: pulumi.CustomResourceOptions): ServiceAnomaliesV2;
    /**
     * Returns true if the given object is an instance of ServiceAnomaliesV2.  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 ServiceAnomaliesV2;
    /**
     * Failure rate
     */
    readonly failureRate: pulumi.Output<outputs.ServiceAnomaliesV2FailureRate>;
    /**
     * Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
     */
    readonly loadDrops: pulumi.Output<outputs.ServiceAnomaliesV2LoadDrops>;
    /**
     * Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
     */
    readonly loadSpikes: pulumi.Output<outputs.ServiceAnomaliesV2LoadSpikes>;
    /**
     * Response time
     */
    readonly responseTime: pulumi.Output<outputs.ServiceAnomaliesV2ResponseTime>;
    /**
     * The scope of this setting (SERVICE*METHOD, SERVICE, HOST*GROUP). Omit this property if you want to cover the whole environment.
     */
    readonly scope: pulumi.Output<string | undefined>;
    /**
     * Create a ServiceAnomaliesV2 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: ServiceAnomaliesV2Args, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering ServiceAnomaliesV2 resources.
 */
export interface ServiceAnomaliesV2State {
    /**
     * Failure rate
     */
    failureRate?: pulumi.Input<inputs.ServiceAnomaliesV2FailureRate>;
    /**
     * Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
     */
    loadDrops?: pulumi.Input<inputs.ServiceAnomaliesV2LoadDrops>;
    /**
     * Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
     */
    loadSpikes?: pulumi.Input<inputs.ServiceAnomaliesV2LoadSpikes>;
    /**
     * Response time
     */
    responseTime?: pulumi.Input<inputs.ServiceAnomaliesV2ResponseTime>;
    /**
     * The scope of this setting (SERVICE*METHOD, SERVICE, HOST*GROUP). Omit this property if you want to cover the whole environment.
     */
    scope?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a ServiceAnomaliesV2 resource.
 */
export interface ServiceAnomaliesV2Args {
    /**
     * Failure rate
     */
    failureRate: pulumi.Input<inputs.ServiceAnomaliesV2FailureRate>;
    /**
     * Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
     */
    loadDrops: pulumi.Input<inputs.ServiceAnomaliesV2LoadDrops>;
    /**
     * Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
     */
    loadSpikes: pulumi.Input<inputs.ServiceAnomaliesV2LoadSpikes>;
    /**
     * Response time
     */
    responseTime: pulumi.Input<inputs.ServiceAnomaliesV2ResponseTime>;
    /**
     * The scope of this setting (SERVICE*METHOD, SERVICE, HOST*GROUP). Omit this property if you want to cover the whole environment.
     */
    scope?: pulumi.Input<string>;
}
