@aws-sdk/client-application-signals 3.896.0 → 3.900.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 (50) hide show
  1. package/README.md +41 -19
  2. package/dist-cjs/index.js +373 -0
  3. package/dist-es/ApplicationSignals.js +10 -0
  4. package/dist-es/commands/DeleteGroupingConfigurationCommand.js +22 -0
  5. package/dist-es/commands/ListAuditFindingsCommand.js +22 -0
  6. package/dist-es/commands/ListGroupingAttributeDefinitionsCommand.js +22 -0
  7. package/dist-es/commands/ListServiceStatesCommand.js +22 -0
  8. package/dist-es/commands/PutGroupingConfigurationCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +26 -0
  11. package/dist-es/pagination/ListServiceStatesPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_restJson1.js +250 -0
  14. package/dist-types/ApplicationSignals.d.ts +38 -19
  15. package/dist-types/ApplicationSignalsClient.d.ts +8 -21
  16. package/dist-types/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.d.ts +1 -11
  17. package/dist-types/commands/CreateServiceLevelObjectiveCommand.d.ts +2 -90
  18. package/dist-types/commands/DeleteGroupingConfigurationCommand.d.ts +79 -0
  19. package/dist-types/commands/GetServiceCommand.d.ts +8 -0
  20. package/dist-types/commands/ListAuditFindingsCommand.d.ts +181 -0
  21. package/dist-types/commands/ListGroupingAttributeDefinitionsCommand.d.ts +93 -0
  22. package/dist-types/commands/ListServiceDependenciesCommand.d.ts +1 -4
  23. package/dist-types/commands/ListServiceDependentsCommand.d.ts +1 -2
  24. package/dist-types/commands/ListServiceLevelObjectivesCommand.d.ts +2 -2
  25. package/dist-types/commands/ListServiceOperationsCommand.d.ts +1 -2
  26. package/dist-types/commands/ListServiceStatesCommand.d.ts +124 -0
  27. package/dist-types/commands/ListServicesCommand.d.ts +9 -3
  28. package/dist-types/commands/PutGroupingConfigurationCommand.d.ts +102 -0
  29. package/dist-types/commands/StartDiscoveryCommand.d.ts +1 -44
  30. package/dist-types/commands/TagResourceCommand.d.ts +1 -10
  31. package/dist-types/commands/UpdateServiceLevelObjectiveCommand.d.ts +2 -4
  32. package/dist-types/commands/index.d.ts +5 -0
  33. package/dist-types/index.d.ts +1 -19
  34. package/dist-types/models/models_0.d.ts +812 -1114
  35. package/dist-types/pagination/ListServiceStatesPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +1 -0
  37. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  38. package/dist-types/ts3.4/ApplicationSignals.d.ts +87 -0
  39. package/dist-types/ts3.4/ApplicationSignalsClient.d.ts +30 -0
  40. package/dist-types/ts3.4/commands/DeleteGroupingConfigurationCommand.d.ts +47 -0
  41. package/dist-types/ts3.4/commands/ListAuditFindingsCommand.d.ts +50 -0
  42. package/dist-types/ts3.4/commands/ListGroupingAttributeDefinitionsCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/ListServiceStatesCommand.d.ts +50 -0
  44. package/dist-types/ts3.4/commands/PutGroupingConfigurationCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  46. package/dist-types/ts3.4/models/models_0.d.ts +193 -1
  47. package/dist-types/ts3.4/pagination/ListServiceStatesPaginator.d.ts +11 -0
  48. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  50. package/package.json +11 -11
@@ -280,6 +280,7 @@ export declare class ResourceNotFoundException extends __BaseException {
280
280
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
281
281
  );
282
282
  }
283
+ export interface DeleteGroupingConfigurationOutput {}
283
284
  export interface GetServiceInput {
284
285
  StartTime: Date | undefined;
285
286
  EndTime: Date | undefined;
@@ -292,9 +293,16 @@ export interface MetricReference {
292
293
  MetricName: string | undefined;
293
294
  AccountId?: string | undefined;
294
295
  }
296
+ export interface ServiceGroup {
297
+ GroupName: string | undefined;
298
+ GroupValue: string | undefined;
299
+ GroupSource: string | undefined;
300
+ GroupIdentifier: string | undefined;
301
+ }
295
302
  export interface Service {
296
303
  KeyAttributes: Record<string, string> | undefined;
297
304
  AttributeMaps?: Record<string, string>[] | undefined;
305
+ ServiceGroups?: ServiceGroup[] | undefined;
298
306
  MetricReferences: MetricReference[] | undefined;
299
307
  LogGroupReferences?: Record<string, string>[] | undefined;
300
308
  }
@@ -304,6 +312,139 @@ export interface GetServiceOutput {
304
312
  EndTime: Date | undefined;
305
313
  LogGroupReferences?: Record<string, string>[] | undefined;
306
314
  }
315
+ export interface ServiceEntity {
316
+ Type?: string | undefined;
317
+ Name?: string | undefined;
318
+ Environment?: string | undefined;
319
+ AwsAccountId?: string | undefined;
320
+ }
321
+ export interface ServiceOperationEntity {
322
+ Service?: ServiceEntity | undefined;
323
+ Operation?: string | undefined;
324
+ MetricType?: string | undefined;
325
+ }
326
+ export interface ServiceLevelObjectiveEntity {
327
+ SloName?: string | undefined;
328
+ SloArn?: string | undefined;
329
+ }
330
+ export type AuditTargetEntity =
331
+ | AuditTargetEntity.ServiceMember
332
+ | AuditTargetEntity.ServiceOperationMember
333
+ | AuditTargetEntity.SloMember
334
+ | AuditTargetEntity.$UnknownMember;
335
+ export declare namespace AuditTargetEntity {
336
+ interface ServiceMember {
337
+ Service: ServiceEntity;
338
+ Slo?: never;
339
+ ServiceOperation?: never;
340
+ $unknown?: never;
341
+ }
342
+ interface SloMember {
343
+ Service?: never;
344
+ Slo: ServiceLevelObjectiveEntity;
345
+ ServiceOperation?: never;
346
+ $unknown?: never;
347
+ }
348
+ interface ServiceOperationMember {
349
+ Service?: never;
350
+ Slo?: never;
351
+ ServiceOperation: ServiceOperationEntity;
352
+ $unknown?: never;
353
+ }
354
+ interface $UnknownMember {
355
+ Service?: never;
356
+ Slo?: never;
357
+ ServiceOperation?: never;
358
+ $unknown: [string, any];
359
+ }
360
+ interface Visitor<T> {
361
+ Service: (value: ServiceEntity) => T;
362
+ Slo: (value: ServiceLevelObjectiveEntity) => T;
363
+ ServiceOperation: (value: ServiceOperationEntity) => T;
364
+ _: (name: string, value: any) => T;
365
+ }
366
+ const visit: <T>(value: AuditTargetEntity, visitor: Visitor<T>) => T;
367
+ }
368
+ export interface AuditTarget {
369
+ Type: string | undefined;
370
+ Data: AuditTargetEntity | undefined;
371
+ }
372
+ export interface ListAuditFindingsInput {
373
+ StartTime: Date | undefined;
374
+ EndTime: Date | undefined;
375
+ Auditors?: string[] | undefined;
376
+ AuditTargets: AuditTarget[] | undefined;
377
+ NextToken?: string | undefined;
378
+ MaxResults?: number | undefined;
379
+ }
380
+ export declare const Severity: {
381
+ readonly CRITICAL: "CRITICAL";
382
+ readonly HIGH: "HIGH";
383
+ readonly LOW: "LOW";
384
+ readonly MEDIUM: "MEDIUM";
385
+ readonly NONE: "NONE";
386
+ };
387
+ export type Severity = (typeof Severity)[keyof typeof Severity];
388
+ export interface AuditorResult {
389
+ Auditor?: string | undefined;
390
+ Description?: string | undefined;
391
+ Severity?: Severity | undefined;
392
+ }
393
+ export declare const ConnectionType: {
394
+ readonly DIRECT: "DIRECT";
395
+ readonly INDIRECT: "INDIRECT";
396
+ };
397
+ export type ConnectionType =
398
+ (typeof ConnectionType)[keyof typeof ConnectionType];
399
+ export interface Edge {
400
+ SourceNodeId?: string | undefined;
401
+ DestinationNodeId?: string | undefined;
402
+ Duration?: number | undefined;
403
+ ConnectionType?: ConnectionType | undefined;
404
+ }
405
+ export interface Node {
406
+ KeyAttributes: Record<string, string> | undefined;
407
+ Name: string | undefined;
408
+ NodeId: string | undefined;
409
+ Operation?: string | undefined;
410
+ Type?: string | undefined;
411
+ Duration?: number | undefined;
412
+ Status?: string | undefined;
413
+ }
414
+ export interface DependencyGraph {
415
+ Nodes?: Node[] | undefined;
416
+ Edges?: Edge[] | undefined;
417
+ }
418
+ export interface MetricGraph {
419
+ MetricDataQueries?: MetricDataQuery[] | undefined;
420
+ StartTime?: Date | undefined;
421
+ EndTime?: Date | undefined;
422
+ }
423
+ export interface AuditFinding {
424
+ KeyAttributes: Record<string, string> | undefined;
425
+ AuditorResults?: AuditorResult[] | undefined;
426
+ Operation?: string | undefined;
427
+ MetricGraph?: MetricGraph | undefined;
428
+ DependencyGraph?: DependencyGraph | undefined;
429
+ Type?: string | undefined;
430
+ }
431
+ export interface ListAuditFindingsOutput {
432
+ AuditFindings: AuditFinding[] | undefined;
433
+ NextToken?: string | undefined;
434
+ }
435
+ export interface ListGroupingAttributeDefinitionsInput {
436
+ NextToken?: string | undefined;
437
+ }
438
+ export interface GroupingAttributeDefinition {
439
+ GroupingName: string | undefined;
440
+ GroupingSourceKeys?: string[] | undefined;
441
+ DefaultGroupingValue?: string | undefined;
442
+ }
443
+ export interface ListGroupingAttributeDefinitionsOutput {
444
+ GroupingAttributeDefinitions: GroupingAttributeDefinition[] | undefined;
445
+ UpdatedAt?: Date | undefined;
446
+ NextToken?: string | undefined;
447
+ }
307
448
  export interface ListServiceDependenciesInput {
308
449
  StartTime: Date | undefined;
309
450
  EndTime: Date | undefined;
@@ -380,6 +521,7 @@ export interface ServiceSummary {
380
521
  KeyAttributes: Record<string, string> | undefined;
381
522
  AttributeMaps?: Record<string, string>[] | undefined;
382
523
  MetricReferences: MetricReference[] | undefined;
524
+ ServiceGroups?: ServiceGroup[] | undefined;
383
525
  }
384
526
  export interface ListServicesOutput {
385
527
  StartTime: Date | undefined;
@@ -387,6 +529,45 @@ export interface ListServicesOutput {
387
529
  ServiceSummaries: ServiceSummary[] | undefined;
388
530
  NextToken?: string | undefined;
389
531
  }
532
+ export interface AttributeFilter {
533
+ AttributeFilterName: string | undefined;
534
+ AttributeFilterValues: string[] | undefined;
535
+ }
536
+ export interface ListServiceStatesInput {
537
+ StartTime: Date | undefined;
538
+ EndTime: Date | undefined;
539
+ MaxResults?: number | undefined;
540
+ NextToken?: string | undefined;
541
+ IncludeLinkedAccounts?: boolean | undefined;
542
+ AwsAccountId?: string | undefined;
543
+ AttributeFilters?: AttributeFilter[] | undefined;
544
+ }
545
+ export declare const ChangeEventType: {
546
+ readonly DEPLOYMENT: "DEPLOYMENT";
547
+ };
548
+ export type ChangeEventType =
549
+ (typeof ChangeEventType)[keyof typeof ChangeEventType];
550
+ export interface ChangeEvent {
551
+ Timestamp: Date | undefined;
552
+ AccountId: string | undefined;
553
+ Region: string | undefined;
554
+ Entity: Record<string, string> | undefined;
555
+ ChangeEventType: ChangeEventType | undefined;
556
+ EventId: string | undefined;
557
+ UserName?: string | undefined;
558
+ EventName?: string | undefined;
559
+ }
560
+ export interface ServiceState {
561
+ AttributeFilters?: AttributeFilter[] | undefined;
562
+ Service: Record<string, string> | undefined;
563
+ LatestChangeEvents: ChangeEvent[] | undefined;
564
+ }
565
+ export interface ListServiceStatesOutput {
566
+ StartTime: Date | undefined;
567
+ EndTime: Date | undefined;
568
+ ServiceStates: ServiceState[] | undefined;
569
+ NextToken?: string | undefined;
570
+ }
390
571
  export interface ListTagsForResourceRequest {
391
572
  ResourceArn: string | undefined;
392
573
  }
@@ -397,6 +578,16 @@ export interface Tag {
397
578
  export interface ListTagsForResourceResponse {
398
579
  Tags?: Tag[] | undefined;
399
580
  }
581
+ export interface PutGroupingConfigurationInput {
582
+ GroupingAttributeDefinitions: GroupingAttributeDefinition[] | undefined;
583
+ }
584
+ export interface GroupingConfiguration {
585
+ GroupingAttributeDefinitions: GroupingAttributeDefinition[] | undefined;
586
+ UpdatedAt: Date | undefined;
587
+ }
588
+ export interface PutGroupingConfigurationOutput {
589
+ GroupingConfiguration: GroupingConfiguration | undefined;
590
+ }
400
591
  export declare class ConflictException extends __BaseException {
401
592
  readonly name: "ConflictException";
402
593
  readonly $fault: "client";
@@ -427,6 +618,7 @@ export interface ServiceLevelIndicatorMetricConfig {
427
618
  KeyAttributes?: Record<string, string> | undefined;
428
619
  OperationName?: string | undefined;
429
620
  MetricType?: ServiceLevelIndicatorMetricType | undefined;
621
+ MetricName?: string | undefined;
430
622
  Statistic?: string | undefined;
431
623
  PeriodSeconds?: number | undefined;
432
624
  MetricDataQueries?: MetricDataQuery[] | undefined;
@@ -493,9 +685,9 @@ export interface ListServiceLevelObjectivesInput {
493
685
  DependencyConfig?: DependencyConfig | undefined;
494
686
  MaxResults?: number | undefined;
495
687
  NextToken?: string | undefined;
496
- MetricSourceTypes?: MetricSourceType[] | undefined;
497
688
  IncludeLinkedAccounts?: boolean | undefined;
498
689
  SloOwnerAwsAccountId?: string | undefined;
690
+ MetricSourceTypes?: MetricSourceType[] | undefined;
499
691
  }
500
692
  export interface ServiceLevelObjectiveSummary {
501
693
  Arn: string | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListServiceStatesCommandInput,
4
+ ListServiceStatesCommandOutput,
5
+ } from "../commands/ListServiceStatesCommand";
6
+ import { ApplicationSignalsPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListServiceStates: (
8
+ config: ApplicationSignalsPaginationConfiguration,
9
+ input: ListServiceStatesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListServiceStatesCommandOutput>;
@@ -4,4 +4,5 @@ export * from "./ListServiceDependentsPaginator";
4
4
  export * from "./ListServiceLevelObjectiveExclusionWindowsPaginator";
5
5
  export * from "./ListServiceLevelObjectivesPaginator";
6
6
  export * from "./ListServiceOperationsPaginator";
7
+ export * from "./ListServiceStatesPaginator";
7
8
  export * from "./ListServicesPaginator";
@@ -15,6 +15,10 @@ import {
15
15
  CreateServiceLevelObjectiveCommandInput,
16
16
  CreateServiceLevelObjectiveCommandOutput,
17
17
  } from "../commands/CreateServiceLevelObjectiveCommand";
18
+ import {
19
+ DeleteGroupingConfigurationCommandInput,
20
+ DeleteGroupingConfigurationCommandOutput,
21
+ } from "../commands/DeleteGroupingConfigurationCommand";
18
22
  import {
19
23
  DeleteServiceLevelObjectiveCommandInput,
20
24
  DeleteServiceLevelObjectiveCommandOutput,
@@ -27,6 +31,14 @@ import {
27
31
  GetServiceLevelObjectiveCommandInput,
28
32
  GetServiceLevelObjectiveCommandOutput,
29
33
  } from "../commands/GetServiceLevelObjectiveCommand";
34
+ import {
35
+ ListAuditFindingsCommandInput,
36
+ ListAuditFindingsCommandOutput,
37
+ } from "../commands/ListAuditFindingsCommand";
38
+ import {
39
+ ListGroupingAttributeDefinitionsCommandInput,
40
+ ListGroupingAttributeDefinitionsCommandOutput,
41
+ } from "../commands/ListGroupingAttributeDefinitionsCommand";
30
42
  import {
31
43
  ListServiceDependenciesCommandInput,
32
44
  ListServiceDependenciesCommandOutput,
@@ -51,10 +63,18 @@ import {
51
63
  ListServicesCommandInput,
52
64
  ListServicesCommandOutput,
53
65
  } from "../commands/ListServicesCommand";
66
+ import {
67
+ ListServiceStatesCommandInput,
68
+ ListServiceStatesCommandOutput,
69
+ } from "../commands/ListServiceStatesCommand";
54
70
  import {
55
71
  ListTagsForResourceCommandInput,
56
72
  ListTagsForResourceCommandOutput,
57
73
  } from "../commands/ListTagsForResourceCommand";
74
+ import {
75
+ PutGroupingConfigurationCommandInput,
76
+ PutGroupingConfigurationCommandOutput,
77
+ } from "../commands/PutGroupingConfigurationCommand";
58
78
  import {
59
79
  StartDiscoveryCommandInput,
60
80
  StartDiscoveryCommandOutput,
@@ -83,6 +103,10 @@ export declare const se_CreateServiceLevelObjectiveCommand: (
83
103
  input: CreateServiceLevelObjectiveCommandInput,
84
104
  context: __SerdeContext
85
105
  ) => Promise<__HttpRequest>;
106
+ export declare const se_DeleteGroupingConfigurationCommand: (
107
+ input: DeleteGroupingConfigurationCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
86
110
  export declare const se_DeleteServiceLevelObjectiveCommand: (
87
111
  input: DeleteServiceLevelObjectiveCommandInput,
88
112
  context: __SerdeContext
@@ -95,6 +119,14 @@ export declare const se_GetServiceLevelObjectiveCommand: (
95
119
  input: GetServiceLevelObjectiveCommandInput,
96
120
  context: __SerdeContext
97
121
  ) => Promise<__HttpRequest>;
122
+ export declare const se_ListAuditFindingsCommand: (
123
+ input: ListAuditFindingsCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const se_ListGroupingAttributeDefinitionsCommand: (
127
+ input: ListGroupingAttributeDefinitionsCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
98
130
  export declare const se_ListServiceDependenciesCommand: (
99
131
  input: ListServiceDependenciesCommandInput,
100
132
  context: __SerdeContext
@@ -119,10 +151,18 @@ export declare const se_ListServicesCommand: (
119
151
  input: ListServicesCommandInput,
120
152
  context: __SerdeContext
121
153
  ) => Promise<__HttpRequest>;
154
+ export declare const se_ListServiceStatesCommand: (
155
+ input: ListServiceStatesCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
122
158
  export declare const se_ListTagsForResourceCommand: (
123
159
  input: ListTagsForResourceCommandInput,
124
160
  context: __SerdeContext
125
161
  ) => Promise<__HttpRequest>;
162
+ export declare const se_PutGroupingConfigurationCommand: (
163
+ input: PutGroupingConfigurationCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
126
166
  export declare const se_StartDiscoveryCommand: (
127
167
  input: StartDiscoveryCommandInput,
128
168
  context: __SerdeContext
@@ -151,6 +191,10 @@ export declare const de_CreateServiceLevelObjectiveCommand: (
151
191
  output: __HttpResponse,
152
192
  context: __SerdeContext
153
193
  ) => Promise<CreateServiceLevelObjectiveCommandOutput>;
194
+ export declare const de_DeleteGroupingConfigurationCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<DeleteGroupingConfigurationCommandOutput>;
154
198
  export declare const de_DeleteServiceLevelObjectiveCommand: (
155
199
  output: __HttpResponse,
156
200
  context: __SerdeContext
@@ -163,6 +207,14 @@ export declare const de_GetServiceLevelObjectiveCommand: (
163
207
  output: __HttpResponse,
164
208
  context: __SerdeContext
165
209
  ) => Promise<GetServiceLevelObjectiveCommandOutput>;
210
+ export declare const de_ListAuditFindingsCommand: (
211
+ output: __HttpResponse,
212
+ context: __SerdeContext
213
+ ) => Promise<ListAuditFindingsCommandOutput>;
214
+ export declare const de_ListGroupingAttributeDefinitionsCommand: (
215
+ output: __HttpResponse,
216
+ context: __SerdeContext
217
+ ) => Promise<ListGroupingAttributeDefinitionsCommandOutput>;
166
218
  export declare const de_ListServiceDependenciesCommand: (
167
219
  output: __HttpResponse,
168
220
  context: __SerdeContext
@@ -187,10 +239,18 @@ export declare const de_ListServicesCommand: (
187
239
  output: __HttpResponse,
188
240
  context: __SerdeContext
189
241
  ) => Promise<ListServicesCommandOutput>;
242
+ export declare const de_ListServiceStatesCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<ListServiceStatesCommandOutput>;
190
246
  export declare const de_ListTagsForResourceCommand: (
191
247
  output: __HttpResponse,
192
248
  context: __SerdeContext
193
249
  ) => Promise<ListTagsForResourceCommandOutput>;
250
+ export declare const de_PutGroupingConfigurationCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<PutGroupingConfigurationCommandOutput>;
194
254
  export declare const de_StartDiscoveryCommand: (
195
255
  output: __HttpResponse,
196
256
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-application-signals",
3
3
  "description": "AWS SDK for JavaScript Application Signals Client for Node.js, Browser and React Native",
4
- "version": "3.896.0",
4
+ "version": "3.900.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-application-signals",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.896.0",
24
- "@aws-sdk/credential-provider-node": "3.896.0",
23
+ "@aws-sdk/core": "3.899.0",
24
+ "@aws-sdk/credential-provider-node": "3.899.0",
25
25
  "@aws-sdk/middleware-host-header": "3.893.0",
26
26
  "@aws-sdk/middleware-logger": "3.893.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.893.0",
28
- "@aws-sdk/middleware-user-agent": "3.896.0",
28
+ "@aws-sdk/middleware-user-agent": "3.899.0",
29
29
  "@aws-sdk/region-config-resolver": "3.893.0",
30
30
  "@aws-sdk/types": "3.893.0",
31
31
  "@aws-sdk/util-endpoints": "3.895.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.893.0",
33
- "@aws-sdk/util-user-agent-node": "3.896.0",
33
+ "@aws-sdk/util-user-agent-node": "3.899.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
- "@smithy/core": "^3.12.0",
35
+ "@smithy/core": "^3.13.0",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.4",
41
- "@smithy/middleware-retry": "^4.3.0",
40
+ "@smithy/middleware-endpoint": "^4.2.5",
41
+ "@smithy/middleware-retry": "^4.3.1",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
44
  "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.4",
47
+ "@smithy/smithy-client": "^4.6.5",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.4",
54
- "@smithy/util-defaults-mode-node": "^4.1.4",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.5",
54
+ "@smithy/util-defaults-mode-node": "^4.1.5",
55
55
  "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
57
  "@smithy/util-retry": "^4.1.2",