@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
273 lines (272 loc) • 12.1 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare class WebApplication extends pulumi.CustomResource {
/**
* Get an existing WebApplication 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?: WebApplicationState, opts?: pulumi.CustomResourceOptions): WebApplication;
/**
* Returns true if the given object is an instance of WebApplication. 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 WebApplication;
/**
* A list of conversion goals of the application
*/
readonly conversionGoals: pulumi.Output<outputs.WebApplicationConversionGoals | undefined>;
/**
* (Field has overlap with `dynatrace.WebAppEnablement`) Analize *X*% of user sessions
*/
readonly costControlUserSessionPercentage: pulumi.Output<number>;
/**
* Defines the Custom Action Apdex settings of an application
*/
readonly customActionApdexSettings: pulumi.Output<outputs.WebApplicationCustomActionApdexSettings>;
/**
* User Action names to be flagged as Key User Actions
*
* @deprecated Configuring Key User Actions within `dynatrace.WebApplication` is discouraged. Use the dedicated resource `dynatrace.KeyUserAction` instead.
*/
readonly keyUserActions: pulumi.Output<outputs.WebApplicationKeyUserAction[] | undefined>;
/**
* Defines the Load Action Apdex settings of an application
*/
readonly loadActionApdexSettings: pulumi.Output<outputs.WebApplicationLoadActionApdexSettings>;
/**
* The key performance metric of load actions. Possible values are `ACTION_DURATION`, `CUMULATIVE_LAYOUT_SHIFT`, `DOM_INTERACTIVE`, `FIRST_INPUT_DELAY`, `LARGEST_CONTENTFUL_PAINT`, `LOAD_EVENT_END`, `LOAD_EVENT_START`, `RESPONSE_END`, `RESPONSE_START`, `SPEED_INDEX` and `VISUALLY_COMPLETE`
*/
readonly loadActionKeyPerformanceMetric: pulumi.Output<string>;
/**
* Java script agent meta data capture settings
*/
readonly metaDataCaptureSettings: pulumi.Output<outputs.WebApplicationMetaDataCaptureSettings | undefined>;
/**
* Real user monitoring settings
*/
readonly monitoringSettings: pulumi.Output<outputs.WebApplicationMonitoringSettings>;
/**
* The name of the web application, displayed in the UI
*/
readonly name: pulumi.Output<string>;
/**
* (Field has overlap with `dynatrace.WebAppEnablement`) Real user monitoring enabled/disabled
*/
readonly realUserMonitoringEnabled: pulumi.Output<boolean | undefined>;
/**
* Settings regarding Session Replay
*/
readonly sessionReplayConfig: pulumi.Output<outputs.WebApplicationSessionReplayConfig>;
/**
* The type of the web application. Possible values are `AUTO_INJECTED`, `BROWSER_EXTENSION_INJECTED` and `MANUALLY_INJECTED`
*/
readonly type: pulumi.Output<string>;
/**
* URL injection pattern for manual web application
*/
readonly urlInjectionPattern: pulumi.Output<string | undefined>;
/**
* User action and session properties settings
*/
readonly userActionAndSessionProperties: pulumi.Output<outputs.WebApplicationUserActionAndSessionProperties | undefined>;
/**
* The settings of user action naming
*/
readonly userActionNamingSettings: pulumi.Output<outputs.WebApplicationUserActionNamingSettings | undefined>;
/**
* User tags settings
*/
readonly userTags: pulumi.Output<outputs.WebApplicationUserTags | undefined>;
/**
* These settings influence the monitoring data you receive for 3rd party, CDN, and 1st party resources
*/
readonly waterfallSettings: pulumi.Output<outputs.WebApplicationWaterfallSettings>;
/**
* Defines the XHR Action Apdex settings of an application
*/
readonly xhrActionApdexSettings: pulumi.Output<outputs.WebApplicationXhrActionApdexSettings>;
/**
* The key performance metric of XHR actions. Possible values are `ACTION_DURATION`, `RESPONSE_END`, `RESPONSE_START` and `VISUALLY_COMPLETE`.
*/
readonly xhrActionKeyPerformanceMetric: pulumi.Output<string>;
/**
* Create a WebApplication 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: WebApplicationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering WebApplication resources.
*/
export interface WebApplicationState {
/**
* A list of conversion goals of the application
*/
conversionGoals?: pulumi.Input<inputs.WebApplicationConversionGoals>;
/**
* (Field has overlap with `dynatrace.WebAppEnablement`) Analize *X*% of user sessions
*/
costControlUserSessionPercentage?: pulumi.Input<number>;
/**
* Defines the Custom Action Apdex settings of an application
*/
customActionApdexSettings?: pulumi.Input<inputs.WebApplicationCustomActionApdexSettings>;
/**
* User Action names to be flagged as Key User Actions
*
* @deprecated Configuring Key User Actions within `dynatrace.WebApplication` is discouraged. Use the dedicated resource `dynatrace.KeyUserAction` instead.
*/
keyUserActions?: pulumi.Input<pulumi.Input<inputs.WebApplicationKeyUserAction>[]>;
/**
* Defines the Load Action Apdex settings of an application
*/
loadActionApdexSettings?: pulumi.Input<inputs.WebApplicationLoadActionApdexSettings>;
/**
* The key performance metric of load actions. Possible values are `ACTION_DURATION`, `CUMULATIVE_LAYOUT_SHIFT`, `DOM_INTERACTIVE`, `FIRST_INPUT_DELAY`, `LARGEST_CONTENTFUL_PAINT`, `LOAD_EVENT_END`, `LOAD_EVENT_START`, `RESPONSE_END`, `RESPONSE_START`, `SPEED_INDEX` and `VISUALLY_COMPLETE`
*/
loadActionKeyPerformanceMetric?: pulumi.Input<string>;
/**
* Java script agent meta data capture settings
*/
metaDataCaptureSettings?: pulumi.Input<inputs.WebApplicationMetaDataCaptureSettings>;
/**
* Real user monitoring settings
*/
monitoringSettings?: pulumi.Input<inputs.WebApplicationMonitoringSettings>;
/**
* The name of the web application, displayed in the UI
*/
name?: pulumi.Input<string>;
/**
* (Field has overlap with `dynatrace.WebAppEnablement`) Real user monitoring enabled/disabled
*/
realUserMonitoringEnabled?: pulumi.Input<boolean>;
/**
* Settings regarding Session Replay
*/
sessionReplayConfig?: pulumi.Input<inputs.WebApplicationSessionReplayConfig>;
/**
* The type of the web application. Possible values are `AUTO_INJECTED`, `BROWSER_EXTENSION_INJECTED` and `MANUALLY_INJECTED`
*/
type?: pulumi.Input<string>;
/**
* URL injection pattern for manual web application
*/
urlInjectionPattern?: pulumi.Input<string>;
/**
* User action and session properties settings
*/
userActionAndSessionProperties?: pulumi.Input<inputs.WebApplicationUserActionAndSessionProperties>;
/**
* The settings of user action naming
*/
userActionNamingSettings?: pulumi.Input<inputs.WebApplicationUserActionNamingSettings>;
/**
* User tags settings
*/
userTags?: pulumi.Input<inputs.WebApplicationUserTags>;
/**
* These settings influence the monitoring data you receive for 3rd party, CDN, and 1st party resources
*/
waterfallSettings?: pulumi.Input<inputs.WebApplicationWaterfallSettings>;
/**
* Defines the XHR Action Apdex settings of an application
*/
xhrActionApdexSettings?: pulumi.Input<inputs.WebApplicationXhrActionApdexSettings>;
/**
* The key performance metric of XHR actions. Possible values are `ACTION_DURATION`, `RESPONSE_END`, `RESPONSE_START` and `VISUALLY_COMPLETE`.
*/
xhrActionKeyPerformanceMetric?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a WebApplication resource.
*/
export interface WebApplicationArgs {
/**
* A list of conversion goals of the application
*/
conversionGoals?: pulumi.Input<inputs.WebApplicationConversionGoals>;
/**
* (Field has overlap with `dynatrace.WebAppEnablement`) Analize *X*% of user sessions
*/
costControlUserSessionPercentage: pulumi.Input<number>;
/**
* Defines the Custom Action Apdex settings of an application
*/
customActionApdexSettings: pulumi.Input<inputs.WebApplicationCustomActionApdexSettings>;
/**
* User Action names to be flagged as Key User Actions
*
* @deprecated Configuring Key User Actions within `dynatrace.WebApplication` is discouraged. Use the dedicated resource `dynatrace.KeyUserAction` instead.
*/
keyUserActions?: pulumi.Input<pulumi.Input<inputs.WebApplicationKeyUserAction>[]>;
/**
* Defines the Load Action Apdex settings of an application
*/
loadActionApdexSettings: pulumi.Input<inputs.WebApplicationLoadActionApdexSettings>;
/**
* The key performance metric of load actions. Possible values are `ACTION_DURATION`, `CUMULATIVE_LAYOUT_SHIFT`, `DOM_INTERACTIVE`, `FIRST_INPUT_DELAY`, `LARGEST_CONTENTFUL_PAINT`, `LOAD_EVENT_END`, `LOAD_EVENT_START`, `RESPONSE_END`, `RESPONSE_START`, `SPEED_INDEX` and `VISUALLY_COMPLETE`
*/
loadActionKeyPerformanceMetric: pulumi.Input<string>;
/**
* Java script agent meta data capture settings
*/
metaDataCaptureSettings?: pulumi.Input<inputs.WebApplicationMetaDataCaptureSettings>;
/**
* Real user monitoring settings
*/
monitoringSettings: pulumi.Input<inputs.WebApplicationMonitoringSettings>;
/**
* The name of the web application, displayed in the UI
*/
name?: pulumi.Input<string>;
/**
* (Field has overlap with `dynatrace.WebAppEnablement`) Real user monitoring enabled/disabled
*/
realUserMonitoringEnabled?: pulumi.Input<boolean>;
/**
* Settings regarding Session Replay
*/
sessionReplayConfig?: pulumi.Input<inputs.WebApplicationSessionReplayConfig>;
/**
* The type of the web application. Possible values are `AUTO_INJECTED`, `BROWSER_EXTENSION_INJECTED` and `MANUALLY_INJECTED`
*/
type: pulumi.Input<string>;
/**
* URL injection pattern for manual web application
*/
urlInjectionPattern?: pulumi.Input<string>;
/**
* User action and session properties settings
*/
userActionAndSessionProperties?: pulumi.Input<inputs.WebApplicationUserActionAndSessionProperties>;
/**
* The settings of user action naming
*/
userActionNamingSettings?: pulumi.Input<inputs.WebApplicationUserActionNamingSettings>;
/**
* User tags settings
*/
userTags?: pulumi.Input<inputs.WebApplicationUserTags>;
/**
* These settings influence the monitoring data you receive for 3rd party, CDN, and 1st party resources
*/
waterfallSettings: pulumi.Input<inputs.WebApplicationWaterfallSettings>;
/**
* Defines the XHR Action Apdex settings of an application
*/
xhrActionApdexSettings: pulumi.Input<inputs.WebApplicationXhrActionApdexSettings>;
/**
* The key performance metric of XHR actions. Possible values are `ACTION_DURATION`, `RESPONSE_END`, `RESPONSE_START` and `VISUALLY_COMPLETE`.
*/
xhrActionKeyPerformanceMetric: pulumi.Input<string>;
}