@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
105 lines (104 loc) • 4.65 kB
TypeScript
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<pulumi.ID>, 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<string | undefined>;
/**
* 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<outputs.DataPrivacyDataCollection>;
/**
* 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<outputs.DataPrivacyDoNotTrack>;
/**
* no documentation available
*/
readonly masking: pulumi.Output<outputs.DataPrivacyMasking>;
/**
* User tracking
*/
readonly userTracking: pulumi.Output<outputs.DataPrivacyUserTracking>;
/**
* 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<string>;
/**
* 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<inputs.DataPrivacyDataCollection>;
/**
* 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<inputs.DataPrivacyDoNotTrack>;
/**
* no documentation available
*/
masking?: pulumi.Input<inputs.DataPrivacyMasking>;
/**
* User tracking
*/
userTracking?: pulumi.Input<inputs.DataPrivacyUserTracking>;
}
/**
* 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<string>;
/**
* 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<inputs.DataPrivacyDataCollection>;
/**
* 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<inputs.DataPrivacyDoNotTrack>;
/**
* no documentation available
*/
masking: pulumi.Input<inputs.DataPrivacyMasking>;
/**
* User tracking
*/
userTracking: pulumi.Input<inputs.DataPrivacyUserTracking>;
}