@aws-sdk/client-translate 3.1077.0 → 3.1079.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 (65) hide show
  1. package/dist-cjs/index.js +27 -193
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreateParallelDataCommand.js +2 -14
  4. package/dist-es/commands/DeleteParallelDataCommand.js +2 -14
  5. package/dist-es/commands/DeleteTerminologyCommand.js +2 -14
  6. package/dist-es/commands/DescribeTextTranslationJobCommand.js +2 -14
  7. package/dist-es/commands/GetParallelDataCommand.js +2 -14
  8. package/dist-es/commands/GetTerminologyCommand.js +2 -14
  9. package/dist-es/commands/ImportTerminologyCommand.js +2 -14
  10. package/dist-es/commands/ListLanguagesCommand.js +2 -14
  11. package/dist-es/commands/ListParallelDataCommand.js +2 -14
  12. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  13. package/dist-es/commands/ListTerminologiesCommand.js +2 -14
  14. package/dist-es/commands/ListTextTranslationJobsCommand.js +2 -14
  15. package/dist-es/commands/StartTextTranslationJobCommand.js +2 -14
  16. package/dist-es/commands/StopTextTranslationJobCommand.js +2 -14
  17. package/dist-es/commands/TagResourceCommand.js +2 -14
  18. package/dist-es/commands/TranslateDocumentCommand.js +2 -14
  19. package/dist-es/commands/TranslateTextCommand.js +2 -14
  20. package/dist-es/commands/UntagResourceCommand.js +2 -14
  21. package/dist-es/commands/UpdateParallelDataCommand.js +2 -14
  22. package/dist-es/index.js +1 -0
  23. package/dist-types/commandBuilder.d.ts +18 -0
  24. package/dist-types/commands/CreateParallelDataCommand.d.ts +3 -8
  25. package/dist-types/commands/DeleteParallelDataCommand.d.ts +3 -8
  26. package/dist-types/commands/DeleteTerminologyCommand.d.ts +3 -8
  27. package/dist-types/commands/DescribeTextTranslationJobCommand.d.ts +3 -8
  28. package/dist-types/commands/GetParallelDataCommand.d.ts +3 -8
  29. package/dist-types/commands/GetTerminologyCommand.d.ts +3 -8
  30. package/dist-types/commands/ImportTerminologyCommand.d.ts +3 -8
  31. package/dist-types/commands/ListLanguagesCommand.d.ts +3 -8
  32. package/dist-types/commands/ListParallelDataCommand.d.ts +3 -8
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  34. package/dist-types/commands/ListTerminologiesCommand.d.ts +3 -8
  35. package/dist-types/commands/ListTextTranslationJobsCommand.d.ts +3 -8
  36. package/dist-types/commands/StartTextTranslationJobCommand.d.ts +3 -8
  37. package/dist-types/commands/StopTextTranslationJobCommand.d.ts +3 -8
  38. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  39. package/dist-types/commands/TranslateDocumentCommand.d.ts +3 -8
  40. package/dist-types/commands/TranslateTextCommand.d.ts +3 -8
  41. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  42. package/dist-types/commands/UpdateParallelDataCommand.d.ts +3 -8
  43. package/dist-types/index.d.ts +1 -0
  44. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  45. package/dist-types/ts3.4/commands/CreateParallelDataCommand.d.ts +7 -16
  46. package/dist-types/ts3.4/commands/DeleteParallelDataCommand.d.ts +7 -16
  47. package/dist-types/ts3.4/commands/DeleteTerminologyCommand.d.ts +7 -16
  48. package/dist-types/ts3.4/commands/DescribeTextTranslationJobCommand.d.ts +7 -16
  49. package/dist-types/ts3.4/commands/GetParallelDataCommand.d.ts +7 -16
  50. package/dist-types/ts3.4/commands/GetTerminologyCommand.d.ts +7 -16
  51. package/dist-types/ts3.4/commands/ImportTerminologyCommand.d.ts +7 -16
  52. package/dist-types/ts3.4/commands/ListLanguagesCommand.d.ts +7 -16
  53. package/dist-types/ts3.4/commands/ListParallelDataCommand.d.ts +7 -16
  54. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  55. package/dist-types/ts3.4/commands/ListTerminologiesCommand.d.ts +7 -16
  56. package/dist-types/ts3.4/commands/ListTextTranslationJobsCommand.d.ts +7 -16
  57. package/dist-types/ts3.4/commands/StartTextTranslationJobCommand.d.ts +7 -16
  58. package/dist-types/ts3.4/commands/StopTextTranslationJobCommand.d.ts +7 -16
  59. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  60. package/dist-types/ts3.4/commands/TranslateDocumentCommand.d.ts +7 -16
  61. package/dist-types/ts3.4/commands/TranslateTextCommand.d.ts +7 -16
  62. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  63. package/dist-types/ts3.4/commands/UpdateParallelDataCommand.d.ts +7 -16
  64. package/dist-types/ts3.4/index.d.ts +1 -0
  65. package/package.json +8 -8
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ ServiceInputTypes,
4
+ ServiceOutputTypes,
5
+ TranslateClientResolvedConfig,
6
+ } from "./TranslateClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ TranslateClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ TranslateClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  CreateParallelDataRequest,
5
4
  CreateParallelDataResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CreateParallelDataCommandInput
15
8
  extends CreateParallelDataRequest {}
16
9
  export interface CreateParallelDataCommandOutput
@@ -22,22 +15,20 @@ declare const CreateParallelDataCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  CreateParallelDataCommandInput,
24
17
  CreateParallelDataCommandOutput,
25
- TranslateClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").TranslateClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: CreateParallelDataCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  CreateParallelDataCommandInput,
33
26
  CreateParallelDataCommandOutput,
34
- TranslateClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").TranslateClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class CreateParallelDataCommand extends CreateParallelDataCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  DeleteParallelDataRequest,
5
4
  DeleteParallelDataResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DeleteParallelDataCommandInput
15
8
  extends DeleteParallelDataRequest {}
16
9
  export interface DeleteParallelDataCommandOutput
@@ -22,22 +15,20 @@ declare const DeleteParallelDataCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DeleteParallelDataCommandInput,
24
17
  DeleteParallelDataCommandOutput,
25
- TranslateClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").TranslateClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DeleteParallelDataCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DeleteParallelDataCommandInput,
33
26
  DeleteParallelDataCommandOutput,
34
- TranslateClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").TranslateClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DeleteParallelDataCommand extends DeleteParallelDataCommand_base {
43
34
  protected static __types: {
@@ -1,13 +1,6 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import { DeleteTerminologyRequest } from "../models/models_0";
4
- import {
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- TranslateClientResolvedConfig,
8
- } from "../TranslateClient";
9
3
  export { __MetadataBearer };
10
- export { $Command };
11
4
  export interface DeleteTerminologyCommandInput
12
5
  extends DeleteTerminologyRequest {}
13
6
  export interface DeleteTerminologyCommandOutput extends __MetadataBearer {}
@@ -17,22 +10,20 @@ declare const DeleteTerminologyCommand_base: {
17
10
  ): import("@smithy/core/client").CommandImpl<
18
11
  DeleteTerminologyCommandInput,
19
12
  DeleteTerminologyCommandOutput,
20
- TranslateClientResolvedConfig,
21
- ServiceInputTypes,
22
- ServiceOutputTypes
13
+ import("..").TranslateClientResolvedConfig,
14
+ import("..").ServiceInputTypes,
15
+ import("..").ServiceOutputTypes
23
16
  >;
24
17
  new (
25
18
  input: DeleteTerminologyCommandInput
26
19
  ): import("@smithy/core/client").CommandImpl<
27
20
  DeleteTerminologyCommandInput,
28
21
  DeleteTerminologyCommandOutput,
29
- TranslateClientResolvedConfig,
30
- ServiceInputTypes,
31
- ServiceOutputTypes
22
+ import("..").TranslateClientResolvedConfig,
23
+ import("..").ServiceInputTypes,
24
+ import("..").ServiceOutputTypes
32
25
  >;
33
- getEndpointParameterInstructions(): {
34
- [x: string]: unknown;
35
- };
26
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
36
27
  };
37
28
  export declare class DeleteTerminologyCommand extends DeleteTerminologyCommand_base {
38
29
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  DescribeTextTranslationJobRequest,
5
4
  DescribeTextTranslationJobResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface DescribeTextTranslationJobCommandInput
15
8
  extends DescribeTextTranslationJobRequest {}
16
9
  export interface DescribeTextTranslationJobCommandOutput
@@ -22,22 +15,20 @@ declare const DescribeTextTranslationJobCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  DescribeTextTranslationJobCommandInput,
24
17
  DescribeTextTranslationJobCommandOutput,
25
- TranslateClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").TranslateClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: DescribeTextTranslationJobCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  DescribeTextTranslationJobCommandInput,
33
26
  DescribeTextTranslationJobCommandOutput,
34
- TranslateClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").TranslateClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class DescribeTextTranslationJobCommand extends DescribeTextTranslationJobCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  GetParallelDataRequest,
5
4
  GetParallelDataResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetParallelDataCommandInput extends GetParallelDataRequest {}
15
8
  export interface GetParallelDataCommandOutput
16
9
  extends GetParallelDataResponse,
@@ -21,22 +14,20 @@ declare const GetParallelDataCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  GetParallelDataCommandInput,
23
16
  GetParallelDataCommandOutput,
24
- TranslateClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").TranslateClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: GetParallelDataCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  GetParallelDataCommandInput,
32
25
  GetParallelDataCommandOutput,
33
- TranslateClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").TranslateClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class GetParallelDataCommand extends GetParallelDataCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  GetTerminologyRequest,
5
4
  GetTerminologyResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface GetTerminologyCommandInput extends GetTerminologyRequest {}
15
8
  export interface GetTerminologyCommandOutput
16
9
  extends GetTerminologyResponse,
@@ -21,22 +14,20 @@ declare const GetTerminologyCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  GetTerminologyCommandInput,
23
16
  GetTerminologyCommandOutput,
24
- TranslateClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").TranslateClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: GetTerminologyCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  GetTerminologyCommandInput,
32
25
  GetTerminologyCommandOutput,
33
- TranslateClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").TranslateClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class GetTerminologyCommand extends GetTerminologyCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ImportTerminologyRequest,
5
4
  ImportTerminologyResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ImportTerminologyCommandInput
15
8
  extends ImportTerminologyRequest {}
16
9
  export interface ImportTerminologyCommandOutput
@@ -22,22 +15,20 @@ declare const ImportTerminologyCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ImportTerminologyCommandInput,
24
17
  ImportTerminologyCommandOutput,
25
- TranslateClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").TranslateClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ImportTerminologyCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ImportTerminologyCommandInput,
33
26
  ImportTerminologyCommandOutput,
34
- TranslateClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").TranslateClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ImportTerminologyCommand extends ImportTerminologyCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListLanguagesRequest,
5
4
  ListLanguagesResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListLanguagesCommandInput extends ListLanguagesRequest {}
15
8
  export interface ListLanguagesCommandOutput
16
9
  extends ListLanguagesResponse,
@@ -21,22 +14,20 @@ declare const ListLanguagesCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ListLanguagesCommandInput,
23
16
  ListLanguagesCommandOutput,
24
- TranslateClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").TranslateClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  ...[input]: [] | [ListLanguagesCommandInput]
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ListLanguagesCommandInput,
32
25
  ListLanguagesCommandOutput,
33
- TranslateClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").TranslateClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ListLanguagesCommand extends ListLanguagesCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListParallelDataRequest,
5
4
  ListParallelDataResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListParallelDataCommandInput extends ListParallelDataRequest {}
15
8
  export interface ListParallelDataCommandOutput
16
9
  extends ListParallelDataResponse,
@@ -21,22 +14,20 @@ declare const ListParallelDataCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  ListParallelDataCommandInput,
23
16
  ListParallelDataCommandOutput,
24
- TranslateClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").TranslateClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  ...[input]: [] | [ListParallelDataCommandInput]
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  ListParallelDataCommandInput,
32
25
  ListParallelDataCommandOutput,
33
- TranslateClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").TranslateClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class ListParallelDataCommand extends ListParallelDataCommand_base {
42
33
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListTagsForResourceRequest,
5
4
  ListTagsForResourceResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTagsForResourceCommandInput
15
8
  extends ListTagsForResourceRequest {}
16
9
  export interface ListTagsForResourceCommandOutput
@@ -22,22 +15,20 @@ declare const ListTagsForResourceCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTagsForResourceCommandInput,
24
17
  ListTagsForResourceCommandOutput,
25
- TranslateClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").TranslateClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListTagsForResourceCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTagsForResourceCommandInput,
33
26
  ListTagsForResourceCommandOutput,
34
- TranslateClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").TranslateClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListTerminologiesRequest,
5
4
  ListTerminologiesResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTerminologiesCommandInput
15
8
  extends ListTerminologiesRequest {}
16
9
  export interface ListTerminologiesCommandOutput
@@ -22,22 +15,20 @@ declare const ListTerminologiesCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTerminologiesCommandInput,
24
17
  ListTerminologiesCommandOutput,
25
- TranslateClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").TranslateClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [ListTerminologiesCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTerminologiesCommandInput,
33
26
  ListTerminologiesCommandOutput,
34
- TranslateClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").TranslateClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTerminologiesCommand extends ListTerminologiesCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  ListTextTranslationJobsRequest,
5
4
  ListTextTranslationJobsResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListTextTranslationJobsCommandInput
15
8
  extends ListTextTranslationJobsRequest {}
16
9
  export interface ListTextTranslationJobsCommandOutput
@@ -22,22 +15,20 @@ declare const ListTextTranslationJobsCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListTextTranslationJobsCommandInput,
24
17
  ListTextTranslationJobsCommandOutput,
25
- TranslateClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").TranslateClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  ...[input]: [] | [ListTextTranslationJobsCommandInput]
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListTextTranslationJobsCommandInput,
33
26
  ListTextTranslationJobsCommandOutput,
34
- TranslateClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").TranslateClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListTextTranslationJobsCommand extends ListTextTranslationJobsCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
2
  import {
4
3
  StartTextTranslationJobRequest,
5
4
  StartTextTranslationJobResponse,
6
5
  } from "../models/models_0";
7
- import {
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- TranslateClientResolvedConfig,
11
- } from "../TranslateClient";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface StartTextTranslationJobCommandInput
15
8
  extends StartTextTranslationJobRequest {}
16
9
  export interface StartTextTranslationJobCommandOutput
@@ -22,22 +15,20 @@ declare const StartTextTranslationJobCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  StartTextTranslationJobCommandInput,
24
17
  StartTextTranslationJobCommandOutput,
25
- TranslateClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").TranslateClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: StartTextTranslationJobCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  StartTextTranslationJobCommandInput,
33
26
  StartTextTranslationJobCommandOutput,
34
- TranslateClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").TranslateClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class StartTextTranslationJobCommand extends StartTextTranslationJobCommand_base {
43
34
  protected static __types: {