aws-sdk-core 2.11.436 → 2.11.437
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/apis/ec2/2016-11-15/api-2.json +6 -1
- data/apis/iot/2015-05-28/api-2.json +1 -1
- data/apis/kafka/2018-11-14/api-2.json +96 -1
- data/apis/kafka/2018-11-14/paginators-1.json +6 -0
- data/apis/ssm/2014-11-06/api-2.json +11 -4
- data/apis/storagegateway/2013-06-30/api-2.json +1 -0
- data/apis/workmail/2017-10-01/api-2.json +146 -2
- data/endpoints.json +36 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- 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: 774fe0f6e4bf92efc3eed7aaefb18e6034b353cc
|
4
|
+
data.tar.gz: 4133ad268e55d22caeae7179f9408b5c72858066
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcfe410b6e611da685e0c9147fb8b204ec46495112ed10896d0f2df341ade07844907359155d88ccb8c29883e1a57fdfc4bfce549ef0bb0aa8b3939b5b8d9da9
|
7
|
+
data.tar.gz: 92d7d2b2f87cdda93d81ea1947c69bcf0ab124cbf616ee5b99aad3fe8270ad05b16a95e819b9942db9d2e90e6bece97b66c577a5bb457dbdf84c84c147484519
|
@@ -6603,7 +6603,8 @@
|
|
6603
6603
|
"TrafficType":{"shape":"TrafficType"},
|
6604
6604
|
"LogDestinationType":{"shape":"LogDestinationType"},
|
6605
6605
|
"LogDestination":{"shape":"String"},
|
6606
|
-
"LogFormat":{"shape":"String"}
|
6606
|
+
"LogFormat":{"shape":"String"},
|
6607
|
+
"MaxAggregationInterval":{"shape":"Integer"}
|
6607
6608
|
}
|
6608
6609
|
},
|
6609
6610
|
"CreateFlowLogsResult":{
|
@@ -14580,6 +14581,10 @@
|
|
14580
14581
|
"LogFormat":{
|
14581
14582
|
"shape":"String",
|
14582
14583
|
"locationName":"logFormat"
|
14584
|
+
},
|
14585
|
+
"MaxAggregationInterval":{
|
14586
|
+
"shape":"Integer",
|
14587
|
+
"locationName":"maxAggregationInterval"
|
14583
14588
|
}
|
14584
14589
|
}
|
14585
14590
|
},
|
@@ -10353,7 +10353,7 @@
|
|
10353
10353
|
"members":{
|
10354
10354
|
"message":{"shape":"errorMessage"}
|
10355
10355
|
},
|
10356
|
-
"error":{"httpStatusCode":
|
10356
|
+
"error":{"httpStatusCode":400},
|
10357
10357
|
"exception":true
|
10358
10358
|
},
|
10359
10359
|
"TimedOutThings":{"type":"integer"},
|
@@ -396,6 +396,34 @@
|
|
396
396
|
}
|
397
397
|
]
|
398
398
|
},
|
399
|
+
"ListKafkaVersions": {
|
400
|
+
"name": "ListKafkaVersions",
|
401
|
+
"http": {
|
402
|
+
"method": "GET",
|
403
|
+
"requestUri": "/v1/kafka-versions",
|
404
|
+
"responseCode": 200
|
405
|
+
},
|
406
|
+
"input": {
|
407
|
+
"shape": "ListKafkaVersionsRequest"
|
408
|
+
},
|
409
|
+
"output": {
|
410
|
+
"shape": "ListKafkaVersionsResponse"
|
411
|
+
},
|
412
|
+
"errors": [
|
413
|
+
{
|
414
|
+
"shape": "BadRequestException"
|
415
|
+
},
|
416
|
+
{
|
417
|
+
"shape": "UnauthorizedException"
|
418
|
+
},
|
419
|
+
{
|
420
|
+
"shape": "InternalServerErrorException"
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"shape": "ForbiddenException"
|
424
|
+
}
|
425
|
+
]
|
426
|
+
},
|
399
427
|
"ListNodes": {
|
400
428
|
"name": "ListNodes",
|
401
429
|
"http": {
|
@@ -1377,6 +1405,26 @@
|
|
1377
1405
|
"httpStatusCode": 500
|
1378
1406
|
}
|
1379
1407
|
},
|
1408
|
+
"KafkaVersion": {
|
1409
|
+
"type": "structure",
|
1410
|
+
"members": {
|
1411
|
+
"Version": {
|
1412
|
+
"shape": "__string",
|
1413
|
+
"locationName": "version"
|
1414
|
+
},
|
1415
|
+
"Status": {
|
1416
|
+
"shape": "KafkaVersionStatus",
|
1417
|
+
"locationName": "status"
|
1418
|
+
}
|
1419
|
+
}
|
1420
|
+
},
|
1421
|
+
"KafkaVersionStatus": {
|
1422
|
+
"type": "string",
|
1423
|
+
"enum": [
|
1424
|
+
"ACTIVE",
|
1425
|
+
"DEPRECATED"
|
1426
|
+
]
|
1427
|
+
},
|
1380
1428
|
"ListClusterOperationsRequest": {
|
1381
1429
|
"type": "structure",
|
1382
1430
|
"members": {
|
@@ -1510,6 +1558,34 @@
|
|
1510
1558
|
}
|
1511
1559
|
}
|
1512
1560
|
},
|
1561
|
+
"ListKafkaVersionsRequest": {
|
1562
|
+
"type": "structure",
|
1563
|
+
"members": {
|
1564
|
+
"MaxResults": {
|
1565
|
+
"shape": "MaxResults",
|
1566
|
+
"location": "querystring",
|
1567
|
+
"locationName": "maxResults"
|
1568
|
+
},
|
1569
|
+
"NextToken": {
|
1570
|
+
"shape": "__string",
|
1571
|
+
"location": "querystring",
|
1572
|
+
"locationName": "nextToken"
|
1573
|
+
}
|
1574
|
+
}
|
1575
|
+
},
|
1576
|
+
"ListKafkaVersionsResponse": {
|
1577
|
+
"type": "structure",
|
1578
|
+
"members": {
|
1579
|
+
"KafkaVersions": {
|
1580
|
+
"shape": "__listOfKafkaVersion",
|
1581
|
+
"locationName": "kafkaVersions"
|
1582
|
+
},
|
1583
|
+
"NextToken": {
|
1584
|
+
"shape": "__string",
|
1585
|
+
"locationName": "nextToken"
|
1586
|
+
}
|
1587
|
+
}
|
1588
|
+
},
|
1513
1589
|
"ListNodesRequest": {
|
1514
1590
|
"type": "structure",
|
1515
1591
|
"members": {
|
@@ -1667,6 +1743,19 @@
|
|
1667
1743
|
"httpStatusCode": 503
|
1668
1744
|
}
|
1669
1745
|
},
|
1746
|
+
"StateInfo": {
|
1747
|
+
"type": "structure",
|
1748
|
+
"members": {
|
1749
|
+
"Code": {
|
1750
|
+
"shape": "__string",
|
1751
|
+
"locationName": "code"
|
1752
|
+
},
|
1753
|
+
"Message": {
|
1754
|
+
"shape": "__string",
|
1755
|
+
"locationName": "message"
|
1756
|
+
}
|
1757
|
+
}
|
1758
|
+
},
|
1670
1759
|
"StorageInfo": {
|
1671
1760
|
"type": "structure",
|
1672
1761
|
"members": {
|
@@ -2063,6 +2152,12 @@
|
|
2063
2152
|
"shape": "ConfigurationRevision"
|
2064
2153
|
}
|
2065
2154
|
},
|
2155
|
+
"__listOfKafkaVersion": {
|
2156
|
+
"type": "list",
|
2157
|
+
"member": {
|
2158
|
+
"shape": "KafkaVersion"
|
2159
|
+
}
|
2160
|
+
},
|
2066
2161
|
"__listOfNodeInfo": {
|
2067
2162
|
"type": "list",
|
2068
2163
|
"member": {
|
@@ -2110,4 +2205,4 @@
|
|
2110
2205
|
"timestampFormat": "iso8601"
|
2111
2206
|
}
|
2112
2207
|
}
|
2113
|
-
}
|
2208
|
+
}
|
@@ -12,6 +12,12 @@
|
|
12
12
|
"limit_key": "MaxResults",
|
13
13
|
"result_key": "Configurations"
|
14
14
|
},
|
15
|
+
"ListKafkaVersions": {
|
16
|
+
"input_token": "NextToken",
|
17
|
+
"output_token": "NextToken",
|
18
|
+
"limit_key": "MaxResults",
|
19
|
+
"result_key": "KafkaVersions"
|
20
|
+
},
|
15
21
|
"ListNodes": {
|
16
22
|
"input_token": "NextToken",
|
17
23
|
"output_token": "NextToken",
|
@@ -7507,10 +7507,7 @@
|
|
7507
7507
|
},
|
7508
7508
|
"PatchRule":{
|
7509
7509
|
"type":"structure",
|
7510
|
-
"required":[
|
7511
|
-
"PatchFilterGroup",
|
7512
|
-
"ApproveAfterDays"
|
7513
|
-
],
|
7510
|
+
"required":["PatchFilterGroup"],
|
7514
7511
|
"members":{
|
7515
7512
|
"PatchFilterGroup":{"shape":"PatchFilterGroup"},
|
7516
7513
|
"ComplianceLevel":{"shape":"PatchComplianceLevel"},
|
@@ -7518,6 +7515,10 @@
|
|
7518
7515
|
"shape":"ApproveAfterDays",
|
7519
7516
|
"box":true
|
7520
7517
|
},
|
7518
|
+
"ApproveUntilDate":{
|
7519
|
+
"shape":"PatchStringDate",
|
7520
|
+
"box":true
|
7521
|
+
},
|
7521
7522
|
"EnableNonSecurity":{
|
7522
7523
|
"shape":"Boolean",
|
7523
7524
|
"box":true
|
@@ -7593,6 +7594,12 @@
|
|
7593
7594
|
"ApprovalDate":{"shape":"DateTime"}
|
7594
7595
|
}
|
7595
7596
|
},
|
7597
|
+
"PatchStringDate":{
|
7598
|
+
"type":"string",
|
7599
|
+
"max":10,
|
7600
|
+
"min":1,
|
7601
|
+
"pattern":"^(\\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01]))$"
|
7602
|
+
},
|
7596
7603
|
"PatchTitle":{"type":"string"},
|
7597
7604
|
"PatchUnreportedNotApplicableCount":{"type":"integer"},
|
7598
7605
|
"PatchVendor":{"type":"string"},
|
@@ -65,7 +65,8 @@
|
|
65
65
|
{"shape":"MailDomainNotFoundException"},
|
66
66
|
{"shape":"MailDomainStateException"},
|
67
67
|
{"shape":"OrganizationNotFoundException"},
|
68
|
-
{"shape":"OrganizationStateException"}
|
68
|
+
{"shape":"OrganizationStateException"},
|
69
|
+
{"shape":"LimitExceededException"}
|
69
70
|
],
|
70
71
|
"idempotent":true
|
71
72
|
},
|
@@ -459,6 +460,18 @@
|
|
459
460
|
],
|
460
461
|
"idempotent":true
|
461
462
|
},
|
463
|
+
"ListTagsForResource":{
|
464
|
+
"name":"ListTagsForResource",
|
465
|
+
"http":{
|
466
|
+
"method":"POST",
|
467
|
+
"requestUri":"/"
|
468
|
+
},
|
469
|
+
"input":{"shape":"ListTagsForResourceRequest"},
|
470
|
+
"output":{"shape":"ListTagsForResourceResponse"},
|
471
|
+
"errors":[
|
472
|
+
{"shape":"ResourceNotFoundException"}
|
473
|
+
]
|
474
|
+
},
|
462
475
|
"ListUsers":{
|
463
476
|
"name":"ListUsers",
|
464
477
|
"http":{
|
@@ -535,6 +548,32 @@
|
|
535
548
|
],
|
536
549
|
"idempotent":true
|
537
550
|
},
|
551
|
+
"TagResource":{
|
552
|
+
"name":"TagResource",
|
553
|
+
"http":{
|
554
|
+
"method":"POST",
|
555
|
+
"requestUri":"/"
|
556
|
+
},
|
557
|
+
"input":{"shape":"TagResourceRequest"},
|
558
|
+
"output":{"shape":"TagResourceResponse"},
|
559
|
+
"errors":[
|
560
|
+
{"shape":"ResourceNotFoundException"},
|
561
|
+
{"shape":"TooManyTagsException"},
|
562
|
+
{"shape":"OrganizationStateException"}
|
563
|
+
]
|
564
|
+
},
|
565
|
+
"UntagResource":{
|
566
|
+
"name":"UntagResource",
|
567
|
+
"http":{
|
568
|
+
"method":"POST",
|
569
|
+
"requestUri":"/"
|
570
|
+
},
|
571
|
+
"input":{"shape":"UntagResourceRequest"},
|
572
|
+
"output":{"shape":"UntagResourceResponse"},
|
573
|
+
"errors":[
|
574
|
+
{"shape":"ResourceNotFoundException"}
|
575
|
+
]
|
576
|
+
},
|
538
577
|
"UpdateMailboxQuota":{
|
539
578
|
"name":"UpdateMailboxQuota",
|
540
579
|
"http":{
|
@@ -604,6 +643,11 @@
|
|
604
643
|
"type":"list",
|
605
644
|
"member":{"shape":"EmailAddress"}
|
606
645
|
},
|
646
|
+
"AmazonResourceName":{
|
647
|
+
"type":"string",
|
648
|
+
"max":1011,
|
649
|
+
"min":1
|
650
|
+
},
|
607
651
|
"AssociateDelegateToResourceRequest":{
|
608
652
|
"type":"structure",
|
609
653
|
"required":[
|
@@ -874,7 +918,8 @@
|
|
874
918
|
"DirectoryType":{"shape":"String"},
|
875
919
|
"DefaultMailDomain":{"shape":"String"},
|
876
920
|
"CompletedDate":{"shape":"Timestamp"},
|
877
|
-
"ErrorMessage":{"shape":"String"}
|
921
|
+
"ErrorMessage":{"shape":"String"},
|
922
|
+
"ARN":{"shape":"AmazonResourceName"}
|
878
923
|
}
|
879
924
|
},
|
880
925
|
"DescribeResourceRequest":{
|
@@ -1077,6 +1122,13 @@
|
|
1077
1122
|
},
|
1078
1123
|
"exception":true
|
1079
1124
|
},
|
1125
|
+
"LimitExceededException":{
|
1126
|
+
"type":"structure",
|
1127
|
+
"members":{
|
1128
|
+
"Message":{"shape":"String"}
|
1129
|
+
},
|
1130
|
+
"exception":true
|
1131
|
+
},
|
1080
1132
|
"ListAliasesRequest":{
|
1081
1133
|
"type":"structure",
|
1082
1134
|
"required":[
|
@@ -1203,6 +1255,19 @@
|
|
1203
1255
|
"NextToken":{"shape":"NextToken"}
|
1204
1256
|
}
|
1205
1257
|
},
|
1258
|
+
"ListTagsForResourceRequest":{
|
1259
|
+
"type":"structure",
|
1260
|
+
"required":["ResourceARN"],
|
1261
|
+
"members":{
|
1262
|
+
"ResourceARN":{"shape":"AmazonResourceName"}
|
1263
|
+
}
|
1264
|
+
},
|
1265
|
+
"ListTagsForResourceResponse":{
|
1266
|
+
"type":"structure",
|
1267
|
+
"members":{
|
1268
|
+
"Tags":{"shape":"TagList"}
|
1269
|
+
}
|
1270
|
+
},
|
1206
1271
|
"ListUsersRequest":{
|
1207
1272
|
"type":"structure",
|
1208
1273
|
"required":["OrganizationId"],
|
@@ -1443,6 +1508,13 @@
|
|
1443
1508
|
"min":1,
|
1444
1509
|
"pattern":"[\\w\\-.]+(@[a-zA-Z0-9.\\-]+\\.[a-zA-Z0-9]{2,})?"
|
1445
1510
|
},
|
1511
|
+
"ResourceNotFoundException":{
|
1512
|
+
"type":"structure",
|
1513
|
+
"members":{
|
1514
|
+
"Message":{"shape":"String"}
|
1515
|
+
},
|
1516
|
+
"exception":true
|
1517
|
+
},
|
1446
1518
|
"ResourceType":{
|
1447
1519
|
"type":"string",
|
1448
1520
|
"enum":[
|
@@ -1458,7 +1530,63 @@
|
|
1458
1530
|
"type":"string",
|
1459
1531
|
"max":256
|
1460
1532
|
},
|
1533
|
+
"Tag":{
|
1534
|
+
"type":"structure",
|
1535
|
+
"required":[
|
1536
|
+
"Key",
|
1537
|
+
"Value"
|
1538
|
+
],
|
1539
|
+
"members":{
|
1540
|
+
"Key":{"shape":"TagKey"},
|
1541
|
+
"Value":{"shape":"TagValue"}
|
1542
|
+
}
|
1543
|
+
},
|
1544
|
+
"TagKey":{
|
1545
|
+
"type":"string",
|
1546
|
+
"max":128,
|
1547
|
+
"min":1
|
1548
|
+
},
|
1549
|
+
"TagKeyList":{
|
1550
|
+
"type":"list",
|
1551
|
+
"member":{"shape":"TagKey"},
|
1552
|
+
"max":50,
|
1553
|
+
"min":0
|
1554
|
+
},
|
1555
|
+
"TagList":{
|
1556
|
+
"type":"list",
|
1557
|
+
"member":{"shape":"Tag"},
|
1558
|
+
"max":50,
|
1559
|
+
"min":0
|
1560
|
+
},
|
1561
|
+
"TagResourceRequest":{
|
1562
|
+
"type":"structure",
|
1563
|
+
"required":[
|
1564
|
+
"ResourceARN",
|
1565
|
+
"Tags"
|
1566
|
+
],
|
1567
|
+
"members":{
|
1568
|
+
"ResourceARN":{"shape":"AmazonResourceName"},
|
1569
|
+
"Tags":{"shape":"TagList"}
|
1570
|
+
}
|
1571
|
+
},
|
1572
|
+
"TagResourceResponse":{
|
1573
|
+
"type":"structure",
|
1574
|
+
"members":{
|
1575
|
+
}
|
1576
|
+
},
|
1577
|
+
"TagValue":{
|
1578
|
+
"type":"string",
|
1579
|
+
"max":256,
|
1580
|
+
"min":0
|
1581
|
+
},
|
1461
1582
|
"Timestamp":{"type":"timestamp"},
|
1583
|
+
"TooManyTagsException":{
|
1584
|
+
"type":"structure",
|
1585
|
+
"members":{
|
1586
|
+
"Message":{"shape":"String"}
|
1587
|
+
},
|
1588
|
+
"exception":true
|
1589
|
+
},
|
1462
1590
|
"UnsupportedOperationException":{
|
1463
1591
|
"type":"structure",
|
1464
1592
|
"members":{
|
@@ -1466,6 +1594,22 @@
|
|
1466
1594
|
},
|
1467
1595
|
"exception":true
|
1468
1596
|
},
|
1597
|
+
"UntagResourceRequest":{
|
1598
|
+
"type":"structure",
|
1599
|
+
"required":[
|
1600
|
+
"ResourceARN",
|
1601
|
+
"TagKeys"
|
1602
|
+
],
|
1603
|
+
"members":{
|
1604
|
+
"ResourceARN":{"shape":"AmazonResourceName"},
|
1605
|
+
"TagKeys":{"shape":"TagKeyList"}
|
1606
|
+
}
|
1607
|
+
},
|
1608
|
+
"UntagResourceResponse":{
|
1609
|
+
"type":"structure",
|
1610
|
+
"members":{
|
1611
|
+
}
|
1612
|
+
},
|
1469
1613
|
"UpdateMailboxQuotaRequest":{
|
1470
1614
|
"type":"structure",
|
1471
1615
|
"required":[
|
data/endpoints.json
CHANGED
@@ -71,6 +71,28 @@
|
|
71
71
|
"us-east-1" : { }
|
72
72
|
}
|
73
73
|
},
|
74
|
+
"access-analyzer" : {
|
75
|
+
"endpoints" : {
|
76
|
+
"ap-east-1" : { },
|
77
|
+
"ap-northeast-1" : { },
|
78
|
+
"ap-northeast-2" : { },
|
79
|
+
"ap-south-1" : { },
|
80
|
+
"ap-southeast-1" : { },
|
81
|
+
"ap-southeast-2" : { },
|
82
|
+
"ca-central-1" : { },
|
83
|
+
"eu-central-1" : { },
|
84
|
+
"eu-north-1" : { },
|
85
|
+
"eu-west-1" : { },
|
86
|
+
"eu-west-2" : { },
|
87
|
+
"eu-west-3" : { },
|
88
|
+
"me-south-1" : { },
|
89
|
+
"sa-east-1" : { },
|
90
|
+
"us-east-1" : { },
|
91
|
+
"us-east-2" : { },
|
92
|
+
"us-west-1" : { },
|
93
|
+
"us-west-2" : { }
|
94
|
+
}
|
95
|
+
},
|
74
96
|
"acm" : {
|
75
97
|
"endpoints" : {
|
76
98
|
"ap-east-1" : { },
|
@@ -1675,6 +1697,7 @@
|
|
1675
1697
|
"forecast" : {
|
1676
1698
|
"endpoints" : {
|
1677
1699
|
"ap-northeast-1" : { },
|
1700
|
+
"ap-northeast-2" : { },
|
1678
1701
|
"ap-southeast-1" : { },
|
1679
1702
|
"eu-west-1" : { },
|
1680
1703
|
"us-east-1" : { },
|
@@ -2265,6 +2288,7 @@
|
|
2265
2288
|
},
|
2266
2289
|
"mediaconnect" : {
|
2267
2290
|
"endpoints" : {
|
2291
|
+
"ap-east-1" : { },
|
2268
2292
|
"ap-northeast-1" : { },
|
2269
2293
|
"ap-northeast-2" : { },
|
2270
2294
|
"ap-south-1" : { },
|
@@ -4638,6 +4662,12 @@
|
|
4638
4662
|
}
|
4639
4663
|
},
|
4640
4664
|
"services" : {
|
4665
|
+
"access-analyzer" : {
|
4666
|
+
"endpoints" : {
|
4667
|
+
"us-gov-east-1" : { },
|
4668
|
+
"us-gov-west-1" : { }
|
4669
|
+
}
|
4670
|
+
},
|
4641
4671
|
"acm" : {
|
4642
4672
|
"endpoints" : {
|
4643
4673
|
"us-gov-east-1" : { },
|
@@ -4729,6 +4759,12 @@
|
|
4729
4759
|
"us-gov-west-1" : { }
|
4730
4760
|
}
|
4731
4761
|
},
|
4762
|
+
"batch" : {
|
4763
|
+
"endpoints" : {
|
4764
|
+
"us-gov-east-1" : { },
|
4765
|
+
"us-gov-west-1" : { }
|
4766
|
+
}
|
4767
|
+
},
|
4732
4768
|
"clouddirectory" : {
|
4733
4769
|
"endpoints" : {
|
4734
4770
|
"us-gov-west-1" : { }
|
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.437
|
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-
|
11
|
+
date: 2020-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|