@aws-sdk/client-translate 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/Translate.d.ts +259 -80
- package/dist-types/ts3.4/TranslateClient.d.ts +194 -88
- package/dist-types/ts3.4/commands/CreateParallelDataCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteParallelDataCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteTerminologyCommand.d.ts +31 -17
- package/dist-types/ts3.4/commands/DescribeTextTranslationJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetParallelDataCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetTerminologyCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ImportTerminologyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListLanguagesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListParallelDataCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ListTerminologiesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTextTranslationJobsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StartTextTranslationJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/StopTextTranslationJobCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TranslateTextCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateParallelDataCommand.d.ts +36 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +560 -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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
CreateParallelDataRequest,
|
|
10
|
+
CreateParallelDataResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface CreateParallelDataCommandInput
|
|
18
|
+
extends CreateParallelDataRequest {}
|
|
19
|
+
export interface CreateParallelDataCommandOutput
|
|
20
|
+
extends CreateParallelDataResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateParallelDataCommand extends $Command<
|
|
23
|
+
CreateParallelDataCommandInput,
|
|
24
|
+
CreateParallelDataCommandOutput,
|
|
25
|
+
TranslateClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateParallelDataCommandInput;
|
|
28
|
+
constructor(input: CreateParallelDataCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranslateClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<CreateParallelDataCommandInput, CreateParallelDataCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DeleteParallelDataRequest,
|
|
10
|
+
DeleteParallelDataResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface DeleteParallelDataCommandInput
|
|
18
|
+
extends DeleteParallelDataRequest {}
|
|
19
|
+
export interface DeleteParallelDataCommandOutput
|
|
20
|
+
extends DeleteParallelDataResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteParallelDataCommand extends $Command<
|
|
23
|
+
DeleteParallelDataCommandInput,
|
|
24
|
+
DeleteParallelDataCommandOutput,
|
|
25
|
+
TranslateClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteParallelDataCommandInput;
|
|
28
|
+
constructor(input: DeleteParallelDataCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranslateClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteParallelDataCommandInput, DeleteParallelDataCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,31 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { DeleteTerminologyRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
TranslateClientResolvedConfig,
|
|
13
|
+
} from "../TranslateClient";
|
|
14
|
+
export interface DeleteTerminologyCommandInput
|
|
15
|
+
extends DeleteTerminologyRequest {}
|
|
16
|
+
export interface DeleteTerminologyCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class DeleteTerminologyCommand extends $Command<
|
|
18
|
+
DeleteTerminologyCommandInput,
|
|
19
|
+
DeleteTerminologyCommandOutput,
|
|
20
|
+
TranslateClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteTerminologyCommandInput;
|
|
23
|
+
constructor(input: DeleteTerminologyCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: TranslateClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<DeleteTerminologyCommandInput, DeleteTerminologyCommandOutput>;
|
|
29
|
+
private serialize;
|
|
30
|
+
private deserialize;
|
|
31
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeTextTranslationJobRequest,
|
|
10
|
+
DescribeTextTranslationJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface DescribeTextTranslationJobCommandInput
|
|
18
|
+
extends DescribeTextTranslationJobRequest {}
|
|
19
|
+
export interface DescribeTextTranslationJobCommandOutput
|
|
20
|
+
extends DescribeTextTranslationJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeTextTranslationJobCommand extends $Command<
|
|
23
|
+
DescribeTextTranslationJobCommandInput,
|
|
24
|
+
DescribeTextTranslationJobCommandOutput,
|
|
25
|
+
TranslateClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeTextTranslationJobCommandInput;
|
|
28
|
+
constructor(input: DescribeTextTranslationJobCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranslateClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeTextTranslationJobCommandInput,
|
|
35
|
+
DescribeTextTranslationJobCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetParallelDataRequest,
|
|
10
|
+
GetParallelDataResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface GetParallelDataCommandInput extends GetParallelDataRequest {}
|
|
18
|
+
export interface GetParallelDataCommandOutput
|
|
19
|
+
extends GetParallelDataResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetParallelDataCommand extends $Command<
|
|
22
|
+
GetParallelDataCommandInput,
|
|
23
|
+
GetParallelDataCommandOutput,
|
|
24
|
+
TranslateClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetParallelDataCommandInput;
|
|
27
|
+
constructor(input: GetParallelDataCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: TranslateClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetParallelDataCommandInput, GetParallelDataCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetTerminologyRequest,
|
|
10
|
+
GetTerminologyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface GetTerminologyCommandInput extends GetTerminologyRequest {}
|
|
18
|
+
export interface GetTerminologyCommandOutput
|
|
19
|
+
extends GetTerminologyResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetTerminologyCommand extends $Command<
|
|
22
|
+
GetTerminologyCommandInput,
|
|
23
|
+
GetTerminologyCommandOutput,
|
|
24
|
+
TranslateClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetTerminologyCommandInput;
|
|
27
|
+
constructor(input: GetTerminologyCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: TranslateClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetTerminologyCommandInput, GetTerminologyCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ImportTerminologyRequest,
|
|
10
|
+
ImportTerminologyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface ImportTerminologyCommandInput
|
|
18
|
+
extends ImportTerminologyRequest {}
|
|
19
|
+
export interface ImportTerminologyCommandOutput
|
|
20
|
+
extends ImportTerminologyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ImportTerminologyCommand extends $Command<
|
|
23
|
+
ImportTerminologyCommandInput,
|
|
24
|
+
ImportTerminologyCommandOutput,
|
|
25
|
+
TranslateClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ImportTerminologyCommandInput;
|
|
28
|
+
constructor(input: ImportTerminologyCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranslateClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ImportTerminologyCommandInput, ImportTerminologyCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListLanguagesRequest,
|
|
10
|
+
ListLanguagesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface ListLanguagesCommandInput extends ListLanguagesRequest {}
|
|
18
|
+
export interface ListLanguagesCommandOutput
|
|
19
|
+
extends ListLanguagesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListLanguagesCommand extends $Command<
|
|
22
|
+
ListLanguagesCommandInput,
|
|
23
|
+
ListLanguagesCommandOutput,
|
|
24
|
+
TranslateClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListLanguagesCommandInput;
|
|
27
|
+
constructor(input: ListLanguagesCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: TranslateClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListLanguagesCommandInput, ListLanguagesCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListParallelDataRequest,
|
|
10
|
+
ListParallelDataResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface ListParallelDataCommandInput extends ListParallelDataRequest {}
|
|
18
|
+
export interface ListParallelDataCommandOutput
|
|
19
|
+
extends ListParallelDataResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class ListParallelDataCommand extends $Command<
|
|
22
|
+
ListParallelDataCommandInput,
|
|
23
|
+
ListParallelDataCommandOutput,
|
|
24
|
+
TranslateClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: ListParallelDataCommandInput;
|
|
27
|
+
constructor(input: ListParallelDataCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: TranslateClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<ListParallelDataCommandInput, ListParallelDataCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListTerminologiesRequest,
|
|
10
|
+
ListTerminologiesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface ListTerminologiesCommandInput
|
|
18
|
+
extends ListTerminologiesRequest {}
|
|
19
|
+
export interface ListTerminologiesCommandOutput
|
|
20
|
+
extends ListTerminologiesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTerminologiesCommand extends $Command<
|
|
23
|
+
ListTerminologiesCommandInput,
|
|
24
|
+
ListTerminologiesCommandOutput,
|
|
25
|
+
TranslateClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTerminologiesCommandInput;
|
|
28
|
+
constructor(input: ListTerminologiesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranslateClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTerminologiesCommandInput, ListTerminologiesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
ListTextTranslationJobsRequest,
|
|
10
|
+
ListTextTranslationJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranslateClientResolvedConfig,
|
|
16
|
+
} from "../TranslateClient";
|
|
17
|
+
export interface ListTextTranslationJobsCommandInput
|
|
18
|
+
extends ListTextTranslationJobsRequest {}
|
|
19
|
+
export interface ListTextTranslationJobsCommandOutput
|
|
20
|
+
extends ListTextTranslationJobsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTextTranslationJobsCommand extends $Command<
|
|
23
|
+
ListTextTranslationJobsCommandInput,
|
|
24
|
+
ListTextTranslationJobsCommandOutput,
|
|
25
|
+
TranslateClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTextTranslationJobsCommandInput;
|
|
28
|
+
constructor(input: ListTextTranslationJobsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: TranslateClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListTextTranslationJobsCommandInput,
|
|
35
|
+
ListTextTranslationJobsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|