aws-sdk-core 2.11.488 → 2.11.489
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/frauddetector/2019-11-15/api-2.json +98 -6
- data/apis/opsworkscm/2016-11-01/paginators-1.json +25 -1
- data/endpoints.json +7 -3
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5eb03410d45d86c6ffa83d799af9a271a544296ae112e458cbe324697d3d8cb
|
4
|
+
data.tar.gz: 9efeb64659ac6fdc3e6c51609c844f813df309cec1d537a7ed20239e1080bb23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de48dc96cae056e74e68253d85058f01762d857d5a78326fd0d92ae29c7f81b74b1e2f0e362c98acb689a0c95ce6e79d5859436f0f9fa37c6ebf3e48d54dbd7c
|
7
|
+
data.tar.gz: 4c2b8ab5b1348d59cb789dcb628fa993bf5bd64fa6251565c8c280d77c780b9b7cf45492834b6356030ad20dfea6a54b8aa9f6d85cc1c2dfcd68c46d4612a43e
|
@@ -65,6 +65,7 @@
|
|
65
65
|
"output":{"shape":"CreateModelVersionResult"},
|
66
66
|
"errors":[
|
67
67
|
{"shape":"ValidationException"},
|
68
|
+
{"shape":"ResourceNotFoundException"},
|
68
69
|
{"shape":"InternalServerException"},
|
69
70
|
{"shape":"ThrottlingException"}
|
70
71
|
]
|
@@ -97,6 +98,21 @@
|
|
97
98
|
{"shape":"ThrottlingException"}
|
98
99
|
]
|
99
100
|
},
|
101
|
+
"DeleteDetector":{
|
102
|
+
"name":"DeleteDetector",
|
103
|
+
"http":{
|
104
|
+
"method":"POST",
|
105
|
+
"requestUri":"/"
|
106
|
+
},
|
107
|
+
"input":{"shape":"DeleteDetectorRequest"},
|
108
|
+
"output":{"shape":"DeleteDetectorResult"},
|
109
|
+
"errors":[
|
110
|
+
{"shape":"ConflictException"},
|
111
|
+
{"shape":"ValidationException"},
|
112
|
+
{"shape":"InternalServerException"},
|
113
|
+
{"shape":"ThrottlingException"}
|
114
|
+
]
|
115
|
+
},
|
100
116
|
"DeleteDetectorVersion":{
|
101
117
|
"name":"DeleteDetectorVersion",
|
102
118
|
"http":{
|
@@ -109,7 +125,8 @@
|
|
109
125
|
{"shape":"ValidationException"},
|
110
126
|
{"shape":"ResourceNotFoundException"},
|
111
127
|
{"shape":"InternalServerException"},
|
112
|
-
{"shape":"ThrottlingException"}
|
128
|
+
{"shape":"ThrottlingException"},
|
129
|
+
{"shape":"ConflictException"}
|
113
130
|
]
|
114
131
|
},
|
115
132
|
"DeleteEvent":{
|
@@ -125,6 +142,21 @@
|
|
125
142
|
{"shape":"ThrottlingException"}
|
126
143
|
]
|
127
144
|
},
|
145
|
+
"DeleteRuleVersion":{
|
146
|
+
"name":"DeleteRuleVersion",
|
147
|
+
"http":{
|
148
|
+
"method":"POST",
|
149
|
+
"requestUri":"/"
|
150
|
+
},
|
151
|
+
"input":{"shape":"DeleteRuleVersionRequest"},
|
152
|
+
"output":{"shape":"DeleteRuleVersionResult"},
|
153
|
+
"errors":[
|
154
|
+
{"shape":"ConflictException"},
|
155
|
+
{"shape":"ValidationException"},
|
156
|
+
{"shape":"InternalServerException"},
|
157
|
+
{"shape":"ThrottlingException"}
|
158
|
+
]
|
159
|
+
},
|
128
160
|
"DescribeDetector":{
|
129
161
|
"name":"DescribeDetector",
|
130
162
|
"http":{
|
@@ -503,6 +535,14 @@
|
|
503
535
|
"errors":{"shape":"BatchGetVariableErrorList"}
|
504
536
|
}
|
505
537
|
},
|
538
|
+
"ConflictException":{
|
539
|
+
"type":"structure",
|
540
|
+
"required":["message"],
|
541
|
+
"members":{
|
542
|
+
"message":{"shape":"string"}
|
543
|
+
},
|
544
|
+
"exception":true
|
545
|
+
},
|
506
546
|
"CreateDetectorVersionRequest":{
|
507
547
|
"type":"structure",
|
508
548
|
"required":[
|
@@ -514,7 +554,8 @@
|
|
514
554
|
"description":{"shape":"description"},
|
515
555
|
"externalModelEndpoints":{"shape":"ListOfStrings"},
|
516
556
|
"rules":{"shape":"RuleList"},
|
517
|
-
"modelVersions":{"shape":"ListOfModelVersions"}
|
557
|
+
"modelVersions":{"shape":"ListOfModelVersions"},
|
558
|
+
"ruleExecutionMode":{"shape":"RuleExecutionMode"}
|
518
559
|
}
|
519
560
|
},
|
520
561
|
"CreateDetectorVersionResult":{
|
@@ -614,6 +655,18 @@
|
|
614
655
|
"BOOLEAN"
|
615
656
|
]
|
616
657
|
},
|
658
|
+
"DeleteDetectorRequest":{
|
659
|
+
"type":"structure",
|
660
|
+
"required":["detectorId"],
|
661
|
+
"members":{
|
662
|
+
"detectorId":{"shape":"identifier"}
|
663
|
+
}
|
664
|
+
},
|
665
|
+
"DeleteDetectorResult":{
|
666
|
+
"type":"structure",
|
667
|
+
"members":{
|
668
|
+
}
|
669
|
+
},
|
617
670
|
"DeleteDetectorVersionRequest":{
|
618
671
|
"type":"structure",
|
619
672
|
"required":[
|
@@ -642,6 +695,24 @@
|
|
642
695
|
"members":{
|
643
696
|
}
|
644
697
|
},
|
698
|
+
"DeleteRuleVersionRequest":{
|
699
|
+
"type":"structure",
|
700
|
+
"required":[
|
701
|
+
"detectorId",
|
702
|
+
"ruleId",
|
703
|
+
"ruleVersion"
|
704
|
+
],
|
705
|
+
"members":{
|
706
|
+
"detectorId":{"shape":"identifier"},
|
707
|
+
"ruleId":{"shape":"identifier"},
|
708
|
+
"ruleVersion":{"shape":"nonEmptyString"}
|
709
|
+
}
|
710
|
+
},
|
711
|
+
"DeleteRuleVersionResult":{
|
712
|
+
"type":"structure",
|
713
|
+
"members":{
|
714
|
+
}
|
715
|
+
},
|
645
716
|
"DescribeDetectorRequest":{
|
646
717
|
"type":"structure",
|
647
718
|
"required":["detectorId"],
|
@@ -778,7 +849,8 @@
|
|
778
849
|
"rules":{"shape":"RuleList"},
|
779
850
|
"status":{"shape":"DetectorVersionStatus"},
|
780
851
|
"lastUpdatedTime":{"shape":"time"},
|
781
|
-
"createdTime":{"shape":"time"}
|
852
|
+
"createdTime":{"shape":"time"},
|
853
|
+
"ruleExecutionMode":{"shape":"RuleExecutionMode"}
|
782
854
|
}
|
783
855
|
},
|
784
856
|
"GetDetectorsRequest":{
|
@@ -883,7 +955,8 @@
|
|
883
955
|
"type":"structure",
|
884
956
|
"members":{
|
885
957
|
"outcomes":{"shape":"ListOfStrings"},
|
886
|
-
"modelScores":{"shape":"ListOfModelScores"}
|
958
|
+
"modelScores":{"shape":"ListOfModelScores"},
|
959
|
+
"ruleResults":{"shape":"ListOfRuleResults"}
|
887
960
|
}
|
888
961
|
},
|
889
962
|
"GetRulesRequest":{
|
@@ -962,6 +1035,10 @@
|
|
962
1035
|
"type":"list",
|
963
1036
|
"member":{"shape":"ModelVersion"}
|
964
1037
|
},
|
1038
|
+
"ListOfRuleResults":{
|
1039
|
+
"type":"list",
|
1040
|
+
"member":{"shape":"RuleResult"}
|
1041
|
+
},
|
965
1042
|
"ListOfStrings":{
|
966
1043
|
"type":"list",
|
967
1044
|
"member":{"shape":"string"}
|
@@ -1274,10 +1351,24 @@
|
|
1274
1351
|
"type":"list",
|
1275
1352
|
"member":{"shape":"RuleDetail"}
|
1276
1353
|
},
|
1354
|
+
"RuleExecutionMode":{
|
1355
|
+
"type":"string",
|
1356
|
+
"enum":[
|
1357
|
+
"ALL_MATCHED",
|
1358
|
+
"FIRST_MATCHED"
|
1359
|
+
]
|
1360
|
+
},
|
1277
1361
|
"RuleList":{
|
1278
1362
|
"type":"list",
|
1279
1363
|
"member":{"shape":"Rule"}
|
1280
1364
|
},
|
1365
|
+
"RuleResult":{
|
1366
|
+
"type":"structure",
|
1367
|
+
"members":{
|
1368
|
+
"ruleId":{"shape":"string"},
|
1369
|
+
"outcomes":{"shape":"ListOfStrings"}
|
1370
|
+
}
|
1371
|
+
},
|
1281
1372
|
"RulesMaxResults":{
|
1282
1373
|
"type":"integer",
|
1283
1374
|
"box":true,
|
@@ -1335,7 +1426,8 @@
|
|
1335
1426
|
"externalModelEndpoints":{"shape":"ListOfStrings"},
|
1336
1427
|
"rules":{"shape":"RuleList"},
|
1337
1428
|
"description":{"shape":"description"},
|
1338
|
-
"modelVersions":{"shape":"ListOfModelVersions"}
|
1429
|
+
"modelVersions":{"shape":"ListOfModelVersions"},
|
1430
|
+
"ruleExecutionMode":{"shape":"RuleExecutionMode"}
|
1339
1431
|
}
|
1340
1432
|
},
|
1341
1433
|
"UpdateDetectorVersionResult":{
|
@@ -1533,7 +1625,7 @@
|
|
1533
1625
|
"type":"string",
|
1534
1626
|
"max":512,
|
1535
1627
|
"min":1,
|
1536
|
-
"pattern":"^s3:\\/\\/
|
1628
|
+
"pattern":"^s3:\\/\\/(.+)$"
|
1537
1629
|
},
|
1538
1630
|
"string":{"type":"string"},
|
1539
1631
|
"time":{"type":"string"}
|
@@ -1,4 +1,28 @@
|
|
1
1
|
{
|
2
2
|
"pagination": {
|
3
|
+
"DescribeBackups": {
|
4
|
+
"input_token": "NextToken",
|
5
|
+
"limit_key": "MaxResults",
|
6
|
+
"output_token": "NextToken",
|
7
|
+
"result_key": "Backups"
|
8
|
+
},
|
9
|
+
"DescribeEvents": {
|
10
|
+
"input_token": "NextToken",
|
11
|
+
"limit_key": "MaxResults",
|
12
|
+
"output_token": "NextToken",
|
13
|
+
"result_key": "ServerEvents"
|
14
|
+
},
|
15
|
+
"DescribeServers": {
|
16
|
+
"input_token": "NextToken",
|
17
|
+
"limit_key": "MaxResults",
|
18
|
+
"output_token": "NextToken",
|
19
|
+
"result_key": "Servers"
|
20
|
+
},
|
21
|
+
"ListTagsForResource": {
|
22
|
+
"input_token": "NextToken",
|
23
|
+
"limit_key": "MaxResults",
|
24
|
+
"output_token": "NextToken",
|
25
|
+
"result_key": "Tags"
|
26
|
+
}
|
3
27
|
}
|
4
|
-
}
|
28
|
+
}
|
data/endpoints.json
CHANGED
@@ -1290,6 +1290,7 @@
|
|
1290
1290
|
"eu-central-1" : { },
|
1291
1291
|
"eu-north-1" : { },
|
1292
1292
|
"eu-west-1" : { },
|
1293
|
+
"eu-west-2" : { },
|
1293
1294
|
"us-east-1" : { },
|
1294
1295
|
"us-west-2" : { }
|
1295
1296
|
}
|
@@ -3190,6 +3191,7 @@
|
|
3190
3191
|
"eu-central-1" : { },
|
3191
3192
|
"eu-north-1" : { },
|
3192
3193
|
"eu-west-1" : { },
|
3194
|
+
"eu-west-2" : { },
|
3193
3195
|
"us-east-1" : { },
|
3194
3196
|
"us-west-2" : { }
|
3195
3197
|
}
|
@@ -6248,18 +6250,20 @@
|
|
6248
6250
|
},
|
6249
6251
|
"batch" : {
|
6250
6252
|
"endpoints" : {
|
6251
|
-
"us-gov-east-1" : {
|
6253
|
+
"fips-us-gov-east-1" : {
|
6252
6254
|
"credentialScope" : {
|
6253
6255
|
"region" : "us-gov-east-1"
|
6254
6256
|
},
|
6255
6257
|
"hostname" : "batch.us-gov-east-1.amazonaws.com"
|
6256
6258
|
},
|
6257
|
-
"us-gov-west-1" : {
|
6259
|
+
"fips-us-gov-west-1" : {
|
6258
6260
|
"credentialScope" : {
|
6259
6261
|
"region" : "us-gov-west-1"
|
6260
6262
|
},
|
6261
6263
|
"hostname" : "batch.us-gov-west-1.amazonaws.com"
|
6262
|
-
}
|
6264
|
+
},
|
6265
|
+
"us-gov-east-1" : { },
|
6266
|
+
"us-gov-west-1" : { }
|
6263
6267
|
}
|
6264
6268
|
},
|
6265
6269
|
"clouddirectory" : {
|
data/lib/aws-sdk-core/version.rb
CHANGED
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.11.
|
4
|
+
version: 2.11.489
|
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: 2020-04-
|
11
|
+
date: 2020-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|