@aws-sdk/client-translate 3.169.0 → 3.170.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Translate.d.ts +274 -80
- package/dist-types/ts3.4/TranslateClient.d.ts +219 -88
- package/dist-types/ts3.4/commands/CreateParallelDataCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteParallelDataCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteTerminologyCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DescribeTextTranslationJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetParallelDataCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetTerminologyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ImportTerminologyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListLanguagesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListParallelDataCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTerminologiesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTextTranslationJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartTextTranslationJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StopTextTranslationJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TranslateTextCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateParallelDataCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +15 -15
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/TranslateServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +766 -689
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListLanguagesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListParallelDataPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTerminologiesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTextTranslationJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-translate
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-translate
|
|
@@ -1,80 +1,274 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateParallelDataCommandInput,
|
|
4
|
+
CreateParallelDataCommandOutput,
|
|
5
|
+
} from "./commands/CreateParallelDataCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteParallelDataCommandInput,
|
|
8
|
+
DeleteParallelDataCommandOutput,
|
|
9
|
+
} from "./commands/DeleteParallelDataCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteTerminologyCommandInput,
|
|
12
|
+
DeleteTerminologyCommandOutput,
|
|
13
|
+
} from "./commands/DeleteTerminologyCommand";
|
|
14
|
+
import {
|
|
15
|
+
DescribeTextTranslationJobCommandInput,
|
|
16
|
+
DescribeTextTranslationJobCommandOutput,
|
|
17
|
+
} from "./commands/DescribeTextTranslationJobCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetParallelDataCommandInput,
|
|
20
|
+
GetParallelDataCommandOutput,
|
|
21
|
+
} from "./commands/GetParallelDataCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetTerminologyCommandInput,
|
|
24
|
+
GetTerminologyCommandOutput,
|
|
25
|
+
} from "./commands/GetTerminologyCommand";
|
|
26
|
+
import {
|
|
27
|
+
ImportTerminologyCommandInput,
|
|
28
|
+
ImportTerminologyCommandOutput,
|
|
29
|
+
} from "./commands/ImportTerminologyCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListLanguagesCommandInput,
|
|
32
|
+
ListLanguagesCommandOutput,
|
|
33
|
+
} from "./commands/ListLanguagesCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListParallelDataCommandInput,
|
|
36
|
+
ListParallelDataCommandOutput,
|
|
37
|
+
} from "./commands/ListParallelDataCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListTerminologiesCommandInput,
|
|
40
|
+
ListTerminologiesCommandOutput,
|
|
41
|
+
} from "./commands/ListTerminologiesCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTextTranslationJobsCommandInput,
|
|
44
|
+
ListTextTranslationJobsCommandOutput,
|
|
45
|
+
} from "./commands/ListTextTranslationJobsCommand";
|
|
46
|
+
import {
|
|
47
|
+
StartTextTranslationJobCommandInput,
|
|
48
|
+
StartTextTranslationJobCommandOutput,
|
|
49
|
+
} from "./commands/StartTextTranslationJobCommand";
|
|
50
|
+
import {
|
|
51
|
+
StopTextTranslationJobCommandInput,
|
|
52
|
+
StopTextTranslationJobCommandOutput,
|
|
53
|
+
} from "./commands/StopTextTranslationJobCommand";
|
|
54
|
+
import {
|
|
55
|
+
TranslateTextCommandInput,
|
|
56
|
+
TranslateTextCommandOutput,
|
|
57
|
+
} from "./commands/TranslateTextCommand";
|
|
58
|
+
import {
|
|
59
|
+
UpdateParallelDataCommandInput,
|
|
60
|
+
UpdateParallelDataCommandOutput,
|
|
61
|
+
} from "./commands/UpdateParallelDataCommand";
|
|
62
|
+
import { TranslateClient } from "./TranslateClient";
|
|
63
|
+
|
|
64
|
+
export declare class Translate extends TranslateClient {
|
|
65
|
+
createParallelData(
|
|
66
|
+
args: CreateParallelDataCommandInput,
|
|
67
|
+
options?: __HttpHandlerOptions
|
|
68
|
+
): Promise<CreateParallelDataCommandOutput>;
|
|
69
|
+
createParallelData(
|
|
70
|
+
args: CreateParallelDataCommandInput,
|
|
71
|
+
cb: (err: any, data?: CreateParallelDataCommandOutput) => void
|
|
72
|
+
): void;
|
|
73
|
+
createParallelData(
|
|
74
|
+
args: CreateParallelDataCommandInput,
|
|
75
|
+
options: __HttpHandlerOptions,
|
|
76
|
+
cb: (err: any, data?: CreateParallelDataCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
|
|
79
|
+
deleteParallelData(
|
|
80
|
+
args: DeleteParallelDataCommandInput,
|
|
81
|
+
options?: __HttpHandlerOptions
|
|
82
|
+
): Promise<DeleteParallelDataCommandOutput>;
|
|
83
|
+
deleteParallelData(
|
|
84
|
+
args: DeleteParallelDataCommandInput,
|
|
85
|
+
cb: (err: any, data?: DeleteParallelDataCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
deleteParallelData(
|
|
88
|
+
args: DeleteParallelDataCommandInput,
|
|
89
|
+
options: __HttpHandlerOptions,
|
|
90
|
+
cb: (err: any, data?: DeleteParallelDataCommandOutput) => void
|
|
91
|
+
): void;
|
|
92
|
+
|
|
93
|
+
deleteTerminology(
|
|
94
|
+
args: DeleteTerminologyCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<DeleteTerminologyCommandOutput>;
|
|
97
|
+
deleteTerminology(
|
|
98
|
+
args: DeleteTerminologyCommandInput,
|
|
99
|
+
cb: (err: any, data?: DeleteTerminologyCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
deleteTerminology(
|
|
102
|
+
args: DeleteTerminologyCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: DeleteTerminologyCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
|
|
107
|
+
describeTextTranslationJob(
|
|
108
|
+
args: DescribeTextTranslationJobCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<DescribeTextTranslationJobCommandOutput>;
|
|
111
|
+
describeTextTranslationJob(
|
|
112
|
+
args: DescribeTextTranslationJobCommandInput,
|
|
113
|
+
cb: (err: any, data?: DescribeTextTranslationJobCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
describeTextTranslationJob(
|
|
116
|
+
args: DescribeTextTranslationJobCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: DescribeTextTranslationJobCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
|
|
121
|
+
getParallelData(
|
|
122
|
+
args: GetParallelDataCommandInput,
|
|
123
|
+
options?: __HttpHandlerOptions
|
|
124
|
+
): Promise<GetParallelDataCommandOutput>;
|
|
125
|
+
getParallelData(
|
|
126
|
+
args: GetParallelDataCommandInput,
|
|
127
|
+
cb: (err: any, data?: GetParallelDataCommandOutput) => void
|
|
128
|
+
): void;
|
|
129
|
+
getParallelData(
|
|
130
|
+
args: GetParallelDataCommandInput,
|
|
131
|
+
options: __HttpHandlerOptions,
|
|
132
|
+
cb: (err: any, data?: GetParallelDataCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
|
|
135
|
+
getTerminology(
|
|
136
|
+
args: GetTerminologyCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<GetTerminologyCommandOutput>;
|
|
139
|
+
getTerminology(
|
|
140
|
+
args: GetTerminologyCommandInput,
|
|
141
|
+
cb: (err: any, data?: GetTerminologyCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
getTerminology(
|
|
144
|
+
args: GetTerminologyCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: GetTerminologyCommandOutput) => void
|
|
147
|
+
): void;
|
|
148
|
+
|
|
149
|
+
importTerminology(
|
|
150
|
+
args: ImportTerminologyCommandInput,
|
|
151
|
+
options?: __HttpHandlerOptions
|
|
152
|
+
): Promise<ImportTerminologyCommandOutput>;
|
|
153
|
+
importTerminology(
|
|
154
|
+
args: ImportTerminologyCommandInput,
|
|
155
|
+
cb: (err: any, data?: ImportTerminologyCommandOutput) => void
|
|
156
|
+
): void;
|
|
157
|
+
importTerminology(
|
|
158
|
+
args: ImportTerminologyCommandInput,
|
|
159
|
+
options: __HttpHandlerOptions,
|
|
160
|
+
cb: (err: any, data?: ImportTerminologyCommandOutput) => void
|
|
161
|
+
): void;
|
|
162
|
+
|
|
163
|
+
listLanguages(
|
|
164
|
+
args: ListLanguagesCommandInput,
|
|
165
|
+
options?: __HttpHandlerOptions
|
|
166
|
+
): Promise<ListLanguagesCommandOutput>;
|
|
167
|
+
listLanguages(
|
|
168
|
+
args: ListLanguagesCommandInput,
|
|
169
|
+
cb: (err: any, data?: ListLanguagesCommandOutput) => void
|
|
170
|
+
): void;
|
|
171
|
+
listLanguages(
|
|
172
|
+
args: ListLanguagesCommandInput,
|
|
173
|
+
options: __HttpHandlerOptions,
|
|
174
|
+
cb: (err: any, data?: ListLanguagesCommandOutput) => void
|
|
175
|
+
): void;
|
|
176
|
+
|
|
177
|
+
listParallelData(
|
|
178
|
+
args: ListParallelDataCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<ListParallelDataCommandOutput>;
|
|
181
|
+
listParallelData(
|
|
182
|
+
args: ListParallelDataCommandInput,
|
|
183
|
+
cb: (err: any, data?: ListParallelDataCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
listParallelData(
|
|
186
|
+
args: ListParallelDataCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: ListParallelDataCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
|
|
191
|
+
listTerminologies(
|
|
192
|
+
args: ListTerminologiesCommandInput,
|
|
193
|
+
options?: __HttpHandlerOptions
|
|
194
|
+
): Promise<ListTerminologiesCommandOutput>;
|
|
195
|
+
listTerminologies(
|
|
196
|
+
args: ListTerminologiesCommandInput,
|
|
197
|
+
cb: (err: any, data?: ListTerminologiesCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
listTerminologies(
|
|
200
|
+
args: ListTerminologiesCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (err: any, data?: ListTerminologiesCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
|
|
205
|
+
listTextTranslationJobs(
|
|
206
|
+
args: ListTextTranslationJobsCommandInput,
|
|
207
|
+
options?: __HttpHandlerOptions
|
|
208
|
+
): Promise<ListTextTranslationJobsCommandOutput>;
|
|
209
|
+
listTextTranslationJobs(
|
|
210
|
+
args: ListTextTranslationJobsCommandInput,
|
|
211
|
+
cb: (err: any, data?: ListTextTranslationJobsCommandOutput) => void
|
|
212
|
+
): void;
|
|
213
|
+
listTextTranslationJobs(
|
|
214
|
+
args: ListTextTranslationJobsCommandInput,
|
|
215
|
+
options: __HttpHandlerOptions,
|
|
216
|
+
cb: (err: any, data?: ListTextTranslationJobsCommandOutput) => void
|
|
217
|
+
): void;
|
|
218
|
+
|
|
219
|
+
startTextTranslationJob(
|
|
220
|
+
args: StartTextTranslationJobCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<StartTextTranslationJobCommandOutput>;
|
|
223
|
+
startTextTranslationJob(
|
|
224
|
+
args: StartTextTranslationJobCommandInput,
|
|
225
|
+
cb: (err: any, data?: StartTextTranslationJobCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
startTextTranslationJob(
|
|
228
|
+
args: StartTextTranslationJobCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: StartTextTranslationJobCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
|
|
233
|
+
stopTextTranslationJob(
|
|
234
|
+
args: StopTextTranslationJobCommandInput,
|
|
235
|
+
options?: __HttpHandlerOptions
|
|
236
|
+
): Promise<StopTextTranslationJobCommandOutput>;
|
|
237
|
+
stopTextTranslationJob(
|
|
238
|
+
args: StopTextTranslationJobCommandInput,
|
|
239
|
+
cb: (err: any, data?: StopTextTranslationJobCommandOutput) => void
|
|
240
|
+
): void;
|
|
241
|
+
stopTextTranslationJob(
|
|
242
|
+
args: StopTextTranslationJobCommandInput,
|
|
243
|
+
options: __HttpHandlerOptions,
|
|
244
|
+
cb: (err: any, data?: StopTextTranslationJobCommandOutput) => void
|
|
245
|
+
): void;
|
|
246
|
+
|
|
247
|
+
translateText(
|
|
248
|
+
args: TranslateTextCommandInput,
|
|
249
|
+
options?: __HttpHandlerOptions
|
|
250
|
+
): Promise<TranslateTextCommandOutput>;
|
|
251
|
+
translateText(
|
|
252
|
+
args: TranslateTextCommandInput,
|
|
253
|
+
cb: (err: any, data?: TranslateTextCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
translateText(
|
|
256
|
+
args: TranslateTextCommandInput,
|
|
257
|
+
options: __HttpHandlerOptions,
|
|
258
|
+
cb: (err: any, data?: TranslateTextCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
|
|
261
|
+
updateParallelData(
|
|
262
|
+
args: UpdateParallelDataCommandInput,
|
|
263
|
+
options?: __HttpHandlerOptions
|
|
264
|
+
): Promise<UpdateParallelDataCommandOutput>;
|
|
265
|
+
updateParallelData(
|
|
266
|
+
args: UpdateParallelDataCommandInput,
|
|
267
|
+
cb: (err: any, data?: UpdateParallelDataCommandOutput) => void
|
|
268
|
+
): void;
|
|
269
|
+
updateParallelData(
|
|
270
|
+
args: UpdateParallelDataCommandInput,
|
|
271
|
+
options: __HttpHandlerOptions,
|
|
272
|
+
cb: (err: any, data?: UpdateParallelDataCommandOutput) => void
|
|
273
|
+
): void;
|
|
274
|
+
}
|