aws-sdk-wafv2 1.31.0 → 1.35.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b3b1c92cb789ccf4f30ff1c2d2e5b2d7814f58ed48f6c122cf00a223d6b96714
4
- data.tar.gz: 2e0b15160d174f1ebd884e92eca57256d43f5dc04273090f1c65698827167467
3
+ metadata.gz: 4e3e10c76d8225b5be56a937527506820b8a2132d2a3e740442da28a06d0f218
4
+ data.tar.gz: 4ad816d40170387c5f52c2438a3477abcfbe52f3667ae392d270234112bf01d3
5
5
  SHA512:
6
- metadata.gz: 884441ff2f923c2c198f3ae70edc67688646cc318a1fad59701e1bb4a10f9486b96efb1d82ff56c66b0ed61afe1bdb71b729bf48d166acc28ec4bc962bcebefc
7
- data.tar.gz: 03e62ccd185255c3004e2b05bd9b7aaf60c81ae687b789b1bd290bfd9bf9fd225dbe9265b2bff33a8b667f5ed8c1f65cd5b8c06dbdb8eea6a6ea52f1cd6f2172
6
+ metadata.gz: e9137dc0e7f7e99c3aa1b34e76ca3426692ae7d2d670e1fedd1a66d051d42c18d5ca6067a8327c0b030ba2e419b946328a21f859b56d970bdd2f665faf6f94fc
7
+ data.tar.gz: b4d5f86db2a1517a8cfaf226ab34b3ec382dcbd9d1d625a85697903134cfa62c9f22fe34cebb3a12e790287cd178195b837791cf54224921ebe31f6f46c09f20
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.35.0 (2022-02-10)
5
+ ------------------
6
+
7
+ * Feature - Adds support for AWS WAF Fraud Control account takeover prevention (ATP), with configuration options for the new managed rule group AWSManagedRulesATPRuleSet and support for application integration SDKs for Android and iOS mobile apps.
8
+
9
+ 1.34.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.33.0 (2021-12-21)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.32.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.31.0 (2021-11-15)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.35.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
32
34
 
@@ -73,6 +75,8 @@ module Aws::WAFV2
73
75
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
74
76
  add_plugin(Aws::Plugins::TransferEncoding)
75
77
  add_plugin(Aws::Plugins::HttpChecksum)
78
+ add_plugin(Aws::Plugins::DefaultsMode)
79
+ add_plugin(Aws::Plugins::RecursionDetection)
76
80
  add_plugin(Aws::Plugins::SignatureV4)
77
81
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
78
82
 
@@ -119,7 +123,9 @@ module Aws::WAFV2
119
123
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
124
  # are very aggressive. Construct and pass an instance of
121
125
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
126
+ # enable retries and extended timeouts. Instance profile credential
127
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
128
+ # to true.
123
129
  #
124
130
  # @option options [required, String] :region
125
131
  # The AWS region to connect to. The configured `:region` is
@@ -173,6 +179,10 @@ module Aws::WAFV2
173
179
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
174
180
  # a clock skew correction and retry requests with skewed client clocks.
175
181
  #
182
+ # @option options [String] :defaults_mode ("legacy")
183
+ # See {Aws::DefaultsModeConfiguration} for a list of the
184
+ # accepted modes and the configuration defaults that are included.
185
+ #
176
186
  # @option options [Boolean] :disable_host_prefix_injection (false)
177
187
  # Set to true to disable SDK automatically adding host prefix
178
188
  # to default service endpoint when available.
@@ -305,7 +315,7 @@ module Aws::WAFV2
305
315
  # seconds to wait when opening a HTTP session before raising a
306
316
  # `Timeout::Error`.
307
317
  #
308
- # @option options [Integer] :http_read_timeout (60) The default
318
+ # @option options [Float] :http_read_timeout (60) The default
309
319
  # number of seconds to wait for response data. This value can
310
320
  # safely be set per-request on the session.
311
321
  #
@@ -321,6 +331,9 @@ module Aws::WAFV2
321
331
  # disables this behaviour. This value can safely be set per
322
332
  # request on the session.
323
333
  #
334
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
335
+ # in seconds.
336
+ #
324
337
  # @option options [Boolean] :http_wire_trace (false) When `true`,
325
338
  # HTTP debug output will be sent to the `:logger`.
326
339
  #
@@ -687,6 +700,18 @@ module Aws::WAFV2
687
700
  # scope_down_statement: {
688
701
  # # recursive Statement
689
702
  # },
703
+ # managed_rule_group_configs: [
704
+ # {
705
+ # login_path: "LoginPathString",
706
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
707
+ # username_field: {
708
+ # identifier: "FieldIdentifier", # required
709
+ # },
710
+ # password_field: {
711
+ # identifier: "FieldIdentifier", # required
712
+ # },
713
+ # },
714
+ # ],
690
715
  # },
691
716
  # label_match_statement: {
692
717
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -1329,6 +1354,18 @@ module Aws::WAFV2
1329
1354
  # scope_down_statement: {
1330
1355
  # # recursive Statement
1331
1356
  # },
1357
+ # managed_rule_group_configs: [
1358
+ # {
1359
+ # login_path: "LoginPathString",
1360
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
1361
+ # username_field: {
1362
+ # identifier: "FieldIdentifier", # required
1363
+ # },
1364
+ # password_field: {
1365
+ # identifier: "FieldIdentifier", # required
1366
+ # },
1367
+ # },
1368
+ # ],
1332
1369
  # },
1333
1370
  # label_match_statement: {
1334
1371
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -1842,6 +1879,18 @@ module Aws::WAFV2
1842
1879
  # scope_down_statement: {
1843
1880
  # # recursive Statement
1844
1881
  # },
1882
+ # managed_rule_group_configs: [
1883
+ # {
1884
+ # login_path: "LoginPathString",
1885
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
1886
+ # username_field: {
1887
+ # identifier: "FieldIdentifier", # required
1888
+ # },
1889
+ # password_field: {
1890
+ # identifier: "FieldIdentifier", # required
1891
+ # },
1892
+ # },
1893
+ # ],
1845
1894
  # },
1846
1895
  # label_match_statement: {
1847
1896
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -2447,6 +2496,45 @@ module Aws::WAFV2
2447
2496
  req.send_request(options)
2448
2497
  end
2449
2498
 
2499
+ # Generates a presigned download URL for the specified release of the
2500
+ # mobile SDK.
2501
+ #
2502
+ # The mobile SDK is not generally available. Customers who have access
2503
+ # to the mobile SDK can use it to establish and manage Security Token
2504
+ # Service (STS) security tokens for use in HTTP(S) requests from a
2505
+ # mobile device to WAF.
2506
+ #
2507
+ # @option params [required, String] :platform
2508
+ # The device platform.
2509
+ #
2510
+ # @option params [required, String] :release_version
2511
+ # The release version. For the latest available version, specify
2512
+ # `LATEST`.
2513
+ #
2514
+ # @return [Types::GenerateMobileSdkReleaseUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2515
+ #
2516
+ # * {Types::GenerateMobileSdkReleaseUrlResponse#url #url} => String
2517
+ #
2518
+ # @example Request syntax with placeholder values
2519
+ #
2520
+ # resp = client.generate_mobile_sdk_release_url({
2521
+ # platform: "IOS", # required, accepts IOS, ANDROID
2522
+ # release_version: "VersionKeyString", # required
2523
+ # })
2524
+ #
2525
+ # @example Response structure
2526
+ #
2527
+ # resp.url #=> String
2528
+ #
2529
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GenerateMobileSdkReleaseUrl AWS API Documentation
2530
+ #
2531
+ # @overload generate_mobile_sdk_release_url(params = {})
2532
+ # @param [Hash] params ({})
2533
+ def generate_mobile_sdk_release_url(params = {}, options = {})
2534
+ req = build_request(:generate_mobile_sdk_release_url, params)
2535
+ req.send_request(options)
2536
+ end
2537
+
2450
2538
  # Retrieves the specified IPSet.
2451
2539
  #
2452
2540
  # @option params [required, String] :name
@@ -2629,6 +2717,50 @@ module Aws::WAFV2
2629
2717
  req.send_request(options)
2630
2718
  end
2631
2719
 
2720
+ # Retrieves information for the specified mobile SDK release, including
2721
+ # release notes and tags.
2722
+ #
2723
+ # The mobile SDK is not generally available. Customers who have access
2724
+ # to the mobile SDK can use it to establish and manage Security Token
2725
+ # Service (STS) security tokens for use in HTTP(S) requests from a
2726
+ # mobile device to WAF.
2727
+ #
2728
+ # @option params [required, String] :platform
2729
+ # The device platform.
2730
+ #
2731
+ # @option params [required, String] :release_version
2732
+ # The release version. For the latest available version, specify
2733
+ # `LATEST`.
2734
+ #
2735
+ # @return [Types::GetMobileSdkReleaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2736
+ #
2737
+ # * {Types::GetMobileSdkReleaseResponse#mobile_sdk_release #mobile_sdk_release} => Types::MobileSdkRelease
2738
+ #
2739
+ # @example Request syntax with placeholder values
2740
+ #
2741
+ # resp = client.get_mobile_sdk_release({
2742
+ # platform: "IOS", # required, accepts IOS, ANDROID
2743
+ # release_version: "VersionKeyString", # required
2744
+ # })
2745
+ #
2746
+ # @example Response structure
2747
+ #
2748
+ # resp.mobile_sdk_release.release_version #=> String
2749
+ # resp.mobile_sdk_release.timestamp #=> Time
2750
+ # resp.mobile_sdk_release.release_notes #=> String
2751
+ # resp.mobile_sdk_release.tags #=> Array
2752
+ # resp.mobile_sdk_release.tags[0].key #=> String
2753
+ # resp.mobile_sdk_release.tags[0].value #=> String
2754
+ #
2755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetMobileSdkRelease AWS API Documentation
2756
+ #
2757
+ # @overload get_mobile_sdk_release(params = {})
2758
+ # @param [Hash] params ({})
2759
+ def get_mobile_sdk_release(params = {}, options = {})
2760
+ req = build_request(:get_mobile_sdk_release, params)
2761
+ req.send_request(options)
2762
+ end
2763
+
2632
2764
  # Returns the IAM policy that is attached to the specified rule group.
2633
2765
  #
2634
2766
  # You must be the owner of the rule group to perform this operation.
@@ -2932,6 +3064,11 @@ module Aws::WAFV2
2932
3064
  # resp.rule_group.rules[0].statement.managed_rule_group_statement.excluded_rules #=> Array
2933
3065
  # resp.rule_group.rules[0].statement.managed_rule_group_statement.excluded_rules[0].name #=> String
2934
3066
  # resp.rule_group.rules[0].statement.managed_rule_group_statement.scope_down_statement #=> Types::Statement
3067
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3068
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3069
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3070
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3071
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
2935
3072
  # resp.rule_group.rules[0].statement.label_match_statement.scope #=> String, one of "LABEL", "NAMESPACE"
2936
3073
  # resp.rule_group.rules[0].statement.label_match_statement.key #=> String
2937
3074
  # resp.rule_group.rules[0].statement.regex_match_statement.regex_string #=> String
@@ -3125,6 +3262,7 @@ module Aws::WAFV2
3125
3262
  #
3126
3263
  # * {Types::GetWebACLResponse#web_acl #web_acl} => Types::WebACL
3127
3264
  # * {Types::GetWebACLResponse#lock_token #lock_token} => String
3265
+ # * {Types::GetWebACLResponse#application_integration_url #application_integration_url} => String
3128
3266
  #
3129
3267
  # @example Request syntax with placeholder values
3130
3268
  #
@@ -3228,6 +3366,11 @@ module Aws::WAFV2
3228
3366
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.excluded_rules #=> Array
3229
3367
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.excluded_rules[0].name #=> String
3230
3368
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.scope_down_statement #=> Types::Statement
3369
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3370
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3371
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3372
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3373
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3231
3374
  # resp.web_acl.rules[0].statement.label_match_statement.scope #=> String, one of "LABEL", "NAMESPACE"
3232
3375
  # resp.web_acl.rules[0].statement.label_match_statement.key #=> String
3233
3376
  # resp.web_acl.rules[0].statement.regex_match_statement.regex_string #=> String
@@ -3359,6 +3502,11 @@ module Aws::WAFV2
3359
3502
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations #=> Array
3360
3503
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].priority #=> Integer
3361
3504
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].type #=> String, one of "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"
3505
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3506
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3507
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3508
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3509
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3362
3510
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
3363
3511
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
3364
3512
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
@@ -3460,6 +3608,11 @@ module Aws::WAFV2
3460
3608
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations #=> Array
3461
3609
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].priority #=> Integer
3462
3610
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].type #=> String, one of "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"
3611
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3612
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3613
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3614
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3615
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3463
3616
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
3464
3617
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
3465
3618
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
@@ -3476,6 +3629,7 @@ module Aws::WAFV2
3476
3629
  # resp.web_acl.custom_response_bodies["EntityName"].content #=> String
3477
3630
  # resp.web_acl.captcha_config.immunity_time_property.immunity_time #=> Integer
3478
3631
  # resp.lock_token #=> String
3632
+ # resp.application_integration_url #=> String
3479
3633
  #
3480
3634
  # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetWebACL AWS API Documentation
3481
3635
  #
@@ -3595,6 +3749,11 @@ module Aws::WAFV2
3595
3749
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.excluded_rules #=> Array
3596
3750
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.excluded_rules[0].name #=> String
3597
3751
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.scope_down_statement #=> Types::Statement
3752
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3753
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3754
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3755
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3756
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3598
3757
  # resp.web_acl.rules[0].statement.label_match_statement.scope #=> String, one of "LABEL", "NAMESPACE"
3599
3758
  # resp.web_acl.rules[0].statement.label_match_statement.key #=> String
3600
3759
  # resp.web_acl.rules[0].statement.regex_match_statement.regex_string #=> String
@@ -3726,6 +3885,11 @@ module Aws::WAFV2
3726
3885
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations #=> Array
3727
3886
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].priority #=> Integer
3728
3887
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].type #=> String, one of "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"
3888
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3889
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3890
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3891
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3892
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3729
3893
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
3730
3894
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
3731
3895
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
@@ -3827,6 +3991,11 @@ module Aws::WAFV2
3827
3991
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations #=> Array
3828
3992
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].priority #=> Integer
3829
3993
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].type #=> String, one of "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"
3994
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3995
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3996
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3997
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3998
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3830
3999
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
3831
4000
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
3832
4001
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
@@ -4192,6 +4361,59 @@ module Aws::WAFV2
4192
4361
  req.send_request(options)
4193
4362
  end
4194
4363
 
4364
+ # Retrieves a list of the available releases for the mobile SDK and the
4365
+ # specified device platform.
4366
+ #
4367
+ # The mobile SDK is not generally available. Customers who have access
4368
+ # to the mobile SDK can use it to establish and manage Security Token
4369
+ # Service (STS) security tokens for use in HTTP(S) requests from a
4370
+ # mobile device to WAF.
4371
+ #
4372
+ # @option params [required, String] :platform
4373
+ # The device platform to retrieve the list for.
4374
+ #
4375
+ # @option params [String] :next_marker
4376
+ # When you request a list of objects with a `Limit` setting, if the
4377
+ # number of objects that are still available for retrieval exceeds the
4378
+ # limit, WAF returns a `NextMarker` value in the response. To retrieve
4379
+ # the next batch of objects, provide the marker from the prior call in
4380
+ # your next request.
4381
+ #
4382
+ # @option params [Integer] :limit
4383
+ # The maximum number of objects that you want WAF to return for this
4384
+ # request. If more objects are available, in the response, WAF provides
4385
+ # a `NextMarker` value that you can use in a subsequent call to get the
4386
+ # next batch of objects.
4387
+ #
4388
+ # @return [Types::ListMobileSdkReleasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4389
+ #
4390
+ # * {Types::ListMobileSdkReleasesResponse#release_summaries #release_summaries} => Array<Types::ReleaseSummary>
4391
+ # * {Types::ListMobileSdkReleasesResponse#next_marker #next_marker} => String
4392
+ #
4393
+ # @example Request syntax with placeholder values
4394
+ #
4395
+ # resp = client.list_mobile_sdk_releases({
4396
+ # platform: "IOS", # required, accepts IOS, ANDROID
4397
+ # next_marker: "NextMarker",
4398
+ # limit: 1,
4399
+ # })
4400
+ #
4401
+ # @example Response structure
4402
+ #
4403
+ # resp.release_summaries #=> Array
4404
+ # resp.release_summaries[0].release_version #=> String
4405
+ # resp.release_summaries[0].timestamp #=> Time
4406
+ # resp.next_marker #=> String
4407
+ #
4408
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListMobileSdkReleases AWS API Documentation
4409
+ #
4410
+ # @overload list_mobile_sdk_releases(params = {})
4411
+ # @param [Hash] params ({})
4412
+ def list_mobile_sdk_releases(params = {}, options = {})
4413
+ req = build_request(:list_mobile_sdk_releases, params)
4414
+ req.send_request(options)
4415
+ end
4416
+
4195
4417
  # Retrieves an array of RegexPatternSetSummary objects for the regex
4196
4418
  # pattern sets that you manage.
4197
4419
  #
@@ -5463,6 +5685,18 @@ module Aws::WAFV2
5463
5685
  # scope_down_statement: {
5464
5686
  # # recursive Statement
5465
5687
  # },
5688
+ # managed_rule_group_configs: [
5689
+ # {
5690
+ # login_path: "LoginPathString",
5691
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
5692
+ # username_field: {
5693
+ # identifier: "FieldIdentifier", # required
5694
+ # },
5695
+ # password_field: {
5696
+ # identifier: "FieldIdentifier", # required
5697
+ # },
5698
+ # },
5699
+ # ],
5466
5700
  # },
5467
5701
  # label_match_statement: {
5468
5702
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -5988,6 +6222,18 @@ module Aws::WAFV2
5988
6222
  # scope_down_statement: {
5989
6223
  # # recursive Statement
5990
6224
  # },
6225
+ # managed_rule_group_configs: [
6226
+ # {
6227
+ # login_path: "LoginPathString",
6228
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
6229
+ # username_field: {
6230
+ # identifier: "FieldIdentifier", # required
6231
+ # },
6232
+ # password_field: {
6233
+ # identifier: "FieldIdentifier", # required
6234
+ # },
6235
+ # },
6236
+ # ],
5991
6237
  # },
5992
6238
  # label_match_statement: {
5993
6239
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -6150,7 +6396,7 @@ module Aws::WAFV2
6150
6396
  params: params,
6151
6397
  config: config)
6152
6398
  context[:gem_name] = 'aws-sdk-wafv2'
6153
- context[:gem_version] = '1.31.0'
6399
+ context[:gem_version] = '1.35.0'
6154
6400
  Seahorse::Client::Request.new(handlers, context)
6155
6401
  end
6156
6402