@aws-sdk/client-translate 3.186.0 → 3.190.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 (43) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +1 -2
  3. package/dist-es/Translate.js +74 -81
  4. package/dist-es/TranslateClient.js +22 -28
  5. package/dist-es/commands/CreateParallelDataCommand.js +21 -28
  6. package/dist-es/commands/DeleteParallelDataCommand.js +21 -28
  7. package/dist-es/commands/DeleteTerminologyCommand.js +22 -29
  8. package/dist-es/commands/DescribeTextTranslationJobCommand.js +21 -28
  9. package/dist-es/commands/GetParallelDataCommand.js +21 -28
  10. package/dist-es/commands/GetTerminologyCommand.js +21 -28
  11. package/dist-es/commands/ImportTerminologyCommand.js +21 -28
  12. package/dist-es/commands/ListLanguagesCommand.js +21 -28
  13. package/dist-es/commands/ListParallelDataCommand.js +21 -28
  14. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  15. package/dist-es/commands/ListTerminologiesCommand.js +21 -28
  16. package/dist-es/commands/ListTextTranslationJobsCommand.js +21 -28
  17. package/dist-es/commands/StartTextTranslationJobCommand.js +21 -28
  18. package/dist-es/commands/StopTextTranslationJobCommand.js +21 -28
  19. package/dist-es/commands/TagResourceCommand.js +21 -28
  20. package/dist-es/commands/TranslateTextCommand.js +21 -28
  21. package/dist-es/commands/UntagResourceCommand.js +21 -28
  22. package/dist-es/commands/UpdateParallelDataCommand.js +21 -28
  23. package/dist-es/endpoints.js +8 -8
  24. package/dist-es/models/TranslateServiceException.js +5 -10
  25. package/dist-es/models/models_0.js +342 -237
  26. package/dist-es/pagination/ListLanguagesPaginator.js +25 -68
  27. package/dist-es/pagination/ListParallelDataPaginator.js +25 -68
  28. package/dist-es/pagination/ListTerminologiesPaginator.js +25 -68
  29. package/dist-es/pagination/ListTextTranslationJobsPaginator.js +25 -68
  30. package/dist-es/protocols/Aws_json1_1.js +1407 -1765
  31. package/dist-es/runtimeConfig.browser.js +26 -12
  32. package/dist-es/runtimeConfig.js +30 -12
  33. package/dist-es/runtimeConfig.native.js +8 -5
  34. package/dist-es/runtimeConfig.shared.js +8 -11
  35. package/dist-types/Translate.d.ts +25 -6
  36. package/dist-types/TranslateClient.d.ts +1 -2
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +19 -0
  38. package/dist-types/commands/StartTextTranslationJobCommand.d.ts +7 -3
  39. package/dist-types/commands/TagResourceCommand.d.ts +20 -0
  40. package/dist-types/commands/TranslateTextCommand.d.ts +1 -1
  41. package/dist-types/commands/UntagResourceCommand.d.ts +19 -0
  42. package/dist-types/models/models_0.d.ts +94 -22
  43. package/package.json +33 -33
@@ -1,32 +1,31 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
2
  import { TranslateServiceException as __BaseException } from "./TranslateServiceException";
4
- var ConcurrentModificationException = (function (_super) {
5
- __extends(ConcurrentModificationException, _super);
6
- function ConcurrentModificationException(opts) {
7
- var _this = _super.call(this, __assign({ name: "ConcurrentModificationException", $fault: "client" }, opts)) || this;
8
- _this.name = "ConcurrentModificationException";
9
- _this.$fault = "client";
10
- Object.setPrototypeOf(_this, ConcurrentModificationException.prototype);
11
- _this.Message = opts.Message;
12
- return _this;
3
+ export class ConcurrentModificationException extends __BaseException {
4
+ constructor(opts) {
5
+ super({
6
+ name: "ConcurrentModificationException",
7
+ $fault: "client",
8
+ ...opts,
9
+ });
10
+ this.name = "ConcurrentModificationException";
11
+ this.$fault = "client";
12
+ Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
13
+ this.Message = opts.Message;
13
14
  }
14
- return ConcurrentModificationException;
15
- }(__BaseException));
16
- export { ConcurrentModificationException };
17
- var ConflictException = (function (_super) {
18
- __extends(ConflictException, _super);
19
- function ConflictException(opts) {
20
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
21
- _this.name = "ConflictException";
22
- _this.$fault = "client";
23
- Object.setPrototypeOf(_this, ConflictException.prototype);
24
- _this.Message = opts.Message;
25
- return _this;
15
+ }
16
+ export class ConflictException extends __BaseException {
17
+ constructor(opts) {
18
+ super({
19
+ name: "ConflictException",
20
+ $fault: "client",
21
+ ...opts,
22
+ });
23
+ this.name = "ConflictException";
24
+ this.$fault = "client";
25
+ Object.setPrototypeOf(this, ConflictException.prototype);
26
+ this.Message = opts.Message;
26
27
  }
27
- return ConflictException;
28
- }(__BaseException));
29
- export { ConflictException };
28
+ }
30
29
  export var EncryptionKeyType;
31
30
  (function (EncryptionKeyType) {
32
31
  EncryptionKeyType["KMS"] = "KMS";
@@ -45,97 +44,97 @@ export var ParallelDataStatus;
45
44
  ParallelDataStatus["FAILED"] = "FAILED";
46
45
  ParallelDataStatus["UPDATING"] = "UPDATING";
47
46
  })(ParallelDataStatus || (ParallelDataStatus = {}));
48
- var InternalServerException = (function (_super) {
49
- __extends(InternalServerException, _super);
50
- function InternalServerException(opts) {
51
- var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
52
- _this.name = "InternalServerException";
53
- _this.$fault = "server";
54
- Object.setPrototypeOf(_this, InternalServerException.prototype);
55
- _this.Message = opts.Message;
56
- return _this;
47
+ export class InternalServerException extends __BaseException {
48
+ constructor(opts) {
49
+ super({
50
+ name: "InternalServerException",
51
+ $fault: "server",
52
+ ...opts,
53
+ });
54
+ this.name = "InternalServerException";
55
+ this.$fault = "server";
56
+ Object.setPrototypeOf(this, InternalServerException.prototype);
57
+ this.Message = opts.Message;
57
58
  }
58
- return InternalServerException;
59
- }(__BaseException));
60
- export { InternalServerException };
61
- var InvalidParameterValueException = (function (_super) {
62
- __extends(InvalidParameterValueException, _super);
63
- function InvalidParameterValueException(opts) {
64
- var _this = _super.call(this, __assign({ name: "InvalidParameterValueException", $fault: "client" }, opts)) || this;
65
- _this.name = "InvalidParameterValueException";
66
- _this.$fault = "client";
67
- Object.setPrototypeOf(_this, InvalidParameterValueException.prototype);
68
- _this.Message = opts.Message;
69
- return _this;
59
+ }
60
+ export class InvalidParameterValueException extends __BaseException {
61
+ constructor(opts) {
62
+ super({
63
+ name: "InvalidParameterValueException",
64
+ $fault: "client",
65
+ ...opts,
66
+ });
67
+ this.name = "InvalidParameterValueException";
68
+ this.$fault = "client";
69
+ Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
70
+ this.Message = opts.Message;
70
71
  }
71
- return InvalidParameterValueException;
72
- }(__BaseException));
73
- export { InvalidParameterValueException };
74
- var InvalidRequestException = (function (_super) {
75
- __extends(InvalidRequestException, _super);
76
- function InvalidRequestException(opts) {
77
- var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
78
- _this.name = "InvalidRequestException";
79
- _this.$fault = "client";
80
- Object.setPrototypeOf(_this, InvalidRequestException.prototype);
81
- _this.Message = opts.Message;
82
- return _this;
72
+ }
73
+ export class InvalidRequestException extends __BaseException {
74
+ constructor(opts) {
75
+ super({
76
+ name: "InvalidRequestException",
77
+ $fault: "client",
78
+ ...opts,
79
+ });
80
+ this.name = "InvalidRequestException";
81
+ this.$fault = "client";
82
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
83
+ this.Message = opts.Message;
83
84
  }
84
- return InvalidRequestException;
85
- }(__BaseException));
86
- export { InvalidRequestException };
87
- var LimitExceededException = (function (_super) {
88
- __extends(LimitExceededException, _super);
89
- function LimitExceededException(opts) {
90
- var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
91
- _this.name = "LimitExceededException";
92
- _this.$fault = "client";
93
- Object.setPrototypeOf(_this, LimitExceededException.prototype);
94
- _this.Message = opts.Message;
95
- return _this;
85
+ }
86
+ export class LimitExceededException extends __BaseException {
87
+ constructor(opts) {
88
+ super({
89
+ name: "LimitExceededException",
90
+ $fault: "client",
91
+ ...opts,
92
+ });
93
+ this.name = "LimitExceededException";
94
+ this.$fault = "client";
95
+ Object.setPrototypeOf(this, LimitExceededException.prototype);
96
+ this.Message = opts.Message;
96
97
  }
97
- return LimitExceededException;
98
- }(__BaseException));
99
- export { LimitExceededException };
100
- var TooManyRequestsException = (function (_super) {
101
- __extends(TooManyRequestsException, _super);
102
- function TooManyRequestsException(opts) {
103
- var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
104
- _this.name = "TooManyRequestsException";
105
- _this.$fault = "client";
106
- Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
107
- _this.Message = opts.Message;
108
- return _this;
98
+ }
99
+ export class TooManyRequestsException extends __BaseException {
100
+ constructor(opts) {
101
+ super({
102
+ name: "TooManyRequestsException",
103
+ $fault: "client",
104
+ ...opts,
105
+ });
106
+ this.name = "TooManyRequestsException";
107
+ this.$fault = "client";
108
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
109
+ this.Message = opts.Message;
109
110
  }
110
- return TooManyRequestsException;
111
- }(__BaseException));
112
- export { TooManyRequestsException };
113
- var TooManyTagsException = (function (_super) {
114
- __extends(TooManyTagsException, _super);
115
- function TooManyTagsException(opts) {
116
- var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
117
- _this.name = "TooManyTagsException";
118
- _this.$fault = "client";
119
- Object.setPrototypeOf(_this, TooManyTagsException.prototype);
120
- _this.ResourceArn = opts.ResourceArn;
121
- return _this;
111
+ }
112
+ export class TooManyTagsException extends __BaseException {
113
+ constructor(opts) {
114
+ super({
115
+ name: "TooManyTagsException",
116
+ $fault: "client",
117
+ ...opts,
118
+ });
119
+ this.name = "TooManyTagsException";
120
+ this.$fault = "client";
121
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
122
+ this.ResourceArn = opts.ResourceArn;
122
123
  }
123
- return TooManyTagsException;
124
- }(__BaseException));
125
- export { TooManyTagsException };
126
- var ResourceNotFoundException = (function (_super) {
127
- __extends(ResourceNotFoundException, _super);
128
- function ResourceNotFoundException(opts) {
129
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
130
- _this.name = "ResourceNotFoundException";
131
- _this.$fault = "client";
132
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
133
- _this.Message = opts.Message;
134
- return _this;
124
+ }
125
+ export class ResourceNotFoundException extends __BaseException {
126
+ constructor(opts) {
127
+ super({
128
+ name: "ResourceNotFoundException",
129
+ $fault: "client",
130
+ ...opts,
131
+ });
132
+ this.name = "ResourceNotFoundException";
133
+ this.$fault = "client";
134
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
135
+ this.Message = opts.Message;
135
136
  }
136
- return ResourceNotFoundException;
137
- }(__BaseException));
138
- export { ResourceNotFoundException };
137
+ }
139
138
  export var JobStatus;
140
139
  (function (JobStatus) {
141
140
  JobStatus["COMPLETED"] = "COMPLETED";
@@ -183,137 +182,243 @@ export var DisplayLanguageCode;
183
182
  DisplayLanguageCode["ZH"] = "zh";
184
183
  DisplayLanguageCode["ZH_TW"] = "zh-TW";
185
184
  })(DisplayLanguageCode || (DisplayLanguageCode = {}));
186
- var UnsupportedDisplayLanguageCodeException = (function (_super) {
187
- __extends(UnsupportedDisplayLanguageCodeException, _super);
188
- function UnsupportedDisplayLanguageCodeException(opts) {
189
- var _this = _super.call(this, __assign({ name: "UnsupportedDisplayLanguageCodeException", $fault: "client" }, opts)) || this;
190
- _this.name = "UnsupportedDisplayLanguageCodeException";
191
- _this.$fault = "client";
192
- Object.setPrototypeOf(_this, UnsupportedDisplayLanguageCodeException.prototype);
193
- _this.Message = opts.Message;
194
- _this.DisplayLanguageCode = opts.DisplayLanguageCode;
195
- return _this;
185
+ export class UnsupportedDisplayLanguageCodeException extends __BaseException {
186
+ constructor(opts) {
187
+ super({
188
+ name: "UnsupportedDisplayLanguageCodeException",
189
+ $fault: "client",
190
+ ...opts,
191
+ });
192
+ this.name = "UnsupportedDisplayLanguageCodeException";
193
+ this.$fault = "client";
194
+ Object.setPrototypeOf(this, UnsupportedDisplayLanguageCodeException.prototype);
195
+ this.Message = opts.Message;
196
+ this.DisplayLanguageCode = opts.DisplayLanguageCode;
196
197
  }
197
- return UnsupportedDisplayLanguageCodeException;
198
- }(__BaseException));
199
- export { UnsupportedDisplayLanguageCodeException };
200
- var InvalidFilterException = (function (_super) {
201
- __extends(InvalidFilterException, _super);
202
- function InvalidFilterException(opts) {
203
- var _this = _super.call(this, __assign({ name: "InvalidFilterException", $fault: "client" }, opts)) || this;
204
- _this.name = "InvalidFilterException";
205
- _this.$fault = "client";
206
- Object.setPrototypeOf(_this, InvalidFilterException.prototype);
207
- _this.Message = opts.Message;
208
- return _this;
198
+ }
199
+ export class InvalidFilterException extends __BaseException {
200
+ constructor(opts) {
201
+ super({
202
+ name: "InvalidFilterException",
203
+ $fault: "client",
204
+ ...opts,
205
+ });
206
+ this.name = "InvalidFilterException";
207
+ this.$fault = "client";
208
+ Object.setPrototypeOf(this, InvalidFilterException.prototype);
209
+ this.Message = opts.Message;
209
210
  }
210
- return InvalidFilterException;
211
- }(__BaseException));
212
- export { InvalidFilterException };
213
- var UnsupportedLanguagePairException = (function (_super) {
214
- __extends(UnsupportedLanguagePairException, _super);
215
- function UnsupportedLanguagePairException(opts) {
216
- var _this = _super.call(this, __assign({ name: "UnsupportedLanguagePairException", $fault: "client" }, opts)) || this;
217
- _this.name = "UnsupportedLanguagePairException";
218
- _this.$fault = "client";
219
- Object.setPrototypeOf(_this, UnsupportedLanguagePairException.prototype);
220
- _this.Message = opts.Message;
221
- _this.SourceLanguageCode = opts.SourceLanguageCode;
222
- _this.TargetLanguageCode = opts.TargetLanguageCode;
223
- return _this;
211
+ }
212
+ export class UnsupportedLanguagePairException extends __BaseException {
213
+ constructor(opts) {
214
+ super({
215
+ name: "UnsupportedLanguagePairException",
216
+ $fault: "client",
217
+ ...opts,
218
+ });
219
+ this.name = "UnsupportedLanguagePairException";
220
+ this.$fault = "client";
221
+ Object.setPrototypeOf(this, UnsupportedLanguagePairException.prototype);
222
+ this.Message = opts.Message;
223
+ this.SourceLanguageCode = opts.SourceLanguageCode;
224
+ this.TargetLanguageCode = opts.TargetLanguageCode;
224
225
  }
225
- return UnsupportedLanguagePairException;
226
- }(__BaseException));
227
- export { UnsupportedLanguagePairException };
228
- var DetectedLanguageLowConfidenceException = (function (_super) {
229
- __extends(DetectedLanguageLowConfidenceException, _super);
230
- function DetectedLanguageLowConfidenceException(opts) {
231
- var _this = _super.call(this, __assign({ name: "DetectedLanguageLowConfidenceException", $fault: "client" }, opts)) || this;
232
- _this.name = "DetectedLanguageLowConfidenceException";
233
- _this.$fault = "client";
234
- Object.setPrototypeOf(_this, DetectedLanguageLowConfidenceException.prototype);
235
- _this.Message = opts.Message;
236
- _this.DetectedLanguageCode = opts.DetectedLanguageCode;
237
- return _this;
226
+ }
227
+ export class DetectedLanguageLowConfidenceException extends __BaseException {
228
+ constructor(opts) {
229
+ super({
230
+ name: "DetectedLanguageLowConfidenceException",
231
+ $fault: "client",
232
+ ...opts,
233
+ });
234
+ this.name = "DetectedLanguageLowConfidenceException";
235
+ this.$fault = "client";
236
+ Object.setPrototypeOf(this, DetectedLanguageLowConfidenceException.prototype);
237
+ this.Message = opts.Message;
238
+ this.DetectedLanguageCode = opts.DetectedLanguageCode;
238
239
  }
239
- return DetectedLanguageLowConfidenceException;
240
- }(__BaseException));
241
- export { DetectedLanguageLowConfidenceException };
242
- var ServiceUnavailableException = (function (_super) {
243
- __extends(ServiceUnavailableException, _super);
244
- function ServiceUnavailableException(opts) {
245
- var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
246
- _this.name = "ServiceUnavailableException";
247
- _this.$fault = "server";
248
- Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
249
- _this.Message = opts.Message;
250
- return _this;
240
+ }
241
+ export class ServiceUnavailableException extends __BaseException {
242
+ constructor(opts) {
243
+ super({
244
+ name: "ServiceUnavailableException",
245
+ $fault: "server",
246
+ ...opts,
247
+ });
248
+ this.name = "ServiceUnavailableException";
249
+ this.$fault = "server";
250
+ Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
251
+ this.Message = opts.Message;
251
252
  }
252
- return ServiceUnavailableException;
253
- }(__BaseException));
254
- export { ServiceUnavailableException };
255
- var TextSizeLimitExceededException = (function (_super) {
256
- __extends(TextSizeLimitExceededException, _super);
257
- function TextSizeLimitExceededException(opts) {
258
- var _this = _super.call(this, __assign({ name: "TextSizeLimitExceededException", $fault: "client" }, opts)) || this;
259
- _this.name = "TextSizeLimitExceededException";
260
- _this.$fault = "client";
261
- Object.setPrototypeOf(_this, TextSizeLimitExceededException.prototype);
262
- _this.Message = opts.Message;
263
- return _this;
253
+ }
254
+ export class TextSizeLimitExceededException extends __BaseException {
255
+ constructor(opts) {
256
+ super({
257
+ name: "TextSizeLimitExceededException",
258
+ $fault: "client",
259
+ ...opts,
260
+ });
261
+ this.name = "TextSizeLimitExceededException";
262
+ this.$fault = "client";
263
+ Object.setPrototypeOf(this, TextSizeLimitExceededException.prototype);
264
+ this.Message = opts.Message;
264
265
  }
265
- return TextSizeLimitExceededException;
266
- }(__BaseException));
267
- export { TextSizeLimitExceededException };
268
- export var TermFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
269
- export var AppliedTerminologyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
270
- export var EncryptionKeyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
271
- export var ParallelDataConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
272
- export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
273
- export var CreateParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
274
- export var CreateParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
275
- export var DeleteParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
276
- export var DeleteParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
277
- export var DeleteTerminologyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
278
- export var DescribeTextTranslationJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
279
- export var InputDataConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
280
- export var JobDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
281
- export var OutputDataConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
282
- export var TranslationSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
283
- export var TextTranslationJobPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
284
- export var DescribeTextTranslationJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
285
- export var GetParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
286
- export var ParallelDataDataLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
287
- export var ParallelDataPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
288
- export var GetParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
289
- export var GetTerminologyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
290
- export var TerminologyDataLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
291
- export var TerminologyPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
292
- export var GetTerminologyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
293
- export var TerminologyDataFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.File && { File: SENSITIVE_STRING }))); };
294
- export var ImportTerminologyRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TerminologyData && { TerminologyData: TerminologyDataFilterSensitiveLog(obj.TerminologyData) }))); };
295
- export var ImportTerminologyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
296
- export var ListLanguagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
297
- export var LanguageFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
298
- export var ListLanguagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
299
- export var ListParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
300
- export var ListParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
301
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
302
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
303
- export var ListTerminologiesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
304
- export var ListTerminologiesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
305
- export var TextTranslationJobFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
306
- export var ListTextTranslationJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
307
- export var ListTextTranslationJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
308
- export var StartTextTranslationJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
309
- export var StartTextTranslationJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
310
- export var StopTextTranslationJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
311
- export var StopTextTranslationJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
312
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
313
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
314
- export var TranslateTextRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
315
- export var TranslateTextResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
316
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
317
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
318
- export var UpdateParallelDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
319
- export var UpdateParallelDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
266
+ }
267
+ export const TermFilterSensitiveLog = (obj) => ({
268
+ ...obj,
269
+ });
270
+ export const AppliedTerminologyFilterSensitiveLog = (obj) => ({
271
+ ...obj,
272
+ });
273
+ export const EncryptionKeyFilterSensitiveLog = (obj) => ({
274
+ ...obj,
275
+ });
276
+ export const ParallelDataConfigFilterSensitiveLog = (obj) => ({
277
+ ...obj,
278
+ });
279
+ export const TagFilterSensitiveLog = (obj) => ({
280
+ ...obj,
281
+ });
282
+ export const CreateParallelDataRequestFilterSensitiveLog = (obj) => ({
283
+ ...obj,
284
+ });
285
+ export const CreateParallelDataResponseFilterSensitiveLog = (obj) => ({
286
+ ...obj,
287
+ });
288
+ export const DeleteParallelDataRequestFilterSensitiveLog = (obj) => ({
289
+ ...obj,
290
+ });
291
+ export const DeleteParallelDataResponseFilterSensitiveLog = (obj) => ({
292
+ ...obj,
293
+ });
294
+ export const DeleteTerminologyRequestFilterSensitiveLog = (obj) => ({
295
+ ...obj,
296
+ });
297
+ export const DescribeTextTranslationJobRequestFilterSensitiveLog = (obj) => ({
298
+ ...obj,
299
+ });
300
+ export const InputDataConfigFilterSensitiveLog = (obj) => ({
301
+ ...obj,
302
+ });
303
+ export const JobDetailsFilterSensitiveLog = (obj) => ({
304
+ ...obj,
305
+ });
306
+ export const OutputDataConfigFilterSensitiveLog = (obj) => ({
307
+ ...obj,
308
+ });
309
+ export const TranslationSettingsFilterSensitiveLog = (obj) => ({
310
+ ...obj,
311
+ });
312
+ export const TextTranslationJobPropertiesFilterSensitiveLog = (obj) => ({
313
+ ...obj,
314
+ });
315
+ export const DescribeTextTranslationJobResponseFilterSensitiveLog = (obj) => ({
316
+ ...obj,
317
+ });
318
+ export const GetParallelDataRequestFilterSensitiveLog = (obj) => ({
319
+ ...obj,
320
+ });
321
+ export const ParallelDataDataLocationFilterSensitiveLog = (obj) => ({
322
+ ...obj,
323
+ });
324
+ export const ParallelDataPropertiesFilterSensitiveLog = (obj) => ({
325
+ ...obj,
326
+ });
327
+ export const GetParallelDataResponseFilterSensitiveLog = (obj) => ({
328
+ ...obj,
329
+ });
330
+ export const GetTerminologyRequestFilterSensitiveLog = (obj) => ({
331
+ ...obj,
332
+ });
333
+ export const TerminologyDataLocationFilterSensitiveLog = (obj) => ({
334
+ ...obj,
335
+ });
336
+ export const TerminologyPropertiesFilterSensitiveLog = (obj) => ({
337
+ ...obj,
338
+ });
339
+ export const GetTerminologyResponseFilterSensitiveLog = (obj) => ({
340
+ ...obj,
341
+ });
342
+ export const TerminologyDataFilterSensitiveLog = (obj) => ({
343
+ ...obj,
344
+ ...(obj.File && { File: SENSITIVE_STRING }),
345
+ });
346
+ export const ImportTerminologyRequestFilterSensitiveLog = (obj) => ({
347
+ ...obj,
348
+ ...(obj.TerminologyData && { TerminologyData: TerminologyDataFilterSensitiveLog(obj.TerminologyData) }),
349
+ });
350
+ export const ImportTerminologyResponseFilterSensitiveLog = (obj) => ({
351
+ ...obj,
352
+ });
353
+ export const ListLanguagesRequestFilterSensitiveLog = (obj) => ({
354
+ ...obj,
355
+ });
356
+ export const LanguageFilterSensitiveLog = (obj) => ({
357
+ ...obj,
358
+ });
359
+ export const ListLanguagesResponseFilterSensitiveLog = (obj) => ({
360
+ ...obj,
361
+ });
362
+ export const ListParallelDataRequestFilterSensitiveLog = (obj) => ({
363
+ ...obj,
364
+ });
365
+ export const ListParallelDataResponseFilterSensitiveLog = (obj) => ({
366
+ ...obj,
367
+ });
368
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
369
+ ...obj,
370
+ });
371
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
372
+ ...obj,
373
+ });
374
+ export const ListTerminologiesRequestFilterSensitiveLog = (obj) => ({
375
+ ...obj,
376
+ });
377
+ export const ListTerminologiesResponseFilterSensitiveLog = (obj) => ({
378
+ ...obj,
379
+ });
380
+ export const TextTranslationJobFilterFilterSensitiveLog = (obj) => ({
381
+ ...obj,
382
+ });
383
+ export const ListTextTranslationJobsRequestFilterSensitiveLog = (obj) => ({
384
+ ...obj,
385
+ });
386
+ export const ListTextTranslationJobsResponseFilterSensitiveLog = (obj) => ({
387
+ ...obj,
388
+ });
389
+ export const StartTextTranslationJobRequestFilterSensitiveLog = (obj) => ({
390
+ ...obj,
391
+ });
392
+ export const StartTextTranslationJobResponseFilterSensitiveLog = (obj) => ({
393
+ ...obj,
394
+ });
395
+ export const StopTextTranslationJobRequestFilterSensitiveLog = (obj) => ({
396
+ ...obj,
397
+ });
398
+ export const StopTextTranslationJobResponseFilterSensitiveLog = (obj) => ({
399
+ ...obj,
400
+ });
401
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
402
+ ...obj,
403
+ });
404
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
405
+ ...obj,
406
+ });
407
+ export const TranslateTextRequestFilterSensitiveLog = (obj) => ({
408
+ ...obj,
409
+ });
410
+ export const TranslateTextResponseFilterSensitiveLog = (obj) => ({
411
+ ...obj,
412
+ });
413
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
414
+ ...obj,
415
+ });
416
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
417
+ ...obj,
418
+ });
419
+ export const UpdateParallelDataRequestFilterSensitiveLog = (obj) => ({
420
+ ...obj,
421
+ });
422
+ export const UpdateParallelDataResponseFilterSensitiveLog = (obj) => ({
423
+ ...obj,
424
+ });