1. Packages
  2. Dynatrace
  3. API Docs
  4. MobileAppKeyPerformance
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

dynatrace.MobileAppKeyPerformance

Explore with Pulumi AI

Create MobileAppKeyPerformance Resource

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

Constructor syntax

new MobileAppKeyPerformance(name: string, args: MobileAppKeyPerformanceArgs, opts?: CustomResourceOptions);
@overload
def MobileAppKeyPerformance(resource_name: str,
                            args: MobileAppKeyPerformanceArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def MobileAppKeyPerformance(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            frustrating_if_reported_or_web_request_error: Optional[bool] = None,
                            scope: Optional[str] = None,
                            thresholds: Optional[MobileAppKeyPerformanceThresholdsArgs] = None)
func NewMobileAppKeyPerformance(ctx *Context, name string, args MobileAppKeyPerformanceArgs, opts ...ResourceOption) (*MobileAppKeyPerformance, error)
public MobileAppKeyPerformance(string name, MobileAppKeyPerformanceArgs args, CustomResourceOptions? opts = null)
public MobileAppKeyPerformance(String name, MobileAppKeyPerformanceArgs args)
public MobileAppKeyPerformance(String name, MobileAppKeyPerformanceArgs args, CustomResourceOptions options)
type: dynatrace:MobileAppKeyPerformance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. MobileAppKeyPerformanceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. MobileAppKeyPerformanceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. MobileAppKeyPerformanceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. MobileAppKeyPerformanceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MobileAppKeyPerformanceArgs
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 mobileAppKeyPerformanceResource = new Dynatrace.MobileAppKeyPerformance("mobileAppKeyPerformanceResource", new()
{
    FrustratingIfReportedOrWebRequestError = false,
    Scope = "string",
    Thresholds = new Dynatrace.Inputs.MobileAppKeyPerformanceThresholdsArgs
    {
        FrustratingThresholdSeconds = 0,
        TolerableThresholdSeconds = 0,
    },
});
Copy
example, err := dynatrace.NewMobileAppKeyPerformance(ctx, "mobileAppKeyPerformanceResource", &dynatrace.MobileAppKeyPerformanceArgs{
	FrustratingIfReportedOrWebRequestError: pulumi.Bool(false),
	Scope:                                  pulumi.String("string"),
	Thresholds: &dynatrace.MobileAppKeyPerformanceThresholdsArgs{
		FrustratingThresholdSeconds: pulumi.Float64(0),
		TolerableThresholdSeconds:   pulumi.Float64(0),
	},
})
Copy
var mobileAppKeyPerformanceResource = new MobileAppKeyPerformance("mobileAppKeyPerformanceResource", MobileAppKeyPerformanceArgs.builder()
    .frustratingIfReportedOrWebRequestError(false)
    .scope("string")
    .thresholds(MobileAppKeyPerformanceThresholdsArgs.builder()
        .frustratingThresholdSeconds(0)
        .tolerableThresholdSeconds(0)
        .build())
    .build());
Copy
mobile_app_key_performance_resource = dynatrace.MobileAppKeyPerformance("mobileAppKeyPerformanceResource",
    frustrating_if_reported_or_web_request_error=False,
    scope="string",
    thresholds={
        "frustrating_threshold_seconds": 0,
        "tolerable_threshold_seconds": 0,
    })
Copy
const mobileAppKeyPerformanceResource = new dynatrace.MobileAppKeyPerformance("mobileAppKeyPerformanceResource", {
    frustratingIfReportedOrWebRequestError: false,
    scope: "string",
    thresholds: {
        frustratingThresholdSeconds: 0,
        tolerableThresholdSeconds: 0,
    },
});
Copy
type: dynatrace:MobileAppKeyPerformance
properties:
    frustratingIfReportedOrWebRequestError: false
    scope: string
    thresholds:
        frustratingThresholdSeconds: 0
        tolerableThresholdSeconds: 0
Copy

MobileAppKeyPerformance Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The MobileAppKeyPerformance resource accepts the following input properties:

FrustratingIfReportedOrWebRequestError This property is required. bool
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
Scope
This property is required.
Changes to this property will trigger replacement.
string
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
Thresholds This property is required. Pulumiverse.Dynatrace.Inputs.MobileAppKeyPerformanceThresholds
no documentation available
FrustratingIfReportedOrWebRequestError This property is required. bool
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
Scope
This property is required.
Changes to this property will trigger replacement.
string
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
Thresholds This property is required. MobileAppKeyPerformanceThresholdsArgs
no documentation available
frustratingIfReportedOrWebRequestError This property is required. Boolean
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
scope
This property is required.
Changes to this property will trigger replacement.
String
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
thresholds This property is required. MobileAppKeyPerformanceThresholds
no documentation available
frustratingIfReportedOrWebRequestError This property is required. boolean
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
scope
This property is required.
Changes to this property will trigger replacement.
string
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
thresholds This property is required. MobileAppKeyPerformanceThresholds
no documentation available
frustrating_if_reported_or_web_request_error This property is required. bool
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
scope
This property is required.
Changes to this property will trigger replacement.
str
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
thresholds This property is required. MobileAppKeyPerformanceThresholdsArgs
no documentation available
frustratingIfReportedOrWebRequestError This property is required. Boolean
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
scope
This property is required.
Changes to this property will trigger replacement.
String
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
thresholds This property is required. Property Map
no documentation available

Outputs

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

Get an existing MobileAppKeyPerformance 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?: MobileAppKeyPerformanceState, opts?: CustomResourceOptions): MobileAppKeyPerformance
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        frustrating_if_reported_or_web_request_error: Optional[bool] = None,
        scope: Optional[str] = None,
        thresholds: Optional[MobileAppKeyPerformanceThresholdsArgs] = None) -> MobileAppKeyPerformance
func GetMobileAppKeyPerformance(ctx *Context, name string, id IDInput, state *MobileAppKeyPerformanceState, opts ...ResourceOption) (*MobileAppKeyPerformance, error)
public static MobileAppKeyPerformance Get(string name, Input<string> id, MobileAppKeyPerformanceState? state, CustomResourceOptions? opts = null)
public static MobileAppKeyPerformance get(String name, Output<String> id, MobileAppKeyPerformanceState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:MobileAppKeyPerformance    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
FrustratingIfReportedOrWebRequestError bool
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
Scope Changes to this property will trigger replacement. string
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
Thresholds Pulumiverse.Dynatrace.Inputs.MobileAppKeyPerformanceThresholds
no documentation available
FrustratingIfReportedOrWebRequestError bool
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
Scope Changes to this property will trigger replacement. string
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
Thresholds MobileAppKeyPerformanceThresholdsArgs
no documentation available
frustratingIfReportedOrWebRequestError Boolean
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
scope Changes to this property will trigger replacement. String
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
thresholds MobileAppKeyPerformanceThresholds
no documentation available
frustratingIfReportedOrWebRequestError boolean
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
scope Changes to this property will trigger replacement. string
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
thresholds MobileAppKeyPerformanceThresholds
no documentation available
frustrating_if_reported_or_web_request_error bool
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
scope Changes to this property will trigger replacement. str
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
thresholds MobileAppKeyPerformanceThresholdsArgs
no documentation available
frustratingIfReportedOrWebRequestError Boolean
Treat user actions with reported errors or web request errors as erroneous and rate their performance as Frustrating. Turn off this setting if errors should not affect the Apdex rate.
scope Changes to this property will trigger replacement. String
The scope of this setting (DEVICEAPPLICATIONMETHOD, MOBILEAPPLICATION, CUSTOMAPPLICATION)
thresholds Property Map
no documentation available

Supporting Types

MobileAppKeyPerformanceThresholds
, MobileAppKeyPerformanceThresholdsArgs

FrustratingThresholdSeconds This property is required. double
If the action duration is above this value, the Apdex is considered to be Frustrating.
TolerableThresholdSeconds This property is required. double
If the action duration is below this value, the Apdex is considered to be Satisfactory.
FrustratingThresholdSeconds This property is required. float64
If the action duration is above this value, the Apdex is considered to be Frustrating.
TolerableThresholdSeconds This property is required. float64
If the action duration is below this value, the Apdex is considered to be Satisfactory.
frustratingThresholdSeconds This property is required. Double
If the action duration is above this value, the Apdex is considered to be Frustrating.
tolerableThresholdSeconds This property is required. Double
If the action duration is below this value, the Apdex is considered to be Satisfactory.
frustratingThresholdSeconds This property is required. number
If the action duration is above this value, the Apdex is considered to be Frustrating.
tolerableThresholdSeconds This property is required. number
If the action duration is below this value, the Apdex is considered to be Satisfactory.
frustrating_threshold_seconds This property is required. float
If the action duration is above this value, the Apdex is considered to be Frustrating.
tolerable_threshold_seconds This property is required. float
If the action duration is below this value, the Apdex is considered to be Satisfactory.
frustratingThresholdSeconds This property is required. Number
If the action duration is above this value, the Apdex is considered to be Frustrating.
tolerableThresholdSeconds This property is required. Number
If the action duration is below this value, the Apdex is considered to be Satisfactory.

Package Details

Repository
dynatrace pulumiverse/pulumi-dynatrace
License
Apache-2.0
Notes
This Pulumi package is based on the dynatrace Terraform Provider.