import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare class SessionReplayWebPrivacy extends pulumi.CustomResource {
    /**
     * Get an existing SessionReplayWebPrivacy 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?: SessionReplayWebPrivacyState, opts?: pulumi.CustomResourceOptions): SessionReplayWebPrivacy;
    /**
     * Returns true if the given object is an instance of SessionReplayWebPrivacy.  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 SessionReplayWebPrivacy;
    /**
     * The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
     */
    readonly applicationId: pulumi.Output<string | undefined>;
    /**
     * (Field has overlap with `dynatrace.ApplicationDataPrivacy`) When [Session Replay opt-in mode](https://dt-url.net/sr-opt-in-mode) is turned on, Session Replay is deactivated until explicitly activated via an API call.
     */
    readonly enableOptInMode: pulumi.Output<boolean>;
    /**
     * (Field has overlap with `dynatrace.ApplicationDataPrivacy`) To protect your end users' privacy, select or customize [predefined masking options](https://dt-url.net/sr-masking-preset-options) that suit your content recording and playback requirements.
     */
    readonly maskingPresets: pulumi.Output<outputs.SessionReplayWebPrivacyMaskingPresets>;
    /**
     * (Field has overlap with `dynatrace.ApplicationDataPrivacy`) Exclude webpages or views from Session Replay recording by adding [URL exclusion rules](https://dt-url.net/sr-url-exclusion)
     */
    readonly urlExclusionPatternLists: pulumi.Output<string[] | undefined>;
    /**
     * Create a SessionReplayWebPrivacy 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: SessionReplayWebPrivacyArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering SessionReplayWebPrivacy resources.
 */
export interface SessionReplayWebPrivacyState {
    /**
     * The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
     */
    applicationId?: pulumi.Input<string>;
    /**
     * (Field has overlap with `dynatrace.ApplicationDataPrivacy`) When [Session Replay opt-in mode](https://dt-url.net/sr-opt-in-mode) is turned on, Session Replay is deactivated until explicitly activated via an API call.
     */
    enableOptInMode?: pulumi.Input<boolean>;
    /**
     * (Field has overlap with `dynatrace.ApplicationDataPrivacy`) To protect your end users' privacy, select or customize [predefined masking options](https://dt-url.net/sr-masking-preset-options) that suit your content recording and playback requirements.
     */
    maskingPresets?: pulumi.Input<inputs.SessionReplayWebPrivacyMaskingPresets>;
    /**
     * (Field has overlap with `dynatrace.ApplicationDataPrivacy`) Exclude webpages or views from Session Replay recording by adding [URL exclusion rules](https://dt-url.net/sr-url-exclusion)
     */
    urlExclusionPatternLists?: pulumi.Input<pulumi.Input<string>[]>;
}
/**
 * The set of arguments for constructing a SessionReplayWebPrivacy resource.
 */
export interface SessionReplayWebPrivacyArgs {
    /**
     * The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
     */
    applicationId?: pulumi.Input<string>;
    /**
     * (Field has overlap with `dynatrace.ApplicationDataPrivacy`) When [Session Replay opt-in mode](https://dt-url.net/sr-opt-in-mode) is turned on, Session Replay is deactivated until explicitly activated via an API call.
     */
    enableOptInMode: pulumi.Input<boolean>;
    /**
     * (Field has overlap with `dynatrace.ApplicationDataPrivacy`) To protect your end users' privacy, select or customize [predefined masking options](https://dt-url.net/sr-masking-preset-options) that suit your content recording and playback requirements.
     */
    maskingPresets: pulumi.Input<inputs.SessionReplayWebPrivacyMaskingPresets>;
    /**
     * (Field has overlap with `dynatrace.ApplicationDataPrivacy`) Exclude webpages or views from Session Replay recording by adding [URL exclusion rules](https://dt-url.net/sr-url-exclusion)
     */
    urlExclusionPatternLists?: pulumi.Input<pulumi.Input<string>[]>;
}
