@aws-sdk/client-sagemaker-featurestore-runtime 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/BatchGetRecordCommand.js +2 -2
- package/dist-cjs/commands/DeleteRecordCommand.js +1 -1
- package/dist-cjs/commands/GetRecordCommand.js +2 -2
- package/dist-cjs/commands/PutRecordCommand.js +1 -1
- package/dist-cjs/models/models_0.js +41 -61
- package/dist-cjs/protocols/Aws_restJson1.js +61 -116
- package/dist-es/commands/BatchGetRecordCommand.js +3 -3
- package/dist-es/commands/DeleteRecordCommand.js +2 -2
- package/dist-es/commands/GetRecordCommand.js +3 -3
- package/dist-es/commands/PutRecordCommand.js +2 -2
- package/dist-es/models/models_0.js +10 -40
- package/dist-es/protocols/Aws_restJson1.js +77 -114
- package/dist-types/models/models_0.d.ts +40 -60
- package/dist-types/ts3.4/models/models_0.d.ts +20 -40
- package/package.json +6 -6
|
@@ -17,18 +17,10 @@ export interface BatchGetRecordIdentifier {
|
|
|
17
17
|
|
|
18
18
|
FeatureNames?: string[];
|
|
19
19
|
}
|
|
20
|
-
export declare namespace BatchGetRecordIdentifier {
|
|
21
|
-
|
|
22
|
-
const filterSensitiveLog: (obj: BatchGetRecordIdentifier) => any;
|
|
23
|
-
}
|
|
24
20
|
export interface BatchGetRecordRequest {
|
|
25
21
|
|
|
26
22
|
Identifiers: BatchGetRecordIdentifier[] | undefined;
|
|
27
23
|
}
|
|
28
|
-
export declare namespace BatchGetRecordRequest {
|
|
29
|
-
|
|
30
|
-
const filterSensitiveLog: (obj: BatchGetRecordRequest) => any;
|
|
31
|
-
}
|
|
32
24
|
|
|
33
25
|
export interface BatchGetRecordError {
|
|
34
26
|
|
|
@@ -40,10 +32,6 @@ export interface BatchGetRecordError {
|
|
|
40
32
|
|
|
41
33
|
ErrorMessage: string | undefined;
|
|
42
34
|
}
|
|
43
|
-
export declare namespace BatchGetRecordError {
|
|
44
|
-
|
|
45
|
-
const filterSensitiveLog: (obj: BatchGetRecordError) => any;
|
|
46
|
-
}
|
|
47
35
|
|
|
48
36
|
export interface FeatureValue {
|
|
49
37
|
|
|
@@ -51,10 +39,6 @@ export interface FeatureValue {
|
|
|
51
39
|
|
|
52
40
|
ValueAsString: string | undefined;
|
|
53
41
|
}
|
|
54
|
-
export declare namespace FeatureValue {
|
|
55
|
-
|
|
56
|
-
const filterSensitiveLog: (obj: FeatureValue) => any;
|
|
57
|
-
}
|
|
58
42
|
|
|
59
43
|
export interface BatchGetRecordResultDetail {
|
|
60
44
|
|
|
@@ -64,10 +48,6 @@ export interface BatchGetRecordResultDetail {
|
|
|
64
48
|
|
|
65
49
|
Record: FeatureValue[] | undefined;
|
|
66
50
|
}
|
|
67
|
-
export declare namespace BatchGetRecordResultDetail {
|
|
68
|
-
|
|
69
|
-
const filterSensitiveLog: (obj: BatchGetRecordResultDetail) => any;
|
|
70
|
-
}
|
|
71
51
|
export interface BatchGetRecordResponse {
|
|
72
52
|
|
|
73
53
|
Records: BatchGetRecordResultDetail[] | undefined;
|
|
@@ -76,10 +56,6 @@ export interface BatchGetRecordResponse {
|
|
|
76
56
|
|
|
77
57
|
UnprocessedIdentifiers: BatchGetRecordIdentifier[] | undefined;
|
|
78
58
|
}
|
|
79
|
-
export declare namespace BatchGetRecordResponse {
|
|
80
|
-
|
|
81
|
-
const filterSensitiveLog: (obj: BatchGetRecordResponse) => any;
|
|
82
|
-
}
|
|
83
59
|
|
|
84
60
|
export declare class InternalFailure extends __BaseException {
|
|
85
61
|
readonly name: "InternalFailure";
|
|
@@ -112,10 +88,6 @@ export interface DeleteRecordRequest {
|
|
|
112
88
|
|
|
113
89
|
EventTime: string | undefined;
|
|
114
90
|
}
|
|
115
|
-
export declare namespace DeleteRecordRequest {
|
|
116
|
-
|
|
117
|
-
const filterSensitiveLog: (obj: DeleteRecordRequest) => any;
|
|
118
|
-
}
|
|
119
91
|
export interface GetRecordRequest {
|
|
120
92
|
|
|
121
93
|
FeatureGroupName: string | undefined;
|
|
@@ -124,18 +96,10 @@ export interface GetRecordRequest {
|
|
|
124
96
|
|
|
125
97
|
FeatureNames?: string[];
|
|
126
98
|
}
|
|
127
|
-
export declare namespace GetRecordRequest {
|
|
128
|
-
|
|
129
|
-
const filterSensitiveLog: (obj: GetRecordRequest) => any;
|
|
130
|
-
}
|
|
131
99
|
export interface GetRecordResponse {
|
|
132
100
|
|
|
133
101
|
Record?: FeatureValue[];
|
|
134
102
|
}
|
|
135
|
-
export declare namespace GetRecordResponse {
|
|
136
|
-
|
|
137
|
-
const filterSensitiveLog: (obj: GetRecordResponse) => any;
|
|
138
|
-
}
|
|
139
103
|
|
|
140
104
|
export declare class ResourceNotFound extends __BaseException {
|
|
141
105
|
readonly name: "ResourceNotFound";
|
|
@@ -150,7 +114,23 @@ export interface PutRecordRequest {
|
|
|
150
114
|
|
|
151
115
|
Record: FeatureValue[] | undefined;
|
|
152
116
|
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
117
|
+
|
|
118
|
+
export declare const BatchGetRecordIdentifierFilterSensitiveLog: (obj: BatchGetRecordIdentifier) => any;
|
|
119
|
+
|
|
120
|
+
export declare const BatchGetRecordRequestFilterSensitiveLog: (obj: BatchGetRecordRequest) => any;
|
|
121
|
+
|
|
122
|
+
export declare const BatchGetRecordErrorFilterSensitiveLog: (obj: BatchGetRecordError) => any;
|
|
123
|
+
|
|
124
|
+
export declare const FeatureValueFilterSensitiveLog: (obj: FeatureValue) => any;
|
|
125
|
+
|
|
126
|
+
export declare const BatchGetRecordResultDetailFilterSensitiveLog: (obj: BatchGetRecordResultDetail) => any;
|
|
127
|
+
|
|
128
|
+
export declare const BatchGetRecordResponseFilterSensitiveLog: (obj: BatchGetRecordResponse) => any;
|
|
129
|
+
|
|
130
|
+
export declare const DeleteRecordRequestFilterSensitiveLog: (obj: DeleteRecordRequest) => any;
|
|
131
|
+
|
|
132
|
+
export declare const GetRecordRequestFilterSensitiveLog: (obj: GetRecordRequest) => any;
|
|
133
|
+
|
|
134
|
+
export declare const GetRecordResponseFilterSensitiveLog: (obj: GetRecordResponse) => any;
|
|
135
|
+
|
|
136
|
+
export declare const PutRecordRequestFilterSensitiveLog: (obj: PutRecordRequest) => any;
|
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.142.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,9 +18,9 @@
|
|
|
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.
|
|
21
|
+
"@aws-sdk/client-sts": "3.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|