@aws-sdk/client-storage-gateway 3.52.0 → 3.54.1
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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/StorageGatewayServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +48 -5
- package/dist-cjs/protocols/Aws_json1_1.js +619 -2040
- package/dist-es/index.js +1 -0
- package/dist-es/models/StorageGatewayServiceException.js +12 -0
- package/dist-es/models/models_0.js +41 -1
- package/dist-es/protocols/Aws_json1_1.js +1522 -2395
- package/dist-types/StorageGatewayClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/StorageGatewayServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +23 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/StorageGatewayClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/StorageGatewayServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -16
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { ActivateGatewayCommandInput, ActivateGatewayCommandOutput } from "./commands/ActivateGatewayCommand";
|
|
10
10
|
import { AddCacheCommandInput, AddCacheCommandOutput } from "./commands/AddCacheCommand";
|
|
11
11
|
import { AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput } from "./commands/AddTagsToResourceCommand";
|
|
@@ -118,7 +118,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
118
118
|
* A function that can calculate the length of a request body.
|
|
119
119
|
* @internal
|
|
120
120
|
*/
|
|
121
|
-
bodyLengthChecker?:
|
|
121
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
122
122
|
/**
|
|
123
123
|
* A function that converts a stream into an array of bytes.
|
|
124
124
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from StorageGateway service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class StorageGatewayServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { StorageGatewayServiceException as __BaseException } from "./StorageGatewayServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>A key-value pair that helps you manage, filter, and search for your resource. Allowed
|
|
4
5
|
* characters: letters, white space, and numbers, representable in UTF-8, and the following
|
|
@@ -202,35 +203,35 @@ export declare namespace StorageGatewayError {
|
|
|
202
203
|
* <p>An internal server error has occurred during the request. For more information, see the
|
|
203
204
|
* error and message fields.</p>
|
|
204
205
|
*/
|
|
205
|
-
export
|
|
206
|
-
name: "InternalServerError";
|
|
207
|
-
$fault: "server";
|
|
208
|
-
/**
|
|
209
|
-
* <p>A human-readable message describing the error that occurred.</p>
|
|
210
|
-
*/
|
|
211
|
-
message?: string;
|
|
206
|
+
export declare class InternalServerError extends __BaseException {
|
|
207
|
+
readonly name: "InternalServerError";
|
|
208
|
+
readonly $fault: "server";
|
|
212
209
|
/**
|
|
213
210
|
* <p>A <a>StorageGatewayError</a> that provides more information about the cause
|
|
214
211
|
* of the error.</p>
|
|
215
212
|
*/
|
|
216
213
|
error?: StorageGatewayError;
|
|
214
|
+
/**
|
|
215
|
+
* @internal
|
|
216
|
+
*/
|
|
217
|
+
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
217
218
|
}
|
|
218
219
|
/**
|
|
219
220
|
* <p>An exception occurred because an invalid gateway request was issued to the service. For
|
|
220
221
|
* more information, see the error and message fields.</p>
|
|
221
222
|
*/
|
|
222
|
-
export
|
|
223
|
-
name: "InvalidGatewayRequestException";
|
|
224
|
-
$fault: "client";
|
|
225
|
-
/**
|
|
226
|
-
* <p>A human-readable message describing the error that occurred.</p>
|
|
227
|
-
*/
|
|
228
|
-
message?: string;
|
|
223
|
+
export declare class InvalidGatewayRequestException extends __BaseException {
|
|
224
|
+
readonly name: "InvalidGatewayRequestException";
|
|
225
|
+
readonly $fault: "client";
|
|
229
226
|
/**
|
|
230
227
|
* <p>A <a>StorageGatewayError</a> that provides more detail about the cause of the
|
|
231
228
|
* error.</p>
|
|
232
229
|
*/
|
|
233
230
|
error?: StorageGatewayError;
|
|
231
|
+
/**
|
|
232
|
+
* @internal
|
|
233
|
+
*/
|
|
234
|
+
constructor(opts: __ExceptionOptionType<InvalidGatewayRequestException, __BaseException>);
|
|
234
235
|
}
|
|
235
236
|
export declare type ActiveDirectoryStatus = "ACCESS_DENIED" | "DETACHED" | "JOINED" | "JOINING" | "NETWORK_ERROR" | "TIMEOUT" | "UNKNOWN_ERROR";
|
|
236
237
|
export interface AddCacheInput {
|
|
@@ -1684,18 +1685,18 @@ export declare namespace CreateSnapshotOutput {
|
|
|
1684
1685
|
* <p>An internal server error has occurred because the service is unavailable. For more
|
|
1685
1686
|
* information, see the error and message fields.</p>
|
|
1686
1687
|
*/
|
|
1687
|
-
export
|
|
1688
|
-
name: "ServiceUnavailableError";
|
|
1689
|
-
$fault: "server";
|
|
1690
|
-
/**
|
|
1691
|
-
* <p>A human-readable message describing the error that occurred.</p>
|
|
1692
|
-
*/
|
|
1693
|
-
message?: string;
|
|
1688
|
+
export declare class ServiceUnavailableError extends __BaseException {
|
|
1689
|
+
readonly name: "ServiceUnavailableError";
|
|
1690
|
+
readonly $fault: "server";
|
|
1694
1691
|
/**
|
|
1695
1692
|
* <p>A <a>StorageGatewayError</a> that provides more information about the cause
|
|
1696
1693
|
* of the error.</p>
|
|
1697
1694
|
*/
|
|
1698
1695
|
error?: StorageGatewayError;
|
|
1696
|
+
/**
|
|
1697
|
+
* @internal
|
|
1698
|
+
*/
|
|
1699
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableError, __BaseException>);
|
|
1699
1700
|
}
|
|
1700
1701
|
export interface CreateSnapshotFromVolumeRecoveryPointInput {
|
|
1701
1702
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: StorageGatewayClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: StorageGatewayClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: StorageGatewayClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { ActivateGatewayCommandInput, ActivateGatewayCommandOutput } from "./commands/ActivateGatewayCommand";
|
|
10
10
|
import { AddCacheCommandInput, AddCacheCommandOutput } from "./commands/AddCacheCommand";
|
|
11
11
|
import { AddTagsToResourceCommandInput, AddTagsToResourceCommandOutput } from "./commands/AddTagsToResourceCommand";
|
|
@@ -106,7 +106,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
106
106
|
|
|
107
107
|
urlParser?: __UrlParser;
|
|
108
108
|
|
|
109
|
-
bodyLengthChecker?:
|
|
109
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
110
110
|
|
|
111
111
|
streamCollector?: __StreamCollector;
|
|
112
112
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class StorageGatewayServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { StorageGatewayServiceException as __BaseException } from "./StorageGatewayServiceException";
|
|
2
3
|
|
|
3
4
|
export interface Tag {
|
|
4
5
|
|
|
@@ -57,22 +58,22 @@ export declare namespace StorageGatewayError {
|
|
|
57
58
|
const filterSensitiveLog: (obj: StorageGatewayError) => any;
|
|
58
59
|
}
|
|
59
60
|
|
|
60
|
-
export
|
|
61
|
-
name: "InternalServerError";
|
|
62
|
-
$fault: "server";
|
|
63
|
-
|
|
64
|
-
message?: string;
|
|
61
|
+
export declare class InternalServerError extends __BaseException {
|
|
62
|
+
readonly name: "InternalServerError";
|
|
63
|
+
readonly $fault: "server";
|
|
65
64
|
|
|
66
65
|
error?: StorageGatewayError;
|
|
66
|
+
|
|
67
|
+
constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
|
|
67
68
|
}
|
|
68
69
|
|
|
69
|
-
export
|
|
70
|
-
name: "InvalidGatewayRequestException";
|
|
71
|
-
$fault: "client";
|
|
72
|
-
|
|
73
|
-
message?: string;
|
|
70
|
+
export declare class InvalidGatewayRequestException extends __BaseException {
|
|
71
|
+
readonly name: "InvalidGatewayRequestException";
|
|
72
|
+
readonly $fault: "client";
|
|
74
73
|
|
|
75
74
|
error?: StorageGatewayError;
|
|
75
|
+
|
|
76
|
+
constructor(opts: __ExceptionOptionType<InvalidGatewayRequestException, __BaseException>);
|
|
76
77
|
}
|
|
77
78
|
export declare type ActiveDirectoryStatus = "ACCESS_DENIED" | "DETACHED" | "JOINED" | "JOINING" | "NETWORK_ERROR" | "TIMEOUT" | "UNKNOWN_ERROR";
|
|
78
79
|
export interface AddCacheInput {
|
|
@@ -608,13 +609,13 @@ export declare namespace CreateSnapshotOutput {
|
|
|
608
609
|
const filterSensitiveLog: (obj: CreateSnapshotOutput) => any;
|
|
609
610
|
}
|
|
610
611
|
|
|
611
|
-
export
|
|
612
|
-
name: "ServiceUnavailableError";
|
|
613
|
-
$fault: "server";
|
|
614
|
-
|
|
615
|
-
message?: string;
|
|
612
|
+
export declare class ServiceUnavailableError extends __BaseException {
|
|
613
|
+
readonly name: "ServiceUnavailableError";
|
|
614
|
+
readonly $fault: "server";
|
|
616
615
|
|
|
617
616
|
error?: StorageGatewayError;
|
|
617
|
+
|
|
618
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableError, __BaseException>);
|
|
618
619
|
}
|
|
619
620
|
export interface CreateSnapshotFromVolumeRecoveryPointInput {
|
|
620
621
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: StorageGatewayClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: StorageGatewayClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: StorageGatewayClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-storage-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Storage Gateway Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.54.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|