Skip to content
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:59.649576",
"spec_repo_commit": "4468962d"
"regenerated": "2025-04-04 12:49:29.243722",
"spec_repo_commit": "73e22797"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-03 16:27:59.666584",
"spec_repo_commit": "4468962d"
"regenerated": "2025-04-04 12:49:29.261107",
"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 @@ -29,14 +29,14 @@
public class ApplicationSecurityWafCustomRuleTagsCategory extends ModelEnum<String> {

private static final Set<String> allowedValues =
new HashSet<String>(Arrays.asList("attack_attempt", "business_logic", "security_responses"));
new HashSet<String>(Arrays.asList("attack_attempt", "business_logic", "security_response"));

public static final ApplicationSecurityWafCustomRuleTagsCategory ATTACK_ATTEMPT =
new ApplicationSecurityWafCustomRuleTagsCategory("attack_attempt");
public static final ApplicationSecurityWafCustomRuleTagsCategory BUSINESS_LOGIC =
new ApplicationSecurityWafCustomRuleTagsCategory("business_logic");
public static final ApplicationSecurityWafCustomRuleTagsCategory SECURITY_RESPONSES =
new ApplicationSecurityWafCustomRuleTagsCategory("security_responses");
public static final ApplicationSecurityWafCustomRuleTagsCategory SECURITY_RESPONSE =
new ApplicationSecurityWafCustomRuleTagsCategory("security_response");

ApplicationSecurityWafCustomRuleTagsCategory(String value) {
super(value, allowedValues);
Expand Down