@aws-sdk/client-glacier 3.621.0 → 3.623.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/index.js +13 -19
- package/dist-es/GlacierClient.js +13 -19
- package/dist-types/GlacierClient.d.ts +2 -4
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
- 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/GlacierClient.d.ts +6 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
- package/package.json +10 -10
package/dist-cjs/index.js
CHANGED
|
@@ -191,26 +191,28 @@ var _GlacierClient = class _GlacierClient extends import_smithy_client.Client {
|
|
|
191
191
|
constructor(...[configuration]) {
|
|
192
192
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
193
193
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
194
|
-
const _config_2 = (0,
|
|
195
|
-
const _config_3 = (0,
|
|
196
|
-
const _config_4 = (0,
|
|
197
|
-
const _config_5 = (0,
|
|
198
|
-
const _config_6 = (0,
|
|
194
|
+
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
195
|
+
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
196
|
+
const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
|
|
197
|
+
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
198
|
+
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
199
199
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
200
200
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
201
201
|
super(_config_8);
|
|
202
202
|
this.config = _config_8;
|
|
203
|
-
this.middlewareStack.use((0, import_middleware_sdk_glacier.getGlacierPlugin)(this.config));
|
|
204
|
-
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
205
|
-
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
206
|
-
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
207
203
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
208
204
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
209
205
|
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
206
|
+
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
207
|
+
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
208
|
+
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
209
|
+
this.middlewareStack.use((0, import_middleware_sdk_glacier.getGlacierPlugin)(this.config));
|
|
210
210
|
this.middlewareStack.use(
|
|
211
211
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
212
|
-
httpAuthSchemeParametersProvider:
|
|
213
|
-
identityProviderConfigProvider:
|
|
212
|
+
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultGlacierHttpAuthSchemeParametersProvider,
|
|
213
|
+
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
214
|
+
"aws.auth#sigv4": config.credentials
|
|
215
|
+
})
|
|
214
216
|
})
|
|
215
217
|
);
|
|
216
218
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -223,14 +225,6 @@ var _GlacierClient = class _GlacierClient extends import_smithy_client.Client {
|
|
|
223
225
|
destroy() {
|
|
224
226
|
super.destroy();
|
|
225
227
|
}
|
|
226
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
227
|
-
return import_httpAuthSchemeProvider.defaultGlacierHttpAuthSchemeParametersProvider;
|
|
228
|
-
}
|
|
229
|
-
getIdentityProviderConfigProvider() {
|
|
230
|
-
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
231
|
-
"aws.auth#sigv4": config.credentials
|
|
232
|
-
});
|
|
233
|
-
}
|
|
234
228
|
};
|
|
235
229
|
__name(_GlacierClient, "GlacierClient");
|
|
236
230
|
var GlacierClient = _GlacierClient;
|
package/dist-es/GlacierClient.js
CHANGED
|
@@ -18,37 +18,31 @@ export class GlacierClient extends __Client {
|
|
|
18
18
|
constructor(...[configuration]) {
|
|
19
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
20
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
21
|
-
const _config_2 =
|
|
22
|
-
const _config_3 =
|
|
23
|
-
const _config_4 =
|
|
24
|
-
const _config_5 =
|
|
25
|
-
const _config_6 =
|
|
21
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
22
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
23
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
24
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
25
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
26
26
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
27
27
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
28
28
|
super(_config_8);
|
|
29
29
|
this.config = _config_8;
|
|
30
|
-
this.middlewareStack.use(getGlacierPlugin(this.config));
|
|
31
|
-
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
32
|
-
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
33
|
-
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
34
30
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
35
31
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
36
32
|
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
33
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
34
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
35
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
36
|
+
this.middlewareStack.use(getGlacierPlugin(this.config));
|
|
37
37
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
38
|
-
httpAuthSchemeParametersProvider:
|
|
39
|
-
identityProviderConfigProvider:
|
|
38
|
+
httpAuthSchemeParametersProvider: defaultGlacierHttpAuthSchemeParametersProvider,
|
|
39
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
40
|
+
"aws.auth#sigv4": config.credentials,
|
|
41
|
+
}),
|
|
40
42
|
}));
|
|
41
43
|
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
42
44
|
}
|
|
43
45
|
destroy() {
|
|
44
46
|
super.destroy();
|
|
45
47
|
}
|
|
46
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
47
|
-
return defaultGlacierHttpAuthSchemeParametersProvider;
|
|
48
|
-
}
|
|
49
|
-
getIdentityProviderConfigProvider() {
|
|
50
|
-
return async (config) => new DefaultIdentityProviderConfig({
|
|
51
|
-
"aws.auth#sigv4": config.credentials,
|
|
52
|
-
});
|
|
53
|
-
}
|
|
54
48
|
}
|
|
@@ -177,7 +177,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
177
177
|
/**
|
|
178
178
|
* @public
|
|
179
179
|
*/
|
|
180
|
-
export type GlacierClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults &
|
|
180
|
+
export type GlacierClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
181
181
|
/**
|
|
182
182
|
* @public
|
|
183
183
|
*
|
|
@@ -188,7 +188,7 @@ export interface GlacierClientConfig extends GlacierClientConfigType {
|
|
|
188
188
|
/**
|
|
189
189
|
* @public
|
|
190
190
|
*/
|
|
191
|
-
export type GlacierClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig &
|
|
191
|
+
export type GlacierClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
192
192
|
/**
|
|
193
193
|
* @public
|
|
194
194
|
*
|
|
@@ -249,6 +249,4 @@ export declare class GlacierClient extends __Client<__HttpHandlerOptions, Servic
|
|
|
249
249
|
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
250
250
|
*/
|
|
251
251
|
destroy(): void;
|
|
252
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
253
|
-
private getIdentityProviderConfigProvider;
|
|
254
252
|
}
|
|
@@ -30,12 +30,12 @@ export declare const defaultGlacierHttpAuthSchemeProvider: GlacierHttpAuthScheme
|
|
|
30
30
|
*/
|
|
31
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
34
34
|
* @internal
|
|
35
35
|
*/
|
|
36
36
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
39
39
|
* @internal
|
|
40
40
|
*/
|
|
41
41
|
httpAuthSchemeProvider?: GlacierHttpAuthSchemeProvider;
|
|
@@ -45,12 +45,12 @@ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
|
45
45
|
*/
|
|
46
46
|
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
47
47
|
/**
|
|
48
|
-
*
|
|
48
|
+
* Configuration of HttpAuthSchemes for a client which provides default identity providers and signers per auth scheme.
|
|
49
49
|
* @internal
|
|
50
50
|
*/
|
|
51
51
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* Configuration of an HttpAuthSchemeProvider for a client which resolves which HttpAuthScheme to use.
|
|
54
54
|
* @internal
|
|
55
55
|
*/
|
|
56
56
|
readonly httpAuthSchemeProvider: GlacierHttpAuthSchemeProvider;
|
|
@@ -32,13 +32,13 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
34
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
35
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
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;
|
|
36
38
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
39
|
logger?: import("@smithy/types").Logger | undefined;
|
|
38
40
|
}) => import("@smithy/types").EndpointV2;
|
|
39
41
|
tls?: boolean | undefined;
|
|
40
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
42
42
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
43
43
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlacierHttpAuthSchemeProvider;
|
|
44
44
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -32,13 +32,13 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
34
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
35
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
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;
|
|
36
38
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
39
|
logger?: import("@smithy/types").Logger | undefined;
|
|
38
40
|
}) => import("@smithy/types").EndpointV2;
|
|
39
41
|
tls?: boolean | undefined;
|
|
40
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
42
42
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
43
43
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlacierHttpAuthSchemeProvider;
|
|
44
44
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -31,13 +31,13 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
32
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
33
33
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
34
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
36
|
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> | undefined;
|
|
35
37
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
38
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
39
|
}) => import("@smithy/types").EndpointV2;
|
|
38
40
|
tls?: boolean | undefined;
|
|
39
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
41
41
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
42
42
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlacierHttpAuthSchemeProvider;
|
|
43
43
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -291,11 +291,11 @@ export type GlacierClientConfigType = Partial<
|
|
|
291
291
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
292
292
|
> &
|
|
293
293
|
ClientDefaults &
|
|
294
|
-
RegionInputConfig &
|
|
295
|
-
EndpointInputConfig<EndpointParameters> &
|
|
296
|
-
HostHeaderInputConfig &
|
|
297
294
|
UserAgentInputConfig &
|
|
298
295
|
RetryInputConfig &
|
|
296
|
+
RegionInputConfig &
|
|
297
|
+
HostHeaderInputConfig &
|
|
298
|
+
EndpointInputConfig<EndpointParameters> &
|
|
299
299
|
HttpAuthSchemeInputConfig &
|
|
300
300
|
ClientInputEndpointParameters;
|
|
301
301
|
export interface GlacierClientConfig extends GlacierClientConfigType {}
|
|
@@ -303,11 +303,11 @@ export type GlacierClientResolvedConfigType =
|
|
|
303
303
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
304
304
|
Required<ClientDefaults> &
|
|
305
305
|
RuntimeExtensionsConfig &
|
|
306
|
-
RegionResolvedConfig &
|
|
307
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
308
|
-
HostHeaderResolvedConfig &
|
|
309
306
|
UserAgentResolvedConfig &
|
|
310
307
|
RetryResolvedConfig &
|
|
308
|
+
RegionResolvedConfig &
|
|
309
|
+
HostHeaderResolvedConfig &
|
|
310
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
311
311
|
HttpAuthSchemeResolvedConfig &
|
|
312
312
|
ClientResolvedEndpointParameters;
|
|
313
313
|
export interface GlacierClientResolvedConfig
|
|
@@ -323,6 +323,4 @@ export declare class GlacierClient extends __Client<
|
|
|
323
323
|
...[configuration]: __CheckOptionalClientConfig<GlacierClientConfig>
|
|
324
324
|
);
|
|
325
325
|
destroy(): void;
|
|
326
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
327
|
-
private getIdentityProviderConfigProvider;
|
|
328
326
|
}
|
|
@@ -42,6 +42,11 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
42
42
|
logger: import("@smithy/types").Logger;
|
|
43
43
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
44
44
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
45
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
46
|
+
retryStrategy?:
|
|
47
|
+
| import("@smithy/types").RetryStrategy
|
|
48
|
+
| import("@smithy/types").RetryStrategyV2
|
|
49
|
+
| undefined;
|
|
45
50
|
endpoint?:
|
|
46
51
|
| ((
|
|
47
52
|
| string
|
|
@@ -66,11 +71,6 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
66
71
|
}
|
|
67
72
|
) => import("@smithy/types").EndpointV2;
|
|
68
73
|
tls?: boolean | undefined;
|
|
69
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
70
|
-
retryStrategy?:
|
|
71
|
-
| import("@smithy/types").RetryStrategy
|
|
72
|
-
| import("@smithy/types").RetryStrategyV2
|
|
73
|
-
| undefined;
|
|
74
74
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
75
75
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlacierHttpAuthSchemeProvider;
|
|
76
76
|
credentials?:
|
|
@@ -46,6 +46,11 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
46
46
|
logger: import("@smithy/types").Logger;
|
|
47
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
48
48
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
49
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
50
|
+
retryStrategy?:
|
|
51
|
+
| import("@smithy/types").RetryStrategy
|
|
52
|
+
| import("@smithy/types").RetryStrategyV2
|
|
53
|
+
| undefined;
|
|
49
54
|
endpoint?:
|
|
50
55
|
| ((
|
|
51
56
|
| string
|
|
@@ -70,11 +75,6 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
70
75
|
}
|
|
71
76
|
) => import("@smithy/types").EndpointV2;
|
|
72
77
|
tls?: boolean | undefined;
|
|
73
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
74
|
-
retryStrategy?:
|
|
75
|
-
| import("@smithy/types").RetryStrategy
|
|
76
|
-
| import("@smithy/types").RetryStrategyV2
|
|
77
|
-
| undefined;
|
|
78
78
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
79
79
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlacierHttpAuthSchemeProvider;
|
|
80
80
|
credentials?:
|
|
@@ -46,6 +46,11 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
46
46
|
import("@smithy/smithy-client").DefaultsMode
|
|
47
47
|
>;
|
|
48
48
|
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
49
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
50
|
+
retryStrategy?:
|
|
51
|
+
| import("@smithy/types").RetryStrategy
|
|
52
|
+
| import("@smithy/types").RetryStrategyV2
|
|
53
|
+
| undefined;
|
|
49
54
|
endpoint?:
|
|
50
55
|
| string
|
|
51
56
|
| import("@smithy/types").Endpoint
|
|
@@ -60,11 +65,6 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
60
65
|
}
|
|
61
66
|
) => import("@smithy/types").EndpointV2;
|
|
62
67
|
tls?: boolean | undefined;
|
|
63
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2
|
|
67
|
-
| undefined;
|
|
68
68
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
69
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").GlacierHttpAuthSchemeProvider;
|
|
70
70
|
credentials?:
|
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.623.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",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/body-checksum-browser": "3.620.0",
|
|
24
24
|
"@aws-sdk/body-checksum-node": "3.620.0",
|
|
25
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
27
|
-
"@aws-sdk/core": "3.
|
|
28
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/client-sso-oidc": "3.623.0",
|
|
26
|
+
"@aws-sdk/client-sts": "3.623.0",
|
|
27
|
+
"@aws-sdk/core": "3.623.0",
|
|
28
|
+
"@aws-sdk/credential-provider-node": "3.623.0",
|
|
29
29
|
"@aws-sdk/middleware-host-header": "3.620.0",
|
|
30
30
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
31
31
|
"@aws-sdk/middleware-recursion-detection": "3.620.0",
|
|
@@ -37,26 +37,26 @@
|
|
|
37
37
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
38
38
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
39
39
|
"@smithy/config-resolver": "^3.0.5",
|
|
40
|
-
"@smithy/core": "^2.3.
|
|
40
|
+
"@smithy/core": "^2.3.2",
|
|
41
41
|
"@smithy/fetch-http-handler": "^3.2.4",
|
|
42
42
|
"@smithy/hash-node": "^3.0.3",
|
|
43
43
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
44
44
|
"@smithy/middleware-content-length": "^3.0.5",
|
|
45
45
|
"@smithy/middleware-endpoint": "^3.1.0",
|
|
46
|
-
"@smithy/middleware-retry": "^3.0.
|
|
46
|
+
"@smithy/middleware-retry": "^3.0.14",
|
|
47
47
|
"@smithy/middleware-serde": "^3.0.3",
|
|
48
48
|
"@smithy/middleware-stack": "^3.0.3",
|
|
49
49
|
"@smithy/node-config-provider": "^3.1.4",
|
|
50
50
|
"@smithy/node-http-handler": "^3.1.4",
|
|
51
51
|
"@smithy/protocol-http": "^4.1.0",
|
|
52
|
-
"@smithy/smithy-client": "^3.1.
|
|
52
|
+
"@smithy/smithy-client": "^3.1.12",
|
|
53
53
|
"@smithy/types": "^3.3.0",
|
|
54
54
|
"@smithy/url-parser": "^3.0.3",
|
|
55
55
|
"@smithy/util-base64": "^3.0.0",
|
|
56
56
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
57
57
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
58
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
59
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
58
|
+
"@smithy/util-defaults-mode-browser": "^3.0.14",
|
|
59
|
+
"@smithy/util-defaults-mode-node": "^3.0.14",
|
|
60
60
|
"@smithy/util-endpoints": "^2.0.5",
|
|
61
61
|
"@smithy/util-middleware": "^3.0.3",
|
|
62
62
|
"@smithy/util-retry": "^3.0.3",
|