aws-sdk-core 2.11.424 → 2.11.425

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: 45c245afe2d9752c5f7839f25a181dfab8d7f86f
4
- data.tar.gz: 3229959568c23f686abb9e9ed2d580e6f53ef531
3
+ metadata.gz: ddbf1922d575486594680f7e175a3ad1501873a9
4
+ data.tar.gz: 7117f14faa38552522fe7575c69c9c787521f4c5
5
5
  SHA512:
6
- metadata.gz: 1255f87c54166240f29e624a94b88fd67bbd908c2ccec6ee7ff9aead9c6ec1b8720b88b3edcd0339b15ccc302a7190ee4b303b5eccf1323501d0b592ce5805ab
7
- data.tar.gz: 8a825312a566423210f6d8ced208c507336355c2d8e492d76d31c0d49f0d20bbf2d234b99bb88927a10506b6548ae4c0184232c567ef226fa6a804c6c672b760
6
+ metadata.gz: e67845e97753d1e6eac42c16d554f0b91334ce75b5d6a2a561bda1e5803b665c29aa9afc6b7e6850ef6a5a9b63af4835d8f99cef8290701d9f0a963e3eec2366
7
+ data.tar.gz: 06aebd9c41c6ed3475a76d1085f46089a9beedc323329637d25ad93947a89662bb0d7e2361570833aca5ec6aeebd56d70d76abee52159896640370bec20972f3
@@ -177,6 +177,21 @@
177
177
  {"shape":"InternalErrorException"}
178
178
  ]
179
179
  },
180
+ "ListTagsForResource":{
181
+ "name":"ListTagsForResource",
182
+ "http":{
183
+ "method":"POST",
184
+ "requestUri":"/"
185
+ },
186
+ "input":{"shape":"ListTagsForResourceRequest"},
187
+ "output":{"shape":"ListTagsForResourceResponse"},
188
+ "errors":[
189
+ {"shape":"ResourceNotFoundException"},
190
+ {"shape":"InvalidOperationException"},
191
+ {"shape":"InternalErrorException"},
192
+ {"shape":"InvalidInputException"}
193
+ ]
194
+ },
180
195
  "PutNotificationChannel":{
181
196
  "name":"PutNotificationChannel",
182
197
  "http":{
@@ -206,6 +221,37 @@
206
221
  {"shape":"InternalErrorException"},
207
222
  {"shape":"InvalidTypeException"}
208
223
  ]
224
+ },
225
+ "TagResource":{
226
+ "name":"TagResource",
227
+ "http":{
228
+ "method":"POST",
229
+ "requestUri":"/"
230
+ },
231
+ "input":{"shape":"TagResourceRequest"},
232
+ "output":{"shape":"TagResourceResponse"},
233
+ "errors":[
234
+ {"shape":"ResourceNotFoundException"},
235
+ {"shape":"InvalidOperationException"},
236
+ {"shape":"InternalErrorException"},
237
+ {"shape":"InvalidInputException"},
238
+ {"shape":"LimitExceededException"}
239
+ ]
240
+ },
241
+ "UntagResource":{
242
+ "name":"UntagResource",
243
+ "http":{
244
+ "method":"POST",
245
+ "requestUri":"/"
246
+ },
247
+ "input":{"shape":"UntagResourceRequest"},
248
+ "output":{"shape":"UntagResourceResponse"},
249
+ "errors":[
250
+ {"shape":"ResourceNotFoundException"},
251
+ {"shape":"InvalidOperationException"},
252
+ {"shape":"InternalErrorException"},
253
+ {"shape":"InvalidInputException"}
254
+ ]
209
255
  }
210
256
  },
211
257
  "shapes":{
@@ -470,6 +516,19 @@
470
516
  "NextToken":{"shape":"PaginationToken"}
471
517
  }
472
518
  },
519
+ "ListTagsForResourceRequest":{
520
+ "type":"structure",
521
+ "required":["ResourceArn"],
522
+ "members":{
523
+ "ResourceArn":{"shape":"ResourceArn"}
524
+ }
525
+ },
526
+ "ListTagsForResourceResponse":{
527
+ "type":"structure",
528
+ "members":{
529
+ "TagList":{"shape":"TagList"}
530
+ }
531
+ },
473
532
  "ManagedServiceData":{
474
533
  "type":"string",
475
534
  "max":1024,
@@ -486,6 +545,7 @@
486
545
  },
487
546
  "PaginationToken":{
488
547
  "type":"string",
548
+ "max":4096,
489
549
  "min":1,
490
550
  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
491
551
  },
@@ -590,7 +650,8 @@
590
650
  "type":"structure",
591
651
  "required":["Policy"],
592
652
  "members":{
593
- "Policy":{"shape":"Policy"}
653
+ "Policy":{"shape":"Policy"},
654
+ "TagList":{"shape":"TagList"}
594
655
  }
595
656
  },
596
657
  "PutPolicyResponse":{
@@ -633,10 +694,21 @@
633
694
  "type":"structure",
634
695
  "required":["Key"],
635
696
  "members":{
636
- "Key":{"shape":"TagKey"},
637
- "Value":{"shape":"TagValue"}
697
+ "Key":{"shape":"ResourceTagKey"},
698
+ "Value":{"shape":"ResourceTagValue"}
638
699
  }
639
700
  },
701
+ "ResourceTagKey":{
702
+ "type":"string",
703
+ "max":128,
704
+ "min":1,
705
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
706
+ },
707
+ "ResourceTagValue":{
708
+ "type":"string",
709
+ "max":256,
710
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
711
+ },
640
712
  "ResourceTags":{
641
713
  "type":"list",
642
714
  "member":{"shape":"ResourceTag"},
@@ -671,18 +743,74 @@
671
743
  "SECURITY_GROUPS_USAGE_AUDIT"
672
744
  ]
673
745
  },
746
+ "Tag":{
747
+ "type":"structure",
748
+ "required":[
749
+ "Key",
750
+ "Value"
751
+ ],
752
+ "members":{
753
+ "Key":{"shape":"TagKey"},
754
+ "Value":{"shape":"TagValue"}
755
+ }
756
+ },
674
757
  "TagKey":{
675
758
  "type":"string",
676
759
  "max":128,
677
760
  "min":1,
678
761
  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
679
762
  },
763
+ "TagKeyList":{
764
+ "type":"list",
765
+ "member":{"shape":"TagKey"},
766
+ "max":200,
767
+ "min":0
768
+ },
769
+ "TagList":{
770
+ "type":"list",
771
+ "member":{"shape":"Tag"},
772
+ "max":200,
773
+ "min":0
774
+ },
775
+ "TagResourceRequest":{
776
+ "type":"structure",
777
+ "required":[
778
+ "ResourceArn",
779
+ "TagList"
780
+ ],
781
+ "members":{
782
+ "ResourceArn":{"shape":"ResourceArn"},
783
+ "TagList":{"shape":"TagList"}
784
+ }
785
+ },
786
+ "TagResourceResponse":{
787
+ "type":"structure",
788
+ "members":{
789
+ }
790
+ },
680
791
  "TagValue":{
681
792
  "type":"string",
682
793
  "max":256,
794
+ "min":0,
683
795
  "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
684
796
  },
685
797
  "TimeStamp":{"type":"timestamp"},
798
+ "UntagResourceRequest":{
799
+ "type":"structure",
800
+ "required":[
801
+ "ResourceArn",
802
+ "TagKeys"
803
+ ],
804
+ "members":{
805
+ "ResourceArn":{"shape":"ResourceArn"},
806
+ "TagKeys":{"shape":"TagKeyList"}
807
+ }
808
+ },
809
+ "UntagResourceResponse":{
810
+ "type":"structure",
811
+ "members":{
812
+ }
813
+ },
686
814
  "ViolationReason":{
687
815
  "type":"string",
688
816
  "enum":[
@@ -26,6 +26,20 @@
26
26
  {"shape":"InternalServerException"}
27
27
  ]
28
28
  },
29
+ "DescribeTextTranslationJob":{
30
+ "name":"DescribeTextTranslationJob",
31
+ "http":{
32
+ "method":"POST",
33
+ "requestUri":"/"
34
+ },
35
+ "input":{"shape":"DescribeTextTranslationJobRequest"},
36
+ "output":{"shape":"DescribeTextTranslationJobResponse"},
37
+ "errors":[
38
+ {"shape":"ResourceNotFoundException"},
39
+ {"shape":"TooManyRequestsException"},
40
+ {"shape":"InternalServerException"}
41
+ ]
42
+ },
29
43
  "GetTerminology":{
30
44
  "name":"GetTerminology",
31
45
  "http":{
@@ -70,6 +84,51 @@
70
84
  {"shape":"InternalServerException"}
71
85
  ]
72
86
  },
87
+ "ListTextTranslationJobs":{
88
+ "name":"ListTextTranslationJobs",
89
+ "http":{
90
+ "method":"POST",
91
+ "requestUri":"/"
92
+ },
93
+ "input":{"shape":"ListTextTranslationJobsRequest"},
94
+ "output":{"shape":"ListTextTranslationJobsResponse"},
95
+ "errors":[
96
+ {"shape":"InvalidRequestException"},
97
+ {"shape":"TooManyRequestsException"},
98
+ {"shape":"InvalidFilterException"},
99
+ {"shape":"InternalServerException"}
100
+ ]
101
+ },
102
+ "StartTextTranslationJob":{
103
+ "name":"StartTextTranslationJob",
104
+ "http":{
105
+ "method":"POST",
106
+ "requestUri":"/"
107
+ },
108
+ "input":{"shape":"StartTextTranslationJobRequest"},
109
+ "output":{"shape":"StartTextTranslationJobResponse"},
110
+ "errors":[
111
+ {"shape":"TooManyRequestsException"},
112
+ {"shape":"UnsupportedLanguagePairException"},
113
+ {"shape":"InvalidRequestException"},
114
+ {"shape":"ResourceNotFoundException"},
115
+ {"shape":"InternalServerException"}
116
+ ]
117
+ },
118
+ "StopTextTranslationJob":{
119
+ "name":"StopTextTranslationJob",
120
+ "http":{
121
+ "method":"POST",
122
+ "requestUri":"/"
123
+ },
124
+ "input":{"shape":"StopTextTranslationJobRequest"},
125
+ "output":{"shape":"StopTextTranslationJobResponse"},
126
+ "errors":[
127
+ {"shape":"ResourceNotFoundException"},
128
+ {"shape":"TooManyRequestsException"},
129
+ {"shape":"InternalServerException"}
130
+ ]
131
+ },
73
132
  "TranslateText":{
74
133
  "name":"TranslateText",
75
134
  "http":{
@@ -108,6 +167,17 @@
108
167
  "min":1,
109
168
  "pattern":"[\\P{M}\\p{M}]{1,5000}"
110
169
  },
170
+ "ClientTokenString":{
171
+ "type":"string",
172
+ "max":64,
173
+ "min":1,
174
+ "pattern":"^[a-zA-Z0-9-]+$"
175
+ },
176
+ "ContentType":{
177
+ "type":"string",
178
+ "max":256,
179
+ "pattern":"^[-\\w.]+\\/[-\\w.+]+$"
180
+ },
111
181
  "DeleteTerminologyRequest":{
112
182
  "type":"structure",
113
183
  "required":["Name"],
@@ -115,6 +185,19 @@
115
185
  "Name":{"shape":"ResourceName"}
116
186
  }
117
187
  },
188
+ "DescribeTextTranslationJobRequest":{
189
+ "type":"structure",
190
+ "required":["JobId"],
191
+ "members":{
192
+ "JobId":{"shape":"JobId"}
193
+ }
194
+ },
195
+ "DescribeTextTranslationJobResponse":{
196
+ "type":"structure",
197
+ "members":{
198
+ "TextTranslationJobProperties":{"shape":"TextTranslationJobProperties"}
199
+ }
200
+ },
118
201
  "Description":{
119
202
  "type":"string",
120
203
  "max":256,
@@ -143,7 +226,7 @@
143
226
  "type":"string",
144
227
  "max":400,
145
228
  "min":1,
146
- "pattern":"(arn:aws((-us-gov)|(-cn))?:kms:)?([a-z]{2}-[a-z]+-\\d:)?(\\d{12}:)?(((key/)?[a-zA-Z0-9-_]+)|(alias/[a-zA-Z0-9:/_-]+))"
229
+ "pattern":"(arn:aws((-us-gov)|(-iso)|(-iso-b)|(-cn))?:kms:)?([a-z]{2}-[a-z]+(-[a-z]+)?-\\d:)?(\\d{12}:)?(((key/)?[a-zA-Z0-9-_]+)|(alias/[a-zA-Z0-9:/_-]+))"
147
230
  },
148
231
  "EncryptionKeyType":{
149
232
  "type":"string",
@@ -167,6 +250,12 @@
167
250
  "TerminologyDataLocation":{"shape":"TerminologyDataLocation"}
168
251
  }
169
252
  },
253
+ "IamRoleArn":{
254
+ "type":"string",
255
+ "max":2048,
256
+ "min":20,
257
+ "pattern":"arn:aws(-[^:]+)?:iam::[0-9]{12}:role/.+"
258
+ },
170
259
  "ImportTerminologyRequest":{
171
260
  "type":"structure",
172
261
  "required":[
@@ -188,6 +277,17 @@
188
277
  "TerminologyProperties":{"shape":"TerminologyProperties"}
189
278
  }
190
279
  },
280
+ "InputDataConfig":{
281
+ "type":"structure",
282
+ "required":[
283
+ "S3Uri",
284
+ "ContentType"
285
+ ],
286
+ "members":{
287
+ "S3Uri":{"shape":"S3Uri"},
288
+ "ContentType":{"shape":"ContentType"}
289
+ }
290
+ },
191
291
  "Integer":{"type":"integer"},
192
292
  "InternalServerException":{
193
293
  "type":"structure",
@@ -197,6 +297,13 @@
197
297
  "exception":true,
198
298
  "fault":true
199
299
  },
300
+ "InvalidFilterException":{
301
+ "type":"structure",
302
+ "members":{
303
+ "Message":{"shape":"String"}
304
+ },
305
+ "exception":true
306
+ },
200
307
  "InvalidParameterValueException":{
201
308
  "type":"structure",
202
309
  "members":{
@@ -211,6 +318,38 @@
211
318
  },
212
319
  "exception":true
213
320
  },
321
+ "JobDetails":{
322
+ "type":"structure",
323
+ "members":{
324
+ "TranslatedDocumentsCount":{"shape":"Integer"},
325
+ "DocumentsWithErrorsCount":{"shape":"Integer"},
326
+ "InputDocumentsCount":{"shape":"Integer"}
327
+ }
328
+ },
329
+ "JobId":{
330
+ "type":"string",
331
+ "max":32,
332
+ "min":1,
333
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
334
+ },
335
+ "JobName":{
336
+ "type":"string",
337
+ "max":256,
338
+ "min":1,
339
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
340
+ },
341
+ "JobStatus":{
342
+ "type":"string",
343
+ "enum":[
344
+ "SUBMITTED",
345
+ "IN_PROGRESS",
346
+ "COMPLETED",
347
+ "COMPLETED_WITH_ERROR",
348
+ "FAILED",
349
+ "STOP_REQUESTED",
350
+ "STOPPED"
351
+ ]
352
+ },
214
353
  "LanguageCodeString":{
215
354
  "type":"string",
216
355
  "max":5,
@@ -241,6 +380,21 @@
241
380
  "NextToken":{"shape":"NextToken"}
242
381
  }
243
382
  },
383
+ "ListTextTranslationJobsRequest":{
384
+ "type":"structure",
385
+ "members":{
386
+ "Filter":{"shape":"TextTranslationJobFilter"},
387
+ "NextToken":{"shape":"NextToken"},
388
+ "MaxResults":{"shape":"MaxResultsInteger"}
389
+ }
390
+ },
391
+ "ListTextTranslationJobsResponse":{
392
+ "type":"structure",
393
+ "members":{
394
+ "TextTranslationJobPropertiesList":{"shape":"TextTranslationJobPropertiesList"},
395
+ "NextToken":{"shape":"NextToken"}
396
+ }
397
+ },
244
398
  "MaxResultsInteger":{
245
399
  "type":"integer",
246
400
  "max":500,
@@ -255,6 +409,13 @@
255
409
  "max":8192,
256
410
  "pattern":"\\p{ASCII}{0,8192}"
257
411
  },
412
+ "OutputDataConfig":{
413
+ "type":"structure",
414
+ "required":["S3Uri"],
415
+ "members":{
416
+ "S3Uri":{"shape":"S3Uri"}
417
+ }
418
+ },
258
419
  "ResourceName":{
259
420
  "type":"string",
260
421
  "max":256,
@@ -272,18 +433,75 @@
272
433
  },
273
434
  "exception":true
274
435
  },
436
+ "S3Uri":{
437
+ "type":"string",
438
+ "max":1024,
439
+ "pattern":"s3://[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9](/.*)?"
440
+ },
275
441
  "ServiceUnavailableException":{
276
442
  "type":"structure",
277
443
  "members":{
278
444
  "Message":{"shape":"String"}
279
445
  },
280
- "exception":true
446
+ "exception":true,
447
+ "fault":true
448
+ },
449
+ "StartTextTranslationJobRequest":{
450
+ "type":"structure",
451
+ "required":[
452
+ "InputDataConfig",
453
+ "OutputDataConfig",
454
+ "DataAccessRoleArn",
455
+ "SourceLanguageCode",
456
+ "TargetLanguageCodes",
457
+ "ClientToken"
458
+ ],
459
+ "members":{
460
+ "JobName":{"shape":"JobName"},
461
+ "InputDataConfig":{"shape":"InputDataConfig"},
462
+ "OutputDataConfig":{"shape":"OutputDataConfig"},
463
+ "DataAccessRoleArn":{"shape":"IamRoleArn"},
464
+ "SourceLanguageCode":{"shape":"LanguageCodeString"},
465
+ "TargetLanguageCodes":{"shape":"TargetLanguageCodeStringList"},
466
+ "TerminologyNames":{"shape":"ResourceNameList"},
467
+ "ClientToken":{
468
+ "shape":"ClientTokenString",
469
+ "idempotencyToken":true
470
+ }
471
+ }
472
+ },
473
+ "StartTextTranslationJobResponse":{
474
+ "type":"structure",
475
+ "members":{
476
+ "JobId":{"shape":"JobId"},
477
+ "JobStatus":{"shape":"JobStatus"}
478
+ }
479
+ },
480
+ "StopTextTranslationJobRequest":{
481
+ "type":"structure",
482
+ "required":["JobId"],
483
+ "members":{
484
+ "JobId":{"shape":"JobId"}
485
+ }
486
+ },
487
+ "StopTextTranslationJobResponse":{
488
+ "type":"structure",
489
+ "members":{
490
+ "JobId":{"shape":"JobId"},
491
+ "JobStatus":{"shape":"JobStatus"}
492
+ }
281
493
  },
282
494
  "String":{
283
495
  "type":"string",
284
496
  "max":10000,
285
497
  "pattern":"[\\P{M}\\p{M}]{0,10000}"
286
498
  },
499
+ "TargetLanguageCodeStringList":{
500
+ "type":"list",
501
+ "member":{"shape":"LanguageCodeString"},
502
+ "max":1,
503
+ "min":1
504
+ },
287
505
  "Term":{
288
506
  "type":"structure",
289
507
  "members":{
@@ -297,7 +515,7 @@
297
515
  },
298
516
  "TerminologyArn":{
299
517
  "type":"string",
300
- "pattern":"^arn:aws((-us-gov)|(-cn))?:translate:[a-zA-Z0-9-]+:[0-9]{12}:terminology/.+?/.+?$"
518
+ "pattern":"^arn:aws((-us-gov)|(-iso)|(-iso-b)|(-cn))?:translate:[a-zA-Z0-9-]+:[0-9]{12}:terminology/.+?/.+?$"
301
519
  },
302
520
  "TerminologyData":{
303
521
  "type":"structure",
@@ -359,6 +577,37 @@
359
577
  },
360
578
  "exception":true
361
579
  },
580
+ "TextTranslationJobFilter":{
581
+ "type":"structure",
582
+ "members":{
583
+ "JobName":{"shape":"JobName"},
584
+ "JobStatus":{"shape":"JobStatus"},
585
+ "SubmittedBeforeTime":{"shape":"Timestamp"},
586
+ "SubmittedAfterTime":{"shape":"Timestamp"}
587
+ }
588
+ },
589
+ "TextTranslationJobProperties":{
590
+ "type":"structure",
591
+ "members":{
592
+ "JobId":{"shape":"JobId"},
593
+ "JobName":{"shape":"JobName"},
594
+ "JobStatus":{"shape":"JobStatus"},
595
+ "JobDetails":{"shape":"JobDetails"},
596
+ "SourceLanguageCode":{"shape":"LanguageCodeString"},
597
+ "TargetLanguageCodes":{"shape":"TargetLanguageCodeStringList"},
598
+ "TerminologyNames":{"shape":"ResourceNameList"},
599
+ "Message":{"shape":"UnboundedLengthString"},
600
+ "SubmittedTime":{"shape":"Timestamp"},
601
+ "EndTime":{"shape":"Timestamp"},
602
+ "InputDataConfig":{"shape":"InputDataConfig"},
603
+ "OutputDataConfig":{"shape":"OutputDataConfig"},
604
+ "DataAccessRoleArn":{"shape":"IamRoleArn"}
605
+ }
606
+ },
607
+ "TextTranslationJobPropertiesList":{
608
+ "type":"list",
609
+ "member":{"shape":"TextTranslationJobProperties"}
610
+ },
362
611
  "Timestamp":{"type":"timestamp"},
363
612
  "TooManyRequestsException":{
364
613
  "type":"structure",
@@ -395,6 +644,7 @@
395
644
  "AppliedTerminologies":{"shape":"AppliedTerminologyList"}
396
645
  }
397
646
  },
647
+ "UnboundedLengthString":{"type":"string"},
398
648
  "UnsupportedLanguagePairException":{
399
649
  "type":"structure",
400
650
  "members":{
@@ -1,4 +1,14 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListTerminologies": {
4
+ "input_token": "NextToken",
5
+ "limit_key": "MaxResults",
6
+ "output_token": "NextToken"
7
+ },
8
+ "ListTextTranslationJobs": {
9
+ "input_token": "NextToken",
10
+ "limit_key": "MaxResults",
11
+ "output_token": "NextToken"
12
+ }
3
13
  }
4
- }
14
+ }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.424'
2
+ VERSION = '2.11.425'
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.424
4
+ version: 2.11.425
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-07 00:00:00.000000000 Z
11
+ date: 2020-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath