dynatrace.VulnerabilityThirdPartyAttr
Explore with Pulumi AI
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. Vulnerability Third Party Attr Metadata - Step 3: Leave comment (optional)
- Vulnerability
Detection Pulumiverse.Control Dynatrace. Inputs. Vulnerability Third Party Attr Vulnerability Detection Control - Step 1: Select third-party vulnerability detection behavior
- Insert
After 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
- Resource
Attribute Pulumiverse.Conditions Dynatrace. Inputs. Vulnerability Third Party Attr Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- Rule
Name string - Rule name
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Metadata
Vulnerability
Third Party Attr Metadata Args - Step 3: Leave comment (optional)
- Vulnerability
Detection VulnerabilityControl Third Party Attr Vulnerability Detection Control Args - Step 1: Select third-party vulnerability detection behavior
- Insert
After 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
- Resource
Attribute VulnerabilityConditions Third Party Attr Resource Attribute Conditions Args - When you add multiple conditions, the rule applies if all conditions apply.
- Rule
Name string - Rule name
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - metadata
Vulnerability
Third Party Attr Metadata - Step 3: Leave comment (optional)
- vulnerability
Detection VulnerabilityControl Third Party Attr Vulnerability Detection Control - Step 1: Select third-party vulnerability detection behavior
- insert
After 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
- resource
Attribute VulnerabilityConditions Third Party Attr Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name String - Rule name
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - metadata
Vulnerability
Third Party Attr Metadata - Step 3: Leave comment (optional)
- vulnerability
Detection VulnerabilityControl Third Party Attr Vulnerability Detection Control - Step 1: Select third-party vulnerability detection behavior
- insert
After 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
- resource
Attribute VulnerabilityConditions Third Party Attr Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name string - Rule name
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - metadata
Vulnerability
Third Party Attr Metadata Args - Step 3: Leave comment (optional)
- vulnerability_
detection_ Vulnerabilitycontrol Third Party Attr Vulnerability Detection Control Args - 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_ Vulnerabilityconditions Third Party Attr Resource Attribute Conditions Args - 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)
- vulnerability
Detection Property MapControl - Step 1: Select third-party vulnerability detection behavior
- insert
After 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
- resource
Attribute Property MapConditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name 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.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Insert
After 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. Vulnerability Third Party Attr Metadata - Step 3: Leave comment (optional)
- Resource
Attribute Pulumiverse.Conditions Dynatrace. Inputs. Vulnerability Third Party Attr Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- Rule
Name string - Rule name
- Vulnerability
Detection Pulumiverse.Control Dynatrace. Inputs. Vulnerability Third Party Attr Vulnerability Detection Control - Step 1: Select third-party vulnerability detection behavior
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Insert
After 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
Vulnerability
Third Party Attr Metadata Args - Step 3: Leave comment (optional)
- Resource
Attribute VulnerabilityConditions Third Party Attr Resource Attribute Conditions Args - When you add multiple conditions, the rule applies if all conditions apply.
- Rule
Name string - Rule name
- Vulnerability
Detection VulnerabilityControl Third Party Attr Vulnerability Detection Control Args - Step 1: Select third-party vulnerability detection behavior
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - insert
After 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
Vulnerability
Third Party Attr Metadata - Step 3: Leave comment (optional)
- resource
Attribute VulnerabilityConditions Third Party Attr Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name String - Rule name
- vulnerability
Detection VulnerabilityControl Third Party Attr Vulnerability Detection Control - Step 1: Select third-party vulnerability detection behavior
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - insert
After 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
Vulnerability
Third Party Attr Metadata - Step 3: Leave comment (optional)
- resource
Attribute VulnerabilityConditions Third Party Attr Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name string - Rule name
- vulnerability
Detection VulnerabilityControl Third Party Attr Vulnerability Detection Control - 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
Vulnerability
Third Party Attr Metadata Args - Step 3: Leave comment (optional)
- resource_
attribute_ Vulnerabilityconditions Third Party Attr Resource Attribute Conditions Args - When you add multiple conditions, the rule applies if all conditions apply.
- rule_
name str - Rule name
- vulnerability_
detection_ Vulnerabilitycontrol Third Party Attr Vulnerability Detection Control Args - Step 1: Select third-party vulnerability detection behavior
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - insert
After 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)
- resource
Attribute Property MapConditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name String - Rule name
- vulnerability
Detection Property MapControl - 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
- Resource
Attribute stringKey - Resource attribute key
- Resource
Attribute stringValue - 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
- Resource
Attribute stringKey - Resource attribute key
- Resource
Attribute stringValue - 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
- resource
Attribute StringKey - Resource attribute key
- resource
Attribute StringValue - 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
- resource
Attribute stringKey - Resource attribute key
- resource
Attribute stringValue - 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_ strkey - Resource attribute key
- resource_
attribute_ strvalue - 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
- resource
Attribute StringKey - Resource attribute key
- resource
Attribute StringValue - Resource attribute value
VulnerabilityThirdPartyAttrVulnerabilityDetectionControl, VulnerabilityThirdPartyAttrVulnerabilityDetectionControlArgs
- Monitoring
Mode string - Possible Values:
MONITORING_OFF
,MONITORING_ON
- Monitoring
Mode string - Possible Values:
MONITORING_OFF
,MONITORING_ON
- monitoring
Mode String - Possible Values:
MONITORING_OFF
,MONITORING_ON
- monitoring
Mode string - Possible Values:
MONITORING_OFF
,MONITORING_ON
- monitoring_
mode str - Possible Values:
MONITORING_OFF
,MONITORING_ON
- monitoring
Mode 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.