@aws-sdk/client-fsx 3.56.0 → 3.64.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 CHANGED
@@ -3,6 +3,36 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.64.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.63.0...v3.64.0) (2022-04-05)
7
+
8
+
9
+ ### Features
10
+
11
+ * **client-fsx:** Provide customers more visibility into file system status by adding new "Misconfigured Unavailable" status for Amazon FSx for Windows File Server. ([c921027](https://github.com/aws/aws-sdk-js-v3/commit/c921027a293f7f1c5e1300ad541070b6a01e7fbc))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.60.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.59.0...v3.60.0) (2022-03-30)
18
+
19
+
20
+ ### Features
21
+
22
+ * **client-fsx:** This release adds support for modifying throughput capacity for FSx for ONTAP file systems. ([4619832](https://github.com/aws/aws-sdk-js-v3/commit/4619832b1c2059c731d944c82d14dcd28bc3a482))
23
+
24
+
25
+
26
+
27
+
28
+ # [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
29
+
30
+ **Note:** Version bump only for package @aws-sdk/client-fsx
31
+
32
+
33
+
34
+
35
+
6
36
  # [3.56.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.55.0...v3.56.0) (2022-03-24)
7
37
 
8
38
  **Note:** Version bump only for package @aws-sdk/client-fsx
@@ -80,6 +80,7 @@ var FileSystemLifecycle;
80
80
  FileSystemLifecycle["DELETING"] = "DELETING";
81
81
  FileSystemLifecycle["FAILED"] = "FAILED";
82
82
  FileSystemLifecycle["MISCONFIGURED"] = "MISCONFIGURED";
83
+ FileSystemLifecycle["MISCONFIGURED_UNAVAILABLE"] = "MISCONFIGURED_UNAVAILABLE";
83
84
  FileSystemLifecycle["UPDATING"] = "UPDATING";
84
85
  })(FileSystemLifecycle = exports.FileSystemLifecycle || (exports.FileSystemLifecycle = {}));
85
86
  var DataCompressionType;
@@ -3590,6 +3590,8 @@ const serializeAws_json1_1UpdateFileSystemOntapConfiguration = (input, context)
3590
3590
  }),
3591
3591
  ...(input.FsxAdminPassword !== undefined &&
3592
3592
  input.FsxAdminPassword !== null && { FsxAdminPassword: input.FsxAdminPassword }),
3593
+ ...(input.ThroughputCapacity !== undefined &&
3594
+ input.ThroughputCapacity !== null && { ThroughputCapacity: input.ThroughputCapacity }),
3593
3595
  ...(input.WeeklyMaintenanceStartTime !== undefined &&
3594
3596
  input.WeeklyMaintenanceStartTime !== null && { WeeklyMaintenanceStartTime: input.WeeklyMaintenanceStartTime }),
3595
3597
  };
@@ -67,6 +67,7 @@ export var FileSystemLifecycle;
67
67
  FileSystemLifecycle["DELETING"] = "DELETING";
68
68
  FileSystemLifecycle["FAILED"] = "FAILED";
69
69
  FileSystemLifecycle["MISCONFIGURED"] = "MISCONFIGURED";
70
+ FileSystemLifecycle["MISCONFIGURED_UNAVAILABLE"] = "MISCONFIGURED_UNAVAILABLE";
70
71
  FileSystemLifecycle["UPDATING"] = "UPDATING";
71
72
  })(FileSystemLifecycle || (FileSystemLifecycle = {}));
72
73
  export var DataCompressionType;
@@ -3952,7 +3952,7 @@ var serializeAws_json1_1UpdateFileSystemLustreConfiguration = function (input, c
3952
3952
  input.WeeklyMaintenanceStartTime !== null && { WeeklyMaintenanceStartTime: input.WeeklyMaintenanceStartTime }));
3953
3953
  };
3954
3954
  var serializeAws_json1_1UpdateFileSystemOntapConfiguration = function (input, context) {
3955
- return __assign(__assign(__assign(__assign(__assign({}, (input.AutomaticBackupRetentionDays !== undefined &&
3955
+ return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.AutomaticBackupRetentionDays !== undefined &&
3956
3956
  input.AutomaticBackupRetentionDays !== null && {
3957
3957
  AutomaticBackupRetentionDays: input.AutomaticBackupRetentionDays,
3958
3958
  })), (input.DailyAutomaticBackupStartTime !== undefined &&
@@ -3962,7 +3962,8 @@ var serializeAws_json1_1UpdateFileSystemOntapConfiguration = function (input, co
3962
3962
  input.DiskIopsConfiguration !== null && {
3963
3963
  DiskIopsConfiguration: serializeAws_json1_1DiskIopsConfiguration(input.DiskIopsConfiguration, context),
3964
3964
  })), (input.FsxAdminPassword !== undefined &&
3965
- input.FsxAdminPassword !== null && { FsxAdminPassword: input.FsxAdminPassword })), (input.WeeklyMaintenanceStartTime !== undefined &&
3965
+ input.FsxAdminPassword !== null && { FsxAdminPassword: input.FsxAdminPassword })), (input.ThroughputCapacity !== undefined &&
3966
+ input.ThroughputCapacity !== null && { ThroughputCapacity: input.ThroughputCapacity })), (input.WeeklyMaintenanceStartTime !== undefined &&
3966
3967
  input.WeeklyMaintenanceStartTime !== null && { WeeklyMaintenanceStartTime: input.WeeklyMaintenanceStartTime }));
3967
3968
  };
3968
3969
  var serializeAws_json1_1UpdateFileSystemOpenZFSConfiguration = function (input, context) {
@@ -234,7 +234,7 @@ export declare class FSx extends FSxClient {
234
234
  * an initial lifecycle state of <code>CREATING</code>.</p>
235
235
  * </li>
236
236
  * <li>
237
- * <p>Returns the description of the file system.</p>
237
+ * <p>Returns the description of the file system in JSON format.</p>
238
238
  * </li>
239
239
  * </ul>
240
240
  *
@@ -784,6 +784,11 @@ export declare class FSx extends FSxClient {
784
784
  * </li>
785
785
  * <li>
786
786
  * <p>
787
+ * <code>ThroughputCapacity</code>
788
+ * </p>
789
+ * </li>
790
+ * <li>
791
+ * <p>
787
792
  * <code>WeeklyMaintenanceStartTime</code>
788
793
  * </p>
789
794
  * </li>
@@ -44,7 +44,7 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
44
44
  * an initial lifecycle state of <code>CREATING</code>.</p>
45
45
  * </li>
46
46
  * <li>
47
- * <p>Returns the description of the file system.</p>
47
+ * <p>Returns the description of the file system in JSON format.</p>
48
48
  * </li>
49
49
  * </ul>
50
50
  *
@@ -112,6 +112,11 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
112
112
  * </li>
113
113
  * <li>
114
114
  * <p>
115
+ * <code>ThroughputCapacity</code>
116
+ * </p>
117
+ * </li>
118
+ * <li>
119
+ * <p>
115
120
  * <code>WeeklyMaintenanceStartTime</code>
116
121
  * </p>
117
122
  * </li>
@@ -115,6 +115,7 @@ export declare enum FileSystemLifecycle {
115
115
  DELETING = "DELETING",
116
116
  FAILED = "FAILED",
117
117
  MISCONFIGURED = "MISCONFIGURED",
118
+ MISCONFIGURED_UNAVAILABLE = "MISCONFIGURED_UNAVAILABLE",
118
119
  UPDATING = "UPDATING"
119
120
  }
120
121
  export declare enum DataCompressionType {
@@ -581,7 +582,7 @@ export interface OntapFileSystemConfiguration {
581
582
  */
582
583
  RouteTableIds?: string[];
583
584
  /**
584
- * <p>The sustained throughput of an Amazon FSx file system in MBps.</p>
585
+ * <p>The sustained throughput of an Amazon FSx file system in Megabytes per second (MBps).</p>
585
586
  */
586
587
  ThroughputCapacity?: number;
587
588
  /**
@@ -1244,7 +1245,7 @@ export declare enum OpenZFSDataCompressionType {
1244
1245
  ZSTD = "ZSTD"
1245
1246
  }
1246
1247
  /**
1247
- * <p>Specifies who can mount the file system and the options that can be used while
1248
+ * <p>Specifies who can mount an OpenZFS file system and the options available while
1248
1249
  * mounting the file system.</p>
1249
1250
  */
1250
1251
  export interface OpenZFSClientConfiguration {
@@ -1801,13 +1802,29 @@ export interface CopyBackupRequest {
1801
1802
  */
1802
1803
  SourceRegion?: string;
1803
1804
  /**
1804
- * <p>The ID of the Key Management Service (KMS) key used to encrypt the file
1805
- * system's data for Amazon FSx for Windows File Server file systems, Amazon FSx for NetApp ONTAP file systems, and Amazon FSx for Lustre
1806
- * <code>PERSISTENT_1</code> and <code>PERSISTENT_2</code> file systems at rest. If this ID
1807
- * isn't specified, the key managed by Amazon FSx is used. The Amazon FSx for Lustre
1808
- * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> file systems are always encrypted at
1809
- * rest using Amazon FSx-managed keys. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a>
1810
- * in the <i>Key Management Service API Reference</i>.</p>
1805
+ * <p>Specifies the ID of the Key Management Service (KMS) key to use for encrypting data on
1806
+ * Amazon FSx file systems, as follows:</p>
1807
+ * <ul>
1808
+ * <li>
1809
+ * <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
1810
+ * and <code>PERSISTENT_2</code> deployment types only.</p>
1811
+ * <p>
1812
+ * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
1813
+ * the Amazon FSx service KMS key for your account.</p>
1814
+ * </li>
1815
+ * <li>
1816
+ * <p>Amazon FSx for NetApp ONTAP</p>
1817
+ * </li>
1818
+ * <li>
1819
+ * <p>Amazon FSx for OpenZFS</p>
1820
+ * </li>
1821
+ * <li>
1822
+ * <p>Amazon FSx for Windows File Server</p>
1823
+ * </li>
1824
+ * </ul>
1825
+ * <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
1826
+ * For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
1827
+ * <i>Key Management Service API Reference</i>.</p>
1811
1828
  */
1812
1829
  KmsKeyId?: string;
1813
1830
  /**
@@ -3548,13 +3565,29 @@ export interface CreateFileSystemRequest {
3548
3565
  */
3549
3566
  Tags?: Tag[];
3550
3567
  /**
3551
- * <p>The ID of the Key Management Service (KMS) key used to encrypt the file
3552
- * system's data for Amazon FSx for Windows File Server file systems, Amazon FSx for NetApp ONTAP file systems, and Amazon FSx for Lustre
3553
- * <code>PERSISTENT_1</code> and <code>PERSISTENT_2</code> file systems at rest. If this ID
3554
- * isn't specified, the key managed by Amazon FSx is used. The Amazon FSx for Lustre
3555
- * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> file systems are always encrypted at
3556
- * rest using Amazon FSx-managed keys. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a>
3557
- * in the <i>Key Management Service API Reference</i>.</p>
3568
+ * <p>Specifies the ID of the Key Management Service (KMS) key to use for encrypting data on
3569
+ * Amazon FSx file systems, as follows:</p>
3570
+ * <ul>
3571
+ * <li>
3572
+ * <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
3573
+ * and <code>PERSISTENT_2</code> deployment types only.</p>
3574
+ * <p>
3575
+ * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
3576
+ * the Amazon FSx service KMS key for your account.</p>
3577
+ * </li>
3578
+ * <li>
3579
+ * <p>Amazon FSx for NetApp ONTAP</p>
3580
+ * </li>
3581
+ * <li>
3582
+ * <p>Amazon FSx for OpenZFS</p>
3583
+ * </li>
3584
+ * <li>
3585
+ * <p>Amazon FSx for Windows File Server</p>
3586
+ * </li>
3587
+ * </ul>
3588
+ * <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
3589
+ * For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
3590
+ * <i>Key Management Service API Reference</i>.</p>
3558
3591
  */
3559
3592
  KmsKeyId?: string;
3560
3593
  /**
@@ -3813,13 +3846,29 @@ export interface CreateFileSystemFromBackupRequest {
3813
3846
  */
3814
3847
  StorageType?: StorageType | string;
3815
3848
  /**
3816
- * <p>The ID of the Key Management Service (KMS) key used to encrypt the file
3817
- * system's data for Amazon FSx for Windows File Server file systems, Amazon FSx for NetApp ONTAP file systems, and Amazon FSx for Lustre
3818
- * <code>PERSISTENT_1</code> and <code>PERSISTENT_2</code> file systems at rest. If this ID
3819
- * isn't specified, the key managed by Amazon FSx is used. The Amazon FSx for Lustre
3820
- * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> file systems are always encrypted at
3821
- * rest using Amazon FSx-managed keys. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a>
3822
- * in the <i>Key Management Service API Reference</i>.</p>
3849
+ * <p>Specifies the ID of the Key Management Service (KMS) key to use for encrypting data on
3850
+ * Amazon FSx file systems, as follows:</p>
3851
+ * <ul>
3852
+ * <li>
3853
+ * <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
3854
+ * and <code>PERSISTENT_2</code> deployment types only.</p>
3855
+ * <p>
3856
+ * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
3857
+ * the Amazon FSx service KMS key for your account.</p>
3858
+ * </li>
3859
+ * <li>
3860
+ * <p>Amazon FSx for NetApp ONTAP</p>
3861
+ * </li>
3862
+ * <li>
3863
+ * <p>Amazon FSx for OpenZFS</p>
3864
+ * </li>
3865
+ * <li>
3866
+ * <p>Amazon FSx for Windows File Server</p>
3867
+ * </li>
3868
+ * </ul>
3869
+ * <p>If a <code>KmsKeyId</code> isn't specified, the Amazon FSx-managed KMS key for your account is used.
3870
+ * For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
3871
+ * <i>Key Management Service API Reference</i>.</p>
3823
3872
  */
3824
3873
  KmsKeyId?: string;
3825
3874
  /**
@@ -4049,7 +4098,7 @@ export declare enum StorageVirtualMachineSubtype {
4049
4098
  SYNC_SOURCE = "SYNC_SOURCE"
4050
4099
  }
4051
4100
  /**
4052
- * <p>Describes the Amazon FSx for NetApp ONTAP storage virtual machine (SVM) configuraton.</p>
4101
+ * <p>Describes the Amazon FSx for NetApp ONTAP storage virtual machine (SVM) configuration.</p>
4053
4102
  */
4054
4103
  export interface StorageVirtualMachine {
4055
4104
  /**
@@ -5691,9 +5740,9 @@ export interface RestoreVolumeFromSnapshotRequest {
5691
5740
  * </li>
5692
5741
  * <li>
5693
5742
  * <p>
5694
- * <code>DELETE_CLONED_VOLUMES</code> - Deletes any volumes cloned from this
5695
- * volume. If there are any cloned volumes and this option isn't used,
5696
- * <code>RestoreVolumeFromSnapshot</code> fails.</p>
5743
+ * <code>DELETE_CLONED_VOLUMES</code> - Deletes any dependent clone volumes
5744
+ * created from intermediate snapshots. If there are any dependent clone volumes and this
5745
+ * option isn't used, <code>RestoreVolumeFromSnapshot</code> fails.</p>
5697
5746
  * </li>
5698
5747
  * </ul>
5699
5748
  */
@@ -5964,6 +6013,11 @@ export interface UpdateFileSystemOntapConfiguration {
5964
6013
  * the case of <code>USER_PROVISIONED</code> IOPS, the total number of SSD IOPS provisioned.</p>
5965
6014
  */
5966
6015
  DiskIopsConfiguration?: DiskIopsConfiguration;
6016
+ /**
6017
+ * <p>Specifies the throughput of an FSx for NetApp ONTAP file system, measured in megabytes per second
6018
+ * (MBps). Valid values are 128, 256, 512, 1024, or 2048 MB/s.</p>
6019
+ */
6020
+ ThroughputCapacity?: number;
5967
6021
  }
5968
6022
  export declare namespace UpdateFileSystemOntapConfiguration {
5969
6023
  /**
@@ -6255,7 +6309,7 @@ export declare namespace UpdateStorageVirtualMachineRequest {
6255
6309
  }
6256
6310
  export interface UpdateStorageVirtualMachineResponse {
6257
6311
  /**
6258
- * <p>Describes the Amazon FSx for NetApp ONTAP storage virtual machine (SVM) configuraton.</p>
6312
+ * <p>Describes the Amazon FSx for NetApp ONTAP storage virtual machine (SVM) configuration.</p>
6259
6313
  */
6260
6314
  StorageVirtualMachine?: StorageVirtualMachine;
6261
6315
  }
@@ -6594,6 +6648,11 @@ export interface FileSystem {
6594
6648
  * </li>
6595
6649
  * <li>
6596
6650
  * <p>
6651
+ * <code>MISCONFIGURED_UNAVAILABLE</code> - (Amazon FSx for Windows File Server only) The file system is
6652
+ * currently unavailable due to a change in your Active Directory configuration.</p>
6653
+ * </li>
6654
+ * <li>
6655
+ * <p>
6597
6656
  * <code>UPDATING</code> - The file system is undergoing a customer-initiated update.</p>
6598
6657
  * </li>
6599
6658
  * </ul>
@@ -6647,16 +6706,30 @@ export interface FileSystem {
6647
6706
  */
6648
6707
  DNSName?: string;
6649
6708
  /**
6650
- * <p>The ID of the Key Management Service (KMS) key used to encrypt the file
6651
- * system's data for Amazon FSx for Windows File Server file systems, Amazon FSx for NetApp ONTAP file systems, and <code>PERSISTENT</code>
6652
- * Amazon FSx for Lustre file systems at rest. If this ID isn't specified, the
6653
- * Amazon FSx-managed key for your account is used. The scratch Amazon FSx for Lustre file systems are always encrypted at rest using the Amazon
6654
- * FSx-managed key for your account. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html">Encrypt</a> in the
6655
- * <i>Key Management Service API Reference</i>.</p>
6709
+ * <p>The ID of the Key Management Service (KMS) key used to encrypt Amazon FSx file
6710
+ * system data. Used as follows with Amazon FSx file system types:</p>
6711
+ * <ul>
6712
+ * <li>
6713
+ * <p>Amazon FSx for Lustre <code>PERSISTENT_1</code>
6714
+ * and <code>PERSISTENT_2</code> deployment types only.</p>
6715
+ * <p>
6716
+ * <code>SCRATCH_1</code> and <code>SCRATCH_2</code> types are encrypted using
6717
+ * the Amazon FSx service KMS key for your account.</p>
6718
+ * </li>
6719
+ * <li>
6720
+ * <p>Amazon FSx for NetApp ONTAP</p>
6721
+ * </li>
6722
+ * <li>
6723
+ * <p>Amazon FSx for OpenZFS</p>
6724
+ * </li>
6725
+ * <li>
6726
+ * <p>Amazon FSx for Windows File Server</p>
6727
+ * </li>
6728
+ * </ul>
6656
6729
  */
6657
6730
  KmsKeyId?: string;
6658
6731
  /**
6659
- * <p>The Amazon Resource Name (ARN) for the file system resource.</p>
6732
+ * <p>The Amazon Resource Name (ARN) of the file system resource.</p>
6660
6733
  */
6661
6734
  ResourceARN?: string;
6662
6735
  /**
@@ -6666,7 +6739,7 @@ export interface FileSystem {
6666
6739
  */
6667
6740
  Tags?: Tag[];
6668
6741
  /**
6669
- * <p>The configuration for this FSx for Windows File Server file system.</p>
6742
+ * <p>The configuration for this Amazon FSx for Windows File Server file system.</p>
6670
6743
  */
6671
6744
  WindowsConfiguration?: WindowsFileSystemConfiguration;
6672
6745
  /**
@@ -6680,7 +6753,7 @@ export interface FileSystem {
6680
6753
  */
6681
6754
  AdministrativeActions?: AdministrativeAction[];
6682
6755
  /**
6683
- * <p>The configuration for this FSx for ONTAP file system.</p>
6756
+ * <p>The configuration for this Amazon FSx for NetApp ONTAP file system.</p>
6684
6757
  */
6685
6758
  OntapConfiguration?: OntapFileSystemConfiguration;
6686
6759
  /**
@@ -78,6 +78,7 @@ export declare enum FileSystemLifecycle {
78
78
  DELETING = "DELETING",
79
79
  FAILED = "FAILED",
80
80
  MISCONFIGURED = "MISCONFIGURED",
81
+ MISCONFIGURED_UNAVAILABLE = "MISCONFIGURED_UNAVAILABLE",
81
82
  UPDATING = "UPDATING"
82
83
  }
83
84
  export declare enum DataCompressionType {
@@ -2323,6 +2324,8 @@ export interface UpdateFileSystemOntapConfiguration {
2323
2324
  WeeklyMaintenanceStartTime?: string;
2324
2325
 
2325
2326
  DiskIopsConfiguration?: DiskIopsConfiguration;
2327
+
2328
+ ThroughputCapacity?: number;
2326
2329
  }
2327
2330
  export declare namespace UpdateFileSystemOntapConfiguration {
2328
2331
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-fsx",
3
3
  "description": "AWS SDK for JavaScript Fsx Client for Node.js, Browser and React Native",
4
- "version": "3.56.0",
4
+ "version": "3.64.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",
@@ -18,41 +18,41 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.56.0",
22
- "@aws-sdk/config-resolver": "3.56.0",
23
- "@aws-sdk/credential-provider-node": "3.56.0",
24
- "@aws-sdk/fetch-http-handler": "3.55.0",
21
+ "@aws-sdk/client-sts": "3.58.0",
22
+ "@aws-sdk/config-resolver": "3.58.0",
23
+ "@aws-sdk/credential-provider-node": "3.58.0",
24
+ "@aws-sdk/fetch-http-handler": "3.58.0",
25
25
  "@aws-sdk/hash-node": "3.55.0",
26
26
  "@aws-sdk/invalid-dependency": "3.55.0",
27
- "@aws-sdk/middleware-content-length": "3.55.0",
28
- "@aws-sdk/middleware-host-header": "3.55.0",
27
+ "@aws-sdk/middleware-content-length": "3.58.0",
28
+ "@aws-sdk/middleware-host-header": "3.58.0",
29
29
  "@aws-sdk/middleware-logger": "3.55.0",
30
- "@aws-sdk/middleware-retry": "3.56.0",
30
+ "@aws-sdk/middleware-retry": "3.58.0",
31
31
  "@aws-sdk/middleware-serde": "3.55.0",
32
- "@aws-sdk/middleware-signing": "3.56.0",
32
+ "@aws-sdk/middleware-signing": "3.58.0",
33
33
  "@aws-sdk/middleware-stack": "3.55.0",
34
- "@aws-sdk/middleware-user-agent": "3.55.0",
35
- "@aws-sdk/node-config-provider": "3.56.0",
36
- "@aws-sdk/node-http-handler": "3.55.0",
37
- "@aws-sdk/protocol-http": "3.55.0",
34
+ "@aws-sdk/middleware-user-agent": "3.58.0",
35
+ "@aws-sdk/node-config-provider": "3.58.0",
36
+ "@aws-sdk/node-http-handler": "3.58.0",
37
+ "@aws-sdk/protocol-http": "3.58.0",
38
38
  "@aws-sdk/smithy-client": "3.55.0",
39
39
  "@aws-sdk/types": "3.55.0",
40
40
  "@aws-sdk/url-parser": "3.55.0",
41
- "@aws-sdk/util-base64-browser": "3.55.0",
41
+ "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
45
  "@aws-sdk/util-defaults-mode-browser": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.56.0",
47
- "@aws-sdk/util-user-agent-browser": "3.55.0",
48
- "@aws-sdk/util-user-agent-node": "3.56.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.58.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.58.0",
48
+ "@aws-sdk/util-user-agent-node": "3.58.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",
50
50
  "@aws-sdk/util-utf8-node": "3.55.0",
51
51
  "tslib": "^2.3.1",
52
52
  "uuid": "^8.3.2"
53
53
  },
54
54
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.55.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.58.0",
56
56
  "@tsconfig/recommended": "1.0.1",
57
57
  "@types/node": "^12.7.5",
58
58
  "@types/uuid": "^8.3.0",