@aws-sdk/client-s3-control 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/S3ControlClient.js +13 -19
- package/dist-types/S3ControlClient.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/S3ControlClient.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
|
@@ -296,27 +296,29 @@ var _S3ControlClient = class _S3ControlClient extends import_smithy_client.Clien
|
|
|
296
296
|
constructor(...[configuration]) {
|
|
297
297
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
298
298
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
299
|
-
const _config_2 = (0,
|
|
300
|
-
const _config_3 = (0,
|
|
301
|
-
const _config_4 = (0,
|
|
302
|
-
const _config_5 = (0,
|
|
303
|
-
const _config_6 = (0,
|
|
304
|
-
const _config_7 = (0,
|
|
299
|
+
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
300
|
+
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
301
|
+
const _config_4 = (0, import_config_resolver.resolveRegionConfig)(_config_3);
|
|
302
|
+
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
303
|
+
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
304
|
+
const _config_7 = (0, import_middleware_sdk_s3_control.resolveS3ControlConfig)(_config_6);
|
|
305
305
|
const _config_8 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_7);
|
|
306
306
|
const _config_9 = resolveRuntimeExtensions(_config_8, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
307
307
|
super(_config_9);
|
|
308
308
|
this.config = _config_9;
|
|
309
|
+
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
310
|
+
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
311
|
+
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
309
312
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
310
313
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
311
314
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
312
315
|
this.middlewareStack.use((0, import_middleware_sdk_s3_control.getHostPrefixDeduplicationPlugin)(this.config));
|
|
313
|
-
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
314
|
-
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
315
|
-
this.middlewareStack.use((0, import_middleware_content_length.getContentLengthPlugin)(this.config));
|
|
316
316
|
this.middlewareStack.use(
|
|
317
317
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
318
|
-
httpAuthSchemeParametersProvider:
|
|
319
|
-
identityProviderConfigProvider:
|
|
318
|
+
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultS3ControlHttpAuthSchemeParametersProvider,
|
|
319
|
+
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
320
|
+
"aws.auth#sigv4": config.credentials
|
|
321
|
+
})
|
|
320
322
|
})
|
|
321
323
|
);
|
|
322
324
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -329,14 +331,6 @@ var _S3ControlClient = class _S3ControlClient extends import_smithy_client.Clien
|
|
|
329
331
|
destroy() {
|
|
330
332
|
super.destroy();
|
|
331
333
|
}
|
|
332
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
333
|
-
return import_httpAuthSchemeProvider.defaultS3ControlHttpAuthSchemeParametersProvider;
|
|
334
|
-
}
|
|
335
|
-
getIdentityProviderConfigProvider() {
|
|
336
|
-
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
337
|
-
"aws.auth#sigv4": config.credentials
|
|
338
|
-
});
|
|
339
|
-
}
|
|
340
334
|
};
|
|
341
335
|
__name(_S3ControlClient, "S3ControlClient");
|
|
342
336
|
var S3ControlClient = _S3ControlClient;
|
|
@@ -18,38 +18,32 @@ export class S3ControlClient 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 =
|
|
26
|
-
const _config_7 =
|
|
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
|
+
const _config_7 = resolveS3ControlConfig(_config_6);
|
|
27
27
|
const _config_8 = resolveHttpAuthSchemeConfig(_config_7);
|
|
28
28
|
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
29
29
|
super(_config_9);
|
|
30
30
|
this.config = _config_9;
|
|
31
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
32
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
33
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
31
34
|
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
32
35
|
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
33
36
|
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
34
37
|
this.middlewareStack.use(getHostPrefixDeduplicationPlugin(this.config));
|
|
35
|
-
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
36
|
-
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
37
|
-
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
38
38
|
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
39
|
-
httpAuthSchemeParametersProvider:
|
|
40
|
-
identityProviderConfigProvider:
|
|
39
|
+
httpAuthSchemeParametersProvider: defaultS3ControlHttpAuthSchemeParametersProvider,
|
|
40
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
41
|
+
"aws.auth#sigv4": config.credentials,
|
|
42
|
+
}),
|
|
41
43
|
}));
|
|
42
44
|
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
43
45
|
}
|
|
44
46
|
destroy() {
|
|
45
47
|
super.destroy();
|
|
46
48
|
}
|
|
47
|
-
getDefaultHttpAuthSchemeParametersProvider() {
|
|
48
|
-
return defaultS3ControlHttpAuthSchemeParametersProvider;
|
|
49
|
-
}
|
|
50
|
-
getIdentityProviderConfigProvider() {
|
|
51
|
-
return async (config) => new DefaultIdentityProviderConfig({
|
|
52
|
-
"aws.auth#sigv4": config.credentials,
|
|
53
|
-
});
|
|
54
|
-
}
|
|
55
49
|
}
|
|
@@ -238,7 +238,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
238
238
|
/**
|
|
239
239
|
* @public
|
|
240
240
|
*/
|
|
241
|
-
export type S3ControlClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults &
|
|
241
|
+
export type S3ControlClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig<EndpointParameters> & S3ControlInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters;
|
|
242
242
|
/**
|
|
243
243
|
* @public
|
|
244
244
|
*
|
|
@@ -249,7 +249,7 @@ export interface S3ControlClientConfig extends S3ControlClientConfigType {
|
|
|
249
249
|
/**
|
|
250
250
|
* @public
|
|
251
251
|
*/
|
|
252
|
-
export type S3ControlClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig &
|
|
252
|
+
export type S3ControlClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig<EndpointParameters> & S3ControlResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters;
|
|
253
253
|
/**
|
|
254
254
|
* @public
|
|
255
255
|
*
|
|
@@ -273,6 +273,4 @@ export declare class S3ControlClient extends __Client<__HttpHandlerOptions, Serv
|
|
|
273
273
|
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
274
274
|
*/
|
|
275
275
|
destroy(): void;
|
|
276
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
277
|
-
private getIdentityProviderConfigProvider;
|
|
278
276
|
}
|
|
@@ -30,12 +30,12 @@ export declare const defaultS3ControlHttpAuthSchemeProvider: S3ControlHttpAuthSc
|
|
|
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?: S3ControlHttpAuthSchemeProvider;
|
|
@@ -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: S3ControlHttpAuthSchemeProvider;
|
|
@@ -30,14 +30,14 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
30
30
|
serviceId: string;
|
|
31
31
|
logger: import("@smithy/types").Logger;
|
|
32
32
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
33
35
|
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;
|
|
34
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
35
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
36
38
|
}) => import("@smithy/types").EndpointV2;
|
|
37
39
|
tls?: boolean | undefined;
|
|
38
40
|
useArnRegion?: boolean | import("@smithy/types").Provider<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").S3ControlHttpAuthSchemeProvider;
|
|
43
43
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -30,14 +30,14 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
30
30
|
serviceId: string;
|
|
31
31
|
logger: import("@smithy/types").Logger;
|
|
32
32
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
33
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
33
35
|
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;
|
|
34
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
35
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
36
38
|
}) => import("@smithy/types").EndpointV2;
|
|
37
39
|
tls?: boolean | undefined;
|
|
38
40
|
useArnRegion?: boolean | import("@smithy/types").Provider<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").S3ControlHttpAuthSchemeProvider;
|
|
43
43
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -29,14 +29,14 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
29
29
|
streamHasher: import("@smithy/types").StreamHasher<import("stream").Readable> | import("@smithy/types").StreamHasher<Blob>;
|
|
30
30
|
md5: import("@smithy/types").HashConstructor;
|
|
31
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
32
34
|
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;
|
|
33
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
34
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
35
37
|
}) => import("@smithy/types").EndpointV2;
|
|
36
38
|
tls?: boolean | undefined;
|
|
37
39
|
useArnRegion?: boolean | import("@smithy/types").Provider<boolean> | undefined;
|
|
38
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
39
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
40
40
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
41
41
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
42
42
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -643,12 +643,12 @@ export type S3ControlClientConfigType = Partial<
|
|
|
643
643
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
644
644
|
> &
|
|
645
645
|
ClientDefaults &
|
|
646
|
+
UserAgentInputConfig &
|
|
647
|
+
RetryInputConfig &
|
|
646
648
|
RegionInputConfig &
|
|
647
|
-
EndpointInputConfig<EndpointParameters> &
|
|
648
649
|
HostHeaderInputConfig &
|
|
650
|
+
EndpointInputConfig<EndpointParameters> &
|
|
649
651
|
S3ControlInputConfig &
|
|
650
|
-
UserAgentInputConfig &
|
|
651
|
-
RetryInputConfig &
|
|
652
652
|
HttpAuthSchemeInputConfig &
|
|
653
653
|
ClientInputEndpointParameters;
|
|
654
654
|
export interface S3ControlClientConfig extends S3ControlClientConfigType {}
|
|
@@ -656,12 +656,12 @@ export type S3ControlClientResolvedConfigType =
|
|
|
656
656
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
657
657
|
Required<ClientDefaults> &
|
|
658
658
|
RuntimeExtensionsConfig &
|
|
659
|
+
UserAgentResolvedConfig &
|
|
660
|
+
RetryResolvedConfig &
|
|
659
661
|
RegionResolvedConfig &
|
|
660
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
661
662
|
HostHeaderResolvedConfig &
|
|
663
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
662
664
|
S3ControlResolvedConfig &
|
|
663
|
-
UserAgentResolvedConfig &
|
|
664
|
-
RetryResolvedConfig &
|
|
665
665
|
HttpAuthSchemeResolvedConfig &
|
|
666
666
|
ClientResolvedEndpointParameters;
|
|
667
667
|
export interface S3ControlClientResolvedConfig
|
|
@@ -677,6 +677,4 @@ export declare class S3ControlClient extends __Client<
|
|
|
677
677
|
...[configuration]: __CheckOptionalClientConfig<S3ControlClientConfig>
|
|
678
678
|
);
|
|
679
679
|
destroy(): void;
|
|
680
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
681
|
-
private getIdentityProviderConfigProvider;
|
|
682
680
|
}
|
|
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
36
36
|
serviceId: string;
|
|
37
37
|
logger: import("@smithy/types").Logger;
|
|
38
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
40
|
+
retryStrategy?:
|
|
41
|
+
| import("@smithy/types").RetryStrategy
|
|
42
|
+
| import("@smithy/types").RetryStrategyV2
|
|
43
|
+
| undefined;
|
|
39
44
|
endpoint?:
|
|
40
45
|
| ((
|
|
41
46
|
| string
|
|
@@ -64,11 +69,6 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
64
69
|
| boolean
|
|
65
70
|
| import("@smithy/types").Provider<boolean>
|
|
66
71
|
| undefined;
|
|
67
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
68
|
-
retryStrategy?:
|
|
69
|
-
| import("@smithy/types").RetryStrategy
|
|
70
|
-
| import("@smithy/types").RetryStrategyV2
|
|
71
|
-
| undefined;
|
|
72
72
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
73
73
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
74
74
|
credentials?:
|
|
@@ -40,6 +40,11 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
40
40
|
serviceId: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
44
|
+
retryStrategy?:
|
|
45
|
+
| import("@smithy/types").RetryStrategy
|
|
46
|
+
| import("@smithy/types").RetryStrategyV2
|
|
47
|
+
| undefined;
|
|
43
48
|
endpoint?:
|
|
44
49
|
| ((
|
|
45
50
|
| string
|
|
@@ -68,11 +73,6 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
68
73
|
| boolean
|
|
69
74
|
| import("@smithy/types").Provider<boolean>
|
|
70
75
|
| undefined;
|
|
71
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
72
|
-
retryStrategy?:
|
|
73
|
-
| import("@smithy/types").RetryStrategy
|
|
74
|
-
| import("@smithy/types").RetryStrategyV2
|
|
75
|
-
| undefined;
|
|
76
76
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
77
77
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
78
78
|
credentials?:
|
|
@@ -40,6 +40,11 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
40
40
|
| import("@smithy/types").Provider<
|
|
41
41
|
import("@smithy/smithy-client").DefaultsMode
|
|
42
42
|
>;
|
|
43
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
44
|
+
retryStrategy?:
|
|
45
|
+
| import("@smithy/types").RetryStrategy
|
|
46
|
+
| import("@smithy/types").RetryStrategyV2
|
|
47
|
+
| undefined;
|
|
43
48
|
endpoint?:
|
|
44
49
|
| string
|
|
45
50
|
| import("@smithy/types").Endpoint
|
|
@@ -58,11 +63,6 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
58
63
|
| boolean
|
|
59
64
|
| import("@smithy/types").Provider<boolean>
|
|
60
65
|
| undefined;
|
|
61
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2
|
|
65
|
-
| undefined;
|
|
66
66
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
67
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
68
68
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Control 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-s3-control",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.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",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
39
39
|
"@aws-sdk/xml-builder": "3.609.0",
|
|
40
40
|
"@smithy/config-resolver": "^3.0.5",
|
|
41
|
-
"@smithy/core": "^2.3.
|
|
41
|
+
"@smithy/core": "^2.3.2",
|
|
42
42
|
"@smithy/fetch-http-handler": "^3.2.4",
|
|
43
43
|
"@smithy/hash-blob-browser": "^3.1.2",
|
|
44
44
|
"@smithy/hash-node": "^3.0.3",
|
|
@@ -48,20 +48,20 @@
|
|
|
48
48
|
"@smithy/middleware-apply-body-checksum": "^3.0.5",
|
|
49
49
|
"@smithy/middleware-content-length": "^3.0.5",
|
|
50
50
|
"@smithy/middleware-endpoint": "^3.1.0",
|
|
51
|
-
"@smithy/middleware-retry": "^3.0.
|
|
51
|
+
"@smithy/middleware-retry": "^3.0.14",
|
|
52
52
|
"@smithy/middleware-serde": "^3.0.3",
|
|
53
53
|
"@smithy/middleware-stack": "^3.0.3",
|
|
54
54
|
"@smithy/node-config-provider": "^3.1.4",
|
|
55
55
|
"@smithy/node-http-handler": "^3.1.4",
|
|
56
56
|
"@smithy/protocol-http": "^4.1.0",
|
|
57
|
-
"@smithy/smithy-client": "^3.1.
|
|
57
|
+
"@smithy/smithy-client": "^3.1.12",
|
|
58
58
|
"@smithy/types": "^3.3.0",
|
|
59
59
|
"@smithy/url-parser": "^3.0.3",
|
|
60
60
|
"@smithy/util-base64": "^3.0.0",
|
|
61
61
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
62
62
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
63
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
64
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
63
|
+
"@smithy/util-defaults-mode-browser": "^3.0.14",
|
|
64
|
+
"@smithy/util-defaults-mode-node": "^3.0.14",
|
|
65
65
|
"@smithy/util-endpoints": "^2.0.5",
|
|
66
66
|
"@smithy/util-middleware": "^3.0.3",
|
|
67
67
|
"@smithy/util-retry": "^3.0.3",
|