import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class DataPrivacy extends pulumi.CustomResource { /** * Get an existing DataPrivacy resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DataPrivacyState, opts?: pulumi.CustomResourceOptions): DataPrivacy; /** * Returns true if the given object is an instance of DataPrivacy. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DataPrivacy; /** * The scope of this settings. If the settings should cover the whole environment, just don't specify any scope. */ readonly applicationId: pulumi.Output; /** * 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. */ readonly dataCollection: pulumi.Output; /** * Most modern web browsers have a privacy feature called ["Do Not Track"](https://dt-url.net/sb3n0pnl) that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting. */ readonly doNotTrack: pulumi.Output; /** * no documentation available */ readonly masking: pulumi.Output; /** * User tracking */ readonly userTracking: pulumi.Output; /** * Create a DataPrivacy resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DataPrivacyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DataPrivacy resources. */ export interface DataPrivacyState { /** * The scope of this settings. If the settings should cover the whole environment, just don't specify any scope. */ applicationId?: pulumi.Input; /** * 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. */ dataCollection?: pulumi.Input; /** * Most modern web browsers have a privacy feature called ["Do Not Track"](https://dt-url.net/sb3n0pnl) that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting. */ doNotTrack?: pulumi.Input; /** * no documentation available */ masking?: pulumi.Input; /** * User tracking */ userTracking?: pulumi.Input; } /** * The set of arguments for constructing a DataPrivacy resource. */ export interface DataPrivacyArgs { /** * The scope of this settings. If the settings should cover the whole environment, just don't specify any scope. */ applicationId?: pulumi.Input; /** * 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. */ dataCollection: pulumi.Input; /** * Most modern web browsers have a privacy feature called ["Do Not Track"](https://dt-url.net/sb3n0pnl) that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting. */ doNotTrack: pulumi.Input; /** * no documentation available */ masking: pulumi.Input; /** * User tracking */ userTracking: pulumi.Input; }