aws-sdk-core 2.11.422 → 2.11.423
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/comprehend/2017-11-27/api-2.json +37 -5
- data/apis/ec2/2016-11-15/api-2.json +83 -0
- data/apis/mediapackage/2017-10-12/api-2.json +52 -3
- data/endpoints.json +2 -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: 64e3950721f19ee36167b43b9bf871d6a22536e1
|
4
|
+
data.tar.gz: b65be8e1428e4bec7c64fbc2ec8c6e1add005884
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba05f83a4d0263836f8fda98557c73dad1fd8d45c16df94ebeb4b2bb18bc033f26baac717b644ddccbd4d70ec29f84a141ed13b54dfabd3902906f6dca30bebc
|
7
|
+
data.tar.gz: '081385ed82f84caac45944dc1c88d9ad7e2980e5fd88c3d955c8f34837fb3728b1fd2e467e36591a51b702eb3e799a8dbd045461d8021484e4615e10e01ad5df'
|
@@ -971,7 +971,11 @@
|
|
971
971
|
"Accuracy":{"shape":"Double"},
|
972
972
|
"Precision":{"shape":"Double"},
|
973
973
|
"Recall":{"shape":"Double"},
|
974
|
-
"F1Score":{"shape":"Double"}
|
974
|
+
"F1Score":{"shape":"Double"},
|
975
|
+
"MicroPrecision":{"shape":"Double"},
|
976
|
+
"MicroRecall":{"shape":"Double"},
|
977
|
+
"MicroF1Score":{"shape":"Double"},
|
978
|
+
"HammingLoss":{"shape":"Double"}
|
975
979
|
}
|
976
980
|
},
|
977
981
|
"ClassifierMetadata":{
|
@@ -997,7 +1001,8 @@
|
|
997
1001
|
"ClassifyDocumentResponse":{
|
998
1002
|
"type":"structure",
|
999
1003
|
"members":{
|
1000
|
-
"Classes":{"shape":"ListOfClasses"}
|
1004
|
+
"Classes":{"shape":"ListOfClasses"},
|
1005
|
+
"Labels":{"shape":"ListOfLabels"}
|
1001
1006
|
}
|
1002
1007
|
},
|
1003
1008
|
"ClientRequestTokenString":{
|
@@ -1058,7 +1063,8 @@
|
|
1058
1063
|
},
|
1059
1064
|
"LanguageCode":{"shape":"LanguageCode"},
|
1060
1065
|
"VolumeKmsKeyId":{"shape":"KmsKeyId"},
|
1061
|
-
"VpcConfig":{"shape":"VpcConfig"}
|
1066
|
+
"VpcConfig":{"shape":"VpcConfig"},
|
1067
|
+
"Mode":{"shape":"DocumentClassifierMode"}
|
1062
1068
|
}
|
1063
1069
|
},
|
1064
1070
|
"CreateDocumentClassifierResponse":{
|
@@ -1413,9 +1419,17 @@
|
|
1413
1419
|
"type":"structure",
|
1414
1420
|
"required":["S3Uri"],
|
1415
1421
|
"members":{
|
1416
|
-
"S3Uri":{"shape":"S3Uri"}
|
1422
|
+
"S3Uri":{"shape":"S3Uri"},
|
1423
|
+
"LabelDelimiter":{"shape":"LabelDelimiter"}
|
1417
1424
|
}
|
1418
1425
|
},
|
1426
|
+
"DocumentClassifierMode":{
|
1427
|
+
"type":"string",
|
1428
|
+
"enum":[
|
1429
|
+
"MULTI_CLASS",
|
1430
|
+
"MULTI_LABEL"
|
1431
|
+
]
|
1432
|
+
},
|
1419
1433
|
"DocumentClassifierOutputDataConfig":{
|
1420
1434
|
"type":"structure",
|
1421
1435
|
"members":{
|
@@ -1439,13 +1453,21 @@
|
|
1439
1453
|
"ClassifierMetadata":{"shape":"ClassifierMetadata"},
|
1440
1454
|
"DataAccessRoleArn":{"shape":"IamRoleArn"},
|
1441
1455
|
"VolumeKmsKeyId":{"shape":"KmsKeyId"},
|
1442
|
-
"VpcConfig":{"shape":"VpcConfig"}
|
1456
|
+
"VpcConfig":{"shape":"VpcConfig"},
|
1457
|
+
"Mode":{"shape":"DocumentClassifierMode"}
|
1443
1458
|
}
|
1444
1459
|
},
|
1445
1460
|
"DocumentClassifierPropertiesList":{
|
1446
1461
|
"type":"list",
|
1447
1462
|
"member":{"shape":"DocumentClassifierProperties"}
|
1448
1463
|
},
|
1464
|
+
"DocumentLabel":{
|
1465
|
+
"type":"structure",
|
1466
|
+
"members":{
|
1467
|
+
"Name":{"shape":"String"},
|
1468
|
+
"Score":{"shape":"Float"}
|
1469
|
+
}
|
1470
|
+
},
|
1449
1471
|
"DominantLanguage":{
|
1450
1472
|
"type":"structure",
|
1451
1473
|
"members":{
|
@@ -1825,6 +1847,12 @@
|
|
1825
1847
|
},
|
1826
1848
|
"exception":true
|
1827
1849
|
},
|
1850
|
+
"LabelDelimiter":{
|
1851
|
+
"type":"string",
|
1852
|
+
"max":1,
|
1853
|
+
"min":1,
|
1854
|
+
"pattern":"^[ ~!@#$%^*\\-_+=|\\\\:;\\t>?/]$"
|
1855
|
+
},
|
1828
1856
|
"LanguageCode":{
|
1829
1857
|
"type":"string",
|
1830
1858
|
"enum":[
|
@@ -1983,6 +2011,10 @@
|
|
1983
2011
|
"type":"list",
|
1984
2012
|
"member":{"shape":"KeyPhrase"}
|
1985
2013
|
},
|
2014
|
+
"ListOfLabels":{
|
2015
|
+
"type":"list",
|
2016
|
+
"member":{"shape":"DocumentLabel"}
|
2017
|
+
},
|
1986
2018
|
"ListOfSyntaxTokens":{
|
1987
2019
|
"type":"list",
|
1988
2020
|
"member":{"shape":"SyntaxToken"}
|
@@ -3435,6 +3435,15 @@
|
|
3435
3435
|
"input":{"shape":"StartInstancesRequest"},
|
3436
3436
|
"output":{"shape":"StartInstancesResult"}
|
3437
3437
|
},
|
3438
|
+
"StartVpcEndpointServicePrivateDnsVerification":{
|
3439
|
+
"name":"StartVpcEndpointServicePrivateDnsVerification",
|
3440
|
+
"http":{
|
3441
|
+
"method":"POST",
|
3442
|
+
"requestUri":"/"
|
3443
|
+
},
|
3444
|
+
"input":{"shape":"StartVpcEndpointServicePrivateDnsVerificationRequest"},
|
3445
|
+
"output":{"shape":"StartVpcEndpointServicePrivateDnsVerificationResult"}
|
3446
|
+
},
|
3438
3447
|
"StopInstances":{
|
3439
3448
|
"name":"StopInstances",
|
3440
3449
|
"http":{
|
@@ -7674,6 +7683,7 @@
|
|
7674
7683
|
"members":{
|
7675
7684
|
"DryRun":{"shape":"Boolean"},
|
7676
7685
|
"AcceptanceRequired":{"shape":"Boolean"},
|
7686
|
+
"PrivateDnsName":{"shape":"String"},
|
7677
7687
|
"NetworkLoadBalancerArns":{
|
7678
7688
|
"shape":"ValueStringList",
|
7679
7689
|
"locationName":"NetworkLoadBalancerArn"
|
@@ -13194,6 +13204,14 @@
|
|
13194
13204
|
"locationName":"item"
|
13195
13205
|
}
|
13196
13206
|
},
|
13207
|
+
"DnsNameState":{
|
13208
|
+
"type":"string",
|
13209
|
+
"enum":[
|
13210
|
+
"pendingVerification",
|
13211
|
+
"verified",
|
13212
|
+
"failed"
|
13213
|
+
]
|
13214
|
+
},
|
13197
13215
|
"DnsServersOptionsModifyStructure":{
|
13198
13216
|
"type":"structure",
|
13199
13217
|
"members":{
|
@@ -18096,6 +18114,19 @@
|
|
18096
18114
|
},
|
18097
18115
|
"KeyPairName":{"type":"string"},
|
18098
18116
|
"KmsKeyId":{"type":"string"},
|
18117
|
+
"LastError":{
|
18118
|
+
"type":"structure",
|
18119
|
+
"members":{
|
18120
|
+
"Message":{
|
18121
|
+
"shape":"String",
|
18122
|
+
"locationName":"message"
|
18123
|
+
},
|
18124
|
+
"Code":{
|
18125
|
+
"shape":"String",
|
18126
|
+
"locationName":"code"
|
18127
|
+
}
|
18128
|
+
}
|
18129
|
+
},
|
18099
18130
|
"LaunchPermission":{
|
18100
18131
|
"type":"structure",
|
18101
18132
|
"members":{
|
@@ -20068,6 +20099,8 @@
|
|
20068
20099
|
"members":{
|
20069
20100
|
"DryRun":{"shape":"Boolean"},
|
20070
20101
|
"ServiceId":{"shape":"ServiceId"},
|
20102
|
+
"PrivateDnsName":{"shape":"String"},
|
20103
|
+
"RemovePrivateDnsName":{"shape":"Boolean"},
|
20071
20104
|
"AcceptanceRequired":{"shape":"Boolean"},
|
20072
20105
|
"AddNetworkLoadBalancerArns":{
|
20073
20106
|
"shape":"ValueStringList",
|
@@ -21581,6 +21614,27 @@
|
|
21581
21614
|
"Role"
|
21582
21615
|
]
|
21583
21616
|
},
|
21617
|
+
"PrivateDnsNameConfiguration":{
|
21618
|
+
"type":"structure",
|
21619
|
+
"members":{
|
21620
|
+
"State":{
|
21621
|
+
"shape":"DnsNameState",
|
21622
|
+
"locationName":"state"
|
21623
|
+
},
|
21624
|
+
"Type":{
|
21625
|
+
"shape":"String",
|
21626
|
+
"locationName":"type"
|
21627
|
+
},
|
21628
|
+
"Value":{
|
21629
|
+
"shape":"String",
|
21630
|
+
"locationName":"value"
|
21631
|
+
},
|
21632
|
+
"Name":{
|
21633
|
+
"shape":"String",
|
21634
|
+
"locationName":"name"
|
21635
|
+
}
|
21636
|
+
}
|
21637
|
+
},
|
21584
21638
|
"PrivateIpAddressConfigSet":{
|
21585
21639
|
"type":"list",
|
21586
21640
|
"member":{
|
@@ -24516,6 +24570,10 @@
|
|
24516
24570
|
"shape":"String",
|
24517
24571
|
"locationName":"privateDnsName"
|
24518
24572
|
},
|
24573
|
+
"PrivateDnsNameConfiguration":{
|
24574
|
+
"shape":"PrivateDnsNameConfiguration",
|
24575
|
+
"locationName":"privateDnsNameConfiguration"
|
24576
|
+
},
|
24519
24577
|
"Tags":{
|
24520
24578
|
"shape":"TagList",
|
24521
24579
|
"locationName":"tagSet"
|
@@ -24575,6 +24633,10 @@
|
|
24575
24633
|
"Tags":{
|
24576
24634
|
"shape":"TagList",
|
24577
24635
|
"locationName":"tagSet"
|
24636
|
+
},
|
24637
|
+
"PrivateDnsNameVerificationState":{
|
24638
|
+
"shape":"DnsNameState",
|
24639
|
+
"locationName":"privateDnsNameVerificationState"
|
24578
24640
|
}
|
24579
24641
|
}
|
24580
24642
|
},
|
@@ -25519,6 +25581,23 @@
|
|
25519
25581
|
}
|
25520
25582
|
}
|
25521
25583
|
},
|
25584
|
+
"StartVpcEndpointServicePrivateDnsVerificationRequest":{
|
25585
|
+
"type":"structure",
|
25586
|
+
"required":["ServiceId"],
|
25587
|
+
"members":{
|
25588
|
+
"DryRun":{"shape":"Boolean"},
|
25589
|
+
"ServiceId":{"shape":"ServiceId"}
|
25590
|
+
}
|
25591
|
+
},
|
25592
|
+
"StartVpcEndpointServicePrivateDnsVerificationResult":{
|
25593
|
+
"type":"structure",
|
25594
|
+
"members":{
|
25595
|
+
"ReturnValue":{
|
25596
|
+
"shape":"Boolean",
|
25597
|
+
"locationName":"return"
|
25598
|
+
}
|
25599
|
+
}
|
25600
|
+
},
|
25522
25601
|
"State":{
|
25523
25602
|
"type":"string",
|
25524
25603
|
"enum":[
|
@@ -28269,6 +28348,10 @@
|
|
28269
28348
|
"OwnerId":{
|
28270
28349
|
"shape":"String",
|
28271
28350
|
"locationName":"ownerId"
|
28351
|
+
},
|
28352
|
+
"LastError":{
|
28353
|
+
"shape":"LastError",
|
28354
|
+
"locationName":"lastError"
|
28272
28355
|
}
|
28273
28356
|
}
|
28274
28357
|
},
|
@@ -588,6 +588,23 @@
|
|
588
588
|
],
|
589
589
|
"type": "string"
|
590
590
|
},
|
591
|
+
"Authorization": {
|
592
|
+
"members": {
|
593
|
+
"CdnIdentifierSecret": {
|
594
|
+
"locationName": "cdnIdentifierSecret",
|
595
|
+
"shape": "__string"
|
596
|
+
},
|
597
|
+
"SecretsRoleArn": {
|
598
|
+
"locationName": "secretsRoleArn",
|
599
|
+
"shape": "__string"
|
600
|
+
}
|
601
|
+
},
|
602
|
+
"required": [
|
603
|
+
"SecretsRoleArn",
|
604
|
+
"CdnIdentifierSecret"
|
605
|
+
],
|
606
|
+
"type": "structure"
|
607
|
+
},
|
591
608
|
"Channel": {
|
592
609
|
"members": {
|
593
610
|
"Arn": {
|
@@ -841,6 +858,10 @@
|
|
841
858
|
},
|
842
859
|
"CreateOriginEndpointRequest": {
|
843
860
|
"members": {
|
861
|
+
"Authorization": {
|
862
|
+
"locationName": "authorization",
|
863
|
+
"shape": "Authorization"
|
864
|
+
},
|
844
865
|
"ChannelId": {
|
845
866
|
"locationName": "channelId",
|
846
867
|
"shape": "__string"
|
@@ -906,6 +927,10 @@
|
|
906
927
|
"locationName": "arn",
|
907
928
|
"shape": "__string"
|
908
929
|
},
|
930
|
+
"Authorization": {
|
931
|
+
"locationName": "authorization",
|
932
|
+
"shape": "Authorization"
|
933
|
+
},
|
909
934
|
"ChannelId": {
|
910
935
|
"locationName": "channelId",
|
911
936
|
"shape": "__string"
|
@@ -1183,6 +1208,10 @@
|
|
1183
1208
|
"locationName": "arn",
|
1184
1209
|
"shape": "__string"
|
1185
1210
|
},
|
1211
|
+
"Authorization": {
|
1212
|
+
"locationName": "authorization",
|
1213
|
+
"shape": "Authorization"
|
1214
|
+
},
|
1186
1215
|
"ChannelId": {
|
1187
1216
|
"locationName": "channelId",
|
1188
1217
|
"shape": "__string"
|
@@ -1737,6 +1766,10 @@
|
|
1737
1766
|
"locationName": "arn",
|
1738
1767
|
"shape": "__string"
|
1739
1768
|
},
|
1769
|
+
"Authorization": {
|
1770
|
+
"locationName": "authorization",
|
1771
|
+
"shape": "Authorization"
|
1772
|
+
},
|
1740
1773
|
"ChannelId": {
|
1741
1774
|
"locationName": "channelId",
|
1742
1775
|
"shape": "__string"
|
@@ -1798,6 +1831,10 @@
|
|
1798
1831
|
},
|
1799
1832
|
"OriginEndpointCreateParameters": {
|
1800
1833
|
"members": {
|
1834
|
+
"Authorization": {
|
1835
|
+
"locationName": "authorization",
|
1836
|
+
"shape": "Authorization"
|
1837
|
+
},
|
1801
1838
|
"ChannelId": {
|
1802
1839
|
"locationName": "channelId",
|
1803
1840
|
"shape": "__string"
|
@@ -1852,8 +1889,8 @@
|
|
1852
1889
|
}
|
1853
1890
|
},
|
1854
1891
|
"required": [
|
1855
|
-
"
|
1856
|
-
"
|
1892
|
+
"ChannelId",
|
1893
|
+
"Id"
|
1857
1894
|
],
|
1858
1895
|
"type": "structure"
|
1859
1896
|
},
|
@@ -1872,6 +1909,10 @@
|
|
1872
1909
|
},
|
1873
1910
|
"OriginEndpointUpdateParameters": {
|
1874
1911
|
"members": {
|
1912
|
+
"Authorization": {
|
1913
|
+
"locationName": "authorization",
|
1914
|
+
"shape": "Authorization"
|
1915
|
+
},
|
1875
1916
|
"CmafPackage": {
|
1876
1917
|
"locationName": "cmafPackage",
|
1877
1918
|
"shape": "CmafPackageCreateOrUpdateParameters"
|
@@ -2256,6 +2297,10 @@
|
|
2256
2297
|
},
|
2257
2298
|
"UpdateOriginEndpointRequest": {
|
2258
2299
|
"members": {
|
2300
|
+
"Authorization": {
|
2301
|
+
"locationName": "authorization",
|
2302
|
+
"shape": "Authorization"
|
2303
|
+
},
|
2259
2304
|
"CmafPackage": {
|
2260
2305
|
"locationName": "cmafPackage",
|
2261
2306
|
"shape": "CmafPackageCreateOrUpdateParameters"
|
@@ -2313,6 +2358,10 @@
|
|
2313
2358
|
"locationName": "arn",
|
2314
2359
|
"shape": "__string"
|
2315
2360
|
},
|
2361
|
+
"Authorization": {
|
2362
|
+
"locationName": "authorization",
|
2363
|
+
"shape": "Authorization"
|
2364
|
+
},
|
2316
2365
|
"ChannelId": {
|
2317
2366
|
"locationName": "channelId",
|
2318
2367
|
"shape": "__string"
|
@@ -2464,4 +2513,4 @@
|
|
2464
2513
|
"type": "string"
|
2465
2514
|
}
|
2466
2515
|
}
|
2467
|
-
}
|
2516
|
+
}
|
data/endpoints.json
CHANGED
@@ -2818,6 +2818,7 @@
|
|
2818
2818
|
},
|
2819
2819
|
"ram" : {
|
2820
2820
|
"endpoints" : {
|
2821
|
+
"ap-east-1" : { },
|
2821
2822
|
"ap-northeast-1" : { },
|
2822
2823
|
"ap-northeast-2" : { },
|
2823
2824
|
"ap-south-1" : { },
|
@@ -2829,6 +2830,7 @@
|
|
2829
2830
|
"eu-west-1" : { },
|
2830
2831
|
"eu-west-2" : { },
|
2831
2832
|
"eu-west-3" : { },
|
2833
|
+
"me-south-1" : { },
|
2832
2834
|
"sa-east-1" : { },
|
2833
2835
|
"us-east-1" : { },
|
2834
2836
|
"us-east-2" : { },
|
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.423
|
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-01-
|
11
|
+
date: 2020-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|