Dynatrace v0.16.0 published on Tuesday, Sep 10, 2024 by Pulumiverse
dynatrace.ApplicationDataPrivacy
Explore with Pulumi AI
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:
- Do
Not stringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - Session
Replay Pulumiverse.Data Privacy Dynatrace. Inputs. Application Data Privacy Session Replay Data Privacy - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - Web
Application stringId - Dynatrace entity ID of the web application
- Data
Capture boolOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - bool
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices
- Do
Not stringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - Session
Replay ApplicationData Privacy Data Privacy Session Replay Data Privacy Args - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - Web
Application stringId - Dynatrace entity ID of the web application
- Data
Capture boolOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - bool
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices
- do
Not StringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - session
Replay ApplicationData Privacy Data Privacy Session Replay Data Privacy - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - web
Application StringId - Dynatrace entity ID of the web application
- data
Capture BooleanOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - Boolean
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices
- do
Not stringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - session
Replay ApplicationData Privacy Data Privacy Session Replay Data Privacy - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - web
Application stringId - Dynatrace entity ID of the web application
- data
Capture booleanOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - boolean
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices
- do_
not_ strtrack_ behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - session_
replay_ Applicationdata_ privacy Data Privacy Session Replay Data Privacy Args - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - web_
application_ strid - Dynatrace entity ID of the web application
- data_
capture_ boolopt_ in - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - bool
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices
- do
Not StringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - session
Replay Property MapData Privacy - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - web
Application StringId - Dynatrace entity ID of the web application
- data
Capture BooleanOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - Boolean
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
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.
- Data
Capture boolOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - Do
Not stringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - bool
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices - Session
Replay Pulumiverse.Data Privacy Dynatrace. Inputs. Application Data Privacy Session Replay Data Privacy - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - Web
Application stringId - Dynatrace entity ID of the web application
- Data
Capture boolOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - Do
Not stringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - bool
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices - Session
Replay ApplicationData Privacy Data Privacy Session Replay Data Privacy Args - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - Web
Application stringId - Dynatrace entity ID of the web application
- data
Capture BooleanOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - do
Not StringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - Boolean
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices - session
Replay ApplicationData Privacy Data Privacy Session Replay Data Privacy - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - web
Application StringId - Dynatrace entity ID of the web application
- data
Capture booleanOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - do
Not stringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - boolean
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices - session
Replay ApplicationData Privacy Data Privacy Session Replay Data Privacy - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - web
Application stringId - Dynatrace entity ID of the web application
- data_
capture_ boolopt_ in - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - do_
not_ strtrack_ behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - bool
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices - session_
replay_ Applicationdata_ privacy Data Privacy Session Replay Data Privacy Args - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - web_
application_ strid - Dynatrace entity ID of the web application
- data
Capture BooleanOpt In - (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to disable data capture and cookies until JavaScriptAPIdtrum.enable()
is called - do
Not StringTrack Behaviour - (Field has overlap with
dynatrace.DataPrivacy
) How to handle the "Do Not Track" header: - Boolean
- (Field has overlap with
dynatrace.DataPrivacy
) Set totrue
to set persistent cookie in order to recognize returning devices - session
Replay Property MapData Privacy - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Data privacy settings for Session Replay - web
Application StringId - Dynatrace entity ID of the web application
Supporting Types
ApplicationDataPrivacySessionReplayDataPrivacy, ApplicationDataPrivacySessionReplayDataPrivacyArgs
- Content
Masking Pulumiverse.Settings Dynatrace. Inputs. Application Data Privacy Session Replay Data Privacy Content Masking Settings - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Content masking settings for Session Replay. - Opt
In bool - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Iftrue
, session recording is disabled until JavaScriptAPIdtrum.enableSessionReplay()
is called - Url
Exclusion List<string>Rules - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) A list of URLs to be excluded from recording
- Content
Masking ApplicationSettings Data Privacy Session Replay Data Privacy Content Masking Settings - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Content masking settings for Session Replay. - Opt
In bool - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Iftrue
, session recording is disabled until JavaScriptAPIdtrum.enableSessionReplay()
is called - Url
Exclusion []stringRules - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) A list of URLs to be excluded from recording
- content
Masking ApplicationSettings Data Privacy Session Replay Data Privacy Content Masking Settings - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Content masking settings for Session Replay. - opt
In Boolean - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Iftrue
, session recording is disabled until JavaScriptAPIdtrum.enableSessionReplay()
is called - url
Exclusion List<String>Rules - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) A list of URLs to be excluded from recording
- content
Masking ApplicationSettings Data Privacy Session Replay Data Privacy Content Masking Settings - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Content masking settings for Session Replay. - opt
In boolean - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Iftrue
, session recording is disabled until JavaScriptAPIdtrum.enableSessionReplay()
is called - url
Exclusion string[]Rules - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) A list of URLs to be excluded from recording
- content_
masking_ Applicationsettings Data Privacy Session Replay Data Privacy Content Masking Settings - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Content masking settings for Session Replay. - opt_
in bool - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Iftrue
, session recording is disabled until JavaScriptAPIdtrum.enableSessionReplay()
is called - url_
exclusion_ Sequence[str]rules - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) A list of URLs to be excluded from recording
- content
Masking Property MapSettings - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Content masking settings for Session Replay. - opt
In Boolean - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Iftrue
, session recording is disabled until JavaScriptAPIdtrum.enableSessionReplay()
is called - url
Exclusion List<String>Rules - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) A list of URLs to be excluded from recording
ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettings, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsArgs
- Playback
Pulumiverse.
Dynatrace. Inputs. Application Data Privacy Session Replay Data Privacy Content Masking Settings Playback - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Configuration of the Session Replay masking during Playback - Recording
Pulumiverse.
Dynatrace. Inputs. Application Data Privacy Session Replay Data Privacy Content Masking Settings Recording - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Configuration of the Session Replay masking during Recording
- Playback
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Configuration of the Session Replay masking during Playback - Recording
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Configuration of the Session Replay masking during Recording
- playback
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Configuration of the Session Replay masking during Playback - recording
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Configuration of the Session Replay masking during Recording
- playback
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Configuration of the Session Replay masking during Playback - recording
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Configuration of the Session Replay masking during Recording
- playback
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback - (Field has overlap with
dynatrace.SessionReplayWebPrivacy
) Configuration of the Session Replay masking during Playback - recording
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording - (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
Pulumiverse.
Dynatrace. Inputs. Application Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules - A list of masking rules
- Preset string
- The type of the masking:
- Rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules - A list of masking rules
- preset String
- The type of the masking:
- rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules - A list of masking rules
- preset string
- The type of the masking:
- rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules - A list of masking rules
- preset str
- The type of the masking:
- rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules - A list of masking rules
- preset String
- The type of the masking:
- rules Property Map
- A list of masking rules
ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRules, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesArgs
- Rules
List<Pulumiverse.
Dynatrace. Inputs. Application Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules Rule> - The masking rule defining how data is hidden
- Rules
[]Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules Rule - The masking rule defining how data is hidden
- rules
List<Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules Rule> - The masking rule defining how data is hidden
- rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules Rule[] - The masking rule defining how data is hidden
- rules
Sequence[Application
Data Privacy Session Replay Data Privacy Content Masking Settings Playback Rules Rule] - The masking rule defining how data is hidden
- rules List<Property Map>
- The masking rule defining how data is hidden
ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesRule, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsPlaybackRulesRuleArgs
ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecording, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingArgs
- Preset string
- The type of the masking:
- Rules
Pulumiverse.
Dynatrace. Inputs. Application Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules - A list of masking rules
- Preset string
- The type of the masking:
- Rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules - A list of masking rules
- preset String
- The type of the masking:
- rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules - A list of masking rules
- preset string
- The type of the masking:
- rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules - A list of masking rules
- preset str
- The type of the masking:
- rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules - A list of masking rules
- preset String
- The type of the masking:
- rules Property Map
- A list of masking rules
ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRules, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesArgs
- Rules
List<Pulumiverse.
Dynatrace. Inputs. Application Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules Rule> - The masking rule defining how data is hidden
- Rules
[]Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules Rule - The masking rule defining how data is hidden
- rules
List<Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules Rule> - The masking rule defining how data is hidden
- rules
Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules Rule[] - The masking rule defining how data is hidden
- rules
Sequence[Application
Data Privacy Session Replay Data Privacy Content Masking Settings Recording Rules Rule] - The masking rule defining how data is hidden
- rules List<Property Map>
- The masking rule defining how data is hidden
ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesRule, ApplicationDataPrivacySessionReplayDataPrivacyContentMaskingSettingsRecordingRulesRuleArgs
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.