aws-sdk-core 2.11.439 → 2.11.440

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
  SHA1:
3
- metadata.gz: 8cb7291b1cc0dfc81f2ccdfb15d182de91255775
4
- data.tar.gz: 4fdb13600e09a7caccb8a5c6beb2ce713bac56ba
3
+ metadata.gz: 123e6068080ce20795b0e0ff5d7f73da33524e72
4
+ data.tar.gz: cc89fde4188fcf9c20826d98c262c695a70fcd18
5
5
  SHA512:
6
- metadata.gz: 944499166b84acacb549b169541e1e0292bc289321646a33490dd197c0b5e973458b05e69936f141e478dd011c2b8a956ec42f617a0d715aea27dec8bf9fb282
7
- data.tar.gz: ba526121b360057a98bc388d4668319825b1ec37f3b42b10b11cad12dd5b469f222e621d8c22b363f37eef5c88778effdb63c50c01772a03e7a844077a3e8399
6
+ metadata.gz: b80dbb1470695b1896e344db96dc4f3d6fd4461eabecf25099029b1fad6aeaa80b73d762992e3d0fe98c7b2d99da35ad443fceb085cdaea4b7098408db819e5d
7
+ data.tar.gz: bf43093aba64a9b8c78b59ecbae6a2a1ac70dcc1b2cb4479f38ba66ada877470d93b7550824124dfc8a73795ed65e2fc1e590716feeb1e5fa6e687206dbb38a1
@@ -795,7 +795,7 @@
795
795
  "AmiDistributionConfiguration":{
796
796
  "type":"structure",
797
797
  "members":{
798
- "name":{"shape":"NonEmptyString"},
798
+ "name":{"shape":"AmiNameString"},
799
799
  "description":{"shape":"NonEmptyString"},
800
800
  "amiTags":{"shape":"TagMap"},
801
801
  "launchPermission":{"shape":"LaunchPermissionConfiguration"}
@@ -805,6 +805,12 @@
805
805
  "type":"list",
806
806
  "member":{"shape":"Ami"}
807
807
  },
808
+ "AmiNameString":{
809
+ "type":"string",
810
+ "max":127,
811
+ "min":1,
812
+ "pattern":"^[-_A-Za-z0-9{][-_A-Za-z0-9\\s:{}]+[-_A-Za-z0-9}]$"
813
+ },
808
814
  "Arn":{"type":"string"},
809
815
  "ArnList":{
810
816
  "type":"list",
@@ -826,7 +832,10 @@
826
832
  ],
827
833
  "members":{
828
834
  "imageBuildVersionArn":{"shape":"ImageBuildVersionArn"},
829
- "clientToken":{"shape":"ClientToken"}
835
+ "clientToken":{
836
+ "shape":"ClientToken",
837
+ "idempotencyToken":true
838
+ }
830
839
  }
831
840
  },
832
841
  "CancelImageCreationResponse":{
@@ -876,7 +885,7 @@
876
885
  "type":"structure",
877
886
  "required":["componentArn"],
878
887
  "members":{
879
- "componentArn":{"shape":"ComponentBuildVersionArn"}
888
+ "componentArn":{"shape":"ComponentVersionArnOrBuildVersionArn"}
880
889
  }
881
890
  },
882
891
  "ComponentConfigurationList":{
@@ -932,6 +941,10 @@
932
941
  "type":"string",
933
942
  "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):component/[a-z0-9-_]+/\\d+\\.\\d+\\.\\d+$"
934
943
  },
944
+ "ComponentVersionArnOrBuildVersionArn":{
945
+ "type":"string",
946
+ "pattern":"^arn:aws[^:]*:imagebuilder:[^:]+:(?:\\d{12}|aws):component/[a-z0-9-_]+/(?:(?:(\\d+|x)\\.(\\d+|x)\\.(\\d+|x))|(?:\\d+\\.\\d+\\.\\d+/\\d+))$"
947
+ },
935
948
  "ComponentVersionList":{
936
949
  "type":"list",
937
950
  "member":{"shape":"ComponentVersion"}
@@ -1101,7 +1114,7 @@
1101
1114
  "logging":{"shape":"Logging"},
1102
1115
  "keyPair":{"shape":"NonEmptyString"},
1103
1116
  "terminateInstanceOnFailure":{"shape":"NullableBoolean"},
1104
- "snsTopicArn":{"shape":"NonEmptyString"},
1117
+ "snsTopicArn":{"shape":"SnsTopicArn"},
1105
1118
  "tags":{"shape":"TagMap"},
1106
1119
  "clientToken":{
1107
1120
  "shape":"ClientToken",
@@ -1309,6 +1322,11 @@
1309
1322
  "st1"
1310
1323
  ]
1311
1324
  },
1325
+ "EmptyString":{
1326
+ "type":"string",
1327
+ "max":0,
1328
+ "min":0
1329
+ },
1312
1330
  "ErrorMessage":{"type":"string"},
1313
1331
  "Filter":{
1314
1332
  "type":"structure",
@@ -1763,7 +1781,7 @@
1763
1781
  "deviceName":{"shape":"NonEmptyString"},
1764
1782
  "ebs":{"shape":"EbsInstanceBlockDeviceSpecification"},
1765
1783
  "virtualName":{"shape":"NonEmptyString"},
1766
- "noDevice":{"shape":"NonEmptyString"}
1784
+ "noDevice":{"shape":"EmptyString"}
1767
1785
  }
1768
1786
  },
1769
1787
  "InstanceBlockDeviceMappings":{
@@ -1912,6 +1930,7 @@
1912
1930
  },
1913
1931
  "ListImagePipelineImagesRequest":{
1914
1932
  "type":"structure",
1933
+ "required":["imagePipelineArn"],
1915
1934
  "members":{
1916
1935
  "imagePipelineArn":{"shape":"ImagePipelineArn"},
1917
1936
  "filters":{"shape":"FilterList"},
@@ -2201,6 +2220,10 @@
2201
2220
  "error":{"httpStatusCode":503},
2202
2221
  "exception":true
2203
2222
  },
2223
+ "SnsTopicArn":{
2224
+ "type":"string",
2225
+ "pattern":"^arn:aws[^:]*:sns:[^:]+:\\d{12}:[a-zA-Z0-9-_]{1,256}$"
2226
+ },
2204
2227
  "StartImagePipelineExecutionRequest":{
2205
2228
  "type":"structure",
2206
2229
  "required":[
@@ -2298,6 +2321,7 @@
2298
2321
  "type":"structure",
2299
2322
  "required":[
2300
2323
  "distributionConfigurationArn",
2324
+ "distributions",
2301
2325
  "clientToken"
2302
2326
  ],
2303
2327
  "members":{
@@ -2322,6 +2346,8 @@
2322
2346
  "type":"structure",
2323
2347
  "required":[
2324
2348
  "imagePipelineArn",
2349
+ "imageRecipeArn",
2350
+ "infrastructureConfigurationArn",
2325
2351
  "clientToken"
2326
2352
  ],
2327
2353
  "members":{
@@ -2351,6 +2377,7 @@
2351
2377
  "type":"structure",
2352
2378
  "required":[
2353
2379
  "infrastructureConfigurationArn",
2380
+ "instanceProfileName",
2354
2381
  "clientToken"
2355
2382
  ],
2356
2383
  "members":{
@@ -2363,7 +2390,7 @@
2363
2390
  "logging":{"shape":"Logging"},
2364
2391
  "keyPair":{"shape":"NonEmptyString"},
2365
2392
  "terminateInstanceOnFailure":{"shape":"NullableBoolean"},
2366
- "snsTopicArn":{"shape":"NonEmptyString"},
2393
+ "snsTopicArn":{"shape":"SnsTopicArn"},
2367
2394
  "clientToken":{
2368
2395
  "shape":"ClientToken",
2369
2396
  "idempotencyToken":true
@@ -58,6 +58,21 @@
58
58
  {"shape":"ThrottlingException"}
59
59
  ]
60
60
  },
61
+ "CancelSimulationJobBatch":{
62
+ "name":"CancelSimulationJobBatch",
63
+ "http":{
64
+ "method":"POST",
65
+ "requestUri":"/cancelSimulationJobBatch"
66
+ },
67
+ "input":{"shape":"CancelSimulationJobBatchRequest"},
68
+ "output":{"shape":"CancelSimulationJobBatchResponse"},
69
+ "errors":[
70
+ {"shape":"ResourceNotFoundException"},
71
+ {"shape":"InvalidParameterException"},
72
+ {"shape":"InternalServerException"},
73
+ {"shape":"ThrottlingException"}
74
+ ]
75
+ },
61
76
  "CreateDeploymentJob":{
62
77
  "name":"CreateDeploymentJob",
63
78
  "http":{
@@ -352,6 +367,20 @@
352
367
  {"shape":"ThrottlingException"}
353
368
  ]
354
369
  },
370
+ "DescribeSimulationJobBatch":{
371
+ "name":"DescribeSimulationJobBatch",
372
+ "http":{
373
+ "method":"POST",
374
+ "requestUri":"/describeSimulationJobBatch"
375
+ },
376
+ "input":{"shape":"DescribeSimulationJobBatchRequest"},
377
+ "output":{"shape":"DescribeSimulationJobBatchResponse"},
378
+ "errors":[
379
+ {"shape":"ResourceNotFoundException"},
380
+ {"shape":"InvalidParameterException"},
381
+ {"shape":"InternalServerException"}
382
+ ]
383
+ },
355
384
  "ListDeploymentJobs":{
356
385
  "name":"ListDeploymentJobs",
357
386
  "http":{
@@ -425,6 +454,19 @@
425
454
  {"shape":"InternalServerException"}
426
455
  ]
427
456
  },
457
+ "ListSimulationJobBatches":{
458
+ "name":"ListSimulationJobBatches",
459
+ "http":{
460
+ "method":"POST",
461
+ "requestUri":"/listSimulationJobBatches"
462
+ },
463
+ "input":{"shape":"ListSimulationJobBatchesRequest"},
464
+ "output":{"shape":"ListSimulationJobBatchesResponse"},
465
+ "errors":[
466
+ {"shape":"InvalidParameterException"},
467
+ {"shape":"InternalServerException"}
468
+ ]
469
+ },
428
470
  "ListSimulationJobs":{
429
471
  "name":"ListSimulationJobs",
430
472
  "http":{
@@ -486,6 +528,22 @@
486
528
  {"shape":"InternalServerException"}
487
529
  ]
488
530
  },
531
+ "StartSimulationJobBatch":{
532
+ "name":"StartSimulationJobBatch",
533
+ "http":{
534
+ "method":"POST",
535
+ "requestUri":"/startSimulationJobBatch"
536
+ },
537
+ "input":{"shape":"StartSimulationJobBatchRequest"},
538
+ "output":{"shape":"StartSimulationJobBatchResponse"},
539
+ "errors":[
540
+ {"shape":"InvalidParameterException"},
541
+ {"shape":"LimitExceededException"},
542
+ {"shape":"ThrottlingException"},
543
+ {"shape":"IdempotentParameterMismatchException"},
544
+ {"shape":"InternalServerException"}
545
+ ]
546
+ },
489
547
  "SyncDeploymentJob":{
490
548
  "name":"SyncDeploymentJob",
491
549
  "http":{
@@ -602,6 +660,14 @@
602
660
  "unprocessedJobs":{"shape":"Arns"}
603
661
  }
604
662
  },
663
+ "BatchPolicy":{
664
+ "type":"structure",
665
+ "members":{
666
+ "timeoutInSeconds":{"shape":"BatchTimeoutInSeconds"},
667
+ "maxConcurrency":{"shape":"MaxConcurrency"}
668
+ }
669
+ },
670
+ "BatchTimeoutInSeconds":{"type":"long"},
605
671
  "Boolean":{"type":"boolean"},
606
672
  "BoxedBoolean":{"type":"boolean"},
607
673
  "CancelDeploymentJobRequest":{
@@ -616,6 +682,18 @@
616
682
  "members":{
617
683
  }
618
684
  },
685
+ "CancelSimulationJobBatchRequest":{
686
+ "type":"structure",
687
+ "required":["batch"],
688
+ "members":{
689
+ "batch":{"shape":"Arn"}
690
+ }
691
+ },
692
+ "CancelSimulationJobBatchResponse":{
693
+ "type":"structure",
694
+ "members":{
695
+ }
696
+ },
619
697
  "CancelSimulationJobRequest":{
620
698
  "type":"structure",
621
699
  "required":["job"],
@@ -846,6 +924,11 @@
846
924
  "vpcConfig":{"shape":"VPCConfig"}
847
925
  }
848
926
  },
927
+ "CreateSimulationJobRequests":{
928
+ "type":"list",
929
+ "member":{"shape":"SimulationJobRequest"},
930
+ "min":1
931
+ },
849
932
  "CreateSimulationJobResponse":{
850
933
  "type":"structure",
851
934
  "members":{
@@ -1182,6 +1265,30 @@
1182
1265
  "tags":{"shape":"TagMap"}
1183
1266
  }
1184
1267
  },
1268
+ "DescribeSimulationJobBatchRequest":{
1269
+ "type":"structure",
1270
+ "required":["batch"],
1271
+ "members":{
1272
+ "batch":{"shape":"Arn"}
1273
+ }
1274
+ },
1275
+ "DescribeSimulationJobBatchResponse":{
1276
+ "type":"structure",
1277
+ "members":{
1278
+ "arn":{"shape":"Arn"},
1279
+ "status":{"shape":"SimulationJobBatchStatus"},
1280
+ "lastUpdatedAt":{"shape":"LastUpdatedAt"},
1281
+ "createdAt":{"shape":"CreatedAt"},
1282
+ "clientRequestToken":{"shape":"ClientRequestToken"},
1283
+ "batchPolicy":{"shape":"BatchPolicy"},
1284
+ "failureCode":{"shape":"SimulationJobBatchErrorCode"},
1285
+ "failureReason":{"shape":"GenericString"},
1286
+ "failedRequests":{"shape":"FailedCreateSimulationJobRequests"},
1287
+ "pendingRequests":{"shape":"CreateSimulationJobRequests"},
1288
+ "createdRequests":{"shape":"SimulationJobSummaries"},
1289
+ "tags":{"shape":"TagMap"}
1290
+ }
1291
+ },
1185
1292
  "DescribeSimulationJobRequest":{
1186
1293
  "type":"structure",
1187
1294
  "required":["job"],
@@ -1233,6 +1340,20 @@
1233
1340
  "min":1,
1234
1341
  "pattern":".*"
1235
1342
  },
1343
+ "FailedAt":{"type":"timestamp"},
1344
+ "FailedCreateSimulationJobRequest":{
1345
+ "type":"structure",
1346
+ "members":{
1347
+ "request":{"shape":"SimulationJobRequest"},
1348
+ "failureReason":{"shape":"GenericString"},
1349
+ "failureCode":{"shape":"SimulationJobErrorCode"},
1350
+ "failedAt":{"shape":"FailedAt"}
1351
+ }
1352
+ },
1353
+ "FailedCreateSimulationJobRequests":{
1354
+ "type":"list",
1355
+ "member":{"shape":"FailedCreateSimulationJobRequest"}
1356
+ },
1236
1357
  "FailureBehavior":{
1237
1358
  "type":"string",
1238
1359
  "enum":[
@@ -1298,6 +1419,7 @@
1298
1419
  "error":{"httpStatusCode":400},
1299
1420
  "exception":true
1300
1421
  },
1422
+ "Integer":{"type":"integer"},
1301
1423
  "InternalServerException":{
1302
1424
  "type":"structure",
1303
1425
  "members":{
@@ -1415,6 +1537,21 @@
1415
1537
  "nextToken":{"shape":"PaginationToken"}
1416
1538
  }
1417
1539
  },
1540
+ "ListSimulationJobBatchesRequest":{
1541
+ "type":"structure",
1542
+ "members":{
1543
+ "nextToken":{"shape":"PaginationToken"},
1544
+ "maxResults":{"shape":"MaxResults"},
1545
+ "filters":{"shape":"Filters"}
1546
+ }
1547
+ },
1548
+ "ListSimulationJobBatchesResponse":{
1549
+ "type":"structure",
1550
+ "members":{
1551
+ "simulationJobBatchSummaries":{"shape":"SimulationJobBatchSummaries"},
1552
+ "nextToken":{"shape":"PaginationToken"}
1553
+ }
1554
+ },
1418
1555
  "ListSimulationJobsRequest":{
1419
1556
  "type":"structure",
1420
1557
  "members":{
@@ -1455,6 +1592,7 @@
1455
1592
  "recordAllRosTopics":{"shape":"BoxedBoolean"}
1456
1593
  }
1457
1594
  },
1595
+ "MaxConcurrency":{"type":"integer"},
1458
1596
  "MaxResults":{"type":"integer"},
1459
1597
  "Name":{
1460
1598
  "type":"string",
@@ -1472,6 +1610,7 @@
1472
1610
  },
1473
1611
  "NonEmptyString":{
1474
1612
  "type":"string",
1613
+ "max":255,
1475
1614
  "min":1
1476
1615
  },
1477
1616
  "NonSystemPort":{
@@ -1853,6 +1992,40 @@
1853
1992
  "networkInterface":{"shape":"NetworkInterface"}
1854
1993
  }
1855
1994
  },
1995
+ "SimulationJobBatchErrorCode":{
1996
+ "type":"string",
1997
+ "enum":["InternalServiceError"]
1998
+ },
1999
+ "SimulationJobBatchStatus":{
2000
+ "type":"string",
2001
+ "enum":[
2002
+ "Pending",
2003
+ "InProgress",
2004
+ "Failed",
2005
+ "Completed",
2006
+ "Canceled",
2007
+ "Canceling",
2008
+ "Completing",
2009
+ "TimingOut",
2010
+ "TimedOut"
2011
+ ]
2012
+ },
2013
+ "SimulationJobBatchSummaries":{
2014
+ "type":"list",
2015
+ "member":{"shape":"SimulationJobBatchSummary"}
2016
+ },
2017
+ "SimulationJobBatchSummary":{
2018
+ "type":"structure",
2019
+ "members":{
2020
+ "arn":{"shape":"Arn"},
2021
+ "lastUpdatedAt":{"shape":"LastUpdatedAt"},
2022
+ "createdAt":{"shape":"CreatedAt"},
2023
+ "status":{"shape":"SimulationJobBatchStatus"},
2024
+ "failedRequestCount":{"shape":"Integer"},
2025
+ "pendingRequestCount":{"shape":"Integer"},
2026
+ "createdRequestCount":{"shape":"Integer"}
2027
+ }
2028
+ },
1856
2029
  "SimulationJobErrorCode":{
1857
2030
  "type":"string",
1858
2031
  "enum":[
@@ -1870,10 +2043,14 @@
1870
2043
  "InvalidBundleRobotApplication",
1871
2044
  "InvalidBundleSimulationApplication",
1872
2045
  "InvalidS3Resource",
2046
+ "LimitExceeded",
1873
2047
  "MismatchedEtag",
1874
2048
  "RobotApplicationVersionMismatchedEtag",
1875
2049
  "SimulationApplicationVersionMismatchedEtag",
1876
2050
  "ResourceNotFound",
2051
+ "RequestThrottled",
2052
+ "BatchTimedOut",
2053
+ "BatchCanceled",
1877
2054
  "InvalidInput",
1878
2055
  "WrongRegionS3Bucket",
1879
2056
  "WrongRegionS3Output",
@@ -1881,6 +2058,23 @@
1881
2058
  "WrongRegionSimulationApplication"
1882
2059
  ]
1883
2060
  },
2061
+ "SimulationJobRequest":{
2062
+ "type":"structure",
2063
+ "required":["maxJobDurationInSeconds"],
2064
+ "members":{
2065
+ "outputLocation":{"shape":"OutputLocation"},
2066
+ "loggingConfig":{"shape":"LoggingConfig"},
2067
+ "maxJobDurationInSeconds":{"shape":"JobDuration"},
2068
+ "iamRole":{"shape":"IamRole"},
2069
+ "failureBehavior":{"shape":"FailureBehavior"},
2070
+ "useDefaultApplications":{"shape":"BoxedBoolean"},
2071
+ "robotApplications":{"shape":"RobotApplicationConfigs"},
2072
+ "simulationApplications":{"shape":"SimulationApplicationConfigs"},
2073
+ "dataSources":{"shape":"DataSourceConfigs"},
2074
+ "vpcConfig":{"shape":"VPCConfig"},
2075
+ "tags":{"shape":"TagMap"}
2076
+ }
2077
+ },
1884
2078
  "SimulationJobStatus":{
1885
2079
  "type":"string",
1886
2080
  "enum":[
@@ -1962,6 +2156,32 @@
1962
2156
  "type":"list",
1963
2157
  "member":{"shape":"Source"}
1964
2158
  },
2159
+ "StartSimulationJobBatchRequest":{
2160
+ "type":"structure",
2161
+ "required":["createSimulationJobRequests"],
2162
+ "members":{
2163
+ "clientRequestToken":{"shape":"ClientRequestToken"},
2164
+ "batchPolicy":{"shape":"BatchPolicy"},
2165
+ "createSimulationJobRequests":{"shape":"CreateSimulationJobRequests"},
2166
+ "tags":{"shape":"TagMap"}
2167
+ }
2168
+ },
2169
+ "StartSimulationJobBatchResponse":{
2170
+ "type":"structure",
2171
+ "members":{
2172
+ "arn":{"shape":"Arn"},
2173
+ "status":{"shape":"SimulationJobBatchStatus"},
2174
+ "createdAt":{"shape":"CreatedAt"},
2175
+ "clientRequestToken":{"shape":"ClientRequestToken"},
2176
+ "batchPolicy":{"shape":"BatchPolicy"},
2177
+ "failureCode":{"shape":"SimulationJobBatchErrorCode"},
2178
+ "failureReason":{"shape":"GenericString"},
2179
+ "failedRequests":{"shape":"FailedCreateSimulationJobRequests"},
2180
+ "pendingRequests":{"shape":"CreateSimulationJobRequests"},
2181
+ "createdRequests":{"shape":"SimulationJobSummaries"},
2182
+ "tags":{"shape":"TagMap"}
2183
+ }
2184
+ },
1965
2185
  "Subnets":{
1966
2186
  "type":"list",
1967
2187
  "member":{"shape":"NonEmptyString"},
@@ -3,32 +3,44 @@
3
3
  "ListDeploymentJobs": {
4
4
  "input_token": "nextToken",
5
5
  "output_token": "nextToken",
6
- "limit_key": "maxResults"
6
+ "limit_key": "maxResults",
7
+ "result_key": "deploymentJobs"
7
8
  },
8
9
  "ListFleets": {
9
10
  "input_token": "nextToken",
10
11
  "output_token": "nextToken",
11
- "limit_key": "maxResults"
12
+ "limit_key": "maxResults",
13
+ "result_key": "fleetDetails"
12
14
  },
13
15
  "ListRobotApplications": {
14
16
  "input_token": "nextToken",
15
17
  "output_token": "nextToken",
16
- "limit_key": "maxResults"
18
+ "limit_key": "maxResults",
19
+ "result_key": "robotApplicationSummaries"
17
20
  },
18
21
  "ListRobots": {
19
22
  "input_token": "nextToken",
20
23
  "output_token": "nextToken",
21
- "limit_key": "maxResults"
24
+ "limit_key": "maxResults",
25
+ "result_key": "robots"
22
26
  },
23
27
  "ListSimulationApplications": {
24
28
  "input_token": "nextToken",
25
29
  "output_token": "nextToken",
26
- "limit_key": "maxResults"
30
+ "limit_key": "maxResults",
31
+ "result_key": "simulationApplicationSummaries"
32
+ },
33
+ "ListSimulationJobBatches": {
34
+ "input_token": "nextToken",
35
+ "output_token": "nextToken",
36
+ "limit_key": "maxResults",
37
+ "result_key": "simulationJobBatchSummaries"
27
38
  },
28
39
  "ListSimulationJobs": {
29
40
  "input_token": "nextToken",
30
41
  "output_token": "nextToken",
31
- "limit_key": "maxResults"
42
+ "limit_key": "maxResults",
43
+ "result_key": "simulationJobSummaries"
32
44
  }
33
45
  }
34
46
  }
@@ -2036,6 +2036,7 @@
2036
2036
  },
2037
2037
  "iotsecuredtunneling" : {
2038
2038
  "endpoints" : {
2039
+ "ap-east-1" : { },
2039
2040
  "ap-northeast-1" : { },
2040
2041
  "ap-northeast-2" : { },
2041
2042
  "ap-south-1" : { },
@@ -2047,6 +2048,7 @@
2047
2048
  "eu-west-1" : { },
2048
2049
  "eu-west-2" : { },
2049
2050
  "eu-west-3" : { },
2051
+ "me-south-1" : { },
2050
2052
  "sa-east-1" : { },
2051
2053
  "us-east-1" : { },
2052
2054
  "us-east-2" : { },
@@ -2450,6 +2452,7 @@
2450
2452
  },
2451
2453
  "mq" : {
2452
2454
  "endpoints" : {
2455
+ "ap-east-1" : { },
2453
2456
  "ap-northeast-1" : { },
2454
2457
  "ap-northeast-2" : { },
2455
2458
  "ap-south-1" : { },
@@ -2485,6 +2488,7 @@
2485
2488
  },
2486
2489
  "hostname" : "mq-fips.us-west-2.amazonaws.com"
2487
2490
  },
2491
+ "me-south-1" : { },
2488
2492
  "sa-east-1" : { },
2489
2493
  "us-east-1" : { },
2490
2494
  "us-east-2" : { },
@@ -4568,7 +4572,8 @@
4568
4572
  },
4569
4573
  "storagegateway" : {
4570
4574
  "endpoints" : {
4571
- "cn-north-1" : { }
4575
+ "cn-north-1" : { },
4576
+ "cn-northwest-1" : { }
4572
4577
  }
4573
4578
  },
4574
4579
  "streams.dynamodb" : {
@@ -4938,6 +4943,7 @@
4938
4943
  },
4939
4944
  "elasticfilesystem" : {
4940
4945
  "endpoints" : {
4946
+ "us-gov-east-1" : { },
4941
4947
  "us-gov-west-1" : { }
4942
4948
  }
4943
4949
  },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.439'
2
+ VERSION = '2.11.440'
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.439
4
+ version: 2.11.440
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-02-06 00:00:00.000000000 Z
11
+ date: 2020-02-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath