@aws-sdk/client-backup-gateway 3.298.0 → 3.300.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 (26) hide show
  1. package/dist-types/commands/AssociateGatewayToServerCommand.d.ts +4 -0
  2. package/dist-types/commands/CreateGatewayCommand.d.ts +11 -0
  3. package/dist-types/commands/DeleteGatewayCommand.d.ts +3 -0
  4. package/dist-types/commands/DeleteHypervisorCommand.d.ts +3 -0
  5. package/dist-types/commands/DisassociateGatewayFromServerCommand.d.ts +3 -0
  6. package/dist-types/commands/GetBandwidthRateLimitScheduleCommand.d.ts +3 -0
  7. package/dist-types/commands/GetGatewayCommand.d.ts +3 -0
  8. package/dist-types/commands/GetHypervisorCommand.d.ts +3 -0
  9. package/dist-types/commands/GetHypervisorPropertyMappingsCommand.d.ts +3 -0
  10. package/dist-types/commands/GetVirtualMachineCommand.d.ts +3 -0
  11. package/dist-types/commands/ImportHypervisorConfigurationCommand.d.ts +13 -0
  12. package/dist-types/commands/ListGatewaysCommand.d.ts +4 -0
  13. package/dist-types/commands/ListHypervisorsCommand.d.ts +4 -0
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  15. package/dist-types/commands/ListVirtualMachinesCommand.d.ts +5 -0
  16. package/dist-types/commands/PutBandwidthRateLimitScheduleCommand.d.ts +15 -0
  17. package/dist-types/commands/PutHypervisorPropertyMappingsCommand.d.ts +12 -0
  18. package/dist-types/commands/PutMaintenanceStartTimeCommand.d.ts +7 -0
  19. package/dist-types/commands/StartVirtualMachinesMetadataSyncCommand.d.ts +3 -0
  20. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  21. package/dist-types/commands/TestHypervisorConfigurationCommand.d.ts +6 -0
  22. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  23. package/dist-types/commands/UpdateGatewayInformationCommand.d.ts +4 -0
  24. package/dist-types/commands/UpdateGatewaySoftwareNowCommand.d.ts +3 -0
  25. package/dist-types/commands/UpdateHypervisorCommand.d.ts +8 -0
  26. package/package.json +12 -12
@@ -27,6 +27,10 @@ export interface AssociateGatewayToServerCommandOutput extends AssociateGatewayT
27
27
  * import { BackupGatewayClient, AssociateGatewayToServerCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
28
28
  * // const { BackupGatewayClient, AssociateGatewayToServerCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
29
29
  * const client = new BackupGatewayClient(config);
30
+ * const input = {
31
+ * GatewayArn: "STRING_VALUE", // required
32
+ * ServerArn: "STRING_VALUE", // required
33
+ * };
30
34
  * const command = new AssociateGatewayToServerCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,17 @@ export interface CreateGatewayCommandOutput extends CreateGatewayOutput, __Metad
27
27
  * import { BackupGatewayClient, CreateGatewayCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
28
28
  * // const { BackupGatewayClient, CreateGatewayCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
29
29
  * const client = new BackupGatewayClient(config);
30
+ * const input = {
31
+ * ActivationKey: "STRING_VALUE", // required
32
+ * GatewayDisplayName: "STRING_VALUE", // required
33
+ * GatewayType: "STRING_VALUE", // required
34
+ * Tags: [
35
+ * {
36
+ * Key: "STRING_VALUE", // required
37
+ * Value: "STRING_VALUE", // required
38
+ * },
39
+ * ],
40
+ * };
30
41
  * const command = new CreateGatewayCommand(input);
31
42
  * const response = await client.send(command);
32
43
  * ```
@@ -26,6 +26,9 @@ export interface DeleteGatewayCommandOutput extends DeleteGatewayOutput, __Metad
26
26
  * import { BackupGatewayClient, DeleteGatewayCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, DeleteGatewayCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * GatewayArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteGatewayCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface DeleteHypervisorCommandOutput extends DeleteHypervisorOutput, _
26
26
  * import { BackupGatewayClient, DeleteHypervisorCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, DeleteHypervisorCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * HypervisorArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteHypervisorCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,9 @@ export interface DisassociateGatewayFromServerCommandOutput extends Disassociate
27
27
  * import { BackupGatewayClient, DisassociateGatewayFromServerCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
28
28
  * // const { BackupGatewayClient, DisassociateGatewayFromServerCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
29
29
  * const client = new BackupGatewayClient(config);
30
+ * const input = {
31
+ * GatewayArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DisassociateGatewayFromServerCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -29,6 +29,9 @@ export interface GetBandwidthRateLimitScheduleCommandOutput extends GetBandwidth
29
29
  * import { BackupGatewayClient, GetBandwidthRateLimitScheduleCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
30
30
  * // const { BackupGatewayClient, GetBandwidthRateLimitScheduleCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
31
31
  * const client = new BackupGatewayClient(config);
32
+ * const input = {
33
+ * GatewayArn: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new GetBandwidthRateLimitScheduleCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -27,6 +27,9 @@ export interface GetGatewayCommandOutput extends GetGatewayOutput, __MetadataBea
27
27
  * import { BackupGatewayClient, GetGatewayCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
28
28
  * // const { BackupGatewayClient, GetGatewayCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
29
29
  * const client = new BackupGatewayClient(config);
30
+ * const input = {
31
+ * GatewayArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new GetGatewayCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -28,6 +28,9 @@ export interface GetHypervisorCommandOutput extends GetHypervisorOutput, __Metad
28
28
  * import { BackupGatewayClient, GetHypervisorCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
29
29
  * // const { BackupGatewayClient, GetHypervisorCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
30
30
  * const client = new BackupGatewayClient(config);
31
+ * const input = {
32
+ * HypervisorArn: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new GetHypervisorCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -28,6 +28,9 @@ export interface GetHypervisorPropertyMappingsCommandOutput extends GetHyperviso
28
28
  * import { BackupGatewayClient, GetHypervisorPropertyMappingsCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
29
29
  * // const { BackupGatewayClient, GetHypervisorPropertyMappingsCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
30
30
  * const client = new BackupGatewayClient(config);
31
+ * const input = {
32
+ * HypervisorArn: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new GetHypervisorPropertyMappingsCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -26,6 +26,9 @@ export interface GetVirtualMachineCommandOutput extends GetVirtualMachineOutput,
26
26
  * import { BackupGatewayClient, GetVirtualMachineCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, GetVirtualMachineCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetVirtualMachineCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,19 @@ export interface ImportHypervisorConfigurationCommandOutput extends ImportHyperv
26
26
  * import { BackupGatewayClient, ImportHypervisorConfigurationCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, ImportHypervisorConfigurationCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * Name: "STRING_VALUE", // required
31
+ * Host: "STRING_VALUE", // required
32
+ * Username: "STRING_VALUE",
33
+ * Password: "STRING_VALUE",
34
+ * KmsKeyArn: "STRING_VALUE",
35
+ * Tags: [
36
+ * {
37
+ * Key: "STRING_VALUE", // required
38
+ * Value: "STRING_VALUE", // required
39
+ * },
40
+ * ],
41
+ * };
29
42
  * const command = new ImportHypervisorConfigurationCommand(input);
30
43
  * const response = await client.send(command);
31
44
  * ```
@@ -26,6 +26,10 @@ export interface ListGatewaysCommandOutput extends ListGatewaysOutput, __Metadat
26
26
  * import { BackupGatewayClient, ListGatewaysCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, ListGatewaysCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListGatewaysCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface ListHypervisorsCommandOutput extends ListHypervisorsOutput, __M
26
26
  * import { BackupGatewayClient, ListHypervisorsCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, ListHypervisorsCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListHypervisorsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -27,6 +27,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
27
27
  * import { BackupGatewayClient, ListTagsForResourceCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
28
28
  * // const { BackupGatewayClient, ListTagsForResourceCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
29
29
  * const client = new BackupGatewayClient(config);
30
+ * const input = {
31
+ * ResourceArn: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new ListTagsForResourceCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,11 @@ export interface ListVirtualMachinesCommandOutput extends ListVirtualMachinesOut
26
26
  * import { BackupGatewayClient, ListVirtualMachinesCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, ListVirtualMachinesCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * HypervisorArn: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListVirtualMachinesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -29,6 +29,21 @@ export interface PutBandwidthRateLimitScheduleCommandOutput extends PutBandwidth
29
29
  * import { BackupGatewayClient, PutBandwidthRateLimitScheduleCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
30
30
  * // const { BackupGatewayClient, PutBandwidthRateLimitScheduleCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
31
31
  * const client = new BackupGatewayClient(config);
32
+ * const input = {
33
+ * GatewayArn: "STRING_VALUE", // required
34
+ * BandwidthRateLimitIntervals: [ // required
35
+ * {
36
+ * AverageUploadRateLimitInBitsPerSec: Number("long"),
37
+ * StartHourOfDay: Number("int"), // required
38
+ * EndHourOfDay: Number("int"), // required
39
+ * StartMinuteOfHour: Number("int"), // required
40
+ * EndMinuteOfHour: Number("int"), // required
41
+ * DaysOfWeek: [ // required
42
+ * Number("int"),
43
+ * ],
44
+ * },
45
+ * ],
46
+ * };
32
47
  * const command = new PutBandwidthRateLimitScheduleCommand(input);
33
48
  * const response = await client.send(command);
34
49
  * ```
@@ -28,6 +28,18 @@ export interface PutHypervisorPropertyMappingsCommandOutput extends PutHyperviso
28
28
  * import { BackupGatewayClient, PutHypervisorPropertyMappingsCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
29
29
  * // const { BackupGatewayClient, PutHypervisorPropertyMappingsCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
30
30
  * const client = new BackupGatewayClient(config);
31
+ * const input = {
32
+ * HypervisorArn: "STRING_VALUE", // required
33
+ * VmwareToAwsTagMappings: [ // required
34
+ * {
35
+ * VmwareCategory: "STRING_VALUE", // required
36
+ * VmwareTagName: "STRING_VALUE", // required
37
+ * AwsTagKey: "STRING_VALUE", // required
38
+ * AwsTagValue: "STRING_VALUE", // required
39
+ * },
40
+ * ],
41
+ * IamRoleArn: "STRING_VALUE", // required
42
+ * };
31
43
  * const command = new PutHypervisorPropertyMappingsCommand(input);
32
44
  * const response = await client.send(command);
33
45
  * ```
@@ -26,6 +26,13 @@ export interface PutMaintenanceStartTimeCommandOutput extends PutMaintenanceStar
26
26
  * import { BackupGatewayClient, PutMaintenanceStartTimeCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, PutMaintenanceStartTimeCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * GatewayArn: "STRING_VALUE", // required
31
+ * HourOfDay: Number("int"), // required
32
+ * MinuteOfHour: Number("int"), // required
33
+ * DayOfWeek: Number("int"),
34
+ * DayOfMonth: Number("int"),
35
+ * };
29
36
  * const command = new PutMaintenanceStartTimeCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,9 @@ export interface StartVirtualMachinesMetadataSyncCommandOutput extends StartVirt
26
26
  * import { BackupGatewayClient, StartVirtualMachinesMetadataSyncCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, StartVirtualMachinesMetadataSyncCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * HypervisorArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StartVirtualMachinesMetadataSyncCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,15 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
26
26
  * import { BackupGatewayClient, TagResourceCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, TagResourceCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * ResourceARN: "STRING_VALUE", // required
31
+ * Tags: [ // required
32
+ * {
33
+ * Key: "STRING_VALUE", // required
34
+ * Value: "STRING_VALUE", // required
35
+ * },
36
+ * ],
37
+ * };
29
38
  * const command = new TagResourceCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -27,6 +27,12 @@ export interface TestHypervisorConfigurationCommandOutput extends TestHypervisor
27
27
  * import { BackupGatewayClient, TestHypervisorConfigurationCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
28
28
  * // const { BackupGatewayClient, TestHypervisorConfigurationCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
29
29
  * const client = new BackupGatewayClient(config);
30
+ * const input = {
31
+ * GatewayArn: "STRING_VALUE", // required
32
+ * Host: "STRING_VALUE", // required
33
+ * Username: "STRING_VALUE",
34
+ * Password: "STRING_VALUE",
35
+ * };
30
36
  * const command = new TestHypervisorConfigurationCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
26
26
  * import { BackupGatewayClient, UntagResourceCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
27
27
  * // const { BackupGatewayClient, UntagResourceCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
28
28
  * const client = new BackupGatewayClient(config);
29
+ * const input = {
30
+ * ResourceARN: "STRING_VALUE", // required
31
+ * TagKeys: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -27,6 +27,10 @@ export interface UpdateGatewayInformationCommandOutput extends UpdateGatewayInfo
27
27
  * import { BackupGatewayClient, UpdateGatewayInformationCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
28
28
  * // const { BackupGatewayClient, UpdateGatewayInformationCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
29
29
  * const client = new BackupGatewayClient(config);
30
+ * const input = {
31
+ * GatewayArn: "STRING_VALUE", // required
32
+ * GatewayDisplayName: "STRING_VALUE",
33
+ * };
30
34
  * const command = new UpdateGatewayInformationCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -32,6 +32,9 @@ export interface UpdateGatewaySoftwareNowCommandOutput extends UpdateGatewaySoft
32
32
  * import { BackupGatewayClient, UpdateGatewaySoftwareNowCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
33
33
  * // const { BackupGatewayClient, UpdateGatewaySoftwareNowCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
34
34
  * const client = new BackupGatewayClient(config);
35
+ * const input = {
36
+ * GatewayArn: "STRING_VALUE", // required
37
+ * };
35
38
  * const command = new UpdateGatewaySoftwareNowCommand(input);
36
39
  * const response = await client.send(command);
37
40
  * ```
@@ -28,6 +28,14 @@ export interface UpdateHypervisorCommandOutput extends UpdateHypervisorOutput, _
28
28
  * import { BackupGatewayClient, UpdateHypervisorCommand } from "@aws-sdk/client-backup-gateway"; // ES Modules import
29
29
  * // const { BackupGatewayClient, UpdateHypervisorCommand } = require("@aws-sdk/client-backup-gateway"); // CommonJS import
30
30
  * const client = new BackupGatewayClient(config);
31
+ * const input = {
32
+ * HypervisorArn: "STRING_VALUE", // required
33
+ * Host: "STRING_VALUE",
34
+ * Username: "STRING_VALUE",
35
+ * Password: "STRING_VALUE",
36
+ * Name: "STRING_VALUE",
37
+ * LogGroupArn: "STRING_VALUE",
38
+ * };
31
39
  * const command = new UpdateHypervisorCommand(input);
32
40
  * const response = await client.send(command);
33
41
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-backup-gateway",
3
3
  "description": "AWS SDK for JavaScript Backup Gateway Client for Node.js, Browser and React Native",
4
- "version": "3.298.0",
4
+ "version": "3.300.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,23 +21,23 @@
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.298.0",
25
- "@aws-sdk/config-resolver": "3.296.0",
26
- "@aws-sdk/credential-provider-node": "3.298.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
30
30
  "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.296.0",
31
+ "@aws-sdk/middleware-endpoint": "3.299.0",
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.296.0",
37
+ "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.296.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
39
+ "@aws-sdk/middleware-user-agent": "3.299.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.296.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.296.0",
54
- "@aws-sdk/util-user-agent-node": "3.296.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },