published on Tuesday, Jun 9, 2026 by Pulumiverse
published on Tuesday, Jun 9, 2026 by Pulumiverse
Deploying an OpenPipeline routing configuration will overwrite the existing one of the same kind, causing any manual changes made in the web UI or other routing configurations managed by Terraform or Monaco to be lost. Ensure all routing configurations of the same kind are defined within a single Terraform or Monaco configuration to prevent data loss.
This resource requires the API token scopes Read settings (
settings.read) and Write settings (settings.write)
This resource requires the OAuth scopes Read settings (
settings:objects:read) and Write settings (settings:objects:write)
Dynatrace Documentation
- OpenPipeline - https://docs.dynatrace.com/docs/platform/openpipeline
Export Example Usage
terraform-provider-dynatrace -export dynatrace.OpenpipelineV2DavisEventsRoutingdownloads all existing OpenPipeline definitions for davis events routing
The full documentation of the export feature is available here.
Resource Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumiverse/dynatrace";
const routing = new dynatrace.OpenpipelineV2DavisEventsRouting("routing", {routingEntries: {
routingEntries: [{
enabled: true,
pipelineType: "builtin",
builtinPipelineId: "default",
matcher: "not matchesPhrase(record.title, \"Warning\")",
description: "Default route",
}],
}});
import pulumi
import pulumiverse_dynatrace as dynatrace
routing = dynatrace.OpenpipelineV2DavisEventsRouting("routing", routing_entries={
"routing_entries": [{
"enabled": True,
"pipeline_type": "builtin",
"builtin_pipeline_id": "default",
"matcher": "not matchesPhrase(record.title, \"Warning\")",
"description": "Default route",
}],
})
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dynatrace.NewOpenpipelineV2DavisEventsRouting(ctx, "routing", &dynatrace.OpenpipelineV2DavisEventsRoutingArgs{
RoutingEntries: &dynatrace.OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs{
RoutingEntries: dynatrace.OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntryArray{
&dynatrace.OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntryArgs{
Enabled: pulumi.Bool(true),
PipelineType: pulumi.String("builtin"),
BuiltinPipelineId: pulumi.String("default"),
Matcher: pulumi.String("not matchesPhrase(record.title, \"Warning\")"),
Description: pulumi.String("Default route"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumiverse.Dynatrace;
return await Deployment.RunAsync(() =>
{
var routing = new Dynatrace.OpenpipelineV2DavisEventsRouting("routing", new()
{
RoutingEntries = new Dynatrace.Inputs.OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs
{
RoutingEntries = new[]
{
new Dynatrace.Inputs.OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntryArgs
{
Enabled = true,
PipelineType = "builtin",
BuiltinPipelineId = "default",
Matcher = "not matchesPhrase(record.title, \"Warning\")",
Description = "Default route",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.OpenpipelineV2DavisEventsRouting;
import com.pulumi.dynatrace.OpenpipelineV2DavisEventsRoutingArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var routing = new OpenpipelineV2DavisEventsRouting("routing", OpenpipelineV2DavisEventsRoutingArgs.builder()
.routingEntries(OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs.builder()
.routingEntries(OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntryArgs.builder()
.enabled(true)
.pipelineType("builtin")
.builtinPipelineId("default")
.matcher("not matchesPhrase(record.title, \"Warning\")")
.description("Default route")
.build())
.build())
.build());
}
}
resources:
routing:
type: dynatrace:OpenpipelineV2DavisEventsRouting
properties:
routingEntries:
routingEntries:
- enabled: true
pipelineType: builtin
builtinPipelineId: default
matcher: not matchesPhrase(record.title, "Warning")
description: Default route
pulumi {
required_providers {
dynatrace = {
source = "pulumi/dynatrace"
}
}
}
resource "dynatrace_openpipelinev2daviseventsrouting" "routing" {
routing_entries = {
routing_entries = [{
"enabled" = true
"pipelineType" = "builtin"
"builtinPipelineId" = "default"
"matcher" = "not matchesPhrase(record.title, \"Warning\")"
"description" = "Default route"
}]
}
}
Create OpenpipelineV2DavisEventsRouting Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpenpipelineV2DavisEventsRouting(name: string, args?: OpenpipelineV2DavisEventsRoutingArgs, opts?: CustomResourceOptions);@overload
def OpenpipelineV2DavisEventsRouting(resource_name: str,
args: Optional[OpenpipelineV2DavisEventsRoutingArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def OpenpipelineV2DavisEventsRouting(resource_name: str,
opts: Optional[ResourceOptions] = None,
routing_entries: Optional[OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs] = None)func NewOpenpipelineV2DavisEventsRouting(ctx *Context, name string, args *OpenpipelineV2DavisEventsRoutingArgs, opts ...ResourceOption) (*OpenpipelineV2DavisEventsRouting, error)public OpenpipelineV2DavisEventsRouting(string name, OpenpipelineV2DavisEventsRoutingArgs? args = null, CustomResourceOptions? opts = null)
public OpenpipelineV2DavisEventsRouting(String name, OpenpipelineV2DavisEventsRoutingArgs args)
public OpenpipelineV2DavisEventsRouting(String name, OpenpipelineV2DavisEventsRoutingArgs args, CustomResourceOptions options)
type: dynatrace:OpenpipelineV2DavisEventsRouting
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_openpipelinev2daviseventsrouting" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OpenpipelineV2DavisEventsRoutingArgs
- 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 OpenpipelineV2DavisEventsRoutingArgs
- 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 OpenpipelineV2DavisEventsRoutingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpenpipelineV2DavisEventsRoutingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpenpipelineV2DavisEventsRoutingArgs
- 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 openpipelineV2DavisEventsRoutingResource = new Dynatrace.OpenpipelineV2DavisEventsRouting("openpipelineV2DavisEventsRoutingResource", new()
{
RoutingEntries = new Dynatrace.Inputs.OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs
{
RoutingEntries = new[]
{
new Dynatrace.Inputs.OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntryArgs
{
Description = "string",
Enabled = false,
Matcher = "string",
PipelineType = "string",
BuiltinPipelineId = "string",
PipelineId = "string",
},
},
},
});
example, err := dynatrace.NewOpenpipelineV2DavisEventsRouting(ctx, "openpipelineV2DavisEventsRoutingResource", &dynatrace.OpenpipelineV2DavisEventsRoutingArgs{
RoutingEntries: &dynatrace.OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs{
RoutingEntries: dynatrace.OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntryArray{
&dynatrace.OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntryArgs{
Description: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Matcher: pulumi.String("string"),
PipelineType: pulumi.String("string"),
BuiltinPipelineId: pulumi.String("string"),
PipelineId: pulumi.String("string"),
},
},
},
})
resource "dynatrace_openpipelinev2daviseventsrouting" "openpipelineV2DavisEventsRoutingResource" {
routing_entries = {
routing_entries = [{
"description" = "string"
"enabled" = false
"matcher" = "string"
"pipelineType" = "string"
"builtinPipelineId" = "string"
"pipelineId" = "string"
}]
}
}
var openpipelineV2DavisEventsRoutingResource = new OpenpipelineV2DavisEventsRouting("openpipelineV2DavisEventsRoutingResource", OpenpipelineV2DavisEventsRoutingArgs.builder()
.routingEntries(OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs.builder()
.routingEntries(OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntryArgs.builder()
.description("string")
.enabled(false)
.matcher("string")
.pipelineType("string")
.builtinPipelineId("string")
.pipelineId("string")
.build())
.build())
.build());
openpipeline_v2_davis_events_routing_resource = dynatrace.OpenpipelineV2DavisEventsRouting("openpipelineV2DavisEventsRoutingResource", routing_entries={
"routing_entries": [{
"description": "string",
"enabled": False,
"matcher": "string",
"pipeline_type": "string",
"builtin_pipeline_id": "string",
"pipeline_id": "string",
}],
})
const openpipelineV2DavisEventsRoutingResource = new dynatrace.OpenpipelineV2DavisEventsRouting("openpipelineV2DavisEventsRoutingResource", {routingEntries: {
routingEntries: [{
description: "string",
enabled: false,
matcher: "string",
pipelineType: "string",
builtinPipelineId: "string",
pipelineId: "string",
}],
}});
type: dynatrace:OpenpipelineV2DavisEventsRouting
properties:
routingEntries:
routingEntries:
- builtinPipelineId: string
description: string
enabled: false
matcher: string
pipelineId: string
pipelineType: string
OpenpipelineV2DavisEventsRouting 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 OpenpipelineV2DavisEventsRouting resource accepts the following input properties:
- Routing
Entries OpenpipelineV2Davis Events Routing Routing Entries Args - Routing for pipelines
- routing_
entries object - Routing for pipelines
- routing
Entries OpenpipelineV2Davis Events Routing Routing Entries - Routing for pipelines
- routing
Entries OpenpipelineV2Davis Events Routing Routing Entries - Routing for pipelines
- routing_
entries OpenpipelineV2Davis Events Routing Routing Entries Args - Routing for pipelines
- routing
Entries Property Map - Routing for pipelines
Outputs
All input properties are implicitly available as output properties. Additionally, the OpenpipelineV2DavisEventsRouting 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 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 OpenpipelineV2DavisEventsRouting Resource
Get an existing OpenpipelineV2DavisEventsRouting 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?: OpenpipelineV2DavisEventsRoutingState, opts?: CustomResourceOptions): OpenpipelineV2DavisEventsRouting@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
routing_entries: Optional[OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs] = None) -> OpenpipelineV2DavisEventsRoutingfunc GetOpenpipelineV2DavisEventsRouting(ctx *Context, name string, id IDInput, state *OpenpipelineV2DavisEventsRoutingState, opts ...ResourceOption) (*OpenpipelineV2DavisEventsRouting, error)public static OpenpipelineV2DavisEventsRouting Get(string name, Input<string> id, OpenpipelineV2DavisEventsRoutingState? state, CustomResourceOptions? opts = null)public static OpenpipelineV2DavisEventsRouting get(String name, Output<String> id, OpenpipelineV2DavisEventsRoutingState state, CustomResourceOptions options)resources: _: type: dynatrace:OpenpipelineV2DavisEventsRouting get: id: ${id}import {
to = dynatrace_openpipelinev2daviseventsrouting.example
id = "${id}"
}
- 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.
- Routing
Entries OpenpipelineV2Davis Events Routing Routing Entries Args - Routing for pipelines
- routing_
entries object - Routing for pipelines
- routing
Entries OpenpipelineV2Davis Events Routing Routing Entries - Routing for pipelines
- routing
Entries OpenpipelineV2Davis Events Routing Routing Entries - Routing for pipelines
- routing_
entries OpenpipelineV2Davis Events Routing Routing Entries Args - Routing for pipelines
- routing
Entries Property Map - Routing for pipelines
Supporting Types
OpenpipelineV2DavisEventsRoutingRoutingEntries, OpenpipelineV2DavisEventsRoutingRoutingEntriesArgs
OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntry, OpenpipelineV2DavisEventsRoutingRoutingEntriesRoutingEntryArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Matcher string
- Query which determines whether the record should be routed to the target pipeline of this rule.
- Pipeline
Type string - Pipeline Type. Possible values:
builtin,custom - Builtin
Pipeline stringId - Builtin Pipeline ID
- Pipeline
Id string - Pipeline ID
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Matcher string
- Query which determines whether the record should be routed to the target pipeline of this rule.
- Pipeline
Type string - Pipeline Type. Possible values:
builtin,custom - Builtin
Pipeline stringId - Builtin Pipeline ID
- Pipeline
Id string - Pipeline ID
- description string
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - matcher string
- Query which determines whether the record should be routed to the target pipeline of this rule.
- pipeline_
type string - Pipeline Type. Possible values:
builtin,custom - builtin_
pipeline_ stringid - Builtin Pipeline ID
- pipeline_
id string - Pipeline ID
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - matcher String
- Query which determines whether the record should be routed to the target pipeline of this rule.
- pipeline
Type String - Pipeline Type. Possible values:
builtin,custom - builtin
Pipeline StringId - Builtin Pipeline ID
- pipeline
Id String - Pipeline ID
- description string
- No documentation available
- enabled boolean
- This setting is enabled (
true) or disabled (false) - matcher string
- Query which determines whether the record should be routed to the target pipeline of this rule.
- pipeline
Type string - Pipeline Type. Possible values:
builtin,custom - builtin
Pipeline stringId - Builtin Pipeline ID
- pipeline
Id string - Pipeline ID
- description str
- No documentation available
- enabled bool
- This setting is enabled (
true) or disabled (false) - matcher str
- Query which determines whether the record should be routed to the target pipeline of this rule.
- pipeline_
type str - Pipeline Type. Possible values:
builtin,custom - builtin_
pipeline_ strid - Builtin Pipeline ID
- pipeline_
id str - Pipeline ID
- description String
- No documentation available
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - matcher String
- Query which determines whether the record should be routed to the target pipeline of this rule.
- pipeline
Type String - Pipeline Type. Possible values:
builtin,custom - builtin
Pipeline StringId - Builtin Pipeline ID
- pipeline
Id String - Pipeline ID
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatraceTerraform Provider.
published on Tuesday, Jun 9, 2026 by Pulumiverse