@aws-sdk/client-glacier 3.772.0 → 3.775.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 +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/GlacierClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/package.json +38 -38
|
@@ -40,8 +40,6 @@ const defaultGlacierHttpAuthSchemeProvider = (authParameters) => {
|
|
|
40
40
|
exports.defaultGlacierHttpAuthSchemeProvider = defaultGlacierHttpAuthSchemeProvider;
|
|
41
41
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
42
42
|
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
|
43
|
-
return {
|
|
44
|
-
...config_0,
|
|
45
|
-
};
|
|
43
|
+
return Object.assign(config_0, {});
|
|
46
44
|
};
|
|
47
45
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/index.js
CHANGED
|
@@ -106,12 +106,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
|
106
106
|
|
|
107
107
|
// src/endpoint/EndpointParameters.ts
|
|
108
108
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
109
|
-
return {
|
|
110
|
-
...options,
|
|
109
|
+
return Object.assign(options, {
|
|
111
110
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
112
111
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
113
112
|
defaultSigningName: "glacier"
|
|
114
|
-
};
|
|
113
|
+
});
|
|
115
114
|
}, "resolveClientEndpointParameters");
|
|
116
115
|
var commonParams = {
|
|
117
116
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -168,22 +167,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
|
168
167
|
}, "resolveHttpAuthRuntimeConfig");
|
|
169
168
|
|
|
170
169
|
// src/runtimeExtensions.ts
|
|
171
|
-
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
172
170
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
173
|
-
const extensionConfiguration =
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
171
|
+
const extensionConfiguration = Object.assign(
|
|
172
|
+
(0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
|
|
173
|
+
(0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
|
|
174
|
+
(0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
|
|
175
|
+
getHttpAuthExtensionConfiguration(runtimeConfig)
|
|
176
|
+
);
|
|
179
177
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
180
|
-
return
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
178
|
+
return Object.assign(
|
|
179
|
+
runtimeConfig,
|
|
180
|
+
(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
181
|
+
(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
182
|
+
(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
183
|
+
resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
184
|
+
);
|
|
187
185
|
}, "resolveRuntimeExtensions");
|
|
188
186
|
|
|
189
187
|
// src/GlacierClient.ts
|
|
@@ -197,6 +195,8 @@ var GlacierClient = class extends import_smithy_client.Client {
|
|
|
197
195
|
config;
|
|
198
196
|
constructor(...[configuration]) {
|
|
199
197
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
198
|
+
super(_config_0);
|
|
199
|
+
this.initConfig = _config_0;
|
|
200
200
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
201
201
|
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
202
202
|
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
@@ -205,7 +205,6 @@ var GlacierClient = class extends import_smithy_client.Client {
|
|
|
205
205
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
206
206
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
207
207
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
208
|
-
super(_config_8);
|
|
209
208
|
this.config = _config_8;
|
|
210
209
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
211
210
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
package/dist-es/GlacierClient.js
CHANGED
|
@@ -18,6 +18,8 @@ export class GlacierClient extends __Client {
|
|
|
18
18
|
config;
|
|
19
19
|
constructor(...[configuration]) {
|
|
20
20
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
21
|
+
super(_config_0);
|
|
22
|
+
this.initConfig = _config_0;
|
|
21
23
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
22
24
|
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
23
25
|
const _config_3 = resolveRetryConfig(_config_2);
|
|
@@ -26,7 +28,6 @@ export class GlacierClient extends __Client {
|
|
|
26
28
|
const _config_6 = resolveEndpointConfig(_config_5);
|
|
27
29
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
28
30
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
31
|
this.config = _config_8;
|
|
31
32
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
32
33
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
@@ -35,7 +35,5 @@ export const defaultGlacierHttpAuthSchemeProvider = (authParameters) => {
|
|
|
35
35
|
};
|
|
36
36
|
export const resolveHttpAuthSchemeConfig = (config) => {
|
|
37
37
|
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
38
|
-
return {
|
|
39
|
-
...config_0,
|
|
40
|
-
};
|
|
38
|
+
return Object.assign(config_0, {});
|
|
41
39
|
};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
export const resolveClientEndpointParameters = (options) => {
|
|
2
|
-
return {
|
|
3
|
-
...options,
|
|
2
|
+
return Object.assign(options, {
|
|
4
3
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
5
4
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
6
5
|
defaultSigningName: "glacier",
|
|
7
|
-
};
|
|
6
|
+
});
|
|
8
7
|
};
|
|
9
8
|
export const commonParams = {
|
|
10
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -2,20 +2,8 @@ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfigurat
|
|
|
2
2
|
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
|
|
3
3
|
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
4
4
|
import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
-
const asPartial = (t) => t;
|
|
6
5
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
7
|
-
const extensionConfiguration =
|
|
8
|
-
...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
|
|
9
|
-
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
10
|
-
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
|
|
11
|
-
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
|
|
12
|
-
};
|
|
6
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
13
7
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
14
|
-
return
|
|
15
|
-
...runtimeConfig,
|
|
16
|
-
...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
17
|
-
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
18
|
-
...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
|
|
19
|
-
...resolveHttpAuthRuntimeConfig(extensionConfiguration),
|
|
20
|
-
};
|
|
8
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
21
9
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-glacier",
|
|
3
3
|
"description": "AWS SDK for JavaScript Glacier Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.775.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-glacier",
|
|
@@ -20,47 +20,47 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/body-checksum-browser": "3.
|
|
24
|
-
"@aws-sdk/body-checksum-node": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-sdk-glacier": "3.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
33
|
-
"@aws-sdk/types": "3.
|
|
34
|
-
"@aws-sdk/util-endpoints": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
37
|
-
"@smithy/config-resolver": "^4.0
|
|
38
|
-
"@smithy/core": "^3.
|
|
39
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
40
|
-
"@smithy/hash-node": "^4.0.
|
|
41
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
42
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.0
|
|
44
|
-
"@smithy/middleware-retry": "^4.0
|
|
45
|
-
"@smithy/middleware-serde": "^4.0.
|
|
46
|
-
"@smithy/middleware-stack": "^4.0.
|
|
47
|
-
"@smithy/node-config-provider": "^4.0.
|
|
48
|
-
"@smithy/node-http-handler": "^4.0.
|
|
49
|
-
"@smithy/protocol-http": "^5.0
|
|
50
|
-
"@smithy/smithy-client": "^4.
|
|
51
|
-
"@smithy/types": "^4.
|
|
52
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/body-checksum-browser": "3.775.0",
|
|
24
|
+
"@aws-sdk/body-checksum-node": "3.775.0",
|
|
25
|
+
"@aws-sdk/core": "3.775.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.775.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.775.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
30
|
+
"@aws-sdk/middleware-sdk-glacier": "3.775.0",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "3.775.0",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
33
|
+
"@aws-sdk/types": "3.775.0",
|
|
34
|
+
"@aws-sdk/util-endpoints": "3.775.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "3.775.0",
|
|
37
|
+
"@smithy/config-resolver": "^4.1.0",
|
|
38
|
+
"@smithy/core": "^3.2.0",
|
|
39
|
+
"@smithy/fetch-http-handler": "^5.0.2",
|
|
40
|
+
"@smithy/hash-node": "^4.0.2",
|
|
41
|
+
"@smithy/invalid-dependency": "^4.0.2",
|
|
42
|
+
"@smithy/middleware-content-length": "^4.0.2",
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.1.0",
|
|
44
|
+
"@smithy/middleware-retry": "^4.1.0",
|
|
45
|
+
"@smithy/middleware-serde": "^4.0.3",
|
|
46
|
+
"@smithy/middleware-stack": "^4.0.2",
|
|
47
|
+
"@smithy/node-config-provider": "^4.0.2",
|
|
48
|
+
"@smithy/node-http-handler": "^4.0.4",
|
|
49
|
+
"@smithy/protocol-http": "^5.1.0",
|
|
50
|
+
"@smithy/smithy-client": "^4.2.0",
|
|
51
|
+
"@smithy/types": "^4.2.0",
|
|
52
|
+
"@smithy/url-parser": "^4.0.2",
|
|
53
53
|
"@smithy/util-base64": "^4.0.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
58
|
-
"@smithy/util-endpoints": "^3.0.
|
|
59
|
-
"@smithy/util-middleware": "^4.0.
|
|
60
|
-
"@smithy/util-retry": "^4.0.
|
|
61
|
-
"@smithy/util-stream": "^4.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.0.8",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.0.8",
|
|
58
|
+
"@smithy/util-endpoints": "^3.0.2",
|
|
59
|
+
"@smithy/util-middleware": "^4.0.2",
|
|
60
|
+
"@smithy/util-retry": "^4.0.2",
|
|
61
|
+
"@smithy/util-stream": "^4.2.0",
|
|
62
62
|
"@smithy/util-utf8": "^4.0.0",
|
|
63
|
-
"@smithy/util-waiter": "^4.0.
|
|
63
|
+
"@smithy/util-waiter": "^4.0.3",
|
|
64
64
|
"tslib": "^2.6.2"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|