Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse
dynatrace.UserExperienceScore
Explore with Pulumi AI
Create UserExperienceScore Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UserExperienceScore(name: string, args: UserExperienceScoreArgs, opts?: CustomResourceOptions);
@overload
def UserExperienceScore(resource_name: str,
args: UserExperienceScoreArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UserExperienceScore(resource_name: str,
opts: Optional[ResourceOptions] = None,
consider_last_action: Optional[bool] = None,
consider_rage_click: Optional[bool] = None,
max_frustrated_user_actions_threshold: Optional[int] = None,
min_satisfied_user_actions_threshold: Optional[int] = None)
func NewUserExperienceScore(ctx *Context, name string, args UserExperienceScoreArgs, opts ...ResourceOption) (*UserExperienceScore, error)
public UserExperienceScore(string name, UserExperienceScoreArgs args, CustomResourceOptions? opts = null)
public UserExperienceScore(String name, UserExperienceScoreArgs args)
public UserExperienceScore(String name, UserExperienceScoreArgs args, CustomResourceOptions options)
type: dynatrace:UserExperienceScore
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 UserExperienceScoreArgs
- 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 UserExperienceScoreArgs
- 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 UserExperienceScoreArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UserExperienceScoreArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UserExperienceScoreArgs
- 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 userExperienceScoreResource = new Dynatrace.UserExperienceScore("userExperienceScoreResource", new()
{
ConsiderLastAction = false,
ConsiderRageClick = false,
MaxFrustratedUserActionsThreshold = 0,
MinSatisfiedUserActionsThreshold = 0,
});
example, err := dynatrace.NewUserExperienceScore(ctx, "userExperienceScoreResource", &dynatrace.UserExperienceScoreArgs{
ConsiderLastAction: pulumi.Bool(false),
ConsiderRageClick: pulumi.Bool(false),
MaxFrustratedUserActionsThreshold: pulumi.Int(0),
MinSatisfiedUserActionsThreshold: pulumi.Int(0),
})
var userExperienceScoreResource = new UserExperienceScore("userExperienceScoreResource", UserExperienceScoreArgs.builder()
.considerLastAction(false)
.considerRageClick(false)
.maxFrustratedUserActionsThreshold(0)
.minSatisfiedUserActionsThreshold(0)
.build());
user_experience_score_resource = dynatrace.UserExperienceScore("userExperienceScoreResource",
consider_last_action=False,
consider_rage_click=False,
max_frustrated_user_actions_threshold=0,
min_satisfied_user_actions_threshold=0)
const userExperienceScoreResource = new dynatrace.UserExperienceScore("userExperienceScoreResource", {
considerLastAction: false,
considerRageClick: false,
maxFrustratedUserActionsThreshold: 0,
minSatisfiedUserActionsThreshold: 0,
});
type: dynatrace:UserExperienceScore
properties:
considerLastAction: false
considerRageClick: false
maxFrustratedUserActionsThreshold: 0
minSatisfiedUserActionsThreshold: 0
UserExperienceScore 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 UserExperienceScore resource accepts the following input properties:
- Consider
Last boolAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- Consider
Rage boolClick - Consider rage clicks / rage taps in score calculation
- Max
Frustrated intUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- Min
Satisfied intUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- Consider
Last boolAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- Consider
Rage boolClick - Consider rage clicks / rage taps in score calculation
- Max
Frustrated intUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- Min
Satisfied intUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- consider
Last BooleanAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- consider
Rage BooleanClick - Consider rage clicks / rage taps in score calculation
- max
Frustrated IntegerUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- min
Satisfied IntegerUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- consider
Last booleanAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- consider
Rage booleanClick - Consider rage clicks / rage taps in score calculation
- max
Frustrated numberUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- min
Satisfied numberUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- consider_
last_ boolaction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- consider_
rage_ boolclick - Consider rage clicks / rage taps in score calculation
- max_
frustrated_ intuser_ actions_ threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- min_
satisfied_ intuser_ actions_ threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- consider
Last BooleanAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- consider
Rage BooleanClick - Consider rage clicks / rage taps in score calculation
- max
Frustrated NumberUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- min
Satisfied NumberUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
Outputs
All input properties are implicitly available as output properties. Additionally, the UserExperienceScore 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 UserExperienceScore Resource
Get an existing UserExperienceScore 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?: UserExperienceScoreState, opts?: CustomResourceOptions): UserExperienceScore
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
consider_last_action: Optional[bool] = None,
consider_rage_click: Optional[bool] = None,
max_frustrated_user_actions_threshold: Optional[int] = None,
min_satisfied_user_actions_threshold: Optional[int] = None) -> UserExperienceScore
func GetUserExperienceScore(ctx *Context, name string, id IDInput, state *UserExperienceScoreState, opts ...ResourceOption) (*UserExperienceScore, error)
public static UserExperienceScore Get(string name, Input<string> id, UserExperienceScoreState? state, CustomResourceOptions? opts = null)
public static UserExperienceScore get(String name, Output<String> id, UserExperienceScoreState 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.
- Consider
Last boolAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- Consider
Rage boolClick - Consider rage clicks / rage taps in score calculation
- Max
Frustrated intUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- Min
Satisfied intUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- Consider
Last boolAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- Consider
Rage boolClick - Consider rage clicks / rage taps in score calculation
- Max
Frustrated intUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- Min
Satisfied intUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- consider
Last BooleanAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- consider
Rage BooleanClick - Consider rage clicks / rage taps in score calculation
- max
Frustrated IntegerUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- min
Satisfied IntegerUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- consider
Last booleanAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- consider
Rage booleanClick - Consider rage clicks / rage taps in score calculation
- max
Frustrated numberUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- min
Satisfied numberUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- consider_
last_ boolaction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- consider_
rage_ boolclick - Consider rage clicks / rage taps in score calculation
- max_
frustrated_ intuser_ actions_ threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- min_
satisfied_ intuser_ actions_ threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
- consider
Last BooleanAction - If last user action in a session is classified as Frustrating, classify the entire session as Frustrating
- consider
Rage BooleanClick - Consider rage clicks / rage taps in score calculation
- max
Frustrated NumberUser Actions Threshold - User experience is considered Frustrating when the selected percentage or more of the user actions in a session are rated as Frustrating.
- min
Satisfied NumberUser Actions Threshold - User experience is considered Satisfying when at least the selected percentage of the user actions in a session are rated as Satisfying.
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.