@aws-sdk/client-elementalinference 3.1076.0 → 3.1078.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/dist-cjs/index.js +27 -165
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/AssociateFeedCommand.js +2 -14
- package/dist-es/commands/CreateDictionaryCommand.js +2 -14
- package/dist-es/commands/CreateFeedCommand.js +2 -14
- package/dist-es/commands/DeleteDictionaryCommand.js +2 -14
- package/dist-es/commands/DeleteFeedCommand.js +2 -14
- package/dist-es/commands/DisassociateFeedCommand.js +2 -14
- package/dist-es/commands/ExportDictionaryEntriesCommand.js +2 -14
- package/dist-es/commands/GetDictionaryCommand.js +2 -14
- package/dist-es/commands/GetFeedCommand.js +2 -14
- package/dist-es/commands/ListDictionariesCommand.js +2 -14
- package/dist-es/commands/ListFeedsCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateDictionaryCommand.js +2 -14
- package/dist-es/commands/UpdateFeedCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/AssociateFeedCommand.d.ts +3 -8
- package/dist-types/commands/CreateDictionaryCommand.d.ts +3 -8
- package/dist-types/commands/CreateFeedCommand.d.ts +3 -8
- package/dist-types/commands/DeleteDictionaryCommand.d.ts +3 -8
- package/dist-types/commands/DeleteFeedCommand.d.ts +3 -8
- package/dist-types/commands/DisassociateFeedCommand.d.ts +3 -8
- package/dist-types/commands/ExportDictionaryEntriesCommand.d.ts +3 -8
- package/dist-types/commands/GetDictionaryCommand.d.ts +3 -8
- package/dist-types/commands/GetFeedCommand.d.ts +3 -8
- package/dist-types/commands/ListDictionariesCommand.d.ts +3 -8
- package/dist-types/commands/ListFeedsCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateDictionaryCommand.d.ts +3 -8
- package/dist-types/commands/UpdateFeedCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/AssociateFeedCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateDictionaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateFeedCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteDictionaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteFeedCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DisassociateFeedCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ExportDictionaryEntriesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetDictionaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetFeedCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDictionariesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListFeedsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateDictionaryCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateFeedCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ElementalInferenceClientResolvedConfig,
|
|
4
|
+
ServiceInputTypes,
|
|
5
|
+
ServiceOutputTypes,
|
|
6
|
+
} from "./ElementalInferenceClient";
|
|
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
|
+
ElementalInferenceClientResolvedConfig,
|
|
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
|
+
ElementalInferenceClientResolvedConfig,
|
|
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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import {
|
|
9
3
|
AssociateFeedRequest,
|
|
10
4
|
AssociateFeedResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface AssociateFeedCommandInput extends AssociateFeedRequest {}
|
|
15
8
|
export interface AssociateFeedCommandOutput
|
|
16
9
|
extends AssociateFeedResponse,
|
|
@@ -21,22 +14,20 @@ declare const AssociateFeedCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
AssociateFeedCommandInput,
|
|
23
16
|
AssociateFeedCommandOutput,
|
|
24
|
-
ElementalInferenceClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: AssociateFeedCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
AssociateFeedCommandInput,
|
|
32
25
|
AssociateFeedCommandOutput,
|
|
33
|
-
ElementalInferenceClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
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 AssociateFeedCommand extends AssociateFeedCommand_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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import {
|
|
9
3
|
CreateDictionaryRequest,
|
|
10
4
|
CreateDictionaryResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface CreateDictionaryCommandInput extends CreateDictionaryRequest {}
|
|
15
8
|
export interface CreateDictionaryCommandOutput
|
|
16
9
|
extends CreateDictionaryResponse,
|
|
@@ -21,22 +14,20 @@ declare const CreateDictionaryCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
CreateDictionaryCommandInput,
|
|
23
16
|
CreateDictionaryCommandOutput,
|
|
24
|
-
ElementalInferenceClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: CreateDictionaryCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
CreateDictionaryCommandInput,
|
|
32
25
|
CreateDictionaryCommandOutput,
|
|
33
|
-
ElementalInferenceClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
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 CreateDictionaryCommand extends CreateDictionaryCommand_base {
|
|
42
33
|
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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import { CreateFeedRequest, CreateFeedResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface CreateFeedCommandInput extends CreateFeedRequest {}
|
|
12
5
|
export interface CreateFeedCommandOutput
|
|
13
6
|
extends CreateFeedResponse,
|
|
@@ -18,22 +11,20 @@ declare const CreateFeedCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
CreateFeedCommandInput,
|
|
20
13
|
CreateFeedCommandOutput,
|
|
21
|
-
ElementalInferenceClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: CreateFeedCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
CreateFeedCommandInput,
|
|
29
22
|
CreateFeedCommandOutput,
|
|
30
|
-
ElementalInferenceClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class CreateFeedCommand extends CreateFeedCommand_base {
|
|
39
30
|
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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import {
|
|
9
3
|
DeleteDictionaryRequest,
|
|
10
4
|
DeleteDictionaryResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DeleteDictionaryCommandInput extends DeleteDictionaryRequest {}
|
|
15
8
|
export interface DeleteDictionaryCommandOutput
|
|
16
9
|
extends DeleteDictionaryResponse,
|
|
@@ -21,22 +14,20 @@ declare const DeleteDictionaryCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DeleteDictionaryCommandInput,
|
|
23
16
|
DeleteDictionaryCommandOutput,
|
|
24
|
-
ElementalInferenceClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DeleteDictionaryCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DeleteDictionaryCommandInput,
|
|
32
25
|
DeleteDictionaryCommandOutput,
|
|
33
|
-
ElementalInferenceClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
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 DeleteDictionaryCommand extends DeleteDictionaryCommand_base {
|
|
42
33
|
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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import { DeleteFeedRequest, DeleteFeedResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface DeleteFeedCommandInput extends DeleteFeedRequest {}
|
|
12
5
|
export interface DeleteFeedCommandOutput
|
|
13
6
|
extends DeleteFeedResponse,
|
|
@@ -18,22 +11,20 @@ declare const DeleteFeedCommand_base: {
|
|
|
18
11
|
): import("@smithy/core/client").CommandImpl<
|
|
19
12
|
DeleteFeedCommandInput,
|
|
20
13
|
DeleteFeedCommandOutput,
|
|
21
|
-
ElementalInferenceClientResolvedConfig,
|
|
22
|
-
ServiceInputTypes,
|
|
23
|
-
ServiceOutputTypes
|
|
14
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
15
|
+
import("..").ServiceInputTypes,
|
|
16
|
+
import("..").ServiceOutputTypes
|
|
24
17
|
>;
|
|
25
18
|
new (
|
|
26
19
|
input: DeleteFeedCommandInput
|
|
27
20
|
): import("@smithy/core/client").CommandImpl<
|
|
28
21
|
DeleteFeedCommandInput,
|
|
29
22
|
DeleteFeedCommandOutput,
|
|
30
|
-
ElementalInferenceClientResolvedConfig,
|
|
31
|
-
ServiceInputTypes,
|
|
32
|
-
ServiceOutputTypes
|
|
23
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
24
|
+
import("..").ServiceInputTypes,
|
|
25
|
+
import("..").ServiceOutputTypes
|
|
33
26
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
35
|
-
[x: string]: unknown;
|
|
36
|
-
};
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
37
28
|
};
|
|
38
29
|
export declare class DeleteFeedCommand extends DeleteFeedCommand_base {
|
|
39
30
|
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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import {
|
|
9
3
|
DisassociateFeedRequest,
|
|
10
4
|
DisassociateFeedResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface DisassociateFeedCommandInput extends DisassociateFeedRequest {}
|
|
15
8
|
export interface DisassociateFeedCommandOutput
|
|
16
9
|
extends DisassociateFeedResponse,
|
|
@@ -21,22 +14,20 @@ declare const DisassociateFeedCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
DisassociateFeedCommandInput,
|
|
23
16
|
DisassociateFeedCommandOutput,
|
|
24
|
-
ElementalInferenceClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: DisassociateFeedCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
DisassociateFeedCommandInput,
|
|
32
25
|
DisassociateFeedCommandOutput,
|
|
33
|
-
ElementalInferenceClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
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 DisassociateFeedCommand extends DisassociateFeedCommand_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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import {
|
|
9
3
|
ExportDictionaryEntriesRequest,
|
|
10
4
|
ExportDictionaryEntriesResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ExportDictionaryEntriesCommandInput
|
|
15
8
|
extends ExportDictionaryEntriesRequest {}
|
|
16
9
|
export interface ExportDictionaryEntriesCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const ExportDictionaryEntriesCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
ExportDictionaryEntriesCommandInput,
|
|
24
17
|
ExportDictionaryEntriesCommandOutput,
|
|
25
|
-
ElementalInferenceClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: ExportDictionaryEntriesCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
ExportDictionaryEntriesCommandInput,
|
|
33
26
|
ExportDictionaryEntriesCommandOutput,
|
|
34
|
-
ElementalInferenceClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
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 ExportDictionaryEntriesCommand extends ExportDictionaryEntriesCommand_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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import {
|
|
9
3
|
GetDictionaryRequest,
|
|
10
4
|
GetDictionaryResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface GetDictionaryCommandInput extends GetDictionaryRequest {}
|
|
15
8
|
export interface GetDictionaryCommandOutput
|
|
16
9
|
extends GetDictionaryResponse,
|
|
@@ -21,22 +14,20 @@ declare const GetDictionaryCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
GetDictionaryCommandInput,
|
|
23
16
|
GetDictionaryCommandOutput,
|
|
24
|
-
ElementalInferenceClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
input: GetDictionaryCommandInput
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
GetDictionaryCommandInput,
|
|
32
25
|
GetDictionaryCommandOutput,
|
|
33
|
-
ElementalInferenceClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
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 GetDictionaryCommand extends GetDictionaryCommand_base {
|
|
42
33
|
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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import { GetFeedRequest, GetFeedResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface GetFeedCommandInput extends GetFeedRequest {}
|
|
12
5
|
export interface GetFeedCommandOutput
|
|
13
6
|
extends GetFeedResponse,
|
|
@@ -16,20 +9,18 @@ declare const GetFeedCommand_base: {
|
|
|
16
9
|
new (input: GetFeedCommandInput): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
GetFeedCommandInput,
|
|
18
11
|
GetFeedCommandOutput,
|
|
19
|
-
ElementalInferenceClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (input: GetFeedCommandInput): import("@smithy/core/client").CommandImpl<
|
|
24
17
|
GetFeedCommandInput,
|
|
25
18
|
GetFeedCommandOutput,
|
|
26
|
-
ElementalInferenceClientResolvedConfig,
|
|
27
|
-
ServiceInputTypes,
|
|
28
|
-
ServiceOutputTypes
|
|
19
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
20
|
+
import("..").ServiceInputTypes,
|
|
21
|
+
import("..").ServiceOutputTypes
|
|
29
22
|
>;
|
|
30
|
-
getEndpointParameterInstructions():
|
|
31
|
-
[x: string]: unknown;
|
|
32
|
-
};
|
|
23
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
33
24
|
};
|
|
34
25
|
export declare class GetFeedCommand extends GetFeedCommand_base {
|
|
35
26
|
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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import {
|
|
9
3
|
ListDictionariesRequest,
|
|
10
4
|
ListDictionariesResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface ListDictionariesCommandInput extends ListDictionariesRequest {}
|
|
15
8
|
export interface ListDictionariesCommandOutput
|
|
16
9
|
extends ListDictionariesResponse,
|
|
@@ -21,22 +14,20 @@ declare const ListDictionariesCommand_base: {
|
|
|
21
14
|
): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
ListDictionariesCommandInput,
|
|
23
16
|
ListDictionariesCommandOutput,
|
|
24
|
-
ElementalInferenceClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
21
|
new (
|
|
29
22
|
...[input]: [] | [ListDictionariesCommandInput]
|
|
30
23
|
): import("@smithy/core/client").CommandImpl<
|
|
31
24
|
ListDictionariesCommandInput,
|
|
32
25
|
ListDictionariesCommandOutput,
|
|
33
|
-
ElementalInferenceClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
26
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
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 ListDictionariesCommand extends ListDictionariesCommand_base {
|
|
42
33
|
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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import { ListFeedsRequest, ListFeedsResponse } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface ListFeedsCommandInput extends ListFeedsRequest {}
|
|
12
5
|
export interface ListFeedsCommandOutput
|
|
13
6
|
extends ListFeedsResponse,
|
|
@@ -16,22 +9,20 @@ declare const ListFeedsCommand_base: {
|
|
|
16
9
|
new (input: ListFeedsCommandInput): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
ListFeedsCommandInput,
|
|
18
11
|
ListFeedsCommandOutput,
|
|
19
|
-
ElementalInferenceClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
...[input]: [] | [ListFeedsCommandInput]
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
ListFeedsCommandInput,
|
|
27
20
|
ListFeedsCommandOutput,
|
|
28
|
-
ElementalInferenceClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class ListFeedsCommand extends ListFeedsCommand_base {
|
|
37
28
|
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
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import {
|
|
9
3
|
ListTagsForResourceRequest,
|
|
10
4
|
ListTagsForResourceResponse,
|
|
11
5
|
} from "../models/models_0";
|
|
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
|
-
ElementalInferenceClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
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
|
-
ElementalInferenceClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
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,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
ElementalInferenceClientResolvedConfig,
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
} from "../ElementalInferenceClient";
|
|
8
2
|
import { TagResourceRequest } from "../models/models_0";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
12
5
|
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const TagResourceCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const TagResourceCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
TagResourceCommandInput,
|
|
18
11
|
TagResourceCommandOutput,
|
|
19
|
-
ElementalInferenceClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: TagResourceCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
TagResourceCommandInput,
|
|
27
20
|
TagResourceCommandOutput,
|
|
28
|
-
ElementalInferenceClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").ElementalInferenceClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
37
28
|
protected static __types: {
|