import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class ApplicationErrorRules extends pulumi.CustomResource { /** * Get an existing ApplicationErrorRules 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?: ApplicationErrorRulesState, opts?: pulumi.CustomResourceOptions): ApplicationErrorRules; /** * Returns true if the given object is an instance of ApplicationErrorRules. 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 ApplicationErrorRules; /** * (Field has overlap with `dynatrace.WebAppCustomErrors`) An ordered list of HTTP errors. */ readonly customErrors: pulumi.Output; /** * (Field has overlap with `dynatrace.WebAppRequestErrors`) An ordered list of HTTP errors. * * Rules are evaluated from top to bottom; the first matching rule applies */ readonly httpErrors: pulumi.Output; /** * (Field has overlap with `dynatrace.WebAppCustomErrors`) Exclude (`true`) or include (`false`) custom errors listed in **customErrorRules** in Apdex calculation */ readonly ignoreCustomErrorsApdex: pulumi.Output; /** * (Field has overlap with `dynatrace.WebAppRequestErrors`) Exclude (`true`) or include (`false`) HTTP errors listed in **httpErrorRules** in Apdex calculation */ readonly ignoreHttpErrorsApdex: pulumi.Output; /** * Exclude (`true`) or include (`false`) JavaScript errors in Apdex calculation */ readonly ignoreJsErrorsApdex: pulumi.Output; /** * The EntityID of the the WebApplication */ readonly webApplicationId: pulumi.Output; /** * Create a ApplicationErrorRules 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?: ApplicationErrorRulesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ApplicationErrorRules resources. */ export interface ApplicationErrorRulesState { /** * (Field has overlap with `dynatrace.WebAppCustomErrors`) An ordered list of HTTP errors. */ customErrors?: pulumi.Input; /** * (Field has overlap with `dynatrace.WebAppRequestErrors`) An ordered list of HTTP errors. * * Rules are evaluated from top to bottom; the first matching rule applies */ httpErrors?: pulumi.Input; /** * (Field has overlap with `dynatrace.WebAppCustomErrors`) Exclude (`true`) or include (`false`) custom errors listed in **customErrorRules** in Apdex calculation */ ignoreCustomErrorsApdex?: pulumi.Input; /** * (Field has overlap with `dynatrace.WebAppRequestErrors`) Exclude (`true`) or include (`false`) HTTP errors listed in **httpErrorRules** in Apdex calculation */ ignoreHttpErrorsApdex?: pulumi.Input; /** * Exclude (`true`) or include (`false`) JavaScript errors in Apdex calculation */ ignoreJsErrorsApdex?: pulumi.Input; /** * The EntityID of the the WebApplication */ webApplicationId?: pulumi.Input; } /** * The set of arguments for constructing a ApplicationErrorRules resource. */ export interface ApplicationErrorRulesArgs { /** * (Field has overlap with `dynatrace.WebAppCustomErrors`) An ordered list of HTTP errors. */ customErrors?: pulumi.Input; /** * (Field has overlap with `dynatrace.WebAppRequestErrors`) An ordered list of HTTP errors. * * Rules are evaluated from top to bottom; the first matching rule applies */ httpErrors?: pulumi.Input; /** * (Field has overlap with `dynatrace.WebAppCustomErrors`) Exclude (`true`) or include (`false`) custom errors listed in **customErrorRules** in Apdex calculation */ ignoreCustomErrorsApdex?: pulumi.Input; /** * (Field has overlap with `dynatrace.WebAppRequestErrors`) Exclude (`true`) or include (`false`) HTTP errors listed in **httpErrorRules** in Apdex calculation */ ignoreHttpErrorsApdex?: pulumi.Input; /** * Exclude (`true`) or include (`false`) JavaScript errors in Apdex calculation */ ignoreJsErrorsApdex?: pulumi.Input; /** * The EntityID of the the WebApplication */ webApplicationId?: pulumi.Input; }