From d29db5bcdc8781add5f6f18902fb743b40ef6dc2 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Fri, 4 Apr 2025 12:50:07 +0000 Subject: [PATCH] Regenerate client from commit 73e22797 of spec repo --- .apigentools-info | 8 ++++---- .generator/schemas/v2/openapi.yaml | 4 ++-- ...plication_security_waf_custom_rule_tags_category.py | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.apigentools-info b/.apigentools-info index 544b7a435c..b72c39a5bd 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -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" } } } \ No newline at end of file diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 05e150ab58..65222d02bf 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -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`. diff --git a/src/datadog_api_client/v2/model/application_security_waf_custom_rule_tags_category.py b/src/datadog_api_client/v2/model/application_security_waf_custom_rule_tags_category.py index b1bcd6c798..4912531666 100644 --- a/src/datadog_api_client/v2/model/application_security_waf_custom_rule_tags_category.py +++ b/src/datadog_api_client/v2/model/application_security_waf_custom_rule_tags_category.py @@ -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(_): @@ -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" )