aws-sdk-core 2.10.0 → 2.10.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -46,6 +46,22 @@
46
46
  {"shape":"WAFLimitsExceededException"}
47
47
  ]
48
48
  },
49
+ "CreateRateBasedRule":{
50
+ "name":"CreateRateBasedRule",
51
+ "http":{
52
+ "method":"POST",
53
+ "requestUri":"/"
54
+ },
55
+ "input":{"shape":"CreateRateBasedRuleRequest"},
56
+ "output":{"shape":"CreateRateBasedRuleResponse"},
57
+ "errors":[
58
+ {"shape":"WAFStaleDataException"},
59
+ {"shape":"WAFInternalErrorException"},
60
+ {"shape":"WAFDisallowedNameException"},
61
+ {"shape":"WAFInvalidParameterException"},
62
+ {"shape":"WAFLimitsExceededException"}
63
+ ]
64
+ },
49
65
  "CreateRule":{
50
66
  "name":"CreateRule",
51
67
  "http":{
@@ -164,6 +180,23 @@
164
180
  {"shape":"WAFNonEmptyEntityException"}
165
181
  ]
166
182
  },
183
+ "DeleteRateBasedRule":{
184
+ "name":"DeleteRateBasedRule",
185
+ "http":{
186
+ "method":"POST",
187
+ "requestUri":"/"
188
+ },
189
+ "input":{"shape":"DeleteRateBasedRuleRequest"},
190
+ "output":{"shape":"DeleteRateBasedRuleResponse"},
191
+ "errors":[
192
+ {"shape":"WAFStaleDataException"},
193
+ {"shape":"WAFInternalErrorException"},
194
+ {"shape":"WAFInvalidAccountException"},
195
+ {"shape":"WAFNonexistentItemException"},
196
+ {"shape":"WAFReferencedItemException"},
197
+ {"shape":"WAFNonEmptyEntityException"}
198
+ ]
199
+ },
167
200
  "DeleteRule":{
168
201
  "name":"DeleteRule",
169
202
  "http":{
@@ -302,6 +335,35 @@
302
335
  {"shape":"WAFNonexistentItemException"}
303
336
  ]
304
337
  },
338
+ "GetRateBasedRule":{
339
+ "name":"GetRateBasedRule",
340
+ "http":{
341
+ "method":"POST",
342
+ "requestUri":"/"
343
+ },
344
+ "input":{"shape":"GetRateBasedRuleRequest"},
345
+ "output":{"shape":"GetRateBasedRuleResponse"},
346
+ "errors":[
347
+ {"shape":"WAFInternalErrorException"},
348
+ {"shape":"WAFInvalidAccountException"},
349
+ {"shape":"WAFNonexistentItemException"}
350
+ ]
351
+ },
352
+ "GetRateBasedRuleManagedKeys":{
353
+ "name":"GetRateBasedRuleManagedKeys",
354
+ "http":{
355
+ "method":"POST",
356
+ "requestUri":"/"
357
+ },
358
+ "input":{"shape":"GetRateBasedRuleManagedKeysRequest"},
359
+ "output":{"shape":"GetRateBasedRuleManagedKeysResponse"},
360
+ "errors":[
361
+ {"shape":"WAFInternalErrorException"},
362
+ {"shape":"WAFInvalidAccountException"},
363
+ {"shape":"WAFNonexistentItemException"},
364
+ {"shape":"WAFInvalidParameterException"}
365
+ ]
366
+ },
305
367
  "GetRule":{
306
368
  "name":"GetRule",
307
369
  "http":{
@@ -411,6 +473,19 @@
411
473
  {"shape":"WAFInvalidAccountException"}
412
474
  ]
413
475
  },
476
+ "ListRateBasedRules":{
477
+ "name":"ListRateBasedRules",
478
+ "http":{
479
+ "method":"POST",
480
+ "requestUri":"/"
481
+ },
482
+ "input":{"shape":"ListRateBasedRulesRequest"},
483
+ "output":{"shape":"ListRateBasedRulesResponse"},
484
+ "errors":[
485
+ {"shape":"WAFInternalErrorException"},
486
+ {"shape":"WAFInvalidAccountException"}
487
+ ]
488
+ },
414
489
  "ListRules":{
415
490
  "name":"ListRules",
416
491
  "http":{
@@ -515,6 +590,26 @@
515
590
  {"shape":"WAFLimitsExceededException"}
516
591
  ]
517
592
  },
593
+ "UpdateRateBasedRule":{
594
+ "name":"UpdateRateBasedRule",
595
+ "http":{
596
+ "method":"POST",
597
+ "requestUri":"/"
598
+ },
599
+ "input":{"shape":"UpdateRateBasedRuleRequest"},
600
+ "output":{"shape":"UpdateRateBasedRuleResponse"},
601
+ "errors":[
602
+ {"shape":"WAFStaleDataException"},
603
+ {"shape":"WAFInternalErrorException"},
604
+ {"shape":"WAFInvalidAccountException"},
605
+ {"shape":"WAFInvalidOperationException"},
606
+ {"shape":"WAFInvalidParameterException"},
607
+ {"shape":"WAFNonexistentContainerException"},
608
+ {"shape":"WAFNonexistentItemException"},
609
+ {"shape":"WAFReferencedItemException"},
610
+ {"shape":"WAFLimitsExceededException"}
611
+ ]
612
+ },
518
613
  "UpdateRule":{
519
614
  "name":"UpdateRule",
520
615
  "http":{
@@ -626,7 +721,8 @@
626
721
  "members":{
627
722
  "Priority":{"shape":"RulePriority"},
628
723
  "RuleId":{"shape":"ResourceId"},
629
- "Action":{"shape":"WafAction"}
724
+ "Action":{"shape":"WafAction"},
725
+ "Type":{"shape":"WafRuleType"}
630
726
  }
631
727
  },
632
728
  "ActivatedRules":{
@@ -762,6 +858,30 @@
762
858
  "ChangeToken":{"shape":"ChangeToken"}
763
859
  }
764
860
  },
861
+ "CreateRateBasedRuleRequest":{
862
+ "type":"structure",
863
+ "required":[
864
+ "Name",
865
+ "MetricName",
866
+ "RateKey",
867
+ "RateLimit",
868
+ "ChangeToken"
869
+ ],
870
+ "members":{
871
+ "Name":{"shape":"ResourceName"},
872
+ "MetricName":{"shape":"MetricName"},
873
+ "RateKey":{"shape":"RateKey"},
874
+ "RateLimit":{"shape":"RateLimit"},
875
+ "ChangeToken":{"shape":"ChangeToken"}
876
+ }
877
+ },
878
+ "CreateRateBasedRuleResponse":{
879
+ "type":"structure",
880
+ "members":{
881
+ "Rule":{"shape":"RateBasedRule"},
882
+ "ChangeToken":{"shape":"ChangeToken"}
883
+ }
884
+ },
765
885
  "CreateRuleRequest":{
766
886
  "type":"structure",
767
887
  "required":[
@@ -892,6 +1012,23 @@
892
1012
  "ChangeToken":{"shape":"ChangeToken"}
893
1013
  }
894
1014
  },
1015
+ "DeleteRateBasedRuleRequest":{
1016
+ "type":"structure",
1017
+ "required":[
1018
+ "RuleId",
1019
+ "ChangeToken"
1020
+ ],
1021
+ "members":{
1022
+ "RuleId":{"shape":"ResourceId"},
1023
+ "ChangeToken":{"shape":"ChangeToken"}
1024
+ }
1025
+ },
1026
+ "DeleteRateBasedRuleResponse":{
1027
+ "type":"structure",
1028
+ "members":{
1029
+ "ChangeToken":{"shape":"ChangeToken"}
1030
+ }
1031
+ },
895
1032
  "DeleteRuleRequest":{
896
1033
  "type":"structure",
897
1034
  "required":[
@@ -1035,6 +1172,34 @@
1035
1172
  "IPSet":{"shape":"IPSet"}
1036
1173
  }
1037
1174
  },
1175
+ "GetRateBasedRuleManagedKeysRequest":{
1176
+ "type":"structure",
1177
+ "required":["RuleId"],
1178
+ "members":{
1179
+ "RuleId":{"shape":"ResourceId"},
1180
+ "NextMarker":{"shape":"NextMarker"}
1181
+ }
1182
+ },
1183
+ "GetRateBasedRuleManagedKeysResponse":{
1184
+ "type":"structure",
1185
+ "members":{
1186
+ "ManagedKeys":{"shape":"ManagedKeys"},
1187
+ "NextMarker":{"shape":"NextMarker"}
1188
+ }
1189
+ },
1190
+ "GetRateBasedRuleRequest":{
1191
+ "type":"structure",
1192
+ "required":["RuleId"],
1193
+ "members":{
1194
+ "RuleId":{"shape":"ResourceId"}
1195
+ }
1196
+ },
1197
+ "GetRateBasedRuleResponse":{
1198
+ "type":"structure",
1199
+ "members":{
1200
+ "Rule":{"shape":"RateBasedRule"}
1201
+ }
1202
+ },
1038
1203
  "GetRuleRequest":{
1039
1204
  "type":"structure",
1040
1205
  "required":["RuleId"],
@@ -1248,6 +1413,20 @@
1248
1413
  "IPSets":{"shape":"IPSetSummaries"}
1249
1414
  }
1250
1415
  },
1416
+ "ListRateBasedRulesRequest":{
1417
+ "type":"structure",
1418
+ "members":{
1419
+ "NextMarker":{"shape":"NextMarker"},
1420
+ "Limit":{"shape":"PaginationLimit"}
1421
+ }
1422
+ },
1423
+ "ListRateBasedRulesResponse":{
1424
+ "type":"structure",
1425
+ "members":{
1426
+ "NextMarker":{"shape":"NextMarker"},
1427
+ "Rules":{"shape":"RuleSummaries"}
1428
+ }
1429
+ },
1251
1430
  "ListRulesRequest":{
1252
1431
  "type":"structure",
1253
1432
  "members":{
@@ -1318,6 +1497,11 @@
1318
1497
  "XssMatchSets":{"shape":"XssMatchSetSummaries"}
1319
1498
  }
1320
1499
  },
1500
+ "ManagedKey":{"type":"string"},
1501
+ "ManagedKeys":{
1502
+ "type":"list",
1503
+ "member":{"shape":"ManagedKey"}
1504
+ },
1321
1505
  "MatchFieldData":{"type":"string"},
1322
1506
  "MatchFieldType":{
1323
1507
  "type":"string",
@@ -1351,7 +1535,10 @@
1351
1535
  "SQL_INJECTION_MATCH_FIELD_TYPE",
1352
1536
  "BYTE_MATCH_TEXT_TRANSFORMATION",
1353
1537
  "BYTE_MATCH_POSITIONAL_CONSTRAINT",
1354
- "SIZE_CONSTRAINT_COMPARISON_OPERATOR"
1538
+ "SIZE_CONSTRAINT_COMPARISON_OPERATOR",
1539
+ "RATE_KEY",
1540
+ "RULE_TYPE",
1541
+ "NEXT_MARKER"
1355
1542
  ]
1356
1543
  },
1357
1544
  "ParameterExceptionParameter":{
@@ -1403,6 +1590,31 @@
1403
1590
  "type":"list",
1404
1591
  "member":{"shape":"Predicate"}
1405
1592
  },
1593
+ "RateBasedRule":{
1594
+ "type":"structure",
1595
+ "required":[
1596
+ "RuleId",
1597
+ "MatchPredicates",
1598
+ "RateKey",
1599
+ "RateLimit"
1600
+ ],
1601
+ "members":{
1602
+ "RuleId":{"shape":"ResourceId"},
1603
+ "Name":{"shape":"ResourceName"},
1604
+ "MetricName":{"shape":"MetricName"},
1605
+ "MatchPredicates":{"shape":"Predicates"},
1606
+ "RateKey":{"shape":"RateKey"},
1607
+ "RateLimit":{"shape":"RateLimit"}
1608
+ }
1609
+ },
1610
+ "RateKey":{
1611
+ "type":"string",
1612
+ "enum":["IP"]
1613
+ },
1614
+ "RateLimit":{
1615
+ "type":"long",
1616
+ "min":2000
1617
+ },
1406
1618
  "ResourceId":{
1407
1619
  "type":"string",
1408
1620
  "max":128,
@@ -1663,6 +1875,27 @@
1663
1875
  "ChangeToken":{"shape":"ChangeToken"}
1664
1876
  }
1665
1877
  },
1878
+ "UpdateRateBasedRuleRequest":{
1879
+ "type":"structure",
1880
+ "required":[
1881
+ "RuleId",
1882
+ "ChangeToken",
1883
+ "Updates",
1884
+ "RateLimit"
1885
+ ],
1886
+ "members":{
1887
+ "RuleId":{"shape":"ResourceId"},
1888
+ "ChangeToken":{"shape":"ChangeToken"},
1889
+ "Updates":{"shape":"RuleUpdates"},
1890
+ "RateLimit":{"shape":"RateLimit"}
1891
+ }
1892
+ },
1893
+ "UpdateRateBasedRuleResponse":{
1894
+ "type":"structure",
1895
+ "members":{
1896
+ "ChangeToken":{"shape":"ChangeToken"}
1897
+ }
1898
+ },
1666
1899
  "UpdateRuleRequest":{
1667
1900
  "type":"structure",
1668
1901
  "required":[
@@ -1852,6 +2085,13 @@
1852
2085
  "COUNT"
1853
2086
  ]
1854
2087
  },
2088
+ "WafRuleType":{
2089
+ "type":"string",
2090
+ "enum":[
2091
+ "REGULAR",
2092
+ "RATE_BASED"
2093
+ ]
2094
+ },
1855
2095
  "WebACL":{
1856
2096
  "type":"structure",
1857
2097
  "required":[
@@ -52,6 +52,7 @@ module Aws
52
52
  CognitoSync
53
53
  ConfigService
54
54
  CostandUsageReportService
55
+ DAX
55
56
  DataPipeline
56
57
  DatabaseMigrationService
57
58
  DeviceFarm
@@ -0,0 +1,6 @@
1
+ Aws.add_service(:DAX, {
2
+ api: "#{Aws::API_DIR}/dax/2017-04-19/api-2.json",
3
+ docs: "#{Aws::API_DIR}/dax/2017-04-19/docs-2.json",
4
+ examples: "#{Aws::API_DIR}/dax/2017-04-19/examples-1.json",
5
+ paginators: "#{Aws::API_DIR}/dax/2017-04-19/paginators-1.json",
6
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.10.0'
2
+ VERSION = '2.10.1'
3
3
  end
@@ -114,6 +114,10 @@
114
114
  "models": "cur/2017-01-06",
115
115
  "endpoint": "cur"
116
116
  },
117
+ "DAX": {
118
+ "models": "dax/2017-04-19",
119
+ "endpoint": "dax"
120
+ },
117
121
  "DataPipeline": {
118
122
  "models": "datapipeline/2012-10-29",
119
123
  "endpoint": "datapipeline"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.10.0
4
+ version: 2.10.1
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: 2017-06-20 00:00:00.000000000 Z
11
+ date: 2017-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath
@@ -148,6 +148,9 @@ files:
148
148
  - apis/cur/2017-01-06/paginators-1.json
149
149
  - apis/datapipeline/2012-10-29/api-2.json
150
150
  - apis/datapipeline/2012-10-29/paginators-1.json
151
+ - apis/dax/2017-04-19/api-2.json
152
+ - apis/dax/2017-04-19/examples-1.json
153
+ - apis/dax/2017-04-19/paginators-1.json
151
154
  - apis/devicefarm/2015-06-23/api-2.json
152
155
  - apis/devicefarm/2015-06-23/examples-1.json
153
156
  - apis/devicefarm/2015-06-23/paginators-1.json
@@ -479,6 +482,7 @@ files:
479
482
  - lib/aws-sdk-core/credentials.rb
480
483
  - lib/aws-sdk-core/databasemigrationservice.rb
481
484
  - lib/aws-sdk-core/datapipeline.rb
485
+ - lib/aws-sdk-core/dax.rb
482
486
  - lib/aws-sdk-core/deprecations.rb
483
487
  - lib/aws-sdk-core/devicefarm.rb
484
488
  - lib/aws-sdk-core/directconnect.rb