1. Packages
  2. Dynatrace
  3. API Docs
  4. WebAppKeyPerformanceLoad
Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse

dynatrace.WebAppKeyPerformanceLoad

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse

    Create WebAppKeyPerformanceLoad Resource

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

    Constructor syntax

    new WebAppKeyPerformanceLoad(name: string, args: WebAppKeyPerformanceLoadArgs, opts?: CustomResourceOptions);
    @overload
    def WebAppKeyPerformanceLoad(resource_name: str,
                                 args: WebAppKeyPerformanceLoadArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def WebAppKeyPerformanceLoad(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 kpm: Optional[str] = None,
                                 scope: Optional[str] = None,
                                 thresholds: Optional[WebAppKeyPerformanceLoadThresholdsArgs] = None,
                                 fallback_thresholds: Optional[WebAppKeyPerformanceLoadFallbackThresholdsArgs] = None)
    func NewWebAppKeyPerformanceLoad(ctx *Context, name string, args WebAppKeyPerformanceLoadArgs, opts ...ResourceOption) (*WebAppKeyPerformanceLoad, error)
    public WebAppKeyPerformanceLoad(string name, WebAppKeyPerformanceLoadArgs args, CustomResourceOptions? opts = null)
    public WebAppKeyPerformanceLoad(String name, WebAppKeyPerformanceLoadArgs args)
    public WebAppKeyPerformanceLoad(String name, WebAppKeyPerformanceLoadArgs args, CustomResourceOptions options)
    
    type: dynatrace:WebAppKeyPerformanceLoad
    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 WebAppKeyPerformanceLoadArgs
    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 WebAppKeyPerformanceLoadArgs
    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 WebAppKeyPerformanceLoadArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WebAppKeyPerformanceLoadArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WebAppKeyPerformanceLoadArgs
    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 webAppKeyPerformanceLoadResource = new Dynatrace.WebAppKeyPerformanceLoad("webAppKeyPerformanceLoadResource", new()
    {
        Kpm = "string",
        Scope = "string",
        Thresholds = new Dynatrace.Inputs.WebAppKeyPerformanceLoadThresholdsArgs
        {
            FrustratingThresholdSeconds = 0,
            ToleratedThresholdSeconds = 0,
        },
        FallbackThresholds = new Dynatrace.Inputs.WebAppKeyPerformanceLoadFallbackThresholdsArgs
        {
            FrustratingFallbackThresholdSeconds = 0,
            ToleratedFallbackThresholdSeconds = 0,
        },
    });
    
    example, err := dynatrace.NewWebAppKeyPerformanceLoad(ctx, "webAppKeyPerformanceLoadResource", &dynatrace.WebAppKeyPerformanceLoadArgs{
    	Kpm:   pulumi.String("string"),
    	Scope: pulumi.String("string"),
    	Thresholds: &dynatrace.WebAppKeyPerformanceLoadThresholdsArgs{
    		FrustratingThresholdSeconds: pulumi.Float64(0),
    		ToleratedThresholdSeconds:   pulumi.Float64(0),
    	},
    	FallbackThresholds: &dynatrace.WebAppKeyPerformanceLoadFallbackThresholdsArgs{
    		FrustratingFallbackThresholdSeconds: pulumi.Float64(0),
    		ToleratedFallbackThresholdSeconds:   pulumi.Float64(0),
    	},
    })
    
    var webAppKeyPerformanceLoadResource = new WebAppKeyPerformanceLoad("webAppKeyPerformanceLoadResource", WebAppKeyPerformanceLoadArgs.builder()
        .kpm("string")
        .scope("string")
        .thresholds(WebAppKeyPerformanceLoadThresholdsArgs.builder()
            .frustratingThresholdSeconds(0)
            .toleratedThresholdSeconds(0)
            .build())
        .fallbackThresholds(WebAppKeyPerformanceLoadFallbackThresholdsArgs.builder()
            .frustratingFallbackThresholdSeconds(0)
            .toleratedFallbackThresholdSeconds(0)
            .build())
        .build());
    
    web_app_key_performance_load_resource = dynatrace.WebAppKeyPerformanceLoad("webAppKeyPerformanceLoadResource",
        kpm="string",
        scope="string",
        thresholds=dynatrace.WebAppKeyPerformanceLoadThresholdsArgs(
            frustrating_threshold_seconds=0,
            tolerated_threshold_seconds=0,
        ),
        fallback_thresholds=dynatrace.WebAppKeyPerformanceLoadFallbackThresholdsArgs(
            frustrating_fallback_threshold_seconds=0,
            tolerated_fallback_threshold_seconds=0,
        ))
    
    const webAppKeyPerformanceLoadResource = new dynatrace.WebAppKeyPerformanceLoad("webAppKeyPerformanceLoadResource", {
        kpm: "string",
        scope: "string",
        thresholds: {
            frustratingThresholdSeconds: 0,
            toleratedThresholdSeconds: 0,
        },
        fallbackThresholds: {
            frustratingFallbackThresholdSeconds: 0,
            toleratedFallbackThresholdSeconds: 0,
        },
    });
    
    type: dynatrace:WebAppKeyPerformanceLoad
    properties:
        fallbackThresholds:
            frustratingFallbackThresholdSeconds: 0
            toleratedFallbackThresholdSeconds: 0
        kpm: string
        scope: string
        thresholds:
            frustratingThresholdSeconds: 0
            toleratedThresholdSeconds: 0
    

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

    Kpm string
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    Scope string
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    Thresholds Pulumiverse.Dynatrace.Inputs.WebAppKeyPerformanceLoadThresholds
    Set the Tolerating and Frustrated performance thresholds for this action type.
    FallbackThresholds Pulumiverse.Dynatrace.Inputs.WebAppKeyPerformanceLoadFallbackThresholds
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    Kpm string
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    Scope string
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    Thresholds WebAppKeyPerformanceLoadThresholdsArgs
    Set the Tolerating and Frustrated performance thresholds for this action type.
    FallbackThresholds WebAppKeyPerformanceLoadFallbackThresholdsArgs
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    kpm String
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    scope String
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    thresholds WebAppKeyPerformanceLoadThresholds
    Set the Tolerating and Frustrated performance thresholds for this action type.
    fallbackThresholds WebAppKeyPerformanceLoadFallbackThresholds
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    kpm string
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    scope string
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    thresholds WebAppKeyPerformanceLoadThresholds
    Set the Tolerating and Frustrated performance thresholds for this action type.
    fallbackThresholds WebAppKeyPerformanceLoadFallbackThresholds
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    kpm str
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    scope str
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    thresholds WebAppKeyPerformanceLoadThresholdsArgs
    Set the Tolerating and Frustrated performance thresholds for this action type.
    fallback_thresholds WebAppKeyPerformanceLoadFallbackThresholdsArgs
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    kpm String
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    scope String
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    thresholds Property Map
    Set the Tolerating and Frustrated performance thresholds for this action type.
    fallbackThresholds Property Map
    If the selected key performance metric is not detected, the User action duration metric is used instead.

    Outputs

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

    Get an existing WebAppKeyPerformanceLoad 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?: WebAppKeyPerformanceLoadState, opts?: CustomResourceOptions): WebAppKeyPerformanceLoad
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            fallback_thresholds: Optional[WebAppKeyPerformanceLoadFallbackThresholdsArgs] = None,
            kpm: Optional[str] = None,
            scope: Optional[str] = None,
            thresholds: Optional[WebAppKeyPerformanceLoadThresholdsArgs] = None) -> WebAppKeyPerformanceLoad
    func GetWebAppKeyPerformanceLoad(ctx *Context, name string, id IDInput, state *WebAppKeyPerformanceLoadState, opts ...ResourceOption) (*WebAppKeyPerformanceLoad, error)
    public static WebAppKeyPerformanceLoad Get(string name, Input<string> id, WebAppKeyPerformanceLoadState? state, CustomResourceOptions? opts = null)
    public static WebAppKeyPerformanceLoad get(String name, Output<String> id, WebAppKeyPerformanceLoadState 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:
    FallbackThresholds Pulumiverse.Dynatrace.Inputs.WebAppKeyPerformanceLoadFallbackThresholds
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    Kpm string
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    Scope string
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    Thresholds Pulumiverse.Dynatrace.Inputs.WebAppKeyPerformanceLoadThresholds
    Set the Tolerating and Frustrated performance thresholds for this action type.
    FallbackThresholds WebAppKeyPerformanceLoadFallbackThresholdsArgs
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    Kpm string
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    Scope string
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    Thresholds WebAppKeyPerformanceLoadThresholdsArgs
    Set the Tolerating and Frustrated performance thresholds for this action type.
    fallbackThresholds WebAppKeyPerformanceLoadFallbackThresholds
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    kpm String
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    scope String
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    thresholds WebAppKeyPerformanceLoadThresholds
    Set the Tolerating and Frustrated performance thresholds for this action type.
    fallbackThresholds WebAppKeyPerformanceLoadFallbackThresholds
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    kpm string
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    scope string
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    thresholds WebAppKeyPerformanceLoadThresholds
    Set the Tolerating and Frustrated performance thresholds for this action type.
    fallback_thresholds WebAppKeyPerformanceLoadFallbackThresholdsArgs
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    kpm str
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    scope str
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    thresholds WebAppKeyPerformanceLoadThresholdsArgs
    Set the Tolerating and Frustrated performance thresholds for this action type.
    fallbackThresholds Property Map
    If the selected key performance metric is not detected, the User action duration metric is used instead.
    kpm String
    Possible Values: CUMULATIVE_LAYOUT_SHIFT, DOM_INTERACTIVE, FIRST_INPUT_DELAY, LARGEST_CONTENTFUL_PAINT, LOAD_EVENT_END, LOAD_EVENT_START, RESPONSE_END, RESPONSE_START, SPEED_INDEX, USER_ACTION_DURATION, VISUALLY_COMPLETE
    scope String
    The scope of this setting (APPLICATION_METHOD, APPLICATION)
    thresholds Property Map
    Set the Tolerating and Frustrated performance thresholds for this action type.

    Supporting Types

    WebAppKeyPerformanceLoadFallbackThresholds, WebAppKeyPerformanceLoadFallbackThresholdsArgs

    FrustratingFallbackThresholdSeconds double
    If User action duration is above this value, the action is assigned to the Frustrated performance zone.
    ToleratedFallbackThresholdSeconds double
    If User action duration is below this value, the action is assigned to the Satisfied performance zone.
    FrustratingFallbackThresholdSeconds float64
    If User action duration is above this value, the action is assigned to the Frustrated performance zone.
    ToleratedFallbackThresholdSeconds float64
    If User action duration is below this value, the action is assigned to the Satisfied performance zone.
    frustratingFallbackThresholdSeconds Double
    If User action duration is above this value, the action is assigned to the Frustrated performance zone.
    toleratedFallbackThresholdSeconds Double
    If User action duration is below this value, the action is assigned to the Satisfied performance zone.
    frustratingFallbackThresholdSeconds number
    If User action duration is above this value, the action is assigned to the Frustrated performance zone.
    toleratedFallbackThresholdSeconds number
    If User action duration is below this value, the action is assigned to the Satisfied performance zone.
    frustrating_fallback_threshold_seconds float
    If User action duration is above this value, the action is assigned to the Frustrated performance zone.
    tolerated_fallback_threshold_seconds float
    If User action duration is below this value, the action is assigned to the Satisfied performance zone.
    frustratingFallbackThresholdSeconds Number
    If User action duration is above this value, the action is assigned to the Frustrated performance zone.
    toleratedFallbackThresholdSeconds Number
    If User action duration is below this value, the action is assigned to the Satisfied performance zone.

    WebAppKeyPerformanceLoadThresholds, WebAppKeyPerformanceLoadThresholdsArgs

    FrustratingThresholdSeconds double
    If the key performance metric is above this value, the action is assigned to the Frustrated performance zone.
    ToleratedThresholdSeconds double
    If the key performance metric is below this value, the action is assigned to the Satisfied performance zone.
    FrustratingThresholdSeconds float64
    If the key performance metric is above this value, the action is assigned to the Frustrated performance zone.
    ToleratedThresholdSeconds float64
    If the key performance metric is below this value, the action is assigned to the Satisfied performance zone.
    frustratingThresholdSeconds Double
    If the key performance metric is above this value, the action is assigned to the Frustrated performance zone.
    toleratedThresholdSeconds Double
    If the key performance metric is below this value, the action is assigned to the Satisfied performance zone.
    frustratingThresholdSeconds number
    If the key performance metric is above this value, the action is assigned to the Frustrated performance zone.
    toleratedThresholdSeconds number
    If the key performance metric is below this value, the action is assigned to the Satisfied performance zone.
    frustrating_threshold_seconds float
    If the key performance metric is above this value, the action is assigned to the Frustrated performance zone.
    tolerated_threshold_seconds float
    If the key performance metric is below this value, the action is assigned to the Satisfied performance zone.
    frustratingThresholdSeconds Number
    If the key performance metric is above this value, the action is assigned to the Frustrated performance zone.
    toleratedThresholdSeconds Number
    If the key performance metric is below this value, the action is assigned to the Satisfied performance zone.

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse