@aws-sdk/client-acm-pca 3.975.0 → 3.978.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 +49 -39
- package/dist-es/ACMPCA.js +17 -1
- package/dist-types/ACMPCA.d.ts +41 -1
- package/dist-types/ts3.4/ACMPCA.d.ts +55 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -1358,35 +1358,6 @@ class UpdateCertificateAuthorityCommand extends smithyClient.Command
|
|
|
1358
1358
|
.build() {
|
|
1359
1359
|
}
|
|
1360
1360
|
|
|
1361
|
-
const commands = {
|
|
1362
|
-
CreateCertificateAuthorityCommand,
|
|
1363
|
-
CreateCertificateAuthorityAuditReportCommand,
|
|
1364
|
-
CreatePermissionCommand,
|
|
1365
|
-
DeleteCertificateAuthorityCommand,
|
|
1366
|
-
DeletePermissionCommand,
|
|
1367
|
-
DeletePolicyCommand,
|
|
1368
|
-
DescribeCertificateAuthorityCommand,
|
|
1369
|
-
DescribeCertificateAuthorityAuditReportCommand,
|
|
1370
|
-
GetCertificateCommand,
|
|
1371
|
-
GetCertificateAuthorityCertificateCommand,
|
|
1372
|
-
GetCertificateAuthorityCsrCommand,
|
|
1373
|
-
GetPolicyCommand,
|
|
1374
|
-
ImportCertificateAuthorityCertificateCommand,
|
|
1375
|
-
IssueCertificateCommand,
|
|
1376
|
-
ListCertificateAuthoritiesCommand,
|
|
1377
|
-
ListPermissionsCommand,
|
|
1378
|
-
ListTagsCommand,
|
|
1379
|
-
PutPolicyCommand,
|
|
1380
|
-
RestoreCertificateAuthorityCommand,
|
|
1381
|
-
RevokeCertificateCommand,
|
|
1382
|
-
TagCertificateAuthorityCommand,
|
|
1383
|
-
UntagCertificateAuthorityCommand,
|
|
1384
|
-
UpdateCertificateAuthorityCommand,
|
|
1385
|
-
};
|
|
1386
|
-
class ACMPCA extends ACMPCAClient {
|
|
1387
|
-
}
|
|
1388
|
-
smithyClient.createAggregatedClient(commands, ACMPCA);
|
|
1389
|
-
|
|
1390
1361
|
const paginateListCertificateAuthorities = core.createPaginator(ACMPCAClient, ListCertificateAuthoritiesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1391
1362
|
|
|
1392
1363
|
const paginateListPermissions = core.createPaginator(ACMPCAClient, ListPermissionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1438,7 +1409,7 @@ const waitUntilAuditReportCreated = async (params, input) => {
|
|
|
1438
1409
|
const checkState$1 = async (client, input) => {
|
|
1439
1410
|
let reason;
|
|
1440
1411
|
try {
|
|
1441
|
-
let result = await client.send(new
|
|
1412
|
+
let result = await client.send(new GetCertificateAuthorityCsrCommand(input));
|
|
1442
1413
|
reason = result;
|
|
1443
1414
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
1444
1415
|
}
|
|
@@ -1453,12 +1424,12 @@ const checkState$1 = async (client, input) => {
|
|
|
1453
1424
|
}
|
|
1454
1425
|
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
1455
1426
|
};
|
|
1456
|
-
const
|
|
1457
|
-
const serviceDefaults = { minDelay:
|
|
1427
|
+
const waitForCertificateAuthorityCSRCreated = async (params, input) => {
|
|
1428
|
+
const serviceDefaults = { minDelay: 3, maxDelay: 180 };
|
|
1458
1429
|
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1459
1430
|
};
|
|
1460
|
-
const
|
|
1461
|
-
const serviceDefaults = { minDelay:
|
|
1431
|
+
const waitUntilCertificateAuthorityCSRCreated = async (params, input) => {
|
|
1432
|
+
const serviceDefaults = { minDelay: 3, maxDelay: 180 };
|
|
1462
1433
|
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState$1);
|
|
1463
1434
|
return utilWaiter.checkExceptions(result);
|
|
1464
1435
|
};
|
|
@@ -1466,7 +1437,7 @@ const waitUntilCertificateIssued = async (params, input) => {
|
|
|
1466
1437
|
const checkState = async (client, input) => {
|
|
1467
1438
|
let reason;
|
|
1468
1439
|
try {
|
|
1469
|
-
let result = await client.send(new
|
|
1440
|
+
let result = await client.send(new GetCertificateCommand(input));
|
|
1470
1441
|
reason = result;
|
|
1471
1442
|
return { state: utilWaiter.WaiterState.SUCCESS, reason };
|
|
1472
1443
|
}
|
|
@@ -1481,16 +1452,55 @@ const checkState = async (client, input) => {
|
|
|
1481
1452
|
}
|
|
1482
1453
|
return { state: utilWaiter.WaiterState.RETRY, reason };
|
|
1483
1454
|
};
|
|
1484
|
-
const
|
|
1485
|
-
const serviceDefaults = { minDelay:
|
|
1455
|
+
const waitForCertificateIssued = async (params, input) => {
|
|
1456
|
+
const serviceDefaults = { minDelay: 1, maxDelay: 60 };
|
|
1486
1457
|
return utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1487
1458
|
};
|
|
1488
|
-
const
|
|
1489
|
-
const serviceDefaults = { minDelay:
|
|
1459
|
+
const waitUntilCertificateIssued = async (params, input) => {
|
|
1460
|
+
const serviceDefaults = { minDelay: 1, maxDelay: 60 };
|
|
1490
1461
|
const result = await utilWaiter.createWaiter({ ...serviceDefaults, ...params }, input, checkState);
|
|
1491
1462
|
return utilWaiter.checkExceptions(result);
|
|
1492
1463
|
};
|
|
1493
1464
|
|
|
1465
|
+
const commands = {
|
|
1466
|
+
CreateCertificateAuthorityCommand,
|
|
1467
|
+
CreateCertificateAuthorityAuditReportCommand,
|
|
1468
|
+
CreatePermissionCommand,
|
|
1469
|
+
DeleteCertificateAuthorityCommand,
|
|
1470
|
+
DeletePermissionCommand,
|
|
1471
|
+
DeletePolicyCommand,
|
|
1472
|
+
DescribeCertificateAuthorityCommand,
|
|
1473
|
+
DescribeCertificateAuthorityAuditReportCommand,
|
|
1474
|
+
GetCertificateCommand,
|
|
1475
|
+
GetCertificateAuthorityCertificateCommand,
|
|
1476
|
+
GetCertificateAuthorityCsrCommand,
|
|
1477
|
+
GetPolicyCommand,
|
|
1478
|
+
ImportCertificateAuthorityCertificateCommand,
|
|
1479
|
+
IssueCertificateCommand,
|
|
1480
|
+
ListCertificateAuthoritiesCommand,
|
|
1481
|
+
ListPermissionsCommand,
|
|
1482
|
+
ListTagsCommand,
|
|
1483
|
+
PutPolicyCommand,
|
|
1484
|
+
RestoreCertificateAuthorityCommand,
|
|
1485
|
+
RevokeCertificateCommand,
|
|
1486
|
+
TagCertificateAuthorityCommand,
|
|
1487
|
+
UntagCertificateAuthorityCommand,
|
|
1488
|
+
UpdateCertificateAuthorityCommand,
|
|
1489
|
+
};
|
|
1490
|
+
const paginators = {
|
|
1491
|
+
paginateListCertificateAuthorities,
|
|
1492
|
+
paginateListPermissions,
|
|
1493
|
+
paginateListTags,
|
|
1494
|
+
};
|
|
1495
|
+
const waiters = {
|
|
1496
|
+
waitUntilAuditReportCreated,
|
|
1497
|
+
waitUntilCertificateIssued,
|
|
1498
|
+
waitUntilCertificateAuthorityCSRCreated,
|
|
1499
|
+
};
|
|
1500
|
+
class ACMPCA extends ACMPCAClient {
|
|
1501
|
+
}
|
|
1502
|
+
smithyClient.createAggregatedClient(commands, ACMPCA, { paginators, waiters });
|
|
1503
|
+
|
|
1494
1504
|
const AccessMethodType = {
|
|
1495
1505
|
CA_REPOSITORY: "CA_REPOSITORY",
|
|
1496
1506
|
RESOURCE_PKI_MANIFEST: "RESOURCE_PKI_MANIFEST",
|
package/dist-es/ACMPCA.js
CHANGED
|
@@ -23,6 +23,12 @@ import { RevokeCertificateCommand, } from "./commands/RevokeCertificateCommand";
|
|
|
23
23
|
import { TagCertificateAuthorityCommand, } from "./commands/TagCertificateAuthorityCommand";
|
|
24
24
|
import { UntagCertificateAuthorityCommand, } from "./commands/UntagCertificateAuthorityCommand";
|
|
25
25
|
import { UpdateCertificateAuthorityCommand, } from "./commands/UpdateCertificateAuthorityCommand";
|
|
26
|
+
import { paginateListCertificateAuthorities } from "./pagination/ListCertificateAuthoritiesPaginator";
|
|
27
|
+
import { paginateListPermissions } from "./pagination/ListPermissionsPaginator";
|
|
28
|
+
import { paginateListTags } from "./pagination/ListTagsPaginator";
|
|
29
|
+
import { waitUntilAuditReportCreated } from "./waiters/waitForAuditReportCreated";
|
|
30
|
+
import { waitUntilCertificateAuthorityCSRCreated } from "./waiters/waitForCertificateAuthorityCSRCreated";
|
|
31
|
+
import { waitUntilCertificateIssued } from "./waiters/waitForCertificateIssued";
|
|
26
32
|
const commands = {
|
|
27
33
|
CreateCertificateAuthorityCommand,
|
|
28
34
|
CreateCertificateAuthorityAuditReportCommand,
|
|
@@ -48,6 +54,16 @@ const commands = {
|
|
|
48
54
|
UntagCertificateAuthorityCommand,
|
|
49
55
|
UpdateCertificateAuthorityCommand,
|
|
50
56
|
};
|
|
57
|
+
const paginators = {
|
|
58
|
+
paginateListCertificateAuthorities,
|
|
59
|
+
paginateListPermissions,
|
|
60
|
+
paginateListTags,
|
|
61
|
+
};
|
|
62
|
+
const waiters = {
|
|
63
|
+
waitUntilAuditReportCreated,
|
|
64
|
+
waitUntilCertificateIssued,
|
|
65
|
+
waitUntilCertificateAuthorityCSRCreated,
|
|
66
|
+
};
|
|
51
67
|
export class ACMPCA extends ACMPCAClient {
|
|
52
68
|
}
|
|
53
|
-
createAggregatedClient(commands, ACMPCA);
|
|
69
|
+
createAggregatedClient(commands, ACMPCA, { paginators, waiters });
|
package/dist-types/ACMPCA.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { ACMPCAClient } from "./ACMPCAClient";
|
|
3
4
|
import { CreateCertificateAuthorityAuditReportCommandInput, CreateCertificateAuthorityAuditReportCommandOutput } from "./commands/CreateCertificateAuthorityAuditReportCommand";
|
|
4
5
|
import { CreateCertificateAuthorityCommandInput, CreateCertificateAuthorityCommandOutput } from "./commands/CreateCertificateAuthorityCommand";
|
|
@@ -163,6 +164,45 @@ export interface ACMPCA {
|
|
|
163
164
|
updateCertificateAuthority(args: UpdateCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCertificateAuthorityCommandOutput>;
|
|
164
165
|
updateCertificateAuthority(args: UpdateCertificateAuthorityCommandInput, cb: (err: any, data?: UpdateCertificateAuthorityCommandOutput) => void): void;
|
|
165
166
|
updateCertificateAuthority(args: UpdateCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCertificateAuthorityCommandOutput) => void): void;
|
|
167
|
+
/**
|
|
168
|
+
* @see {@link ListCertificateAuthoritiesCommand}
|
|
169
|
+
* @param args - command input.
|
|
170
|
+
* @param paginationConfig - optional pagination config.
|
|
171
|
+
* @returns AsyncIterable of {@link ListCertificateAuthoritiesCommandOutput}.
|
|
172
|
+
*/
|
|
173
|
+
paginateListCertificateAuthorities(args?: ListCertificateAuthoritiesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCertificateAuthoritiesCommandOutput>;
|
|
174
|
+
/**
|
|
175
|
+
* @see {@link ListPermissionsCommand}
|
|
176
|
+
* @param args - command input.
|
|
177
|
+
* @param paginationConfig - optional pagination config.
|
|
178
|
+
* @returns AsyncIterable of {@link ListPermissionsCommandOutput}.
|
|
179
|
+
*/
|
|
180
|
+
paginateListPermissions(args: ListPermissionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPermissionsCommandOutput>;
|
|
181
|
+
/**
|
|
182
|
+
* @see {@link ListTagsCommand}
|
|
183
|
+
* @param args - command input.
|
|
184
|
+
* @param paginationConfig - optional pagination config.
|
|
185
|
+
* @returns AsyncIterable of {@link ListTagsCommandOutput}.
|
|
186
|
+
*/
|
|
187
|
+
paginateListTags(args: ListTagsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTagsCommandOutput>;
|
|
188
|
+
/**
|
|
189
|
+
* @see {@link DescribeCertificateAuthorityAuditReportCommand}
|
|
190
|
+
* @param args - command input.
|
|
191
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
192
|
+
*/
|
|
193
|
+
waitUntilAuditReportCreated(args: DescribeCertificateAuthorityAuditReportCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ACMPCA>, "client">): Promise<WaiterResult>;
|
|
194
|
+
/**
|
|
195
|
+
* @see {@link GetCertificateCommand}
|
|
196
|
+
* @param args - command input.
|
|
197
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
198
|
+
*/
|
|
199
|
+
waitUntilCertificateIssued(args: GetCertificateCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ACMPCA>, "client">): Promise<WaiterResult>;
|
|
200
|
+
/**
|
|
201
|
+
* @see {@link GetCertificateAuthorityCsrCommand}
|
|
202
|
+
* @param args - command input.
|
|
203
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
204
|
+
*/
|
|
205
|
+
waitUntilCertificateAuthorityCSRCreated(args: GetCertificateAuthorityCsrCommandInput, waiterConfig: number | Omit<WaiterConfiguration<ACMPCA>, "client">): Promise<WaiterResult>;
|
|
166
206
|
}
|
|
167
207
|
/**
|
|
168
208
|
* <p>This is the <i>Amazon Web Services Private Certificate Authority API Reference</i>. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managing a private certificate authority (CA) for your organization.</p> <p>The documentation for each action shows the API request parameters and the JSON response. Alternatively, you can use one of the Amazon Web Services SDKs to access an API that is tailored to the programming language or platform that you prefer. For more information, see <a href="https://aws.amazon.com/tools/#SDKs">Amazon Web Services SDKs</a>.</p> <p>Each Amazon Web Services Private CA API operation has a quota that determines the number of times the operation can be called per second. Amazon Web Services Private CA throttles API requests at different rates depending on the operation. Throttling means that Amazon Web Services Private CA rejects an otherwise valid request because the request exceeds the operation's quota for the number of requests per second. When a request is throttled, Amazon Web Services Private CA returns a <a href="https://docs.aws.amazon.com/privateca/latest/APIReference/CommonErrors.html">ThrottlingException</a> error. Amazon Web Services Private CA does not guarantee a minimum request rate for APIs. </p> <p>To see an up-to-date list of your Amazon Web Services Private CA quotas, or to request a quota increase, log into your Amazon Web Services account and visit the <a href="https://console.aws.amazon.com/servicequotas/">Service Quotas</a> console.</p>
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import { ACMPCAClient } from "./ACMPCAClient";
|
|
3
9
|
import {
|
|
4
10
|
CreateCertificateAuthorityAuditReportCommandInput,
|
|
@@ -417,5 +423,53 @@ export interface ACMPCA {
|
|
|
417
423
|
options: __HttpHandlerOptions,
|
|
418
424
|
cb: (err: any, data?: UpdateCertificateAuthorityCommandOutput) => void
|
|
419
425
|
): void;
|
|
426
|
+
paginateListCertificateAuthorities(
|
|
427
|
+
args?: ListCertificateAuthoritiesCommandInput,
|
|
428
|
+
paginationConfig?: Pick<
|
|
429
|
+
PaginationConfiguration,
|
|
430
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
431
|
+
>
|
|
432
|
+
): Paginator<ListCertificateAuthoritiesCommandOutput>;
|
|
433
|
+
paginateListPermissions(
|
|
434
|
+
args: ListPermissionsCommandInput,
|
|
435
|
+
paginationConfig?: Pick<
|
|
436
|
+
PaginationConfiguration,
|
|
437
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
438
|
+
>
|
|
439
|
+
): Paginator<ListPermissionsCommandOutput>;
|
|
440
|
+
paginateListTags(
|
|
441
|
+
args: ListTagsCommandInput,
|
|
442
|
+
paginationConfig?: Pick<
|
|
443
|
+
PaginationConfiguration,
|
|
444
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
445
|
+
>
|
|
446
|
+
): Paginator<ListTagsCommandOutput>;
|
|
447
|
+
waitUntilAuditReportCreated(
|
|
448
|
+
args: DescribeCertificateAuthorityAuditReportCommandInput,
|
|
449
|
+
waiterConfig:
|
|
450
|
+
| number
|
|
451
|
+
| Pick<
|
|
452
|
+
WaiterConfiguration<ACMPCA>,
|
|
453
|
+
Exclude<keyof WaiterConfiguration<ACMPCA>, "client">
|
|
454
|
+
>
|
|
455
|
+
): Promise<WaiterResult>;
|
|
456
|
+
waitUntilCertificateIssued(
|
|
457
|
+
args: GetCertificateCommandInput,
|
|
458
|
+
waiterConfig:
|
|
459
|
+
| number
|
|
460
|
+
| Pick<
|
|
461
|
+
WaiterConfiguration<ACMPCA>,
|
|
462
|
+
Exclude<keyof WaiterConfiguration<ACMPCA>, "client">
|
|
463
|
+
>
|
|
464
|
+
): Promise<WaiterResult>;
|
|
465
|
+
waitUntilCertificateAuthorityCSRCreated(
|
|
466
|
+
args: GetCertificateAuthorityCsrCommandInput,
|
|
467
|
+
waiterConfig:
|
|
468
|
+
| number
|
|
469
|
+
| Pick<
|
|
470
|
+
WaiterConfiguration<ACMPCA>,
|
|
471
|
+
Exclude<keyof WaiterConfiguration<ACMPCA>, "client">
|
|
472
|
+
>
|
|
473
|
+
): Promise<WaiterResult>;
|
|
420
474
|
}
|
|
421
475
|
export declare class ACMPCA extends ACMPCAClient implements ACMPCA {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-acm-pca",
|
|
3
3
|
"description": "AWS SDK for JavaScript Acm Pca Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-acm-pca",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|