1. Packages
  2. Dynatrace
  3. API Docs
  4. VulnerabilityThirdPartyAttr
Dynatrace v0.30.0 published on Friday, Jul 4, 2025 by Pulumiverse

dynatrace.VulnerabilityThirdPartyAttr

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.30.0 published on Friday, Jul 4, 2025 by Pulumiverse

    This resource requires the API token scopes Read security problems (securityProblems.read) and Write security problems (securityProblems.write)

    This resource is excluded by default in the export utility, please explicitly specify the resource to retrieve existing configuration.

    Dynatrace Documentation

    • Runtime Vulnerability Analytics - https://www.dynatrace.com/support/help/platform-modules/application-security/vulnerability-analytics

    • Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: builtin:appsec.third-party-vulnerability-rule-settings)

    Resource Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as dynatrace from "@pulumiverse/dynatrace";
    
    const _name_ = new dynatrace.VulnerabilityThirdPartyAttr("#name#", {
        enabled: false,
        metadata: {
            comment: "Leave a comment here",
        },
        resourceAttributeConditions: {
            resourceAttributeConditions: [
                {
                    matcher: "EQUALS",
                    resourceAttributeKey: "process.executable.path",
                    resourceAttributeValue: "/",
                },
                {
                    matcher: "CONTAINS",
                    resourceAttributeKey: "process.executable.name",
                    resourceAttributeValue: "terraform",
                },
            ],
        },
        ruleName: "#name#",
        vulnerabilityDetectionControl: {
            monitoringMode: "MONITORING_ON",
        },
    });
    
    import pulumi
    import pulumiverse_dynatrace as dynatrace
    
    _name_ = dynatrace.VulnerabilityThirdPartyAttr("#name#",
        enabled=False,
        metadata={
            "comment": "Leave a comment here",
        },
        resource_attribute_conditions={
            "resource_attribute_conditions": [
                {
                    "matcher": "EQUALS",
                    "resource_attribute_key": "process.executable.path",
                    "resource_attribute_value": "/",
                },
                {
                    "matcher": "CONTAINS",
                    "resource_attribute_key": "process.executable.name",
                    "resource_attribute_value": "terraform",
                },
            ],
        },
        rule_name="#name#",
        vulnerability_detection_control={
            "monitoring_mode": "MONITORING_ON",
        })
    
    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.NewVulnerabilityThirdPartyAttr(ctx, "#name#", &dynatrace.VulnerabilityThirdPartyAttrArgs{
    			Enabled: pulumi.Bool(false),
    			Metadata: &dynatrace.VulnerabilityThirdPartyAttrMetadataArgs{
    				Comment: pulumi.String("Leave a comment here"),
    			},
    			ResourceAttributeConditions: &dynatrace.VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs{
    				ResourceAttributeConditions: dynatrace.VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArray{
    					&dynatrace.VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs{
    						Matcher:                pulumi.String("EQUALS"),
    						ResourceAttributeKey:   pulumi.String("process.executable.path"),
    						ResourceAttributeValue: pulumi.String("/"),
    					},
    					&dynatrace.VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs{
    						Matcher:                pulumi.String("CONTAINS"),
    						ResourceAttributeKey:   pulumi.String("process.executable.name"),
    						ResourceAttributeValue: pulumi.String("terraform"),
    					},
    				},
    			},
    			RuleName: pulumi.String("#name#"),
    			VulnerabilityDetectionControl: &dynatrace.VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs{
    				MonitoringMode: pulumi.String("MONITORING_ON"),
    			},
    		})
    		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 _name_ = new Dynatrace.VulnerabilityThirdPartyAttr("#name#", new()
        {
            Enabled = false,
            Metadata = new Dynatrace.Inputs.VulnerabilityThirdPartyAttrMetadataArgs
            {
                Comment = "Leave a comment here",
            },
            ResourceAttributeConditions = new Dynatrace.Inputs.VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs
            {
                ResourceAttributeConditions = new[]
                {
                    new Dynatrace.Inputs.VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs
                    {
                        Matcher = "EQUALS",
                        ResourceAttributeKey = "process.executable.path",
                        ResourceAttributeValue = "/",
                    },
                    new Dynatrace.Inputs.VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs
                    {
                        Matcher = "CONTAINS",
                        ResourceAttributeKey = "process.executable.name",
                        ResourceAttributeValue = "terraform",
                    },
                },
            },
            RuleName = "#name#",
            VulnerabilityDetectionControl = new Dynatrace.Inputs.VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs
            {
                MonitoringMode = "MONITORING_ON",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.dynatrace.VulnerabilityThirdPartyAttr;
    import com.pulumi.dynatrace.VulnerabilityThirdPartyAttrArgs;
    import com.pulumi.dynatrace.inputs.VulnerabilityThirdPartyAttrMetadataArgs;
    import com.pulumi.dynatrace.inputs.VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs;
    import com.pulumi.dynatrace.inputs.VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 _name_ = new VulnerabilityThirdPartyAttr("#name#", VulnerabilityThirdPartyAttrArgs.builder()
                .enabled(false)
                .metadata(VulnerabilityThirdPartyAttrMetadataArgs.builder()
                    .comment("Leave a comment here")
                    .build())
                .resourceAttributeConditions(VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs.builder()
                    .resourceAttributeConditions(                
                        VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs.builder()
                            .matcher("EQUALS")
                            .resourceAttributeKey("process.executable.path")
                            .resourceAttributeValue("/")
                            .build(),
                        VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs.builder()
                            .matcher("CONTAINS")
                            .resourceAttributeKey("process.executable.name")
                            .resourceAttributeValue("terraform")
                            .build())
                    .build())
                .ruleName("#name#")
                .vulnerabilityDetectionControl(VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs.builder()
                    .monitoringMode("MONITORING_ON")
                    .build())
                .build());
    
        }
    }
    
    resources:
      '#name#':
        type: dynatrace:VulnerabilityThirdPartyAttr
        properties:
          enabled: false
          metadata:
            comment: Leave a comment here
          resourceAttributeConditions:
            resourceAttributeConditions:
              - matcher: EQUALS
                resourceAttributeKey: process.executable.path
                resourceAttributeValue: /
              - matcher: CONTAINS
                resourceAttributeKey: process.executable.name
                resourceAttributeValue: terraform
          ruleName: '#name#'
          vulnerabilityDetectionControl:
            monitoringMode: MONITORING_ON
    

    Create VulnerabilityThirdPartyAttr Resource

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

    Constructor syntax

    new VulnerabilityThirdPartyAttr(name: string, args: VulnerabilityThirdPartyAttrArgs, opts?: CustomResourceOptions);
    @overload
    def VulnerabilityThirdPartyAttr(resource_name: str,
                                    args: VulnerabilityThirdPartyAttrArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def VulnerabilityThirdPartyAttr(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    enabled: Optional[bool] = None,
                                    metadata: Optional[VulnerabilityThirdPartyAttrMetadataArgs] = None,
                                    vulnerability_detection_control: Optional[VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs] = None,
                                    insert_after: Optional[str] = None,
                                    resource_attribute_conditions: Optional[VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs] = None,
                                    rule_name: Optional[str] = None)
    func NewVulnerabilityThirdPartyAttr(ctx *Context, name string, args VulnerabilityThirdPartyAttrArgs, opts ...ResourceOption) (*VulnerabilityThirdPartyAttr, error)
    public VulnerabilityThirdPartyAttr(string name, VulnerabilityThirdPartyAttrArgs args, CustomResourceOptions? opts = null)
    public VulnerabilityThirdPartyAttr(String name, VulnerabilityThirdPartyAttrArgs args)
    public VulnerabilityThirdPartyAttr(String name, VulnerabilityThirdPartyAttrArgs args, CustomResourceOptions options)
    
    type: dynatrace:VulnerabilityThirdPartyAttr
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args VulnerabilityThirdPartyAttrArgs
    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 VulnerabilityThirdPartyAttrArgs
    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 VulnerabilityThirdPartyAttrArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VulnerabilityThirdPartyAttrArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VulnerabilityThirdPartyAttrArgs
    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 vulnerabilityThirdPartyAttrResource = new Dynatrace.VulnerabilityThirdPartyAttr("vulnerabilityThirdPartyAttrResource", new()
    {
        Enabled = false,
        Metadata = new Dynatrace.Inputs.VulnerabilityThirdPartyAttrMetadataArgs
        {
            Comment = "string",
        },
        VulnerabilityDetectionControl = new Dynatrace.Inputs.VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs
        {
            MonitoringMode = "string",
        },
        InsertAfter = "string",
        ResourceAttributeConditions = new Dynatrace.Inputs.VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs
        {
            ResourceAttributeConditions = new[]
            {
                new Dynatrace.Inputs.VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs
                {
                    Matcher = "string",
                    ResourceAttributeKey = "string",
                    ResourceAttributeValue = "string",
                },
            },
        },
        RuleName = "string",
    });
    
    example, err := dynatrace.NewVulnerabilityThirdPartyAttr(ctx, "vulnerabilityThirdPartyAttrResource", &dynatrace.VulnerabilityThirdPartyAttrArgs{
    	Enabled: pulumi.Bool(false),
    	Metadata: &dynatrace.VulnerabilityThirdPartyAttrMetadataArgs{
    		Comment: pulumi.String("string"),
    	},
    	VulnerabilityDetectionControl: &dynatrace.VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs{
    		MonitoringMode: pulumi.String("string"),
    	},
    	InsertAfter: pulumi.String("string"),
    	ResourceAttributeConditions: &dynatrace.VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs{
    		ResourceAttributeConditions: dynatrace.VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArray{
    			&dynatrace.VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs{
    				Matcher:                pulumi.String("string"),
    				ResourceAttributeKey:   pulumi.String("string"),
    				ResourceAttributeValue: pulumi.String("string"),
    			},
    		},
    	},
    	RuleName: pulumi.String("string"),
    })
    
    var vulnerabilityThirdPartyAttrResource = new VulnerabilityThirdPartyAttr("vulnerabilityThirdPartyAttrResource", VulnerabilityThirdPartyAttrArgs.builder()
        .enabled(false)
        .metadata(VulnerabilityThirdPartyAttrMetadataArgs.builder()
            .comment("string")
            .build())
        .vulnerabilityDetectionControl(VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs.builder()
            .monitoringMode("string")
            .build())
        .insertAfter("string")
        .resourceAttributeConditions(VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs.builder()
            .resourceAttributeConditions(VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs.builder()
                .matcher("string")
                .resourceAttributeKey("string")
                .resourceAttributeValue("string")
                .build())
            .build())
        .ruleName("string")
        .build());
    
    vulnerability_third_party_attr_resource = dynatrace.VulnerabilityThirdPartyAttr("vulnerabilityThirdPartyAttrResource",
        enabled=False,
        metadata={
            "comment": "string",
        },
        vulnerability_detection_control={
            "monitoring_mode": "string",
        },
        insert_after="string",
        resource_attribute_conditions={
            "resource_attribute_conditions": [{
                "matcher": "string",
                "resource_attribute_key": "string",
                "resource_attribute_value": "string",
            }],
        },
        rule_name="string")
    
    const vulnerabilityThirdPartyAttrResource = new dynatrace.VulnerabilityThirdPartyAttr("vulnerabilityThirdPartyAttrResource", {
        enabled: false,
        metadata: {
            comment: "string",
        },
        vulnerabilityDetectionControl: {
            monitoringMode: "string",
        },
        insertAfter: "string",
        resourceAttributeConditions: {
            resourceAttributeConditions: [{
                matcher: "string",
                resourceAttributeKey: "string",
                resourceAttributeValue: "string",
            }],
        },
        ruleName: "string",
    });
    
    type: dynatrace:VulnerabilityThirdPartyAttr
    properties:
        enabled: false
        insertAfter: string
        metadata:
            comment: string
        resourceAttributeConditions:
            resourceAttributeConditions:
                - matcher: string
                  resourceAttributeKey: string
                  resourceAttributeValue: string
        ruleName: string
        vulnerabilityDetectionControl:
            monitoringMode: string
    

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

    Enabled bool
    This setting is enabled (true) or disabled (false)
    Metadata Pulumiverse.Dynatrace.Inputs.VulnerabilityThirdPartyAttrMetadata
    Step 3: Leave comment (optional)
    VulnerabilityDetectionControl Pulumiverse.Dynatrace.Inputs.VulnerabilityThirdPartyAttrVulnerabilityDetectionControl
    Step 1: Select third-party vulnerability detection behavior
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    ResourceAttributeConditions Pulumiverse.Dynatrace.Inputs.VulnerabilityThirdPartyAttrResourceAttributeConditions
    When you add multiple conditions, the rule applies if all conditions apply.
    RuleName string
    Rule name
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Metadata VulnerabilityThirdPartyAttrMetadataArgs
    Step 3: Leave comment (optional)
    VulnerabilityDetectionControl VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs
    Step 1: Select third-party vulnerability detection behavior
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    ResourceAttributeConditions VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs
    When you add multiple conditions, the rule applies if all conditions apply.
    RuleName string
    Rule name
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    metadata VulnerabilityThirdPartyAttrMetadata
    Step 3: Leave comment (optional)
    vulnerabilityDetectionControl VulnerabilityThirdPartyAttrVulnerabilityDetectionControl
    Step 1: Select third-party vulnerability detection behavior
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    resourceAttributeConditions VulnerabilityThirdPartyAttrResourceAttributeConditions
    When you add multiple conditions, the rule applies if all conditions apply.
    ruleName String
    Rule name
    enabled boolean
    This setting is enabled (true) or disabled (false)
    metadata VulnerabilityThirdPartyAttrMetadata
    Step 3: Leave comment (optional)
    vulnerabilityDetectionControl VulnerabilityThirdPartyAttrVulnerabilityDetectionControl
    Step 1: Select third-party vulnerability detection behavior
    insertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    resourceAttributeConditions VulnerabilityThirdPartyAttrResourceAttributeConditions
    When you add multiple conditions, the rule applies if all conditions apply.
    ruleName string
    Rule name
    enabled bool
    This setting is enabled (true) or disabled (false)
    metadata VulnerabilityThirdPartyAttrMetadataArgs
    Step 3: Leave comment (optional)
    vulnerability_detection_control VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs
    Step 1: Select third-party vulnerability detection behavior
    insert_after str
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    resource_attribute_conditions VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs
    When you add multiple conditions, the rule applies if all conditions apply.
    rule_name str
    Rule name
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    metadata Property Map
    Step 3: Leave comment (optional)
    vulnerabilityDetectionControl Property Map
    Step 1: Select third-party vulnerability detection behavior
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    resourceAttributeConditions Property Map
    When you add multiple conditions, the rule applies if all conditions apply.
    ruleName String
    Rule name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VulnerabilityThirdPartyAttr resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing VulnerabilityThirdPartyAttr Resource

    Get an existing VulnerabilityThirdPartyAttr 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?: VulnerabilityThirdPartyAttrState, opts?: CustomResourceOptions): VulnerabilityThirdPartyAttr
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            insert_after: Optional[str] = None,
            metadata: Optional[VulnerabilityThirdPartyAttrMetadataArgs] = None,
            resource_attribute_conditions: Optional[VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs] = None,
            rule_name: Optional[str] = None,
            vulnerability_detection_control: Optional[VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs] = None) -> VulnerabilityThirdPartyAttr
    func GetVulnerabilityThirdPartyAttr(ctx *Context, name string, id IDInput, state *VulnerabilityThirdPartyAttrState, opts ...ResourceOption) (*VulnerabilityThirdPartyAttr, error)
    public static VulnerabilityThirdPartyAttr Get(string name, Input<string> id, VulnerabilityThirdPartyAttrState? state, CustomResourceOptions? opts = null)
    public static VulnerabilityThirdPartyAttr get(String name, Output<String> id, VulnerabilityThirdPartyAttrState state, CustomResourceOptions options)
    resources:  _:    type: dynatrace:VulnerabilityThirdPartyAttr    get:      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:
    Enabled bool
    This setting is enabled (true) or disabled (false)
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    Metadata Pulumiverse.Dynatrace.Inputs.VulnerabilityThirdPartyAttrMetadata
    Step 3: Leave comment (optional)
    ResourceAttributeConditions Pulumiverse.Dynatrace.Inputs.VulnerabilityThirdPartyAttrResourceAttributeConditions
    When you add multiple conditions, the rule applies if all conditions apply.
    RuleName string
    Rule name
    VulnerabilityDetectionControl Pulumiverse.Dynatrace.Inputs.VulnerabilityThirdPartyAttrVulnerabilityDetectionControl
    Step 1: Select third-party vulnerability detection behavior
    Enabled bool
    This setting is enabled (true) or disabled (false)
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    Metadata VulnerabilityThirdPartyAttrMetadataArgs
    Step 3: Leave comment (optional)
    ResourceAttributeConditions VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs
    When you add multiple conditions, the rule applies if all conditions apply.
    RuleName string
    Rule name
    VulnerabilityDetectionControl VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs
    Step 1: Select third-party vulnerability detection behavior
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    metadata VulnerabilityThirdPartyAttrMetadata
    Step 3: Leave comment (optional)
    resourceAttributeConditions VulnerabilityThirdPartyAttrResourceAttributeConditions
    When you add multiple conditions, the rule applies if all conditions apply.
    ruleName String
    Rule name
    vulnerabilityDetectionControl VulnerabilityThirdPartyAttrVulnerabilityDetectionControl
    Step 1: Select third-party vulnerability detection behavior
    enabled boolean
    This setting is enabled (true) or disabled (false)
    insertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    metadata VulnerabilityThirdPartyAttrMetadata
    Step 3: Leave comment (optional)
    resourceAttributeConditions VulnerabilityThirdPartyAttrResourceAttributeConditions
    When you add multiple conditions, the rule applies if all conditions apply.
    ruleName string
    Rule name
    vulnerabilityDetectionControl VulnerabilityThirdPartyAttrVulnerabilityDetectionControl
    Step 1: Select third-party vulnerability detection behavior
    enabled bool
    This setting is enabled (true) or disabled (false)
    insert_after str
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    metadata VulnerabilityThirdPartyAttrMetadataArgs
    Step 3: Leave comment (optional)
    resource_attribute_conditions VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs
    When you add multiple conditions, the rule applies if all conditions apply.
    rule_name str
    Rule name
    vulnerability_detection_control VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs
    Step 1: Select third-party vulnerability detection behavior
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    metadata Property Map
    Step 3: Leave comment (optional)
    resourceAttributeConditions Property Map
    When you add multiple conditions, the rule applies if all conditions apply.
    ruleName String
    Rule name
    vulnerabilityDetectionControl Property Map
    Step 1: Select third-party vulnerability detection behavior

    Supporting Types

    VulnerabilityThirdPartyAttrMetadata, VulnerabilityThirdPartyAttrMetadataArgs

    Comment string
    no documentation available
    Comment string
    no documentation available
    comment String
    no documentation available
    comment string
    no documentation available
    comment str
    no documentation available
    comment String
    no documentation available

    VulnerabilityThirdPartyAttrResourceAttributeConditions, VulnerabilityThirdPartyAttrResourceAttributeConditionsArgs

    VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeCondition, VulnerabilityThirdPartyAttrResourceAttributeConditionsResourceAttributeConditionArgs

    Matcher string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EXIST, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, EXISTS, NOT_EQUALS, STARTS_WITH
    ResourceAttributeKey string
    Resource attribute key
    ResourceAttributeValue string
    Resource attribute value
    Matcher string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EXIST, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, EXISTS, NOT_EQUALS, STARTS_WITH
    ResourceAttributeKey string
    Resource attribute key
    ResourceAttributeValue string
    Resource attribute value
    matcher String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EXIST, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, EXISTS, NOT_EQUALS, STARTS_WITH
    resourceAttributeKey String
    Resource attribute key
    resourceAttributeValue String
    Resource attribute value
    matcher string
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EXIST, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, EXISTS, NOT_EQUALS, STARTS_WITH
    resourceAttributeKey string
    Resource attribute key
    resourceAttributeValue string
    Resource attribute value
    matcher str
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EXIST, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, EXISTS, NOT_EQUALS, STARTS_WITH
    resource_attribute_key str
    Resource attribute key
    resource_attribute_value str
    Resource attribute value
    matcher String
    Possible Values: CONTAINS, DOES_NOT_CONTAIN, DOES_NOT_END_WITH, DOES_NOT_EXIST, DOES_NOT_START_WITH, ENDS_WITH, EQUALS, EXISTS, NOT_EQUALS, STARTS_WITH
    resourceAttributeKey String
    Resource attribute key
    resourceAttributeValue String
    Resource attribute value

    VulnerabilityThirdPartyAttrVulnerabilityDetectionControl, VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs

    MonitoringMode string
    Possible Values: MONITORING_OFF, MONITORING_ON
    MonitoringMode string
    Possible Values: MONITORING_OFF, MONITORING_ON
    monitoringMode String
    Possible Values: MONITORING_OFF, MONITORING_ON
    monitoringMode string
    Possible Values: MONITORING_OFF, MONITORING_ON
    monitoring_mode str
    Possible Values: MONITORING_OFF, MONITORING_ON
    monitoringMode String
    Possible Values: MONITORING_OFF, MONITORING_ON

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.30.0 published on Friday, Jul 4, 2025 by Pulumiverse