@aws-sdk/client-sagemaker-featurestore-runtime 3.169.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 +8 -0
- package/dist-types/ts3.4/SageMakerFeatureStoreRuntime.d.ts +76 -25
- package/dist-types/ts3.4/SageMakerFeatureStoreRuntimeClient.d.ts +154 -77
- package/dist-types/ts3.4/commands/BatchGetRecordCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteRecordCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetRecordCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +4 -4
- 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/SageMakerFeatureStoreRuntimeServiceException.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 +144 -136
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -14
- 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,14 @@
|
|
|
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-featurestore-runtime
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-sagemaker-featurestore-runtime
|
|
@@ -1,25 +1,76 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
BatchGetRecordCommandInput,
|
|
4
|
+
BatchGetRecordCommandOutput,
|
|
5
|
+
} from "./commands/BatchGetRecordCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteRecordCommandInput,
|
|
8
|
+
DeleteRecordCommandOutput,
|
|
9
|
+
} from "./commands/DeleteRecordCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetRecordCommandInput,
|
|
12
|
+
GetRecordCommandOutput,
|
|
13
|
+
} from "./commands/GetRecordCommand";
|
|
14
|
+
import {
|
|
15
|
+
PutRecordCommandInput,
|
|
16
|
+
PutRecordCommandOutput,
|
|
17
|
+
} from "./commands/PutRecordCommand";
|
|
18
|
+
import { SageMakerFeatureStoreRuntimeClient } from "./SageMakerFeatureStoreRuntimeClient";
|
|
19
|
+
|
|
20
|
+
export declare class SageMakerFeatureStoreRuntime extends SageMakerFeatureStoreRuntimeClient {
|
|
21
|
+
batchGetRecord(
|
|
22
|
+
args: BatchGetRecordCommandInput,
|
|
23
|
+
options?: __HttpHandlerOptions
|
|
24
|
+
): Promise<BatchGetRecordCommandOutput>;
|
|
25
|
+
batchGetRecord(
|
|
26
|
+
args: BatchGetRecordCommandInput,
|
|
27
|
+
cb: (err: any, data?: BatchGetRecordCommandOutput) => void
|
|
28
|
+
): void;
|
|
29
|
+
batchGetRecord(
|
|
30
|
+
args: BatchGetRecordCommandInput,
|
|
31
|
+
options: __HttpHandlerOptions,
|
|
32
|
+
cb: (err: any, data?: BatchGetRecordCommandOutput) => void
|
|
33
|
+
): void;
|
|
34
|
+
|
|
35
|
+
deleteRecord(
|
|
36
|
+
args: DeleteRecordCommandInput,
|
|
37
|
+
options?: __HttpHandlerOptions
|
|
38
|
+
): Promise<DeleteRecordCommandOutput>;
|
|
39
|
+
deleteRecord(
|
|
40
|
+
args: DeleteRecordCommandInput,
|
|
41
|
+
cb: (err: any, data?: DeleteRecordCommandOutput) => void
|
|
42
|
+
): void;
|
|
43
|
+
deleteRecord(
|
|
44
|
+
args: DeleteRecordCommandInput,
|
|
45
|
+
options: __HttpHandlerOptions,
|
|
46
|
+
cb: (err: any, data?: DeleteRecordCommandOutput) => void
|
|
47
|
+
): void;
|
|
48
|
+
|
|
49
|
+
getRecord(
|
|
50
|
+
args: GetRecordCommandInput,
|
|
51
|
+
options?: __HttpHandlerOptions
|
|
52
|
+
): Promise<GetRecordCommandOutput>;
|
|
53
|
+
getRecord(
|
|
54
|
+
args: GetRecordCommandInput,
|
|
55
|
+
cb: (err: any, data?: GetRecordCommandOutput) => void
|
|
56
|
+
): void;
|
|
57
|
+
getRecord(
|
|
58
|
+
args: GetRecordCommandInput,
|
|
59
|
+
options: __HttpHandlerOptions,
|
|
60
|
+
cb: (err: any, data?: GetRecordCommandOutput) => void
|
|
61
|
+
): void;
|
|
62
|
+
|
|
63
|
+
putRecord(
|
|
64
|
+
args: PutRecordCommandInput,
|
|
65
|
+
options?: __HttpHandlerOptions
|
|
66
|
+
): Promise<PutRecordCommandOutput>;
|
|
67
|
+
putRecord(
|
|
68
|
+
args: PutRecordCommandInput,
|
|
69
|
+
cb: (err: any, data?: PutRecordCommandOutput) => void
|
|
70
|
+
): void;
|
|
71
|
+
putRecord(
|
|
72
|
+
args: PutRecordCommandInput,
|
|
73
|
+
options: __HttpHandlerOptions,
|
|
74
|
+
cb: (err: any, data?: PutRecordCommandOutput) => void
|
|
75
|
+
): void;
|
|
76
|
+
}
|
|
@@ -1,77 +1,154 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
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
|
-
declare type
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
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
|
+
BatchGetRecordCommandInput,
|
|
47
|
+
BatchGetRecordCommandOutput,
|
|
48
|
+
} from "./commands/BatchGetRecordCommand";
|
|
49
|
+
import {
|
|
50
|
+
DeleteRecordCommandInput,
|
|
51
|
+
DeleteRecordCommandOutput,
|
|
52
|
+
} from "./commands/DeleteRecordCommand";
|
|
53
|
+
import {
|
|
54
|
+
GetRecordCommandInput,
|
|
55
|
+
GetRecordCommandOutput,
|
|
56
|
+
} from "./commands/GetRecordCommand";
|
|
57
|
+
import {
|
|
58
|
+
PutRecordCommandInput,
|
|
59
|
+
PutRecordCommandOutput,
|
|
60
|
+
} from "./commands/PutRecordCommand";
|
|
61
|
+
export declare type ServiceInputTypes =
|
|
62
|
+
| BatchGetRecordCommandInput
|
|
63
|
+
| DeleteRecordCommandInput
|
|
64
|
+
| GetRecordCommandInput
|
|
65
|
+
| PutRecordCommandInput;
|
|
66
|
+
export declare type ServiceOutputTypes =
|
|
67
|
+
| BatchGetRecordCommandOutput
|
|
68
|
+
| DeleteRecordCommandOutput
|
|
69
|
+
| GetRecordCommandOutput
|
|
70
|
+
| PutRecordCommandOutput;
|
|
71
|
+
export interface ClientDefaults
|
|
72
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
73
|
+
requestHandler?: __HttpHandler;
|
|
74
|
+
|
|
75
|
+
sha256?: __HashConstructor;
|
|
76
|
+
|
|
77
|
+
urlParser?: __UrlParser;
|
|
78
|
+
|
|
79
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
80
|
+
|
|
81
|
+
streamCollector?: __StreamCollector;
|
|
82
|
+
|
|
83
|
+
base64Decoder?: __Decoder;
|
|
84
|
+
|
|
85
|
+
base64Encoder?: __Encoder;
|
|
86
|
+
|
|
87
|
+
utf8Decoder?: __Decoder;
|
|
88
|
+
|
|
89
|
+
utf8Encoder?: __Encoder;
|
|
90
|
+
|
|
91
|
+
runtime?: string;
|
|
92
|
+
|
|
93
|
+
disableHostPrefix?: boolean;
|
|
94
|
+
|
|
95
|
+
maxAttempts?: number | __Provider<number>;
|
|
96
|
+
|
|
97
|
+
retryMode?: string | __Provider<string>;
|
|
98
|
+
|
|
99
|
+
logger?: __Logger;
|
|
100
|
+
|
|
101
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
102
|
+
|
|
103
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
104
|
+
|
|
105
|
+
serviceId?: string;
|
|
106
|
+
|
|
107
|
+
region?: string | __Provider<string>;
|
|
108
|
+
|
|
109
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
110
|
+
|
|
111
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
112
|
+
|
|
113
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
114
|
+
|
|
115
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
116
|
+
}
|
|
117
|
+
declare type SageMakerFeatureStoreRuntimeClientConfigType = Partial<
|
|
118
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
119
|
+
> &
|
|
120
|
+
ClientDefaults &
|
|
121
|
+
RegionInputConfig &
|
|
122
|
+
EndpointsInputConfig &
|
|
123
|
+
RetryInputConfig &
|
|
124
|
+
HostHeaderInputConfig &
|
|
125
|
+
AwsAuthInputConfig &
|
|
126
|
+
UserAgentInputConfig;
|
|
127
|
+
|
|
128
|
+
export interface SageMakerFeatureStoreRuntimeClientConfig
|
|
129
|
+
extends SageMakerFeatureStoreRuntimeClientConfigType {}
|
|
130
|
+
declare type SageMakerFeatureStoreRuntimeClientResolvedConfigType =
|
|
131
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
132
|
+
Required<ClientDefaults> &
|
|
133
|
+
RegionResolvedConfig &
|
|
134
|
+
EndpointsResolvedConfig &
|
|
135
|
+
RetryResolvedConfig &
|
|
136
|
+
HostHeaderResolvedConfig &
|
|
137
|
+
AwsAuthResolvedConfig &
|
|
138
|
+
UserAgentResolvedConfig;
|
|
139
|
+
|
|
140
|
+
export interface SageMakerFeatureStoreRuntimeClientResolvedConfig
|
|
141
|
+
extends SageMakerFeatureStoreRuntimeClientResolvedConfigType {}
|
|
142
|
+
|
|
143
|
+
export declare class SageMakerFeatureStoreRuntimeClient extends __Client<
|
|
144
|
+
__HttpHandlerOptions,
|
|
145
|
+
ServiceInputTypes,
|
|
146
|
+
ServiceOutputTypes,
|
|
147
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig
|
|
148
|
+
> {
|
|
149
|
+
readonly config: SageMakerFeatureStoreRuntimeClientResolvedConfig;
|
|
150
|
+
constructor(configuration: SageMakerFeatureStoreRuntimeClientConfig);
|
|
151
|
+
|
|
152
|
+
destroy(): void;
|
|
153
|
+
}
|
|
154
|
+
export {};
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
BatchGetRecordRequest,
|
|
10
|
+
BatchGetRecordResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../SageMakerFeatureStoreRuntimeClient";
|
|
17
|
+
export interface BatchGetRecordCommandInput extends BatchGetRecordRequest {}
|
|
18
|
+
export interface BatchGetRecordCommandOutput
|
|
19
|
+
extends BatchGetRecordResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class BatchGetRecordCommand extends $Command<
|
|
23
|
+
BatchGetRecordCommandInput,
|
|
24
|
+
BatchGetRecordCommandOutput,
|
|
25
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: BatchGetRecordCommandInput;
|
|
28
|
+
constructor(input: BatchGetRecordCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<BatchGetRecordCommandInput, BatchGetRecordCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { DeleteRecordRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SageMakerFeatureStoreRuntimeClient";
|
|
14
|
+
export interface DeleteRecordCommandInput extends DeleteRecordRequest {}
|
|
15
|
+
export interface DeleteRecordCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeleteRecordCommand extends $Command<
|
|
18
|
+
DeleteRecordCommandInput,
|
|
19
|
+
DeleteRecordCommandOutput,
|
|
20
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteRecordCommandInput;
|
|
23
|
+
constructor(input: DeleteRecordCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteRecordCommandInput, DeleteRecordCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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 { GetRecordRequest, GetRecordResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SageMakerFeatureStoreRuntimeClient";
|
|
14
|
+
export interface GetRecordCommandInput extends GetRecordRequest {}
|
|
15
|
+
export interface GetRecordCommandOutput
|
|
16
|
+
extends GetRecordResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetRecordCommand extends $Command<
|
|
20
|
+
GetRecordCommandInput,
|
|
21
|
+
GetRecordCommandOutput,
|
|
22
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetRecordCommandInput;
|
|
25
|
+
constructor(input: GetRecordCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetRecordCommandInput, GetRecordCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { PutRecordRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../SageMakerFeatureStoreRuntimeClient";
|
|
14
|
+
export interface PutRecordCommandInput extends PutRecordRequest {}
|
|
15
|
+
export interface PutRecordCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class PutRecordCommand extends $Command<
|
|
18
|
+
PutRecordCommandInput,
|
|
19
|
+
PutRecordCommandOutput,
|
|
20
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: PutRecordCommandInput;
|
|
23
|
+
constructor(input: PutRecordCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<PutRecordCommandInput, PutRecordCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./BatchGetRecordCommand";
|
|
2
|
-
export * from "./DeleteRecordCommand";
|
|
3
|
-
export * from "./GetRecordCommand";
|
|
4
|
-
export * from "./PutRecordCommand";
|
|
1
|
+
export * from "./BatchGetRecordCommand";
|
|
2
|
+
export * from "./DeleteRecordCommand";
|
|
3
|
+
export * from "./GetRecordCommand";
|
|
4
|
+
export * from "./PutRecordCommand";
|
|
@@ -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 "./SageMakerFeatureStoreRuntime";
|
|
2
|
-
export * from "./SageMakerFeatureStoreRuntimeClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { SageMakerFeatureStoreRuntimeServiceException } from "./models/SageMakerFeatureStoreRuntimeServiceException";
|
|
1
|
+
export * from "./SageMakerFeatureStoreRuntime";
|
|
2
|
+
export * from "./SageMakerFeatureStoreRuntimeClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { SageMakerFeatureStoreRuntimeServiceException } from "./models/SageMakerFeatureStoreRuntimeServiceException";
|
|
@@ -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 SageMakerFeatureStoreRuntimeServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|