published on Tuesday, Jun 9, 2026 by Pulumiverse
published on Tuesday, Jun 9, 2026 by Pulumiverse
This resource requires the API token scopes Read settings (
settings.read) and Write settings (settings.write)
Dynatrace Documentation
Container monitoring rules - https://www.dynatrace.com/support/help/platform-modules/infrastructure-monitoring/container-platform-monitoring/container-monitoring-rules
Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId:
builtin:container.built-in-monitoring-rule)
Export Example Usage
terraform-provider-dynatrace -export dynatrace.ContainerBuiltinRuledownloads all existing builtin monitoring rules for containers
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 rules = new dynatrace.ContainerBuiltinRule("rules", {
ignoreDockerPauseContainer: false,
ignoreKubernetesPauseContainer: true,
ignoreOpenShiftBuildPodName: false,
ignoreOpenShiftSdnNamespace: true,
ignoreOpenShiftEtcdNamespace: false,
ignoreOpenShiftIngressCanaryNamespace: false,
ignoreOpenShiftKubeApiserverNamespace: false,
ignoreOpenShiftMachineConfigOperatorNamespace: false,
ignoreOpenShiftMonitoringNamespace: false,
ignoreOpenShiftOvnKubernetesNamespace: false,
});
import pulumi
import pulumiverse_dynatrace as dynatrace
rules = dynatrace.ContainerBuiltinRule("rules",
ignore_docker_pause_container=False,
ignore_kubernetes_pause_container=True,
ignore_open_shift_build_pod_name=False,
ignore_open_shift_sdn_namespace=True,
ignore_open_shift_etcd_namespace=False,
ignore_open_shift_ingress_canary_namespace=False,
ignore_open_shift_kube_apiserver_namespace=False,
ignore_open_shift_machine_config_operator_namespace=False,
ignore_open_shift_monitoring_namespace=False,
ignore_open_shift_ovn_kubernetes_namespace=False)
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.NewContainerBuiltinRule(ctx, "rules", &dynatrace.ContainerBuiltinRuleArgs{
IgnoreDockerPauseContainer: pulumi.Bool(false),
IgnoreKubernetesPauseContainer: pulumi.Bool(true),
IgnoreOpenShiftBuildPodName: pulumi.Bool(false),
IgnoreOpenShiftSdnNamespace: pulumi.Bool(true),
IgnoreOpenShiftEtcdNamespace: pulumi.Bool(false),
IgnoreOpenShiftIngressCanaryNamespace: pulumi.Bool(false),
IgnoreOpenShiftKubeApiserverNamespace: pulumi.Bool(false),
IgnoreOpenShiftMachineConfigOperatorNamespace: pulumi.Bool(false),
IgnoreOpenShiftMonitoringNamespace: pulumi.Bool(false),
IgnoreOpenShiftOvnKubernetesNamespace: pulumi.Bool(false),
})
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 rules = new Dynatrace.ContainerBuiltinRule("rules", new()
{
IgnoreDockerPauseContainer = false,
IgnoreKubernetesPauseContainer = true,
IgnoreOpenShiftBuildPodName = false,
IgnoreOpenShiftSdnNamespace = true,
IgnoreOpenShiftEtcdNamespace = false,
IgnoreOpenShiftIngressCanaryNamespace = false,
IgnoreOpenShiftKubeApiserverNamespace = false,
IgnoreOpenShiftMachineConfigOperatorNamespace = false,
IgnoreOpenShiftMonitoringNamespace = false,
IgnoreOpenShiftOvnKubernetesNamespace = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.ContainerBuiltinRule;
import com.pulumi.dynatrace.ContainerBuiltinRuleArgs;
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 rules = new ContainerBuiltinRule("rules", ContainerBuiltinRuleArgs.builder()
.ignoreDockerPauseContainer(false)
.ignoreKubernetesPauseContainer(true)
.ignoreOpenShiftBuildPodName(false)
.ignoreOpenShiftSdnNamespace(true)
.ignoreOpenShiftEtcdNamespace(false)
.ignoreOpenShiftIngressCanaryNamespace(false)
.ignoreOpenShiftKubeApiserverNamespace(false)
.ignoreOpenShiftMachineConfigOperatorNamespace(false)
.ignoreOpenShiftMonitoringNamespace(false)
.ignoreOpenShiftOvnKubernetesNamespace(false)
.build());
}
}
resources:
rules:
type: dynatrace:ContainerBuiltinRule
properties:
ignoreDockerPauseContainer: false
ignoreKubernetesPauseContainer: true
ignoreOpenShiftBuildPodName: false
ignoreOpenShiftSdnNamespace: true
ignoreOpenShiftEtcdNamespace: false
ignoreOpenShiftIngressCanaryNamespace: false
ignoreOpenShiftKubeApiserverNamespace: false
ignoreOpenShiftMachineConfigOperatorNamespace: false
ignoreOpenShiftMonitoringNamespace: false
ignoreOpenShiftOvnKubernetesNamespace: false
pulumi {
required_providers {
dynatrace = {
source = "pulumi/dynatrace"
}
}
}
resource "dynatrace_containerbuiltinrule" "rules" {
ignore_docker_pause_container = false
ignore_kubernetes_pause_container = true
ignore_open_shift_build_pod_name = false
ignore_open_shift_sdn_namespace = true
ignore_open_shift_etcd_namespace = false
ignore_open_shift_ingress_canary_namespace = false
ignore_open_shift_kube_apiserver_namespace = false
ignore_open_shift_machine_config_operator_namespace = false
ignore_open_shift_monitoring_namespace = false
ignore_open_shift_ovn_kubernetes_namespace = false
}
Create ContainerBuiltinRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ContainerBuiltinRule(name: string, args: ContainerBuiltinRuleArgs, opts?: CustomResourceOptions);@overload
def ContainerBuiltinRule(resource_name: str,
args: ContainerBuiltinRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ContainerBuiltinRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
ignore_docker_pause_container: Optional[bool] = None,
ignore_kubernetes_pause_container: Optional[bool] = None,
ignore_open_shift_build_pod_name: Optional[bool] = None,
ignore_open_shift_sdn_namespace: Optional[bool] = None,
ignore_open_shift_etcd_namespace: Optional[bool] = None,
ignore_open_shift_ingress_canary_namespace: Optional[bool] = None,
ignore_open_shift_kube_apiserver_namespace: Optional[bool] = None,
ignore_open_shift_machine_config_operator_namespace: Optional[bool] = None,
ignore_open_shift_monitoring_namespace: Optional[bool] = None,
ignore_open_shift_ovn_kubernetes_namespace: Optional[bool] = None)func NewContainerBuiltinRule(ctx *Context, name string, args ContainerBuiltinRuleArgs, opts ...ResourceOption) (*ContainerBuiltinRule, error)public ContainerBuiltinRule(string name, ContainerBuiltinRuleArgs args, CustomResourceOptions? opts = null)
public ContainerBuiltinRule(String name, ContainerBuiltinRuleArgs args)
public ContainerBuiltinRule(String name, ContainerBuiltinRuleArgs args, CustomResourceOptions options)
type: dynatrace:ContainerBuiltinRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_containerbuiltinrule" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ContainerBuiltinRuleArgs
- 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 ContainerBuiltinRuleArgs
- 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 ContainerBuiltinRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContainerBuiltinRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ContainerBuiltinRuleArgs
- 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 containerBuiltinRuleResource = new Dynatrace.ContainerBuiltinRule("containerBuiltinRuleResource", new()
{
IgnoreDockerPauseContainer = false,
IgnoreKubernetesPauseContainer = false,
IgnoreOpenShiftBuildPodName = false,
IgnoreOpenShiftSdnNamespace = false,
IgnoreOpenShiftEtcdNamespace = false,
IgnoreOpenShiftIngressCanaryNamespace = false,
IgnoreOpenShiftKubeApiserverNamespace = false,
IgnoreOpenShiftMachineConfigOperatorNamespace = false,
IgnoreOpenShiftMonitoringNamespace = false,
IgnoreOpenShiftOvnKubernetesNamespace = false,
});
example, err := dynatrace.NewContainerBuiltinRule(ctx, "containerBuiltinRuleResource", &dynatrace.ContainerBuiltinRuleArgs{
IgnoreDockerPauseContainer: pulumi.Bool(false),
IgnoreKubernetesPauseContainer: pulumi.Bool(false),
IgnoreOpenShiftBuildPodName: pulumi.Bool(false),
IgnoreOpenShiftSdnNamespace: pulumi.Bool(false),
IgnoreOpenShiftEtcdNamespace: pulumi.Bool(false),
IgnoreOpenShiftIngressCanaryNamespace: pulumi.Bool(false),
IgnoreOpenShiftKubeApiserverNamespace: pulumi.Bool(false),
IgnoreOpenShiftMachineConfigOperatorNamespace: pulumi.Bool(false),
IgnoreOpenShiftMonitoringNamespace: pulumi.Bool(false),
IgnoreOpenShiftOvnKubernetesNamespace: pulumi.Bool(false),
})
resource "dynatrace_containerbuiltinrule" "containerBuiltinRuleResource" {
ignore_docker_pause_container = false
ignore_kubernetes_pause_container = false
ignore_open_shift_build_pod_name = false
ignore_open_shift_sdn_namespace = false
ignore_open_shift_etcd_namespace = false
ignore_open_shift_ingress_canary_namespace = false
ignore_open_shift_kube_apiserver_namespace = false
ignore_open_shift_machine_config_operator_namespace = false
ignore_open_shift_monitoring_namespace = false
ignore_open_shift_ovn_kubernetes_namespace = false
}
var containerBuiltinRuleResource = new ContainerBuiltinRule("containerBuiltinRuleResource", ContainerBuiltinRuleArgs.builder()
.ignoreDockerPauseContainer(false)
.ignoreKubernetesPauseContainer(false)
.ignoreOpenShiftBuildPodName(false)
.ignoreOpenShiftSdnNamespace(false)
.ignoreOpenShiftEtcdNamespace(false)
.ignoreOpenShiftIngressCanaryNamespace(false)
.ignoreOpenShiftKubeApiserverNamespace(false)
.ignoreOpenShiftMachineConfigOperatorNamespace(false)
.ignoreOpenShiftMonitoringNamespace(false)
.ignoreOpenShiftOvnKubernetesNamespace(false)
.build());
container_builtin_rule_resource = dynatrace.ContainerBuiltinRule("containerBuiltinRuleResource",
ignore_docker_pause_container=False,
ignore_kubernetes_pause_container=False,
ignore_open_shift_build_pod_name=False,
ignore_open_shift_sdn_namespace=False,
ignore_open_shift_etcd_namespace=False,
ignore_open_shift_ingress_canary_namespace=False,
ignore_open_shift_kube_apiserver_namespace=False,
ignore_open_shift_machine_config_operator_namespace=False,
ignore_open_shift_monitoring_namespace=False,
ignore_open_shift_ovn_kubernetes_namespace=False)
const containerBuiltinRuleResource = new dynatrace.ContainerBuiltinRule("containerBuiltinRuleResource", {
ignoreDockerPauseContainer: false,
ignoreKubernetesPauseContainer: false,
ignoreOpenShiftBuildPodName: false,
ignoreOpenShiftSdnNamespace: false,
ignoreOpenShiftEtcdNamespace: false,
ignoreOpenShiftIngressCanaryNamespace: false,
ignoreOpenShiftKubeApiserverNamespace: false,
ignoreOpenShiftMachineConfigOperatorNamespace: false,
ignoreOpenShiftMonitoringNamespace: false,
ignoreOpenShiftOvnKubernetesNamespace: false,
});
type: dynatrace:ContainerBuiltinRule
properties:
ignoreDockerPauseContainer: false
ignoreKubernetesPauseContainer: false
ignoreOpenShiftBuildPodName: false
ignoreOpenShiftEtcdNamespace: false
ignoreOpenShiftIngressCanaryNamespace: false
ignoreOpenShiftKubeApiserverNamespace: false
ignoreOpenShiftMachineConfigOperatorNamespace: false
ignoreOpenShiftMonitoringNamespace: false
ignoreOpenShiftOvnKubernetesNamespace: false
ignoreOpenShiftSdnNamespace: false
ContainerBuiltinRule 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 ContainerBuiltinRule resource accepts the following input properties:
- Ignore
Docker boolPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- Ignore
Kubernetes boolPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- Ignore
Open boolShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- Ignore
Open boolShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- Ignore
Open boolShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- Ignore
Open boolShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- Ignore
Open boolShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- Ignore
Open boolShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- Ignore
Open boolShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- Ignore
Open boolShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- Ignore
Docker boolPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- Ignore
Kubernetes boolPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- Ignore
Open boolShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- Ignore
Open boolShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- Ignore
Open boolShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- Ignore
Open boolShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- Ignore
Open boolShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- Ignore
Open boolShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- Ignore
Open boolShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- Ignore
Open boolShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore_
docker_ boolpause_ container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore_
kubernetes_ boolpause_ container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore_
open_ boolshift_ build_ pod_ name - Disable monitoring of intermediate containers created during image build.
- ignore_
open_ boolshift_ sdn_ namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore_
open_ boolshift_ etcd_ namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore_
open_ boolshift_ ingress_ canary_ namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore_
open_ boolshift_ kube_ apiserver_ namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore_
open_ boolshift_ machine_ config_ operator_ namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore_
open_ boolshift_ monitoring_ namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore_
open_ boolshift_ ovn_ kubernetes_ namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore
Docker BooleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Kubernetes BooleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Open BooleanShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- ignore
Open BooleanShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore
Open BooleanShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore
Open BooleanShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore
Open BooleanShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore
Open BooleanShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore
Open BooleanShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore
Open BooleanShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore
Docker booleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Kubernetes booleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Open booleanShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- ignore
Open booleanShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore
Open booleanShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore
Open booleanShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore
Open booleanShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore
Open booleanShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore
Open booleanShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore
Open booleanShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore_
docker_ boolpause_ container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore_
kubernetes_ boolpause_ container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore_
open_ boolshift_ build_ pod_ name - Disable monitoring of intermediate containers created during image build.
- ignore_
open_ boolshift_ sdn_ namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore_
open_ boolshift_ etcd_ namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore_
open_ boolshift_ ingress_ canary_ namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore_
open_ boolshift_ kube_ apiserver_ namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore_
open_ boolshift_ machine_ config_ operator_ namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore_
open_ boolshift_ monitoring_ namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore_
open_ boolshift_ ovn_ kubernetes_ namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore
Docker BooleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Kubernetes BooleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Open BooleanShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- ignore
Open BooleanShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore
Open BooleanShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore
Open BooleanShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore
Open BooleanShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore
Open BooleanShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore
Open BooleanShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore
Open BooleanShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
Outputs
All input properties are implicitly available as output properties. Additionally, the ContainerBuiltinRule 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 ContainerBuiltinRule Resource
Get an existing ContainerBuiltinRule 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?: ContainerBuiltinRuleState, opts?: CustomResourceOptions): ContainerBuiltinRule@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ignore_docker_pause_container: Optional[bool] = None,
ignore_kubernetes_pause_container: Optional[bool] = None,
ignore_open_shift_build_pod_name: Optional[bool] = None,
ignore_open_shift_etcd_namespace: Optional[bool] = None,
ignore_open_shift_ingress_canary_namespace: Optional[bool] = None,
ignore_open_shift_kube_apiserver_namespace: Optional[bool] = None,
ignore_open_shift_machine_config_operator_namespace: Optional[bool] = None,
ignore_open_shift_monitoring_namespace: Optional[bool] = None,
ignore_open_shift_ovn_kubernetes_namespace: Optional[bool] = None,
ignore_open_shift_sdn_namespace: Optional[bool] = None) -> ContainerBuiltinRulefunc GetContainerBuiltinRule(ctx *Context, name string, id IDInput, state *ContainerBuiltinRuleState, opts ...ResourceOption) (*ContainerBuiltinRule, error)public static ContainerBuiltinRule Get(string name, Input<string> id, ContainerBuiltinRuleState? state, CustomResourceOptions? opts = null)public static ContainerBuiltinRule get(String name, Output<String> id, ContainerBuiltinRuleState state, CustomResourceOptions options)resources: _: type: dynatrace:ContainerBuiltinRule get: id: ${id}import {
to = dynatrace_containerbuiltinrule.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.
- Ignore
Docker boolPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- Ignore
Kubernetes boolPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- Ignore
Open boolShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- Ignore
Open boolShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- Ignore
Open boolShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- Ignore
Open boolShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- Ignore
Open boolShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- Ignore
Open boolShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- Ignore
Open boolShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- Ignore
Open boolShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- Ignore
Docker boolPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- Ignore
Kubernetes boolPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- Ignore
Open boolShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- Ignore
Open boolShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- Ignore
Open boolShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- Ignore
Open boolShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- Ignore
Open boolShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- Ignore
Open boolShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- Ignore
Open boolShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- Ignore
Open boolShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore_
docker_ boolpause_ container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore_
kubernetes_ boolpause_ container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore_
open_ boolshift_ build_ pod_ name - Disable monitoring of intermediate containers created during image build.
- ignore_
open_ boolshift_ etcd_ namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore_
open_ boolshift_ ingress_ canary_ namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore_
open_ boolshift_ kube_ apiserver_ namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore_
open_ boolshift_ machine_ config_ operator_ namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore_
open_ boolshift_ monitoring_ namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore_
open_ boolshift_ ovn_ kubernetes_ namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore_
open_ boolshift_ sdn_ namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore
Docker BooleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Kubernetes BooleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Open BooleanShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- ignore
Open BooleanShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore
Open BooleanShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore
Open BooleanShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore
Open BooleanShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore
Open BooleanShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore
Open BooleanShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore
Open BooleanShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore
Docker booleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Kubernetes booleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Open booleanShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- ignore
Open booleanShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore
Open booleanShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore
Open booleanShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore
Open booleanShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore
Open booleanShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore
Open booleanShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore
Open booleanShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore_
docker_ boolpause_ container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore_
kubernetes_ boolpause_ container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore_
open_ boolshift_ build_ pod_ name - Disable monitoring of intermediate containers created during image build.
- ignore_
open_ boolshift_ etcd_ namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore_
open_ boolshift_ ingress_ canary_ namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore_
open_ boolshift_ kube_ apiserver_ namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore_
open_ boolshift_ machine_ config_ operator_ namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore_
open_ boolshift_ monitoring_ namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore_
open_ boolshift_ ovn_ kubernetes_ namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore_
open_ boolshift_ sdn_ namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
- ignore
Docker BooleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Kubernetes BooleanPause Container - Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
- ignore
Open BooleanShift Build Pod Name - Disable monitoring of intermediate containers created during image build.
- ignore
Open BooleanShift Etcd Namespace - Disable monitoring of platform internal containers in the openshift-etcd namespace.
- ignore
Open BooleanShift Ingress Canary Namespace - Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
- ignore
Open BooleanShift Kube Apiserver Namespace - Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
- ignore
Open BooleanShift Machine Config Operator Namespace - Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
- ignore
Open BooleanShift Monitoring Namespace - Disable monitoring of platform internal containers in the openshift-monitoring namespace.
- ignore
Open BooleanShift Ovn Kubernetes Namespace - Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
- ignore
Open BooleanShift Sdn Namespace - Disable monitoring of platform internal containers in the openshift-sdn namespace.
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