Skip to content

Commit

Permalink
Add additional text transformation options
Browse files Browse the repository at this point in the history
  • Loading branch information
deepanjan90 committed Feb 27, 2024
1 parent 54e41c3 commit cbde8b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/gyro/aws/wafv2/TextTransformationResource.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ public void setPriority(Integer priority) {
* The type of the text transformation.
*/
@Required
@ValidStrings({"NONE", "COMPRESS_WHITE_SPACE", "HTML_ENTITY_DECODE", "LOWERCASE", "CMD_LINE", "URL_DECODE"})
@ValidStrings({"NONE", "COMPRESS_WHITE_SPACE", "HTML_ENTITY_DECODE", "LOWERCASE", "CMD_LINE",
"URL_DECODE", "BASE64_DECODE", "HEX_DECODE", "MD5", "REPLACE_COMMENTS", "ESCAPE_SEQ_DECODE",
"SQL_HEX_DECODE", "CSS_DECODE", "JS_DECODE", "NORMALIZE_PATH", "NORMALIZE_PATH_WIN",
"REMOVE_NULLS", "REPLACE_NULLS", "BASE64_DECODE_EXT", "URL_DECODE_UNI", "UTF8_TO_UNICODE"})
public TextTransformationType getType() {
return type;
}
Expand Down

0 comments on commit cbde8b2

Please sign in to comment.