Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change a category in enum for datadog_appsec_waf_custom_rule #2470

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-03 16:27:55.129965",
"spec_repo_commit": "4468962d"
"regenerated": "2025-04-04 12:49:27.974787",
"spec_repo_commit": "73e22797"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-03 16:27:55.144771",
"spec_repo_commit": "4468962d"
"regenerated": "2025-04-04 12:49:27.990030",
"spec_repo_commit": "73e22797"
}
}
}
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2864,13 +2864,13 @@ components:
enum:
- attack_attempt
- business_logic
- security_responses
- security_response
example: business_logic
type: string
x-enum-varnames:
- ATTACK_ATTEMPT
- BUSINESS_LOGIC
- SECURITY_RESPONSES
- SECURITY_RESPONSE
ApplicationSecurityWafCustomRuleType:
default: custom_rule
description: The type of the resource. The value should always be `custom_rule`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ class ApplicationSecurityWafCustomRuleTagsCategory(ModelSimple):
"""
The category of the WAF Rule, can be either `business_logic`, `attack_attempt` or `security_response`.

:param value: Must be one of ["attack_attempt", "business_logic", "security_responses"].
:param value: Must be one of ["attack_attempt", "business_logic", "security_response"].
:type value: str
"""

allowed_values = {
"attack_attempt",
"business_logic",
"security_responses",
"security_response",
}
ATTACK_ATTEMPT: ClassVar["ApplicationSecurityWafCustomRuleTagsCategory"]
BUSINESS_LOGIC: ClassVar["ApplicationSecurityWafCustomRuleTagsCategory"]
SECURITY_RESPONSES: ClassVar["ApplicationSecurityWafCustomRuleTagsCategory"]
SECURITY_RESPONSE: ClassVar["ApplicationSecurityWafCustomRuleTagsCategory"]

@cached_property
def openapi_types(_):
Expand All @@ -42,6 +42,6 @@ def openapi_types(_):
ApplicationSecurityWafCustomRuleTagsCategory.BUSINESS_LOGIC = ApplicationSecurityWafCustomRuleTagsCategory(
"business_logic"
)
ApplicationSecurityWafCustomRuleTagsCategory.SECURITY_RESPONSES = ApplicationSecurityWafCustomRuleTagsCategory(
"security_responses"
ApplicationSecurityWafCustomRuleTagsCategory.SECURITY_RESPONSE = ApplicationSecurityWafCustomRuleTagsCategory(
"security_response"
)