@aws-sdk/client-sagemaker-runtime 3.168.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 +16 -0
- package/dist-types/ts3.4/SageMakerRuntime.d.ts +40 -15
- package/dist-types/ts3.4/SageMakerRuntimeClient.d.ts +142 -75
- package/dist-types/ts3.4/commands/InvokeEndpointAsyncCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/InvokeEndpointCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +2 -2
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/SageMakerRuntimeServiceException.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 +124 -116
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +29 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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-sagemaker-runtime
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-sagemaker-runtime
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-sagemaker-runtime
|
|
@@ -1,15 +1,40 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
InvokeEndpointAsyncCommandInput,
|
|
4
|
+
InvokeEndpointAsyncCommandOutput,
|
|
5
|
+
} from "./commands/InvokeEndpointAsyncCommand";
|
|
6
|
+
import {
|
|
7
|
+
InvokeEndpointCommandInput,
|
|
8
|
+
InvokeEndpointCommandOutput,
|
|
9
|
+
} from "./commands/InvokeEndpointCommand";
|
|
10
|
+
import { SageMakerRuntimeClient } from "./SageMakerRuntimeClient";
|
|
11
|
+
|
|
12
|
+
export declare class SageMakerRuntime extends SageMakerRuntimeClient {
|
|
13
|
+
invokeEndpoint(
|
|
14
|
+
args: InvokeEndpointCommandInput,
|
|
15
|
+
options?: __HttpHandlerOptions
|
|
16
|
+
): Promise<InvokeEndpointCommandOutput>;
|
|
17
|
+
invokeEndpoint(
|
|
18
|
+
args: InvokeEndpointCommandInput,
|
|
19
|
+
cb: (err: any, data?: InvokeEndpointCommandOutput) => void
|
|
20
|
+
): void;
|
|
21
|
+
invokeEndpoint(
|
|
22
|
+
args: InvokeEndpointCommandInput,
|
|
23
|
+
options: __HttpHandlerOptions,
|
|
24
|
+
cb: (err: any, data?: InvokeEndpointCommandOutput) => void
|
|
25
|
+
): void;
|
|
26
|
+
|
|
27
|
+
invokeEndpointAsync(
|
|
28
|
+
args: InvokeEndpointAsyncCommandInput,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Promise<InvokeEndpointAsyncCommandOutput>;
|
|
31
|
+
invokeEndpointAsync(
|
|
32
|
+
args: InvokeEndpointAsyncCommandInput,
|
|
33
|
+
cb: (err: any, data?: InvokeEndpointAsyncCommandOutput) => void
|
|
34
|
+
): void;
|
|
35
|
+
invokeEndpointAsync(
|
|
36
|
+
args: InvokeEndpointAsyncCommandInput,
|
|
37
|
+
options: __HttpHandlerOptions,
|
|
38
|
+
cb: (err: any, data?: InvokeEndpointAsyncCommandOutput) => void
|
|
39
|
+
): void;
|
|
40
|
+
}
|
|
@@ -1,75 +1,142 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
InvokeEndpointAsyncCommandInput,
|
|
47
|
+
InvokeEndpointAsyncCommandOutput,
|
|
48
|
+
} from "./commands/InvokeEndpointAsyncCommand";
|
|
49
|
+
import {
|
|
50
|
+
InvokeEndpointCommandInput,
|
|
51
|
+
InvokeEndpointCommandOutput,
|
|
52
|
+
} from "./commands/InvokeEndpointCommand";
|
|
53
|
+
export declare type ServiceInputTypes =
|
|
54
|
+
| InvokeEndpointAsyncCommandInput
|
|
55
|
+
| InvokeEndpointCommandInput;
|
|
56
|
+
export declare type ServiceOutputTypes =
|
|
57
|
+
| InvokeEndpointAsyncCommandOutput
|
|
58
|
+
| InvokeEndpointCommandOutput;
|
|
59
|
+
export interface ClientDefaults
|
|
60
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
61
|
+
requestHandler?: __HttpHandler;
|
|
62
|
+
|
|
63
|
+
sha256?: __HashConstructor;
|
|
64
|
+
|
|
65
|
+
urlParser?: __UrlParser;
|
|
66
|
+
|
|
67
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
68
|
+
|
|
69
|
+
streamCollector?: __StreamCollector;
|
|
70
|
+
|
|
71
|
+
base64Decoder?: __Decoder;
|
|
72
|
+
|
|
73
|
+
base64Encoder?: __Encoder;
|
|
74
|
+
|
|
75
|
+
utf8Decoder?: __Decoder;
|
|
76
|
+
|
|
77
|
+
utf8Encoder?: __Encoder;
|
|
78
|
+
|
|
79
|
+
runtime?: string;
|
|
80
|
+
|
|
81
|
+
disableHostPrefix?: boolean;
|
|
82
|
+
|
|
83
|
+
maxAttempts?: number | __Provider<number>;
|
|
84
|
+
|
|
85
|
+
retryMode?: string | __Provider<string>;
|
|
86
|
+
|
|
87
|
+
logger?: __Logger;
|
|
88
|
+
|
|
89
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
90
|
+
|
|
91
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
92
|
+
|
|
93
|
+
serviceId?: string;
|
|
94
|
+
|
|
95
|
+
region?: string | __Provider<string>;
|
|
96
|
+
|
|
97
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
98
|
+
|
|
99
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
100
|
+
|
|
101
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
102
|
+
|
|
103
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
104
|
+
}
|
|
105
|
+
declare type SageMakerRuntimeClientConfigType = Partial<
|
|
106
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
107
|
+
> &
|
|
108
|
+
ClientDefaults &
|
|
109
|
+
RegionInputConfig &
|
|
110
|
+
EndpointsInputConfig &
|
|
111
|
+
RetryInputConfig &
|
|
112
|
+
HostHeaderInputConfig &
|
|
113
|
+
AwsAuthInputConfig &
|
|
114
|
+
UserAgentInputConfig;
|
|
115
|
+
|
|
116
|
+
export interface SageMakerRuntimeClientConfig
|
|
117
|
+
extends SageMakerRuntimeClientConfigType {}
|
|
118
|
+
declare type SageMakerRuntimeClientResolvedConfigType =
|
|
119
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
120
|
+
Required<ClientDefaults> &
|
|
121
|
+
RegionResolvedConfig &
|
|
122
|
+
EndpointsResolvedConfig &
|
|
123
|
+
RetryResolvedConfig &
|
|
124
|
+
HostHeaderResolvedConfig &
|
|
125
|
+
AwsAuthResolvedConfig &
|
|
126
|
+
UserAgentResolvedConfig;
|
|
127
|
+
|
|
128
|
+
export interface SageMakerRuntimeClientResolvedConfig
|
|
129
|
+
extends SageMakerRuntimeClientResolvedConfigType {}
|
|
130
|
+
|
|
131
|
+
export declare class SageMakerRuntimeClient extends __Client<
|
|
132
|
+
__HttpHandlerOptions,
|
|
133
|
+
ServiceInputTypes,
|
|
134
|
+
ServiceOutputTypes,
|
|
135
|
+
SageMakerRuntimeClientResolvedConfig
|
|
136
|
+
> {
|
|
137
|
+
readonly config: SageMakerRuntimeClientResolvedConfig;
|
|
138
|
+
constructor(configuration: SageMakerRuntimeClientConfig);
|
|
139
|
+
|
|
140
|
+
destroy(): void;
|
|
141
|
+
}
|
|
142
|
+
export {};
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
InvokeEndpointAsyncInput,
|
|
10
|
+
InvokeEndpointAsyncOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SageMakerRuntimeClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SageMakerRuntimeClient";
|
|
17
|
+
export interface InvokeEndpointAsyncCommandInput
|
|
18
|
+
extends InvokeEndpointAsyncInput {}
|
|
19
|
+
export interface InvokeEndpointAsyncCommandOutput
|
|
20
|
+
extends InvokeEndpointAsyncOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class InvokeEndpointAsyncCommand extends $Command<
|
|
24
|
+
InvokeEndpointAsyncCommandInput,
|
|
25
|
+
InvokeEndpointAsyncCommandOutput,
|
|
26
|
+
SageMakerRuntimeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: InvokeEndpointAsyncCommandInput;
|
|
29
|
+
constructor(input: InvokeEndpointAsyncCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SageMakerRuntimeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<InvokeEndpointAsyncCommandInput, InvokeEndpointAsyncCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
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 { InvokeEndpointInput, InvokeEndpointOutput } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SageMakerRuntimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SageMakerRuntimeClient";
|
|
14
|
+
export interface InvokeEndpointCommandInput extends InvokeEndpointInput {}
|
|
15
|
+
export interface InvokeEndpointCommandOutput
|
|
16
|
+
extends InvokeEndpointOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class InvokeEndpointCommand extends $Command<
|
|
20
|
+
InvokeEndpointCommandInput,
|
|
21
|
+
InvokeEndpointCommandOutput,
|
|
22
|
+
SageMakerRuntimeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: InvokeEndpointCommandInput;
|
|
25
|
+
constructor(input: InvokeEndpointCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SageMakerRuntimeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<InvokeEndpointCommandInput, InvokeEndpointCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./InvokeEndpointAsyncCommand";
|
|
2
|
-
export * from "./InvokeEndpointCommand";
|
|
1
|
+
export * from "./InvokeEndpointAsyncCommand";
|
|
2
|
+
export * from "./InvokeEndpointCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./SageMakerRuntime";
|
|
2
|
-
export * from "./SageMakerRuntimeClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { SageMakerRuntimeServiceException } from "./models/SageMakerRuntimeServiceException";
|
|
1
|
+
export * from "./SageMakerRuntime";
|
|
2
|
+
export * from "./SageMakerRuntimeClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { SageMakerRuntimeServiceException } from "./models/SageMakerRuntimeServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class SageMakerRuntimeServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|
|
@@ -1,116 +1,124 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { SageMakerRuntimeServiceException as __BaseException } from "./SageMakerRuntimeServiceException";
|
|
3
|
-
|
|
4
|
-
export declare class InternalDependencyException extends __BaseException {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
export declare class ModelError extends __BaseException {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export declare class ModelNotReadyException extends __BaseException {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
export declare const InvokeEndpointInputFilterSensitiveLog: (
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
export declare const
|
|
115
|
-
|
|
116
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SageMakerRuntimeServiceException as __BaseException } from "./SageMakerRuntimeServiceException";
|
|
3
|
+
|
|
4
|
+
export declare class InternalDependencyException extends __BaseException {
|
|
5
|
+
readonly name: "InternalDependencyException";
|
|
6
|
+
readonly $fault: "server";
|
|
7
|
+
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(
|
|
10
|
+
opts: __ExceptionOptionType<InternalDependencyException, __BaseException>
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export declare class InternalFailure extends __BaseException {
|
|
15
|
+
readonly name: "InternalFailure";
|
|
16
|
+
readonly $fault: "server";
|
|
17
|
+
Message?: string;
|
|
18
|
+
|
|
19
|
+
constructor(opts: __ExceptionOptionType<InternalFailure, __BaseException>);
|
|
20
|
+
}
|
|
21
|
+
export interface InvokeEndpointInput {
|
|
22
|
+
EndpointName: string | undefined;
|
|
23
|
+
|
|
24
|
+
Body: Uint8Array | undefined;
|
|
25
|
+
|
|
26
|
+
ContentType?: string;
|
|
27
|
+
|
|
28
|
+
Accept?: string;
|
|
29
|
+
|
|
30
|
+
CustomAttributes?: string;
|
|
31
|
+
|
|
32
|
+
TargetModel?: string;
|
|
33
|
+
|
|
34
|
+
TargetVariant?: string;
|
|
35
|
+
|
|
36
|
+
TargetContainerHostname?: string;
|
|
37
|
+
|
|
38
|
+
InferenceId?: string;
|
|
39
|
+
}
|
|
40
|
+
export interface InvokeEndpointOutput {
|
|
41
|
+
Body: Uint8Array | undefined;
|
|
42
|
+
|
|
43
|
+
ContentType?: string;
|
|
44
|
+
|
|
45
|
+
InvokedProductionVariant?: string;
|
|
46
|
+
|
|
47
|
+
CustomAttributes?: string;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export declare class ModelError extends __BaseException {
|
|
51
|
+
readonly name: "ModelError";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
Message?: string;
|
|
54
|
+
|
|
55
|
+
OriginalStatusCode?: number;
|
|
56
|
+
|
|
57
|
+
OriginalMessage?: string;
|
|
58
|
+
|
|
59
|
+
LogStreamArn?: string;
|
|
60
|
+
|
|
61
|
+
constructor(opts: __ExceptionOptionType<ModelError, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export declare class ModelNotReadyException extends __BaseException {
|
|
65
|
+
readonly name: "ModelNotReadyException";
|
|
66
|
+
readonly $fault: "client";
|
|
67
|
+
Message?: string;
|
|
68
|
+
|
|
69
|
+
constructor(
|
|
70
|
+
opts: __ExceptionOptionType<ModelNotReadyException, __BaseException>
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export declare class ServiceUnavailable extends __BaseException {
|
|
75
|
+
readonly name: "ServiceUnavailable";
|
|
76
|
+
readonly $fault: "server";
|
|
77
|
+
Message?: string;
|
|
78
|
+
|
|
79
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailable, __BaseException>);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export declare class ValidationError extends __BaseException {
|
|
83
|
+
readonly name: "ValidationError";
|
|
84
|
+
readonly $fault: "client";
|
|
85
|
+
Message?: string;
|
|
86
|
+
|
|
87
|
+
constructor(opts: __ExceptionOptionType<ValidationError, __BaseException>);
|
|
88
|
+
}
|
|
89
|
+
export interface InvokeEndpointAsyncInput {
|
|
90
|
+
EndpointName: string | undefined;
|
|
91
|
+
|
|
92
|
+
ContentType?: string;
|
|
93
|
+
|
|
94
|
+
Accept?: string;
|
|
95
|
+
|
|
96
|
+
CustomAttributes?: string;
|
|
97
|
+
|
|
98
|
+
InferenceId?: string;
|
|
99
|
+
|
|
100
|
+
InputLocation: string | undefined;
|
|
101
|
+
|
|
102
|
+
RequestTTLSeconds?: number;
|
|
103
|
+
}
|
|
104
|
+
export interface InvokeEndpointAsyncOutput {
|
|
105
|
+
InferenceId?: string;
|
|
106
|
+
|
|
107
|
+
OutputLocation?: string;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export declare const InvokeEndpointInputFilterSensitiveLog: (
|
|
111
|
+
obj: InvokeEndpointInput
|
|
112
|
+
) => any;
|
|
113
|
+
|
|
114
|
+
export declare const InvokeEndpointOutputFilterSensitiveLog: (
|
|
115
|
+
obj: InvokeEndpointOutput
|
|
116
|
+
) => any;
|
|
117
|
+
|
|
118
|
+
export declare const InvokeEndpointAsyncInputFilterSensitiveLog: (
|
|
119
|
+
obj: InvokeEndpointAsyncInput
|
|
120
|
+
) => any;
|
|
121
|
+
|
|
122
|
+
export declare const InvokeEndpointAsyncOutputFilterSensitiveLog: (
|
|
123
|
+
obj: InvokeEndpointAsyncOutput
|
|
124
|
+
) => any;
|
|
@@ -1,8 +1,29 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
InvokeEndpointAsyncCommandInput,
|
|
8
|
+
InvokeEndpointAsyncCommandOutput,
|
|
9
|
+
} from "../commands/InvokeEndpointAsyncCommand";
|
|
10
|
+
import {
|
|
11
|
+
InvokeEndpointCommandInput,
|
|
12
|
+
InvokeEndpointCommandOutput,
|
|
13
|
+
} from "../commands/InvokeEndpointCommand";
|
|
14
|
+
export declare const serializeAws_restJson1InvokeEndpointCommand: (
|
|
15
|
+
input: InvokeEndpointCommandInput,
|
|
16
|
+
context: __SerdeContext
|
|
17
|
+
) => Promise<__HttpRequest>;
|
|
18
|
+
export declare const serializeAws_restJson1InvokeEndpointAsyncCommand: (
|
|
19
|
+
input: InvokeEndpointAsyncCommandInput,
|
|
20
|
+
context: __SerdeContext
|
|
21
|
+
) => Promise<__HttpRequest>;
|
|
22
|
+
export declare const deserializeAws_restJson1InvokeEndpointCommand: (
|
|
23
|
+
output: __HttpResponse,
|
|
24
|
+
context: __SerdeContext
|
|
25
|
+
) => Promise<InvokeEndpointCommandOutput>;
|
|
26
|
+
export declare const deserializeAws_restJson1InvokeEndpointAsyncCommand: (
|
|
27
|
+
output: __HttpResponse,
|
|
28
|
+
context: __SerdeContext
|
|
29
|
+
) => Promise<InvokeEndpointAsyncCommandOutput>;
|
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: SageMakerRuntimeClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
24
|
+
any,
|
|
25
|
+
any,
|
|
26
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
27
|
+
> &
|
|
28
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
29
|
+
| RequestHandler;
|
|
30
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
31
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
33
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
35
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
serviceId: string;
|
|
42
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: SageMakerRuntimeClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
24
|
+
any,
|
|
25
|
+
any,
|
|
26
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
27
|
+
> &
|
|
28
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
29
|
+
| RequestHandler;
|
|
30
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
31
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
33
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
35
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
serviceId: string;
|
|
42
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|
|
@@ -1,37 +1,69 @@
|
|
|
1
|
-
import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient";
|
|
2
|
-
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: SageMakerRuntimeClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler:
|
|
9
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
10
|
+
any,
|
|
11
|
+
any,
|
|
12
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
13
|
+
> &
|
|
14
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
15
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
16
|
+
apiVersion: string;
|
|
17
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
18
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
19
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
20
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
23
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
26
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
32
|
+
credentialDefaultProvider: (
|
|
33
|
+
input: any
|
|
34
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
35
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
36
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
37
|
+
import("@aws-sdk/types").UserAgent
|
|
38
|
+
>;
|
|
39
|
+
defaultsMode:
|
|
40
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
41
|
+
| import("@aws-sdk/types").Provider<
|
|
42
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
43
|
+
>;
|
|
44
|
+
endpoint?:
|
|
45
|
+
| string
|
|
46
|
+
| import("@aws-sdk/types").Endpoint
|
|
47
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
48
|
+
| undefined;
|
|
49
|
+
tls?: boolean | undefined;
|
|
50
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
51
|
+
credentials?:
|
|
52
|
+
| import("@aws-sdk/types").Credentials
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
54
|
+
| undefined;
|
|
55
|
+
signer?:
|
|
56
|
+
| import("@aws-sdk/types").RequestSigner
|
|
57
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
58
|
+
| undefined;
|
|
59
|
+
signingEscapePath?: boolean | undefined;
|
|
60
|
+
systemClockOffset?: number | undefined;
|
|
61
|
+
signingRegion?: string | undefined;
|
|
62
|
+
signerConstructor?:
|
|
63
|
+
| (new (
|
|
64
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
65
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
66
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
67
|
+
| undefined;
|
|
68
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
69
|
+
};
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { SageMakerRuntimeClientConfig } from "./SageMakerRuntimeClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: SageMakerRuntimeClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
disableHostPrefix: boolean;
|
|
9
|
+
logger: __Logger;
|
|
10
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
|
+
serviceId: string;
|
|
12
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Runtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.170.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,45 +19,45 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
-
"@aws-sdk/middleware-serde": "3.
|
|
34
|
-
"@aws-sdk/middleware-signing": "3.
|
|
35
|
-
"@aws-sdk/middleware-stack": "3.
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
37
|
-
"@aws-sdk/node-config-provider": "3.
|
|
38
|
-
"@aws-sdk/node-http-handler": "3.
|
|
39
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
-
"@aws-sdk/smithy-client": "3.
|
|
41
|
-
"@aws-sdk/types": "3.
|
|
42
|
-
"@aws-sdk/url-parser": "3.
|
|
43
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
52
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.170.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.170.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.170.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.170.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.170.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.170.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.170.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.170.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.170.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.170.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.170.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.170.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.170.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.170.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.170.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.170.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.170.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.170.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.170.0",
|
|
41
|
+
"@aws-sdk/types": "3.170.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.170.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.170.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.170.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.170.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-browser": "3.170.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-node": "3.170.0",
|
|
51
|
+
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
52
|
+
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
53
53
|
"tslib": "^2.3.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
56
|
+
"@aws-sdk/service-client-documentation-generator": "3.170.0",
|
|
57
57
|
"@tsconfig/recommended": "1.0.1",
|
|
58
58
|
"@types/node": "^12.7.5",
|
|
59
59
|
"concurrently": "7.0.0",
|
|
60
|
-
"downlevel-dts": "0.
|
|
60
|
+
"downlevel-dts": "0.10.1",
|
|
61
61
|
"rimraf": "3.0.2",
|
|
62
62
|
"typedoc": "0.19.2",
|
|
63
63
|
"typescript": "~4.6.2"
|