@aws-sdk/client-cloudtrail 3.974.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 +39 -25
- package/dist-es/CloudTrail.js +27 -1
- package/dist-types/CloudTrail.d.ts +85 -1
- package/dist-types/ts3.4/CloudTrail.d.ts +89 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -4100,6 +4100,30 @@ class UpdateTrailCommand extends smithyClient.Command
|
|
|
4100
4100
|
.build() {
|
|
4101
4101
|
}
|
|
4102
4102
|
|
|
4103
|
+
const paginateGetQueryResults = core.createPaginator(CloudTrailClient, GetQueryResultsCommand, "NextToken", "NextToken", "");
|
|
4104
|
+
|
|
4105
|
+
const paginateListChannels = core.createPaginator(CloudTrailClient, ListChannelsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4106
|
+
|
|
4107
|
+
const paginateListEventDataStores = core.createPaginator(CloudTrailClient, ListEventDataStoresCommand, "NextToken", "NextToken", "MaxResults");
|
|
4108
|
+
|
|
4109
|
+
const paginateListImportFailures = core.createPaginator(CloudTrailClient, ListImportFailuresCommand, "NextToken", "NextToken", "MaxResults");
|
|
4110
|
+
|
|
4111
|
+
const paginateListImports = core.createPaginator(CloudTrailClient, ListImportsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4112
|
+
|
|
4113
|
+
const paginateListInsightsData = core.createPaginator(CloudTrailClient, ListInsightsDataCommand, "NextToken", "NextToken", "MaxResults");
|
|
4114
|
+
|
|
4115
|
+
const paginateListInsightsMetricData = core.createPaginator(CloudTrailClient, ListInsightsMetricDataCommand, "NextToken", "NextToken", "MaxResults");
|
|
4116
|
+
|
|
4117
|
+
const paginateListPublicKeys = core.createPaginator(CloudTrailClient, ListPublicKeysCommand, "NextToken", "NextToken", "");
|
|
4118
|
+
|
|
4119
|
+
const paginateListQueries = core.createPaginator(CloudTrailClient, ListQueriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4120
|
+
|
|
4121
|
+
const paginateListTags = core.createPaginator(CloudTrailClient, ListTagsCommand, "NextToken", "NextToken", "");
|
|
4122
|
+
|
|
4123
|
+
const paginateListTrails = core.createPaginator(CloudTrailClient, ListTrailsCommand, "NextToken", "NextToken", "");
|
|
4124
|
+
|
|
4125
|
+
const paginateLookupEvents = core.createPaginator(CloudTrailClient, LookupEventsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4126
|
+
|
|
4103
4127
|
const commands = {
|
|
4104
4128
|
AddTagsCommand,
|
|
4105
4129
|
CancelQueryCommand,
|
|
@@ -4162,33 +4186,23 @@ const commands = {
|
|
|
4162
4186
|
UpdateEventDataStoreCommand,
|
|
4163
4187
|
UpdateTrailCommand,
|
|
4164
4188
|
};
|
|
4189
|
+
const paginators = {
|
|
4190
|
+
paginateGetQueryResults,
|
|
4191
|
+
paginateListChannels,
|
|
4192
|
+
paginateListEventDataStores,
|
|
4193
|
+
paginateListImportFailures,
|
|
4194
|
+
paginateListImports,
|
|
4195
|
+
paginateListInsightsData,
|
|
4196
|
+
paginateListInsightsMetricData,
|
|
4197
|
+
paginateListPublicKeys,
|
|
4198
|
+
paginateListQueries,
|
|
4199
|
+
paginateListTags,
|
|
4200
|
+
paginateListTrails,
|
|
4201
|
+
paginateLookupEvents,
|
|
4202
|
+
};
|
|
4165
4203
|
class CloudTrail extends CloudTrailClient {
|
|
4166
4204
|
}
|
|
4167
|
-
smithyClient.createAggregatedClient(commands, CloudTrail);
|
|
4168
|
-
|
|
4169
|
-
const paginateGetQueryResults = core.createPaginator(CloudTrailClient, GetQueryResultsCommand, "NextToken", "NextToken", "");
|
|
4170
|
-
|
|
4171
|
-
const paginateListChannels = core.createPaginator(CloudTrailClient, ListChannelsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4172
|
-
|
|
4173
|
-
const paginateListEventDataStores = core.createPaginator(CloudTrailClient, ListEventDataStoresCommand, "NextToken", "NextToken", "MaxResults");
|
|
4174
|
-
|
|
4175
|
-
const paginateListImportFailures = core.createPaginator(CloudTrailClient, ListImportFailuresCommand, "NextToken", "NextToken", "MaxResults");
|
|
4176
|
-
|
|
4177
|
-
const paginateListImports = core.createPaginator(CloudTrailClient, ListImportsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4178
|
-
|
|
4179
|
-
const paginateListInsightsData = core.createPaginator(CloudTrailClient, ListInsightsDataCommand, "NextToken", "NextToken", "MaxResults");
|
|
4180
|
-
|
|
4181
|
-
const paginateListInsightsMetricData = core.createPaginator(CloudTrailClient, ListInsightsMetricDataCommand, "NextToken", "NextToken", "MaxResults");
|
|
4182
|
-
|
|
4183
|
-
const paginateListPublicKeys = core.createPaginator(CloudTrailClient, ListPublicKeysCommand, "NextToken", "NextToken", "");
|
|
4184
|
-
|
|
4185
|
-
const paginateListQueries = core.createPaginator(CloudTrailClient, ListQueriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
4186
|
-
|
|
4187
|
-
const paginateListTags = core.createPaginator(CloudTrailClient, ListTagsCommand, "NextToken", "NextToken", "");
|
|
4188
|
-
|
|
4189
|
-
const paginateListTrails = core.createPaginator(CloudTrailClient, ListTrailsCommand, "NextToken", "NextToken", "");
|
|
4190
|
-
|
|
4191
|
-
const paginateLookupEvents = core.createPaginator(CloudTrailClient, LookupEventsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4205
|
+
smithyClient.createAggregatedClient(commands, CloudTrail, { paginators });
|
|
4192
4206
|
|
|
4193
4207
|
const EventCategoryAggregation = {
|
|
4194
4208
|
Data: "Data",
|
package/dist-es/CloudTrail.js
CHANGED
|
@@ -60,6 +60,18 @@ import { UpdateChannelCommand, } from "./commands/UpdateChannelCommand";
|
|
|
60
60
|
import { UpdateDashboardCommand, } from "./commands/UpdateDashboardCommand";
|
|
61
61
|
import { UpdateEventDataStoreCommand, } from "./commands/UpdateEventDataStoreCommand";
|
|
62
62
|
import { UpdateTrailCommand } from "./commands/UpdateTrailCommand";
|
|
63
|
+
import { paginateGetQueryResults } from "./pagination/GetQueryResultsPaginator";
|
|
64
|
+
import { paginateListChannels } from "./pagination/ListChannelsPaginator";
|
|
65
|
+
import { paginateListEventDataStores } from "./pagination/ListEventDataStoresPaginator";
|
|
66
|
+
import { paginateListImportFailures } from "./pagination/ListImportFailuresPaginator";
|
|
67
|
+
import { paginateListImports } from "./pagination/ListImportsPaginator";
|
|
68
|
+
import { paginateListInsightsData } from "./pagination/ListInsightsDataPaginator";
|
|
69
|
+
import { paginateListInsightsMetricData } from "./pagination/ListInsightsMetricDataPaginator";
|
|
70
|
+
import { paginateListPublicKeys } from "./pagination/ListPublicKeysPaginator";
|
|
71
|
+
import { paginateListQueries } from "./pagination/ListQueriesPaginator";
|
|
72
|
+
import { paginateListTags } from "./pagination/ListTagsPaginator";
|
|
73
|
+
import { paginateListTrails } from "./pagination/ListTrailsPaginator";
|
|
74
|
+
import { paginateLookupEvents } from "./pagination/LookupEventsPaginator";
|
|
63
75
|
const commands = {
|
|
64
76
|
AddTagsCommand,
|
|
65
77
|
CancelQueryCommand,
|
|
@@ -122,6 +134,20 @@ const commands = {
|
|
|
122
134
|
UpdateEventDataStoreCommand,
|
|
123
135
|
UpdateTrailCommand,
|
|
124
136
|
};
|
|
137
|
+
const paginators = {
|
|
138
|
+
paginateGetQueryResults,
|
|
139
|
+
paginateListChannels,
|
|
140
|
+
paginateListEventDataStores,
|
|
141
|
+
paginateListImportFailures,
|
|
142
|
+
paginateListImports,
|
|
143
|
+
paginateListInsightsData,
|
|
144
|
+
paginateListInsightsMetricData,
|
|
145
|
+
paginateListPublicKeys,
|
|
146
|
+
paginateListQueries,
|
|
147
|
+
paginateListTags,
|
|
148
|
+
paginateListTrails,
|
|
149
|
+
paginateLookupEvents,
|
|
150
|
+
};
|
|
125
151
|
export class CloudTrail extends CloudTrailClient {
|
|
126
152
|
}
|
|
127
|
-
createAggregatedClient(commands, CloudTrail);
|
|
153
|
+
createAggregatedClient(commands, CloudTrail, { paginators });
|
|
@@ -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 { CloudTrailClient } from "./CloudTrailClient";
|
|
3
3
|
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
4
4
|
import { CancelQueryCommandInput, CancelQueryCommandOutput } from "./commands/CancelQueryCommand";
|
|
@@ -435,6 +435,90 @@ export interface CloudTrail {
|
|
|
435
435
|
updateTrail(args: UpdateTrailCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrailCommandOutput>;
|
|
436
436
|
updateTrail(args: UpdateTrailCommandInput, cb: (err: any, data?: UpdateTrailCommandOutput) => void): void;
|
|
437
437
|
updateTrail(args: UpdateTrailCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrailCommandOutput) => void): void;
|
|
438
|
+
/**
|
|
439
|
+
* @see {@link GetQueryResultsCommand}
|
|
440
|
+
* @param args - command input.
|
|
441
|
+
* @param paginationConfig - optional pagination config.
|
|
442
|
+
* @returns AsyncIterable of {@link GetQueryResultsCommandOutput}.
|
|
443
|
+
*/
|
|
444
|
+
paginateGetQueryResults(args: GetQueryResultsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetQueryResultsCommandOutput>;
|
|
445
|
+
/**
|
|
446
|
+
* @see {@link ListChannelsCommand}
|
|
447
|
+
* @param args - command input.
|
|
448
|
+
* @param paginationConfig - optional pagination config.
|
|
449
|
+
* @returns AsyncIterable of {@link ListChannelsCommandOutput}.
|
|
450
|
+
*/
|
|
451
|
+
paginateListChannels(args?: ListChannelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListChannelsCommandOutput>;
|
|
452
|
+
/**
|
|
453
|
+
* @see {@link ListEventDataStoresCommand}
|
|
454
|
+
* @param args - command input.
|
|
455
|
+
* @param paginationConfig - optional pagination config.
|
|
456
|
+
* @returns AsyncIterable of {@link ListEventDataStoresCommandOutput}.
|
|
457
|
+
*/
|
|
458
|
+
paginateListEventDataStores(args?: ListEventDataStoresCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventDataStoresCommandOutput>;
|
|
459
|
+
/**
|
|
460
|
+
* @see {@link ListImportFailuresCommand}
|
|
461
|
+
* @param args - command input.
|
|
462
|
+
* @param paginationConfig - optional pagination config.
|
|
463
|
+
* @returns AsyncIterable of {@link ListImportFailuresCommandOutput}.
|
|
464
|
+
*/
|
|
465
|
+
paginateListImportFailures(args: ListImportFailuresCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListImportFailuresCommandOutput>;
|
|
466
|
+
/**
|
|
467
|
+
* @see {@link ListImportsCommand}
|
|
468
|
+
* @param args - command input.
|
|
469
|
+
* @param paginationConfig - optional pagination config.
|
|
470
|
+
* @returns AsyncIterable of {@link ListImportsCommandOutput}.
|
|
471
|
+
*/
|
|
472
|
+
paginateListImports(args?: ListImportsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListImportsCommandOutput>;
|
|
473
|
+
/**
|
|
474
|
+
* @see {@link ListInsightsDataCommand}
|
|
475
|
+
* @param args - command input.
|
|
476
|
+
* @param paginationConfig - optional pagination config.
|
|
477
|
+
* @returns AsyncIterable of {@link ListInsightsDataCommandOutput}.
|
|
478
|
+
*/
|
|
479
|
+
paginateListInsightsData(args: ListInsightsDataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInsightsDataCommandOutput>;
|
|
480
|
+
/**
|
|
481
|
+
* @see {@link ListInsightsMetricDataCommand}
|
|
482
|
+
* @param args - command input.
|
|
483
|
+
* @param paginationConfig - optional pagination config.
|
|
484
|
+
* @returns AsyncIterable of {@link ListInsightsMetricDataCommandOutput}.
|
|
485
|
+
*/
|
|
486
|
+
paginateListInsightsMetricData(args: ListInsightsMetricDataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInsightsMetricDataCommandOutput>;
|
|
487
|
+
/**
|
|
488
|
+
* @see {@link ListPublicKeysCommand}
|
|
489
|
+
* @param args - command input.
|
|
490
|
+
* @param paginationConfig - optional pagination config.
|
|
491
|
+
* @returns AsyncIterable of {@link ListPublicKeysCommandOutput}.
|
|
492
|
+
*/
|
|
493
|
+
paginateListPublicKeys(args?: ListPublicKeysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListPublicKeysCommandOutput>;
|
|
494
|
+
/**
|
|
495
|
+
* @see {@link ListQueriesCommand}
|
|
496
|
+
* @param args - command input.
|
|
497
|
+
* @param paginationConfig - optional pagination config.
|
|
498
|
+
* @returns AsyncIterable of {@link ListQueriesCommandOutput}.
|
|
499
|
+
*/
|
|
500
|
+
paginateListQueries(args: ListQueriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListQueriesCommandOutput>;
|
|
501
|
+
/**
|
|
502
|
+
* @see {@link ListTagsCommand}
|
|
503
|
+
* @param args - command input.
|
|
504
|
+
* @param paginationConfig - optional pagination config.
|
|
505
|
+
* @returns AsyncIterable of {@link ListTagsCommandOutput}.
|
|
506
|
+
*/
|
|
507
|
+
paginateListTags(args: ListTagsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTagsCommandOutput>;
|
|
508
|
+
/**
|
|
509
|
+
* @see {@link ListTrailsCommand}
|
|
510
|
+
* @param args - command input.
|
|
511
|
+
* @param paginationConfig - optional pagination config.
|
|
512
|
+
* @returns AsyncIterable of {@link ListTrailsCommandOutput}.
|
|
513
|
+
*/
|
|
514
|
+
paginateListTrails(args?: ListTrailsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTrailsCommandOutput>;
|
|
515
|
+
/**
|
|
516
|
+
* @see {@link LookupEventsCommand}
|
|
517
|
+
* @param args - command input.
|
|
518
|
+
* @param paginationConfig - optional pagination config.
|
|
519
|
+
* @returns AsyncIterable of {@link LookupEventsCommandOutput}.
|
|
520
|
+
*/
|
|
521
|
+
paginateLookupEvents(args?: LookupEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<LookupEventsCommandOutput>;
|
|
438
522
|
}
|
|
439
523
|
/**
|
|
440
524
|
* <fullname>CloudTrail</fullname>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import { CloudTrailClient } from "./CloudTrailClient";
|
|
3
7
|
import {
|
|
4
8
|
AddTagsCommandInput,
|
|
@@ -1047,6 +1051,90 @@ export interface CloudTrail {
|
|
|
1047
1051
|
options: __HttpHandlerOptions,
|
|
1048
1052
|
cb: (err: any, data?: UpdateTrailCommandOutput) => void
|
|
1049
1053
|
): void;
|
|
1054
|
+
paginateGetQueryResults(
|
|
1055
|
+
args: GetQueryResultsCommandInput,
|
|
1056
|
+
paginationConfig?: Pick<
|
|
1057
|
+
PaginationConfiguration,
|
|
1058
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1059
|
+
>
|
|
1060
|
+
): Paginator<GetQueryResultsCommandOutput>;
|
|
1061
|
+
paginateListChannels(
|
|
1062
|
+
args?: ListChannelsCommandInput,
|
|
1063
|
+
paginationConfig?: Pick<
|
|
1064
|
+
PaginationConfiguration,
|
|
1065
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1066
|
+
>
|
|
1067
|
+
): Paginator<ListChannelsCommandOutput>;
|
|
1068
|
+
paginateListEventDataStores(
|
|
1069
|
+
args?: ListEventDataStoresCommandInput,
|
|
1070
|
+
paginationConfig?: Pick<
|
|
1071
|
+
PaginationConfiguration,
|
|
1072
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1073
|
+
>
|
|
1074
|
+
): Paginator<ListEventDataStoresCommandOutput>;
|
|
1075
|
+
paginateListImportFailures(
|
|
1076
|
+
args: ListImportFailuresCommandInput,
|
|
1077
|
+
paginationConfig?: Pick<
|
|
1078
|
+
PaginationConfiguration,
|
|
1079
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1080
|
+
>
|
|
1081
|
+
): Paginator<ListImportFailuresCommandOutput>;
|
|
1082
|
+
paginateListImports(
|
|
1083
|
+
args?: ListImportsCommandInput,
|
|
1084
|
+
paginationConfig?: Pick<
|
|
1085
|
+
PaginationConfiguration,
|
|
1086
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1087
|
+
>
|
|
1088
|
+
): Paginator<ListImportsCommandOutput>;
|
|
1089
|
+
paginateListInsightsData(
|
|
1090
|
+
args: ListInsightsDataCommandInput,
|
|
1091
|
+
paginationConfig?: Pick<
|
|
1092
|
+
PaginationConfiguration,
|
|
1093
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1094
|
+
>
|
|
1095
|
+
): Paginator<ListInsightsDataCommandOutput>;
|
|
1096
|
+
paginateListInsightsMetricData(
|
|
1097
|
+
args: ListInsightsMetricDataCommandInput,
|
|
1098
|
+
paginationConfig?: Pick<
|
|
1099
|
+
PaginationConfiguration,
|
|
1100
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1101
|
+
>
|
|
1102
|
+
): Paginator<ListInsightsMetricDataCommandOutput>;
|
|
1103
|
+
paginateListPublicKeys(
|
|
1104
|
+
args?: ListPublicKeysCommandInput,
|
|
1105
|
+
paginationConfig?: Pick<
|
|
1106
|
+
PaginationConfiguration,
|
|
1107
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1108
|
+
>
|
|
1109
|
+
): Paginator<ListPublicKeysCommandOutput>;
|
|
1110
|
+
paginateListQueries(
|
|
1111
|
+
args: ListQueriesCommandInput,
|
|
1112
|
+
paginationConfig?: Pick<
|
|
1113
|
+
PaginationConfiguration,
|
|
1114
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1115
|
+
>
|
|
1116
|
+
): Paginator<ListQueriesCommandOutput>;
|
|
1117
|
+
paginateListTags(
|
|
1118
|
+
args: ListTagsCommandInput,
|
|
1119
|
+
paginationConfig?: Pick<
|
|
1120
|
+
PaginationConfiguration,
|
|
1121
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1122
|
+
>
|
|
1123
|
+
): Paginator<ListTagsCommandOutput>;
|
|
1124
|
+
paginateListTrails(
|
|
1125
|
+
args?: ListTrailsCommandInput,
|
|
1126
|
+
paginationConfig?: Pick<
|
|
1127
|
+
PaginationConfiguration,
|
|
1128
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1129
|
+
>
|
|
1130
|
+
): Paginator<ListTrailsCommandOutput>;
|
|
1131
|
+
paginateLookupEvents(
|
|
1132
|
+
args?: LookupEventsCommandInput,
|
|
1133
|
+
paginationConfig?: Pick<
|
|
1134
|
+
PaginationConfiguration,
|
|
1135
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1136
|
+
>
|
|
1137
|
+
): Paginator<LookupEventsCommandOutput>;
|
|
1050
1138
|
}
|
|
1051
1139
|
export declare class CloudTrail
|
|
1052
1140
|
extends CloudTrailClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudtrail",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudtrail 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-cloudtrail",
|
|
@@ -23,38 +23,38 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
32
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
26
|
+
"@aws-sdk/core": "^3.973.4",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
32
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
33
|
+
"@aws-sdk/types": "^3.973.1",
|
|
34
34
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
35
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.6",
|
|
38
|
-
"@smithy/core": "^3.
|
|
38
|
+
"@smithy/core": "^3.22.0",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
40
40
|
"@smithy/hash-node": "^4.2.8",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
45
45
|
"@smithy/middleware-serde": "^4.2.9",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.8",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.8",
|
|
48
48
|
"@smithy/node-http-handler": "^4.4.8",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.8",
|
|
50
|
-
"@smithy/smithy-client": "^4.
|
|
50
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
51
51
|
"@smithy/types": "^4.12.0",
|
|
52
52
|
"@smithy/url-parser": "^4.2.8",
|
|
53
53
|
"@smithy/util-base64": "^4.3.0",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
58
58
|
"@smithy/util-endpoints": "^3.2.8",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.8",
|
|
60
60
|
"@smithy/util-retry": "^4.2.8",
|