@aws-sdk/client-transfer 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 +31 -0
- package/dist-cjs/index.js +4 -0
- package/dist-cjs/models/TransferServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +141 -3
- package/dist-cjs/protocols/Aws_json1_1.js +360 -1302
- package/dist-cjs/waiters/index.js +5 -0
- package/dist-cjs/waiters/waitForServerOffline.js +45 -0
- package/dist-cjs/waiters/waitForServerOnline.js +45 -0
- package/dist-es/index.js +2 -0
- package/dist-es/models/TransferServiceException.js +12 -0
- package/dist-es/models/models_0.js +130 -1
- package/dist-es/protocols/Aws_json1_1.js +771 -1418
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForServerOffline.js +60 -0
- package/dist-es/waiters/waitForServerOnline.js +60 -0
- package/dist-types/TransferClient.d.ts +2 -2
- package/dist-types/index.d.ts +2 -0
- package/dist-types/models/TransferServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +227 -77
- 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/TransferClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +2 -0
- package/dist-types/ts3.4/models/TransferServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +69 -29
- 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/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForServerOffline.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForServerOnline.d.ts +7 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForServerOffline.d.ts +14 -0
- package/dist-types/waiters/waitForServerOnline.d.ts +14 -0
- package/package.json +28 -27
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: TransferClientConfig) => {
|
|
|
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 { CreateAccessCommandInput, CreateAccessCommandOutput } from "./commands/CreateAccessCommand";
|
|
10
10
|
import { CreateServerCommandInput, CreateServerCommandOutput } from "./commands/CreateServerCommand";
|
|
11
11
|
import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
|
|
@@ -48,7 +48,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
48
48
|
|
|
49
49
|
urlParser?: __UrlParser;
|
|
50
50
|
|
|
51
|
-
bodyLengthChecker?:
|
|
51
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
52
52
|
|
|
53
53
|
streamCollector?: __StreamCollector;
|
|
54
54
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class TransferServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,15 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { TransferServiceException as __BaseException } from "./TransferServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
|
|
9
|
-
export
|
|
10
|
-
name: "ConflictException";
|
|
11
|
-
$fault: "client";
|
|
12
|
+
export declare class ConflictException extends __BaseException {
|
|
13
|
+
readonly name: "ConflictException";
|
|
14
|
+
readonly $fault: "client";
|
|
12
15
|
Message: string | undefined;
|
|
16
|
+
|
|
17
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
13
18
|
}
|
|
14
19
|
|
|
15
20
|
export interface EfsFileLocation {
|
|
@@ -56,6 +61,8 @@ export interface CopyStepDetails {
|
|
|
56
61
|
DestinationFileLocation?: InputFileLocation;
|
|
57
62
|
|
|
58
63
|
OverwriteExisting?: OverwriteExisting | string;
|
|
64
|
+
|
|
65
|
+
SourceFileLocation?: string;
|
|
59
66
|
}
|
|
60
67
|
export declare namespace CopyStepDetails {
|
|
61
68
|
|
|
@@ -122,38 +129,48 @@ export declare namespace CreateAccessResponse {
|
|
|
122
129
|
const filterSensitiveLog: (obj: CreateAccessResponse) => any;
|
|
123
130
|
}
|
|
124
131
|
|
|
125
|
-
export
|
|
126
|
-
name: "InternalServiceError";
|
|
127
|
-
$fault: "server";
|
|
132
|
+
export declare class InternalServiceError extends __BaseException {
|
|
133
|
+
readonly name: "InternalServiceError";
|
|
134
|
+
readonly $fault: "server";
|
|
128
135
|
Message: string | undefined;
|
|
136
|
+
|
|
137
|
+
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
129
138
|
}
|
|
130
139
|
|
|
131
|
-
export
|
|
132
|
-
name: "InvalidRequestException";
|
|
133
|
-
$fault: "client";
|
|
140
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
141
|
+
readonly name: "InvalidRequestException";
|
|
142
|
+
readonly $fault: "client";
|
|
134
143
|
Message: string | undefined;
|
|
144
|
+
|
|
145
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
135
146
|
}
|
|
136
147
|
|
|
137
|
-
export
|
|
138
|
-
name: "ResourceExistsException";
|
|
139
|
-
$fault: "client";
|
|
148
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
149
|
+
readonly name: "ResourceExistsException";
|
|
150
|
+
readonly $fault: "client";
|
|
140
151
|
Message: string | undefined;
|
|
141
152
|
Resource: string | undefined;
|
|
142
153
|
ResourceType: string | undefined;
|
|
154
|
+
|
|
155
|
+
constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
|
|
143
156
|
}
|
|
144
157
|
|
|
145
|
-
export
|
|
146
|
-
name: "ResourceNotFoundException";
|
|
147
|
-
$fault: "client";
|
|
158
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
159
|
+
readonly name: "ResourceNotFoundException";
|
|
160
|
+
readonly $fault: "client";
|
|
148
161
|
Message: string | undefined;
|
|
149
162
|
Resource: string | undefined;
|
|
150
163
|
ResourceType: string | undefined;
|
|
164
|
+
|
|
165
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
151
166
|
}
|
|
152
167
|
|
|
153
|
-
export
|
|
154
|
-
name: "ServiceUnavailableException";
|
|
155
|
-
$fault: "server";
|
|
168
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
169
|
+
readonly name: "ServiceUnavailableException";
|
|
170
|
+
readonly $fault: "server";
|
|
156
171
|
Message?: string;
|
|
172
|
+
|
|
173
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
157
174
|
}
|
|
158
175
|
export declare enum Domain {
|
|
159
176
|
EFS = "EFS",
|
|
@@ -271,7 +288,9 @@ export interface CreateServerRequest {
|
|
|
271
288
|
IdentityProviderType?: IdentityProviderType | string;
|
|
272
289
|
|
|
273
290
|
LoggingRole?: string;
|
|
291
|
+
|
|
274
292
|
PostAuthenticationLoginBanner?: string;
|
|
293
|
+
|
|
275
294
|
PreAuthenticationLoginBanner?: string;
|
|
276
295
|
|
|
277
296
|
Protocols?: (Protocol | string)[];
|
|
@@ -297,10 +316,12 @@ export declare namespace CreateServerResponse {
|
|
|
297
316
|
const filterSensitiveLog: (obj: CreateServerResponse) => any;
|
|
298
317
|
}
|
|
299
318
|
|
|
300
|
-
export
|
|
301
|
-
name: "ThrottlingException";
|
|
302
|
-
$fault: "client";
|
|
319
|
+
export declare class ThrottlingException extends __BaseException {
|
|
320
|
+
readonly name: "ThrottlingException";
|
|
321
|
+
readonly $fault: "client";
|
|
303
322
|
RetryAfterSeconds?: string;
|
|
323
|
+
|
|
324
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
304
325
|
}
|
|
305
326
|
export interface CreateUserRequest {
|
|
306
327
|
|
|
@@ -346,6 +367,8 @@ export interface CustomStepDetails {
|
|
|
346
367
|
Target?: string;
|
|
347
368
|
|
|
348
369
|
TimeoutSeconds?: number;
|
|
370
|
+
|
|
371
|
+
SourceFileLocation?: string;
|
|
349
372
|
}
|
|
350
373
|
export declare namespace CustomStepDetails {
|
|
351
374
|
|
|
@@ -355,6 +378,8 @@ export declare namespace CustomStepDetails {
|
|
|
355
378
|
export interface DeleteStepDetails {
|
|
356
379
|
|
|
357
380
|
Name?: string;
|
|
381
|
+
|
|
382
|
+
SourceFileLocation?: string;
|
|
358
383
|
}
|
|
359
384
|
export declare namespace DeleteStepDetails {
|
|
360
385
|
|
|
@@ -377,6 +402,8 @@ export interface TagStepDetails {
|
|
|
377
402
|
Name?: string;
|
|
378
403
|
|
|
379
404
|
Tags?: S3Tag[];
|
|
405
|
+
|
|
406
|
+
SourceFileLocation?: string;
|
|
380
407
|
}
|
|
381
408
|
export declare namespace TagStepDetails {
|
|
382
409
|
|
|
@@ -558,7 +585,14 @@ export declare namespace LoggingConfiguration {
|
|
|
558
585
|
const filterSensitiveLog: (obj: LoggingConfiguration) => any;
|
|
559
586
|
}
|
|
560
587
|
export declare enum ExecutionErrorType {
|
|
561
|
-
|
|
588
|
+
ALREADY_EXISTS = "ALREADY_EXISTS",
|
|
589
|
+
BAD_REQUEST = "BAD_REQUEST",
|
|
590
|
+
CUSTOM_STEP_FAILED = "CUSTOM_STEP_FAILED",
|
|
591
|
+
INTERNAL_SERVER_ERROR = "INTERNAL_SERVER_ERROR",
|
|
592
|
+
NOT_FOUND = "NOT_FOUND",
|
|
593
|
+
PERMISSION_DENIED = "PERMISSION_DENIED",
|
|
594
|
+
THROTTLED = "THROTTLED",
|
|
595
|
+
TIMEOUT = "TIMEOUT"
|
|
562
596
|
}
|
|
563
597
|
|
|
564
598
|
export interface ExecutionError {
|
|
@@ -695,7 +729,9 @@ export interface DescribedServer {
|
|
|
695
729
|
IdentityProviderType?: IdentityProviderType | string;
|
|
696
730
|
|
|
697
731
|
LoggingRole?: string;
|
|
732
|
+
|
|
698
733
|
PostAuthenticationLoginBanner?: string;
|
|
734
|
+
|
|
699
735
|
PreAuthenticationLoginBanner?: string;
|
|
700
736
|
|
|
701
737
|
Protocols?: (Protocol | string)[];
|
|
@@ -889,10 +925,12 @@ export declare namespace ImportSshPublicKeyResponse {
|
|
|
889
925
|
const filterSensitiveLog: (obj: ImportSshPublicKeyResponse) => any;
|
|
890
926
|
}
|
|
891
927
|
|
|
892
|
-
export
|
|
893
|
-
name: "InvalidNextTokenException";
|
|
894
|
-
$fault: "client";
|
|
928
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
929
|
+
readonly name: "InvalidNextTokenException";
|
|
930
|
+
readonly $fault: "client";
|
|
895
931
|
Message: string | undefined;
|
|
932
|
+
|
|
933
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
896
934
|
}
|
|
897
935
|
export interface ListAccessesRequest {
|
|
898
936
|
|
|
@@ -1268,7 +1306,9 @@ export interface UpdateServerRequest {
|
|
|
1268
1306
|
IdentityProviderDetails?: IdentityProviderDetails;
|
|
1269
1307
|
|
|
1270
1308
|
LoggingRole?: string;
|
|
1309
|
+
|
|
1271
1310
|
PostAuthenticationLoginBanner?: string;
|
|
1311
|
+
|
|
1272
1312
|
PreAuthenticationLoginBanner?: string;
|
|
1273
1313
|
|
|
1274
1314
|
Protocols?: (Protocol | string)[];
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: TransferClientConfig) => {
|
|
|
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: TransferClientConfig) => {
|
|
|
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: TransferClientConfig) => {
|
|
|
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;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { DescribeServerCommandInput } from "../commands/DescribeServerCommand";
|
|
3
|
+
import { TransferClient } from "../TransferClient";
|
|
4
|
+
|
|
5
|
+
export declare const waitForServerOffline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
|
|
6
|
+
|
|
7
|
+
export declare const waitUntilServerOffline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { DescribeServerCommandInput } from "../commands/DescribeServerCommand";
|
|
3
|
+
import { TransferClient } from "../TransferClient";
|
|
4
|
+
|
|
5
|
+
export declare const waitForServerOnline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
|
|
6
|
+
|
|
7
|
+
export declare const waitUntilServerOnline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { DescribeServerCommandInput } from "../commands/DescribeServerCommand";
|
|
3
|
+
import { TransferClient } from "../TransferClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilServerOffline instead. waitForServerOffline does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForServerOffline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeServerCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilServerOffline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@aws-sdk/util-waiter";
|
|
2
|
+
import { DescribeServerCommandInput } from "../commands/DescribeServerCommand";
|
|
3
|
+
import { TransferClient } from "../TransferClient";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @deprecated Use waitUntilServerOnline instead. waitForServerOnline does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForServerOnline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to DescribeServerCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilServerOnline: (params: WaiterConfiguration<TransferClient>, input: DescribeServerCommandInput) => Promise<WaiterResult>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-transfer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Transfer 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,36 +18,37 @@
|
|
|
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
|
+
"@aws-sdk/util-waiter": "3.54.1",
|
|
51
52
|
"tslib": "^2.3.0"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|