@aws-sdk/client-sagemaker-featurestore-runtime 3.50.0 → 3.51.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 +25 -0
- package/dist-types/ts3.4/SageMakerFeatureStoreRuntimeClient.d.ts +77 -0
- package/dist-types/ts3.4/commands/BatchGetRecordCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteRecordCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetRecordCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +4 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +145 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +14 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
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.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-sagemaker-featurestore-runtime
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-sagemaker-featurestore-runtime
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { BatchGetRecordCommandInput, BatchGetRecordCommandOutput } from "./commands/BatchGetRecordCommand";
|
|
3
|
+
import { DeleteRecordCommandInput, DeleteRecordCommandOutput } from "./commands/DeleteRecordCommand";
|
|
4
|
+
import { GetRecordCommandInput, GetRecordCommandOutput } from "./commands/GetRecordCommand";
|
|
5
|
+
import { PutRecordCommandInput, PutRecordCommandOutput } from "./commands/PutRecordCommand";
|
|
6
|
+
import { SageMakerFeatureStoreRuntimeClient } from "./SageMakerFeatureStoreRuntimeClient";
|
|
7
|
+
|
|
8
|
+
export declare class SageMakerFeatureStoreRuntime extends SageMakerFeatureStoreRuntimeClient {
|
|
9
|
+
|
|
10
|
+
batchGetRecord(args: BatchGetRecordCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetRecordCommandOutput>;
|
|
11
|
+
batchGetRecord(args: BatchGetRecordCommandInput, cb: (err: any, data?: BatchGetRecordCommandOutput) => void): void;
|
|
12
|
+
batchGetRecord(args: BatchGetRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetRecordCommandOutput) => void): void;
|
|
13
|
+
|
|
14
|
+
deleteRecord(args: DeleteRecordCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecordCommandOutput>;
|
|
15
|
+
deleteRecord(args: DeleteRecordCommandInput, cb: (err: any, data?: DeleteRecordCommandOutput) => void): void;
|
|
16
|
+
deleteRecord(args: DeleteRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecordCommandOutput) => void): void;
|
|
17
|
+
|
|
18
|
+
getRecord(args: GetRecordCommandInput, options?: __HttpHandlerOptions): Promise<GetRecordCommandOutput>;
|
|
19
|
+
getRecord(args: GetRecordCommandInput, cb: (err: any, data?: GetRecordCommandOutput) => void): void;
|
|
20
|
+
getRecord(args: GetRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecordCommandOutput) => void): void;
|
|
21
|
+
|
|
22
|
+
putRecord(args: PutRecordCommandInput, options?: __HttpHandlerOptions): Promise<PutRecordCommandOutput>;
|
|
23
|
+
putRecord(args: PutRecordCommandInput, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
|
|
24
|
+
putRecord(args: PutRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
|
|
25
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { BatchGetRecordCommandInput, BatchGetRecordCommandOutput } from "./commands/BatchGetRecordCommand";
|
|
10
|
+
import { DeleteRecordCommandInput, DeleteRecordCommandOutput } from "./commands/DeleteRecordCommand";
|
|
11
|
+
import { GetRecordCommandInput, GetRecordCommandOutput } from "./commands/GetRecordCommand";
|
|
12
|
+
import { PutRecordCommandInput, PutRecordCommandOutput } from "./commands/PutRecordCommand";
|
|
13
|
+
export declare type ServiceInputTypes = BatchGetRecordCommandInput | DeleteRecordCommandInput | GetRecordCommandInput | PutRecordCommandInput;
|
|
14
|
+
export declare type ServiceOutputTypes = BatchGetRecordCommandOutput | DeleteRecordCommandOutput | GetRecordCommandOutput | PutRecordCommandOutput;
|
|
15
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
16
|
+
|
|
17
|
+
requestHandler?: __HttpHandler;
|
|
18
|
+
|
|
19
|
+
sha256?: __HashConstructor;
|
|
20
|
+
|
|
21
|
+
urlParser?: __UrlParser;
|
|
22
|
+
|
|
23
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
24
|
+
|
|
25
|
+
streamCollector?: __StreamCollector;
|
|
26
|
+
|
|
27
|
+
base64Decoder?: __Decoder;
|
|
28
|
+
|
|
29
|
+
base64Encoder?: __Encoder;
|
|
30
|
+
|
|
31
|
+
utf8Decoder?: __Decoder;
|
|
32
|
+
|
|
33
|
+
utf8Encoder?: __Encoder;
|
|
34
|
+
|
|
35
|
+
runtime?: string;
|
|
36
|
+
|
|
37
|
+
disableHostPrefix?: boolean;
|
|
38
|
+
|
|
39
|
+
maxAttempts?: number | __Provider<number>;
|
|
40
|
+
|
|
41
|
+
retryMode?: string | __Provider<string>;
|
|
42
|
+
|
|
43
|
+
logger?: __Logger;
|
|
44
|
+
|
|
45
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
46
|
+
|
|
47
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
48
|
+
|
|
49
|
+
serviceId?: string;
|
|
50
|
+
|
|
51
|
+
region?: string | __Provider<string>;
|
|
52
|
+
|
|
53
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
54
|
+
|
|
55
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
56
|
+
|
|
57
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
58
|
+
|
|
59
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
60
|
+
}
|
|
61
|
+
declare type SageMakerFeatureStoreRuntimeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
62
|
+
|
|
63
|
+
export interface SageMakerFeatureStoreRuntimeClientConfig extends SageMakerFeatureStoreRuntimeClientConfigType {
|
|
64
|
+
}
|
|
65
|
+
declare type SageMakerFeatureStoreRuntimeClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
66
|
+
|
|
67
|
+
export interface SageMakerFeatureStoreRuntimeClientResolvedConfig extends SageMakerFeatureStoreRuntimeClientResolvedConfigType {
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export declare class SageMakerFeatureStoreRuntimeClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
|
|
71
|
+
|
|
72
|
+
readonly config: SageMakerFeatureStoreRuntimeClientResolvedConfig;
|
|
73
|
+
constructor(configuration: SageMakerFeatureStoreRuntimeClientConfig);
|
|
74
|
+
|
|
75
|
+
destroy(): void;
|
|
76
|
+
}
|
|
77
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { BatchGetRecordRequest, BatchGetRecordResponse } from "../models/models_0";
|
|
4
|
+
import { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerFeatureStoreRuntimeClient";
|
|
5
|
+
export interface BatchGetRecordCommandInput extends BatchGetRecordRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface BatchGetRecordCommandOutput extends BatchGetRecordResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class BatchGetRecordCommand extends $Command<BatchGetRecordCommandInput, BatchGetRecordCommandOutput, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
|
|
11
|
+
readonly input: BatchGetRecordCommandInput;
|
|
12
|
+
constructor(input: BatchGetRecordCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetRecordCommandInput, BatchGetRecordCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DeleteRecordRequest } from "../models/models_0";
|
|
4
|
+
import { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerFeatureStoreRuntimeClient";
|
|
5
|
+
export interface DeleteRecordCommandInput extends DeleteRecordRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteRecordCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteRecordCommand extends $Command<DeleteRecordCommandInput, DeleteRecordCommandOutput, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteRecordCommandInput;
|
|
12
|
+
constructor(input: DeleteRecordCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRecordCommandInput, DeleteRecordCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { GetRecordRequest, GetRecordResponse } from "../models/models_0";
|
|
4
|
+
import { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerFeatureStoreRuntimeClient";
|
|
5
|
+
export interface GetRecordCommandInput extends GetRecordRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetRecordCommandOutput extends GetRecordResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetRecordCommand extends $Command<GetRecordCommandInput, GetRecordCommandOutput, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
|
|
11
|
+
readonly input: GetRecordCommandInput;
|
|
12
|
+
constructor(input: GetRecordCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecordCommandInput, GetRecordCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { PutRecordRequest } from "../models/models_0";
|
|
4
|
+
import { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerFeatureStoreRuntimeClient";
|
|
5
|
+
export interface PutRecordCommandInput extends PutRecordRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface PutRecordCommandOutput extends __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class PutRecordCommand extends $Command<PutRecordCommandInput, PutRecordCommandOutput, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
|
|
11
|
+
readonly input: PutRecordCommandInput;
|
|
12
|
+
constructor(input: PutRecordCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRecordCommandInput, PutRecordCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
|
|
3
|
+
export interface AccessForbidden extends __SmithyException, $MetadataBearer {
|
|
4
|
+
name: "AccessForbidden";
|
|
5
|
+
$fault: "client";
|
|
6
|
+
Message?: string;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface BatchGetRecordIdentifier {
|
|
10
|
+
|
|
11
|
+
FeatureGroupName: string | undefined;
|
|
12
|
+
|
|
13
|
+
RecordIdentifiersValueAsString: string[] | undefined;
|
|
14
|
+
|
|
15
|
+
FeatureNames?: string[];
|
|
16
|
+
}
|
|
17
|
+
export declare namespace BatchGetRecordIdentifier {
|
|
18
|
+
|
|
19
|
+
const filterSensitiveLog: (obj: BatchGetRecordIdentifier) => any;
|
|
20
|
+
}
|
|
21
|
+
export interface BatchGetRecordRequest {
|
|
22
|
+
|
|
23
|
+
Identifiers: BatchGetRecordIdentifier[] | undefined;
|
|
24
|
+
}
|
|
25
|
+
export declare namespace BatchGetRecordRequest {
|
|
26
|
+
|
|
27
|
+
const filterSensitiveLog: (obj: BatchGetRecordRequest) => any;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface BatchGetRecordError {
|
|
31
|
+
|
|
32
|
+
FeatureGroupName: string | undefined;
|
|
33
|
+
|
|
34
|
+
RecordIdentifierValueAsString: string | undefined;
|
|
35
|
+
|
|
36
|
+
ErrorCode: string | undefined;
|
|
37
|
+
|
|
38
|
+
ErrorMessage: string | undefined;
|
|
39
|
+
}
|
|
40
|
+
export declare namespace BatchGetRecordError {
|
|
41
|
+
|
|
42
|
+
const filterSensitiveLog: (obj: BatchGetRecordError) => any;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export interface FeatureValue {
|
|
46
|
+
|
|
47
|
+
FeatureName: string | undefined;
|
|
48
|
+
|
|
49
|
+
ValueAsString: string | undefined;
|
|
50
|
+
}
|
|
51
|
+
export declare namespace FeatureValue {
|
|
52
|
+
|
|
53
|
+
const filterSensitiveLog: (obj: FeatureValue) => any;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface BatchGetRecordResultDetail {
|
|
57
|
+
|
|
58
|
+
FeatureGroupName: string | undefined;
|
|
59
|
+
|
|
60
|
+
RecordIdentifierValueAsString: string | undefined;
|
|
61
|
+
|
|
62
|
+
Record: FeatureValue[] | undefined;
|
|
63
|
+
}
|
|
64
|
+
export declare namespace BatchGetRecordResultDetail {
|
|
65
|
+
|
|
66
|
+
const filterSensitiveLog: (obj: BatchGetRecordResultDetail) => any;
|
|
67
|
+
}
|
|
68
|
+
export interface BatchGetRecordResponse {
|
|
69
|
+
|
|
70
|
+
Records: BatchGetRecordResultDetail[] | undefined;
|
|
71
|
+
|
|
72
|
+
Errors: BatchGetRecordError[] | undefined;
|
|
73
|
+
|
|
74
|
+
UnprocessedIdentifiers: BatchGetRecordIdentifier[] | undefined;
|
|
75
|
+
}
|
|
76
|
+
export declare namespace BatchGetRecordResponse {
|
|
77
|
+
|
|
78
|
+
const filterSensitiveLog: (obj: BatchGetRecordResponse) => any;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export interface InternalFailure extends __SmithyException, $MetadataBearer {
|
|
82
|
+
name: "InternalFailure";
|
|
83
|
+
$fault: "server";
|
|
84
|
+
Message?: string;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface ServiceUnavailable extends __SmithyException, $MetadataBearer {
|
|
88
|
+
name: "ServiceUnavailable";
|
|
89
|
+
$fault: "server";
|
|
90
|
+
Message?: string;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export interface ValidationError extends __SmithyException, $MetadataBearer {
|
|
94
|
+
name: "ValidationError";
|
|
95
|
+
$fault: "client";
|
|
96
|
+
Message?: string;
|
|
97
|
+
}
|
|
98
|
+
export interface DeleteRecordRequest {
|
|
99
|
+
|
|
100
|
+
FeatureGroupName: string | undefined;
|
|
101
|
+
|
|
102
|
+
RecordIdentifierValueAsString: string | undefined;
|
|
103
|
+
|
|
104
|
+
EventTime: string | undefined;
|
|
105
|
+
}
|
|
106
|
+
export declare namespace DeleteRecordRequest {
|
|
107
|
+
|
|
108
|
+
const filterSensitiveLog: (obj: DeleteRecordRequest) => any;
|
|
109
|
+
}
|
|
110
|
+
export interface GetRecordRequest {
|
|
111
|
+
|
|
112
|
+
FeatureGroupName: string | undefined;
|
|
113
|
+
|
|
114
|
+
RecordIdentifierValueAsString: string | undefined;
|
|
115
|
+
|
|
116
|
+
FeatureNames?: string[];
|
|
117
|
+
}
|
|
118
|
+
export declare namespace GetRecordRequest {
|
|
119
|
+
|
|
120
|
+
const filterSensitiveLog: (obj: GetRecordRequest) => any;
|
|
121
|
+
}
|
|
122
|
+
export interface GetRecordResponse {
|
|
123
|
+
|
|
124
|
+
Record?: FeatureValue[];
|
|
125
|
+
}
|
|
126
|
+
export declare namespace GetRecordResponse {
|
|
127
|
+
|
|
128
|
+
const filterSensitiveLog: (obj: GetRecordResponse) => any;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export interface ResourceNotFound extends __SmithyException, $MetadataBearer {
|
|
132
|
+
name: "ResourceNotFound";
|
|
133
|
+
$fault: "client";
|
|
134
|
+
Message?: string;
|
|
135
|
+
}
|
|
136
|
+
export interface PutRecordRequest {
|
|
137
|
+
|
|
138
|
+
FeatureGroupName: string | undefined;
|
|
139
|
+
|
|
140
|
+
Record: FeatureValue[] | undefined;
|
|
141
|
+
}
|
|
142
|
+
export declare namespace PutRecordRequest {
|
|
143
|
+
|
|
144
|
+
const filterSensitiveLog: (obj: PutRecordRequest) => any;
|
|
145
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { BatchGetRecordCommandInput, BatchGetRecordCommandOutput } from "../commands/BatchGetRecordCommand";
|
|
4
|
+
import { DeleteRecordCommandInput, DeleteRecordCommandOutput } from "../commands/DeleteRecordCommand";
|
|
5
|
+
import { GetRecordCommandInput, GetRecordCommandOutput } from "../commands/GetRecordCommand";
|
|
6
|
+
import { PutRecordCommandInput, PutRecordCommandOutput } from "../commands/PutRecordCommand";
|
|
7
|
+
export declare const serializeAws_restJson1BatchGetRecordCommand: (input: BatchGetRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
8
|
+
export declare const serializeAws_restJson1DeleteRecordCommand: (input: DeleteRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
|
+
export declare const serializeAws_restJson1GetRecordCommand: (input: GetRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
|
+
export declare const serializeAws_restJson1PutRecordCommand: (input: PutRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
11
|
+
export declare const deserializeAws_restJson1BatchGetRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetRecordCommandOutput>;
|
|
12
|
+
export declare const deserializeAws_restJson1DeleteRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRecordCommandOutput>;
|
|
13
|
+
export declare const deserializeAws_restJson1GetRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRecordCommandOutput>;
|
|
14
|
+
export declare const deserializeAws_restJson1PutRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutRecordCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-featurestore-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Featurestore Runtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.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",
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.50.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.50.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0"
|