@aws-sdk/client-translate 3.128.0 → 3.137.0

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.
Files changed (38) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/commands/CreateParallelDataCommand.js +2 -2
  3. package/dist-cjs/commands/DeleteParallelDataCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteTerminologyCommand.js +1 -1
  5. package/dist-cjs/commands/DescribeTextTranslationJobCommand.js +2 -2
  6. package/dist-cjs/commands/GetParallelDataCommand.js +2 -2
  7. package/dist-cjs/commands/GetTerminologyCommand.js +2 -2
  8. package/dist-cjs/commands/ImportTerminologyCommand.js +2 -2
  9. package/dist-cjs/commands/ListLanguagesCommand.js +2 -2
  10. package/dist-cjs/commands/ListParallelDataCommand.js +2 -2
  11. package/dist-cjs/commands/ListTerminologiesCommand.js +2 -2
  12. package/dist-cjs/commands/ListTextTranslationJobsCommand.js +2 -2
  13. package/dist-cjs/commands/StartTextTranslationJobCommand.js +2 -2
  14. package/dist-cjs/commands/StopTextTranslationJobCommand.js +2 -2
  15. package/dist-cjs/commands/TranslateTextCommand.js +2 -2
  16. package/dist-cjs/commands/UpdateParallelDataCommand.js +2 -2
  17. package/dist-cjs/models/models_0.js +184 -274
  18. package/dist-cjs/protocols/Aws_json1_1.js +3 -0
  19. package/dist-es/commands/CreateParallelDataCommand.js +3 -3
  20. package/dist-es/commands/DeleteParallelDataCommand.js +3 -3
  21. package/dist-es/commands/DeleteTerminologyCommand.js +2 -2
  22. package/dist-es/commands/DescribeTextTranslationJobCommand.js +3 -3
  23. package/dist-es/commands/GetParallelDataCommand.js +3 -3
  24. package/dist-es/commands/GetTerminologyCommand.js +3 -3
  25. package/dist-es/commands/ImportTerminologyCommand.js +3 -3
  26. package/dist-es/commands/ListLanguagesCommand.js +3 -3
  27. package/dist-es/commands/ListParallelDataCommand.js +3 -3
  28. package/dist-es/commands/ListTerminologiesCommand.js +3 -3
  29. package/dist-es/commands/ListTextTranslationJobsCommand.js +3 -3
  30. package/dist-es/commands/StartTextTranslationJobCommand.js +3 -3
  31. package/dist-es/commands/StopTextTranslationJobCommand.js +3 -3
  32. package/dist-es/commands/TranslateTextCommand.js +3 -3
  33. package/dist-es/commands/UpdateParallelDataCommand.js +3 -3
  34. package/dist-es/models/models_0.js +45 -180
  35. package/dist-es/protocols/Aws_json1_1.js +3 -0
  36. package/dist-types/models/models_0.d.ts +180 -270
  37. package/dist-types/ts3.4/models/models_0.d.ts +90 -180
  38. package/package.json +9 -9
@@ -7,10 +7,6 @@ export interface Term {
7
7
 
8
8
  TargetText?: string;
9
9
  }
10
- export declare namespace Term {
11
-
12
- const filterSensitiveLog: (obj: Term) => any;
13
- }
14
10
 
15
11
  export interface AppliedTerminology {
16
12
 
@@ -18,10 +14,6 @@ export interface AppliedTerminology {
18
14
 
19
15
  Terms?: Term[];
20
16
  }
21
- export declare namespace AppliedTerminology {
22
-
23
- const filterSensitiveLog: (obj: AppliedTerminology) => any;
24
- }
25
17
 
26
18
  export declare class ConflictException extends __BaseException {
27
19
  readonly name: "ConflictException";
@@ -40,10 +32,6 @@ export interface EncryptionKey {
40
32
 
41
33
  Id: string | undefined;
42
34
  }
43
- export declare namespace EncryptionKey {
44
-
45
- const filterSensitiveLog: (obj: EncryptionKey) => any;
46
- }
47
35
  export declare enum ParallelDataFormat {
48
36
  CSV = "CSV",
49
37
  TMX = "TMX",
@@ -56,10 +44,6 @@ export interface ParallelDataConfig {
56
44
 
57
45
  Format: ParallelDataFormat | string | undefined;
58
46
  }
59
- export declare namespace ParallelDataConfig {
60
-
61
- const filterSensitiveLog: (obj: ParallelDataConfig) => any;
62
- }
63
47
  export interface CreateParallelDataRequest {
64
48
 
65
49
  Name: string | undefined;
@@ -72,10 +56,6 @@ export interface CreateParallelDataRequest {
72
56
 
73
57
  ClientToken?: string;
74
58
  }
75
- export declare namespace CreateParallelDataRequest {
76
-
77
- const filterSensitiveLog: (obj: CreateParallelDataRequest) => any;
78
- }
79
59
  export declare enum ParallelDataStatus {
80
60
  ACTIVE = "ACTIVE",
81
61
  CREATING = "CREATING",
@@ -89,10 +69,6 @@ export interface CreateParallelDataResponse {
89
69
 
90
70
  Status?: ParallelDataStatus | string;
91
71
  }
92
- export declare namespace CreateParallelDataResponse {
93
-
94
- const filterSensitiveLog: (obj: CreateParallelDataResponse) => any;
95
- }
96
72
 
97
73
  export declare class InternalServerException extends __BaseException {
98
74
  readonly name: "InternalServerException";
@@ -145,20 +121,12 @@ export interface DeleteParallelDataRequest {
145
121
 
146
122
  Name: string | undefined;
147
123
  }
148
- export declare namespace DeleteParallelDataRequest {
149
-
150
- const filterSensitiveLog: (obj: DeleteParallelDataRequest) => any;
151
- }
152
124
  export interface DeleteParallelDataResponse {
153
125
 
154
126
  Name?: string;
155
127
 
156
128
  Status?: ParallelDataStatus | string;
157
129
  }
158
- export declare namespace DeleteParallelDataResponse {
159
-
160
- const filterSensitiveLog: (obj: DeleteParallelDataResponse) => any;
161
- }
162
130
 
163
131
  export declare class ResourceNotFoundException extends __BaseException {
164
132
  readonly name: "ResourceNotFoundException";
@@ -171,18 +139,10 @@ export interface DeleteTerminologyRequest {
171
139
 
172
140
  Name: string | undefined;
173
141
  }
174
- export declare namespace DeleteTerminologyRequest {
175
-
176
- const filterSensitiveLog: (obj: DeleteTerminologyRequest) => any;
177
- }
178
142
  export interface DescribeTextTranslationJobRequest {
179
143
 
180
144
  JobId: string | undefined;
181
145
  }
182
- export declare namespace DescribeTextTranslationJobRequest {
183
-
184
- const filterSensitiveLog: (obj: DescribeTextTranslationJobRequest) => any;
185
- }
186
146
 
187
147
  export interface InputDataConfig {
188
148
 
@@ -190,10 +150,6 @@ export interface InputDataConfig {
190
150
 
191
151
  ContentType: string | undefined;
192
152
  }
193
- export declare namespace InputDataConfig {
194
-
195
- const filterSensitiveLog: (obj: InputDataConfig) => any;
196
- }
197
153
 
198
154
  export interface JobDetails {
199
155
 
@@ -203,10 +159,6 @@ export interface JobDetails {
203
159
 
204
160
  InputDocumentsCount?: number;
205
161
  }
206
- export declare namespace JobDetails {
207
-
208
- const filterSensitiveLog: (obj: JobDetails) => any;
209
- }
210
162
  export declare enum JobStatus {
211
163
  COMPLETED = "COMPLETED",
212
164
  COMPLETED_WITH_ERROR = "COMPLETED_WITH_ERROR",
@@ -223,10 +175,6 @@ export interface OutputDataConfig {
223
175
 
224
176
  EncryptionKey?: EncryptionKey;
225
177
  }
226
- export declare namespace OutputDataConfig {
227
-
228
- const filterSensitiveLog: (obj: OutputDataConfig) => any;
229
- }
230
178
  export declare enum Formality {
231
179
  FORMAL = "FORMAL",
232
180
  INFORMAL = "INFORMAL"
@@ -241,10 +189,6 @@ export interface TranslationSettings {
241
189
 
242
190
  Profanity?: Profanity | string;
243
191
  }
244
- export declare namespace TranslationSettings {
245
-
246
- const filterSensitiveLog: (obj: TranslationSettings) => any;
247
- }
248
192
 
249
193
  export interface TextTranslationJobProperties {
250
194
 
@@ -278,26 +222,14 @@ export interface TextTranslationJobProperties {
278
222
 
279
223
  Settings?: TranslationSettings;
280
224
  }
281
- export declare namespace TextTranslationJobProperties {
282
-
283
- const filterSensitiveLog: (obj: TextTranslationJobProperties) => any;
284
- }
285
225
  export interface DescribeTextTranslationJobResponse {
286
226
 
287
227
  TextTranslationJobProperties?: TextTranslationJobProperties;
288
228
  }
289
- export declare namespace DescribeTextTranslationJobResponse {
290
-
291
- const filterSensitiveLog: (obj: DescribeTextTranslationJobResponse) => any;
292
- }
293
229
  export interface GetParallelDataRequest {
294
230
 
295
231
  Name: string | undefined;
296
232
  }
297
- export declare namespace GetParallelDataRequest {
298
-
299
- const filterSensitiveLog: (obj: GetParallelDataRequest) => any;
300
- }
301
233
 
302
234
  export interface ParallelDataDataLocation {
303
235
 
@@ -305,10 +237,6 @@ export interface ParallelDataDataLocation {
305
237
 
306
238
  Location: string | undefined;
307
239
  }
308
- export declare namespace ParallelDataDataLocation {
309
-
310
- const filterSensitiveLog: (obj: ParallelDataDataLocation) => any;
311
- }
312
240
 
313
241
  export interface ParallelDataProperties {
314
242
 
@@ -346,10 +274,6 @@ export interface ParallelDataProperties {
346
274
 
347
275
  LatestUpdateAttemptAt?: Date;
348
276
  }
349
- export declare namespace ParallelDataProperties {
350
-
351
- const filterSensitiveLog: (obj: ParallelDataProperties) => any;
352
- }
353
277
  export interface GetParallelDataResponse {
354
278
 
355
279
  ParallelDataProperties?: ParallelDataProperties;
@@ -360,10 +284,6 @@ export interface GetParallelDataResponse {
360
284
 
361
285
  LatestUpdateAttemptAuxiliaryDataLocation?: ParallelDataDataLocation;
362
286
  }
363
- export declare namespace GetParallelDataResponse {
364
-
365
- const filterSensitiveLog: (obj: GetParallelDataResponse) => any;
366
- }
367
287
  export declare enum TerminologyDataFormat {
368
288
  CSV = "CSV",
369
289
  TMX = "TMX",
@@ -375,10 +295,6 @@ export interface GetTerminologyRequest {
375
295
 
376
296
  TerminologyDataFormat?: TerminologyDataFormat | string;
377
297
  }
378
- export declare namespace GetTerminologyRequest {
379
-
380
- const filterSensitiveLog: (obj: GetTerminologyRequest) => any;
381
- }
382
298
 
383
299
  export interface TerminologyDataLocation {
384
300
 
@@ -386,10 +302,6 @@ export interface TerminologyDataLocation {
386
302
 
387
303
  Location: string | undefined;
388
304
  }
389
- export declare namespace TerminologyDataLocation {
390
-
391
- const filterSensitiveLog: (obj: TerminologyDataLocation) => any;
392
- }
393
305
  export declare enum Directionality {
394
306
  MULTI = "MULTI",
395
307
  UNI = "UNI"
@@ -425,10 +337,6 @@ export interface TerminologyProperties {
425
337
 
426
338
  Format?: TerminologyDataFormat | string;
427
339
  }
428
- export declare namespace TerminologyProperties {
429
-
430
- const filterSensitiveLog: (obj: TerminologyProperties) => any;
431
- }
432
340
  export interface GetTerminologyResponse {
433
341
 
434
342
  TerminologyProperties?: TerminologyProperties;
@@ -437,10 +345,6 @@ export interface GetTerminologyResponse {
437
345
 
438
346
  AuxiliaryDataLocation?: TerminologyDataLocation;
439
347
  }
440
- export declare namespace GetTerminologyResponse {
441
-
442
- const filterSensitiveLog: (obj: GetTerminologyResponse) => any;
443
- }
444
348
  export declare enum MergeStrategy {
445
349
  OVERWRITE = "OVERWRITE"
446
350
  }
@@ -453,10 +357,6 @@ export interface TerminologyData {
453
357
 
454
358
  Directionality?: Directionality | string;
455
359
  }
456
- export declare namespace TerminologyData {
457
-
458
- const filterSensitiveLog: (obj: TerminologyData) => any;
459
- }
460
360
  export interface ImportTerminologyRequest {
461
361
 
462
362
  Name: string | undefined;
@@ -469,20 +369,12 @@ export interface ImportTerminologyRequest {
469
369
 
470
370
  EncryptionKey?: EncryptionKey;
471
371
  }
472
- export declare namespace ImportTerminologyRequest {
473
-
474
- const filterSensitiveLog: (obj: ImportTerminologyRequest) => any;
475
- }
476
372
  export interface ImportTerminologyResponse {
477
373
 
478
374
  TerminologyProperties?: TerminologyProperties;
479
375
 
480
376
  AuxiliaryDataLocation?: TerminologyDataLocation;
481
377
  }
482
- export declare namespace ImportTerminologyResponse {
483
-
484
- const filterSensitiveLog: (obj: ImportTerminologyResponse) => any;
485
- }
486
378
  export declare enum DisplayLanguageCode {
487
379
  DE = "de",
488
380
  EN = "en",
@@ -503,10 +395,6 @@ export interface ListLanguagesRequest {
503
395
 
504
396
  MaxResults?: number;
505
397
  }
506
- export declare namespace ListLanguagesRequest {
507
-
508
- const filterSensitiveLog: (obj: ListLanguagesRequest) => any;
509
- }
510
398
 
511
399
  export interface Language {
512
400
 
@@ -514,10 +402,6 @@ export interface Language {
514
402
 
515
403
  LanguageCode: string | undefined;
516
404
  }
517
- export declare namespace Language {
518
-
519
- const filterSensitiveLog: (obj: Language) => any;
520
- }
521
405
  export interface ListLanguagesResponse {
522
406
 
523
407
  Languages?: Language[];
@@ -526,10 +410,6 @@ export interface ListLanguagesResponse {
526
410
 
527
411
  NextToken?: string;
528
412
  }
529
- export declare namespace ListLanguagesResponse {
530
-
531
- const filterSensitiveLog: (obj: ListLanguagesResponse) => any;
532
- }
533
413
 
534
414
  export declare class UnsupportedDisplayLanguageCodeException extends __BaseException {
535
415
  readonly name: "UnsupportedDisplayLanguageCodeException";
@@ -546,40 +426,24 @@ export interface ListParallelDataRequest {
546
426
 
547
427
  MaxResults?: number;
548
428
  }
549
- export declare namespace ListParallelDataRequest {
550
-
551
- const filterSensitiveLog: (obj: ListParallelDataRequest) => any;
552
- }
553
429
  export interface ListParallelDataResponse {
554
430
 
555
431
  ParallelDataPropertiesList?: ParallelDataProperties[];
556
432
 
557
433
  NextToken?: string;
558
434
  }
559
- export declare namespace ListParallelDataResponse {
560
-
561
- const filterSensitiveLog: (obj: ListParallelDataResponse) => any;
562
- }
563
435
  export interface ListTerminologiesRequest {
564
436
 
565
437
  NextToken?: string;
566
438
 
567
439
  MaxResults?: number;
568
440
  }
569
- export declare namespace ListTerminologiesRequest {
570
-
571
- const filterSensitiveLog: (obj: ListTerminologiesRequest) => any;
572
- }
573
441
  export interface ListTerminologiesResponse {
574
442
 
575
443
  TerminologyPropertiesList?: TerminologyProperties[];
576
444
 
577
445
  NextToken?: string;
578
446
  }
579
- export declare namespace ListTerminologiesResponse {
580
-
581
- const filterSensitiveLog: (obj: ListTerminologiesResponse) => any;
582
- }
583
447
 
584
448
  export declare class InvalidFilterException extends __BaseException {
585
449
  readonly name: "InvalidFilterException";
@@ -599,10 +463,6 @@ export interface TextTranslationJobFilter {
599
463
 
600
464
  SubmittedAfterTime?: Date;
601
465
  }
602
- export declare namespace TextTranslationJobFilter {
603
-
604
- const filterSensitiveLog: (obj: TextTranslationJobFilter) => any;
605
- }
606
466
  export interface ListTextTranslationJobsRequest {
607
467
 
608
468
  Filter?: TextTranslationJobFilter;
@@ -611,20 +471,12 @@ export interface ListTextTranslationJobsRequest {
611
471
 
612
472
  MaxResults?: number;
613
473
  }
614
- export declare namespace ListTextTranslationJobsRequest {
615
-
616
- const filterSensitiveLog: (obj: ListTextTranslationJobsRequest) => any;
617
- }
618
474
  export interface ListTextTranslationJobsResponse {
619
475
 
620
476
  TextTranslationJobPropertiesList?: TextTranslationJobProperties[];
621
477
 
622
478
  NextToken?: string;
623
479
  }
624
- export declare namespace ListTextTranslationJobsResponse {
625
-
626
- const filterSensitiveLog: (obj: ListTextTranslationJobsResponse) => any;
627
- }
628
480
  export interface StartTextTranslationJobRequest {
629
481
 
630
482
  JobName?: string;
@@ -647,20 +499,12 @@ export interface StartTextTranslationJobRequest {
647
499
 
648
500
  Settings?: TranslationSettings;
649
501
  }
650
- export declare namespace StartTextTranslationJobRequest {
651
-
652
- const filterSensitiveLog: (obj: StartTextTranslationJobRequest) => any;
653
- }
654
502
  export interface StartTextTranslationJobResponse {
655
503
 
656
504
  JobId?: string;
657
505
 
658
506
  JobStatus?: JobStatus | string;
659
507
  }
660
- export declare namespace StartTextTranslationJobResponse {
661
-
662
- const filterSensitiveLog: (obj: StartTextTranslationJobResponse) => any;
663
- }
664
508
 
665
509
  export declare class UnsupportedLanguagePairException extends __BaseException {
666
510
  readonly name: "UnsupportedLanguagePairException";
@@ -677,20 +521,12 @@ export interface StopTextTranslationJobRequest {
677
521
 
678
522
  JobId: string | undefined;
679
523
  }
680
- export declare namespace StopTextTranslationJobRequest {
681
-
682
- const filterSensitiveLog: (obj: StopTextTranslationJobRequest) => any;
683
- }
684
524
  export interface StopTextTranslationJobResponse {
685
525
 
686
526
  JobId?: string;
687
527
 
688
528
  JobStatus?: JobStatus | string;
689
529
  }
690
- export declare namespace StopTextTranslationJobResponse {
691
-
692
- const filterSensitiveLog: (obj: StopTextTranslationJobResponse) => any;
693
- }
694
530
 
695
531
  export declare class DetectedLanguageLowConfidenceException extends __BaseException {
696
532
  readonly name: "DetectedLanguageLowConfidenceException";
@@ -729,10 +565,6 @@ export interface TranslateTextRequest {
729
565
 
730
566
  Settings?: TranslationSettings;
731
567
  }
732
- export declare namespace TranslateTextRequest {
733
-
734
- const filterSensitiveLog: (obj: TranslateTextRequest) => any;
735
- }
736
568
  export interface TranslateTextResponse {
737
569
 
738
570
  TranslatedText: string | undefined;
@@ -745,10 +577,6 @@ export interface TranslateTextResponse {
745
577
 
746
578
  AppliedSettings?: TranslationSettings;
747
579
  }
748
- export declare namespace TranslateTextResponse {
749
-
750
- const filterSensitiveLog: (obj: TranslateTextResponse) => any;
751
- }
752
580
  export interface UpdateParallelDataRequest {
753
581
 
754
582
  Name: string | undefined;
@@ -759,10 +587,6 @@ export interface UpdateParallelDataRequest {
759
587
 
760
588
  ClientToken?: string;
761
589
  }
762
- export declare namespace UpdateParallelDataRequest {
763
-
764
- const filterSensitiveLog: (obj: UpdateParallelDataRequest) => any;
765
- }
766
590
  export interface UpdateParallelDataResponse {
767
591
 
768
592
  Name?: string;
@@ -773,7 +597,93 @@ export interface UpdateParallelDataResponse {
773
597
 
774
598
  LatestUpdateAttemptAt?: Date;
775
599
  }
776
- export declare namespace UpdateParallelDataResponse {
777
-
778
- const filterSensitiveLog: (obj: UpdateParallelDataResponse) => any;
779
- }
600
+
601
+ export declare const TermFilterSensitiveLog: (obj: Term) => any;
602
+
603
+ export declare const AppliedTerminologyFilterSensitiveLog: (obj: AppliedTerminology) => any;
604
+
605
+ export declare const EncryptionKeyFilterSensitiveLog: (obj: EncryptionKey) => any;
606
+
607
+ export declare const ParallelDataConfigFilterSensitiveLog: (obj: ParallelDataConfig) => any;
608
+
609
+ export declare const CreateParallelDataRequestFilterSensitiveLog: (obj: CreateParallelDataRequest) => any;
610
+
611
+ export declare const CreateParallelDataResponseFilterSensitiveLog: (obj: CreateParallelDataResponse) => any;
612
+
613
+ export declare const DeleteParallelDataRequestFilterSensitiveLog: (obj: DeleteParallelDataRequest) => any;
614
+
615
+ export declare const DeleteParallelDataResponseFilterSensitiveLog: (obj: DeleteParallelDataResponse) => any;
616
+
617
+ export declare const DeleteTerminologyRequestFilterSensitiveLog: (obj: DeleteTerminologyRequest) => any;
618
+
619
+ export declare const DescribeTextTranslationJobRequestFilterSensitiveLog: (obj: DescribeTextTranslationJobRequest) => any;
620
+
621
+ export declare const InputDataConfigFilterSensitiveLog: (obj: InputDataConfig) => any;
622
+
623
+ export declare const JobDetailsFilterSensitiveLog: (obj: JobDetails) => any;
624
+
625
+ export declare const OutputDataConfigFilterSensitiveLog: (obj: OutputDataConfig) => any;
626
+
627
+ export declare const TranslationSettingsFilterSensitiveLog: (obj: TranslationSettings) => any;
628
+
629
+ export declare const TextTranslationJobPropertiesFilterSensitiveLog: (obj: TextTranslationJobProperties) => any;
630
+
631
+ export declare const DescribeTextTranslationJobResponseFilterSensitiveLog: (obj: DescribeTextTranslationJobResponse) => any;
632
+
633
+ export declare const GetParallelDataRequestFilterSensitiveLog: (obj: GetParallelDataRequest) => any;
634
+
635
+ export declare const ParallelDataDataLocationFilterSensitiveLog: (obj: ParallelDataDataLocation) => any;
636
+
637
+ export declare const ParallelDataPropertiesFilterSensitiveLog: (obj: ParallelDataProperties) => any;
638
+
639
+ export declare const GetParallelDataResponseFilterSensitiveLog: (obj: GetParallelDataResponse) => any;
640
+
641
+ export declare const GetTerminologyRequestFilterSensitiveLog: (obj: GetTerminologyRequest) => any;
642
+
643
+ export declare const TerminologyDataLocationFilterSensitiveLog: (obj: TerminologyDataLocation) => any;
644
+
645
+ export declare const TerminologyPropertiesFilterSensitiveLog: (obj: TerminologyProperties) => any;
646
+
647
+ export declare const GetTerminologyResponseFilterSensitiveLog: (obj: GetTerminologyResponse) => any;
648
+
649
+ export declare const TerminologyDataFilterSensitiveLog: (obj: TerminologyData) => any;
650
+
651
+ export declare const ImportTerminologyRequestFilterSensitiveLog: (obj: ImportTerminologyRequest) => any;
652
+
653
+ export declare const ImportTerminologyResponseFilterSensitiveLog: (obj: ImportTerminologyResponse) => any;
654
+
655
+ export declare const ListLanguagesRequestFilterSensitiveLog: (obj: ListLanguagesRequest) => any;
656
+
657
+ export declare const LanguageFilterSensitiveLog: (obj: Language) => any;
658
+
659
+ export declare const ListLanguagesResponseFilterSensitiveLog: (obj: ListLanguagesResponse) => any;
660
+
661
+ export declare const ListParallelDataRequestFilterSensitiveLog: (obj: ListParallelDataRequest) => any;
662
+
663
+ export declare const ListParallelDataResponseFilterSensitiveLog: (obj: ListParallelDataResponse) => any;
664
+
665
+ export declare const ListTerminologiesRequestFilterSensitiveLog: (obj: ListTerminologiesRequest) => any;
666
+
667
+ export declare const ListTerminologiesResponseFilterSensitiveLog: (obj: ListTerminologiesResponse) => any;
668
+
669
+ export declare const TextTranslationJobFilterFilterSensitiveLog: (obj: TextTranslationJobFilter) => any;
670
+
671
+ export declare const ListTextTranslationJobsRequestFilterSensitiveLog: (obj: ListTextTranslationJobsRequest) => any;
672
+
673
+ export declare const ListTextTranslationJobsResponseFilterSensitiveLog: (obj: ListTextTranslationJobsResponse) => any;
674
+
675
+ export declare const StartTextTranslationJobRequestFilterSensitiveLog: (obj: StartTextTranslationJobRequest) => any;
676
+
677
+ export declare const StartTextTranslationJobResponseFilterSensitiveLog: (obj: StartTextTranslationJobResponse) => any;
678
+
679
+ export declare const StopTextTranslationJobRequestFilterSensitiveLog: (obj: StopTextTranslationJobRequest) => any;
680
+
681
+ export declare const StopTextTranslationJobResponseFilterSensitiveLog: (obj: StopTextTranslationJobResponse) => any;
682
+
683
+ export declare const TranslateTextRequestFilterSensitiveLog: (obj: TranslateTextRequest) => any;
684
+
685
+ export declare const TranslateTextResponseFilterSensitiveLog: (obj: TranslateTextResponse) => any;
686
+
687
+ export declare const UpdateParallelDataRequestFilterSensitiveLog: (obj: UpdateParallelDataRequest) => any;
688
+
689
+ export declare const UpdateParallelDataResponseFilterSensitiveLog: (obj: UpdateParallelDataResponse) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-translate",
3
3
  "description": "AWS SDK for JavaScript Translate Client for Node.js, Browser and React Native",
4
- "version": "3.128.0",
4
+ "version": "3.137.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,10 +18,10 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.128.0",
22
- "@aws-sdk/config-resolver": "3.128.0",
23
- "@aws-sdk/credential-provider-node": "3.128.0",
24
- "@aws-sdk/fetch-http-handler": "3.127.0",
21
+ "@aws-sdk/client-sts": "3.137.0",
22
+ "@aws-sdk/config-resolver": "3.130.0",
23
+ "@aws-sdk/credential-provider-node": "3.137.0",
24
+ "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
27
27
  "@aws-sdk/middleware-content-length": "3.127.0",
@@ -30,21 +30,21 @@
30
30
  "@aws-sdk/middleware-recursion-detection": "3.127.0",
31
31
  "@aws-sdk/middleware-retry": "3.127.0",
32
32
  "@aws-sdk/middleware-serde": "3.127.0",
33
- "@aws-sdk/middleware-signing": "3.128.0",
33
+ "@aws-sdk/middleware-signing": "3.130.0",
34
34
  "@aws-sdk/middleware-stack": "3.127.0",
35
35
  "@aws-sdk/middleware-user-agent": "3.127.0",
36
36
  "@aws-sdk/node-config-provider": "3.127.0",
37
37
  "@aws-sdk/node-http-handler": "3.127.0",
38
38
  "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.127.0",
39
+ "@aws-sdk/smithy-client": "3.137.0",
40
40
  "@aws-sdk/types": "3.127.0",
41
41
  "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.127.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.128.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.137.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.137.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.127.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",