1. Packages
  2. Packages
  3. Dynatrace
  4. API Docs
  5. ContainerBuiltinRule
Viewing docs for Dynatrace v0.36.0
published on Tuesday, Jun 9, 2026 by Pulumiverse
dynatrace logo
Viewing docs for Dynatrace v0.36.0
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.ContainerBuiltinRule downloads 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:

    IgnoreDockerPauseContainer bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    IgnoreKubernetesPauseContainer bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    IgnoreOpenShiftBuildPodName bool
    Disable monitoring of intermediate containers created during image build.
    IgnoreOpenShiftSdnNamespace bool
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    IgnoreOpenShiftEtcdNamespace bool
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    IgnoreOpenShiftIngressCanaryNamespace bool
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    IgnoreOpenShiftKubeApiserverNamespace bool
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    IgnoreOpenShiftMachineConfigOperatorNamespace bool
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    IgnoreOpenShiftMonitoringNamespace bool
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    IgnoreOpenShiftOvnKubernetesNamespace bool
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    IgnoreDockerPauseContainer bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    IgnoreKubernetesPauseContainer bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    IgnoreOpenShiftBuildPodName bool
    Disable monitoring of intermediate containers created during image build.
    IgnoreOpenShiftSdnNamespace bool
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    IgnoreOpenShiftEtcdNamespace bool
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    IgnoreOpenShiftIngressCanaryNamespace bool
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    IgnoreOpenShiftKubeApiserverNamespace bool
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    IgnoreOpenShiftMachineConfigOperatorNamespace bool
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    IgnoreOpenShiftMonitoringNamespace bool
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    IgnoreOpenShiftOvnKubernetesNamespace bool
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignore_docker_pause_container bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignore_kubernetes_pause_container bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignore_open_shift_build_pod_name bool
    Disable monitoring of intermediate containers created during image build.
    ignore_open_shift_sdn_namespace bool
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignore_open_shift_etcd_namespace bool
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignore_open_shift_ingress_canary_namespace bool
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignore_open_shift_kube_apiserver_namespace bool
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignore_open_shift_machine_config_operator_namespace bool
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignore_open_shift_monitoring_namespace bool
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignore_open_shift_ovn_kubernetes_namespace bool
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignoreDockerPauseContainer Boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreKubernetesPauseContainer Boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreOpenShiftBuildPodName Boolean
    Disable monitoring of intermediate containers created during image build.
    ignoreOpenShiftSdnNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignoreOpenShiftEtcdNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignoreOpenShiftIngressCanaryNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignoreOpenShiftKubeApiserverNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignoreOpenShiftMachineConfigOperatorNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignoreOpenShiftMonitoringNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignoreOpenShiftOvnKubernetesNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignoreDockerPauseContainer boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreKubernetesPauseContainer boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreOpenShiftBuildPodName boolean
    Disable monitoring of intermediate containers created during image build.
    ignoreOpenShiftSdnNamespace boolean
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignoreOpenShiftEtcdNamespace boolean
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignoreOpenShiftIngressCanaryNamespace boolean
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignoreOpenShiftKubeApiserverNamespace boolean
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignoreOpenShiftMachineConfigOperatorNamespace boolean
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignoreOpenShiftMonitoringNamespace boolean
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignoreOpenShiftOvnKubernetesNamespace boolean
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignore_docker_pause_container bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignore_kubernetes_pause_container bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignore_open_shift_build_pod_name bool
    Disable monitoring of intermediate containers created during image build.
    ignore_open_shift_sdn_namespace bool
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignore_open_shift_etcd_namespace bool
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignore_open_shift_ingress_canary_namespace bool
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignore_open_shift_kube_apiserver_namespace bool
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignore_open_shift_machine_config_operator_namespace bool
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignore_open_shift_monitoring_namespace bool
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignore_open_shift_ovn_kubernetes_namespace bool
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignoreDockerPauseContainer Boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreKubernetesPauseContainer Boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreOpenShiftBuildPodName Boolean
    Disable monitoring of intermediate containers created during image build.
    ignoreOpenShiftSdnNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignoreOpenShiftEtcdNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignoreOpenShiftIngressCanaryNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignoreOpenShiftKubeApiserverNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignoreOpenShiftMachineConfigOperatorNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignoreOpenShiftMonitoringNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignoreOpenShiftOvnKubernetesNamespace Boolean
    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) -> ContainerBuiltinRule
    func 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.
    The following state arguments are supported:
    IgnoreDockerPauseContainer bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    IgnoreKubernetesPauseContainer bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    IgnoreOpenShiftBuildPodName bool
    Disable monitoring of intermediate containers created during image build.
    IgnoreOpenShiftEtcdNamespace bool
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    IgnoreOpenShiftIngressCanaryNamespace bool
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    IgnoreOpenShiftKubeApiserverNamespace bool
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    IgnoreOpenShiftMachineConfigOperatorNamespace bool
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    IgnoreOpenShiftMonitoringNamespace bool
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    IgnoreOpenShiftOvnKubernetesNamespace bool
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    IgnoreOpenShiftSdnNamespace bool
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    IgnoreDockerPauseContainer bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    IgnoreKubernetesPauseContainer bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    IgnoreOpenShiftBuildPodName bool
    Disable monitoring of intermediate containers created during image build.
    IgnoreOpenShiftEtcdNamespace bool
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    IgnoreOpenShiftIngressCanaryNamespace bool
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    IgnoreOpenShiftKubeApiserverNamespace bool
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    IgnoreOpenShiftMachineConfigOperatorNamespace bool
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    IgnoreOpenShiftMonitoringNamespace bool
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    IgnoreOpenShiftOvnKubernetesNamespace bool
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    IgnoreOpenShiftSdnNamespace bool
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignore_docker_pause_container bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignore_kubernetes_pause_container bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignore_open_shift_build_pod_name bool
    Disable monitoring of intermediate containers created during image build.
    ignore_open_shift_etcd_namespace bool
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignore_open_shift_ingress_canary_namespace bool
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignore_open_shift_kube_apiserver_namespace bool
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignore_open_shift_machine_config_operator_namespace bool
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignore_open_shift_monitoring_namespace bool
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignore_open_shift_ovn_kubernetes_namespace bool
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignore_open_shift_sdn_namespace bool
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignoreDockerPauseContainer Boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreKubernetesPauseContainer Boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreOpenShiftBuildPodName Boolean
    Disable monitoring of intermediate containers created during image build.
    ignoreOpenShiftEtcdNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignoreOpenShiftIngressCanaryNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignoreOpenShiftKubeApiserverNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignoreOpenShiftMachineConfigOperatorNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignoreOpenShiftMonitoringNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignoreOpenShiftOvnKubernetesNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignoreOpenShiftSdnNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignoreDockerPauseContainer boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreKubernetesPauseContainer boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreOpenShiftBuildPodName boolean
    Disable monitoring of intermediate containers created during image build.
    ignoreOpenShiftEtcdNamespace boolean
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignoreOpenShiftIngressCanaryNamespace boolean
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignoreOpenShiftKubeApiserverNamespace boolean
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignoreOpenShiftMachineConfigOperatorNamespace boolean
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignoreOpenShiftMonitoringNamespace boolean
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignoreOpenShiftOvnKubernetesNamespace boolean
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignoreOpenShiftSdnNamespace boolean
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignore_docker_pause_container bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignore_kubernetes_pause_container bool
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignore_open_shift_build_pod_name bool
    Disable monitoring of intermediate containers created during image build.
    ignore_open_shift_etcd_namespace bool
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignore_open_shift_ingress_canary_namespace bool
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignore_open_shift_kube_apiserver_namespace bool
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignore_open_shift_machine_config_operator_namespace bool
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignore_open_shift_monitoring_namespace bool
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignore_open_shift_ovn_kubernetes_namespace bool
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignore_open_shift_sdn_namespace bool
    Disable monitoring of platform internal containers in the openshift-sdn namespace.
    ignoreDockerPauseContainer Boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreKubernetesPauseContainer Boolean
    Disable monitoring of platform internal pause containers in Kubernetes and OpenShift.
    ignoreOpenShiftBuildPodName Boolean
    Disable monitoring of intermediate containers created during image build.
    ignoreOpenShiftEtcdNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-etcd namespace.
    ignoreOpenShiftIngressCanaryNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-ingress-canary namespace.
    ignoreOpenShiftKubeApiserverNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-kube-apiserver namespace.
    ignoreOpenShiftMachineConfigOperatorNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-machine-config-operator namespace.
    ignoreOpenShiftMonitoringNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-monitoring namespace.
    ignoreOpenShiftOvnKubernetesNamespace Boolean
    Disable monitoring of platform internal containers in the openshift-ovn-kubernetes namespace.
    ignoreOpenShiftSdnNamespace Boolean
    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 dynatrace Terraform Provider.
    dynatrace logo
    Viewing docs for Dynatrace v0.36.0
    published on Tuesday, Jun 9, 2026 by Pulumiverse

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial