aws-sdk-waf 1.19.0 → 1.20.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/lib/aws-sdk-waf.rb +1 -1
- data/lib/aws-sdk-waf/client.rb +26 -13
- data/lib/aws-sdk-waf/types.rb +44 -26
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3dbc21534a94d457a3f9addec17787480ee65e6
|
|
4
|
+
data.tar.gz: c1d64f65bbc2cc90e1eeda0e822a83280ffbe670
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6e7f8d3524c93a0ef19e209ac645ea512d7607435a2ba52092b31ae11c26178ec51c4a09303cb442a66713b41fef75a6c1fb2f6dc62ee728e3178f1bca0e027b
|
|
7
|
+
data.tar.gz: 13f8fc5856ea5be41f7c5117c9c8cd01af461a15f9b95c7fcecdae004bb5234377a671756729cdf42a63e27a821c56178d40e22340cbe9d2cf6db79c83aa33af
|
data/lib/aws-sdk-waf.rb
CHANGED
data/lib/aws-sdk-waf/client.rb
CHANGED
|
@@ -560,8 +560,10 @@ module Aws::WAF
|
|
|
560
560
|
# @option params [required, String] :metric_name
|
|
561
561
|
# A friendly name or description for the metrics for this
|
|
562
562
|
# `RateBasedRule`. The name can contain only alphanumeric characters
|
|
563
|
-
# (A-Z, a-z, 0-9)
|
|
564
|
-
#
|
|
563
|
+
# (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It
|
|
564
|
+
# can't contain whitespace or metric names reserved for AWS WAF,
|
|
565
|
+
# including "All" and "Default\_Action." You can't change the name
|
|
566
|
+
# of the metric after you create the `RateBasedRule`.
|
|
565
567
|
#
|
|
566
568
|
# @option params [required, String] :rate_key
|
|
567
569
|
# The field that AWS WAF uses to determine if requests are likely
|
|
@@ -799,9 +801,11 @@ module Aws::WAF
|
|
|
799
801
|
#
|
|
800
802
|
# @option params [required, String] :metric_name
|
|
801
803
|
# A friendly name or description for the metrics for this `Rule`. The
|
|
802
|
-
# name can contain only alphanumeric characters (A-Z, a-z, 0-9)
|
|
803
|
-
#
|
|
804
|
-
# metric
|
|
804
|
+
# name can contain only alphanumeric characters (A-Z, a-z, 0-9), with
|
|
805
|
+
# maximum length 128 and minimum length one. It can't contain
|
|
806
|
+
# whitespace or metric names reserved for AWS WAF, including "All" and
|
|
807
|
+
# "Default\_Action." You can't change the name of the metric after
|
|
808
|
+
# you create the `Rule`.
|
|
805
809
|
#
|
|
806
810
|
# @option params [required, String] :change_token
|
|
807
811
|
# The value returned by the most recent call to GetChangeToken.
|
|
@@ -893,9 +897,11 @@ module Aws::WAF
|
|
|
893
897
|
#
|
|
894
898
|
# @option params [required, String] :metric_name
|
|
895
899
|
# A friendly name or description for the metrics for this `RuleGroup`.
|
|
896
|
-
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9)
|
|
897
|
-
#
|
|
898
|
-
# metric
|
|
900
|
+
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9),
|
|
901
|
+
# with maximum length 128 and minimum length one. It can't contain
|
|
902
|
+
# whitespace or metric names reserved for AWS WAF, including "All" and
|
|
903
|
+
# "Default\_Action." You can't change the name of the metric after
|
|
904
|
+
# you create the `RuleGroup`.
|
|
899
905
|
#
|
|
900
906
|
# @option params [required, String] :change_token
|
|
901
907
|
# The value returned by the most recent call to GetChangeToken.
|
|
@@ -1166,10 +1172,12 @@ module Aws::WAF
|
|
|
1166
1172
|
# after you create the `WebACL`.
|
|
1167
1173
|
#
|
|
1168
1174
|
# @option params [required, String] :metric_name
|
|
1169
|
-
# A friendly name or description for the metrics for this `WebACL`.
|
|
1170
|
-
# name can contain only alphanumeric characters (A-Z, a-z, 0-9)
|
|
1171
|
-
#
|
|
1172
|
-
#
|
|
1175
|
+
# A friendly name or description for the metrics for this `WebACL`.The
|
|
1176
|
+
# name can contain only alphanumeric characters (A-Z, a-z, 0-9), with
|
|
1177
|
+
# maximum length 128 and minimum length one. It can't contain
|
|
1178
|
+
# whitespace or metric names reserved for AWS WAF, including "All" and
|
|
1179
|
+
# "Default\_Action." You can't change `MetricName` after you create
|
|
1180
|
+
# the `WebACL`.
|
|
1173
1181
|
#
|
|
1174
1182
|
# @option params [required, Types::WafAction] :default_action
|
|
1175
1183
|
# The action that you want AWS WAF to take when a request doesn't match
|
|
@@ -3840,6 +3848,11 @@ module Aws::WAF
|
|
|
3840
3848
|
# you are operating. However, if you are capturing logs for Amazon
|
|
3841
3849
|
# CloudFront, always create the firehose in US East (N. Virginia).
|
|
3842
3850
|
#
|
|
3851
|
+
# <note markdown="1"> Do not create the data firehose using a `Kinesis stream` as your
|
|
3852
|
+
# source.
|
|
3853
|
+
#
|
|
3854
|
+
# </note>
|
|
3855
|
+
#
|
|
3843
3856
|
# 2. Associate that firehose to your web ACL using a
|
|
3844
3857
|
# `PutLoggingConfiguration` request.
|
|
3845
3858
|
#
|
|
@@ -5377,7 +5390,7 @@ module Aws::WAF
|
|
|
5377
5390
|
params: params,
|
|
5378
5391
|
config: config)
|
|
5379
5392
|
context[:gem_name] = 'aws-sdk-waf'
|
|
5380
|
-
context[:gem_version] = '1.
|
|
5393
|
+
context[:gem_version] = '1.20.0'
|
|
5381
5394
|
Seahorse::Client::Request.new(handlers, context)
|
|
5382
5395
|
end
|
|
5383
5396
|
|
data/lib/aws-sdk-waf/types.rb
CHANGED
|
@@ -643,8 +643,10 @@ module Aws::WAF
|
|
|
643
643
|
# @!attribute [rw] metric_name
|
|
644
644
|
# A friendly name or description for the metrics for this
|
|
645
645
|
# `RateBasedRule`. The name can contain only alphanumeric characters
|
|
646
|
-
# (A-Z, a-z, 0-9)
|
|
647
|
-
#
|
|
646
|
+
# (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It
|
|
647
|
+
# can't contain whitespace or metric names reserved for AWS WAF,
|
|
648
|
+
# including "All" and "Default\_Action." You can't change the
|
|
649
|
+
# name of the metric after you create the `RateBasedRule`.
|
|
648
650
|
# @return [String]
|
|
649
651
|
#
|
|
650
652
|
# @!attribute [rw] rate_key
|
|
@@ -802,9 +804,11 @@ module Aws::WAF
|
|
|
802
804
|
#
|
|
803
805
|
# @!attribute [rw] metric_name
|
|
804
806
|
# A friendly name or description for the metrics for this `RuleGroup`.
|
|
805
|
-
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9)
|
|
806
|
-
#
|
|
807
|
-
#
|
|
807
|
+
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9),
|
|
808
|
+
# with maximum length 128 and minimum length one. It can't contain
|
|
809
|
+
# whitespace or metric names reserved for AWS WAF, including "All"
|
|
810
|
+
# and "Default\_Action." You can't change the name of the metric
|
|
811
|
+
# after you create the `RuleGroup`.
|
|
808
812
|
# @return [String]
|
|
809
813
|
#
|
|
810
814
|
# @!attribute [rw] change_token
|
|
@@ -854,9 +858,11 @@ module Aws::WAF
|
|
|
854
858
|
#
|
|
855
859
|
# @!attribute [rw] metric_name
|
|
856
860
|
# A friendly name or description for the metrics for this `Rule`. The
|
|
857
|
-
# name can contain only alphanumeric characters (A-Z, a-z, 0-9)
|
|
858
|
-
#
|
|
859
|
-
# metric
|
|
861
|
+
# name can contain only alphanumeric characters (A-Z, a-z, 0-9), with
|
|
862
|
+
# maximum length 128 and minimum length one. It can't contain
|
|
863
|
+
# whitespace or metric names reserved for AWS WAF, including "All"
|
|
864
|
+
# and "Default\_Action." You can't change the name of the metric
|
|
865
|
+
# after you create the `Rule`.
|
|
860
866
|
# @return [String]
|
|
861
867
|
#
|
|
862
868
|
# @!attribute [rw] change_token
|
|
@@ -1001,10 +1007,12 @@ module Aws::WAF
|
|
|
1001
1007
|
# @return [String]
|
|
1002
1008
|
#
|
|
1003
1009
|
# @!attribute [rw] metric_name
|
|
1004
|
-
# A friendly name or description for the metrics for this `WebACL`.
|
|
1005
|
-
#
|
|
1006
|
-
#
|
|
1007
|
-
#
|
|
1010
|
+
# A friendly name or description for the metrics for this `WebACL`.The
|
|
1011
|
+
# name can contain only alphanumeric characters (A-Z, a-z, 0-9), with
|
|
1012
|
+
# maximum length 128 and minimum length one. It can't contain
|
|
1013
|
+
# whitespace or metric names reserved for AWS WAF, including "All"
|
|
1014
|
+
# and "Default\_Action." You can't change `MetricName` after you
|
|
1015
|
+
# create the `WebACL`.
|
|
1008
1016
|
# @return [String]
|
|
1009
1017
|
#
|
|
1010
1018
|
# @!attribute [rw] default_action
|
|
@@ -3763,8 +3771,10 @@ module Aws::WAF
|
|
|
3763
3771
|
# @!attribute [rw] metric_name
|
|
3764
3772
|
# A friendly name or description for the metrics for a
|
|
3765
3773
|
# `RateBasedRule`. The name can contain only alphanumeric characters
|
|
3766
|
-
# (A-Z, a-z, 0-9)
|
|
3767
|
-
#
|
|
3774
|
+
# (A-Z, a-z, 0-9), with maximum length 128 and minimum length one. It
|
|
3775
|
+
# can't contain whitespace or metric names reserved for AWS WAF,
|
|
3776
|
+
# including "All" and "Default\_Action." You can't change the
|
|
3777
|
+
# name of the metric after you create the `RateBasedRule`.
|
|
3768
3778
|
# @return [String]
|
|
3769
3779
|
#
|
|
3770
3780
|
# @!attribute [rw] match_predicates
|
|
@@ -4169,9 +4179,11 @@ module Aws::WAF
|
|
|
4169
4179
|
#
|
|
4170
4180
|
# @!attribute [rw] metric_name
|
|
4171
4181
|
# A friendly name or description for the metrics for this `Rule`. The
|
|
4172
|
-
# name can contain only alphanumeric characters (A-Z, a-z, 0-9)
|
|
4173
|
-
#
|
|
4174
|
-
#
|
|
4182
|
+
# name can contain only alphanumeric characters (A-Z, a-z, 0-9), with
|
|
4183
|
+
# maximum length 128 and minimum length one. It can't contain
|
|
4184
|
+
# whitespace or metric names reserved for AWS WAF, including "All"
|
|
4185
|
+
# and "Default\_Action." You can't change `MetricName` after you
|
|
4186
|
+
# create the `Rule`.
|
|
4175
4187
|
# @return [String]
|
|
4176
4188
|
#
|
|
4177
4189
|
# @!attribute [rw] predicates
|
|
@@ -4218,9 +4230,11 @@ module Aws::WAF
|
|
|
4218
4230
|
#
|
|
4219
4231
|
# @!attribute [rw] metric_name
|
|
4220
4232
|
# A friendly name or description for the metrics for this `RuleGroup`.
|
|
4221
|
-
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9)
|
|
4222
|
-
#
|
|
4223
|
-
#
|
|
4233
|
+
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9),
|
|
4234
|
+
# with maximum length 128 and minimum length one. It can't contain
|
|
4235
|
+
# whitespace or metric names reserved for AWS WAF, including "All"
|
|
4236
|
+
# and "Default\_Action." You can't change the name of the metric
|
|
4237
|
+
# after you create the `RuleGroup`.
|
|
4224
4238
|
# @return [String]
|
|
4225
4239
|
#
|
|
4226
4240
|
# @see http://docs.aws.amazon.com/goto/WebAPI/waf-2015-08-24/RuleGroup AWS API Documentation
|
|
@@ -4892,9 +4906,11 @@ module Aws::WAF
|
|
|
4892
4906
|
#
|
|
4893
4907
|
# @!attribute [rw] metric_name
|
|
4894
4908
|
# A friendly name or description for the metrics for this `RuleGroup`.
|
|
4895
|
-
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9)
|
|
4896
|
-
#
|
|
4897
|
-
#
|
|
4909
|
+
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9),
|
|
4910
|
+
# with maximum length 128 and minimum length one. It can't contain
|
|
4911
|
+
# whitespace or metric names reserved for AWS WAF, including "All"
|
|
4912
|
+
# and "Default\_Action." You can't change the name of the metric
|
|
4913
|
+
# after you create the `RuleGroup`.
|
|
4898
4914
|
# @return [String]
|
|
4899
4915
|
#
|
|
4900
4916
|
# @see http://docs.aws.amazon.com/goto/WebAPI/waf-2015-08-24/SubscribedRuleGroupSummary AWS API Documentation
|
|
@@ -6123,9 +6139,11 @@ module Aws::WAF
|
|
|
6123
6139
|
#
|
|
6124
6140
|
# @!attribute [rw] metric_name
|
|
6125
6141
|
# A friendly name or description for the metrics for this `WebACL`.
|
|
6126
|
-
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9)
|
|
6127
|
-
#
|
|
6128
|
-
#
|
|
6142
|
+
# The name can contain only alphanumeric characters (A-Z, a-z, 0-9),
|
|
6143
|
+
# with maximum length 128 and minimum length one. It can't contain
|
|
6144
|
+
# whitespace or metric names reserved for AWS WAF, including "All"
|
|
6145
|
+
# and "Default\_Action." You can't change `MetricName` after you
|
|
6146
|
+
# create the `WebACL`.
|
|
6129
6147
|
# @return [String]
|
|
6130
6148
|
#
|
|
6131
6149
|
# @!attribute [rw] default_action
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-waf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.20.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-05-
|
|
11
|
+
date: 2019-05-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|