@aws-sdk/client-cloudfront-keyvaluestore 3.1045.0 → 3.1047.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/dist-cjs/auth/httpAuthSchemeProvider.js +7 -7
- package/dist-cjs/endpoint/bdd.js +2 -2
- package/dist-cjs/endpoint/endpointResolver.js +4 -4
- package/dist-cjs/index.js +28 -29
- package/dist-cjs/models/CloudFrontKeyValueStoreServiceException.js +3 -3
- package/dist-cjs/runtimeConfig.browser.js +12 -14
- package/dist-cjs/runtimeConfig.js +19 -23
- package/dist-cjs/runtimeConfig.shared.js +9 -10
- package/dist-es/CloudFrontKeyValueStore.js +1 -1
- package/dist-es/CloudFrontKeyValueStoreClient.js +5 -5
- package/dist-es/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-es/commands/DeleteKeyCommand.js +2 -2
- package/dist-es/commands/DescribeKeyValueStoreCommand.js +2 -2
- package/dist-es/commands/GetKeyCommand.js +2 -2
- package/dist-es/commands/ListKeysCommand.js +2 -2
- package/dist-es/commands/PutKeyCommand.js +2 -2
- package/dist-es/commands/UpdateKeysCommand.js +2 -2
- package/dist-es/endpoint/bdd.js +1 -1
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/CloudFrontKeyValueStoreServiceException.js +1 -1
- package/dist-es/runtimeConfig.browser.js +4 -6
- package/dist-es/runtimeConfig.js +4 -8
- package/dist-es/runtimeConfig.shared.js +3 -4
- package/dist-es/runtimeExtensions.js +2 -2
- package/dist-types/CloudFrontKeyValueStoreClient.d.ts +5 -5
- package/dist-types/commands/DeleteKeyCommand.d.ts +6 -4
- package/dist-types/commands/DescribeKeyValueStoreCommand.d.ts +6 -4
- package/dist-types/commands/GetKeyCommand.d.ts +6 -4
- package/dist-types/commands/ListKeysCommand.d.ts +6 -4
- package/dist-types/commands/PutKeyCommand.d.ts +6 -4
- package/dist-types/commands/UpdateKeysCommand.d.ts +6 -4
- package/dist-types/endpoint/bdd.d.ts +1 -1
- package/dist-types/extensionConfiguration.d.ts +1 -1
- package/dist-types/models/CloudFrontKeyValueStoreServiceException.d.ts +1 -1
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/CloudFrontKeyValueStoreClient.d.ts +8 -14
- package/dist-types/ts3.4/commands/DeleteKeyCommand.d.ts +6 -8
- package/dist-types/ts3.4/commands/DescribeKeyValueStoreCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetKeyCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListKeysCommand.d.ts +6 -8
- package/dist-types/ts3.4/commands/PutKeyCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateKeysCommand.d.ts +6 -4
- package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/models/CloudFrontKeyValueStoreServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/package.json +14 -35
|
@@ -3,26 +3,26 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultCloudFrontKeyValueStoreHttpAuthSchemeProvider = exports.defaultCloudFrontKeyValueStoreHttpAuthSchemeParametersProvider = void 0;
|
|
4
4
|
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const signature_v4_multi_region_1 = require("@aws-sdk/signature-v4-multi-region");
|
|
6
|
-
const
|
|
7
|
-
const
|
|
6
|
+
const client_1 = require("@smithy/core/client");
|
|
7
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
8
8
|
const endpointResolver_1 = require("../endpoint/endpointResolver");
|
|
9
9
|
const createEndpointRuleSetHttpAuthSchemeParametersProvider = (defaultHttpAuthSchemeParametersProvider) => async (config, context, input) => {
|
|
10
10
|
if (!input) {
|
|
11
11
|
throw new Error("Could not find `input` for `defaultEndpointRuleSetHttpAuthSchemeParametersProvider`");
|
|
12
12
|
}
|
|
13
13
|
const defaultParameters = await defaultHttpAuthSchemeParametersProvider(config, context, input);
|
|
14
|
-
const instructionsFn = (0,
|
|
14
|
+
const instructionsFn = (0, client_1.getSmithyContext)(context)?.commandInstance?.constructor
|
|
15
15
|
?.getEndpointParameterInstructions;
|
|
16
16
|
if (!instructionsFn) {
|
|
17
17
|
throw new Error(`getEndpointParameterInstructions() is not defined on '${context.commandName}'`);
|
|
18
18
|
}
|
|
19
|
-
const endpointParameters = await (0,
|
|
19
|
+
const endpointParameters = await (0, endpoints_1.resolveParams)(input, { getEndpointParameterInstructions: instructionsFn }, config);
|
|
20
20
|
return Object.assign(defaultParameters, endpointParameters);
|
|
21
21
|
};
|
|
22
22
|
const _defaultCloudFrontKeyValueStoreHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
23
23
|
return {
|
|
24
|
-
operation: (0,
|
|
25
|
-
region: await (0,
|
|
24
|
+
operation: (0, client_1.getSmithyContext)(context).operation,
|
|
25
|
+
region: await (0, client_1.normalizeProvider)(config.region)() || (() => {
|
|
26
26
|
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
27
27
|
})(),
|
|
28
28
|
};
|
|
@@ -120,7 +120,7 @@ const resolveHttpAuthSchemeConfig = (config) => {
|
|
|
120
120
|
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
121
121
|
const config_1 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4AConfig)(config_0);
|
|
122
122
|
return Object.assign(config_1, {
|
|
123
|
-
authSchemePreference: (0,
|
|
123
|
+
authSchemePreference: (0, client_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
124
124
|
});
|
|
125
125
|
};
|
|
126
126
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/endpoint/bdd.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.bdd = void 0;
|
|
4
|
-
const
|
|
4
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
5
5
|
const o = "ref";
|
|
6
6
|
const a = -1, b = "isSet", c = "parsedArn", d = "stringEquals", e = "getAttr", f = "arnType", g = "partitionResult", h = { [o]: c }, i = { [o]: f }, j = { "fn": e, "argv": [h, "partition"] }, k = { "authSchemes": [{ "name": "sigv4a", "signingName": "cloudfront-keyvaluestore", "signingRegionSet": ["*"] }] }, l = [{ [o]: "KvsARN" }], m = [{ [o]: "Region" }], n = [{ [o]: "Endpoint" }];
|
|
7
7
|
const _data = {
|
|
@@ -56,4 +56,4 @@ const nodes = new Int32Array([
|
|
|
56
56
|
12, 15, r + 3,
|
|
57
57
|
13, r + 1, r + 2,
|
|
58
58
|
]);
|
|
59
|
-
exports.bdd =
|
|
59
|
+
exports.bdd = endpoints_1.BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
-
const
|
|
5
|
+
const endpoints_1 = require("@smithy/core/endpoints");
|
|
6
6
|
const bdd_1 = require("./bdd");
|
|
7
|
-
const cache = new
|
|
7
|
+
const cache = new endpoints_1.EndpointCache({
|
|
8
8
|
size: 50,
|
|
9
9
|
params: ["Endpoint", "KvsARN", "Region", "UseFIPS"],
|
|
10
10
|
});
|
|
11
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
12
|
-
return cache.get(endpointParams, () => (0,
|
|
12
|
+
return cache.get(endpointParams, () => (0, endpoints_1.decideEndpoint)(bdd_1.bdd, {
|
|
13
13
|
endpointParams: endpointParams,
|
|
14
14
|
logger: context.logger,
|
|
15
15
|
}));
|
|
16
16
|
};
|
|
17
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
18
|
-
|
|
18
|
+
endpoints_1.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -4,17 +4,16 @@ var middlewareHostHeader = require('@aws-sdk/middleware-host-header');
|
|
|
4
4
|
var middlewareLogger = require('@aws-sdk/middleware-logger');
|
|
5
5
|
var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detection');
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
|
-
var configResolver = require('@smithy/config-resolver');
|
|
8
7
|
var core = require('@smithy/core');
|
|
8
|
+
var client = require('@smithy/core/client');
|
|
9
|
+
var config = require('@smithy/core/config');
|
|
10
|
+
var endpoints = require('@smithy/core/endpoints');
|
|
11
|
+
var protocols = require('@smithy/core/protocols');
|
|
12
|
+
var retry = require('@smithy/core/retry');
|
|
9
13
|
var schema = require('@smithy/core/schema');
|
|
10
|
-
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
11
|
-
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
12
|
-
var middlewareRetry = require('@smithy/middleware-retry');
|
|
13
|
-
var smithyClient = require('@smithy/smithy-client');
|
|
14
14
|
var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
|
-
var protocolHttp = require('@smithy/protocol-http');
|
|
18
17
|
var schemas_0 = require('./schemas/schemas_0');
|
|
19
18
|
var errors = require('./models/errors');
|
|
20
19
|
var CloudFrontKeyValueStoreServiceException = require('./models/CloudFrontKeyValueStoreServiceException');
|
|
@@ -71,12 +70,12 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
71
70
|
};
|
|
72
71
|
|
|
73
72
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
74
|
-
const extensionConfiguration = Object.assign(regionConfigResolver.getAwsRegionExtensionConfiguration(runtimeConfig),
|
|
73
|
+
const extensionConfiguration = Object.assign(regionConfigResolver.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
75
74
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
76
|
-
return Object.assign(runtimeConfig, regionConfigResolver.resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
75
|
+
return Object.assign(runtimeConfig, regionConfigResolver.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
77
76
|
};
|
|
78
77
|
|
|
79
|
-
class CloudFrontKeyValueStoreClient extends
|
|
78
|
+
class CloudFrontKeyValueStoreClient extends client.Client {
|
|
80
79
|
config;
|
|
81
80
|
constructor(...[configuration]) {
|
|
82
81
|
const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});
|
|
@@ -84,17 +83,17 @@ class CloudFrontKeyValueStoreClient extends smithyClient.Client {
|
|
|
84
83
|
this.initConfig = _config_0;
|
|
85
84
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
86
85
|
const _config_2 = middlewareUserAgent.resolveUserAgentConfig(_config_1);
|
|
87
|
-
const _config_3 =
|
|
88
|
-
const _config_4 =
|
|
86
|
+
const _config_3 = retry.resolveRetryConfig(_config_2);
|
|
87
|
+
const _config_4 = config.resolveRegionConfig(_config_3);
|
|
89
88
|
const _config_5 = middlewareHostHeader.resolveHostHeaderConfig(_config_4);
|
|
90
|
-
const _config_6 =
|
|
89
|
+
const _config_6 = endpoints.resolveEndpointConfig(_config_5);
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
94
93
|
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
95
|
+
this.middlewareStack.use(retry.getRetryPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));
|
|
98
97
|
this.middlewareStack.use(middlewareHostHeader.getHostHeaderPlugin(this.config));
|
|
99
98
|
this.middlewareStack.use(middlewareLogger.getLoggerPlugin(this.config));
|
|
100
99
|
this.middlewareStack.use(middlewareRecursionDetection.getRecursionDetectionPlugin(this.config));
|
|
@@ -112,14 +111,14 @@ class CloudFrontKeyValueStoreClient extends smithyClient.Client {
|
|
|
112
111
|
}
|
|
113
112
|
}
|
|
114
113
|
|
|
115
|
-
class DeleteKeyCommand extends
|
|
114
|
+
class DeleteKeyCommand extends client.Command
|
|
116
115
|
.classBuilder()
|
|
117
116
|
.ep({
|
|
118
117
|
...commonParams,
|
|
119
118
|
KvsARN: { type: "contextParams", name: "KvsARN" },
|
|
120
119
|
})
|
|
121
120
|
.m(function (Command, cs, config, o) {
|
|
122
|
-
return [
|
|
121
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
123
122
|
})
|
|
124
123
|
.s("CloudFrontKeyValueStore", "DeleteKey", {})
|
|
125
124
|
.n("CloudFrontKeyValueStoreClient", "DeleteKeyCommand")
|
|
@@ -127,14 +126,14 @@ class DeleteKeyCommand extends smithyClient.Command
|
|
|
127
126
|
.build() {
|
|
128
127
|
}
|
|
129
128
|
|
|
130
|
-
class DescribeKeyValueStoreCommand extends
|
|
129
|
+
class DescribeKeyValueStoreCommand extends client.Command
|
|
131
130
|
.classBuilder()
|
|
132
131
|
.ep({
|
|
133
132
|
...commonParams,
|
|
134
133
|
KvsARN: { type: "contextParams", name: "KvsARN" },
|
|
135
134
|
})
|
|
136
135
|
.m(function (Command, cs, config, o) {
|
|
137
|
-
return [
|
|
136
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
138
137
|
})
|
|
139
138
|
.s("CloudFrontKeyValueStore", "DescribeKeyValueStore", {})
|
|
140
139
|
.n("CloudFrontKeyValueStoreClient", "DescribeKeyValueStoreCommand")
|
|
@@ -142,14 +141,14 @@ class DescribeKeyValueStoreCommand extends smithyClient.Command
|
|
|
142
141
|
.build() {
|
|
143
142
|
}
|
|
144
143
|
|
|
145
|
-
class GetKeyCommand extends
|
|
144
|
+
class GetKeyCommand extends client.Command
|
|
146
145
|
.classBuilder()
|
|
147
146
|
.ep({
|
|
148
147
|
...commonParams,
|
|
149
148
|
KvsARN: { type: "contextParams", name: "KvsARN" },
|
|
150
149
|
})
|
|
151
150
|
.m(function (Command, cs, config, o) {
|
|
152
|
-
return [
|
|
151
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
153
152
|
})
|
|
154
153
|
.s("CloudFrontKeyValueStore", "GetKey", {})
|
|
155
154
|
.n("CloudFrontKeyValueStoreClient", "GetKeyCommand")
|
|
@@ -157,14 +156,14 @@ class GetKeyCommand extends smithyClient.Command
|
|
|
157
156
|
.build() {
|
|
158
157
|
}
|
|
159
158
|
|
|
160
|
-
class ListKeysCommand extends
|
|
159
|
+
class ListKeysCommand extends client.Command
|
|
161
160
|
.classBuilder()
|
|
162
161
|
.ep({
|
|
163
162
|
...commonParams,
|
|
164
163
|
KvsARN: { type: "contextParams", name: "KvsARN" },
|
|
165
164
|
})
|
|
166
165
|
.m(function (Command, cs, config, o) {
|
|
167
|
-
return [
|
|
166
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
168
167
|
})
|
|
169
168
|
.s("CloudFrontKeyValueStore", "ListKeys", {})
|
|
170
169
|
.n("CloudFrontKeyValueStoreClient", "ListKeysCommand")
|
|
@@ -172,14 +171,14 @@ class ListKeysCommand extends smithyClient.Command
|
|
|
172
171
|
.build() {
|
|
173
172
|
}
|
|
174
173
|
|
|
175
|
-
class PutKeyCommand extends
|
|
174
|
+
class PutKeyCommand extends client.Command
|
|
176
175
|
.classBuilder()
|
|
177
176
|
.ep({
|
|
178
177
|
...commonParams,
|
|
179
178
|
KvsARN: { type: "contextParams", name: "KvsARN" },
|
|
180
179
|
})
|
|
181
180
|
.m(function (Command, cs, config, o) {
|
|
182
|
-
return [
|
|
181
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
183
182
|
})
|
|
184
183
|
.s("CloudFrontKeyValueStore", "PutKey", {})
|
|
185
184
|
.n("CloudFrontKeyValueStoreClient", "PutKeyCommand")
|
|
@@ -187,14 +186,14 @@ class PutKeyCommand extends smithyClient.Command
|
|
|
187
186
|
.build() {
|
|
188
187
|
}
|
|
189
188
|
|
|
190
|
-
class UpdateKeysCommand extends
|
|
189
|
+
class UpdateKeysCommand extends client.Command
|
|
191
190
|
.classBuilder()
|
|
192
191
|
.ep({
|
|
193
192
|
...commonParams,
|
|
194
193
|
KvsARN: { type: "contextParams", name: "KvsARN" },
|
|
195
194
|
})
|
|
196
195
|
.m(function (Command, cs, config, o) {
|
|
197
|
-
return [
|
|
196
|
+
return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
198
197
|
})
|
|
199
198
|
.s("CloudFrontKeyValueStore", "UpdateKeys", {})
|
|
200
199
|
.n("CloudFrontKeyValueStoreClient", "UpdateKeysCommand")
|
|
@@ -217,10 +216,10 @@ const paginators = {
|
|
|
217
216
|
};
|
|
218
217
|
class CloudFrontKeyValueStore extends CloudFrontKeyValueStoreClient {
|
|
219
218
|
}
|
|
220
|
-
|
|
219
|
+
client.createAggregatedClient(commands, CloudFrontKeyValueStore, { paginators });
|
|
221
220
|
|
|
222
|
-
exports.$Command =
|
|
223
|
-
exports.__Client =
|
|
221
|
+
exports.$Command = client.Command;
|
|
222
|
+
exports.__Client = client.Client;
|
|
224
223
|
exports.CloudFrontKeyValueStoreServiceException = CloudFrontKeyValueStoreServiceException.CloudFrontKeyValueStoreServiceException;
|
|
225
224
|
exports.CloudFrontKeyValueStore = CloudFrontKeyValueStore;
|
|
226
225
|
exports.CloudFrontKeyValueStoreClient = CloudFrontKeyValueStoreClient;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CloudFrontKeyValueStoreServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return
|
|
6
|
-
class CloudFrontKeyValueStoreServiceException extends
|
|
4
|
+
const client_1 = require("@smithy/core/client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return client_1.ServiceException; } });
|
|
6
|
+
class CloudFrontKeyValueStoreServiceException extends client_1.ServiceException {
|
|
7
7
|
constructor(options) {
|
|
8
8
|
super(options);
|
|
9
9
|
Object.setPrototypeOf(this, CloudFrontKeyValueStoreServiceException.prototype);
|
|
@@ -5,34 +5,32 @@ const tslib_1 = require("tslib");
|
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
6
|
const sha256_browser_1 = require("@aws-crypto/sha256-browser");
|
|
7
7
|
const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
|
|
8
|
-
const
|
|
8
|
+
const client_1 = require("@smithy/core/client");
|
|
9
|
+
const config_1 = require("@smithy/core/config");
|
|
10
|
+
const retry_1 = require("@smithy/core/retry");
|
|
11
|
+
const serde_1 = require("@smithy/core/serde");
|
|
9
12
|
const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
|
|
10
|
-
const invalid_dependency_1 = require("@smithy/invalid-dependency");
|
|
11
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
12
|
-
const util_body_length_browser_1 = require("@smithy/util-body-length-browser");
|
|
13
|
-
const util_defaults_mode_browser_1 = require("@smithy/util-defaults-mode-browser");
|
|
14
|
-
const util_retry_1 = require("@smithy/util-retry");
|
|
15
13
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
16
14
|
const getRuntimeConfig = (config) => {
|
|
17
|
-
const defaultsMode = (0,
|
|
18
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
15
|
+
const defaultsMode = (0, config_1.resolveDefaultsModeConfig)(config);
|
|
16
|
+
const defaultConfigProvider = () => defaultsMode().then(client_1.loadConfigsForDefaultMode);
|
|
19
17
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
20
18
|
return {
|
|
21
19
|
...clientSharedValues,
|
|
22
20
|
...config,
|
|
23
21
|
runtime: "browser",
|
|
24
22
|
defaultsMode,
|
|
25
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
23
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? serde_1.calculateBodyLength,
|
|
26
24
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
27
25
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_browser_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
28
|
-
maxAttempts: config?.maxAttempts ??
|
|
29
|
-
region: config?.region ?? (0,
|
|
26
|
+
maxAttempts: config?.maxAttempts ?? retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
27
|
+
region: config?.region ?? (0, client_1.invalidProvider)("Region is missing"),
|
|
30
28
|
requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
31
|
-
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode ||
|
|
29
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || retry_1.DEFAULT_RETRY_MODE),
|
|
32
30
|
sha256: config?.sha256 ?? sha256_browser_1.Sha256,
|
|
33
31
|
streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
|
|
34
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(
|
|
35
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(
|
|
32
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
33
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(config_1.DEFAULT_USE_FIPS_ENDPOINT)),
|
|
36
34
|
};
|
|
37
35
|
};
|
|
38
36
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -7,20 +7,16 @@ const client_1 = require("@aws-sdk/core/client");
|
|
|
7
7
|
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
8
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
9
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const
|
|
13
|
-
const
|
|
10
|
+
const client_2 = require("@smithy/core/client");
|
|
11
|
+
const config_1 = require("@smithy/core/config");
|
|
12
|
+
const retry_1 = require("@smithy/core/retry");
|
|
13
|
+
const serde_1 = require("@smithy/core/serde");
|
|
14
14
|
const node_http_handler_1 = require("@smithy/node-http-handler");
|
|
15
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
16
|
-
const util_body_length_node_1 = require("@smithy/util-body-length-node");
|
|
17
|
-
const util_defaults_mode_node_1 = require("@smithy/util-defaults-mode-node");
|
|
18
|
-
const util_retry_1 = require("@smithy/util-retry");
|
|
19
15
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
20
16
|
const getRuntimeConfig = (config) => {
|
|
21
|
-
(0,
|
|
22
|
-
const defaultsMode = (0,
|
|
23
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
17
|
+
(0, client_2.emitWarningIfUnsupportedVersion)(process.version);
|
|
18
|
+
const defaultsMode = (0, config_1.resolveDefaultsModeConfig)(config);
|
|
19
|
+
const defaultConfigProvider = () => defaultsMode().then(client_2.loadConfigsForDefaultMode);
|
|
24
20
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
25
21
|
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
26
22
|
const loaderConfig = {
|
|
@@ -32,24 +28,24 @@ const getRuntimeConfig = (config) => {
|
|
|
32
28
|
...config,
|
|
33
29
|
runtime: "node",
|
|
34
30
|
defaultsMode,
|
|
35
|
-
authSchemePreference: config?.authSchemePreference ?? (0,
|
|
36
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
31
|
+
authSchemePreference: config?.authSchemePreference ?? (0, config_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
32
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? serde_1.calculateBodyLength,
|
|
37
33
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
38
34
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
39
|
-
maxAttempts: config?.maxAttempts ?? (0,
|
|
40
|
-
region: config?.region ?? (0,
|
|
35
|
+
maxAttempts: config?.maxAttempts ?? (0, config_1.loadConfig)(retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
36
|
+
region: config?.region ?? (0, config_1.loadConfig)(config_1.NODE_REGION_CONFIG_OPTIONS, { ...config_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
41
37
|
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
42
38
|
retryMode: config?.retryMode ??
|
|
43
|
-
(0,
|
|
44
|
-
...
|
|
45
|
-
default: async () => (await defaultConfigProvider()).retryMode ||
|
|
39
|
+
(0, config_1.loadConfig)({
|
|
40
|
+
...retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
41
|
+
default: async () => (await defaultConfigProvider()).retryMode || retry_1.DEFAULT_RETRY_MODE,
|
|
46
42
|
}, config),
|
|
47
|
-
sha256: config?.sha256 ??
|
|
48
|
-
sigv4aSigningRegionSet: config?.sigv4aSigningRegionSet ?? (0,
|
|
43
|
+
sha256: config?.sha256 ?? serde_1.Hash.bind(null, "sha256"),
|
|
44
|
+
sigv4aSigningRegionSet: config?.sigv4aSigningRegionSet ?? (0, config_1.loadConfig)(httpAuthSchemes_1.NODE_SIGV4A_CONFIG_OPTIONS, loaderConfig),
|
|
49
45
|
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
50
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0,
|
|
51
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (0,
|
|
52
|
-
userAgentAppId: config?.userAgentAppId ?? (0,
|
|
46
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, config_1.loadConfig)(config_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
47
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (0, config_1.loadConfig)(config_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
48
|
+
userAgentAppId: config?.userAgentAppId ?? (0, config_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
53
49
|
};
|
|
54
50
|
};
|
|
55
51
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -4,18 +4,17 @@ exports.getRuntimeConfig = void 0;
|
|
|
4
4
|
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const signature_v4_multi_region_1 = require("@aws-sdk/signature-v4-multi-region");
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const util_utf8_1 = require("@smithy/util-utf8");
|
|
7
|
+
const client_1 = require("@smithy/core/client");
|
|
8
|
+
const protocols_2 = require("@smithy/core/protocols");
|
|
9
|
+
const serde_1 = require("@smithy/core/serde");
|
|
11
10
|
const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
|
|
12
11
|
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
13
12
|
const schemas_0_1 = require("./schemas/schemas_0");
|
|
14
13
|
const getRuntimeConfig = (config) => {
|
|
15
14
|
return {
|
|
16
15
|
apiVersion: "2022-07-26",
|
|
17
|
-
base64Decoder: config?.base64Decoder ??
|
|
18
|
-
base64Encoder: config?.base64Encoder ??
|
|
16
|
+
base64Decoder: config?.base64Decoder ?? serde_1.fromBase64,
|
|
17
|
+
base64Encoder: config?.base64Encoder ?? serde_1.toBase64,
|
|
19
18
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
20
19
|
endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
|
|
21
20
|
extensions: config?.extensions ?? [],
|
|
@@ -32,7 +31,7 @@ const getRuntimeConfig = (config) => {
|
|
|
32
31
|
signer: new httpAuthSchemes_1.AwsSdkSigV4ASigner(),
|
|
33
32
|
},
|
|
34
33
|
],
|
|
35
|
-
logger: config?.logger ?? new
|
|
34
|
+
logger: config?.logger ?? new client_1.NoOpLogger(),
|
|
36
35
|
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
37
36
|
protocolSettings: config?.protocolSettings ?? {
|
|
38
37
|
defaultNamespace: "com.amazonaws.cloudfrontkeyvaluestore",
|
|
@@ -42,9 +41,9 @@ const getRuntimeConfig = (config) => {
|
|
|
42
41
|
},
|
|
43
42
|
serviceId: config?.serviceId ?? "CloudFront KeyValueStore",
|
|
44
43
|
signerConstructor: config?.signerConstructor ?? signature_v4_multi_region_1.SignatureV4MultiRegion,
|
|
45
|
-
urlParser: config?.urlParser ??
|
|
46
|
-
utf8Decoder: config?.utf8Decoder ??
|
|
47
|
-
utf8Encoder: config?.utf8Encoder ??
|
|
44
|
+
urlParser: config?.urlParser ?? protocols_2.parseUrl,
|
|
45
|
+
utf8Decoder: config?.utf8Decoder ?? serde_1.fromUtf8,
|
|
46
|
+
utf8Encoder: config?.utf8Encoder ?? serde_1.toUtf8,
|
|
48
47
|
};
|
|
49
48
|
};
|
|
50
49
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createAggregatedClient } from "@smithy/
|
|
1
|
+
import { createAggregatedClient } from "@smithy/core/client";
|
|
2
2
|
import { CloudFrontKeyValueStoreClient } from "./CloudFrontKeyValueStoreClient";
|
|
3
3
|
import { DeleteKeyCommand } from "./commands/DeleteKeyCommand";
|
|
4
4
|
import { DescribeKeyValueStoreCommand, } from "./commands/DescribeKeyValueStoreCommand";
|
|
@@ -2,13 +2,13 @@ import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middlewa
|
|
|
2
2
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
3
3
|
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
4
4
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
5
|
-
import { resolveRegionConfig } from "@smithy/config-resolver";
|
|
6
5
|
import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
|
|
6
|
+
import { Client as __Client, } from "@smithy/core/client";
|
|
7
|
+
import { resolveRegionConfig } from "@smithy/core/config";
|
|
8
|
+
import { resolveEndpointConfig } from "@smithy/core/endpoints";
|
|
9
|
+
import { getContentLengthPlugin } from "@smithy/core/protocols";
|
|
10
|
+
import { getRetryPlugin, resolveRetryConfig, } from "@smithy/core/retry";
|
|
7
11
|
import { getSchemaSerdePlugin } from "@smithy/core/schema";
|
|
8
|
-
import { getContentLengthPlugin } from "@smithy/middleware-content-length";
|
|
9
|
-
import { resolveEndpointConfig, } from "@smithy/middleware-endpoint";
|
|
10
|
-
import { getRetryPlugin, resolveRetryConfig, } from "@smithy/middleware-retry";
|
|
11
|
-
import { Client as __Client, } from "@smithy/smithy-client";
|
|
12
12
|
import { defaultCloudFrontKeyValueStoreHttpAuthSchemeParametersProvider, resolveHttpAuthSchemeConfig, } from "./auth/httpAuthSchemeProvider";
|
|
13
13
|
import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
|
|
14
14
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { resolveAwsSdkSigV4AConfig, resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { getSmithyContext, normalizeProvider } from "@smithy/core/client";
|
|
4
|
+
import { resolveParams } from "@smithy/core/endpoints";
|
|
5
5
|
import { defaultEndpointResolver } from "../endpoint/endpointResolver";
|
|
6
6
|
const createEndpointRuleSetHttpAuthSchemeParametersProvider = (defaultHttpAuthSchemeParametersProvider) => async (config, context, input) => {
|
|
7
7
|
if (!input) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
4
|
import { DeleteKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
4
|
import { DescribeKeyValueStore$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
4
|
import { GetKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
4
|
import { ListKeys$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
4
|
import { PutKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
4
|
import { UpdateKeys$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
package/dist-es/endpoint/bdd.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BinaryDecisionDiagram } from "@smithy/
|
|
1
|
+
import { BinaryDecisionDiagram } from "@smithy/core/endpoints";
|
|
2
2
|
const o = "ref";
|
|
3
3
|
const a = -1, b = "isSet", c = "parsedArn", d = "stringEquals", e = "getAttr", f = "arnType", g = "partitionResult", h = { [o]: c }, i = { [o]: f }, j = { "fn": e, "argv": [h, "partition"] }, k = { "authSchemes": [{ "name": "sigv4a", "signingName": "cloudfront-keyvaluestore", "signingRegionSet": ["*"] }] }, l = [{ [o]: "KvsARN" }], m = [{ [o]: "Region" }], n = [{ [o]: "Endpoint" }];
|
|
4
4
|
const _data = {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
-
import { customEndpointFunctions, decideEndpoint, EndpointCache } from "@smithy/
|
|
2
|
+
import { customEndpointFunctions, decideEndpoint, EndpointCache } from "@smithy/core/endpoints";
|
|
3
3
|
import { bdd } from "./bdd";
|
|
4
4
|
const cache = new EndpointCache({
|
|
5
5
|
size: 50,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ServiceException as __ServiceException, } from "@smithy/
|
|
1
|
+
import { ServiceException as __ServiceException, } from "@smithy/core/client";
|
|
2
2
|
export { __ServiceException };
|
|
3
3
|
export class CloudFrontKeyValueStoreServiceException extends __ServiceException {
|
|
4
4
|
constructor(options) {
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
2
|
import { Sha256 } from "@aws-crypto/sha256-browser";
|
|
3
3
|
import { createDefaultUserAgentProvider } from "@aws-sdk/util-user-agent-browser";
|
|
4
|
-
import {
|
|
4
|
+
import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
5
|
+
import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
6
|
+
import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/core/retry";
|
|
7
|
+
import { calculateBodyLength } from "@smithy/core/serde";
|
|
5
8
|
import { FetchHttpHandler as RequestHandler, streamCollector } from "@smithy/fetch-http-handler";
|
|
6
|
-
import { invalidProvider } from "@smithy/invalid-dependency";
|
|
7
|
-
import { loadConfigsForDefaultMode } from "@smithy/smithy-client";
|
|
8
|
-
import { calculateBodyLength } from "@smithy/util-body-length-browser";
|
|
9
|
-
import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-browser";
|
|
10
|
-
import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@smithy/util-retry";
|
|
11
9
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
12
10
|
export const getRuntimeConfig = (config) => {
|
|
13
11
|
const defaultsMode = resolveDefaultsModeConfig(config);
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -3,15 +3,11 @@ import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/cor
|
|
|
3
3
|
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, NODE_SIGV4A_CONFIG_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
4
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
5
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/
|
|
9
|
-
import {
|
|
6
|
+
import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
|
|
7
|
+
import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
|
|
8
|
+
import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
|
|
9
|
+
import { calculateBodyLength, Hash } from "@smithy/core/serde";
|
|
10
10
|
import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
|
|
11
|
-
import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/smithy-client";
|
|
12
|
-
import { calculateBodyLength } from "@smithy/util-body-length-node";
|
|
13
|
-
import { resolveDefaultsModeConfig } from "@smithy/util-defaults-mode-node";
|
|
14
|
-
import { DEFAULT_RETRY_MODE } from "@smithy/util-retry";
|
|
15
11
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
16
12
|
export const getRuntimeConfig = (config) => {
|
|
17
13
|
emitWarningIfUnsupportedVersion(process.version);
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { AwsSdkSigV4ASigner, AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { SignatureV4MultiRegion } from "@aws-sdk/signature-v4-multi-region";
|
|
4
|
-
import { NoOpLogger } from "@smithy/
|
|
5
|
-
import { parseUrl } from "@smithy/
|
|
6
|
-
import { fromBase64, toBase64 } from "@smithy/
|
|
7
|
-
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
4
|
+
import { NoOpLogger } from "@smithy/core/client";
|
|
5
|
+
import { parseUrl } from "@smithy/core/protocols";
|
|
6
|
+
import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
|
|
8
7
|
import { defaultCloudFrontKeyValueStoreHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
9
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
10
9
|
import { errorTypeRegistries } from "./schemas/schemas_0";
|