@aws-sdk/client-gamelift 3.714.0 → 3.721.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 (45) hide show
  1. package/README.md +8 -0
  2. package/dist-cjs/index.js +56 -1
  3. package/dist-es/GameLift.js +2 -0
  4. package/dist-es/commands/TerminateGameSessionCommand.js +23 -0
  5. package/dist-es/commands/index.js +1 -0
  6. package/dist-es/models/models_0.js +2 -0
  7. package/dist-es/models/models_1.js +8 -0
  8. package/dist-es/protocols/Aws_json1_1.js +24 -0
  9. package/dist-types/GameLift.d.ts +7 -0
  10. package/dist-types/GameLiftClient.d.ts +3 -2
  11. package/dist-types/commands/CreateBuildCommand.d.ts +21 -27
  12. package/dist-types/commands/CreateContainerGroupDefinitionCommand.d.ts +2 -2
  13. package/dist-types/commands/CreateFleetLocationsCommand.d.ts +3 -3
  14. package/dist-types/commands/CreateGameSessionCommand.d.ts +2 -2
  15. package/dist-types/commands/CreateScriptCommand.d.ts +12 -9
  16. package/dist-types/commands/DeleteContainerGroupDefinitionCommand.d.ts +17 -2
  17. package/dist-types/commands/DescribeComputeCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeFleetCapacityCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeFleetPortSettingsCommand.d.ts +2 -3
  20. package/dist-types/commands/DescribeGameSessionDetailsCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeGameSessionsCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeInstancesCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeRuntimeConfigurationCommand.d.ts +5 -3
  24. package/dist-types/commands/GetInstanceAccessCommand.d.ts +1 -1
  25. package/dist-types/commands/ListContainerGroupDefinitionsCommand.d.ts +1 -11
  26. package/dist-types/commands/ListFleetDeploymentsCommand.d.ts +3 -7
  27. package/dist-types/commands/SearchGameSessionsCommand.d.ts +3 -3
  28. package/dist-types/commands/StartGameSessionPlacementCommand.d.ts +2 -2
  29. package/dist-types/commands/TerminateGameSessionCommand.d.ts +160 -0
  30. package/dist-types/commands/UpdateContainerFleetCommand.d.ts +1 -1
  31. package/dist-types/commands/UpdateContainerGroupDefinitionCommand.d.ts +1 -1
  32. package/dist-types/commands/UpdateFleetPortSettingsCommand.d.ts +0 -2
  33. package/dist-types/commands/UpdateGameSessionCommand.d.ts +1 -1
  34. package/dist-types/commands/index.d.ts +1 -0
  35. package/dist-types/models/models_0.d.ts +147 -115
  36. package/dist-types/models/models_1.d.ts +88 -6
  37. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  38. package/dist-types/ts3.4/GameLift.d.ts +17 -0
  39. package/dist-types/ts3.4/GameLiftClient.d.ts +6 -0
  40. package/dist-types/ts3.4/commands/TerminateGameSessionCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +2 -0
  43. package/dist-types/ts3.4/models/models_1.d.ts +16 -0
  44. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
  45. package/package.json +12 -12
@@ -1141,6 +1141,76 @@ export interface TagResourceRequest {
1141
1141
  */
1142
1142
  export interface TagResourceResponse {
1143
1143
  }
1144
+ /**
1145
+ * @public
1146
+ * @enum
1147
+ */
1148
+ export declare const TerminationMode: {
1149
+ readonly FORCE_TERMINATE: "FORCE_TERMINATE";
1150
+ readonly TRIGGER_ON_PROCESS_TERMINATE: "TRIGGER_ON_PROCESS_TERMINATE";
1151
+ };
1152
+ /**
1153
+ * @public
1154
+ */
1155
+ export type TerminationMode = (typeof TerminationMode)[keyof typeof TerminationMode];
1156
+ /**
1157
+ * @public
1158
+ */
1159
+ export interface TerminateGameSessionInput {
1160
+ /**
1161
+ * <p>A unique identifier for the game session to be terminated. A game session ARN has the following format:
1162
+ * <code>arn:aws:gamelift:<region>::gamesession/<fleet ID>/<custom ID string or idempotency token></code>.</p>
1163
+ * @public
1164
+ */
1165
+ GameSessionId: string | undefined;
1166
+ /**
1167
+ * <p>The method to use to terminate the game session. Available methods include: </p>
1168
+ * <ul>
1169
+ * <li>
1170
+ * <p>
1171
+ * <code>TRIGGER_ON_PROCESS_TERMINATE</code> – Sends an
1172
+ * <code>OnProcessTerminate()</code> callback to the server process to initiate
1173
+ * the normal game session shutdown sequence. At a minimum, the callback method
1174
+ * must include a call to the server SDK action <code>ProcessEnding()</code>, which
1175
+ * is how the server process signals that a game session is ending. If the server
1176
+ * process doesn't call <code>ProcessEnding()</code>, this termination method won't
1177
+ * be successful.</p>
1178
+ * </li>
1179
+ * <li>
1180
+ * <p>
1181
+ * <code>FORCE_TERMINATE</code> – Takes action to stop the server process, using
1182
+ * existing methods to control how server processes run on an Amazon GameLift managed
1183
+ * compute. </p>
1184
+ * <note>
1185
+ * <p>This method is not available for game sessions that are running on
1186
+ * Anywhere fleets unless the fleet is deployed with the Amazon GameLift Agent. In this
1187
+ * scenario, a force terminate request results in an invalid or bad request
1188
+ * exception.</p>
1189
+ * </note>
1190
+ * </li>
1191
+ * </ul>
1192
+ * @public
1193
+ */
1194
+ TerminationMode: TerminationMode | undefined;
1195
+ }
1196
+ /**
1197
+ * @public
1198
+ */
1199
+ export interface TerminateGameSessionOutput {
1200
+ /**
1201
+ * <p>Properties describing a game session.</p>
1202
+ * <p>A game session in ACTIVE status can host players. When a game session ends, its status
1203
+ * is set to <code>TERMINATED</code>. </p>
1204
+ * <p>Amazon GameLift retains a game session resource for 30 days after the game session ends. You
1205
+ * can reuse idempotency token values after this time. Game session logs are retained for
1206
+ * 14 days.</p>
1207
+ * <p>
1208
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/reference-awssdk.html#reference-awssdk-resources-fleets">All APIs by task</a>
1209
+ * </p>
1210
+ * @public
1211
+ */
1212
+ GameSession?: GameSession | undefined;
1213
+ }
1144
1214
  /**
1145
1215
  * @public
1146
1216
  */
@@ -1248,7 +1318,11 @@ export interface UpdateContainerFleetInput {
1248
1318
  * fleet to the latest version of a container group definition, you can use the name value.
1249
1319
  * You can't remove a fleet's game server container group definition, you can only update
1250
1320
  * or replace it with another definition.</p>
1251
- * <p>Update a container group definition by calling <a>UpdateContainerGroupDefinition</a>. This operation creates a <a>ContainerGroupDefinition</a> resource with an incremented version. </p>
1321
+ * <p>Update a container group definition by calling
1322
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_UpdateContainerGroupDefinition.html">UpdateContainerGroupDefinition</a>.
1323
+ * This operation creates a
1324
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_ContainerGroupDefinition.html">ContainerGroupDefinition</a>
1325
+ * resource with an incremented version. </p>
1252
1326
  * @public
1253
1327
  */
1254
1328
  GameServerContainerGroupDefinitionName?: string | undefined;
@@ -1258,7 +1332,11 @@ export interface UpdateContainerFleetInput {
1258
1332
  * definition, use the ARN value and include the version number. If you're updating the
1259
1333
  * fleet to the latest version of a container group definition, you can use the name
1260
1334
  * value.</p>
1261
- * <p>Update a container group definition by calling <a>UpdateContainerGroupDefinition</a>. This operation creates a <a>ContainerGroupDefinition</a> resource with an incremented version. </p>
1335
+ * <p>Update a container group definition by calling
1336
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_UpdateContainerGroupDefinition.html">UpdateContainerGroupDefinition</a>.
1337
+ * This operation creates a
1338
+ * <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_ContainerGroupDefinition.html">ContainerGroupDefinition</a>
1339
+ * resource with an incremented version. </p>
1262
1340
  * <p>To remove a fleet's per-instance container group definition, leave this parameter empty
1263
1341
  * and use the parameter <code>RemoveAttributes</code>.</p>
1264
1342
  * @public
@@ -1438,7 +1516,7 @@ export interface UpdateFleetAttributesInput {
1438
1516
  /**
1439
1517
  * <p>The game session protection policy to apply to all new game sessions created in this
1440
1518
  * fleet. Game sessions that already exist are not affected. You can set protection for
1441
- * individual game sessions using <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_UpdateGameSession.html">UpdateGameSession</a>.</p>
1519
+ * individual game sessions using <a href="https://docs.aws.amazon.com/gamelift/latest/apireference/API_UpdateGameSession.html">UpdateGameSession</a> .</p>
1442
1520
  * <ul>
1443
1521
  * <li>
1444
1522
  * <p>
@@ -1749,12 +1827,12 @@ export interface UpdateGameSessionInput {
1749
1827
  * <ul>
1750
1828
  * <li>
1751
1829
  * <p>
1752
- * <b>NoProtection</b> -- The game session can be
1753
- * terminated during a scale-down event.</p>
1830
+ * <code>NoProtection</code> -- The game session can be terminated during a
1831
+ * scale-down event.</p>
1754
1832
  * </li>
1755
1833
  * <li>
1756
1834
  * <p>
1757
- * <b>FullProtection</b> -- If the game session is in an
1835
+ * <code>FullProtection</code> -- If the game session is in an
1758
1836
  * <code>ACTIVE</code> status, it cannot be terminated during a scale-down
1759
1837
  * event.</p>
1760
1838
  * </li>
@@ -2130,6 +2208,10 @@ export declare const StartMatchmakingOutputFilterSensitiveLog: (obj: StartMatchm
2130
2208
  * @internal
2131
2209
  */
2132
2210
  export declare const StopGameSessionPlacementOutputFilterSensitiveLog: (obj: StopGameSessionPlacementOutput) => any;
2211
+ /**
2212
+ * @internal
2213
+ */
2214
+ export declare const TerminateGameSessionOutputFilterSensitiveLog: (obj: TerminateGameSessionOutput) => any;
2133
2215
  /**
2134
2216
  * @internal
2135
2217
  */
@@ -101,6 +101,7 @@ import { StopGameSessionPlacementCommandInput, StopGameSessionPlacementCommandOu
101
101
  import { StopMatchmakingCommandInput, StopMatchmakingCommandOutput } from "../commands/StopMatchmakingCommand";
102
102
  import { SuspendGameServerGroupCommandInput, SuspendGameServerGroupCommandOutput } from "../commands/SuspendGameServerGroupCommand";
103
103
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
104
+ import { TerminateGameSessionCommandInput, TerminateGameSessionCommandOutput } from "../commands/TerminateGameSessionCommand";
104
105
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
105
106
  import { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "../commands/UpdateAliasCommand";
106
107
  import { UpdateBuildCommandInput, UpdateBuildCommandOutput } from "../commands/UpdateBuildCommand";
@@ -521,6 +522,10 @@ export declare const se_SuspendGameServerGroupCommand: (input: SuspendGameServer
521
522
  * serializeAws_json1_1TagResourceCommand
522
523
  */
523
524
  export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
525
+ /**
526
+ * serializeAws_json1_1TerminateGameSessionCommand
527
+ */
528
+ export declare const se_TerminateGameSessionCommand: (input: TerminateGameSessionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
524
529
  /**
525
530
  * serializeAws_json1_1UntagResourceCommand
526
531
  */
@@ -989,6 +994,10 @@ export declare const de_SuspendGameServerGroupCommand: (output: __HttpResponse,
989
994
  * deserializeAws_json1_1TagResourceCommand
990
995
  */
991
996
  export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
997
+ /**
998
+ * deserializeAws_json1_1TerminateGameSessionCommand
999
+ */
1000
+ export declare const de_TerminateGameSessionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TerminateGameSessionCommandOutput>;
992
1001
  /**
993
1002
  * deserializeAws_json1_1UntagResourceCommand
994
1003
  */
@@ -403,6 +403,10 @@ import {
403
403
  TagResourceCommandInput,
404
404
  TagResourceCommandOutput,
405
405
  } from "./commands/TagResourceCommand";
406
+ import {
407
+ TerminateGameSessionCommandInput,
408
+ TerminateGameSessionCommandOutput,
409
+ } from "./commands/TerminateGameSessionCommand";
406
410
  import {
407
411
  UntagResourceCommandInput,
408
412
  UntagResourceCommandOutput,
@@ -1818,6 +1822,19 @@ export interface GameLift {
1818
1822
  options: __HttpHandlerOptions,
1819
1823
  cb: (err: any, data?: TagResourceCommandOutput) => void
1820
1824
  ): void;
1825
+ terminateGameSession(
1826
+ args: TerminateGameSessionCommandInput,
1827
+ options?: __HttpHandlerOptions
1828
+ ): Promise<TerminateGameSessionCommandOutput>;
1829
+ terminateGameSession(
1830
+ args: TerminateGameSessionCommandInput,
1831
+ cb: (err: any, data?: TerminateGameSessionCommandOutput) => void
1832
+ ): void;
1833
+ terminateGameSession(
1834
+ args: TerminateGameSessionCommandInput,
1835
+ options: __HttpHandlerOptions,
1836
+ cb: (err: any, data?: TerminateGameSessionCommandOutput) => void
1837
+ ): void;
1821
1838
  untagResource(
1822
1839
  args: UntagResourceCommandInput,
1823
1840
  options?: __HttpHandlerOptions
@@ -449,6 +449,10 @@ import {
449
449
  TagResourceCommandInput,
450
450
  TagResourceCommandOutput,
451
451
  } from "./commands/TagResourceCommand";
452
+ import {
453
+ TerminateGameSessionCommandInput,
454
+ TerminateGameSessionCommandOutput,
455
+ } from "./commands/TerminateGameSessionCommand";
452
456
  import {
453
457
  UntagResourceCommandInput,
454
458
  UntagResourceCommandOutput,
@@ -622,6 +626,7 @@ export type ServiceInputTypes =
622
626
  | StopMatchmakingCommandInput
623
627
  | SuspendGameServerGroupCommandInput
624
628
  | TagResourceCommandInput
629
+ | TerminateGameSessionCommandInput
625
630
  | UntagResourceCommandInput
626
631
  | UpdateAliasCommandInput
627
632
  | UpdateBuildCommandInput
@@ -740,6 +745,7 @@ export type ServiceOutputTypes =
740
745
  | StopMatchmakingCommandOutput
741
746
  | SuspendGameServerGroupCommandOutput
742
747
  | TagResourceCommandOutput
748
+ | TerminateGameSessionCommandOutput
743
749
  | UntagResourceCommandOutput
744
750
  | UpdateAliasCommandOutput
745
751
  | UpdateBuildCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GameLiftClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../GameLiftClient";
8
+ import {
9
+ TerminateGameSessionInput,
10
+ TerminateGameSessionOutput,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface TerminateGameSessionCommandInput
15
+ extends TerminateGameSessionInput {}
16
+ export interface TerminateGameSessionCommandOutput
17
+ extends TerminateGameSessionOutput,
18
+ __MetadataBearer {}
19
+ declare const TerminateGameSessionCommand_base: {
20
+ new (
21
+ input: TerminateGameSessionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ TerminateGameSessionCommandInput,
24
+ TerminateGameSessionCommandOutput,
25
+ GameLiftClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: TerminateGameSessionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ TerminateGameSessionCommandInput,
33
+ TerminateGameSessionCommandOutput,
34
+ GameLiftClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class TerminateGameSessionCommand extends TerminateGameSessionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: TerminateGameSessionInput;
44
+ output: TerminateGameSessionOutput;
45
+ };
46
+ sdk: {
47
+ input: TerminateGameSessionCommandInput;
48
+ output: TerminateGameSessionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -99,6 +99,7 @@ export * from "./StopGameSessionPlacementCommand";
99
99
  export * from "./StopMatchmakingCommand";
100
100
  export * from "./SuspendGameServerGroupCommand";
101
101
  export * from "./TagResourceCommand";
102
+ export * from "./TerminateGameSessionCommand";
102
103
  export * from "./UntagResourceCommand";
103
104
  export * from "./UpdateAliasCommand";
104
105
  export * from "./UpdateBuildCommand";
@@ -1036,7 +1036,9 @@ export declare const GameSessionStatus: {
1036
1036
  export type GameSessionStatus =
1037
1037
  (typeof GameSessionStatus)[keyof typeof GameSessionStatus];
1038
1038
  export declare const GameSessionStatusReason: {
1039
+ readonly FORCE_TERMINATED: "FORCE_TERMINATED";
1039
1040
  readonly INTERRUPTED: "INTERRUPTED";
1041
+ readonly TRIGGERED_ON_PROCESS_TERMINATE: "TRIGGERED_ON_PROCESS_TERMINATE";
1040
1042
  };
1041
1043
  export type GameSessionStatusReason =
1042
1044
  (typeof GameSessionStatusReason)[keyof typeof GameSessionStatusReason];
@@ -284,6 +284,19 @@ export interface TagResourceRequest {
284
284
  Tags: Tag[] | undefined;
285
285
  }
286
286
  export interface TagResourceResponse {}
287
+ export declare const TerminationMode: {
288
+ readonly FORCE_TERMINATE: "FORCE_TERMINATE";
289
+ readonly TRIGGER_ON_PROCESS_TERMINATE: "TRIGGER_ON_PROCESS_TERMINATE";
290
+ };
291
+ export type TerminationMode =
292
+ (typeof TerminationMode)[keyof typeof TerminationMode];
293
+ export interface TerminateGameSessionInput {
294
+ GameSessionId: string | undefined;
295
+ TerminationMode: TerminationMode | undefined;
296
+ }
297
+ export interface TerminateGameSessionOutput {
298
+ GameSession?: GameSession | undefined;
299
+ }
287
300
  export interface UntagResourceRequest {
288
301
  ResourceARN: string | undefined;
289
302
  TagKeys: string[] | undefined;
@@ -504,6 +517,9 @@ export declare const StartMatchmakingOutputFilterSensitiveLog: (
504
517
  export declare const StopGameSessionPlacementOutputFilterSensitiveLog: (
505
518
  obj: StopGameSessionPlacementOutput
506
519
  ) => any;
520
+ export declare const TerminateGameSessionOutputFilterSensitiveLog: (
521
+ obj: TerminateGameSessionOutput
522
+ ) => any;
507
523
  export declare const UpdateContainerFleetInputFilterSensitiveLog: (
508
524
  obj: UpdateContainerFleetInput
509
525
  ) => any;
@@ -407,6 +407,10 @@ import {
407
407
  TagResourceCommandInput,
408
408
  TagResourceCommandOutput,
409
409
  } from "../commands/TagResourceCommand";
410
+ import {
411
+ TerminateGameSessionCommandInput,
412
+ TerminateGameSessionCommandOutput,
413
+ } from "../commands/TerminateGameSessionCommand";
410
414
  import {
411
415
  UntagResourceCommandInput,
412
416
  UntagResourceCommandOutput,
@@ -875,6 +879,10 @@ export declare const se_TagResourceCommand: (
875
879
  input: TagResourceCommandInput,
876
880
  context: __SerdeContext
877
881
  ) => Promise<__HttpRequest>;
882
+ export declare const se_TerminateGameSessionCommand: (
883
+ input: TerminateGameSessionCommandInput,
884
+ context: __SerdeContext
885
+ ) => Promise<__HttpRequest>;
878
886
  export declare const se_UntagResourceCommand: (
879
887
  input: UntagResourceCommandInput,
880
888
  context: __SerdeContext
@@ -1343,6 +1351,10 @@ export declare const de_TagResourceCommand: (
1343
1351
  output: __HttpResponse,
1344
1352
  context: __SerdeContext
1345
1353
  ) => Promise<TagResourceCommandOutput>;
1354
+ export declare const de_TerminateGameSessionCommand: (
1355
+ output: __HttpResponse,
1356
+ context: __SerdeContext
1357
+ ) => Promise<TerminateGameSessionCommandOutput>;
1346
1358
  export declare const de_UntagResourceCommand: (
1347
1359
  output: __HttpResponse,
1348
1360
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-gamelift",
3
3
  "description": "AWS SDK for JavaScript Gamelift Client for Node.js, Browser and React Native",
4
- "version": "3.714.0",
4
+ "version": "3.721.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-gamelift",
@@ -20,40 +20,40 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.714.0",
24
- "@aws-sdk/client-sts": "3.714.0",
25
- "@aws-sdk/core": "3.714.0",
26
- "@aws-sdk/credential-provider-node": "3.714.0",
23
+ "@aws-sdk/client-sso-oidc": "3.721.0",
24
+ "@aws-sdk/client-sts": "3.721.0",
25
+ "@aws-sdk/core": "3.716.0",
26
+ "@aws-sdk/credential-provider-node": "3.721.0",
27
27
  "@aws-sdk/middleware-host-header": "3.714.0",
28
28
  "@aws-sdk/middleware-logger": "3.714.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.714.0",
30
- "@aws-sdk/middleware-user-agent": "3.714.0",
30
+ "@aws-sdk/middleware-user-agent": "3.721.0",
31
31
  "@aws-sdk/region-config-resolver": "3.714.0",
32
32
  "@aws-sdk/types": "3.714.0",
33
33
  "@aws-sdk/util-endpoints": "3.714.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.714.0",
35
- "@aws-sdk/util-user-agent-node": "3.714.0",
35
+ "@aws-sdk/util-user-agent-node": "3.721.0",
36
36
  "@smithy/config-resolver": "^3.0.13",
37
37
  "@smithy/core": "^2.5.5",
38
38
  "@smithy/fetch-http-handler": "^4.1.2",
39
39
  "@smithy/hash-node": "^3.0.11",
40
40
  "@smithy/invalid-dependency": "^3.0.11",
41
41
  "@smithy/middleware-content-length": "^3.0.13",
42
- "@smithy/middleware-endpoint": "^3.2.5",
43
- "@smithy/middleware-retry": "^3.0.30",
42
+ "@smithy/middleware-endpoint": "^3.2.6",
43
+ "@smithy/middleware-retry": "^3.0.31",
44
44
  "@smithy/middleware-serde": "^3.0.11",
45
45
  "@smithy/middleware-stack": "^3.0.11",
46
46
  "@smithy/node-config-provider": "^3.1.12",
47
47
  "@smithy/node-http-handler": "^3.3.2",
48
48
  "@smithy/protocol-http": "^4.1.8",
49
- "@smithy/smithy-client": "^3.5.0",
49
+ "@smithy/smithy-client": "^3.5.1",
50
50
  "@smithy/types": "^3.7.2",
51
51
  "@smithy/url-parser": "^3.0.11",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.30",
56
- "@smithy/util-defaults-mode-node": "^3.0.30",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.31",
56
+ "@smithy/util-defaults-mode-node": "^3.0.31",
57
57
  "@smithy/util-endpoints": "^2.1.7",
58
58
  "@smithy/util-middleware": "^3.0.11",
59
59
  "@smithy/util-retry": "^3.0.11",