aws-sdk-core 2.11.188 → 2.11.189

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f1b9ae757e797d249e20f175aac562e2fec03830
4
- data.tar.gz: cc0f2fda1a3e4d43e7bead1b27951baef46d4ad7
3
+ metadata.gz: fc7c03bd131413c3a30840ef1beafbc3569cc40e
4
+ data.tar.gz: 8967098f0bb3fb15f507d364e5eafe60f2d65ecc
5
5
  SHA512:
6
- metadata.gz: 3c4a455b73382bf7e54f6c5b74091c489b2559783cd4f84c0ee2968db77803aa0bcbbd73e25e91e01b7fa9981e5076be337be5274c9c88bb85ec876245aa7ebe
7
- data.tar.gz: 532d30fff921da04671a7f3f37b382817e08a963726c677b10eda1a70cbc4d6d70804f89695b1405f17e9077e02b39b1cbbe327bbcd28f3cf3dbbd7f6b89d87b
6
+ metadata.gz: 00c733148f3a5685a48774710221758a5e44d0feb8b6d3ccf95da2fa4314542618413d22c2b3ff8060b5ccbddd30c4082d7ade1117e4e0596f2b3af926d43a42
7
+ data.tar.gz: 21c59715b4981c1bddee9b31eed25df296e55decd0acc3d462c47cca0027345aea17fa73a4ed9f0429d237570558e47400fc2fb289f8be4dd2b548358cf27ca6
@@ -94,6 +94,20 @@
94
94
  {"shape":"InternalServiceException"}
95
95
  ]
96
96
  },
97
+ "GetContactAttributes":{
98
+ "name":"GetContactAttributes",
99
+ "http":{
100
+ "method":"GET",
101
+ "requestUri":"/contact/attributes/{InstanceId}/{InitialContactId}"
102
+ },
103
+ "input":{"shape":"GetContactAttributesRequest"},
104
+ "output":{"shape":"GetContactAttributesResponse"},
105
+ "errors":[
106
+ {"shape":"InvalidRequestException"},
107
+ {"shape":"ResourceNotFoundException"},
108
+ {"shape":"InternalServiceException"}
109
+ ]
110
+ },
97
111
  "GetCurrentMetricData":{
98
112
  "name":"GetCurrentMetricData",
99
113
  "http":{
@@ -614,6 +628,31 @@
614
628
  "Channels":{"shape":"Channels"}
615
629
  }
616
630
  },
631
+ "GetContactAttributesRequest":{
632
+ "type":"structure",
633
+ "required":[
634
+ "InstanceId",
635
+ "InitialContactId"
636
+ ],
637
+ "members":{
638
+ "InstanceId":{
639
+ "shape":"InstanceId",
640
+ "location":"uri",
641
+ "locationName":"InstanceId"
642
+ },
643
+ "InitialContactId":{
644
+ "shape":"ContactId",
645
+ "location":"uri",
646
+ "locationName":"InitialContactId"
647
+ }
648
+ }
649
+ },
650
+ "GetContactAttributesResponse":{
651
+ "type":"structure",
652
+ "members":{
653
+ "Attributes":{"shape":"Attributes"}
654
+ }
655
+ },
617
656
  "GetCurrentMetricDataRequest":{
618
657
  "type":"structure",
619
658
  "required":[
@@ -72,6 +72,21 @@
72
72
  {"shape":"InternalServerError"}
73
73
  ]
74
74
  },
75
+ "DeleteLifecyclePolicy":{
76
+ "name":"DeleteLifecyclePolicy",
77
+ "http":{
78
+ "method":"POST",
79
+ "requestUri":"/"
80
+ },
81
+ "input":{"shape":"DeleteLifecyclePolicyInput"},
82
+ "output":{"shape":"DeleteLifecyclePolicyOutput"},
83
+ "errors":[
84
+ {"shape":"ContainerInUseException"},
85
+ {"shape":"ContainerNotFoundException"},
86
+ {"shape":"PolicyNotFoundException"},
87
+ {"shape":"InternalServerError"}
88
+ ]
89
+ },
75
90
  "DescribeContainer":{
76
91
  "name":"DescribeContainer",
77
92
  "http":{
@@ -115,6 +130,21 @@
115
130
  {"shape":"InternalServerError"}
116
131
  ]
117
132
  },
133
+ "GetLifecyclePolicy":{
134
+ "name":"GetLifecyclePolicy",
135
+ "http":{
136
+ "method":"POST",
137
+ "requestUri":"/"
138
+ },
139
+ "input":{"shape":"GetLifecyclePolicyInput"},
140
+ "output":{"shape":"GetLifecyclePolicyOutput"},
141
+ "errors":[
142
+ {"shape":"ContainerInUseException"},
143
+ {"shape":"ContainerNotFoundException"},
144
+ {"shape":"PolicyNotFoundException"},
145
+ {"shape":"InternalServerError"}
146
+ ]
147
+ },
118
148
  "ListContainers":{
119
149
  "name":"ListContainers",
120
150
  "http":{
@@ -154,6 +184,20 @@
154
184
  {"shape":"ContainerInUseException"},
155
185
  {"shape":"InternalServerError"}
156
186
  ]
187
+ },
188
+ "PutLifecyclePolicy":{
189
+ "name":"PutLifecyclePolicy",
190
+ "http":{
191
+ "method":"POST",
192
+ "requestUri":"/"
193
+ },
194
+ "input":{"shape":"PutLifecyclePolicyInput"},
195
+ "output":{"shape":"PutLifecyclePolicyOutput"},
196
+ "errors":[
197
+ {"shape":"ContainerInUseException"},
198
+ {"shape":"ContainerNotFoundException"},
199
+ {"shape":"InternalServerError"}
200
+ ]
157
201
  }
158
202
  },
159
203
  "shapes":{
@@ -165,11 +209,15 @@
165
209
  },
166
210
  "AllowedMethods":{
167
211
  "type":"list",
168
- "member":{"shape":"MethodName"}
212
+ "member":{"shape":"MethodName"},
213
+ "max":4,
214
+ "min":1
169
215
  },
170
216
  "AllowedOrigins":{
171
217
  "type":"list",
172
- "member":{"shape":"Origin"}
218
+ "member":{"shape":"Origin"},
219
+ "max":100,
220
+ "min":1
173
221
  },
174
222
  "Container":{
175
223
  "type":"structure",
@@ -207,7 +255,7 @@
207
255
  "type":"string",
208
256
  "max":255,
209
257
  "min":1,
210
- "pattern":"\\w+"
258
+ "pattern":"[\\w-]+"
211
259
  },
212
260
  "ContainerNotFoundException":{
213
261
  "type":"structure",
@@ -247,6 +295,10 @@
247
295
  },
248
296
  "CorsRule":{
249
297
  "type":"structure",
298
+ "required":[
299
+ "AllowedOrigins",
300
+ "AllowedHeaders"
301
+ ],
250
302
  "members":{
251
303
  "AllowedOrigins":{"shape":"AllowedOrigins"},
252
304
  "AllowedMethods":{"shape":"AllowedMethods"},
@@ -305,6 +357,18 @@
305
357
  "members":{
306
358
  }
307
359
  },
360
+ "DeleteLifecyclePolicyInput":{
361
+ "type":"structure",
362
+ "required":["ContainerName"],
363
+ "members":{
364
+ "ContainerName":{"shape":"ContainerName"}
365
+ }
366
+ },
367
+ "DeleteLifecyclePolicyOutput":{
368
+ "type":"structure",
369
+ "members":{
370
+ }
371
+ },
308
372
  "DescribeContainerInput":{
309
373
  "type":"structure",
310
374
  "members":{
@@ -362,6 +426,20 @@
362
426
  "CorsPolicy":{"shape":"CorsPolicy"}
363
427
  }
364
428
  },
429
+ "GetLifecyclePolicyInput":{
430
+ "type":"structure",
431
+ "required":["ContainerName"],
432
+ "members":{
433
+ "ContainerName":{"shape":"ContainerName"}
434
+ }
435
+ },
436
+ "GetLifecyclePolicyOutput":{
437
+ "type":"structure",
438
+ "required":["LifecyclePolicy"],
439
+ "members":{
440
+ "LifecyclePolicy":{"shape":"LifecyclePolicy"}
441
+ }
442
+ },
365
443
  "Header":{
366
444
  "type":"string",
367
445
  "max":8192,
@@ -376,6 +454,12 @@
376
454
  "exception":true,
377
455
  "fault":true
378
456
  },
457
+ "LifecyclePolicy":{
458
+ "type":"string",
459
+ "max":8192,
460
+ "min":0,
461
+ "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
462
+ },
379
463
  "LimitExceededException":{
380
464
  "type":"structure",
381
465
  "members":{
@@ -414,6 +498,8 @@
414
498
  },
415
499
  "Origin":{
416
500
  "type":"string",
501
+ "max":2048,
502
+ "min":1,
417
503
  "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
418
504
  },
419
505
  "PaginationToken":{
@@ -461,6 +547,22 @@
461
547
  "members":{
462
548
  }
463
549
  },
550
+ "PutLifecyclePolicyInput":{
551
+ "type":"structure",
552
+ "required":[
553
+ "ContainerName",
554
+ "LifecyclePolicy"
555
+ ],
556
+ "members":{
557
+ "ContainerName":{"shape":"ContainerName"},
558
+ "LifecyclePolicy":{"shape":"LifecyclePolicy"}
559
+ }
560
+ },
561
+ "PutLifecyclePolicyOutput":{
562
+ "type":"structure",
563
+ "members":{
564
+ }
565
+ },
464
566
  "TimeStamp":{"type":"timestamp"}
465
567
  }
466
568
  }
@@ -31,6 +31,9 @@
31
31
  "eu-central-1" : {
32
32
  "description" : "EU (Frankfurt)"
33
33
  },
34
+ "eu-north-1" : {
35
+ "description" : "EU (Stockholm)"
36
+ },
34
37
  "eu-west-1" : {
35
38
  "description" : "EU (Ireland)"
36
39
  },
@@ -71,6 +74,7 @@
71
74
  "ap-southeast-2" : { },
72
75
  "ca-central-1" : { },
73
76
  "eu-central-1" : { },
77
+ "eu-north-1" : { },
74
78
  "eu-west-1" : { },
75
79
  "eu-west-2" : { },
76
80
  "eu-west-3" : { },
@@ -144,6 +148,7 @@
144
148
  "ap-southeast-2" : { },
145
149
  "ca-central-1" : { },
146
150
  "eu-central-1" : { },
151
+ "eu-north-1" : { },
147
152
  "eu-west-1" : { },
148
153
  "eu-west-2" : { },
149
154
  "eu-west-3" : { },
@@ -170,6 +175,7 @@
170
175
  "ap-southeast-2" : { },
171
176
  "ca-central-1" : { },
172
177
  "eu-central-1" : { },
178
+ "eu-north-1" : { },
173
179
  "eu-west-1" : { },
174
180
  "eu-west-2" : { },
175
181
  "eu-west-3" : { },
@@ -235,6 +241,7 @@
235
241
  "ap-southeast-2" : { },
236
242
  "ca-central-1" : { },
237
243
  "eu-central-1" : { },
244
+ "eu-north-1" : { },
238
245
  "eu-west-1" : { },
239
246
  "eu-west-2" : { },
240
247
  "eu-west-3" : { },
@@ -333,6 +340,7 @@
333
340
  "endpoints" : {
334
341
  "ap-southeast-1" : { },
335
342
  "ap-southeast-2" : { },
343
+ "ca-central-1" : { },
336
344
  "eu-central-1" : { },
337
345
  "eu-west-1" : { },
338
346
  "eu-west-2" : { },
@@ -350,6 +358,7 @@
350
358
  "ap-southeast-2" : { },
351
359
  "ca-central-1" : { },
352
360
  "eu-central-1" : { },
361
+ "eu-north-1" : { },
353
362
  "eu-west-1" : { },
354
363
  "eu-west-2" : { },
355
364
  "eu-west-3" : { },
@@ -433,6 +442,7 @@
433
442
  "ap-southeast-2" : { },
434
443
  "ca-central-1" : { },
435
444
  "eu-central-1" : { },
445
+ "eu-north-1" : { },
436
446
  "eu-west-1" : { },
437
447
  "eu-west-2" : { },
438
448
  "eu-west-3" : { },
@@ -520,6 +530,7 @@
520
530
  "ap-southeast-2" : { },
521
531
  "ca-central-1" : { },
522
532
  "eu-central-1" : { },
533
+ "eu-north-1" : { },
523
534
  "eu-west-1" : { },
524
535
  "eu-west-2" : { },
525
536
  "eu-west-3" : { },
@@ -657,6 +668,7 @@
657
668
  "ap-southeast-2" : { },
658
669
  "ca-central-1" : { },
659
670
  "eu-central-1" : { },
671
+ "eu-north-1" : { },
660
672
  "eu-west-1" : { },
661
673
  "eu-west-2" : { },
662
674
  "eu-west-3" : { },
@@ -730,6 +742,7 @@
730
742
  "ap-southeast-2" : { },
731
743
  "ca-central-1" : { },
732
744
  "eu-central-1" : { },
745
+ "eu-north-1" : { },
733
746
  "eu-west-1" : { },
734
747
  "eu-west-2" : { },
735
748
  "eu-west-3" : { },
@@ -794,6 +807,7 @@
794
807
  "ap-southeast-2" : { },
795
808
  "ca-central-1" : { },
796
809
  "eu-central-1" : { },
810
+ "eu-north-1" : { },
797
811
  "eu-west-1" : { },
798
812
  "eu-west-2" : { },
799
813
  "eu-west-3" : { },
@@ -823,6 +837,7 @@
823
837
  "ap-southeast-2" : { },
824
838
  "ca-central-1" : { },
825
839
  "eu-central-1" : { },
840
+ "eu-north-1" : { },
826
841
  "eu-west-1" : { },
827
842
  "eu-west-2" : { },
828
843
  "eu-west-3" : { },
@@ -842,6 +857,7 @@
842
857
  "ap-southeast-2" : { },
843
858
  "ca-central-1" : { },
844
859
  "eu-central-1" : { },
860
+ "eu-north-1" : { },
845
861
  "eu-west-1" : { },
846
862
  "eu-west-2" : { },
847
863
  "eu-west-3" : { },
@@ -861,6 +877,7 @@
861
877
  "ap-southeast-2" : { },
862
878
  "ca-central-1" : { },
863
879
  "eu-central-1" : { },
880
+ "eu-north-1" : { },
864
881
  "eu-west-1" : { },
865
882
  "eu-west-2" : { },
866
883
  "eu-west-3" : { },
@@ -880,6 +897,7 @@
880
897
  "ap-southeast-2" : { },
881
898
  "ca-central-1" : { },
882
899
  "eu-central-1" : { },
900
+ "eu-north-1" : { },
883
901
  "eu-west-1" : { },
884
902
  "eu-west-2" : { },
885
903
  "eu-west-3" : { },
@@ -941,6 +959,7 @@
941
959
  "ap-southeast-2" : { },
942
960
  "ca-central-1" : { },
943
961
  "eu-central-1" : { },
962
+ "eu-north-1" : { },
944
963
  "eu-west-1" : { },
945
964
  "eu-west-2" : { },
946
965
  "eu-west-3" : { },
@@ -966,6 +985,7 @@
966
985
  "eu-central-1" : {
967
986
  "sslCommonName" : "{service}.{region}.{dnsSuffix}"
968
987
  },
988
+ "eu-north-1" : { },
969
989
  "eu-west-1" : { },
970
990
  "eu-west-2" : { },
971
991
  "eu-west-3" : { },
@@ -1016,6 +1036,7 @@
1016
1036
  "ap-southeast-2" : { },
1017
1037
  "ca-central-1" : { },
1018
1038
  "eu-central-1" : { },
1039
+ "eu-north-1" : { },
1019
1040
  "eu-west-1" : { },
1020
1041
  "eu-west-2" : { },
1021
1042
  "eu-west-3" : { },
@@ -1035,6 +1056,7 @@
1035
1056
  "ap-southeast-2" : { },
1036
1057
  "ca-central-1" : { },
1037
1058
  "eu-central-1" : { },
1059
+ "eu-north-1" : { },
1038
1060
  "eu-west-1" : { },
1039
1061
  "eu-west-2" : { },
1040
1062
  "eu-west-3" : { },
@@ -1104,6 +1126,7 @@
1104
1126
  "ap-southeast-2" : { },
1105
1127
  "ca-central-1" : { },
1106
1128
  "eu-central-1" : { },
1129
+ "eu-north-1" : { },
1107
1130
  "eu-west-1" : { },
1108
1131
  "eu-west-2" : { },
1109
1132
  "eu-west-3" : { },
@@ -1251,6 +1274,7 @@
1251
1274
  "ap-southeast-2" : { },
1252
1275
  "ca-central-1" : { },
1253
1276
  "eu-central-1" : { },
1277
+ "eu-north-1" : { },
1254
1278
  "eu-west-1" : { },
1255
1279
  "eu-west-2" : { },
1256
1280
  "eu-west-3" : { },
@@ -1287,6 +1311,7 @@
1287
1311
  "ap-southeast-2" : { },
1288
1312
  "ca-central-1" : { },
1289
1313
  "eu-central-1" : { },
1314
+ "eu-north-1" : { },
1290
1315
  "eu-west-1" : { },
1291
1316
  "eu-west-2" : { },
1292
1317
  "eu-west-3" : { },
@@ -1306,6 +1331,7 @@
1306
1331
  "ap-southeast-2" : { },
1307
1332
  "ca-central-1" : { },
1308
1333
  "eu-central-1" : { },
1334
+ "eu-north-1" : { },
1309
1335
  "eu-west-1" : { },
1310
1336
  "eu-west-2" : { },
1311
1337
  "eu-west-3" : { },
@@ -1342,6 +1368,7 @@
1342
1368
  "ap-southeast-2" : { },
1343
1369
  "ca-central-1" : { },
1344
1370
  "eu-central-1" : { },
1371
+ "eu-north-1" : { },
1345
1372
  "eu-west-1" : { },
1346
1373
  "eu-west-2" : { },
1347
1374
  "eu-west-3" : { },
@@ -1480,6 +1507,7 @@
1480
1507
  "ap-southeast-2" : { },
1481
1508
  "ca-central-1" : { },
1482
1509
  "eu-central-1" : { },
1510
+ "eu-north-1" : { },
1483
1511
  "eu-west-1" : { },
1484
1512
  "eu-west-2" : { },
1485
1513
  "eu-west-3" : { },
@@ -1623,6 +1651,7 @@
1623
1651
  "ap-southeast-2" : { },
1624
1652
  "ca-central-1" : { },
1625
1653
  "eu-central-1" : { },
1654
+ "eu-north-1" : { },
1626
1655
  "eu-west-1" : { },
1627
1656
  "eu-west-2" : { },
1628
1657
  "eu-west-3" : { },
@@ -1644,6 +1673,7 @@
1644
1673
  "ap-southeast-2" : { },
1645
1674
  "ca-central-1" : { },
1646
1675
  "eu-central-1" : { },
1676
+ "eu-north-1" : { },
1647
1677
  "eu-west-1" : { },
1648
1678
  "eu-west-2" : { },
1649
1679
  "eu-west-3" : { },
@@ -1683,6 +1713,13 @@
1683
1713
  "us-west-2" : { }
1684
1714
  }
1685
1715
  },
1716
+ "robomaker" : {
1717
+ "endpoints" : {
1718
+ "eu-west-1" : { },
1719
+ "us-east-1" : { },
1720
+ "us-west-2" : { }
1721
+ }
1722
+ },
1686
1723
  "route53" : {
1687
1724
  "endpoints" : {
1688
1725
  "aws-global" : {
@@ -1751,6 +1788,7 @@
1751
1788
  },
1752
1789
  "ca-central-1" : { },
1753
1790
  "eu-central-1" : { },
1791
+ "eu-north-1" : { },
1754
1792
  "eu-west-1" : {
1755
1793
  "hostname" : "s3.eu-west-1.amazonaws.com",
1756
1794
  "signatureVersions" : [ "s3", "s3v4" ]
@@ -1840,6 +1878,13 @@
1840
1878
  "hostname" : "s3-control.eu-central-1.amazonaws.com",
1841
1879
  "signatureVersions" : [ "s3v4" ]
1842
1880
  },
1881
+ "eu-north-1" : {
1882
+ "credentialScope" : {
1883
+ "region" : "eu-north-1"
1884
+ },
1885
+ "hostname" : "s3-control.eu-north-1.amazonaws.com",
1886
+ "signatureVersions" : [ "s3v4" ]
1887
+ },
1843
1888
  "eu-west-1" : {
1844
1889
  "credentialScope" : {
1845
1890
  "region" : "eu-west-1"
@@ -2157,6 +2202,7 @@
2157
2202
  "ap-southeast-2" : { },
2158
2203
  "ca-central-1" : { },
2159
2204
  "eu-central-1" : { },
2205
+ "eu-north-1" : { },
2160
2206
  "eu-west-1" : { },
2161
2207
  "eu-west-2" : { },
2162
2208
  "eu-west-3" : { },
@@ -2180,6 +2226,7 @@
2180
2226
  "ap-southeast-2" : { },
2181
2227
  "ca-central-1" : { },
2182
2228
  "eu-central-1" : { },
2229
+ "eu-north-1" : { },
2183
2230
  "eu-west-1" : { },
2184
2231
  "eu-west-2" : { },
2185
2232
  "eu-west-3" : { },
@@ -2225,6 +2272,7 @@
2225
2272
  "ap-southeast-2" : { },
2226
2273
  "ca-central-1" : { },
2227
2274
  "eu-central-1" : { },
2275
+ "eu-north-1" : { },
2228
2276
  "eu-west-1" : { },
2229
2277
  "eu-west-2" : { },
2230
2278
  "eu-west-3" : { },
@@ -2244,6 +2292,7 @@
2244
2292
  "ap-southeast-2" : { },
2245
2293
  "ca-central-1" : { },
2246
2294
  "eu-central-1" : { },
2295
+ "eu-north-1" : { },
2247
2296
  "eu-west-1" : { },
2248
2297
  "eu-west-2" : { },
2249
2298
  "us-east-1" : { },
@@ -2261,6 +2310,7 @@
2261
2310
  "ap-southeast-2" : { },
2262
2311
  "ca-central-1" : { },
2263
2312
  "eu-central-1" : { },
2313
+ "eu-north-1" : { },
2264
2314
  "eu-west-1" : { },
2265
2315
  "eu-west-2" : { },
2266
2316
  "eu-west-3" : { },
@@ -2286,6 +2336,7 @@
2286
2336
  "ap-southeast-2" : { },
2287
2337
  "ca-central-1" : { },
2288
2338
  "eu-central-1" : { },
2339
+ "eu-north-1" : { },
2289
2340
  "eu-west-1" : { },
2290
2341
  "eu-west-2" : { },
2291
2342
  "eu-west-3" : { },
@@ -2324,6 +2375,7 @@
2324
2375
  "aws-global" : { },
2325
2376
  "ca-central-1" : { },
2326
2377
  "eu-central-1" : { },
2378
+ "eu-north-1" : { },
2327
2379
  "eu-west-1" : { },
2328
2380
  "eu-west-2" : { },
2329
2381
  "eu-west-3" : { },
@@ -2373,6 +2425,7 @@
2373
2425
  "ap-southeast-2" : { },
2374
2426
  "ca-central-1" : { },
2375
2427
  "eu-central-1" : { },
2428
+ "eu-north-1" : { },
2376
2429
  "eu-west-1" : { },
2377
2430
  "eu-west-2" : { },
2378
2431
  "eu-west-3" : { },
@@ -2392,6 +2445,7 @@
2392
2445
  "ap-southeast-2" : { },
2393
2446
  "ca-central-1" : { },
2394
2447
  "eu-central-1" : { },
2448
+ "eu-north-1" : { },
2395
2449
  "eu-west-1" : { },
2396
2450
  "eu-west-2" : { },
2397
2451
  "eu-west-3" : { },
@@ -2516,6 +2570,7 @@
2516
2570
  "ap-southeast-2" : { },
2517
2571
  "ca-central-1" : { },
2518
2572
  "eu-central-1" : { },
2573
+ "eu-north-1" : { },
2519
2574
  "eu-west-1" : { },
2520
2575
  "eu-west-2" : { },
2521
2576
  "eu-west-3" : { },
@@ -3084,6 +3139,7 @@
3084
3139
  },
3085
3140
  "es" : {
3086
3141
  "endpoints" : {
3142
+ "us-gov-east-1" : { },
3087
3143
  "us-gov-west-1" : { }
3088
3144
  }
3089
3145
  },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.188'
2
+ VERSION = '2.11.189'
3
3
  end
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.188
4
+ version: 2.11.189
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: 2018-12-07 00:00:00.000000000 Z
11
+ date: 2018-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath