aws-sdk-core 2.11.146 → 2.11.147

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: 2da1b7ec54ed46c98432bed67bfb38dfcb7ff6e1
4
- data.tar.gz: 4dbf3275c047c5b2e828213e9c06dc128e2209b9
3
+ metadata.gz: 144d2f39abc0b39851953d96b4bcb47b3625d600
4
+ data.tar.gz: 1aec830f434d3ff464cd82dfe5d29a019611ef50
5
5
  SHA512:
6
- metadata.gz: e499a2be086fd62fb723d5041f77f1e6619b63cefb497bed8e8794e8ffc8dcf2f6aebd47928a6c8a18a5bc89be7490c995303b23f03d515fc56ae96d5e03838b
7
- data.tar.gz: 9a6c89fdd63ff6115707358e526c202992293765751e8233ff5fc813e578050942c58ef70a7c13eacfc69fdb27dffdfc0bfe158da7feef7b9109c064ddb82566
6
+ metadata.gz: f4efb53f0451d6a0885b705ba102dc7e41186afb2c9cb1c1e20f8a3687fbf98f18e262b61cd081eebcb6d90f0bf03d4fdeb8d57a786b3d8a86b9b04afbfd5c78
7
+ data.tar.gz: 452eef56ca486ffb842ad29ecd71becd7e38b5c4e68d753ee9a09d27dbc500bc54c47ea6c010404769ea9e4d0d0f807e49510c1046fbcc39cfff01db62842860
@@ -958,7 +958,11 @@
958
958
  "type":"string",
959
959
  "enum":[
960
960
  "en",
961
- "es"
961
+ "es",
962
+ "fr",
963
+ "de",
964
+ "it",
965
+ "pt"
962
966
  ]
963
967
  },
964
968
  "ListDominantLanguageDetectionJobsRequest":{
@@ -1367,7 +1371,14 @@
1367
1371
  },
1368
1372
  "SyntaxLanguageCode":{
1369
1373
  "type":"string",
1370
- "enum":["en"]
1374
+ "enum":[
1375
+ "en",
1376
+ "es",
1377
+ "fr",
1378
+ "de",
1379
+ "it",
1380
+ "pt"
1381
+ ]
1371
1382
  },
1372
1383
  "SyntaxToken":{
1373
1384
  "type":"structure",
@@ -24,6 +24,21 @@
24
24
  {"shape":"InternalException"}
25
25
  ]
26
26
  },
27
+ "CancelElasticsearchServiceSoftwareUpdate":{
28
+ "name":"CancelElasticsearchServiceSoftwareUpdate",
29
+ "http":{
30
+ "method":"POST",
31
+ "requestUri":"/2015-01-01/es/serviceSoftwareUpdate/cancel"
32
+ },
33
+ "input":{"shape":"CancelElasticsearchServiceSoftwareUpdateRequest"},
34
+ "output":{"shape":"CancelElasticsearchServiceSoftwareUpdateResponse"},
35
+ "errors":[
36
+ {"shape":"BaseException"},
37
+ {"shape":"InternalException"},
38
+ {"shape":"ResourceNotFoundException"},
39
+ {"shape":"ValidationException"}
40
+ ]
41
+ },
27
42
  "CreateElasticsearchDomain":{
28
43
  "name":"CreateElasticsearchDomain",
29
44
  "http":{
@@ -295,6 +310,21 @@
295
310
  {"shape":"InternalException"}
296
311
  ]
297
312
  },
313
+ "StartElasticsearchServiceSoftwareUpdate":{
314
+ "name":"StartElasticsearchServiceSoftwareUpdate",
315
+ "http":{
316
+ "method":"POST",
317
+ "requestUri":"/2015-01-01/es/serviceSoftwareUpdate/start"
318
+ },
319
+ "input":{"shape":"StartElasticsearchServiceSoftwareUpdateRequest"},
320
+ "output":{"shape":"StartElasticsearchServiceSoftwareUpdateResponse"},
321
+ "errors":[
322
+ {"shape":"BaseException"},
323
+ {"shape":"InternalException"},
324
+ {"shape":"ResourceNotFoundException"},
325
+ {"shape":"ValidationException"}
326
+ ]
327
+ },
298
328
  "UpdateElasticsearchDomainConfig":{
299
329
  "name":"UpdateElasticsearchDomainConfig",
300
330
  "http":{
@@ -389,6 +419,19 @@
389
419
  "exception":true
390
420
  },
391
421
  "Boolean":{"type":"boolean"},
422
+ "CancelElasticsearchServiceSoftwareUpdateRequest":{
423
+ "type":"structure",
424
+ "required":["DomainName"],
425
+ "members":{
426
+ "DomainName":{"shape":"DomainName"}
427
+ }
428
+ },
429
+ "CancelElasticsearchServiceSoftwareUpdateResponse":{
430
+ "type":"structure",
431
+ "members":{
432
+ "ServiceSoftwareOptions":{"shape":"ServiceSoftwareOptions"}
433
+ }
434
+ },
392
435
  "CloudWatchLogsLogGroupArn":{"type":"string"},
393
436
  "CognitoOptions":{
394
437
  "type":"structure",
@@ -462,6 +505,17 @@
462
505
  "DomainStatus":{"shape":"ElasticsearchDomainStatus"}
463
506
  }
464
507
  },
508
+ "DeploymentCloseDateTimeStamp":{"type":"timestamp"},
509
+ "DeploymentStatus":{
510
+ "type":"string",
511
+ "enum":[
512
+ "PENDING_UPDATE",
513
+ "IN_PROGRESS",
514
+ "COMPLETED",
515
+ "NOT_ELIGIBLE",
516
+ "ELIGIBLE"
517
+ ]
518
+ },
465
519
  "DescribeElasticsearchDomainConfigRequest":{
466
520
  "type":"structure",
467
521
  "required":["DomainName"],
@@ -760,7 +814,8 @@
760
814
  "EncryptionAtRestOptions":{"shape":"EncryptionAtRestOptions"},
761
815
  "NodeToNodeEncryptionOptions":{"shape":"NodeToNodeEncryptionOptions"},
762
816
  "AdvancedOptions":{"shape":"AdvancedOptions"},
763
- "LogPublishingOptions":{"shape":"LogPublishingOptions"}
817
+ "LogPublishingOptions":{"shape":"LogPublishingOptions"},
818
+ "ServiceSoftwareOptions":{"shape":"ServiceSoftwareOptions"}
764
819
  }
765
820
  },
766
821
  "ElasticsearchDomainStatusList":{
@@ -1219,6 +1274,18 @@
1219
1274
  "max":2048,
1220
1275
  "min":20
1221
1276
  },
1277
+ "ServiceSoftwareOptions":{
1278
+ "type":"structure",
1279
+ "members":{
1280
+ "CurrentVersion":{"shape":"String"},
1281
+ "NewVersion":{"shape":"String"},
1282
+ "UpdateAvailable":{"shape":"Boolean"},
1283
+ "Cancellable":{"shape":"Boolean"},
1284
+ "UpdateStatus":{"shape":"DeploymentStatus"},
1285
+ "Description":{"shape":"String"},
1286
+ "AutomatedUpdateDate":{"shape":"DeploymentCloseDateTimeStamp"}
1287
+ }
1288
+ },
1222
1289
  "ServiceUrl":{"type":"string"},
1223
1290
  "SnapshotOptions":{
1224
1291
  "type":"structure",
@@ -1237,6 +1304,19 @@
1237
1304
  "Status":{"shape":"OptionStatus"}
1238
1305
  }
1239
1306
  },
1307
+ "StartElasticsearchServiceSoftwareUpdateRequest":{
1308
+ "type":"structure",
1309
+ "required":["DomainName"],
1310
+ "members":{
1311
+ "DomainName":{"shape":"DomainName"}
1312
+ }
1313
+ },
1314
+ "StartElasticsearchServiceSoftwareUpdateResponse":{
1315
+ "type":"structure",
1316
+ "members":{
1317
+ "ServiceSoftwareOptions":{"shape":"ServiceSoftwareOptions"}
1318
+ }
1319
+ },
1240
1320
  "StartTimestamp":{"type":"timestamp"},
1241
1321
  "StorageSubTypeName":{"type":"string"},
1242
1322
  "StorageType":{
@@ -28,6 +28,19 @@
28
28
  {"shape":"ConflictException"}
29
29
  ]
30
30
  },
31
+ "DeleteTranscriptionJob":{
32
+ "name":"DeleteTranscriptionJob",
33
+ "http":{
34
+ "method":"POST",
35
+ "requestUri":"/"
36
+ },
37
+ "input":{"shape":"DeleteTranscriptionJobRequest"},
38
+ "errors":[
39
+ {"shape":"LimitExceededException"},
40
+ {"shape":"BadRequestException"},
41
+ {"shape":"InternalFailureException"}
42
+ ]
43
+ },
31
44
  "DeleteVocabulary":{
32
45
  "name":"DeleteVocabulary",
33
46
  "http":{
@@ -172,6 +185,13 @@
172
185
  }
173
186
  },
174
187
  "DateTime":{"type":"timestamp"},
188
+ "DeleteTranscriptionJobRequest":{
189
+ "type":"structure",
190
+ "required":["TranscriptionJobName"],
191
+ "members":{
192
+ "TranscriptionJobName":{"shape":"TranscriptionJobName"}
193
+ }
194
+ },
175
195
  "DeleteVocabularyRequest":{
176
196
  "type":"structure",
177
197
  "required":["VocabularyName"],
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.146'
2
+ VERSION = '2.11.147'
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.146
4
+ version: 2.11.147
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-10-09 00:00:00.000000000 Z
11
+ date: 2018-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath