1. Packages
  2. Dynatrace
  3. API Docs
  4. DataPrivacy
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

dynatrace.DataPrivacy

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

    Create DataPrivacy Resource

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

    Constructor syntax

    new DataPrivacy(name: string, args: DataPrivacyArgs, opts?: CustomResourceOptions);
    @overload
    def DataPrivacy(resource_name: str,
                    args: DataPrivacyArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def DataPrivacy(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    data_collection: Optional[DataPrivacyDataCollectionArgs] = None,
                    do_not_track: Optional[DataPrivacyDoNotTrackArgs] = None,
                    masking: Optional[DataPrivacyMaskingArgs] = None,
                    user_tracking: Optional[DataPrivacyUserTrackingArgs] = None,
                    application_id: Optional[str] = None)
    func NewDataPrivacy(ctx *Context, name string, args DataPrivacyArgs, opts ...ResourceOption) (*DataPrivacy, error)
    public DataPrivacy(string name, DataPrivacyArgs args, CustomResourceOptions? opts = null)
    public DataPrivacy(String name, DataPrivacyArgs args)
    public DataPrivacy(String name, DataPrivacyArgs args, CustomResourceOptions options)
    
    type: dynatrace:DataPrivacy
    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 DataPrivacyArgs
    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 DataPrivacyArgs
    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 DataPrivacyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DataPrivacyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DataPrivacyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var dataPrivacyResource = new Dynatrace.DataPrivacy("dataPrivacyResource", new()
    {
        DataCollection = new Dynatrace.Inputs.DataPrivacyDataCollectionArgs
        {
            OptInModeEnabled = false,
        },
        DoNotTrack = new Dynatrace.Inputs.DataPrivacyDoNotTrackArgs
        {
            ComplyWithDoNotTrack = false,
            DoNotTrack = "string",
        },
        Masking = new Dynatrace.Inputs.DataPrivacyMaskingArgs
        {
            IpAddressMaskingEnabled = false,
            PersonalDataUriMaskingEnabled = false,
            UserActionMaskingEnabled = false,
            IpAddressMasking = "string",
        },
        UserTracking = new Dynatrace.Inputs.DataPrivacyUserTrackingArgs
        {
            PersistentCookieEnabled = false,
        },
        ApplicationId = "string",
    });
    
    example, err := dynatrace.NewDataPrivacy(ctx, "dataPrivacyResource", &dynatrace.DataPrivacyArgs{
    	DataCollection: &dynatrace.DataPrivacyDataCollectionArgs{
    		OptInModeEnabled: pulumi.Bool(false),
    	},
    	DoNotTrack: &dynatrace.DataPrivacyDoNotTrackArgs{
    		ComplyWithDoNotTrack: pulumi.Bool(false),
    		DoNotTrack:           pulumi.String("string"),
    	},
    	Masking: &dynatrace.DataPrivacyMaskingArgs{
    		IpAddressMaskingEnabled:       pulumi.Bool(false),
    		PersonalDataUriMaskingEnabled: pulumi.Bool(false),
    		UserActionMaskingEnabled:      pulumi.Bool(false),
    		IpAddressMasking:              pulumi.String("string"),
    	},
    	UserTracking: &dynatrace.DataPrivacyUserTrackingArgs{
    		PersistentCookieEnabled: pulumi.Bool(false),
    	},
    	ApplicationId: pulumi.String("string"),
    })
    
    var dataPrivacyResource = new DataPrivacy("dataPrivacyResource", DataPrivacyArgs.builder()        
        .dataCollection(DataPrivacyDataCollectionArgs.builder()
            .optInModeEnabled(false)
            .build())
        .doNotTrack(DataPrivacyDoNotTrackArgs.builder()
            .complyWithDoNotTrack(false)
            .doNotTrack("string")
            .build())
        .masking(DataPrivacyMaskingArgs.builder()
            .ipAddressMaskingEnabled(false)
            .personalDataUriMaskingEnabled(false)
            .userActionMaskingEnabled(false)
            .ipAddressMasking("string")
            .build())
        .userTracking(DataPrivacyUserTrackingArgs.builder()
            .persistentCookieEnabled(false)
            .build())
        .applicationId("string")
        .build());
    
    data_privacy_resource = dynatrace.DataPrivacy("dataPrivacyResource",
        data_collection=dynatrace.DataPrivacyDataCollectionArgs(
            opt_in_mode_enabled=False,
        ),
        do_not_track=dynatrace.DataPrivacyDoNotTrackArgs(
            comply_with_do_not_track=False,
            do_not_track="string",
        ),
        masking=dynatrace.DataPrivacyMaskingArgs(
            ip_address_masking_enabled=False,
            personal_data_uri_masking_enabled=False,
            user_action_masking_enabled=False,
            ip_address_masking="string",
        ),
        user_tracking=dynatrace.DataPrivacyUserTrackingArgs(
            persistent_cookie_enabled=False,
        ),
        application_id="string")
    
    const dataPrivacyResource = new dynatrace.DataPrivacy("dataPrivacyResource", {
        dataCollection: {
            optInModeEnabled: false,
        },
        doNotTrack: {
            complyWithDoNotTrack: false,
            doNotTrack: "string",
        },
        masking: {
            ipAddressMaskingEnabled: false,
            personalDataUriMaskingEnabled: false,
            userActionMaskingEnabled: false,
            ipAddressMasking: "string",
        },
        userTracking: {
            persistentCookieEnabled: false,
        },
        applicationId: "string",
    });
    
    type: dynatrace:DataPrivacy
    properties:
        applicationId: string
        dataCollection:
            optInModeEnabled: false
        doNotTrack:
            complyWithDoNotTrack: false
            doNotTrack: string
        masking:
            ipAddressMasking: string
            ipAddressMaskingEnabled: false
            personalDataUriMaskingEnabled: false
            userActionMaskingEnabled: false
        userTracking:
            persistentCookieEnabled: false
    

    DataPrivacy 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 DataPrivacy resource accepts the following input properties:

    DataCollection Lbrlabs.PulumiPackage.Dynatrace.Inputs.DataPrivacyDataCollection
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    DoNotTrack Lbrlabs.PulumiPackage.Dynatrace.Inputs.DataPrivacyDoNotTrack
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    Masking Lbrlabs.PulumiPackage.Dynatrace.Inputs.DataPrivacyMasking
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    UserTracking Lbrlabs.PulumiPackage.Dynatrace.Inputs.DataPrivacyUserTracking
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    DataCollection DataPrivacyDataCollectionArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    DoNotTrack DataPrivacyDoNotTrackArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    Masking DataPrivacyMaskingArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    UserTracking DataPrivacyUserTrackingArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    dataCollection DataPrivacyDataCollection
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    doNotTrack DataPrivacyDoNotTrack
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    masking DataPrivacyMasking
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    userTracking DataPrivacyUserTracking
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    dataCollection DataPrivacyDataCollection
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    doNotTrack DataPrivacyDoNotTrack
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    masking DataPrivacyMasking
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    userTracking DataPrivacyUserTracking
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    applicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    data_collection DataPrivacyDataCollectionArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    do_not_track DataPrivacyDoNotTrackArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    masking DataPrivacyMaskingArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    user_tracking DataPrivacyUserTrackingArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    application_id str
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    dataCollection Property Map
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    doNotTrack Property Map
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    masking Property Map
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    userTracking Property Map
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DataPrivacy 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 DataPrivacy Resource

    Get an existing DataPrivacy 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?: DataPrivacyState, opts?: CustomResourceOptions): DataPrivacy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_id: Optional[str] = None,
            data_collection: Optional[DataPrivacyDataCollectionArgs] = None,
            do_not_track: Optional[DataPrivacyDoNotTrackArgs] = None,
            masking: Optional[DataPrivacyMaskingArgs] = None,
            user_tracking: Optional[DataPrivacyUserTrackingArgs] = None) -> DataPrivacy
    func GetDataPrivacy(ctx *Context, name string, id IDInput, state *DataPrivacyState, opts ...ResourceOption) (*DataPrivacy, error)
    public static DataPrivacy Get(string name, Input<string> id, DataPrivacyState? state, CustomResourceOptions? opts = null)
    public static DataPrivacy get(String name, Output<String> id, DataPrivacyState 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:
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    DataCollection Lbrlabs.PulumiPackage.Dynatrace.Inputs.DataPrivacyDataCollection
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    DoNotTrack Lbrlabs.PulumiPackage.Dynatrace.Inputs.DataPrivacyDoNotTrack
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    Masking Lbrlabs.PulumiPackage.Dynatrace.Inputs.DataPrivacyMasking
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    UserTracking Lbrlabs.PulumiPackage.Dynatrace.Inputs.DataPrivacyUserTracking
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    ApplicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    DataCollection DataPrivacyDataCollectionArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    DoNotTrack DataPrivacyDoNotTrackArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    Masking DataPrivacyMaskingArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    UserTracking DataPrivacyUserTrackingArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    dataCollection DataPrivacyDataCollection
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    doNotTrack DataPrivacyDoNotTrack
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    masking DataPrivacyMasking
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    userTracking DataPrivacyUserTracking
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    applicationId string
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    dataCollection DataPrivacyDataCollection
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    doNotTrack DataPrivacyDoNotTrack
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    masking DataPrivacyMasking
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    userTracking DataPrivacyUserTracking
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    application_id str
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    data_collection DataPrivacyDataCollectionArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    do_not_track DataPrivacyDoNotTrackArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    masking DataPrivacyMaskingArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    user_tracking DataPrivacyUserTrackingArgs
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking
    applicationId String
    The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
    dataCollection Property Map
    (Field has overlap with dynatrace.ApplicationDataPrivacy) To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
    doNotTrack Property Map
    (Field has overlap with dynatrace.ApplicationDataPrivacy) Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
    masking Property Map
    (Field has overlap with dynatrace.ApplicationDataPrivacy)
    userTracking Property Map
    (Field has overlap with dynatrace.ApplicationDataPrivacy) User tracking

    Supporting Types

    DataPrivacyDataCollection, DataPrivacyDataCollectionArgs

    OptInModeEnabled bool
    With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
    OptInModeEnabled bool
    With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
    optInModeEnabled Boolean
    With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
    optInModeEnabled boolean
    With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
    opt_in_mode_enabled bool
    With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
    optInModeEnabled Boolean
    With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.

    DataPrivacyDoNotTrack, DataPrivacyDoNotTrackArgs

    ComplyWithDoNotTrack bool
    Comply with "Do Not Track" browser settings
    DoNotTrack string
    Possible Values: Anonymous, Disable_rum
    ComplyWithDoNotTrack bool
    Comply with "Do Not Track" browser settings
    DoNotTrack string
    Possible Values: Anonymous, Disable_rum
    complyWithDoNotTrack Boolean
    Comply with "Do Not Track" browser settings
    doNotTrack String
    Possible Values: Anonymous, Disable_rum
    complyWithDoNotTrack boolean
    Comply with "Do Not Track" browser settings
    doNotTrack string
    Possible Values: Anonymous, Disable_rum
    comply_with_do_not_track bool
    Comply with "Do Not Track" browser settings
    do_not_track str
    Possible Values: Anonymous, Disable_rum
    complyWithDoNotTrack Boolean
    Comply with "Do Not Track" browser settings
    doNotTrack String
    Possible Values: Anonymous, Disable_rum

    DataPrivacyMasking, DataPrivacyMaskingArgs

    IpAddressMaskingEnabled bool
    Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.
    PersonalDataUriMaskingEnabled bool
    UserActionMaskingEnabled bool
    IpAddressMasking string
    IpAddressMaskingEnabled bool
    Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.
    PersonalDataUriMaskingEnabled bool
    UserActionMaskingEnabled bool
    IpAddressMasking string
    ipAddressMaskingEnabled Boolean
    Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.
    personalDataUriMaskingEnabled Boolean
    userActionMaskingEnabled Boolean
    ipAddressMasking String
    ipAddressMaskingEnabled boolean
    Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.
    personalDataUriMaskingEnabled boolean
    userActionMaskingEnabled boolean
    ipAddressMasking string
    ip_address_masking_enabled bool
    Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.
    personal_data_uri_masking_enabled bool
    user_action_masking_enabled bool
    ip_address_masking str
    ipAddressMaskingEnabled Boolean
    Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.
    personalDataUriMaskingEnabled Boolean
    userActionMaskingEnabled Boolean
    ipAddressMasking String

    DataPrivacyUserTracking, DataPrivacyUserTrackingArgs

    PersistentCookieEnabled bool
    When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
    PersistentCookieEnabled bool
    When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
    persistentCookieEnabled Boolean
    When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
    persistentCookieEnabled boolean
    When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
    persistent_cookie_enabled bool
    When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
    persistentCookieEnabled Boolean
    When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.

    Package Details

    Repository
    dynatrace lbrlabs/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs