@aws-sdk/client-sagemaker-runtime 3.928.0 → 3.929.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 +533 -416
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SageMakerRuntimeClient.js +2 -0
- package/dist-es/commands/InvokeEndpointAsyncCommand.js +3 -10
- package/dist-es/commands/InvokeEndpointCommand.js +3 -10
- package/dist-es/commands/InvokeEndpointWithResponseStreamCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -39
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +519 -0
- package/dist-types/SageMakerRuntimeClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -28
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +24 -0
- package/dist-types/ts3.4/SageMakerRuntimeClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -19
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +29 -0
- package/package.json +2 -2
- package/dist-es/protocols/Aws_restJson1.js +0 -345
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -29
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -44
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import {
|
|
6
|
-
EventStreamSerdeContext as __EventStreamSerdeContext,
|
|
7
|
-
SerdeContext as __SerdeContext,
|
|
8
|
-
} from "@smithy/types";
|
|
9
|
-
import {
|
|
10
|
-
InvokeEndpointAsyncCommandInput,
|
|
11
|
-
InvokeEndpointAsyncCommandOutput,
|
|
12
|
-
} from "../commands/InvokeEndpointAsyncCommand";
|
|
13
|
-
import {
|
|
14
|
-
InvokeEndpointCommandInput,
|
|
15
|
-
InvokeEndpointCommandOutput,
|
|
16
|
-
} from "../commands/InvokeEndpointCommand";
|
|
17
|
-
import {
|
|
18
|
-
InvokeEndpointWithResponseStreamCommandInput,
|
|
19
|
-
InvokeEndpointWithResponseStreamCommandOutput,
|
|
20
|
-
} from "../commands/InvokeEndpointWithResponseStreamCommand";
|
|
21
|
-
export declare const se_InvokeEndpointCommand: (
|
|
22
|
-
input: InvokeEndpointCommandInput,
|
|
23
|
-
context: __SerdeContext
|
|
24
|
-
) => Promise<__HttpRequest>;
|
|
25
|
-
export declare const se_InvokeEndpointAsyncCommand: (
|
|
26
|
-
input: InvokeEndpointAsyncCommandInput,
|
|
27
|
-
context: __SerdeContext
|
|
28
|
-
) => Promise<__HttpRequest>;
|
|
29
|
-
export declare const se_InvokeEndpointWithResponseStreamCommand: (
|
|
30
|
-
input: InvokeEndpointWithResponseStreamCommandInput,
|
|
31
|
-
context: __SerdeContext
|
|
32
|
-
) => Promise<__HttpRequest>;
|
|
33
|
-
export declare const de_InvokeEndpointCommand: (
|
|
34
|
-
output: __HttpResponse,
|
|
35
|
-
context: __SerdeContext
|
|
36
|
-
) => Promise<InvokeEndpointCommandOutput>;
|
|
37
|
-
export declare const de_InvokeEndpointAsyncCommand: (
|
|
38
|
-
output: __HttpResponse,
|
|
39
|
-
context: __SerdeContext
|
|
40
|
-
) => Promise<InvokeEndpointAsyncCommandOutput>;
|
|
41
|
-
export declare const de_InvokeEndpointWithResponseStreamCommand: (
|
|
42
|
-
output: __HttpResponse,
|
|
43
|
-
context: __SerdeContext & __EventStreamSerdeContext
|
|
44
|
-
) => Promise<InvokeEndpointWithResponseStreamCommandOutput>;
|