aws-sdk-wafv2 1.53.0 → 1.54.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wafv2/client.rb +148 -84
- data/lib/aws-sdk-wafv2/client_api.rb +17 -0
- data/lib/aws-sdk-wafv2/types.rb +353 -193
- data/lib/aws-sdk-wafv2.rb +1 -1
- metadata +2 -2
@@ -24,6 +24,8 @@ module Aws::WAFV2
|
|
24
24
|
AndStatement = Shapes::StructureShape.new(name: 'AndStatement')
|
25
25
|
AssociateWebACLRequest = Shapes::StructureShape.new(name: 'AssociateWebACLRequest')
|
26
26
|
AssociateWebACLResponse = Shapes::StructureShape.new(name: 'AssociateWebACLResponse')
|
27
|
+
AssociatedResourceType = Shapes::StringShape.new(name: 'AssociatedResourceType')
|
28
|
+
AssociationConfig = Shapes::StructureShape.new(name: 'AssociationConfig')
|
27
29
|
BlockAction = Shapes::StructureShape.new(name: 'BlockAction')
|
28
30
|
Body = Shapes::StructureShape.new(name: 'Body')
|
29
31
|
BodyParsingFallbackBehavior = Shapes::StringShape.new(name: 'BodyParsingFallbackBehavior')
|
@@ -253,6 +255,8 @@ module Aws::WAFV2
|
|
253
255
|
ReleaseNotes = Shapes::StringShape.new(name: 'ReleaseNotes')
|
254
256
|
ReleaseSummaries = Shapes::ListShape.new(name: 'ReleaseSummaries')
|
255
257
|
ReleaseSummary = Shapes::StructureShape.new(name: 'ReleaseSummary')
|
258
|
+
RequestBody = Shapes::MapShape.new(name: 'RequestBody')
|
259
|
+
RequestBodyAssociatedResourceTypeConfig = Shapes::StructureShape.new(name: 'RequestBodyAssociatedResourceTypeConfig')
|
256
260
|
RequestInspection = Shapes::StructureShape.new(name: 'RequestInspection')
|
257
261
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
258
262
|
ResourceArns = Shapes::ListShape.new(name: 'ResourceArns')
|
@@ -298,6 +302,7 @@ module Aws::WAFV2
|
|
298
302
|
SingleQueryArgument = Shapes::StructureShape.new(name: 'SingleQueryArgument')
|
299
303
|
Size = Shapes::IntegerShape.new(name: 'Size')
|
300
304
|
SizeConstraintStatement = Shapes::StructureShape.new(name: 'SizeConstraintStatement')
|
305
|
+
SizeInspectionLimit = Shapes::StringShape.new(name: 'SizeInspectionLimit')
|
301
306
|
SolveTimestamp = Shapes::IntegerShape.new(name: 'SolveTimestamp')
|
302
307
|
SqliMatchStatement = Shapes::StructureShape.new(name: 'SqliMatchStatement')
|
303
308
|
Statement = Shapes::StructureShape.new(name: 'Statement')
|
@@ -393,6 +398,9 @@ module Aws::WAFV2
|
|
393
398
|
|
394
399
|
AssociateWebACLResponse.struct_class = Types::AssociateWebACLResponse
|
395
400
|
|
401
|
+
AssociationConfig.add_member(:request_body, Shapes::ShapeRef.new(shape: RequestBody, location_name: "RequestBody"))
|
402
|
+
AssociationConfig.struct_class = Types::AssociationConfig
|
403
|
+
|
396
404
|
BlockAction.add_member(:custom_response, Shapes::ShapeRef.new(shape: CustomResponse, location_name: "CustomResponse"))
|
397
405
|
BlockAction.struct_class = Types::BlockAction
|
398
406
|
|
@@ -502,6 +510,7 @@ module Aws::WAFV2
|
|
502
510
|
CreateWebACLRequest.add_member(:captcha_config, Shapes::ShapeRef.new(shape: CaptchaConfig, location_name: "CaptchaConfig"))
|
503
511
|
CreateWebACLRequest.add_member(:challenge_config, Shapes::ShapeRef.new(shape: ChallengeConfig, location_name: "ChallengeConfig"))
|
504
512
|
CreateWebACLRequest.add_member(:token_domains, Shapes::ShapeRef.new(shape: TokenDomains, location_name: "TokenDomains"))
|
513
|
+
CreateWebACLRequest.add_member(:association_config, Shapes::ShapeRef.new(shape: AssociationConfig, location_name: "AssociationConfig"))
|
505
514
|
CreateWebACLRequest.struct_class = Types::CreateWebACLRequest
|
506
515
|
|
507
516
|
CreateWebACLResponse.add_member(:summary, Shapes::ShapeRef.new(shape: WebACLSummary, location_name: "Summary"))
|
@@ -1109,6 +1118,12 @@ module Aws::WAFV2
|
|
1109
1118
|
ReleaseSummary.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Timestamp"))
|
1110
1119
|
ReleaseSummary.struct_class = Types::ReleaseSummary
|
1111
1120
|
|
1121
|
+
RequestBody.key = Shapes::ShapeRef.new(shape: AssociatedResourceType)
|
1122
|
+
RequestBody.value = Shapes::ShapeRef.new(shape: RequestBodyAssociatedResourceTypeConfig)
|
1123
|
+
|
1124
|
+
RequestBodyAssociatedResourceTypeConfig.add_member(:default_size_inspection_limit, Shapes::ShapeRef.new(shape: SizeInspectionLimit, required: true, location_name: "DefaultSizeInspectionLimit"))
|
1125
|
+
RequestBodyAssociatedResourceTypeConfig.struct_class = Types::RequestBodyAssociatedResourceTypeConfig
|
1126
|
+
|
1112
1127
|
RequestInspection.add_member(:payload_type, Shapes::ShapeRef.new(shape: PayloadType, required: true, location_name: "PayloadType"))
|
1113
1128
|
RequestInspection.add_member(:username_field, Shapes::ShapeRef.new(shape: UsernameField, required: true, location_name: "UsernameField"))
|
1114
1129
|
RequestInspection.add_member(:password_field, Shapes::ShapeRef.new(shape: PasswordField, required: true, location_name: "PasswordField"))
|
@@ -1362,6 +1377,7 @@ module Aws::WAFV2
|
|
1362
1377
|
UpdateWebACLRequest.add_member(:captcha_config, Shapes::ShapeRef.new(shape: CaptchaConfig, location_name: "CaptchaConfig"))
|
1363
1378
|
UpdateWebACLRequest.add_member(:challenge_config, Shapes::ShapeRef.new(shape: ChallengeConfig, location_name: "ChallengeConfig"))
|
1364
1379
|
UpdateWebACLRequest.add_member(:token_domains, Shapes::ShapeRef.new(shape: TokenDomains, location_name: "TokenDomains"))
|
1380
|
+
UpdateWebACLRequest.add_member(:association_config, Shapes::ShapeRef.new(shape: AssociationConfig, location_name: "AssociationConfig"))
|
1365
1381
|
UpdateWebACLRequest.struct_class = Types::UpdateWebACLRequest
|
1366
1382
|
|
1367
1383
|
UpdateWebACLResponse.add_member(:next_lock_token, Shapes::ShapeRef.new(shape: LockToken, location_name: "NextLockToken"))
|
@@ -1457,6 +1473,7 @@ module Aws::WAFV2
|
|
1457
1473
|
WebACL.add_member(:captcha_config, Shapes::ShapeRef.new(shape: CaptchaConfig, location_name: "CaptchaConfig"))
|
1458
1474
|
WebACL.add_member(:challenge_config, Shapes::ShapeRef.new(shape: ChallengeConfig, location_name: "ChallengeConfig"))
|
1459
1475
|
WebACL.add_member(:token_domains, Shapes::ShapeRef.new(shape: TokenDomains, location_name: "TokenDomains"))
|
1476
|
+
WebACL.add_member(:association_config, Shapes::ShapeRef.new(shape: AssociationConfig, location_name: "AssociationConfig"))
|
1460
1477
|
WebACL.struct_class = Types::WebACL
|
1461
1478
|
|
1462
1479
|
WebACLSummaries.member = Shapes::ShapeRef.new(shape: WebACLSummary)
|