1. Packages
  2. Dynatrace
  3. API Docs
  4. ApplicationDataPrivacy
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

dynatrace.ApplicationDataPrivacy

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

    Create ApplicationDataPrivacy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ApplicationDataPrivacy(name: string, args: ApplicationDataPrivacyArgs, opts?: CustomResourceOptions);
    @overload
    def ApplicationDataPrivacy(resource_name: str,
                               args: ApplicationDataPrivacyArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def ApplicationDataPrivacy(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               do_not_track_behaviour: Optional[str] = None,
                               session_replay_data_privacy: Optional[ApplicationDataPrivacySessionReplayDataPrivacyArgs] = None,
                               web_application_id: Optional[str] = None,
                               data_capture_opt_in: Optional[bool] = None,
                               persistent_cookie_for_user_tracking: Optional[bool] = None)
    func NewApplicationDataPrivacy(ctx *Context, name string, args ApplicationDataPrivacyArgs, opts ...ResourceOption) (*ApplicationDataPrivacy, error)
    public ApplicationDataPrivacy(string name, ApplicationDataPrivacyArgs args, CustomResourceOptions? opts = null)
    public ApplicationDataPrivacy(String name, ApplicationDataPrivacyArgs args)
    public ApplicationDataPrivacy(String name, ApplicationDataPrivacyArgs args, CustomResourceOptions options)
    
    type: dynatrace:ApplicationDataPrivacy
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ApplicationDataPrivacyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ApplicationDataPrivacyArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ApplicationDataPrivacyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationDataPrivacyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationDataPrivacyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var applicationDataPrivacyResource = new Dynatrace.ApplicationDataPrivacy("applicationDataPrivacyResource", new()
    {
        DoNotTrackBehaviour = "string",
        SessionReplayDataPrivacy = new Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyArgs
        {
            ContentMaskingSettings = new Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsArgs
            {
                Playback = new Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackArgs
                {
                    Preset = "string",
                    Rules = new Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesArgs
                    {
                        Rules = new[]
                        {
                            new Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesRuleArgs
                            {
                                Selector = "string",
                                Type = "string",
                                UserInteractionHidden = false,
                            },
                        },
                    },
                },
                Recording = new Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingArgs
                {
                    Preset = "string",
                    Rules = new Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesArgs
                    {
                        Rules = new[]
                        {
                            new Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesRuleArgs
                            {
                                Selector = "string",
                                Type = "string",
                                UserInteractionHidden = false,
                            },
                        },
                    },
                },
            },
            OptIn = false,
            UrlExclusionRules = new[]
            {
                "string",
            },
        },
        WebApplicationId = "string",
        DataCaptureOptIn = false,
        PersistentCookieForUserTracking = false,
    });
    
    example, err := dynatrace.NewApplicationDataPrivacy(ctx, "applicationDataPrivacyResource", &dynatrace.ApplicationDataPrivacyArgs{
    	DoNotTrackBehaviour: pulumi.String("string"),
    	SessionReplayDataPrivacy: &dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyArgs{
    		ContentMaskingSettings: &dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsArgs{
    			Playback: &dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackArgs{
    				Preset: pulumi.String("string"),
    				Rules: &dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesArgs{
    					Rules: dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesRuleArray{
    						&dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesRuleArgs{
    							Selector:              pulumi.String("string"),
    							Type:                  pulumi.String("string"),
    							UserInteractionHidden: pulumi.Bool(false),
    						},
    					},
    				},
    			},
    			Recording: &dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingArgs{
    				Preset: pulumi.String("string"),
    				Rules: &dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesArgs{
    					Rules: dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesRuleArray{
    						&dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesRuleArgs{
    							Selector:              pulumi.String("string"),
    							Type:                  pulumi.String("string"),
    							UserInteractionHidden: pulumi.Bool(false),
    						},
    					},
    				},
    			},
    		},
    		OptIn: pulumi.Bool(false),
    		UrlExclusionRules: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	WebApplicationId:                pulumi.String("string"),
    	DataCaptureOptIn:                pulumi.Bool(false),
    	PersistentCookieForUserTracking: pulumi.Bool(false),
    })
    
    var applicationDataPrivacyResource = new ApplicationDataPrivacy("applicationDataPrivacyResource", ApplicationDataPrivacyArgs.builder()
        .doNotTrackBehaviour("string")
        .sessionReplayDataPrivacy(ApplicationDataPrivacySessionReplayDataPrivacyArgs.builder()
            .contentMaskingSettings(ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsArgs.builder()
                .playback(ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackArgs.builder()
                    .preset("string")
                    .rules(ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesArgs.builder()
                        .rules(ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesRuleArgs.builder()
                            .selector("string")
                            .type("string")
                            .userInteractionHidden(false)
                            .build())
                        .build())
                    .build())
                .recording(ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingArgs.builder()
                    .preset("string")
                    .rules(ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesArgs.builder()
                        .rules(ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesRuleArgs.builder()
                            .selector("string")
                            .type("string")
                            .userInteractionHidden(false)
                            .build())
                        .build())
                    .build())
                .build())
            .optIn(false)
            .urlExclusionRules("string")
            .build())
        .webApplicationId("string")
        .dataCaptureOptIn(false)
        .persistentCookieForUserTracking(false)
        .build());
    
    application_data_privacy_resource = dynatrace.ApplicationDataPrivacy("applicationDataPrivacyResource",
        do_not_track_behaviour="string",
        session_replay_data_privacy=dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyArgs(
            content_masking_settings=dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsArgs(
                playback=dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackArgs(
                    preset="string",
                    rules=dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesArgs(
                        rules=[dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesRuleArgs(
                            selector="string",
                            type="string",
                            user_interaction_hidden=False,
                        )],
                    ),
                ),
                recording=dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingArgs(
                    preset="string",
                    rules=dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesArgs(
                        rules=[dynatrace.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesRuleArgs(
                            selector="string",
                            type="string",
                            user_interaction_hidden=False,
                        )],
                    ),
                ),
            ),
            opt_in=False,
            url_exclusion_rules=["string"],
        ),
        web_application_id="string",
        data_capture_opt_in=False,
        persistent_cookie_for_user_tracking=False)
    
    const applicationDataPrivacyResource = new dynatrace.ApplicationDataPrivacy("applicationDataPrivacyResource", {
        doNotTrackBehaviour: "string",
        sessionReplayDataPrivacy: {
            contentMaskingSettings: {
                playback: {
                    preset: "string",
                    rules: {
                        rules: [{
                            selector: "string",
                            type: "string",
                            userInteractionHidden: false,
                        }],
                    },
                },
                recording: {
                    preset: "string",
                    rules: {
                        rules: [{
                            selector: "string",
                            type: "string",
                            userInteractionHidden: false,
                        }],
                    },
                },
            },
            optIn: false,
            urlExclusionRules: ["string"],
        },
        webApplicationId: "string",
        dataCaptureOptIn: false,
        persistentCookieForUserTracking: false,
    });
    
    type: dynatrace:ApplicationDataPrivacy
    properties:
        dataCaptureOptIn: false
        doNotTrackBehaviour: string
        persistentCookieForUserTracking: false
        sessionReplayDataPrivacy:
            contentMaskingSettings:
                playback:
                    preset: string
                    rules:
                        rules:
                            - selector: string
                              type: string
                              userInteractionHidden: false
                recording:
                    preset: string
                    rules:
                        rules:
                            - selector: string
                              type: string
                              userInteractionHidden: false
            optIn: false
            urlExclusionRules:
                - string
        webApplicationId: string
    

    ApplicationDataPrivacy Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ApplicationDataPrivacy resource accepts the following input properties:

    DoNotTrackBehaviour string
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    SessionReplayDataPrivacy Pulumiverse.Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacy
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    WebApplicationId string
    Dynatrace entity ID of the web application
    DataCaptureOptIn bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    PersistentCookieForUserTracking bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    DoNotTrackBehaviour string
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    SessionReplayDataPrivacy ApplicationDataPrivacySessionReplayDataPrivacyArgs
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    WebApplicationId string
    Dynatrace entity ID of the web application
    DataCaptureOptIn bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    PersistentCookieForUserTracking bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    doNotTrackBehaviour String
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    sessionReplayDataPrivacy ApplicationDataPrivacySessionReplayDataPrivacy
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    webApplicationId String
    Dynatrace entity ID of the web application
    dataCaptureOptIn Boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    persistentCookieForUserTracking Boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    doNotTrackBehaviour string
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    sessionReplayDataPrivacy ApplicationDataPrivacySessionReplayDataPrivacy
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    webApplicationId string
    Dynatrace entity ID of the web application
    dataCaptureOptIn boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    persistentCookieForUserTracking boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    do_not_track_behaviour str
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    session_replay_data_privacy ApplicationDataPrivacySessionReplayDataPrivacyArgs
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    web_application_id str
    Dynatrace entity ID of the web application
    data_capture_opt_in bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    persistent_cookie_for_user_tracking bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    doNotTrackBehaviour String
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    sessionReplayDataPrivacy Property Map
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    webApplicationId String
    Dynatrace entity ID of the web application
    dataCaptureOptIn Boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    persistentCookieForUserTracking Boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ApplicationDataPrivacy resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ApplicationDataPrivacy Resource

    Get an existing ApplicationDataPrivacy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ApplicationDataPrivacyState, opts?: CustomResourceOptions): ApplicationDataPrivacy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            data_capture_opt_in: Optional[bool] = None,
            do_not_track_behaviour: Optional[str] = None,
            persistent_cookie_for_user_tracking: Optional[bool] = None,
            session_replay_data_privacy: Optional[ApplicationDataPrivacySessionReplayDataPrivacyArgs] = None,
            web_application_id: Optional[str] = None) -> ApplicationDataPrivacy
    func GetApplicationDataPrivacy(ctx *Context, name string, id IDInput, state *ApplicationDataPrivacyState, opts ...ResourceOption) (*ApplicationDataPrivacy, error)
    public static ApplicationDataPrivacy Get(string name, Input<string> id, ApplicationDataPrivacyState? state, CustomResourceOptions? opts = null)
    public static ApplicationDataPrivacy get(String name, Output<String> id, ApplicationDataPrivacyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    DataCaptureOptIn bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    DoNotTrackBehaviour string
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    PersistentCookieForUserTracking bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    SessionReplayDataPrivacy Pulumiverse.Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacy
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    WebApplicationId string
    Dynatrace entity ID of the web application
    DataCaptureOptIn bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    DoNotTrackBehaviour string
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    PersistentCookieForUserTracking bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    SessionReplayDataPrivacy ApplicationDataPrivacySessionReplayDataPrivacyArgs
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    WebApplicationId string
    Dynatrace entity ID of the web application
    dataCaptureOptIn Boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    doNotTrackBehaviour String
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    persistentCookieForUserTracking Boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    sessionReplayDataPrivacy ApplicationDataPrivacySessionReplayDataPrivacy
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    webApplicationId String
    Dynatrace entity ID of the web application
    dataCaptureOptIn boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    doNotTrackBehaviour string
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    persistentCookieForUserTracking boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    sessionReplayDataPrivacy ApplicationDataPrivacySessionReplayDataPrivacy
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    webApplicationId string
    Dynatrace entity ID of the web application
    data_capture_opt_in bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    do_not_track_behaviour str
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    persistent_cookie_for_user_tracking bool
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    session_replay_data_privacy ApplicationDataPrivacySessionReplayDataPrivacyArgs
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    web_application_id str
    Dynatrace entity ID of the web application
    dataCaptureOptIn Boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to disable data capture and cookies until JavaScriptAPI dtrum.enable() is called
    doNotTrackBehaviour String
    (Field has overlap with dynatrace.DataPrivacy) How to handle the "Do Not Track" header:
    persistentCookieForUserTracking Boolean
    (Field has overlap with dynatrace.DataPrivacy) Set to true to set persistent cookie in order to recognize returning devices
    sessionReplayDataPrivacy Property Map
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Data privacy settings for Session Replay
    webApplicationId String
    Dynatrace entity ID of the web application

    Supporting Types

    ApplicationDataPrivacySessionReplayDataPrivacy, ApplicationDataPrivacySessionReplayDataPrivacyArgs

    ContentMaskingSettings Pulumiverse.Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettings
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Content masking settings for Session Replay.
    OptIn bool
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) If true, session recording is disabled until JavaScriptAPI dtrum.enableSessionReplay() is called
    UrlExclusionRules List<string>
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) A list of URLs to be excluded from recording
    ContentMaskingSettings ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettings
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Content masking settings for Session Replay.
    OptIn bool
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) If true, session recording is disabled until JavaScriptAPI dtrum.enableSessionReplay() is called
    UrlExclusionRules []string
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) A list of URLs to be excluded from recording
    contentMaskingSettings ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettings
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Content masking settings for Session Replay.
    optIn Boolean
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) If true, session recording is disabled until JavaScriptAPI dtrum.enableSessionReplay() is called
    urlExclusionRules List<String>
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) A list of URLs to be excluded from recording
    contentMaskingSettings ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettings
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Content masking settings for Session Replay.
    optIn boolean
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) If true, session recording is disabled until JavaScriptAPI dtrum.enableSessionReplay() is called
    urlExclusionRules string[]
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) A list of URLs to be excluded from recording
    content_masking_settings ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettings
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Content masking settings for Session Replay.
    opt_in bool
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) If true, session recording is disabled until JavaScriptAPI dtrum.enableSessionReplay() is called
    url_exclusion_rules Sequence[str]
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) A list of URLs to be excluded from recording
    contentMaskingSettings Property Map
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Content masking settings for Session Replay.
    optIn Boolean
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) If true, session recording is disabled until JavaScriptAPI dtrum.enableSessionReplay() is called
    urlExclusionRules List<String>
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) A list of URLs to be excluded from recording

    ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettings, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsArgs

    Playback Pulumiverse.Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlayback
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Playback
    Recording Pulumiverse.Dynatrace.Inputs.ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecording
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Recording
    Playback ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlayback
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Playback
    Recording ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecording
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Recording
    playback ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlayback
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Playback
    recording ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecording
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Recording
    playback ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlayback
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Playback
    recording ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecording
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Recording
    playback ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlayback
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Playback
    recording ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecording
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Recording
    playback Property Map
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Playback
    recording Property Map
    (Field has overlap with dynatrace.SessionReplayWebPrivacy) Configuration of the Session Replay masking during Recording

    ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlayback, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackArgs

    preset String
    The type of the masking:
    rules Property Map
    A list of masking rules

    ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRules, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesArgs

    rules List<Property Map>
    The masking rule defining how data is hidden

    ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesRule, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesRuleArgs

    Selector string
    The selector for the element or the attribute to be masked.
    Type string
    The type of the masking rule
    UserInteractionHidden bool
    Interactions with the element are (true) or are not (`false) masked
    Selector string
    The selector for the element or the attribute to be masked.
    Type string
    The type of the masking rule
    UserInteractionHidden bool
    Interactions with the element are (true) or are not (`false) masked
    selector String
    The selector for the element or the attribute to be masked.
    type String
    The type of the masking rule
    userInteractionHidden Boolean
    Interactions with the element are (true) or are not (`false) masked
    selector string
    The selector for the element or the attribute to be masked.
    type string
    The type of the masking rule
    userInteractionHidden boolean
    Interactions with the element are (true) or are not (`false) masked
    selector str
    The selector for the element or the attribute to be masked.
    type str
    The type of the masking rule
    user_interaction_hidden bool
    Interactions with the element are (true) or are not (`false) masked
    selector String
    The selector for the element or the attribute to be masked.
    type String
    The type of the masking rule
    userInteractionHidden Boolean
    Interactions with the element are (true) or are not (`false) masked

    ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecording, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingArgs

    preset String
    The type of the masking:
    rules Property Map
    A list of masking rules

    ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRules, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesArgs

    rules List<Property Map>
    The masking rule defining how data is hidden

    ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesRule, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesRuleArgs

    Selector string
    The selector for the element or the attribute to be masked.
    Type string
    The type of the masking rule
    UserInteractionHidden bool
    Interactions with the element are (true) or are not (`false) masked
    Selector string
    The selector for the element or the attribute to be masked.
    Type string
    The type of the masking rule
    UserInteractionHidden bool
    Interactions with the element are (true) or are not (`false) masked
    selector String
    The selector for the element or the attribute to be masked.
    type String
    The type of the masking rule
    userInteractionHidden Boolean
    Interactions with the element are (true) or are not (`false) masked
    selector string
    The selector for the element or the attribute to be masked.
    type string
    The type of the masking rule
    userInteractionHidden boolean
    Interactions with the element are (true) or are not (`false) masked
    selector str
    The selector for the element or the attribute to be masked.
    type str
    The type of the masking rule
    user_interaction_hidden bool
    Interactions with the element are (true) or are not (`false) masked
    selector String
    The selector for the element or the attribute to be masked.
    type String
    The type of the masking rule
    userInteractionHidden Boolean
    Interactions with the element are (true) or are not (`false) masked

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse