@aws-sdk/client-devops-guru 3.42.0 → 3.46.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/CHANGELOG.md +47 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +97 -3
- package/dist-cjs/protocols/Aws_restJson1.js +379 -0
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +65 -0
- package/dist-es/protocols/Aws_restJson1.js +372 -6
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/DevOpsGuru.d.ts +13 -10
- package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +3 -2
- package/dist-types/commands/GetResourceCollectionCommand.d.ts +3 -2
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +3 -2
- package/dist-types/models/models_0.d.ts +1093 -69
- package/dist-types/ts3.4/models/models_0.d.ts +217 -3
- package/package.json +36 -43
|
@@ -145,7 +145,9 @@ export declare namespace ValidationExceptionField {
|
|
|
145
145
|
export declare enum ValidationExceptionReason {
|
|
146
146
|
CANNOT_PARSE = "CANNOT_PARSE",
|
|
147
147
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
148
|
+
INVALID_PARAMETER_COMBINATION = "INVALID_PARAMETER_COMBINATION",
|
|
148
149
|
OTHER = "OTHER",
|
|
150
|
+
PARAMETER_INCONSISTENT_WITH_SERVICE_STATE = "PARAMETER_INCONSISTENT_WITH_SERVICE_STATE",
|
|
149
151
|
UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
|
|
150
152
|
}
|
|
151
153
|
|
|
@@ -174,6 +176,17 @@ export declare namespace AnomalyReportedTimeRange {
|
|
|
174
176
|
|
|
175
177
|
const filterSensitiveLog: (obj: AnomalyReportedTimeRange) => any;
|
|
176
178
|
}
|
|
179
|
+
|
|
180
|
+
export interface AnomalyResource {
|
|
181
|
+
|
|
182
|
+
Name?: string;
|
|
183
|
+
|
|
184
|
+
Type?: string;
|
|
185
|
+
}
|
|
186
|
+
export declare namespace AnomalyResource {
|
|
187
|
+
|
|
188
|
+
const filterSensitiveLog: (obj: AnomalyResource) => any;
|
|
189
|
+
}
|
|
177
190
|
export declare enum AnomalySeverity {
|
|
178
191
|
HIGH = "HIGH",
|
|
179
192
|
LOW = "LOW",
|
|
@@ -249,9 +262,109 @@ export declare namespace CloudWatchMetricsDetail {
|
|
|
249
262
|
const filterSensitiveLog: (obj: CloudWatchMetricsDetail) => any;
|
|
250
263
|
}
|
|
251
264
|
|
|
265
|
+
export interface PerformanceInsightsMetricDimensionGroup {
|
|
266
|
+
|
|
267
|
+
Group?: string;
|
|
268
|
+
|
|
269
|
+
Dimensions?: string[];
|
|
270
|
+
|
|
271
|
+
Limit?: number;
|
|
272
|
+
}
|
|
273
|
+
export declare namespace PerformanceInsightsMetricDimensionGroup {
|
|
274
|
+
|
|
275
|
+
const filterSensitiveLog: (obj: PerformanceInsightsMetricDimensionGroup) => any;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export interface PerformanceInsightsMetricQuery {
|
|
279
|
+
|
|
280
|
+
Metric?: string;
|
|
281
|
+
|
|
282
|
+
GroupBy?: PerformanceInsightsMetricDimensionGroup;
|
|
283
|
+
|
|
284
|
+
Filter?: {
|
|
285
|
+
[key: string]: string;
|
|
286
|
+
};
|
|
287
|
+
}
|
|
288
|
+
export declare namespace PerformanceInsightsMetricQuery {
|
|
289
|
+
|
|
290
|
+
const filterSensitiveLog: (obj: PerformanceInsightsMetricQuery) => any;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
export interface PerformanceInsightsReferenceMetric {
|
|
294
|
+
|
|
295
|
+
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
296
|
+
}
|
|
297
|
+
export declare namespace PerformanceInsightsReferenceMetric {
|
|
298
|
+
|
|
299
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceMetric) => any;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
export interface PerformanceInsightsReferenceScalar {
|
|
303
|
+
|
|
304
|
+
Value?: number;
|
|
305
|
+
}
|
|
306
|
+
export declare namespace PerformanceInsightsReferenceScalar {
|
|
307
|
+
|
|
308
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceScalar) => any;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export interface PerformanceInsightsReferenceComparisonValues {
|
|
312
|
+
|
|
313
|
+
ReferenceScalar?: PerformanceInsightsReferenceScalar;
|
|
314
|
+
|
|
315
|
+
ReferenceMetric?: PerformanceInsightsReferenceMetric;
|
|
316
|
+
}
|
|
317
|
+
export declare namespace PerformanceInsightsReferenceComparisonValues {
|
|
318
|
+
|
|
319
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceComparisonValues) => any;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export interface PerformanceInsightsReferenceData {
|
|
323
|
+
|
|
324
|
+
Name?: string;
|
|
325
|
+
|
|
326
|
+
ComparisonValues?: PerformanceInsightsReferenceComparisonValues;
|
|
327
|
+
}
|
|
328
|
+
export declare namespace PerformanceInsightsReferenceData {
|
|
329
|
+
|
|
330
|
+
const filterSensitiveLog: (obj: PerformanceInsightsReferenceData) => any;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
export interface PerformanceInsightsStat {
|
|
334
|
+
|
|
335
|
+
Type?: string;
|
|
336
|
+
|
|
337
|
+
Value?: number;
|
|
338
|
+
}
|
|
339
|
+
export declare namespace PerformanceInsightsStat {
|
|
340
|
+
|
|
341
|
+
const filterSensitiveLog: (obj: PerformanceInsightsStat) => any;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
export interface PerformanceInsightsMetricsDetail {
|
|
345
|
+
|
|
346
|
+
MetricDisplayName?: string;
|
|
347
|
+
|
|
348
|
+
Unit?: string;
|
|
349
|
+
|
|
350
|
+
MetricQuery?: PerformanceInsightsMetricQuery;
|
|
351
|
+
|
|
352
|
+
ReferenceData?: PerformanceInsightsReferenceData[];
|
|
353
|
+
|
|
354
|
+
StatsAtAnomaly?: PerformanceInsightsStat[];
|
|
355
|
+
|
|
356
|
+
StatsAtBaseline?: PerformanceInsightsStat[];
|
|
357
|
+
}
|
|
358
|
+
export declare namespace PerformanceInsightsMetricsDetail {
|
|
359
|
+
|
|
360
|
+
const filterSensitiveLog: (obj: PerformanceInsightsMetricsDetail) => any;
|
|
361
|
+
}
|
|
362
|
+
|
|
252
363
|
export interface AnomalySourceDetails {
|
|
253
364
|
|
|
254
365
|
CloudWatchMetrics?: CloudWatchMetricsDetail[];
|
|
366
|
+
|
|
367
|
+
PerformanceInsightsMetrics?: PerformanceInsightsMetricsDetail[];
|
|
255
368
|
}
|
|
256
369
|
export declare namespace AnomalySourceDetails {
|
|
257
370
|
|
|
@@ -272,6 +385,10 @@ export declare namespace AnomalyTimeRange {
|
|
|
272
385
|
|
|
273
386
|
const filterSensitiveLog: (obj: AnomalyTimeRange) => any;
|
|
274
387
|
}
|
|
388
|
+
export declare enum AnomalyType {
|
|
389
|
+
CAUSAL = "CAUSAL",
|
|
390
|
+
CONTEXTUAL = "CONTEXTUAL"
|
|
391
|
+
}
|
|
275
392
|
export interface DescribeAccountHealthRequest {
|
|
276
393
|
}
|
|
277
394
|
export declare namespace DescribeAccountHealthRequest {
|
|
@@ -345,9 +462,22 @@ export declare namespace CloudFormationCollection {
|
|
|
345
462
|
const filterSensitiveLog: (obj: CloudFormationCollection) => any;
|
|
346
463
|
}
|
|
347
464
|
|
|
465
|
+
export interface TagCollection {
|
|
466
|
+
|
|
467
|
+
AppBoundaryKey: string | undefined;
|
|
468
|
+
|
|
469
|
+
TagValues: string[] | undefined;
|
|
470
|
+
}
|
|
471
|
+
export declare namespace TagCollection {
|
|
472
|
+
|
|
473
|
+
const filterSensitiveLog: (obj: TagCollection) => any;
|
|
474
|
+
}
|
|
475
|
+
|
|
348
476
|
export interface ResourceCollection {
|
|
349
477
|
|
|
350
478
|
CloudFormation?: CloudFormationCollection;
|
|
479
|
+
|
|
480
|
+
Tags?: TagCollection[];
|
|
351
481
|
}
|
|
352
482
|
export declare namespace ResourceCollection {
|
|
353
483
|
|
|
@@ -400,6 +530,16 @@ export interface ReactiveAnomaly {
|
|
|
400
530
|
AssociatedInsightId?: string;
|
|
401
531
|
|
|
402
532
|
ResourceCollection?: ResourceCollection;
|
|
533
|
+
|
|
534
|
+
Type?: AnomalyType | string;
|
|
535
|
+
|
|
536
|
+
Name?: string;
|
|
537
|
+
|
|
538
|
+
Description?: string;
|
|
539
|
+
|
|
540
|
+
CausalAnomalyId?: string;
|
|
541
|
+
|
|
542
|
+
AnomalyResources?: AnomalyResource[];
|
|
403
543
|
}
|
|
404
544
|
export declare namespace ReactiveAnomaly {
|
|
405
545
|
|
|
@@ -584,7 +724,8 @@ export declare namespace DescribeOrganizationOverviewResponse {
|
|
|
584
724
|
export declare enum OrganizationResourceCollectionType {
|
|
585
725
|
AWS_ACCOUNT = "AWS_ACCOUNT",
|
|
586
726
|
AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
|
|
587
|
-
AWS_SERVICE = "AWS_SERVICE"
|
|
727
|
+
AWS_SERVICE = "AWS_SERVICE",
|
|
728
|
+
AWS_TAGS = "AWS_TAGS"
|
|
588
729
|
}
|
|
589
730
|
export interface DescribeOrganizationResourceCollectionHealthRequest {
|
|
590
731
|
|
|
@@ -675,6 +816,19 @@ export declare namespace ServiceHealth {
|
|
|
675
816
|
|
|
676
817
|
const filterSensitiveLog: (obj: ServiceHealth) => any;
|
|
677
818
|
}
|
|
819
|
+
|
|
820
|
+
export interface TagHealth {
|
|
821
|
+
|
|
822
|
+
AppBoundaryKey?: string;
|
|
823
|
+
|
|
824
|
+
TagValue?: string;
|
|
825
|
+
|
|
826
|
+
Insight?: InsightHealth;
|
|
827
|
+
}
|
|
828
|
+
export declare namespace TagHealth {
|
|
829
|
+
|
|
830
|
+
const filterSensitiveLog: (obj: TagHealth) => any;
|
|
831
|
+
}
|
|
678
832
|
export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
679
833
|
|
|
680
834
|
CloudFormation?: CloudFormationHealth[];
|
|
@@ -684,6 +838,8 @@ export interface DescribeOrganizationResourceCollectionHealthResponse {
|
|
|
684
838
|
Account?: AccountHealth[];
|
|
685
839
|
|
|
686
840
|
NextToken?: string;
|
|
841
|
+
|
|
842
|
+
Tags?: TagHealth[];
|
|
687
843
|
}
|
|
688
844
|
export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
|
|
689
845
|
|
|
@@ -691,7 +847,8 @@ export declare namespace DescribeOrganizationResourceCollectionHealthResponse {
|
|
|
691
847
|
}
|
|
692
848
|
export declare enum ResourceCollectionType {
|
|
693
849
|
AWS_CLOUD_FORMATION = "AWS_CLOUD_FORMATION",
|
|
694
|
-
AWS_SERVICE = "AWS_SERVICE"
|
|
850
|
+
AWS_SERVICE = "AWS_SERVICE",
|
|
851
|
+
AWS_TAGS = "AWS_TAGS"
|
|
695
852
|
}
|
|
696
853
|
export interface DescribeResourceCollectionHealthRequest {
|
|
697
854
|
|
|
@@ -705,11 +862,13 @@ export declare namespace DescribeResourceCollectionHealthRequest {
|
|
|
705
862
|
}
|
|
706
863
|
export interface DescribeResourceCollectionHealthResponse {
|
|
707
864
|
|
|
708
|
-
CloudFormation
|
|
865
|
+
CloudFormation?: CloudFormationHealth[];
|
|
709
866
|
|
|
710
867
|
Service?: ServiceHealth[];
|
|
711
868
|
|
|
712
869
|
NextToken?: string;
|
|
870
|
+
|
|
871
|
+
Tags?: TagHealth[];
|
|
713
872
|
}
|
|
714
873
|
export declare namespace DescribeResourceCollectionHealthResponse {
|
|
715
874
|
|
|
@@ -790,9 +949,22 @@ export declare namespace CloudFormationCostEstimationResourceCollectionFilter {
|
|
|
790
949
|
const filterSensitiveLog: (obj: CloudFormationCostEstimationResourceCollectionFilter) => any;
|
|
791
950
|
}
|
|
792
951
|
|
|
952
|
+
export interface TagCostEstimationResourceCollectionFilter {
|
|
953
|
+
|
|
954
|
+
AppBoundaryKey: string | undefined;
|
|
955
|
+
|
|
956
|
+
TagValues: string[] | undefined;
|
|
957
|
+
}
|
|
958
|
+
export declare namespace TagCostEstimationResourceCollectionFilter {
|
|
959
|
+
|
|
960
|
+
const filterSensitiveLog: (obj: TagCostEstimationResourceCollectionFilter) => any;
|
|
961
|
+
}
|
|
962
|
+
|
|
793
963
|
export interface CostEstimationResourceCollectionFilter {
|
|
794
964
|
|
|
795
965
|
CloudFormation?: CloudFormationCostEstimationResourceCollectionFilter;
|
|
966
|
+
|
|
967
|
+
Tags?: TagCostEstimationResourceCollectionFilter[];
|
|
796
968
|
}
|
|
797
969
|
export declare namespace CostEstimationResourceCollectionFilter {
|
|
798
970
|
|
|
@@ -851,9 +1023,22 @@ export declare namespace CloudFormationCollectionFilter {
|
|
|
851
1023
|
const filterSensitiveLog: (obj: CloudFormationCollectionFilter) => any;
|
|
852
1024
|
}
|
|
853
1025
|
|
|
1026
|
+
export interface TagCollectionFilter {
|
|
1027
|
+
|
|
1028
|
+
AppBoundaryKey: string | undefined;
|
|
1029
|
+
|
|
1030
|
+
TagValues: string[] | undefined;
|
|
1031
|
+
}
|
|
1032
|
+
export declare namespace TagCollectionFilter {
|
|
1033
|
+
|
|
1034
|
+
const filterSensitiveLog: (obj: TagCollectionFilter) => any;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
854
1037
|
export interface ResourceCollectionFilter {
|
|
855
1038
|
|
|
856
1039
|
CloudFormation?: CloudFormationCollectionFilter;
|
|
1040
|
+
|
|
1041
|
+
Tags?: TagCollectionFilter[];
|
|
857
1042
|
}
|
|
858
1043
|
export declare namespace ResourceCollectionFilter {
|
|
859
1044
|
|
|
@@ -943,6 +1128,16 @@ export interface ReactiveAnomalySummary {
|
|
|
943
1128
|
AssociatedInsightId?: string;
|
|
944
1129
|
|
|
945
1130
|
ResourceCollection?: ResourceCollection;
|
|
1131
|
+
|
|
1132
|
+
Type?: AnomalyType | string;
|
|
1133
|
+
|
|
1134
|
+
Name?: string;
|
|
1135
|
+
|
|
1136
|
+
Description?: string;
|
|
1137
|
+
|
|
1138
|
+
CausalAnomalyId?: string;
|
|
1139
|
+
|
|
1140
|
+
AnomalyResources?: AnomalyResource[];
|
|
946
1141
|
}
|
|
947
1142
|
export declare namespace ReactiveAnomalySummary {
|
|
948
1143
|
|
|
@@ -1159,6 +1354,8 @@ export interface ProactiveInsightSummary {
|
|
|
1159
1354
|
ResourceCollection?: ResourceCollection;
|
|
1160
1355
|
|
|
1161
1356
|
ServiceCollection?: ServiceCollection;
|
|
1357
|
+
|
|
1358
|
+
AssociatedResourceArns?: string[];
|
|
1162
1359
|
}
|
|
1163
1360
|
export declare namespace ProactiveInsightSummary {
|
|
1164
1361
|
|
|
@@ -1180,6 +1377,8 @@ export interface ReactiveInsightSummary {
|
|
|
1180
1377
|
ResourceCollection?: ResourceCollection;
|
|
1181
1378
|
|
|
1182
1379
|
ServiceCollection?: ServiceCollection;
|
|
1380
|
+
|
|
1381
|
+
AssociatedResourceArns?: string[];
|
|
1183
1382
|
}
|
|
1184
1383
|
export declare namespace ReactiveInsightSummary {
|
|
1185
1384
|
|
|
@@ -1370,6 +1569,8 @@ export interface RecommendationRelatedAnomaly {
|
|
|
1370
1569
|
Resources?: RecommendationRelatedAnomalyResource[];
|
|
1371
1570
|
|
|
1372
1571
|
SourceDetails?: RecommendationRelatedAnomalySourceDetail[];
|
|
1572
|
+
|
|
1573
|
+
AnomalyId?: string;
|
|
1373
1574
|
}
|
|
1374
1575
|
export declare namespace RecommendationRelatedAnomaly {
|
|
1375
1576
|
|
|
@@ -1572,9 +1773,22 @@ export declare namespace UpdateCloudFormationCollectionFilter {
|
|
|
1572
1773
|
const filterSensitiveLog: (obj: UpdateCloudFormationCollectionFilter) => any;
|
|
1573
1774
|
}
|
|
1574
1775
|
|
|
1776
|
+
export interface UpdateTagCollectionFilter {
|
|
1777
|
+
|
|
1778
|
+
AppBoundaryKey: string | undefined;
|
|
1779
|
+
|
|
1780
|
+
TagValues: string[] | undefined;
|
|
1781
|
+
}
|
|
1782
|
+
export declare namespace UpdateTagCollectionFilter {
|
|
1783
|
+
|
|
1784
|
+
const filterSensitiveLog: (obj: UpdateTagCollectionFilter) => any;
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1575
1787
|
export interface UpdateResourceCollectionFilter {
|
|
1576
1788
|
|
|
1577
1789
|
CloudFormation?: UpdateCloudFormationCollectionFilter;
|
|
1790
|
+
|
|
1791
|
+
Tags?: UpdateTagCollectionFilter[];
|
|
1578
1792
|
}
|
|
1579
1793
|
export declare namespace UpdateResourceCollectionFilter {
|
|
1580
1794
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-devops-guru",
|
|
3
3
|
"description": "AWS SDK for JavaScript Devops Guru Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.46.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn build:cjs && yarn build:es && yarn build:types",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.json",
|
|
8
|
-
"build:docs": "
|
|
8
|
+
"build:docs": "typedoc",
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
11
12
|
"clean": "yarn clean:dist && yarn clean:docs",
|
|
12
|
-
"clean:dist": "rimraf ./dist",
|
|
13
|
-
"clean:docs": "rimraf ./docs"
|
|
14
|
-
"downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
|
|
15
|
-
"test": "jest --coverage --passWithNoTests"
|
|
13
|
+
"clean:dist": "rimraf ./dist-*",
|
|
14
|
+
"clean:docs": "rimraf ./docs"
|
|
16
15
|
},
|
|
17
16
|
"main": "./dist-cjs/index.js",
|
|
18
17
|
"types": "./dist-types/index.d.ts",
|
|
@@ -21,50 +20,44 @@
|
|
|
21
20
|
"dependencies": {
|
|
22
21
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
22
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
46
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
50
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
51
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.46.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.46.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.46.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.46.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.46.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.46.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.46.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.46.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.46.0",
|
|
32
|
+
"@aws-sdk/middleware-retry": "3.46.0",
|
|
33
|
+
"@aws-sdk/middleware-serde": "3.46.0",
|
|
34
|
+
"@aws-sdk/middleware-signing": "3.46.0",
|
|
35
|
+
"@aws-sdk/middleware-stack": "3.46.0",
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "3.46.0",
|
|
37
|
+
"@aws-sdk/node-config-provider": "3.46.0",
|
|
38
|
+
"@aws-sdk/node-http-handler": "3.46.0",
|
|
39
|
+
"@aws-sdk/protocol-http": "3.46.0",
|
|
40
|
+
"@aws-sdk/smithy-client": "3.46.0",
|
|
41
|
+
"@aws-sdk/types": "3.46.0",
|
|
42
|
+
"@aws-sdk/url-parser": "3.46.0",
|
|
43
|
+
"@aws-sdk/util-base64-browser": "3.46.0",
|
|
44
|
+
"@aws-sdk/util-base64-node": "3.46.0",
|
|
45
|
+
"@aws-sdk/util-body-length-browser": "3.46.0",
|
|
46
|
+
"@aws-sdk/util-body-length-node": "3.46.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.46.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.46.0",
|
|
49
|
+
"@aws-sdk/util-utf8-browser": "3.46.0",
|
|
50
|
+
"@aws-sdk/util-utf8-node": "3.46.0",
|
|
52
51
|
"tslib": "^2.3.0",
|
|
53
52
|
"uuid": "^8.3.2"
|
|
54
53
|
},
|
|
55
54
|
"devDependencies": {
|
|
56
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
55
|
+
"@aws-sdk/service-client-documentation-generator": "3.46.0",
|
|
57
56
|
"@types/node": "^12.7.5",
|
|
58
|
-
"@types/uuid": "^8.3.0"
|
|
59
|
-
"downlevel-dts": "0.7.0",
|
|
60
|
-
"jest": "^26.1.0",
|
|
61
|
-
"rimraf": "^3.0.0",
|
|
62
|
-
"ts-jest": "^26.4.1",
|
|
63
|
-
"typedoc": "^0.19.2",
|
|
64
|
-
"typescript": "~4.3.5"
|
|
57
|
+
"@types/uuid": "^8.3.0"
|
|
65
58
|
},
|
|
66
59
|
"engines": {
|
|
67
|
-
"node": ">=
|
|
60
|
+
"node": ">=12.0.0"
|
|
68
61
|
},
|
|
69
62
|
"typesVersions": {
|
|
70
63
|
"<4.0": {
|