@aws-sdk/client-pi 3.388.0 → 3.392.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.
Files changed (58) hide show
  1. package/README.md +63 -7
  2. package/dist-cjs/PI.js +14 -0
  3. package/dist-cjs/commands/CreatePerformanceAnalysisReportCommand.js +46 -0
  4. package/dist-cjs/commands/DeletePerformanceAnalysisReportCommand.js +46 -0
  5. package/dist-cjs/commands/GetPerformanceAnalysisReportCommand.js +47 -0
  6. package/dist-cjs/commands/ListPerformanceAnalysisReportsCommand.js +46 -0
  7. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  8. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  9. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  10. package/dist-cjs/commands/index.js +7 -0
  11. package/dist-cjs/endpoint/ruleset.js +1 -1
  12. package/dist-cjs/models/models_0.js +49 -1
  13. package/dist-cjs/pagination/ListPerformanceAnalysisReportsPaginator.js +29 -0
  14. package/dist-cjs/pagination/index.js +1 -0
  15. package/dist-cjs/protocols/Aws_json1_1.js +417 -1
  16. package/dist-es/PI.js +14 -0
  17. package/dist-es/commands/CreatePerformanceAnalysisReportCommand.js +42 -0
  18. package/dist-es/commands/DeletePerformanceAnalysisReportCommand.js +42 -0
  19. package/dist-es/commands/GetPerformanceAnalysisReportCommand.js +43 -0
  20. package/dist-es/commands/ListPerformanceAnalysisReportsCommand.js +42 -0
  21. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  22. package/dist-es/commands/TagResourceCommand.js +42 -0
  23. package/dist-es/commands/UntagResourceCommand.js +42 -0
  24. package/dist-es/commands/index.js +7 -0
  25. package/dist-es/endpoint/ruleset.js +1 -1
  26. package/dist-es/models/models_0.js +44 -0
  27. package/dist-es/pagination/ListPerformanceAnalysisReportsPaginator.js +25 -0
  28. package/dist-es/pagination/index.js +1 -0
  29. package/dist-es/protocols/Aws_json1_1.js +402 -0
  30. package/dist-types/PI.d.ts +49 -0
  31. package/dist-types/PIClient.d.ts +9 -2
  32. package/dist-types/commands/CreatePerformanceAnalysisReportCommand.d.ts +92 -0
  33. package/dist-types/commands/DeletePerformanceAnalysisReportCommand.d.ts +82 -0
  34. package/dist-types/commands/GetPerformanceAnalysisReportCommand.d.ts +180 -0
  35. package/dist-types/commands/ListPerformanceAnalysisReportsCommand.d.ts +101 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
  37. package/dist-types/commands/TagResourceCommand.d.ts +87 -0
  38. package/dist-types/commands/UntagResourceCommand.d.ts +84 -0
  39. package/dist-types/commands/index.d.ts +7 -0
  40. package/dist-types/models/models_0.d.ts +633 -51
  41. package/dist-types/pagination/ListPerformanceAnalysisReportsPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/protocols/Aws_json1_1.d.ts +63 -0
  44. package/dist-types/ts3.4/PI.d.ts +119 -0
  45. package/dist-types/ts3.4/PIClient.d.ts +44 -2
  46. package/dist-types/ts3.4/commands/CreatePerformanceAnalysisReportCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/DeletePerformanceAnalysisReportCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/GetPerformanceAnalysisReportCommand.d.ts +42 -0
  49. package/dist-types/ts3.4/commands/ListPerformanceAnalysisReportsCommand.d.ts +42 -0
  50. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  51. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  52. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  53. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  54. package/dist-types/ts3.4/models/models_0.d.ts +171 -29
  55. package/dist-types/ts3.4/pagination/ListPerformanceAnalysisReportsPaginator.d.ts +11 -0
  56. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  57. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +84 -0
  58. package/package.json +28 -28
@@ -1,19 +1,107 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { PIServiceException as __BaseException } from "./PIServiceException";
3
+ export declare const AcceptLanguage: {
4
+ readonly EN_US: "EN_US";
5
+ };
6
+ export type AcceptLanguage =
7
+ (typeof AcceptLanguage)[keyof typeof AcceptLanguage];
8
+ export interface PerformanceInsightsMetric {
9
+ Metric?: string;
10
+ DisplayName?: string;
11
+ Dimensions?: Record<string, string>;
12
+ Value?: number;
13
+ }
14
+ export interface Data {
15
+ PerformanceInsightsMetric?: PerformanceInsightsMetric;
16
+ }
17
+ export declare const ContextType: {
18
+ readonly CAUSAL: "CAUSAL";
19
+ readonly CONTEXTUAL: "CONTEXTUAL";
20
+ };
21
+ export type ContextType = (typeof ContextType)[keyof typeof ContextType];
22
+ export interface Recommendation {
23
+ RecommendationId?: string;
24
+ RecommendationDescription?: string;
25
+ }
26
+ export declare const Severity: {
27
+ readonly HIGH: "HIGH";
28
+ readonly LOW: "LOW";
29
+ readonly MEDIUM: "MEDIUM";
30
+ };
31
+ export type Severity = (typeof Severity)[keyof typeof Severity];
32
+ export declare const ServiceType: {
33
+ readonly DOCDB: "DOCDB";
34
+ readonly RDS: "RDS";
35
+ };
36
+ export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
37
+ export declare const AnalysisStatus: {
38
+ readonly FAILED: "FAILED";
39
+ readonly RUNNING: "RUNNING";
40
+ readonly SUCCEEDED: "SUCCEEDED";
41
+ };
42
+ export type AnalysisStatus =
43
+ (typeof AnalysisStatus)[keyof typeof AnalysisStatus];
44
+ export interface Tag {
45
+ Key: string | undefined;
46
+ Value: string | undefined;
47
+ }
48
+ export interface AnalysisReportSummary {
49
+ AnalysisReportId?: string;
50
+ CreateTime?: Date;
51
+ StartTime?: Date;
52
+ EndTime?: Date;
53
+ Status?: AnalysisStatus | string;
54
+ Tags?: Tag[];
55
+ }
56
+ export interface CreatePerformanceAnalysisReportRequest {
57
+ ServiceType: ServiceType | string | undefined;
58
+ Identifier: string | undefined;
59
+ StartTime: Date | undefined;
60
+ EndTime: Date | undefined;
61
+ Tags?: Tag[];
62
+ }
63
+ export interface CreatePerformanceAnalysisReportResponse {
64
+ AnalysisReportId?: string;
65
+ }
66
+ export declare class InternalServiceError extends __BaseException {
67
+ readonly name: "InternalServiceError";
68
+ readonly $fault: "server";
69
+ Message?: string;
70
+ constructor(
71
+ opts: __ExceptionOptionType<InternalServiceError, __BaseException>
72
+ );
73
+ }
74
+ export declare class InvalidArgumentException extends __BaseException {
75
+ readonly name: "InvalidArgumentException";
76
+ readonly $fault: "client";
77
+ Message?: string;
78
+ constructor(
79
+ opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
80
+ );
81
+ }
82
+ export declare class NotAuthorizedException extends __BaseException {
83
+ readonly name: "NotAuthorizedException";
84
+ readonly $fault: "client";
85
+ Message?: string;
86
+ constructor(
87
+ opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
88
+ );
89
+ }
3
90
  export interface DataPoint {
4
91
  Timestamp: Date | undefined;
5
92
  Value: number | undefined;
6
93
  }
94
+ export interface DeletePerformanceAnalysisReportRequest {
95
+ ServiceType: ServiceType | string | undefined;
96
+ Identifier: string | undefined;
97
+ AnalysisReportId: string | undefined;
98
+ }
99
+ export interface DeletePerformanceAnalysisReportResponse {}
7
100
  export interface DimensionGroup {
8
101
  Group: string | undefined;
9
102
  Dimensions?: string[];
10
103
  Limit?: number;
11
104
  }
12
- export declare const ServiceType: {
13
- readonly DOCDB: "DOCDB";
14
- readonly RDS: "RDS";
15
- };
16
- export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
17
105
  export interface DescribeDimensionKeysRequest {
18
106
  ServiceType: ServiceType | string | undefined;
19
107
  Identifier: string | undefined;
@@ -44,30 +132,6 @@ export interface DescribeDimensionKeysResponse {
44
132
  Keys?: DimensionKeyDescription[];
45
133
  NextToken?: string;
46
134
  }
47
- export declare class InternalServiceError extends __BaseException {
48
- readonly name: "InternalServiceError";
49
- readonly $fault: "server";
50
- Message?: string;
51
- constructor(
52
- opts: __ExceptionOptionType<InternalServiceError, __BaseException>
53
- );
54
- }
55
- export declare class InvalidArgumentException extends __BaseException {
56
- readonly name: "InvalidArgumentException";
57
- readonly $fault: "client";
58
- Message?: string;
59
- constructor(
60
- opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
61
- );
62
- }
63
- export declare class NotAuthorizedException extends __BaseException {
64
- readonly name: "NotAuthorizedException";
65
- readonly $fault: "client";
66
- Message?: string;
67
- constructor(
68
- opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
69
- );
70
- }
71
135
  export declare const DetailStatus: {
72
136
  readonly AVAILABLE: "AVAILABLE";
73
137
  readonly PROCESSING: "PROCESSING";
@@ -108,6 +172,18 @@ export interface GetDimensionKeyDetailsRequest {
108
172
  export interface GetDimensionKeyDetailsResponse {
109
173
  Dimensions?: DimensionKeyDetail[];
110
174
  }
175
+ export declare const TextFormat: {
176
+ readonly MARKDOWN: "MARKDOWN";
177
+ readonly PLAIN_TEXT: "PLAIN_TEXT";
178
+ };
179
+ export type TextFormat = (typeof TextFormat)[keyof typeof TextFormat];
180
+ export interface GetPerformanceAnalysisReportRequest {
181
+ ServiceType: ServiceType | string | undefined;
182
+ Identifier: string | undefined;
183
+ AnalysisReportId: string | undefined;
184
+ TextFormat?: TextFormat | string;
185
+ AcceptLanguage?: AcceptLanguage | string;
186
+ }
111
187
  export interface GetResourceMetadataRequest {
112
188
  ServiceType: ServiceType | string | undefined;
113
189
  Identifier: string | undefined;
@@ -184,3 +260,69 @@ export interface ListAvailableResourceMetricsResponse {
184
260
  Metrics?: ResponseResourceMetric[];
185
261
  NextToken?: string;
186
262
  }
263
+ export interface ListPerformanceAnalysisReportsRequest {
264
+ ServiceType: ServiceType | string | undefined;
265
+ Identifier: string | undefined;
266
+ NextToken?: string;
267
+ MaxResults?: number;
268
+ ListTags?: boolean;
269
+ }
270
+ export interface ListPerformanceAnalysisReportsResponse {
271
+ AnalysisReports?: AnalysisReportSummary[];
272
+ NextToken?: string;
273
+ }
274
+ export interface ListTagsForResourceRequest {
275
+ ServiceType: ServiceType | string | undefined;
276
+ ResourceARN: string | undefined;
277
+ }
278
+ export interface ListTagsForResourceResponse {
279
+ Tags?: Tag[];
280
+ }
281
+ export interface TagResourceRequest {
282
+ ServiceType: ServiceType | string | undefined;
283
+ ResourceARN: string | undefined;
284
+ Tags: Tag[] | undefined;
285
+ }
286
+ export interface TagResourceResponse {}
287
+ export interface UntagResourceRequest {
288
+ ServiceType: ServiceType | string | undefined;
289
+ ResourceARN: string | undefined;
290
+ TagKeys: string[] | undefined;
291
+ }
292
+ export interface UntagResourceResponse {}
293
+ export interface Insight {
294
+ InsightId: string | undefined;
295
+ InsightType?: string;
296
+ Context?: ContextType | string;
297
+ StartTime?: Date;
298
+ EndTime?: Date;
299
+ Severity?: Severity | string;
300
+ SupportingInsights?: Insight[];
301
+ Description?: string;
302
+ Recommendations?: Recommendation[];
303
+ InsightData?: Data[];
304
+ BaselineData?: Data[];
305
+ }
306
+ export interface AnalysisReport {
307
+ AnalysisReportId: string | undefined;
308
+ Identifier?: string;
309
+ ServiceType?: ServiceType | string;
310
+ CreateTime?: Date;
311
+ StartTime?: Date;
312
+ EndTime?: Date;
313
+ Status?: AnalysisStatus | string;
314
+ Insights?: Insight[];
315
+ }
316
+ export interface GetPerformanceAnalysisReportResponse {
317
+ AnalysisReport?: AnalysisReport;
318
+ }
319
+ export declare const RecommendationFilterSensitiveLog: (
320
+ obj: Recommendation
321
+ ) => any;
322
+ export declare const InsightFilterSensitiveLog: (obj: Insight) => any;
323
+ export declare const AnalysisReportFilterSensitiveLog: (
324
+ obj: AnalysisReport
325
+ ) => any;
326
+ export declare const GetPerformanceAnalysisReportResponseFilterSensitiveLog: (
327
+ obj: GetPerformanceAnalysisReportResponse
328
+ ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListPerformanceAnalysisReportsCommandInput,
4
+ ListPerformanceAnalysisReportsCommandOutput,
5
+ } from "../commands/ListPerformanceAnalysisReportsCommand";
6
+ import { PIPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListPerformanceAnalysisReports(
8
+ config: PIPaginationConfiguration,
9
+ input: ListPerformanceAnalysisReportsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListPerformanceAnalysisReportsCommandOutput>;
@@ -3,3 +3,4 @@ export * from "./GetResourceMetricsPaginator";
3
3
  export * from "./Interfaces";
4
4
  export * from "./ListAvailableResourceDimensionsPaginator";
5
5
  export * from "./ListAvailableResourceMetricsPaginator";
6
+ export * from "./ListPerformanceAnalysisReportsPaginator";
@@ -3,6 +3,14 @@ import {
3
3
  HttpResponse as __HttpResponse,
4
4
  } from "@smithy/protocol-http";
5
5
  import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreatePerformanceAnalysisReportCommandInput,
8
+ CreatePerformanceAnalysisReportCommandOutput,
9
+ } from "../commands/CreatePerformanceAnalysisReportCommand";
10
+ import {
11
+ DeletePerformanceAnalysisReportCommandInput,
12
+ DeletePerformanceAnalysisReportCommandOutput,
13
+ } from "../commands/DeletePerformanceAnalysisReportCommand";
6
14
  import {
7
15
  DescribeDimensionKeysCommandInput,
8
16
  DescribeDimensionKeysCommandOutput,
@@ -11,6 +19,10 @@ import {
11
19
  GetDimensionKeyDetailsCommandInput,
12
20
  GetDimensionKeyDetailsCommandOutput,
13
21
  } from "../commands/GetDimensionKeyDetailsCommand";
22
+ import {
23
+ GetPerformanceAnalysisReportCommandInput,
24
+ GetPerformanceAnalysisReportCommandOutput,
25
+ } from "../commands/GetPerformanceAnalysisReportCommand";
14
26
  import {
15
27
  GetResourceMetadataCommandInput,
16
28
  GetResourceMetadataCommandOutput,
@@ -27,6 +39,30 @@ import {
27
39
  ListAvailableResourceMetricsCommandInput,
28
40
  ListAvailableResourceMetricsCommandOutput,
29
41
  } from "../commands/ListAvailableResourceMetricsCommand";
42
+ import {
43
+ ListPerformanceAnalysisReportsCommandInput,
44
+ ListPerformanceAnalysisReportsCommandOutput,
45
+ } from "../commands/ListPerformanceAnalysisReportsCommand";
46
+ import {
47
+ ListTagsForResourceCommandInput,
48
+ ListTagsForResourceCommandOutput,
49
+ } from "../commands/ListTagsForResourceCommand";
50
+ import {
51
+ TagResourceCommandInput,
52
+ TagResourceCommandOutput,
53
+ } from "../commands/TagResourceCommand";
54
+ import {
55
+ UntagResourceCommandInput,
56
+ UntagResourceCommandOutput,
57
+ } from "../commands/UntagResourceCommand";
58
+ export declare const se_CreatePerformanceAnalysisReportCommand: (
59
+ input: CreatePerformanceAnalysisReportCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const se_DeletePerformanceAnalysisReportCommand: (
63
+ input: DeletePerformanceAnalysisReportCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
30
66
  export declare const se_DescribeDimensionKeysCommand: (
31
67
  input: DescribeDimensionKeysCommandInput,
32
68
  context: __SerdeContext
@@ -35,6 +71,10 @@ export declare const se_GetDimensionKeyDetailsCommand: (
35
71
  input: GetDimensionKeyDetailsCommandInput,
36
72
  context: __SerdeContext
37
73
  ) => Promise<__HttpRequest>;
74
+ export declare const se_GetPerformanceAnalysisReportCommand: (
75
+ input: GetPerformanceAnalysisReportCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
38
78
  export declare const se_GetResourceMetadataCommand: (
39
79
  input: GetResourceMetadataCommandInput,
40
80
  context: __SerdeContext
@@ -51,6 +91,30 @@ export declare const se_ListAvailableResourceMetricsCommand: (
51
91
  input: ListAvailableResourceMetricsCommandInput,
52
92
  context: __SerdeContext
53
93
  ) => Promise<__HttpRequest>;
94
+ export declare const se_ListPerformanceAnalysisReportsCommand: (
95
+ input: ListPerformanceAnalysisReportsCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const se_ListTagsForResourceCommand: (
99
+ input: ListTagsForResourceCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const se_TagResourceCommand: (
103
+ input: TagResourceCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const se_UntagResourceCommand: (
107
+ input: UntagResourceCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const de_CreatePerformanceAnalysisReportCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<CreatePerformanceAnalysisReportCommandOutput>;
114
+ export declare const de_DeletePerformanceAnalysisReportCommand: (
115
+ output: __HttpResponse,
116
+ context: __SerdeContext
117
+ ) => Promise<DeletePerformanceAnalysisReportCommandOutput>;
54
118
  export declare const de_DescribeDimensionKeysCommand: (
55
119
  output: __HttpResponse,
56
120
  context: __SerdeContext
@@ -59,6 +123,10 @@ export declare const de_GetDimensionKeyDetailsCommand: (
59
123
  output: __HttpResponse,
60
124
  context: __SerdeContext
61
125
  ) => Promise<GetDimensionKeyDetailsCommandOutput>;
126
+ export declare const de_GetPerformanceAnalysisReportCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<GetPerformanceAnalysisReportCommandOutput>;
62
130
  export declare const de_GetResourceMetadataCommand: (
63
131
  output: __HttpResponse,
64
132
  context: __SerdeContext
@@ -75,3 +143,19 @@ export declare const de_ListAvailableResourceMetricsCommand: (
75
143
  output: __HttpResponse,
76
144
  context: __SerdeContext
77
145
  ) => Promise<ListAvailableResourceMetricsCommandOutput>;
146
+ export declare const de_ListPerformanceAnalysisReportsCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<ListPerformanceAnalysisReportsCommandOutput>;
150
+ export declare const de_ListTagsForResourceCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<ListTagsForResourceCommandOutput>;
154
+ export declare const de_TagResourceCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<TagResourceCommandOutput>;
158
+ export declare const de_UntagResourceCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<UntagResourceCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-pi",
3
3
  "description": "AWS SDK for JavaScript Pi Client for Node.js, Browser and React Native",
4
- "version": "3.388.0",
4
+ "version": "3.392.0",
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",
@@ -21,37 +21,37 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.388.0",
25
- "@aws-sdk/credential-provider-node": "3.388.0",
26
- "@aws-sdk/middleware-host-header": "3.387.0",
27
- "@aws-sdk/middleware-logger": "3.387.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.387.0",
29
- "@aws-sdk/middleware-signing": "3.387.0",
30
- "@aws-sdk/middleware-user-agent": "3.387.0",
31
- "@aws-sdk/types": "3.387.0",
32
- "@aws-sdk/util-endpoints": "3.387.0",
33
- "@aws-sdk/util-user-agent-browser": "3.387.0",
34
- "@aws-sdk/util-user-agent-node": "3.387.0",
35
- "@smithy/config-resolver": "^2.0.2",
36
- "@smithy/fetch-http-handler": "^2.0.2",
37
- "@smithy/hash-node": "^2.0.2",
38
- "@smithy/invalid-dependency": "^2.0.2",
39
- "@smithy/middleware-content-length": "^2.0.2",
40
- "@smithy/middleware-endpoint": "^2.0.2",
41
- "@smithy/middleware-retry": "^2.0.2",
42
- "@smithy/middleware-serde": "^2.0.2",
24
+ "@aws-sdk/client-sts": "3.391.0",
25
+ "@aws-sdk/credential-provider-node": "3.391.0",
26
+ "@aws-sdk/middleware-host-header": "3.391.0",
27
+ "@aws-sdk/middleware-logger": "3.391.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.391.0",
29
+ "@aws-sdk/middleware-signing": "3.391.0",
30
+ "@aws-sdk/middleware-user-agent": "3.391.0",
31
+ "@aws-sdk/types": "3.391.0",
32
+ "@aws-sdk/util-endpoints": "3.391.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.391.0",
34
+ "@aws-sdk/util-user-agent-node": "3.391.0",
35
+ "@smithy/config-resolver": "^2.0.3",
36
+ "@smithy/fetch-http-handler": "^2.0.3",
37
+ "@smithy/hash-node": "^2.0.3",
38
+ "@smithy/invalid-dependency": "^2.0.3",
39
+ "@smithy/middleware-content-length": "^2.0.3",
40
+ "@smithy/middleware-endpoint": "^2.0.3",
41
+ "@smithy/middleware-retry": "^2.0.3",
42
+ "@smithy/middleware-serde": "^2.0.3",
43
43
  "@smithy/middleware-stack": "^2.0.0",
44
- "@smithy/node-config-provider": "^2.0.2",
45
- "@smithy/node-http-handler": "^2.0.2",
46
- "@smithy/protocol-http": "^2.0.2",
47
- "@smithy/smithy-client": "^2.0.2",
48
- "@smithy/types": "^2.1.0",
49
- "@smithy/url-parser": "^2.0.2",
44
+ "@smithy/node-config-provider": "^2.0.3",
45
+ "@smithy/node-http-handler": "^2.0.3",
46
+ "@smithy/protocol-http": "^2.0.3",
47
+ "@smithy/smithy-client": "^2.0.3",
48
+ "@smithy/types": "^2.2.0",
49
+ "@smithy/url-parser": "^2.0.3",
50
50
  "@smithy/util-base64": "^2.0.0",
51
51
  "@smithy/util-body-length-browser": "^2.0.0",
52
52
  "@smithy/util-body-length-node": "^2.0.0",
53
- "@smithy/util-defaults-mode-browser": "^2.0.2",
54
- "@smithy/util-defaults-mode-node": "^2.0.2",
53
+ "@smithy/util-defaults-mode-browser": "^2.0.3",
54
+ "@smithy/util-defaults-mode-node": "^2.0.3",
55
55
  "@smithy/util-retry": "^2.0.0",
56
56
  "@smithy/util-utf8": "^2.0.0",
57
57
  "tslib": "^2.5.0"