@aws-sdk/client-sagemaker-featurestore-runtime 3.927.0 → 3.929.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const core_1 = require("@aws-sdk/core");
5
+ const protocols_1 = require("@aws-sdk/core/protocols");
5
6
  const smithy_client_1 = require("@smithy/smithy-client");
6
7
  const url_parser_1 = require("@smithy/url-parser");
7
8
  const util_base64_1 = require("@smithy/util-base64");
@@ -25,6 +26,7 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.sagemakerfeaturestoreruntime" }),
28
30
  serviceId: config?.serviceId ?? "SageMaker FeatureStore Runtime",
29
31
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
32
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
4
4
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
5
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
6
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
7
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
7
8
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
8
9
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
9
10
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -28,6 +29,7 @@ export class SageMakerFeatureStoreRuntimeClient extends __Client {
28
29
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
29
30
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
30
31
  this.config = _config_8;
32
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
31
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
32
34
  this.middlewareStack.use(getRetryPlugin(this.config));
33
35
  this.middlewareStack.use(getContentLengthPlugin(this.config));
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_BatchGetRecordCommand, se_BatchGetRecordCommand } from "../protocols/Aws_restJson1";
4
+ import { BatchGetRecord } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BatchGetRecordCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AmazonSageMakerFeatureStoreRuntime", "BatchGetRecord", {})
17
13
  .n("SageMakerFeatureStoreRuntimeClient", "BatchGetRecordCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BatchGetRecordCommand)
20
- .de(de_BatchGetRecordCommand)
14
+ .sc(BatchGetRecord)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteRecordCommand, se_DeleteRecordCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteRecord } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteRecordCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AmazonSageMakerFeatureStoreRuntime", "DeleteRecord", {})
17
13
  .n("SageMakerFeatureStoreRuntimeClient", "DeleteRecordCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteRecordCommand)
20
- .de(de_DeleteRecordCommand)
14
+ .sc(DeleteRecord)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetRecordCommand, se_GetRecordCommand } from "../protocols/Aws_restJson1";
4
+ import { GetRecord } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetRecordCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AmazonSageMakerFeatureStoreRuntime", "GetRecord", {})
17
13
  .n("SageMakerFeatureStoreRuntimeClient", "GetRecordCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetRecordCommand)
20
- .de(de_GetRecordCommand)
14
+ .sc(GetRecord)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_PutRecordCommand, se_PutRecordCommand } from "../protocols/Aws_restJson1";
4
+ import { PutRecord } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class PutRecordCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("AmazonSageMakerFeatureStoreRuntime", "PutRecord", {})
17
13
  .n("SageMakerFeatureStoreRuntimeClient", "PutRecordCommand")
18
- .f(void 0, void 0)
19
- .ser(se_PutRecordCommand)
20
- .de(de_PutRecordCommand)
14
+ .sc(PutRecord)
21
15
  .build() {
22
16
  }
@@ -1,4 +1,5 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core";
2
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
2
3
  import { NoOpLogger } from "@smithy/smithy-client";
3
4
  import { parseUrl } from "@smithy/url-parser";
4
5
  import { fromBase64, toBase64 } from "@smithy/util-base64";
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
22
23
  },
23
24
  ],
24
25
  logger: config?.logger ?? new NoOpLogger(),
26
+ protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.sagemakerfeaturestoreruntime" }),
25
27
  serviceId: config?.serviceId ?? "SageMaker FeatureStore Runtime",
26
28
  urlParser: config?.urlParser ?? parseUrl,
27
29
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
@@ -0,0 +1,281 @@
1
+ const _AF = "AccessForbidden";
2
+ const _BGR = "BatchGetRecord";
3
+ const _BGRE = "BatchGetRecordError";
4
+ const _BGREa = "BatchGetRecordErrors";
5
+ const _BGRI = "BatchGetRecordIdentifier";
6
+ const _BGRIa = "BatchGetRecordIdentifiers";
7
+ const _BGRR = "BatchGetRecordRequest";
8
+ const _BGRRD = "BatchGetRecordResultDetail";
9
+ const _BGRRDa = "BatchGetRecordResultDetails";
10
+ const _BGRRa = "BatchGetRecordResponse";
11
+ const _DM = "DeletionMode";
12
+ const _DR = "DeleteRecord";
13
+ const _DRR = "DeleteRecordRequest";
14
+ const _E = "Errors";
15
+ const _EA = "ExpiresAt";
16
+ const _EC = "ErrorCode";
17
+ const _EM = "ErrorMessage";
18
+ const _ET = "EventTime";
19
+ const _ETR = "ExpirationTimeResponse";
20
+ const _FGN = "FeatureGroupName";
21
+ const _FN = "FeatureNames";
22
+ const _FNe = "FeatureName";
23
+ const _FV = "FeatureValue";
24
+ const _GR = "GetRecord";
25
+ const _GRR = "GetRecordRequest";
26
+ const _GRRe = "GetRecordResponse";
27
+ const _I = "Identifiers";
28
+ const _IF = "InternalFailure";
29
+ const _M = "Message";
30
+ const _PR = "PutRecord";
31
+ const _PRR = "PutRecordRequest";
32
+ const _R = "Records";
33
+ const _RIVAS = "RecordIdentifierValueAsString";
34
+ const _RIVASe = "RecordIdentifiersValueAsString";
35
+ const _RNF = "ResourceNotFound";
36
+ const _Re = "Record";
37
+ const _SU = "ServiceUnavailable";
38
+ const _TD = "TtlDuration";
39
+ const _TS = "TargetStores";
40
+ const _U = "Unit";
41
+ const _UI = "UnprocessedIdentifiers";
42
+ const _V = "Value";
43
+ const _VAS = "ValueAsString";
44
+ const _VASL = "ValueAsStringList";
45
+ const _VE = "ValidationError";
46
+ const _c = "client";
47
+ const _e = "error";
48
+ const _h = "http";
49
+ const _hE = "httpError";
50
+ const _hQ = "httpQuery";
51
+ const _s = "server";
52
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.sagemakerfeaturestoreruntime";
53
+ const n0 = "com.amazonaws.sagemakerfeaturestoreruntime";
54
+ import { TypeRegistry } from "@smithy/core/schema";
55
+ import { AccessForbidden as __AccessForbidden, InternalFailure as __InternalFailure, ResourceNotFound as __ResourceNotFound, ServiceUnavailable as __ServiceUnavailable, ValidationError as __ValidationError, } from "../models/index";
56
+ import { SageMakerFeatureStoreRuntimeServiceException as __SageMakerFeatureStoreRuntimeServiceException } from "../models/SageMakerFeatureStoreRuntimeServiceException";
57
+ export var AccessForbidden = [
58
+ -3,
59
+ n0,
60
+ _AF,
61
+ {
62
+ [_e]: _c,
63
+ [_hE]: 403,
64
+ },
65
+ [_M],
66
+ [0],
67
+ ];
68
+ TypeRegistry.for(n0).registerError(AccessForbidden, __AccessForbidden);
69
+ export var BatchGetRecordError = [3, n0, _BGRE, 0, [_FGN, _RIVAS, _EC, _EM], [0, 0, 0, 0]];
70
+ export var BatchGetRecordIdentifier = [
71
+ 3,
72
+ n0,
73
+ _BGRI,
74
+ 0,
75
+ [_FGN, _RIVASe, _FN],
76
+ [0, 64 | 0, 64 | 0],
77
+ ];
78
+ export var BatchGetRecordRequest = [
79
+ 3,
80
+ n0,
81
+ _BGRR,
82
+ 0,
83
+ [_I, _ETR],
84
+ [() => BatchGetRecordIdentifiers, 0],
85
+ ];
86
+ export var BatchGetRecordResponse = [
87
+ 3,
88
+ n0,
89
+ _BGRRa,
90
+ 0,
91
+ [_R, _E, _UI],
92
+ [() => BatchGetRecordResultDetails, () => BatchGetRecordErrors, () => UnprocessedIdentifiers],
93
+ ];
94
+ export var BatchGetRecordResultDetail = [
95
+ 3,
96
+ n0,
97
+ _BGRRD,
98
+ 0,
99
+ [_FGN, _RIVAS, _Re, _EA],
100
+ [0, 0, () => _Record, 0],
101
+ ];
102
+ export var DeleteRecordRequest = [
103
+ 3,
104
+ n0,
105
+ _DRR,
106
+ 0,
107
+ [_FGN, _RIVAS, _ET, _TS, _DM],
108
+ [
109
+ [0, 1],
110
+ [
111
+ 0,
112
+ {
113
+ [_hQ]: _RIVAS,
114
+ },
115
+ ],
116
+ [
117
+ 0,
118
+ {
119
+ [_hQ]: _ET,
120
+ },
121
+ ],
122
+ [
123
+ 64 | 0,
124
+ {
125
+ [_hQ]: _TS,
126
+ },
127
+ ],
128
+ [
129
+ 0,
130
+ {
131
+ [_hQ]: _DM,
132
+ },
133
+ ],
134
+ ],
135
+ ];
136
+ export var FeatureValue = [3, n0, _FV, 0, [_FNe, _VAS, _VASL], [0, 0, 64 | 0]];
137
+ export var GetRecordRequest = [
138
+ 3,
139
+ n0,
140
+ _GRR,
141
+ 0,
142
+ [_FGN, _RIVAS, _FN, _ETR],
143
+ [
144
+ [0, 1],
145
+ [
146
+ 0,
147
+ {
148
+ [_hQ]: _RIVAS,
149
+ },
150
+ ],
151
+ [
152
+ 64 | 0,
153
+ {
154
+ [_hQ]: _FNe,
155
+ },
156
+ ],
157
+ [
158
+ 0,
159
+ {
160
+ [_hQ]: _ETR,
161
+ },
162
+ ],
163
+ ],
164
+ ];
165
+ export var GetRecordResponse = [3, n0, _GRRe, 0, [_Re, _EA], [() => _Record, 0]];
166
+ export var InternalFailure = [
167
+ -3,
168
+ n0,
169
+ _IF,
170
+ {
171
+ [_e]: _s,
172
+ [_hE]: 500,
173
+ },
174
+ [_M],
175
+ [0],
176
+ ];
177
+ TypeRegistry.for(n0).registerError(InternalFailure, __InternalFailure);
178
+ export var PutRecordRequest = [
179
+ 3,
180
+ n0,
181
+ _PRR,
182
+ 0,
183
+ [_FGN, _Re, _TS, _TD],
184
+ [[0, 1], () => _Record, 64 | 0, () => TtlDuration],
185
+ ];
186
+ export var ResourceNotFound = [
187
+ -3,
188
+ n0,
189
+ _RNF,
190
+ {
191
+ [_e]: _c,
192
+ [_hE]: 404,
193
+ },
194
+ [_M],
195
+ [0],
196
+ ];
197
+ TypeRegistry.for(n0).registerError(ResourceNotFound, __ResourceNotFound);
198
+ export var ServiceUnavailable = [
199
+ -3,
200
+ n0,
201
+ _SU,
202
+ {
203
+ [_e]: _s,
204
+ [_hE]: 503,
205
+ },
206
+ [_M],
207
+ [0],
208
+ ];
209
+ TypeRegistry.for(n0).registerError(ServiceUnavailable, __ServiceUnavailable);
210
+ export var TtlDuration = [3, n0, _TD, 0, [_U, _V], [0, 1]];
211
+ export var ValidationError = [
212
+ -3,
213
+ n0,
214
+ _VE,
215
+ {
216
+ [_e]: _c,
217
+ [_hE]: 400,
218
+ },
219
+ [_M],
220
+ [0],
221
+ ];
222
+ TypeRegistry.for(n0).registerError(ValidationError, __ValidationError);
223
+ export var __Unit = "unit";
224
+ export var SageMakerFeatureStoreRuntimeServiceException = [
225
+ -3,
226
+ _sm,
227
+ "SageMakerFeatureStoreRuntimeServiceException",
228
+ 0,
229
+ [],
230
+ [],
231
+ ];
232
+ TypeRegistry.for(_sm).registerError(SageMakerFeatureStoreRuntimeServiceException, __SageMakerFeatureStoreRuntimeServiceException);
233
+ export var BatchGetRecordErrors = [1, n0, _BGREa, 0, () => BatchGetRecordError];
234
+ export var BatchGetRecordIdentifiers = [1, n0, _BGRIa, 0, () => BatchGetRecordIdentifier];
235
+ export var BatchGetRecordResultDetails = [1, n0, _BGRRDa, 0, () => BatchGetRecordResultDetail];
236
+ export var FeatureNames = 64 | 0;
237
+ export var _Record = [1, n0, _Re, 0, () => FeatureValue];
238
+ export var RecordIdentifiers = 64 | 0;
239
+ export var TargetStores = 64 | 0;
240
+ export var UnprocessedIdentifiers = [1, n0, _UI, 0, () => BatchGetRecordIdentifier];
241
+ export var ValueAsStringList = 64 | 0;
242
+ export var BatchGetRecord = [
243
+ 9,
244
+ n0,
245
+ _BGR,
246
+ {
247
+ [_h]: ["POST", "/BatchGetRecord", 200],
248
+ },
249
+ () => BatchGetRecordRequest,
250
+ () => BatchGetRecordResponse,
251
+ ];
252
+ export var DeleteRecord = [
253
+ 9,
254
+ n0,
255
+ _DR,
256
+ {
257
+ [_h]: ["DELETE", "/FeatureGroup/{FeatureGroupName}", 200],
258
+ },
259
+ () => DeleteRecordRequest,
260
+ () => __Unit,
261
+ ];
262
+ export var GetRecord = [
263
+ 9,
264
+ n0,
265
+ _GR,
266
+ {
267
+ [_h]: ["GET", "/FeatureGroup/{FeatureGroupName}", 200],
268
+ },
269
+ () => GetRecordRequest,
270
+ () => GetRecordResponse,
271
+ ];
272
+ export var PutRecord = [
273
+ 9,
274
+ n0,
275
+ _PR,
276
+ {
277
+ [_h]: ["PUT", "/FeatureGroup/{FeatureGroupName}", 200],
278
+ },
279
+ () => PutRecordRequest,
280
+ () => __Unit,
281
+ ];
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
5
5
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
8
- import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
8
+ import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
10
  import { BatchGetRecordCommandInput, BatchGetRecordCommandOutput } from "./commands/BatchGetRecordCommand";
11
11
  import { DeleteRecordCommandInput, DeleteRecordCommandOutput } from "./commands/DeleteRecordCommand";
@@ -145,6 +145,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
145
145
  * Optional extensions
146
146
  */
147
147
  extensions?: RuntimeExtension[];
148
+ /**
149
+ * The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
150
+ * may be overridden. A default will always be set by the client.
151
+ * Available options depend on the service's supported protocols and will not be validated by
152
+ * the client.
153
+ * @alpha
154
+ *
155
+ */
156
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
148
157
  /**
149
158
  * The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
150
159
  */
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClie
29
29
  profile?: string;
30
30
  logger: import("@smithy/types").Logger;
31
31
  extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
32
33
  customUserAgent?: string | import("@smithy/types").UserAgent;
33
34
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
35
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClie
31
31
  profile?: string;
32
32
  logger: import("@smithy/types").Logger;
33
33
  extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
34
35
  customUserAgent?: string | import("@smithy/types").UserAgent;
35
36
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
37
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClie
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
29
29
  extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
30
31
  defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
32
  customUserAgent?: string | import("@smithy/types").UserAgent;
32
33
  userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClie
14
14
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerFeatureStoreRuntimeHttpAuthSchemeProvider;
15
15
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
16
  logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
17
18
  serviceId: string;
18
19
  urlParser: import("@smithy/types").UrlParser;
19
20
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,32 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var AccessForbidden: StaticErrorSchema;
3
+ export declare var BatchGetRecordError: StaticStructureSchema;
4
+ export declare var BatchGetRecordIdentifier: StaticStructureSchema;
5
+ export declare var BatchGetRecordRequest: StaticStructureSchema;
6
+ export declare var BatchGetRecordResponse: StaticStructureSchema;
7
+ export declare var BatchGetRecordResultDetail: StaticStructureSchema;
8
+ export declare var DeleteRecordRequest: StaticStructureSchema;
9
+ export declare var FeatureValue: StaticStructureSchema;
10
+ export declare var GetRecordRequest: StaticStructureSchema;
11
+ export declare var GetRecordResponse: StaticStructureSchema;
12
+ export declare var InternalFailure: StaticErrorSchema;
13
+ export declare var PutRecordRequest: StaticStructureSchema;
14
+ export declare var ResourceNotFound: StaticErrorSchema;
15
+ export declare var ServiceUnavailable: StaticErrorSchema;
16
+ export declare var TtlDuration: StaticStructureSchema;
17
+ export declare var ValidationError: StaticErrorSchema;
18
+ export declare var __Unit: "unit";
19
+ export declare var SageMakerFeatureStoreRuntimeServiceException: StaticErrorSchema;
20
+ export declare var BatchGetRecordErrors: StaticListSchema;
21
+ export declare var BatchGetRecordIdentifiers: StaticListSchema;
22
+ export declare var BatchGetRecordResultDetails: StaticListSchema;
23
+ export declare var FeatureNames: number;
24
+ export declare var _Record: StaticListSchema;
25
+ export declare var RecordIdentifiers: number;
26
+ export declare var TargetStores: number;
27
+ export declare var UnprocessedIdentifiers: StaticListSchema;
28
+ export declare var ValueAsStringList: number;
29
+ export declare var BatchGetRecord: StaticOperationSchema;
30
+ export declare var DeleteRecord: StaticOperationSchema;
31
+ export declare var GetRecord: StaticOperationSchema;
32
+ export declare var PutRecord: StaticOperationSchema;
@@ -30,10 +30,13 @@ import {
30
30
  BodyLengthCalculator as __BodyLengthCalculator,
31
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
32
  ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
33
34
  Decoder as __Decoder,
34
35
  Encoder as __Encoder,
35
36
  HashConstructor as __HashConstructor,
36
37
  HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
37
40
  Logger as __Logger,
38
41
  Provider as __Provider,
39
42
  Provider,
@@ -102,6 +105,7 @@ export interface ClientDefaults
102
105
  retryMode?: string | __Provider<string>;
103
106
  logger?: __Logger;
104
107
  extensions?: RuntimeExtension[];
108
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
105
109
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
106
110
  }
107
111
  export type SageMakerFeatureStoreRuntimeClientConfigType = Partial<
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  userAgentAppId?:
45
49
  | string
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
40
40
  profile?: string;
41
41
  logger: import("@smithy/types").Logger;
42
42
  extensions: import("./runtimeExtensions").RuntimeExtension[];
43
+ protocol: import("@smithy/types").ClientProtocol<
44
+ import("@smithy/types").HttpRequest,
45
+ import("@smithy/types").HttpResponse
46
+ >;
43
47
  customUserAgent?: string | import("@smithy/types").UserAgent;
44
48
  retryStrategy?:
45
49
  | import("@smithy/types").RetryStrategy
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
39
39
  retryMode: string | import("@smithy/types").Provider<string>;
40
40
  logger: import("@smithy/types").Logger;
41
41
  extensions: import("./runtimeExtensions").RuntimeExtension[];
42
+ protocol: import("@smithy/types").ClientProtocol<
43
+ import("@smithy/types").HttpRequest,
44
+ import("@smithy/types").HttpResponse
45
+ >;
42
46
  defaultsMode:
43
47
  | import("@smithy/smithy-client").DefaultsMode
44
48
  | import("@smithy/types").Provider<
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
16
16
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SageMakerFeatureStoreRuntimeHttpAuthSchemeProvider;
17
17
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
18
18
  logger: import("@smithy/types").Logger;
19
+ protocol: import("@smithy/types").ClientProtocol<
20
+ import("@smithy/types").HttpRequest,
21
+ import("@smithy/types").HttpResponse
22
+ >;
19
23
  serviceId: string;
20
24
  urlParser: import("@smithy/types").UrlParser;
21
25
  utf8Decoder: import("@smithy/types").Decoder;
@@ -0,0 +1,37 @@
1
+ import {
2
+ StaticErrorSchema,
3
+ StaticListSchema,
4
+ StaticOperationSchema,
5
+ StaticStructureSchema,
6
+ } from "@smithy/types";
7
+ export declare var AccessForbidden: StaticErrorSchema;
8
+ export declare var BatchGetRecordError: StaticStructureSchema;
9
+ export declare var BatchGetRecordIdentifier: StaticStructureSchema;
10
+ export declare var BatchGetRecordRequest: StaticStructureSchema;
11
+ export declare var BatchGetRecordResponse: StaticStructureSchema;
12
+ export declare var BatchGetRecordResultDetail: StaticStructureSchema;
13
+ export declare var DeleteRecordRequest: StaticStructureSchema;
14
+ export declare var FeatureValue: StaticStructureSchema;
15
+ export declare var GetRecordRequest: StaticStructureSchema;
16
+ export declare var GetRecordResponse: StaticStructureSchema;
17
+ export declare var InternalFailure: StaticErrorSchema;
18
+ export declare var PutRecordRequest: StaticStructureSchema;
19
+ export declare var ResourceNotFound: StaticErrorSchema;
20
+ export declare var ServiceUnavailable: StaticErrorSchema;
21
+ export declare var TtlDuration: StaticStructureSchema;
22
+ export declare var ValidationError: StaticErrorSchema;
23
+ export declare var __Unit: "unit";
24
+ export declare var SageMakerFeatureStoreRuntimeServiceException: StaticErrorSchema;
25
+ export declare var BatchGetRecordErrors: StaticListSchema;
26
+ export declare var BatchGetRecordIdentifiers: StaticListSchema;
27
+ export declare var BatchGetRecordResultDetails: StaticListSchema;
28
+ export declare var FeatureNames: number;
29
+ export declare var _Record: StaticListSchema;
30
+ export declare var RecordIdentifiers: number;
31
+ export declare var TargetStores: number;
32
+ export declare var UnprocessedIdentifiers: StaticListSchema;
33
+ export declare var ValueAsStringList: number;
34
+ export declare var BatchGetRecord: StaticOperationSchema;
35
+ export declare var DeleteRecord: StaticOperationSchema;
36
+ export declare var GetRecord: StaticOperationSchema;
37
+ export declare var PutRecord: StaticOperationSchema;