aws-sdk-wafv2 1.67.0 → 1.69.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wafv2/client.rb +169 -59
- data/lib/aws-sdk-wafv2/client_api.rb +6 -0
- data/lib/aws-sdk-wafv2/types.rb +221 -244
- data/lib/aws-sdk-wafv2.rb +1 -1
- metadata +2 -2
@@ -176,6 +176,7 @@ module Aws::WAFV2
|
|
176
176
|
IPString = Shapes::StringShape.new(name: 'IPString')
|
177
177
|
ImmunityTimeProperty = Shapes::StructureShape.new(name: 'ImmunityTimeProperty')
|
178
178
|
InspectionLevel = Shapes::StringShape.new(name: 'InspectionLevel')
|
179
|
+
JA3Fingerprint = Shapes::StructureShape.new(name: 'JA3Fingerprint')
|
179
180
|
JsonBody = Shapes::StructureShape.new(name: 'JsonBody')
|
180
181
|
JsonMatchPattern = Shapes::StructureShape.new(name: 'JsonMatchPattern')
|
181
182
|
JsonMatchScope = Shapes::StringShape.new(name: 'JsonMatchScope')
|
@@ -439,6 +440,7 @@ module Aws::WAFV2
|
|
439
440
|
AWSManagedRulesATPRuleSet.struct_class = Types::AWSManagedRulesATPRuleSet
|
440
441
|
|
441
442
|
AWSManagedRulesBotControlRuleSet.add_member(:inspection_level, Shapes::ShapeRef.new(shape: InspectionLevel, required: true, location_name: "InspectionLevel"))
|
443
|
+
AWSManagedRulesBotControlRuleSet.add_member(:enable_machine_learning, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableMachineLearning"))
|
442
444
|
AWSManagedRulesBotControlRuleSet.struct_class = Types::AWSManagedRulesBotControlRuleSet
|
443
445
|
|
444
446
|
ActionCondition.add_member(:action, Shapes::ShapeRef.new(shape: ActionValue, required: true, location_name: "Action"))
|
@@ -716,6 +718,7 @@ module Aws::WAFV2
|
|
716
718
|
FieldToMatch.add_member(:headers, Shapes::ShapeRef.new(shape: Headers, location_name: "Headers"))
|
717
719
|
FieldToMatch.add_member(:cookies, Shapes::ShapeRef.new(shape: Cookies, location_name: "Cookies"))
|
718
720
|
FieldToMatch.add_member(:header_order, Shapes::ShapeRef.new(shape: HeaderOrder, location_name: "HeaderOrder"))
|
721
|
+
FieldToMatch.add_member(:ja3_fingerprint, Shapes::ShapeRef.new(shape: JA3Fingerprint, location_name: "JA3Fingerprint"))
|
719
722
|
FieldToMatch.struct_class = Types::FieldToMatch
|
720
723
|
|
721
724
|
Filter.add_member(:behavior, Shapes::ShapeRef.new(shape: FilterBehavior, required: true, location_name: "Behavior"))
|
@@ -916,6 +919,9 @@ module Aws::WAFV2
|
|
916
919
|
ImmunityTimeProperty.add_member(:immunity_time, Shapes::ShapeRef.new(shape: TimeWindowSecond, required: true, location_name: "ImmunityTime"))
|
917
920
|
ImmunityTimeProperty.struct_class = Types::ImmunityTimeProperty
|
918
921
|
|
922
|
+
JA3Fingerprint.add_member(:fallback_behavior, Shapes::ShapeRef.new(shape: FallbackBehavior, required: true, location_name: "FallbackBehavior"))
|
923
|
+
JA3Fingerprint.struct_class = Types::JA3Fingerprint
|
924
|
+
|
919
925
|
JsonBody.add_member(:match_pattern, Shapes::ShapeRef.new(shape: JsonMatchPattern, required: true, location_name: "MatchPattern"))
|
920
926
|
JsonBody.add_member(:match_scope, Shapes::ShapeRef.new(shape: JsonMatchScope, required: true, location_name: "MatchScope"))
|
921
927
|
JsonBody.add_member(:invalid_fallback_behavior, Shapes::ShapeRef.new(shape: BodyParsingFallbackBehavior, location_name: "InvalidFallbackBehavior"))
|