dynatrace.AttackAllowlist
Explore with Pulumi AI
Create AttackAllowlist Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AttackAllowlist(name: string, args: AttackAllowlistArgs, opts?: CustomResourceOptions);
@overload
def AttackAllowlist(resource_name: str,
args: AttackAllowlistArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AttackAllowlist(resource_name: str,
opts: Optional[ResourceOptions] = None,
attack_handling: Optional[AttackAllowlistAttackHandlingArgs] = None,
enabled: Optional[bool] = None,
metadata: Optional[AttackAllowlistMetadataArgs] = None,
rules: Optional[AttackAllowlistRulesArgs] = None,
criteria: Optional[AttackAllowlistCriteriaArgs] = None,
insert_after: Optional[str] = None,
resource_attribute_conditions: Optional[AttackAllowlistResourceAttributeConditionsArgs] = None,
rule_name: Optional[str] = None)
func NewAttackAllowlist(ctx *Context, name string, args AttackAllowlistArgs, opts ...ResourceOption) (*AttackAllowlist, error)
public AttackAllowlist(string name, AttackAllowlistArgs args, CustomResourceOptions? opts = null)
public AttackAllowlist(String name, AttackAllowlistArgs args)
public AttackAllowlist(String name, AttackAllowlistArgs args, CustomResourceOptions options)
type: dynatrace:AttackAllowlist
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 AttackAllowlistArgs
- 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 AttackAllowlistArgs
- 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 AttackAllowlistArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AttackAllowlistArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AttackAllowlistArgs
- 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 attackAllowlistResource = new Dynatrace.AttackAllowlist("attackAllowlistResource", new()
{
AttackHandling = new Dynatrace.Inputs.AttackAllowlistAttackHandlingArgs
{
BlockingStrategy = "string",
},
Enabled = false,
Metadata = new Dynatrace.Inputs.AttackAllowlistMetadataArgs
{
Comment = "string",
},
Rules = new Dynatrace.Inputs.AttackAllowlistRulesArgs
{
Rules = new[]
{
new Dynatrace.Inputs.AttackAllowlistRulesRuleArgs
{
CriteriaKey = "string",
CriteriaMatcher = "string",
CriteriaValueDetectionType = "string",
CriteriaValueFreeText = "string",
},
},
},
InsertAfter = "string",
ResourceAttributeConditions = new Dynatrace.Inputs.AttackAllowlistResourceAttributeConditionsArgs
{
ResourceAttributeConditions = new[]
{
new Dynatrace.Inputs.AttackAllowlistResourceAttributeConditionsResourceAttributeConditionArgs
{
Matcher = "string",
ResourceAttributeKey = "string",
ResourceAttributeValue = "string",
},
},
},
RuleName = "string",
});
example, err := dynatrace.NewAttackAllowlist(ctx, "attackAllowlistResource", &dynatrace.AttackAllowlistArgs{
AttackHandling: &dynatrace.AttackAllowlistAttackHandlingArgs{
BlockingStrategy: pulumi.String("string"),
},
Enabled: pulumi.Bool(false),
Metadata: &dynatrace.AttackAllowlistMetadataArgs{
Comment: pulumi.String("string"),
},
Rules: &dynatrace.AttackAllowlistRulesArgs{
Rules: dynatrace.AttackAllowlistRulesRuleArray{
&dynatrace.AttackAllowlistRulesRuleArgs{
CriteriaKey: pulumi.String("string"),
CriteriaMatcher: pulumi.String("string"),
CriteriaValueDetectionType: pulumi.String("string"),
CriteriaValueFreeText: pulumi.String("string"),
},
},
},
InsertAfter: pulumi.String("string"),
ResourceAttributeConditions: &dynatrace.AttackAllowlistResourceAttributeConditionsArgs{
ResourceAttributeConditions: dynatrace.AttackAllowlistResourceAttributeConditionsResourceAttributeConditionArray{
&dynatrace.AttackAllowlistResourceAttributeConditionsResourceAttributeConditionArgs{
Matcher: pulumi.String("string"),
ResourceAttributeKey: pulumi.String("string"),
ResourceAttributeValue: pulumi.String("string"),
},
},
},
RuleName: pulumi.String("string"),
})
var attackAllowlistResource = new AttackAllowlist("attackAllowlistResource", AttackAllowlistArgs.builder()
.attackHandling(AttackAllowlistAttackHandlingArgs.builder()
.blockingStrategy("string")
.build())
.enabled(false)
.metadata(AttackAllowlistMetadataArgs.builder()
.comment("string")
.build())
.rules(AttackAllowlistRulesArgs.builder()
.rules(AttackAllowlistRulesRuleArgs.builder()
.criteriaKey("string")
.criteriaMatcher("string")
.criteriaValueDetectionType("string")
.criteriaValueFreeText("string")
.build())
.build())
.insertAfter("string")
.resourceAttributeConditions(AttackAllowlistResourceAttributeConditionsArgs.builder()
.resourceAttributeConditions(AttackAllowlistResourceAttributeConditionsResourceAttributeConditionArgs.builder()
.matcher("string")
.resourceAttributeKey("string")
.resourceAttributeValue("string")
.build())
.build())
.ruleName("string")
.build());
attack_allowlist_resource = dynatrace.AttackAllowlist("attackAllowlistResource",
attack_handling={
"blocking_strategy": "string",
},
enabled=False,
metadata={
"comment": "string",
},
rules={
"rules": [{
"criteria_key": "string",
"criteria_matcher": "string",
"criteria_value_detection_type": "string",
"criteria_value_free_text": "string",
}],
},
insert_after="string",
resource_attribute_conditions={
"resource_attribute_conditions": [{
"matcher": "string",
"resource_attribute_key": "string",
"resource_attribute_value": "string",
}],
},
rule_name="string")
const attackAllowlistResource = new dynatrace.AttackAllowlist("attackAllowlistResource", {
attackHandling: {
blockingStrategy: "string",
},
enabled: false,
metadata: {
comment: "string",
},
rules: {
rules: [{
criteriaKey: "string",
criteriaMatcher: "string",
criteriaValueDetectionType: "string",
criteriaValueFreeText: "string",
}],
},
insertAfter: "string",
resourceAttributeConditions: {
resourceAttributeConditions: [{
matcher: "string",
resourceAttributeKey: "string",
resourceAttributeValue: "string",
}],
},
ruleName: "string",
});
type: dynatrace:AttackAllowlist
properties:
attackHandling:
blockingStrategy: string
enabled: false
insertAfter: string
metadata:
comment: string
resourceAttributeConditions:
resourceAttributeConditions:
- matcher: string
resourceAttributeKey: string
resourceAttributeValue: string
ruleName: string
rules:
rules:
- criteriaKey: string
criteriaMatcher: string
criteriaValueDetectionType: string
criteriaValueFreeText: string
AttackAllowlist 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 AttackAllowlist resource accepts the following input properties:
- Attack
Handling Pulumiverse.Dynatrace. Inputs. Attack Allowlist Attack Handling - Step 1: Define attack control for chosen criteria
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Metadata
Pulumiverse.
Dynatrace. Inputs. Attack Allowlist Metadata - Step 4: Leave comment (optional)
- Rules
Pulumiverse.
Dynatrace. Inputs. Attack Allowlist Rules - Provide conditions that must be met by the detection finding you want to allowlist.
- Criteria
Pulumiverse.
Dynatrace. Inputs. Attack Allowlist Criteria - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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. Attack Allowlist Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- Rule
Name string - Rule name
- Attack
Handling AttackAllowlist Attack Handling Args - Step 1: Define attack control for chosen criteria
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Metadata
Attack
Allowlist Metadata Args - Step 4: Leave comment (optional)
- Rules
Attack
Allowlist Rules Args - Provide conditions that must be met by the detection finding you want to allowlist.
- Criteria
Attack
Allowlist Criteria Args - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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 AttackConditions Allowlist Resource Attribute Conditions Args - When you add multiple conditions, the rule applies if all conditions apply.
- Rule
Name string - Rule name
- attack
Handling AttackAllowlist Attack Handling - Step 1: Define attack control for chosen criteria
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - metadata
Attack
Allowlist Metadata - Step 4: Leave comment (optional)
- rules
Attack
Allowlist Rules - Provide conditions that must be met by the detection finding you want to allowlist.
- criteria
Attack
Allowlist Criteria - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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 AttackConditions Allowlist Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name String - Rule name
- attack
Handling AttackAllowlist Attack Handling - Step 1: Define attack control for chosen criteria
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - metadata
Attack
Allowlist Metadata - Step 4: Leave comment (optional)
- rules
Attack
Allowlist Rules - Provide conditions that must be met by the detection finding you want to allowlist.
- criteria
Attack
Allowlist Criteria - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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 AttackConditions Allowlist Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name string - Rule name
- attack_
handling AttackAllowlist Attack Handling Args - Step 1: Define attack control for chosen criteria
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - metadata
Attack
Allowlist Metadata Args - Step 4: Leave comment (optional)
- rules
Attack
Allowlist Rules Args - Provide conditions that must be met by the detection finding you want to allowlist.
- criteria
Attack
Allowlist Criteria Args - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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_ Attackconditions Allowlist Resource Attribute Conditions Args - When you add multiple conditions, the rule applies if all conditions apply.
- rule_
name str - Rule name
- attack
Handling Property Map - Step 1: Define attack control for chosen criteria
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - metadata Property Map
- Step 4: Leave comment (optional)
- rules Property Map
- Provide conditions that must be met by the detection finding you want to allowlist.
- criteria Property Map
- Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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 AttackAllowlist 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 AttackAllowlist Resource
Get an existing AttackAllowlist 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?: AttackAllowlistState, opts?: CustomResourceOptions): AttackAllowlist
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attack_handling: Optional[AttackAllowlistAttackHandlingArgs] = None,
criteria: Optional[AttackAllowlistCriteriaArgs] = None,
enabled: Optional[bool] = None,
insert_after: Optional[str] = None,
metadata: Optional[AttackAllowlistMetadataArgs] = None,
resource_attribute_conditions: Optional[AttackAllowlistResourceAttributeConditionsArgs] = None,
rule_name: Optional[str] = None,
rules: Optional[AttackAllowlistRulesArgs] = None) -> AttackAllowlist
func GetAttackAllowlist(ctx *Context, name string, id IDInput, state *AttackAllowlistState, opts ...ResourceOption) (*AttackAllowlist, error)
public static AttackAllowlist Get(string name, Input<string> id, AttackAllowlistState? state, CustomResourceOptions? opts = null)
public static AttackAllowlist get(String name, Output<String> id, AttackAllowlistState state, CustomResourceOptions options)
resources: _: type: dynatrace:AttackAllowlist 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.
- Attack
Handling Pulumiverse.Dynatrace. Inputs. Attack Allowlist Attack Handling - Step 1: Define attack control for chosen criteria
- Criteria
Pulumiverse.
Dynatrace. Inputs. Attack Allowlist Criteria - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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. Attack Allowlist Metadata - Step 4: Leave comment (optional)
- Resource
Attribute Pulumiverse.Conditions Dynatrace. Inputs. Attack Allowlist Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- Rule
Name string - Rule name
- Rules
Pulumiverse.
Dynatrace. Inputs. Attack Allowlist Rules - Provide conditions that must be met by the detection finding you want to allowlist.
- Attack
Handling AttackAllowlist Attack Handling Args - Step 1: Define attack control for chosen criteria
- Criteria
Attack
Allowlist Criteria Args - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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
Attack
Allowlist Metadata Args - Step 4: Leave comment (optional)
- Resource
Attribute AttackConditions Allowlist Resource Attribute Conditions Args - When you add multiple conditions, the rule applies if all conditions apply.
- Rule
Name string - Rule name
- Rules
Attack
Allowlist Rules Args - Provide conditions that must be met by the detection finding you want to allowlist.
- attack
Handling AttackAllowlist Attack Handling - Step 1: Define attack control for chosen criteria
- criteria
Attack
Allowlist Criteria - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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
Attack
Allowlist Metadata - Step 4: Leave comment (optional)
- resource
Attribute AttackConditions Allowlist Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name String - Rule name
- rules
Attack
Allowlist Rules - Provide conditions that must be met by the detection finding you want to allowlist.
- attack
Handling AttackAllowlist Attack Handling - Step 1: Define attack control for chosen criteria
- criteria
Attack
Allowlist Criteria - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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
Attack
Allowlist Metadata - Step 4: Leave comment (optional)
- resource
Attribute AttackConditions Allowlist Resource Attribute Conditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name string - Rule name
- rules
Attack
Allowlist Rules - Provide conditions that must be met by the detection finding you want to allowlist.
- attack_
handling AttackAllowlist Attack Handling Args - Step 1: Define attack control for chosen criteria
- criteria
Attack
Allowlist Criteria Args - Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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
Attack
Allowlist Metadata Args - Step 4: Leave comment (optional)
- resource_
attribute_ Attackconditions Allowlist Resource Attribute Conditions Args - When you add multiple conditions, the rule applies if all conditions apply.
- rule_
name str - Rule name
- rules
Attack
Allowlist Rules Args - Provide conditions that must be met by the detection finding you want to allowlist.
- attack
Handling Property Map - Step 1: Define attack control for chosen criteria
- criteria Property Map
- Step 1: Define criteria. Please specify at least one of source IP or attack pattern.
- 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 4: Leave comment (optional)
- resource
Attribute Property MapConditions - When you add multiple conditions, the rule applies if all conditions apply.
- rule
Name String - Rule name
- rules Property Map
- Provide conditions that must be met by the detection finding you want to allowlist.
Supporting Types
AttackAllowlistAttackHandling, AttackAllowlistAttackHandlingArgs
- Blocking
Strategy string - Possible Values:
MONITOR
,OFF
- Blocking
Strategy string - Possible Values:
MONITOR
,OFF
- blocking
Strategy String - Possible Values:
MONITOR
,OFF
- blocking
Strategy string - Possible Values:
MONITOR
,OFF
- blocking_
strategy str - Possible Values:
MONITOR
,OFF
- blocking
Strategy String - Possible Values:
MONITOR
,OFF
AttackAllowlistCriteria, AttackAllowlistCriteriaArgs
- Attack
Pattern string - Only consider attacks matching the specified pattern.
- Source
Ip string - Source IP
- Attack
Pattern string - Only consider attacks matching the specified pattern.
- Source
Ip string - Source IP
- attack
Pattern String - Only consider attacks matching the specified pattern.
- source
Ip String - Source IP
- attack
Pattern string - Only consider attacks matching the specified pattern.
- source
Ip string - Source IP
- attack_
pattern str - Only consider attacks matching the specified pattern.
- source_
ip str - Source IP
- attack
Pattern String - Only consider attacks matching the specified pattern.
- source
Ip String - Source IP
AttackAllowlistMetadata, AttackAllowlistMetadataArgs
- 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
AttackAllowlistResourceAttributeConditions, AttackAllowlistResourceAttributeConditionsArgs
AttackAllowlistResourceAttributeConditionsResourceAttributeCondition, AttackAllowlistResourceAttributeConditionsResourceAttributeConditionArgs
- 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
AttackAllowlistRules, AttackAllowlistRulesArgs
AttackAllowlistRulesRule, AttackAllowlistRulesRuleArgs
- Criteria
Key string - Possible Values:
ACTOR_IP
,DETECTION_TYPE
,ENTRY_POINT_PAYLOAD
,ENTRY_POINT_PAYLOAD_DOMAIN
,ENTRY_POINT_PAYLOAD_PORT
,ENTRY_POINT_URL_PATH
- Criteria
Matcher string - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_STARTS_WITH
,ENDS_WITH
,EQUALS
,IP_CIDR
,NOT_EQUALS
,NOT_IN_IP_CIDR
,STARTS_WITH
- Criteria
Value stringDetection Type - Possible Values:
CMD_INJECTION
,JNDI_INJECTION
,SQL_INJECTION
,SSRF
- Criteria
Value stringFree Text - Value
- Criteria
Key string - Possible Values:
ACTOR_IP
,DETECTION_TYPE
,ENTRY_POINT_PAYLOAD
,ENTRY_POINT_PAYLOAD_DOMAIN
,ENTRY_POINT_PAYLOAD_PORT
,ENTRY_POINT_URL_PATH
- Criteria
Matcher string - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_STARTS_WITH
,ENDS_WITH
,EQUALS
,IP_CIDR
,NOT_EQUALS
,NOT_IN_IP_CIDR
,STARTS_WITH
- Criteria
Value stringDetection Type - Possible Values:
CMD_INJECTION
,JNDI_INJECTION
,SQL_INJECTION
,SSRF
- Criteria
Value stringFree Text - Value
- criteria
Key String - Possible Values:
ACTOR_IP
,DETECTION_TYPE
,ENTRY_POINT_PAYLOAD
,ENTRY_POINT_PAYLOAD_DOMAIN
,ENTRY_POINT_PAYLOAD_PORT
,ENTRY_POINT_URL_PATH
- criteria
Matcher String - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_STARTS_WITH
,ENDS_WITH
,EQUALS
,IP_CIDR
,NOT_EQUALS
,NOT_IN_IP_CIDR
,STARTS_WITH
- criteria
Value StringDetection Type - Possible Values:
CMD_INJECTION
,JNDI_INJECTION
,SQL_INJECTION
,SSRF
- criteria
Value StringFree Text - Value
- criteria
Key string - Possible Values:
ACTOR_IP
,DETECTION_TYPE
,ENTRY_POINT_PAYLOAD
,ENTRY_POINT_PAYLOAD_DOMAIN
,ENTRY_POINT_PAYLOAD_PORT
,ENTRY_POINT_URL_PATH
- criteria
Matcher string - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_STARTS_WITH
,ENDS_WITH
,EQUALS
,IP_CIDR
,NOT_EQUALS
,NOT_IN_IP_CIDR
,STARTS_WITH
- criteria
Value stringDetection Type - Possible Values:
CMD_INJECTION
,JNDI_INJECTION
,SQL_INJECTION
,SSRF
- criteria
Value stringFree Text - Value
- criteria_
key str - Possible Values:
ACTOR_IP
,DETECTION_TYPE
,ENTRY_POINT_PAYLOAD
,ENTRY_POINT_PAYLOAD_DOMAIN
,ENTRY_POINT_PAYLOAD_PORT
,ENTRY_POINT_URL_PATH
- criteria_
matcher str - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_STARTS_WITH
,ENDS_WITH
,EQUALS
,IP_CIDR
,NOT_EQUALS
,NOT_IN_IP_CIDR
,STARTS_WITH
- criteria_
value_ strdetection_ type - Possible Values:
CMD_INJECTION
,JNDI_INJECTION
,SQL_INJECTION
,SSRF
- criteria_
value_ strfree_ text - Value
- criteria
Key String - Possible Values:
ACTOR_IP
,DETECTION_TYPE
,ENTRY_POINT_PAYLOAD
,ENTRY_POINT_PAYLOAD_DOMAIN
,ENTRY_POINT_PAYLOAD_PORT
,ENTRY_POINT_URL_PATH
- criteria
Matcher String - Possible Values:
CONTAINS
,DOES_NOT_CONTAIN
,DOES_NOT_END_WITH
,DOES_NOT_STARTS_WITH
,ENDS_WITH
,EQUALS
,IP_CIDR
,NOT_EQUALS
,NOT_IN_IP_CIDR
,STARTS_WITH
- criteria
Value StringDetection Type - Possible Values:
CMD_INJECTION
,JNDI_INJECTION
,SQL_INJECTION
,SSRF
- criteria
Value StringFree Text - Value
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.