@aws-sdk/client-drs 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 +36 -23
- package/dist-es/Drs.js +25 -1
- package/dist-types/Drs.d.ts +78 -1
- package/dist-types/ts3.4/Drs.d.ts +82 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2376,6 +2376,28 @@ class UpdateReplicationConfigurationTemplateCommand extends smithyClient.Command
|
|
|
2376
2376
|
.build() {
|
|
2377
2377
|
}
|
|
2378
2378
|
|
|
2379
|
+
const paginateDescribeJobLogItems = core.createPaginator(DrsClient, DescribeJobLogItemsCommand, "nextToken", "nextToken", "maxResults");
|
|
2380
|
+
|
|
2381
|
+
const paginateDescribeJobs = core.createPaginator(DrsClient, DescribeJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2382
|
+
|
|
2383
|
+
const paginateDescribeLaunchConfigurationTemplates = core.createPaginator(DrsClient, DescribeLaunchConfigurationTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
2384
|
+
|
|
2385
|
+
const paginateDescribeRecoveryInstances = core.createPaginator(DrsClient, DescribeRecoveryInstancesCommand, "nextToken", "nextToken", "maxResults");
|
|
2386
|
+
|
|
2387
|
+
const paginateDescribeRecoverySnapshots = core.createPaginator(DrsClient, DescribeRecoverySnapshotsCommand, "nextToken", "nextToken", "maxResults");
|
|
2388
|
+
|
|
2389
|
+
const paginateDescribeReplicationConfigurationTemplates = core.createPaginator(DrsClient, DescribeReplicationConfigurationTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
2390
|
+
|
|
2391
|
+
const paginateDescribeSourceNetworks = core.createPaginator(DrsClient, DescribeSourceNetworksCommand, "nextToken", "nextToken", "maxResults");
|
|
2392
|
+
|
|
2393
|
+
const paginateDescribeSourceServers = core.createPaginator(DrsClient, DescribeSourceServersCommand, "nextToken", "nextToken", "maxResults");
|
|
2394
|
+
|
|
2395
|
+
const paginateListExtensibleSourceServers = core.createPaginator(DrsClient, ListExtensibleSourceServersCommand, "nextToken", "nextToken", "maxResults");
|
|
2396
|
+
|
|
2397
|
+
const paginateListLaunchActions = core.createPaginator(DrsClient, ListLaunchActionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2398
|
+
|
|
2399
|
+
const paginateListStagingAccounts = core.createPaginator(DrsClient, ListStagingAccountsCommand, "nextToken", "nextToken", "maxResults");
|
|
2400
|
+
|
|
2379
2401
|
const commands = {
|
|
2380
2402
|
AssociateSourceNetworkStackCommand,
|
|
2381
2403
|
CreateExtendedSourceServerCommand,
|
|
@@ -2428,31 +2450,22 @@ const commands = {
|
|
|
2428
2450
|
UpdateReplicationConfigurationCommand,
|
|
2429
2451
|
UpdateReplicationConfigurationTemplateCommand,
|
|
2430
2452
|
};
|
|
2453
|
+
const paginators = {
|
|
2454
|
+
paginateDescribeJobLogItems,
|
|
2455
|
+
paginateDescribeJobs,
|
|
2456
|
+
paginateDescribeLaunchConfigurationTemplates,
|
|
2457
|
+
paginateDescribeRecoveryInstances,
|
|
2458
|
+
paginateDescribeRecoverySnapshots,
|
|
2459
|
+
paginateDescribeReplicationConfigurationTemplates,
|
|
2460
|
+
paginateDescribeSourceNetworks,
|
|
2461
|
+
paginateDescribeSourceServers,
|
|
2462
|
+
paginateListExtensibleSourceServers,
|
|
2463
|
+
paginateListLaunchActions,
|
|
2464
|
+
paginateListStagingAccounts,
|
|
2465
|
+
};
|
|
2431
2466
|
class Drs extends DrsClient {
|
|
2432
2467
|
}
|
|
2433
|
-
smithyClient.createAggregatedClient(commands, Drs);
|
|
2434
|
-
|
|
2435
|
-
const paginateDescribeJobLogItems = core.createPaginator(DrsClient, DescribeJobLogItemsCommand, "nextToken", "nextToken", "maxResults");
|
|
2436
|
-
|
|
2437
|
-
const paginateDescribeJobs = core.createPaginator(DrsClient, DescribeJobsCommand, "nextToken", "nextToken", "maxResults");
|
|
2438
|
-
|
|
2439
|
-
const paginateDescribeLaunchConfigurationTemplates = core.createPaginator(DrsClient, DescribeLaunchConfigurationTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
2440
|
-
|
|
2441
|
-
const paginateDescribeRecoveryInstances = core.createPaginator(DrsClient, DescribeRecoveryInstancesCommand, "nextToken", "nextToken", "maxResults");
|
|
2442
|
-
|
|
2443
|
-
const paginateDescribeRecoverySnapshots = core.createPaginator(DrsClient, DescribeRecoverySnapshotsCommand, "nextToken", "nextToken", "maxResults");
|
|
2444
|
-
|
|
2445
|
-
const paginateDescribeReplicationConfigurationTemplates = core.createPaginator(DrsClient, DescribeReplicationConfigurationTemplatesCommand, "nextToken", "nextToken", "maxResults");
|
|
2446
|
-
|
|
2447
|
-
const paginateDescribeSourceNetworks = core.createPaginator(DrsClient, DescribeSourceNetworksCommand, "nextToken", "nextToken", "maxResults");
|
|
2448
|
-
|
|
2449
|
-
const paginateDescribeSourceServers = core.createPaginator(DrsClient, DescribeSourceServersCommand, "nextToken", "nextToken", "maxResults");
|
|
2450
|
-
|
|
2451
|
-
const paginateListExtensibleSourceServers = core.createPaginator(DrsClient, ListExtensibleSourceServersCommand, "nextToken", "nextToken", "maxResults");
|
|
2452
|
-
|
|
2453
|
-
const paginateListLaunchActions = core.createPaginator(DrsClient, ListLaunchActionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2454
|
-
|
|
2455
|
-
const paginateListStagingAccounts = core.createPaginator(DrsClient, ListStagingAccountsCommand, "nextToken", "nextToken", "maxResults");
|
|
2468
|
+
smithyClient.createAggregatedClient(commands, Drs, { paginators });
|
|
2456
2469
|
|
|
2457
2470
|
const InitiatedBy = {
|
|
2458
2471
|
ASSOCIATE_NETWORK_RECOVERY: "ASSOCIATE_NETWORK_RECOVERY",
|
package/dist-es/Drs.js
CHANGED
|
@@ -50,6 +50,17 @@ import { UpdateLaunchConfigurationTemplateCommand, } from "./commands/UpdateLaun
|
|
|
50
50
|
import { UpdateReplicationConfigurationCommand, } from "./commands/UpdateReplicationConfigurationCommand";
|
|
51
51
|
import { UpdateReplicationConfigurationTemplateCommand, } from "./commands/UpdateReplicationConfigurationTemplateCommand";
|
|
52
52
|
import { DrsClient } from "./DrsClient";
|
|
53
|
+
import { paginateDescribeJobLogItems } from "./pagination/DescribeJobLogItemsPaginator";
|
|
54
|
+
import { paginateDescribeJobs } from "./pagination/DescribeJobsPaginator";
|
|
55
|
+
import { paginateDescribeLaunchConfigurationTemplates, } from "./pagination/DescribeLaunchConfigurationTemplatesPaginator";
|
|
56
|
+
import { paginateDescribeRecoveryInstances } from "./pagination/DescribeRecoveryInstancesPaginator";
|
|
57
|
+
import { paginateDescribeRecoverySnapshots } from "./pagination/DescribeRecoverySnapshotsPaginator";
|
|
58
|
+
import { paginateDescribeReplicationConfigurationTemplates, } from "./pagination/DescribeReplicationConfigurationTemplatesPaginator";
|
|
59
|
+
import { paginateDescribeSourceNetworks } from "./pagination/DescribeSourceNetworksPaginator";
|
|
60
|
+
import { paginateDescribeSourceServers } from "./pagination/DescribeSourceServersPaginator";
|
|
61
|
+
import { paginateListExtensibleSourceServers } from "./pagination/ListExtensibleSourceServersPaginator";
|
|
62
|
+
import { paginateListLaunchActions } from "./pagination/ListLaunchActionsPaginator";
|
|
63
|
+
import { paginateListStagingAccounts } from "./pagination/ListStagingAccountsPaginator";
|
|
53
64
|
const commands = {
|
|
54
65
|
AssociateSourceNetworkStackCommand,
|
|
55
66
|
CreateExtendedSourceServerCommand,
|
|
@@ -102,6 +113,19 @@ const commands = {
|
|
|
102
113
|
UpdateReplicationConfigurationCommand,
|
|
103
114
|
UpdateReplicationConfigurationTemplateCommand,
|
|
104
115
|
};
|
|
116
|
+
const paginators = {
|
|
117
|
+
paginateDescribeJobLogItems,
|
|
118
|
+
paginateDescribeJobs,
|
|
119
|
+
paginateDescribeLaunchConfigurationTemplates,
|
|
120
|
+
paginateDescribeRecoveryInstances,
|
|
121
|
+
paginateDescribeRecoverySnapshots,
|
|
122
|
+
paginateDescribeReplicationConfigurationTemplates,
|
|
123
|
+
paginateDescribeSourceNetworks,
|
|
124
|
+
paginateDescribeSourceServers,
|
|
125
|
+
paginateListExtensibleSourceServers,
|
|
126
|
+
paginateListLaunchActions,
|
|
127
|
+
paginateListStagingAccounts,
|
|
128
|
+
};
|
|
105
129
|
export class Drs extends DrsClient {
|
|
106
130
|
}
|
|
107
|
-
createAggregatedClient(commands, Drs);
|
|
131
|
+
createAggregatedClient(commands, Drs, { paginators });
|
package/dist-types/Drs.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AssociateSourceNetworkStackCommandInput, AssociateSourceNetworkStackCommandOutput } from "./commands/AssociateSourceNetworkStackCommand";
|
|
3
3
|
import { CreateExtendedSourceServerCommandInput, CreateExtendedSourceServerCommandOutput } from "./commands/CreateExtendedSourceServerCommand";
|
|
4
4
|
import { CreateLaunchConfigurationTemplateCommandInput, CreateLaunchConfigurationTemplateCommandOutput } from "./commands/CreateLaunchConfigurationTemplateCommand";
|
|
@@ -360,6 +360,83 @@ export interface Drs {
|
|
|
360
360
|
updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, options?: __HttpHandlerOptions): Promise<UpdateReplicationConfigurationTemplateCommandOutput>;
|
|
361
361
|
updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, cb: (err: any, data?: UpdateReplicationConfigurationTemplateCommandOutput) => void): void;
|
|
362
362
|
updateReplicationConfigurationTemplate(args: UpdateReplicationConfigurationTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateReplicationConfigurationTemplateCommandOutput) => void): void;
|
|
363
|
+
/**
|
|
364
|
+
* @see {@link DescribeJobLogItemsCommand}
|
|
365
|
+
* @param args - command input.
|
|
366
|
+
* @param paginationConfig - optional pagination config.
|
|
367
|
+
* @returns AsyncIterable of {@link DescribeJobLogItemsCommandOutput}.
|
|
368
|
+
*/
|
|
369
|
+
paginateDescribeJobLogItems(args: DescribeJobLogItemsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeJobLogItemsCommandOutput>;
|
|
370
|
+
/**
|
|
371
|
+
* @see {@link DescribeJobsCommand}
|
|
372
|
+
* @param args - command input.
|
|
373
|
+
* @param paginationConfig - optional pagination config.
|
|
374
|
+
* @returns AsyncIterable of {@link DescribeJobsCommandOutput}.
|
|
375
|
+
*/
|
|
376
|
+
paginateDescribeJobs(args?: DescribeJobsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeJobsCommandOutput>;
|
|
377
|
+
/**
|
|
378
|
+
* @see {@link DescribeLaunchConfigurationTemplatesCommand}
|
|
379
|
+
* @param args - command input.
|
|
380
|
+
* @param paginationConfig - optional pagination config.
|
|
381
|
+
* @returns AsyncIterable of {@link DescribeLaunchConfigurationTemplatesCommandOutput}.
|
|
382
|
+
*/
|
|
383
|
+
paginateDescribeLaunchConfigurationTemplates(args?: DescribeLaunchConfigurationTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeLaunchConfigurationTemplatesCommandOutput>;
|
|
384
|
+
/**
|
|
385
|
+
* @see {@link DescribeRecoveryInstancesCommand}
|
|
386
|
+
* @param args - command input.
|
|
387
|
+
* @param paginationConfig - optional pagination config.
|
|
388
|
+
* @returns AsyncIterable of {@link DescribeRecoveryInstancesCommandOutput}.
|
|
389
|
+
*/
|
|
390
|
+
paginateDescribeRecoveryInstances(args?: DescribeRecoveryInstancesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeRecoveryInstancesCommandOutput>;
|
|
391
|
+
/**
|
|
392
|
+
* @see {@link DescribeRecoverySnapshotsCommand}
|
|
393
|
+
* @param args - command input.
|
|
394
|
+
* @param paginationConfig - optional pagination config.
|
|
395
|
+
* @returns AsyncIterable of {@link DescribeRecoverySnapshotsCommandOutput}.
|
|
396
|
+
*/
|
|
397
|
+
paginateDescribeRecoverySnapshots(args: DescribeRecoverySnapshotsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeRecoverySnapshotsCommandOutput>;
|
|
398
|
+
/**
|
|
399
|
+
* @see {@link DescribeReplicationConfigurationTemplatesCommand}
|
|
400
|
+
* @param args - command input.
|
|
401
|
+
* @param paginationConfig - optional pagination config.
|
|
402
|
+
* @returns AsyncIterable of {@link DescribeReplicationConfigurationTemplatesCommandOutput}.
|
|
403
|
+
*/
|
|
404
|
+
paginateDescribeReplicationConfigurationTemplates(args?: DescribeReplicationConfigurationTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeReplicationConfigurationTemplatesCommandOutput>;
|
|
405
|
+
/**
|
|
406
|
+
* @see {@link DescribeSourceNetworksCommand}
|
|
407
|
+
* @param args - command input.
|
|
408
|
+
* @param paginationConfig - optional pagination config.
|
|
409
|
+
* @returns AsyncIterable of {@link DescribeSourceNetworksCommandOutput}.
|
|
410
|
+
*/
|
|
411
|
+
paginateDescribeSourceNetworks(args?: DescribeSourceNetworksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSourceNetworksCommandOutput>;
|
|
412
|
+
/**
|
|
413
|
+
* @see {@link DescribeSourceServersCommand}
|
|
414
|
+
* @param args - command input.
|
|
415
|
+
* @param paginationConfig - optional pagination config.
|
|
416
|
+
* @returns AsyncIterable of {@link DescribeSourceServersCommandOutput}.
|
|
417
|
+
*/
|
|
418
|
+
paginateDescribeSourceServers(args?: DescribeSourceServersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeSourceServersCommandOutput>;
|
|
419
|
+
/**
|
|
420
|
+
* @see {@link ListExtensibleSourceServersCommand}
|
|
421
|
+
* @param args - command input.
|
|
422
|
+
* @param paginationConfig - optional pagination config.
|
|
423
|
+
* @returns AsyncIterable of {@link ListExtensibleSourceServersCommandOutput}.
|
|
424
|
+
*/
|
|
425
|
+
paginateListExtensibleSourceServers(args: ListExtensibleSourceServersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListExtensibleSourceServersCommandOutput>;
|
|
426
|
+
/**
|
|
427
|
+
* @see {@link ListLaunchActionsCommand}
|
|
428
|
+
* @param args - command input.
|
|
429
|
+
* @param paginationConfig - optional pagination config.
|
|
430
|
+
* @returns AsyncIterable of {@link ListLaunchActionsCommandOutput}.
|
|
431
|
+
*/
|
|
432
|
+
paginateListLaunchActions(args: ListLaunchActionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLaunchActionsCommandOutput>;
|
|
433
|
+
/**
|
|
434
|
+
* @see {@link ListStagingAccountsCommand}
|
|
435
|
+
* @param args - command input.
|
|
436
|
+
* @param paginationConfig - optional pagination config.
|
|
437
|
+
* @returns AsyncIterable of {@link ListStagingAccountsCommandOutput}.
|
|
438
|
+
*/
|
|
439
|
+
paginateListStagingAccounts(args?: ListStagingAccountsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListStagingAccountsCommandOutput>;
|
|
363
440
|
}
|
|
364
441
|
/**
|
|
365
442
|
* <p>AWS Elastic Disaster Recovery Service.</p>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AssociateSourceNetworkStackCommandInput,
|
|
4
8
|
AssociateSourceNetworkStackCommandOutput,
|
|
@@ -920,5 +924,82 @@ export interface Drs {
|
|
|
920
924
|
data?: UpdateReplicationConfigurationTemplateCommandOutput
|
|
921
925
|
) => void
|
|
922
926
|
): void;
|
|
927
|
+
paginateDescribeJobLogItems(
|
|
928
|
+
args: DescribeJobLogItemsCommandInput,
|
|
929
|
+
paginationConfig?: Pick<
|
|
930
|
+
PaginationConfiguration,
|
|
931
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
932
|
+
>
|
|
933
|
+
): Paginator<DescribeJobLogItemsCommandOutput>;
|
|
934
|
+
paginateDescribeJobs(
|
|
935
|
+
args?: DescribeJobsCommandInput,
|
|
936
|
+
paginationConfig?: Pick<
|
|
937
|
+
PaginationConfiguration,
|
|
938
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
939
|
+
>
|
|
940
|
+
): Paginator<DescribeJobsCommandOutput>;
|
|
941
|
+
paginateDescribeLaunchConfigurationTemplates(
|
|
942
|
+
args?: DescribeLaunchConfigurationTemplatesCommandInput,
|
|
943
|
+
paginationConfig?: Pick<
|
|
944
|
+
PaginationConfiguration,
|
|
945
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
946
|
+
>
|
|
947
|
+
): Paginator<DescribeLaunchConfigurationTemplatesCommandOutput>;
|
|
948
|
+
paginateDescribeRecoveryInstances(
|
|
949
|
+
args?: DescribeRecoveryInstancesCommandInput,
|
|
950
|
+
paginationConfig?: Pick<
|
|
951
|
+
PaginationConfiguration,
|
|
952
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
953
|
+
>
|
|
954
|
+
): Paginator<DescribeRecoveryInstancesCommandOutput>;
|
|
955
|
+
paginateDescribeRecoverySnapshots(
|
|
956
|
+
args: DescribeRecoverySnapshotsCommandInput,
|
|
957
|
+
paginationConfig?: Pick<
|
|
958
|
+
PaginationConfiguration,
|
|
959
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
960
|
+
>
|
|
961
|
+
): Paginator<DescribeRecoverySnapshotsCommandOutput>;
|
|
962
|
+
paginateDescribeReplicationConfigurationTemplates(
|
|
963
|
+
args?: DescribeReplicationConfigurationTemplatesCommandInput,
|
|
964
|
+
paginationConfig?: Pick<
|
|
965
|
+
PaginationConfiguration,
|
|
966
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
967
|
+
>
|
|
968
|
+
): Paginator<DescribeReplicationConfigurationTemplatesCommandOutput>;
|
|
969
|
+
paginateDescribeSourceNetworks(
|
|
970
|
+
args?: DescribeSourceNetworksCommandInput,
|
|
971
|
+
paginationConfig?: Pick<
|
|
972
|
+
PaginationConfiguration,
|
|
973
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
974
|
+
>
|
|
975
|
+
): Paginator<DescribeSourceNetworksCommandOutput>;
|
|
976
|
+
paginateDescribeSourceServers(
|
|
977
|
+
args?: DescribeSourceServersCommandInput,
|
|
978
|
+
paginationConfig?: Pick<
|
|
979
|
+
PaginationConfiguration,
|
|
980
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
981
|
+
>
|
|
982
|
+
): Paginator<DescribeSourceServersCommandOutput>;
|
|
983
|
+
paginateListExtensibleSourceServers(
|
|
984
|
+
args: ListExtensibleSourceServersCommandInput,
|
|
985
|
+
paginationConfig?: Pick<
|
|
986
|
+
PaginationConfiguration,
|
|
987
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
988
|
+
>
|
|
989
|
+
): Paginator<ListExtensibleSourceServersCommandOutput>;
|
|
990
|
+
paginateListLaunchActions(
|
|
991
|
+
args: ListLaunchActionsCommandInput,
|
|
992
|
+
paginationConfig?: Pick<
|
|
993
|
+
PaginationConfiguration,
|
|
994
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
995
|
+
>
|
|
996
|
+
): Paginator<ListLaunchActionsCommandOutput>;
|
|
997
|
+
paginateListStagingAccounts(
|
|
998
|
+
args?: ListStagingAccountsCommandInput,
|
|
999
|
+
paginationConfig?: Pick<
|
|
1000
|
+
PaginationConfiguration,
|
|
1001
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1002
|
+
>
|
|
1003
|
+
): Paginator<ListStagingAccountsCommandOutput>;
|
|
923
1004
|
}
|
|
924
1005
|
export declare class Drs extends DrsClient implements Drs {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-drs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Drs 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-drs",
|
|
@@ -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",
|