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

dynatrace.FailureDetectionRules

Explore with Pulumi AI

Create FailureDetectionRules Resource

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

Constructor syntax

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

@overload
def FailureDetectionRules(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          conditions: Optional[FailureDetectionRulesConditionsArgs] = None,
                          enabled: Optional[bool] = None,
                          parameter_id: Optional[str] = None,
                          description: Optional[str] = None,
                          insert_after: Optional[str] = None,
                          name: Optional[str] = None)
func NewFailureDetectionRules(ctx *Context, name string, args FailureDetectionRulesArgs, opts ...ResourceOption) (*FailureDetectionRules, error)
public FailureDetectionRules(string name, FailureDetectionRulesArgs args, CustomResourceOptions? opts = null)
public FailureDetectionRules(String name, FailureDetectionRulesArgs args)
public FailureDetectionRules(String name, FailureDetectionRulesArgs args, CustomResourceOptions options)
type: dynatrace:FailureDetectionRules
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. FailureDetectionRulesArgs
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. FailureDetectionRulesArgs
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. FailureDetectionRulesArgs
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. FailureDetectionRulesArgs
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. FailureDetectionRulesArgs
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 failureDetectionRulesResource = new Dynatrace.FailureDetectionRules("failureDetectionRulesResource", new()
{
    Conditions = new Dynatrace.Inputs.FailureDetectionRulesConditionsArgs
    {
        Conditions = new[]
        {
            new Dynatrace.Inputs.FailureDetectionRulesConditionsConditionArgs
            {
                Attribute = "string",
                Predicate = new Dynatrace.Inputs.FailureDetectionRulesConditionsConditionPredicateArgs
                {
                    PredicateType = "string",
                    CaseSensitive = false,
                    ManagementZones = new[]
                    {
                        "string",
                    },
                    ServiceTypes = new[]
                    {
                        "string",
                    },
                    TagKeys = new[]
                    {
                        "string",
                    },
                    Tags = new[]
                    {
                        "string",
                    },
                    TextValues = new[]
                    {
                        "string",
                    },
                },
            },
        },
    },
    Enabled = false,
    ParameterId = "string",
    Description = "string",
    InsertAfter = "string",
    Name = "string",
});
Copy
example, err := dynatrace.NewFailureDetectionRules(ctx, "failureDetectionRulesResource", &dynatrace.FailureDetectionRulesArgs{
	Conditions: &dynatrace.FailureDetectionRulesConditionsArgs{
		Conditions: dynatrace.FailureDetectionRulesConditionsConditionArray{
			&dynatrace.FailureDetectionRulesConditionsConditionArgs{
				Attribute: pulumi.String("string"),
				Predicate: &dynatrace.FailureDetectionRulesConditionsConditionPredicateArgs{
					PredicateType: pulumi.String("string"),
					CaseSensitive: pulumi.Bool(false),
					ManagementZones: pulumi.StringArray{
						pulumi.String("string"),
					},
					ServiceTypes: pulumi.StringArray{
						pulumi.String("string"),
					},
					TagKeys: pulumi.StringArray{
						pulumi.String("string"),
					},
					Tags: pulumi.StringArray{
						pulumi.String("string"),
					},
					TextValues: pulumi.StringArray{
						pulumi.String("string"),
					},
				},
			},
		},
	},
	Enabled:     pulumi.Bool(false),
	ParameterId: pulumi.String("string"),
	Description: pulumi.String("string"),
	InsertAfter: pulumi.String("string"),
	Name:        pulumi.String("string"),
})
Copy
var failureDetectionRulesResource = new FailureDetectionRules("failureDetectionRulesResource", FailureDetectionRulesArgs.builder()
    .conditions(FailureDetectionRulesConditionsArgs.builder()
        .conditions(FailureDetectionRulesConditionsConditionArgs.builder()
            .attribute("string")
            .predicate(FailureDetectionRulesConditionsConditionPredicateArgs.builder()
                .predicateType("string")
                .caseSensitive(false)
                .managementZones("string")
                .serviceTypes("string")
                .tagKeys("string")
                .tags("string")
                .textValues("string")
                .build())
            .build())
        .build())
    .enabled(false)
    .parameterId("string")
    .description("string")
    .insertAfter("string")
    .name("string")
    .build());
Copy
failure_detection_rules_resource = dynatrace.FailureDetectionRules("failureDetectionRulesResource",
    conditions={
        "conditions": [{
            "attribute": "string",
            "predicate": {
                "predicate_type": "string",
                "case_sensitive": False,
                "management_zones": ["string"],
                "service_types": ["string"],
                "tag_keys": ["string"],
                "tags": ["string"],
                "text_values": ["string"],
            },
        }],
    },
    enabled=False,
    parameter_id="string",
    description="string",
    insert_after="string",
    name="string")
Copy
const failureDetectionRulesResource = new dynatrace.FailureDetectionRules("failureDetectionRulesResource", {
    conditions: {
        conditions: [{
            attribute: "string",
            predicate: {
                predicateType: "string",
                caseSensitive: false,
                managementZones: ["string"],
                serviceTypes: ["string"],
                tagKeys: ["string"],
                tags: ["string"],
                textValues: ["string"],
            },
        }],
    },
    enabled: false,
    parameterId: "string",
    description: "string",
    insertAfter: "string",
    name: "string",
});
Copy
type: dynatrace:FailureDetectionRules
properties:
    conditions:
        conditions:
            - attribute: string
              predicate:
                caseSensitive: false
                managementZones:
                    - string
                predicateType: string
                serviceTypes:
                    - string
                tagKeys:
                    - string
                tags:
                    - string
                textValues:
                    - string
    description: string
    enabled: false
    insertAfter: string
    name: string
    parameterId: string
Copy

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

Conditions This property is required. Pulumiverse.Dynatrace.Inputs.FailureDetectionRulesConditions
Conditions
Enabled This property is required. bool
This setting is enabled (true) or disabled (false)
ParameterId This property is required. string
Failure detection parameters
Description string
Rule description
InsertAfter string
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
Name string
Rule name
Conditions This property is required. FailureDetectionRulesConditionsArgs
Conditions
Enabled This property is required. bool
This setting is enabled (true) or disabled (false)
ParameterId This property is required. string
Failure detection parameters
Description string
Rule description
InsertAfter string
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
Name string
Rule name
conditions This property is required. FailureDetectionRulesConditions
Conditions
enabled This property is required. Boolean
This setting is enabled (true) or disabled (false)
parameterId This property is required. String
Failure detection parameters
description String
Rule description
insertAfter String
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
name String
Rule name
conditions This property is required. FailureDetectionRulesConditions
Conditions
enabled This property is required. boolean
This setting is enabled (true) or disabled (false)
parameterId This property is required. string
Failure detection parameters
description string
Rule description
insertAfter string
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
name string
Rule name
conditions This property is required. FailureDetectionRulesConditionsArgs
Conditions
enabled This property is required. bool
This setting is enabled (true) or disabled (false)
parameter_id This property is required. str
Failure detection parameters
description str
Rule description
insert_after str
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
name str
Rule name
conditions This property is required. Property Map
Conditions
enabled This property is required. Boolean
This setting is enabled (true) or disabled (false)
parameterId This property is required. String
Failure detection parameters
description String
Rule description
insertAfter String
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
name String
Rule name

Outputs

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

Get an existing FailureDetectionRules 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?: FailureDetectionRulesState, opts?: CustomResourceOptions): FailureDetectionRules
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        conditions: Optional[FailureDetectionRulesConditionsArgs] = None,
        description: Optional[str] = None,
        enabled: Optional[bool] = None,
        insert_after: Optional[str] = None,
        name: Optional[str] = None,
        parameter_id: Optional[str] = None) -> FailureDetectionRules
func GetFailureDetectionRules(ctx *Context, name string, id IDInput, state *FailureDetectionRulesState, opts ...ResourceOption) (*FailureDetectionRules, error)
public static FailureDetectionRules Get(string name, Input<string> id, FailureDetectionRulesState? state, CustomResourceOptions? opts = null)
public static FailureDetectionRules get(String name, Output<String> id, FailureDetectionRulesState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:FailureDetectionRules    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:
Conditions Pulumiverse.Dynatrace.Inputs.FailureDetectionRulesConditions
Conditions
Description string
Rule description
Enabled bool
This setting is enabled (true) or disabled (false)
InsertAfter string
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
Name string
Rule name
ParameterId string
Failure detection parameters
Conditions FailureDetectionRulesConditionsArgs
Conditions
Description string
Rule description
Enabled bool
This setting is enabled (true) or disabled (false)
InsertAfter string
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
Name string
Rule name
ParameterId string
Failure detection parameters
conditions FailureDetectionRulesConditions
Conditions
description String
Rule description
enabled Boolean
This setting is enabled (true) or disabled (false)
insertAfter String
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
name String
Rule name
parameterId String
Failure detection parameters
conditions FailureDetectionRulesConditions
Conditions
description string
Rule description
enabled boolean
This setting is enabled (true) or disabled (false)
insertAfter string
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
name string
Rule name
parameterId string
Failure detection parameters
conditions FailureDetectionRulesConditionsArgs
Conditions
description str
Rule description
enabled bool
This setting is enabled (true) or disabled (false)
insert_after str
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
name str
Rule name
parameter_id str
Failure detection parameters
conditions Property Map
Conditions
description String
Rule description
enabled Boolean
This setting is enabled (true) or disabled (false)
insertAfter String
Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
name String
Rule name
parameterId String
Failure detection parameters

Supporting Types

FailureDetectionRulesConditions
, FailureDetectionRulesConditionsArgs

conditions This property is required. List<Property Map>

FailureDetectionRulesConditionsCondition
, FailureDetectionRulesConditionsConditionArgs

Attribute This property is required. string
Possible Values: PG_NAME, PG_TAG, SERVICE_MANAGEMENT_ZONE, SERVICE_NAME, SERVICE_TAG, SERVICE_TYPE
Predicate This property is required. Pulumiverse.Dynatrace.Inputs.FailureDetectionRulesConditionsConditionPredicate
Condition to check the attribute against
Attribute This property is required. string
Possible Values: PG_NAME, PG_TAG, SERVICE_MANAGEMENT_ZONE, SERVICE_NAME, SERVICE_TAG, SERVICE_TYPE
Predicate This property is required. FailureDetectionRulesConditionsConditionPredicate
Condition to check the attribute against
attribute This property is required. String
Possible Values: PG_NAME, PG_TAG, SERVICE_MANAGEMENT_ZONE, SERVICE_NAME, SERVICE_TAG, SERVICE_TYPE
predicate This property is required. FailureDetectionRulesConditionsConditionPredicate
Condition to check the attribute against
attribute This property is required. string
Possible Values: PG_NAME, PG_TAG, SERVICE_MANAGEMENT_ZONE, SERVICE_NAME, SERVICE_TAG, SERVICE_TYPE
predicate This property is required. FailureDetectionRulesConditionsConditionPredicate
Condition to check the attribute against
attribute This property is required. str
Possible Values: PG_NAME, PG_TAG, SERVICE_MANAGEMENT_ZONE, SERVICE_NAME, SERVICE_TAG, SERVICE_TYPE
predicate This property is required. FailureDetectionRulesConditionsConditionPredicate
Condition to check the attribute against
attribute This property is required. String
Possible Values: PG_NAME, PG_TAG, SERVICE_MANAGEMENT_ZONE, SERVICE_NAME, SERVICE_TAG, SERVICE_TYPE
predicate This property is required. Property Map
Condition to check the attribute against

FailureDetectionRulesConditionsConditionPredicate
, FailureDetectionRulesConditionsConditionPredicateArgs

PredicateType This property is required. string
Predicate type
CaseSensitive bool
Case sensitive
ManagementZones List<string>
Management zones
ServiceTypes List<string>
Service types
TagKeys List<string>
Tag keys
Tags List<string>
Tags (exact match)
TextValues List<string>
Names
PredicateType This property is required. string
Predicate type
CaseSensitive bool
Case sensitive
ManagementZones []string
Management zones
ServiceTypes []string
Service types
TagKeys []string
Tag keys
Tags []string
Tags (exact match)
TextValues []string
Names
predicateType This property is required. String
Predicate type
caseSensitive Boolean
Case sensitive
managementZones List<String>
Management zones
serviceTypes List<String>
Service types
tagKeys List<String>
Tag keys
tags List<String>
Tags (exact match)
textValues List<String>
Names
predicateType This property is required. string
Predicate type
caseSensitive boolean
Case sensitive
managementZones string[]
Management zones
serviceTypes string[]
Service types
tagKeys string[]
Tag keys
tags string[]
Tags (exact match)
textValues string[]
Names
predicate_type This property is required. str
Predicate type
case_sensitive bool
Case sensitive
management_zones Sequence[str]
Management zones
service_types Sequence[str]
Service types
tag_keys Sequence[str]
Tag keys
tags Sequence[str]
Tags (exact match)
text_values Sequence[str]
Names
predicateType This property is required. String
Predicate type
caseSensitive Boolean
Case sensitive
managementZones List<String>
Management zones
serviceTypes List<String>
Service types
tagKeys List<String>
Tag keys
tags List<String>
Tags (exact match)
textValues List<String>
Names

Package Details

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