aws-sdk-fsx 1.112.0 → 1.113.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +101 -12
- data/lib/aws-sdk-fsx/client_api.rb +13 -0
- data/lib/aws-sdk-fsx/types.rb +213 -179
- data/lib/aws-sdk-fsx.rb +1 -1
- data/sig/client.rbs +15 -0
- data/sig/types.rbs +12 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc425109ee0bc0e71346ae28926ee5ff5d5ae7a81d7b6b1d491787878373b144
|
4
|
+
data.tar.gz: bdfab8392156a4fe9031e843d91c039886e5aaea4768290af87419977f273653
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fad216ddf0d56c8df0bac4efdb972e5bd625c5294a560a66c5fb6a74ddbdd99c06c8bd82ce9ca90d760466e8ba4a90036d088cc5dc178951e1cab684560dbca4
|
7
|
+
data.tar.gz: c00701689957b93386e7ed71b4ced76b72e84e2b16e7ae2d899611a571d46082bd0b44283727c2d1d63cc98513ee8acf0017ba10ef49ad7a498d832e7dad2c21
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.113.0 (2025-05-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - FSx API changes to support the public launch of new Intelligent Tiering storage class on Amazon FSx for Lustre
|
8
|
+
|
4
9
|
1.112.0 (2025-05-12)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.113.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -838,6 +838,9 @@ module Aws::FSx
|
|
838
838
|
# resp.backup.file_system.lustre_configuration.metadata_configuration.iops #=> Integer
|
839
839
|
# resp.backup.file_system.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
840
840
|
# resp.backup.file_system.lustre_configuration.efa_enabled #=> Boolean
|
841
|
+
# resp.backup.file_system.lustre_configuration.throughput_capacity #=> Integer
|
842
|
+
# resp.backup.file_system.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
843
|
+
# resp.backup.file_system.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
841
844
|
# resp.backup.file_system.administrative_actions #=> Array
|
842
845
|
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY", "VOLUME_UPDATE_WITH_SNAPSHOT", "VOLUME_INITIALIZE_WITH_SNAPSHOT", "DOWNLOAD_DATA_FROM_BACKUP"
|
843
846
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1085,6 +1088,9 @@ module Aws::FSx
|
|
1085
1088
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
1086
1089
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
1087
1090
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
1091
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
1092
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
1093
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
1088
1094
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
1089
1095
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
1090
1096
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -1333,6 +1339,9 @@ module Aws::FSx
|
|
1333
1339
|
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
1334
1340
|
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
1335
1341
|
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
1342
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
1343
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
1344
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
1336
1345
|
# resp.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
1337
1346
|
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
1338
1347
|
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -1689,6 +1698,9 @@ module Aws::FSx
|
|
1689
1698
|
# resp.backup.file_system.lustre_configuration.metadata_configuration.iops #=> Integer
|
1690
1699
|
# resp.backup.file_system.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
1691
1700
|
# resp.backup.file_system.lustre_configuration.efa_enabled #=> Boolean
|
1701
|
+
# resp.backup.file_system.lustre_configuration.throughput_capacity #=> Integer
|
1702
|
+
# resp.backup.file_system.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
1703
|
+
# resp.backup.file_system.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
1692
1704
|
# resp.backup.file_system.administrative_actions #=> Array
|
1693
1705
|
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY", "VOLUME_UPDATE_WITH_SNAPSHOT", "VOLUME_INITIALIZE_WITH_SNAPSHOT", "DOWNLOAD_DATA_FROM_BACKUP"
|
1694
1706
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1936,6 +1948,9 @@ module Aws::FSx
|
|
1936
1948
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
1937
1949
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
1938
1950
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
1951
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
1952
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
1953
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
1939
1954
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
1940
1955
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
1941
1956
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -2655,24 +2670,25 @@ module Aws::FSx
|
|
2655
2670
|
# * Set to `SSD` to use solid state drive storage. SSD is supported on
|
2656
2671
|
# all Windows, Lustre, ONTAP, and OpenZFS deployment types.
|
2657
2672
|
#
|
2658
|
-
# * Set to `HDD` to use hard disk drive storage
|
2673
|
+
# * Set to `HDD` to use hard disk drive storage, which is supported on
|
2659
2674
|
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment types,
|
2660
2675
|
# and on `PERSISTENT_1` Lustre file system deployment types.
|
2661
2676
|
#
|
2662
2677
|
# * Set to `INTELLIGENT_TIERING` to use fully elastic,
|
2663
2678
|
# intelligently-tiered storage. Intelligent-Tiering is only available
|
2664
|
-
# for OpenZFS file systems with the Multi-AZ deployment type
|
2679
|
+
# for OpenZFS file systems with the Multi-AZ deployment type and for
|
2680
|
+
# Lustre file systems with the Persistent\_2 deployment type.
|
2665
2681
|
#
|
2666
2682
|
# Default value is `SSD`. For more information, see [ Storage type
|
2667
|
-
# options][1] in the *FSx for Windows File Server User Guide*, [
|
2668
|
-
# storage
|
2669
|
-
# with Intelligent-Tiering][3] in the *Amazon FSx for OpenZFS
|
2670
|
-
# Guide*.
|
2683
|
+
# options][1] in the *FSx for Windows File Server User Guide*, [FSx for
|
2684
|
+
# Lustre storage classes][2] in the *FSx for Lustre User Guide*, and
|
2685
|
+
# [Working with Intelligent-Tiering][3] in the *Amazon FSx for OpenZFS
|
2686
|
+
# User Guide*.
|
2671
2687
|
#
|
2672
2688
|
#
|
2673
2689
|
#
|
2674
2690
|
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
2675
|
-
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/
|
2691
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-storage-classes
|
2676
2692
|
# [3]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance-intelligent-tiering
|
2677
2693
|
#
|
2678
2694
|
# @option params [required, Array<String>] :subnet_ids
|
@@ -2930,6 +2946,11 @@ module Aws::FSx
|
|
2930
2946
|
# iops: 1,
|
2931
2947
|
# mode: "AUTOMATIC", # required, accepts AUTOMATIC, USER_PROVISIONED
|
2932
2948
|
# },
|
2949
|
+
# throughput_capacity: 1,
|
2950
|
+
# data_read_cache_configuration: {
|
2951
|
+
# sizing_mode: "NO_CACHE", # accepts NO_CACHE, USER_PROVISIONED, PROPORTIONAL_TO_THROUGHPUT_CAPACITY
|
2952
|
+
# size_gi_b: 1,
|
2953
|
+
# },
|
2933
2954
|
# },
|
2934
2955
|
# ontap_configuration: {
|
2935
2956
|
# automatic_backup_retention_days: 1,
|
@@ -3064,6 +3085,9 @@ module Aws::FSx
|
|
3064
3085
|
# resp.file_system.lustre_configuration.metadata_configuration.iops #=> Integer
|
3065
3086
|
# resp.file_system.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
3066
3087
|
# resp.file_system.lustre_configuration.efa_enabled #=> Boolean
|
3088
|
+
# resp.file_system.lustre_configuration.throughput_capacity #=> Integer
|
3089
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
3090
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
3067
3091
|
# resp.file_system.administrative_actions #=> Array
|
3068
3092
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY", "VOLUME_UPDATE_WITH_SNAPSHOT", "VOLUME_INITIALIZE_WITH_SNAPSHOT", "DOWNLOAD_DATA_FROM_BACKUP"
|
3069
3093
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -3299,8 +3323,9 @@ module Aws::FSx
|
|
3299
3323
|
# </note>
|
3300
3324
|
#
|
3301
3325
|
# @option params [String] :storage_type
|
3302
|
-
# Sets the storage type for the Windows or
|
3303
|
-
# you're creating from a backup. Valid values are `SSD
|
3326
|
+
# Sets the storage type for the Windows, OpenZFS, or Lustre file system
|
3327
|
+
# that you're creating from a backup. Valid values are `SSD`, `HDD`,
|
3328
|
+
# and `INTELLIGENT_TIERING`.
|
3304
3329
|
#
|
3305
3330
|
# * Set to `SSD` to use solid state drive storage. SSD is supported on
|
3306
3331
|
# all Windows and OpenZFS deployment types.
|
@@ -3309,6 +3334,11 @@ module Aws::FSx
|
|
3309
3334
|
# `SINGLE_AZ_2` and `MULTI_AZ_1` FSx for Windows File Server file
|
3310
3335
|
# system deployment types.
|
3311
3336
|
#
|
3337
|
+
# * Set to `INTELLIGENT_TIERING` to use fully elastic,
|
3338
|
+
# intelligently-tiered storage. Intelligent-Tiering is only available
|
3339
|
+
# for OpenZFS file systems with the Multi-AZ deployment type and for
|
3340
|
+
# Lustre file systems with the Persistent\_2 deployment type.
|
3341
|
+
#
|
3312
3342
|
# The default value is `SSD`.
|
3313
3343
|
#
|
3314
3344
|
# <note markdown="1"> HDD and SSD storage types have different minimum storage capacity
|
@@ -3496,6 +3526,11 @@ module Aws::FSx
|
|
3496
3526
|
# iops: 1,
|
3497
3527
|
# mode: "AUTOMATIC", # required, accepts AUTOMATIC, USER_PROVISIONED
|
3498
3528
|
# },
|
3529
|
+
# throughput_capacity: 1,
|
3530
|
+
# data_read_cache_configuration: {
|
3531
|
+
# sizing_mode: "NO_CACHE", # accepts NO_CACHE, USER_PROVISIONED, PROPORTIONAL_TO_THROUGHPUT_CAPACITY
|
3532
|
+
# size_gi_b: 1,
|
3533
|
+
# },
|
3499
3534
|
# },
|
3500
3535
|
# storage_type: "SSD", # accepts SSD, HDD, INTELLIGENT_TIERING
|
3501
3536
|
# kms_key_id: "KmsKeyId",
|
@@ -3616,6 +3651,9 @@ module Aws::FSx
|
|
3616
3651
|
# resp.file_system.lustre_configuration.metadata_configuration.iops #=> Integer
|
3617
3652
|
# resp.file_system.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
3618
3653
|
# resp.file_system.lustre_configuration.efa_enabled #=> Boolean
|
3654
|
+
# resp.file_system.lustre_configuration.throughput_capacity #=> Integer
|
3655
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
3656
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
3619
3657
|
# resp.file_system.administrative_actions #=> Array
|
3620
3658
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY", "VOLUME_UPDATE_WITH_SNAPSHOT", "VOLUME_INITIALIZE_WITH_SNAPSHOT", "DOWNLOAD_DATA_FROM_BACKUP"
|
3621
3659
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -3905,6 +3943,9 @@ module Aws::FSx
|
|
3905
3943
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
3906
3944
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
3907
3945
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
3946
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
3947
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
3948
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
3908
3949
|
# resp.snapshot.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
3909
3950
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
3910
3951
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -4391,6 +4432,9 @@ module Aws::FSx
|
|
4391
4432
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
4392
4433
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
4393
4434
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
4435
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
4436
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
4437
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
4394
4438
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
4395
4439
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
4396
4440
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -4684,6 +4728,9 @@ module Aws::FSx
|
|
4684
4728
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
4685
4729
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
4686
4730
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
4731
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
4732
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
4733
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
4687
4734
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
4688
4735
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
4689
4736
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -5446,6 +5493,9 @@ module Aws::FSx
|
|
5446
5493
|
# resp.backups[0].file_system.lustre_configuration.metadata_configuration.iops #=> Integer
|
5447
5494
|
# resp.backups[0].file_system.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
5448
5495
|
# resp.backups[0].file_system.lustre_configuration.efa_enabled #=> Boolean
|
5496
|
+
# resp.backups[0].file_system.lustre_configuration.throughput_capacity #=> Integer
|
5497
|
+
# resp.backups[0].file_system.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
5498
|
+
# resp.backups[0].file_system.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
5449
5499
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
5450
5500
|
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY", "VOLUME_UPDATE_WITH_SNAPSHOT", "VOLUME_INITIALIZE_WITH_SNAPSHOT", "DOWNLOAD_DATA_FROM_BACKUP"
|
5451
5501
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -5693,6 +5743,9 @@ module Aws::FSx
|
|
5693
5743
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
5694
5744
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
5695
5745
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
5746
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
5747
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
5748
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
5696
5749
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
5697
5750
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
5698
5751
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -6318,6 +6371,9 @@ module Aws::FSx
|
|
6318
6371
|
# resp.file_systems[0].lustre_configuration.metadata_configuration.iops #=> Integer
|
6319
6372
|
# resp.file_systems[0].lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
6320
6373
|
# resp.file_systems[0].lustre_configuration.efa_enabled #=> Boolean
|
6374
|
+
# resp.file_systems[0].lustre_configuration.throughput_capacity #=> Integer
|
6375
|
+
# resp.file_systems[0].lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
6376
|
+
# resp.file_systems[0].lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
6321
6377
|
# resp.file_systems[0].administrative_actions #=> Array
|
6322
6378
|
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY", "VOLUME_UPDATE_WITH_SNAPSHOT", "VOLUME_INITIALIZE_WITH_SNAPSHOT", "DOWNLOAD_DATA_FROM_BACKUP"
|
6323
6379
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
@@ -6641,6 +6697,9 @@ module Aws::FSx
|
|
6641
6697
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
6642
6698
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
6643
6699
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
6700
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
6701
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
6702
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
6644
6703
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
6645
6704
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
6646
6705
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -7007,6 +7066,9 @@ module Aws::FSx
|
|
7007
7066
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
7008
7067
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
7009
7068
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
7069
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
7070
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
7071
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
7010
7072
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
7011
7073
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
7012
7074
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -7341,6 +7403,9 @@ module Aws::FSx
|
|
7341
7403
|
# resp.file_system.lustre_configuration.metadata_configuration.iops #=> Integer
|
7342
7404
|
# resp.file_system.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
7343
7405
|
# resp.file_system.lustre_configuration.efa_enabled #=> Boolean
|
7406
|
+
# resp.file_system.lustre_configuration.throughput_capacity #=> Integer
|
7407
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
7408
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
7344
7409
|
# resp.file_system.administrative_actions #=> Array
|
7345
7410
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY", "VOLUME_UPDATE_WITH_SNAPSHOT", "VOLUME_INITIALIZE_WITH_SNAPSHOT", "DOWNLOAD_DATA_FROM_BACKUP"
|
7346
7411
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -7601,6 +7666,9 @@ module Aws::FSx
|
|
7601
7666
|
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
7602
7667
|
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
7603
7668
|
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
7669
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
7670
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
7671
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
7604
7672
|
# resp.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
7605
7673
|
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
7606
7674
|
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -7830,6 +7898,9 @@ module Aws::FSx
|
|
7830
7898
|
# resp.file_system.lustre_configuration.metadata_configuration.iops #=> Integer
|
7831
7899
|
# resp.file_system.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
7832
7900
|
# resp.file_system.lustre_configuration.efa_enabled #=> Boolean
|
7901
|
+
# resp.file_system.lustre_configuration.throughput_capacity #=> Integer
|
7902
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
7903
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
7833
7904
|
# resp.file_system.administrative_actions #=> Array
|
7834
7905
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY", "VOLUME_UPDATE_WITH_SNAPSHOT", "VOLUME_INITIALIZE_WITH_SNAPSHOT", "DOWNLOAD_DATA_FROM_BACKUP"
|
7835
7906
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -8228,6 +8299,8 @@ module Aws::FSx
|
|
8228
8299
|
#
|
8229
8300
|
# * `DailyAutomaticBackupStartTime`
|
8230
8301
|
#
|
8302
|
+
# * `DiskIopsConfiguration`
|
8303
|
+
#
|
8231
8304
|
# * `SelfManagedActiveDirectoryConfiguration`
|
8232
8305
|
#
|
8233
8306
|
# * `StorageCapacity`
|
@@ -8236,8 +8309,6 @@ module Aws::FSx
|
|
8236
8309
|
#
|
8237
8310
|
# * `ThroughputCapacity`
|
8238
8311
|
#
|
8239
|
-
# * `DiskIopsConfiguration`
|
8240
|
-
#
|
8241
8312
|
# * `WeeklyMaintenanceStartTime`
|
8242
8313
|
#
|
8243
8314
|
# For FSx for Lustre file systems, you can update the following
|
@@ -8255,6 +8326,8 @@ module Aws::FSx
|
|
8255
8326
|
#
|
8256
8327
|
# * `LogConfiguration`
|
8257
8328
|
#
|
8329
|
+
# * `LustreReadCacheConfiguration`
|
8330
|
+
#
|
8258
8331
|
# * `LustreRootSquashConfiguration`
|
8259
8332
|
#
|
8260
8333
|
# * `MetadataConfiguration`
|
@@ -8263,6 +8336,8 @@ module Aws::FSx
|
|
8263
8336
|
#
|
8264
8337
|
# * `StorageCapacity`
|
8265
8338
|
#
|
8339
|
+
# * `ThroughputCapacity`
|
8340
|
+
#
|
8266
8341
|
# * `WeeklyMaintenanceStartTime`
|
8267
8342
|
#
|
8268
8343
|
# For FSx for ONTAP file systems, you can update the following
|
@@ -8499,6 +8574,11 @@ module Aws::FSx
|
|
8499
8574
|
# iops: 1,
|
8500
8575
|
# mode: "AUTOMATIC", # accepts AUTOMATIC, USER_PROVISIONED
|
8501
8576
|
# },
|
8577
|
+
# throughput_capacity: 1,
|
8578
|
+
# data_read_cache_configuration: {
|
8579
|
+
# sizing_mode: "NO_CACHE", # accepts NO_CACHE, USER_PROVISIONED, PROPORTIONAL_TO_THROUGHPUT_CAPACITY
|
8580
|
+
# size_gi_b: 1,
|
8581
|
+
# },
|
8502
8582
|
# },
|
8503
8583
|
# ontap_configuration: {
|
8504
8584
|
# automatic_backup_retention_days: 1,
|
@@ -8607,6 +8687,9 @@ module Aws::FSx
|
|
8607
8687
|
# resp.file_system.lustre_configuration.metadata_configuration.iops #=> Integer
|
8608
8688
|
# resp.file_system.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
8609
8689
|
# resp.file_system.lustre_configuration.efa_enabled #=> Boolean
|
8690
|
+
# resp.file_system.lustre_configuration.throughput_capacity #=> Integer
|
8691
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
8692
|
+
# resp.file_system.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
8610
8693
|
# resp.file_system.administrative_actions #=> Array
|
8611
8694
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY", "VOLUME_UPDATE_WITH_SNAPSHOT", "VOLUME_INITIALIZE_WITH_SNAPSHOT", "DOWNLOAD_DATA_FROM_BACKUP"
|
8612
8695
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -8915,6 +8998,9 @@ module Aws::FSx
|
|
8915
8998
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
8916
8999
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
8917
9000
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
9001
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
9002
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
9003
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
8918
9004
|
# resp.snapshot.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
8919
9005
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
8920
9006
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -9341,6 +9427,9 @@ module Aws::FSx
|
|
9341
9427
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.iops #=> Integer
|
9342
9428
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.metadata_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
9343
9429
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.efa_enabled #=> Boolean
|
9430
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.throughput_capacity #=> Integer
|
9431
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.sizing_mode #=> String, one of "NO_CACHE", "USER_PROVISIONED", "PROPORTIONAL_TO_THROUGHPUT_CAPACITY"
|
9432
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_read_cache_configuration.size_gi_b #=> Integer
|
9344
9433
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
9345
9434
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
9346
9435
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -9449,7 +9538,7 @@ module Aws::FSx
|
|
9449
9538
|
tracer: tracer
|
9450
9539
|
)
|
9451
9540
|
context[:gem_name] = 'aws-sdk-fsx'
|
9452
|
-
context[:gem_version] = '1.
|
9541
|
+
context[:gem_version] = '1.113.0'
|
9453
9542
|
Seahorse::Client::Request.new(handlers, context)
|
9454
9543
|
end
|
9455
9544
|
|
@@ -263,6 +263,8 @@ module Aws::FSx
|
|
263
263
|
LustreLogCreateConfiguration = Shapes::StructureShape.new(name: 'LustreLogCreateConfiguration')
|
264
264
|
LustreNoSquashNid = Shapes::StringShape.new(name: 'LustreNoSquashNid')
|
265
265
|
LustreNoSquashNids = Shapes::ListShape.new(name: 'LustreNoSquashNids')
|
266
|
+
LustreReadCacheConfiguration = Shapes::StructureShape.new(name: 'LustreReadCacheConfiguration')
|
267
|
+
LustreReadCacheSizingMode = Shapes::StringShape.new(name: 'LustreReadCacheSizingMode')
|
266
268
|
LustreRootSquash = Shapes::StringShape.new(name: 'LustreRootSquash')
|
267
269
|
LustreRootSquashConfiguration = Shapes::StructureShape.new(name: 'LustreRootSquashConfiguration')
|
268
270
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
@@ -399,6 +401,7 @@ module Aws::FSx
|
|
399
401
|
Tags = Shapes::ListShape.new(name: 'Tags')
|
400
402
|
TaskId = Shapes::StringShape.new(name: 'TaskId')
|
401
403
|
TaskIds = Shapes::ListShape.new(name: 'TaskIds')
|
404
|
+
ThroughputCapacityMbps = Shapes::IntegerShape.new(name: 'ThroughputCapacityMbps')
|
402
405
|
ThroughputCapacityPerHAPair = Shapes::IntegerShape.new(name: 'ThroughputCapacityPerHAPair')
|
403
406
|
TieringPolicy = Shapes::StructureShape.new(name: 'TieringPolicy')
|
404
407
|
TieringPolicyName = Shapes::StringShape.new(name: 'TieringPolicyName')
|
@@ -697,6 +700,8 @@ module Aws::FSx
|
|
697
700
|
CreateFileSystemLustreConfiguration.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LustreLogCreateConfiguration, location_name: "LogConfiguration"))
|
698
701
|
CreateFileSystemLustreConfiguration.add_member(:root_squash_configuration, Shapes::ShapeRef.new(shape: LustreRootSquashConfiguration, location_name: "RootSquashConfiguration"))
|
699
702
|
CreateFileSystemLustreConfiguration.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemLustreMetadataConfiguration, location_name: "MetadataConfiguration"))
|
703
|
+
CreateFileSystemLustreConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: ThroughputCapacityMbps, location_name: "ThroughputCapacity"))
|
704
|
+
CreateFileSystemLustreConfiguration.add_member(:data_read_cache_configuration, Shapes::ShapeRef.new(shape: LustreReadCacheConfiguration, location_name: "DataReadCacheConfiguration"))
|
700
705
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
701
706
|
|
702
707
|
CreateFileSystemLustreMetadataConfiguration.add_member(:iops, Shapes::ShapeRef.new(shape: MetadataIops, location_name: "Iops"))
|
@@ -1343,6 +1348,8 @@ module Aws::FSx
|
|
1343
1348
|
LustreFileSystemConfiguration.add_member(:root_squash_configuration, Shapes::ShapeRef.new(shape: LustreRootSquashConfiguration, location_name: "RootSquashConfiguration"))
|
1344
1349
|
LustreFileSystemConfiguration.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: FileSystemLustreMetadataConfiguration, location_name: "MetadataConfiguration"))
|
1345
1350
|
LustreFileSystemConfiguration.add_member(:efa_enabled, Shapes::ShapeRef.new(shape: Flag, location_name: "EfaEnabled"))
|
1351
|
+
LustreFileSystemConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: ThroughputCapacityMbps, location_name: "ThroughputCapacity"))
|
1352
|
+
LustreFileSystemConfiguration.add_member(:data_read_cache_configuration, Shapes::ShapeRef.new(shape: LustreReadCacheConfiguration, location_name: "DataReadCacheConfiguration"))
|
1346
1353
|
LustreFileSystemConfiguration.struct_class = Types::LustreFileSystemConfiguration
|
1347
1354
|
|
1348
1355
|
LustreLogConfiguration.add_member(:level, Shapes::ShapeRef.new(shape: LustreAccessAuditLogLevel, required: true, location_name: "Level"))
|
@@ -1355,6 +1362,10 @@ module Aws::FSx
|
|
1355
1362
|
|
1356
1363
|
LustreNoSquashNids.member = Shapes::ShapeRef.new(shape: LustreNoSquashNid)
|
1357
1364
|
|
1365
|
+
LustreReadCacheConfiguration.add_member(:sizing_mode, Shapes::ShapeRef.new(shape: LustreReadCacheSizingMode, location_name: "SizingMode"))
|
1366
|
+
LustreReadCacheConfiguration.add_member(:size_gi_b, Shapes::ShapeRef.new(shape: StorageCapacity, location_name: "SizeGiB"))
|
1367
|
+
LustreReadCacheConfiguration.struct_class = Types::LustreReadCacheConfiguration
|
1368
|
+
|
1358
1369
|
LustreRootSquashConfiguration.add_member(:root_squash, Shapes::ShapeRef.new(shape: LustreRootSquash, location_name: "RootSquash"))
|
1359
1370
|
LustreRootSquashConfiguration.add_member(:no_squash_nids, Shapes::ShapeRef.new(shape: LustreNoSquashNids, location_name: "NoSquashNids"))
|
1360
1371
|
LustreRootSquashConfiguration.struct_class = Types::LustreRootSquashConfiguration
|
@@ -1714,6 +1725,8 @@ module Aws::FSx
|
|
1714
1725
|
UpdateFileSystemLustreConfiguration.add_member(:root_squash_configuration, Shapes::ShapeRef.new(shape: LustreRootSquashConfiguration, location_name: "RootSquashConfiguration"))
|
1715
1726
|
UpdateFileSystemLustreConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
1716
1727
|
UpdateFileSystemLustreConfiguration.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: UpdateFileSystemLustreMetadataConfiguration, location_name: "MetadataConfiguration"))
|
1728
|
+
UpdateFileSystemLustreConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: ThroughputCapacityMbps, location_name: "ThroughputCapacity"))
|
1729
|
+
UpdateFileSystemLustreConfiguration.add_member(:data_read_cache_configuration, Shapes::ShapeRef.new(shape: LustreReadCacheConfiguration, location_name: "DataReadCacheConfiguration"))
|
1717
1730
|
UpdateFileSystemLustreConfiguration.struct_class = Types::UpdateFileSystemLustreConfiguration
|
1718
1731
|
|
1719
1732
|
UpdateFileSystemLustreMetadataConfiguration.add_member(:iops, Shapes::ShapeRef.new(shape: MetadataIops, location_name: "Iops"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -1382,20 +1382,11 @@ module Aws::FSx
|
|
1382
1382
|
# @return [String]
|
1383
1383
|
#
|
1384
1384
|
# @!attribute [rw] weekly_maintenance_start_time
|
1385
|
-
#
|
1386
|
-
#
|
1387
|
-
#
|
1388
|
-
# represents Sunday. For further details, see [the ISO-8601 spec as
|
1389
|
-
# described on Wikipedia][1].
|
1390
|
-
#
|
1391
|
-
# `HH` is the zero-padded hour of the day (0-23), and `MM` is the
|
1392
|
-
# zero-padded minute of the hour.
|
1385
|
+
# The preferred start time to perform weekly maintenance, formatted
|
1386
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
1387
|
+
# through 7, beginning with Monday and ending with Sunday.
|
1393
1388
|
#
|
1394
1389
|
# For example, `1:05:00` specifies maintenance at 5 AM Monday.
|
1395
|
-
#
|
1396
|
-
#
|
1397
|
-
#
|
1398
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_week_date
|
1399
1390
|
# @return [String]
|
1400
1391
|
#
|
1401
1392
|
# @!attribute [rw] metadata_configuration
|
@@ -1597,8 +1588,9 @@ module Aws::FSx
|
|
1597
1588
|
# @return [Types::CreateFileSystemLustreConfiguration]
|
1598
1589
|
#
|
1599
1590
|
# @!attribute [rw] storage_type
|
1600
|
-
# Sets the storage type for the Windows or
|
1601
|
-
# you're creating from a backup. Valid values are `SSD
|
1591
|
+
# Sets the storage type for the Windows, OpenZFS, or Lustre file
|
1592
|
+
# system that you're creating from a backup. Valid values are `SSD`,
|
1593
|
+
# `HDD`, and `INTELLIGENT_TIERING`.
|
1602
1594
|
#
|
1603
1595
|
# * Set to `SSD` to use solid state drive storage. SSD is supported on
|
1604
1596
|
# all Windows and OpenZFS deployment types.
|
@@ -1607,6 +1599,12 @@ module Aws::FSx
|
|
1607
1599
|
# `SINGLE_AZ_2` and `MULTI_AZ_1` FSx for Windows File Server file
|
1608
1600
|
# system deployment types.
|
1609
1601
|
#
|
1602
|
+
# * Set to `INTELLIGENT_TIERING` to use fully elastic,
|
1603
|
+
# intelligently-tiered storage. Intelligent-Tiering is only
|
1604
|
+
# available for OpenZFS file systems with the Multi-AZ deployment
|
1605
|
+
# type and for Lustre file systems with the Persistent\_2 deployment
|
1606
|
+
# type.
|
1607
|
+
#
|
1610
1608
|
# The default value is `SSD`.
|
1611
1609
|
#
|
1612
1610
|
# <note markdown="1"> HDD and SSD storage types have different minimum storage capacity
|
@@ -1800,14 +1798,14 @@ module Aws::FSx
|
|
1800
1798
|
#
|
1801
1799
|
# Choose `PERSISTENT_2` for longer-term storage and for
|
1802
1800
|
# latency-sensitive workloads that require the highest levels of
|
1803
|
-
# IOPS/throughput. `PERSISTENT_2` supports SSD
|
1804
|
-
#
|
1805
|
-
#
|
1806
|
-
#
|
1807
|
-
#
|
1808
|
-
#
|
1809
|
-
#
|
1810
|
-
#
|
1801
|
+
# IOPS/throughput. `PERSISTENT_2` supports the SSD and
|
1802
|
+
# Intelligent-Tiering storage classes. You can optionally specify a
|
1803
|
+
# metadata configuration mode for `PERSISTENT_2` which supports
|
1804
|
+
# increasing metadata performance. `PERSISTENT_2` is available in a
|
1805
|
+
# limited number of Amazon Web Services Regions. For more information,
|
1806
|
+
# and an up-to-date list of Amazon Web Services Regions in which
|
1807
|
+
# `PERSISTENT_2` is available, see [Deployment and storage class
|
1808
|
+
# options for FSx for Lustre file systems][1] in the *Amazon FSx for
|
1811
1809
|
# Lustre User Guide*.
|
1812
1810
|
#
|
1813
1811
|
# <note markdown="1"> If you choose `PERSISTENT_2`, and you set `FileSystemTypeVersion` to
|
@@ -1827,7 +1825,7 @@ module Aws::FSx
|
|
1827
1825
|
#
|
1828
1826
|
#
|
1829
1827
|
#
|
1830
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-fsx-lustre.html
|
1828
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-fsx-lustre.html
|
1831
1829
|
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/encryption-in-transit-fsxl.html
|
1832
1830
|
# @return [String]
|
1833
1831
|
#
|
@@ -1871,14 +1869,15 @@ module Aws::FSx
|
|
1871
1869
|
# @return [String]
|
1872
1870
|
#
|
1873
1871
|
# @!attribute [rw] per_unit_storage_throughput
|
1874
|
-
# Required with `PERSISTENT_1` and `PERSISTENT_2` deployment types
|
1875
|
-
# provisions the amount of read and
|
1876
|
-
# tebibyte (TiB) of file system storage
|
1877
|
-
# system throughput capacity is calculated
|
1878
|
-
# storage capacity (TiB) by the
|
1879
|
-
# For a 2.4-TiB file system,
|
1880
|
-
#
|
1881
|
-
# You pay for the amount of throughput
|
1872
|
+
# Required with `PERSISTENT_1` and `PERSISTENT_2` deployment types
|
1873
|
+
# using an SSD or HDD storage class, provisions the amount of read and
|
1874
|
+
# write throughput for each 1 tebibyte (TiB) of file system storage
|
1875
|
+
# capacity, in MB/s/TiB. File system throughput capacity is calculated
|
1876
|
+
# by multiplying file system storage capacity (TiB) by the
|
1877
|
+
# `PerUnitStorageThroughput` (MB/s/TiB). For a 2.4-TiB file system,
|
1878
|
+
# provisioning 50 MB/s/TiB of `PerUnitStorageThroughput` yields 120
|
1879
|
+
# MB/s of file system throughput. You pay for the amount of throughput
|
1880
|
+
# that you provision.
|
1882
1881
|
#
|
1883
1882
|
# Valid values:
|
1884
1883
|
#
|
@@ -1977,6 +1976,19 @@ module Aws::FSx
|
|
1977
1976
|
# FSx for Lustre file system using a `PERSISTENT_2` deployment type.
|
1978
1977
|
# @return [Types::CreateFileSystemLustreMetadataConfiguration]
|
1979
1978
|
#
|
1979
|
+
# @!attribute [rw] throughput_capacity
|
1980
|
+
# Specifies the throughput of an FSx for Lustre file system using the
|
1981
|
+
# Intelligent-Tiering storage class, measured in megabytes per second
|
1982
|
+
# (MBps). Valid values are 4000 MBps or multiples of 4000 MBps. You
|
1983
|
+
# pay for the amount of throughput that you provision.
|
1984
|
+
# @return [Integer]
|
1985
|
+
#
|
1986
|
+
# @!attribute [rw] data_read_cache_configuration
|
1987
|
+
# Specifies the optional provisioned SSD read cache on FSx for Lustre
|
1988
|
+
# file systems that use the Intelligent-Tiering storage class.
|
1989
|
+
# Required when `StorageType` is set to `INTELLIGENT_TIERING`.
|
1990
|
+
# @return [Types::LustreReadCacheConfiguration]
|
1991
|
+
#
|
1980
1992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
1981
1993
|
#
|
1982
1994
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
@@ -1995,7 +2007,9 @@ module Aws::FSx
|
|
1995
2007
|
:efa_enabled,
|
1996
2008
|
:log_configuration,
|
1997
2009
|
:root_squash_configuration,
|
1998
|
-
:metadata_configuration
|
2010
|
+
:metadata_configuration,
|
2011
|
+
:throughput_capacity,
|
2012
|
+
:data_read_cache_configuration)
|
1999
2013
|
SENSITIVE = []
|
2000
2014
|
include Aws::Structure
|
2001
2015
|
end
|
@@ -2017,11 +2031,15 @@ module Aws::FSx
|
|
2017
2031
|
# @!attribute [rw] iops
|
2018
2032
|
# (USER\_PROVISIONED mode only) Specifies the number of Metadata IOPS
|
2019
2033
|
# to provision for the file system. This parameter sets the maximum
|
2020
|
-
# rate of metadata disk IOPS supported by the file system.
|
2021
|
-
#
|
2022
|
-
#
|
2034
|
+
# rate of metadata disk IOPS supported by the file system.
|
2035
|
+
#
|
2036
|
+
# * For SSD file systems, valid values are `1500`, `3000`, `6000`,
|
2037
|
+
# `12000`, and multiples of `12000` up to a maximum of `192000`.
|
2038
|
+
#
|
2039
|
+
# * For Intelligent-Tiering file systems, valid values are `6000` and
|
2040
|
+
# `12000`.
|
2023
2041
|
#
|
2024
|
-
# <note markdown="1"> Iops doesn’t have a default value. If you're using
|
2042
|
+
# <note markdown="1"> `Iops` doesn’t have a default value. If you're using
|
2025
2043
|
# USER\_PROVISIONED mode, you can choose to specify a valid value. If
|
2026
2044
|
# you're using AUTOMATIC mode, you cannot specify a value because FSx
|
2027
2045
|
# for Lustre automatically sets the value based on your file system
|
@@ -2035,9 +2053,10 @@ module Aws::FSx
|
|
2035
2053
|
# an FSx for Lustre file system using a `PERSISTENT_2` deployment
|
2036
2054
|
# type.
|
2037
2055
|
#
|
2038
|
-
# * In AUTOMATIC mode
|
2039
|
-
# scales the number of Metadata
|
2040
|
-
# your file system storage
|
2056
|
+
# * In AUTOMATIC mode (supported only on SSD file systems), FSx for
|
2057
|
+
# Lustre automatically provisions and scales the number of Metadata
|
2058
|
+
# IOPS for your file system based on your file system storage
|
2059
|
+
# capacity.
|
2041
2060
|
#
|
2042
2061
|
# * In USER\_PROVISIONED mode, you specify the number of Metadata IOPS
|
2043
2062
|
# to provision for your file system.
|
@@ -2160,20 +2179,11 @@ module Aws::FSx
|
|
2160
2179
|
# @return [Integer]
|
2161
2180
|
#
|
2162
2181
|
# @!attribute [rw] weekly_maintenance_start_time
|
2163
|
-
#
|
2164
|
-
#
|
2165
|
-
#
|
2166
|
-
# represents Sunday. For further details, see [the ISO-8601 spec as
|
2167
|
-
# described on Wikipedia][1].
|
2168
|
-
#
|
2169
|
-
# `HH` is the zero-padded hour of the day (0-23), and `MM` is the
|
2170
|
-
# zero-padded minute of the hour.
|
2182
|
+
# The preferred start time to perform weekly maintenance, formatted
|
2183
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
2184
|
+
# through 7, beginning with Monday and ending with Sunday.
|
2171
2185
|
#
|
2172
2186
|
# For example, `1:05:00` specifies maintenance at 5 AM Monday.
|
2173
|
-
#
|
2174
|
-
#
|
2175
|
-
#
|
2176
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_week_date
|
2177
2187
|
# @return [String]
|
2178
2188
|
#
|
2179
2189
|
# @!attribute [rw] ha_pairs
|
@@ -2331,7 +2341,7 @@ module Aws::FSx
|
|
2331
2341
|
# @!attribute [rw] throughput_capacity
|
2332
2342
|
# Specifies the throughput of an Amazon FSx for OpenZFS file system,
|
2333
2343
|
# measured in megabytes per second (MBps). Valid values depend on the
|
2334
|
-
# DeploymentType you choose, as follows:
|
2344
|
+
# `DeploymentType` that you choose, as follows:
|
2335
2345
|
#
|
2336
2346
|
# * For `MULTI_AZ_1` and `SINGLE_AZ_2`, valid values are 160, 320,
|
2337
2347
|
# 640, 1280, 2560, 3840, 5120, 7680, or 10240 MBps.
|
@@ -2343,20 +2353,11 @@ module Aws::FSx
|
|
2343
2353
|
# @return [Integer]
|
2344
2354
|
#
|
2345
2355
|
# @!attribute [rw] weekly_maintenance_start_time
|
2346
|
-
#
|
2347
|
-
#
|
2348
|
-
#
|
2349
|
-
# represents Sunday. For further details, see [the ISO-8601 spec as
|
2350
|
-
# described on Wikipedia][1].
|
2351
|
-
#
|
2352
|
-
# `HH` is the zero-padded hour of the day (0-23), and `MM` is the
|
2353
|
-
# zero-padded minute of the hour.
|
2356
|
+
# The preferred start time to perform weekly maintenance, formatted
|
2357
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
2358
|
+
# through 7, beginning with Monday and ending with Sunday.
|
2354
2359
|
#
|
2355
2360
|
# For example, `1:05:00` specifies maintenance at 5 AM Monday.
|
2356
|
-
#
|
2357
|
-
#
|
2358
|
-
#
|
2359
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_week_date
|
2360
2361
|
# @return [String]
|
2361
2362
|
#
|
2362
2363
|
# @!attribute [rw] disk_iops_configuration
|
@@ -2387,7 +2388,8 @@ module Aws::FSx
|
|
2387
2388
|
# the Amazon FSx API and Amazon FSx console, Amazon FSx selects an
|
2388
2389
|
# available /28 IP address range for you from one of the VPC's CIDR
|
2389
2390
|
# ranges. You can have overlapping endpoint IP addresses for file
|
2390
|
-
# systems deployed in the same VPC/route tables
|
2391
|
+
# systems deployed in the same VPC/route tables, as long as they
|
2392
|
+
# don't overlap with any subnet.
|
2391
2393
|
# @return [String]
|
2392
2394
|
#
|
2393
2395
|
# @!attribute [rw] route_table_ids
|
@@ -2483,25 +2485,26 @@ module Aws::FSx
|
|
2483
2485
|
# * Set to `SSD` to use solid state drive storage. SSD is supported on
|
2484
2486
|
# all Windows, Lustre, ONTAP, and OpenZFS deployment types.
|
2485
2487
|
#
|
2486
|
-
# * Set to `HDD` to use hard disk drive storage
|
2488
|
+
# * Set to `HDD` to use hard disk drive storage, which is supported on
|
2487
2489
|
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment
|
2488
2490
|
# types, and on `PERSISTENT_1` Lustre file system deployment types.
|
2489
2491
|
#
|
2490
2492
|
# * Set to `INTELLIGENT_TIERING` to use fully elastic,
|
2491
2493
|
# intelligently-tiered storage. Intelligent-Tiering is only
|
2492
2494
|
# available for OpenZFS file systems with the Multi-AZ deployment
|
2495
|
+
# type and for Lustre file systems with the Persistent\_2 deployment
|
2493
2496
|
# type.
|
2494
2497
|
#
|
2495
2498
|
# Default value is `SSD`. For more information, see [ Storage type
|
2496
|
-
# options][1] in the *FSx for Windows File Server User Guide*,
|
2497
|
-
#
|
2499
|
+
# options][1] in the *FSx for Windows File Server User Guide*, [FSx
|
2500
|
+
# for Lustre storage classes][2] in the *FSx for Lustre User Guide*,
|
2498
2501
|
# and [Working with Intelligent-Tiering][3] in the *Amazon FSx for
|
2499
2502
|
# OpenZFS User Guide*.
|
2500
2503
|
#
|
2501
2504
|
#
|
2502
2505
|
#
|
2503
2506
|
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
2504
|
-
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/
|
2507
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-storage-classes
|
2505
2508
|
# [3]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance-intelligent-tiering
|
2506
2509
|
# @return [String]
|
2507
2510
|
#
|
@@ -3145,12 +3148,13 @@ module Aws::FSx
|
|
3145
3148
|
#
|
3146
3149
|
# @!attribute [rw] copy_tags_to_snapshots
|
3147
3150
|
# A Boolean value indicating whether tags for the volume should be
|
3148
|
-
# copied to snapshots. This value defaults to `false`. If
|
3149
|
-
# `true`,
|
3150
|
-
#
|
3151
|
-
# one or more tags, only the specified
|
3152
|
-
#
|
3153
|
-
#
|
3151
|
+
# copied to snapshots. This value defaults to `false`. If this value
|
3152
|
+
# is set to `true`, and you do not specify any tags, all tags for the
|
3153
|
+
# original volume are copied over to snapshots. If this value is set
|
3154
|
+
# to `true`, and you do specify one or more tags, only the specified
|
3155
|
+
# tags for the original volume are copied over to snapshots. If you
|
3156
|
+
# specify one or more tags when creating a new snapshot, no tags are
|
3157
|
+
# copied over from the original volume, regardless of this value.
|
3154
3158
|
# @return [Boolean]
|
3155
3159
|
#
|
3156
3160
|
# @!attribute [rw] origin_snapshot
|
@@ -3566,7 +3570,7 @@ module Aws::FSx
|
|
3566
3570
|
#
|
3567
3571
|
# Data repository associations are supported on Amazon File Cache
|
3568
3572
|
# resources and all FSx for Lustre 2.12 and 2.15 file systems, excluding
|
3569
|
-
# `scratch_1`
|
3573
|
+
# Intelligent-Tiering and `scratch_1` file systems.
|
3570
3574
|
#
|
3571
3575
|
# @!attribute [rw] association_id
|
3572
3576
|
# The system-generated, unique ID of the data repository association.
|
@@ -5823,20 +5827,11 @@ module Aws::FSx
|
|
5823
5827
|
# @return [String]
|
5824
5828
|
#
|
5825
5829
|
# @!attribute [rw] weekly_maintenance_start_time
|
5826
|
-
#
|
5827
|
-
#
|
5828
|
-
#
|
5829
|
-
# represents Sunday. For further details, see [the ISO-8601 spec as
|
5830
|
-
# described on Wikipedia][1].
|
5831
|
-
#
|
5832
|
-
# `HH` is the zero-padded hour of the day (0-23), and `MM` is the
|
5833
|
-
# zero-padded minute of the hour.
|
5830
|
+
# The preferred start time to perform weekly maintenance, formatted
|
5831
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
5832
|
+
# through 7, beginning with Monday and ending with Sunday.
|
5834
5833
|
#
|
5835
5834
|
# For example, `1:05:00` specifies maintenance at 5 AM Monday.
|
5836
|
-
#
|
5837
|
-
#
|
5838
|
-
#
|
5839
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_week_date
|
5840
5835
|
# @return [String]
|
5841
5836
|
#
|
5842
5837
|
# @!attribute [rw] metadata_configuration
|
@@ -5980,9 +5975,14 @@ module Aws::FSx
|
|
5980
5975
|
# @return [Integer]
|
5981
5976
|
#
|
5982
5977
|
# @!attribute [rw] storage_type
|
5983
|
-
# The type of storage the file system is using.
|
5984
|
-
#
|
5985
|
-
# file system uses
|
5978
|
+
# The type of storage the file system is using.
|
5979
|
+
#
|
5980
|
+
# * If set to `SSD`, the file system uses solid state drive storage.
|
5981
|
+
#
|
5982
|
+
# * If set to `HDD`, the file system uses hard disk drive storage.
|
5983
|
+
#
|
5984
|
+
# * If set to `INTELLIGENT_TIERING`, the file system uses fully
|
5985
|
+
# elastic, intelligently-tiered storage.
|
5986
5986
|
# @return [String]
|
5987
5987
|
#
|
5988
5988
|
# @!attribute [rw] vpc_id
|
@@ -6179,18 +6179,23 @@ module Aws::FSx
|
|
6179
6179
|
# performance.
|
6180
6180
|
#
|
6181
6181
|
# @!attribute [rw] iops
|
6182
|
-
# The number of Metadata IOPS provisioned for the file system.
|
6183
|
-
#
|
6184
|
-
#
|
6182
|
+
# The number of Metadata IOPS provisioned for the file system.
|
6183
|
+
#
|
6184
|
+
# * For SSD file systems, valid values are `1500`, `3000`, `6000`,
|
6185
|
+
# `12000`, and multiples of `12000` up to a maximum of `192000`.
|
6186
|
+
#
|
6187
|
+
# * For Intelligent-Tiering file systems, valid values are `6000` and
|
6188
|
+
# `12000`.
|
6185
6189
|
# @return [Integer]
|
6186
6190
|
#
|
6187
6191
|
# @!attribute [rw] mode
|
6188
6192
|
# The metadata configuration mode for provisioning Metadata IOPS for
|
6189
6193
|
# the file system.
|
6190
6194
|
#
|
6191
|
-
# * In AUTOMATIC mode
|
6192
|
-
# scales the number of Metadata
|
6193
|
-
# your file system storage
|
6195
|
+
# * In AUTOMATIC mode (supported only on SSD file systems), FSx for
|
6196
|
+
# Lustre automatically provisions and scales the number of Metadata
|
6197
|
+
# IOPS on your file system based on your file system storage
|
6198
|
+
# capacity.
|
6194
6199
|
#
|
6195
6200
|
# * In USER\_PROVISIONED mode, you can choose to specify the number of
|
6196
6201
|
# Metadata IOPS to provision for your file system.
|
@@ -6523,13 +6528,14 @@ module Aws::FSx
|
|
6523
6528
|
# `PERSISTENT_2` offers higher `PerUnitStorageThroughput` (up to 1000
|
6524
6529
|
# MB/s/TiB) along with a lower minimum storage capacity requirement
|
6525
6530
|
# (600 GiB). To learn more about FSx for Lustre deployment types, see
|
6526
|
-
# [ FSx for Lustre
|
6531
|
+
# [Deployment and storage class options for FSx for Lustre file
|
6532
|
+
# systems][1].
|
6527
6533
|
#
|
6528
6534
|
# The default is `SCRATCH_1`.
|
6529
6535
|
#
|
6530
6536
|
#
|
6531
6537
|
#
|
6532
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/
|
6538
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-fsx-lustre.html
|
6533
6539
|
# @return [String]
|
6534
6540
|
#
|
6535
6541
|
# @!attribute [rw] per_unit_storage_throughput
|
@@ -6627,6 +6633,17 @@ module Aws::FSx
|
|
6627
6633
|
# (GDS) support is enabled for the Amazon FSx for Lustre file system.
|
6628
6634
|
# @return [Boolean]
|
6629
6635
|
#
|
6636
|
+
# @!attribute [rw] throughput_capacity
|
6637
|
+
# The throughput of an Amazon FSx for Lustre file system using the
|
6638
|
+
# Intelligent-Tiering storage class, measured in megabytes per second
|
6639
|
+
# (MBps).
|
6640
|
+
# @return [Integer]
|
6641
|
+
#
|
6642
|
+
# @!attribute [rw] data_read_cache_configuration
|
6643
|
+
# Required when `StorageType` is set to `INTELLIGENT_TIERING`.
|
6644
|
+
# Specifies the optional provisioned SSD read cache.
|
6645
|
+
# @return [Types::LustreReadCacheConfiguration]
|
6646
|
+
#
|
6630
6647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
6631
6648
|
#
|
6632
6649
|
class LustreFileSystemConfiguration < Struct.new(
|
@@ -6643,7 +6660,9 @@ module Aws::FSx
|
|
6643
6660
|
:log_configuration,
|
6644
6661
|
:root_squash_configuration,
|
6645
6662
|
:metadata_configuration,
|
6646
|
-
:efa_enabled
|
6663
|
+
:efa_enabled,
|
6664
|
+
:throughput_capacity,
|
6665
|
+
:data_read_cache_configuration)
|
6647
6666
|
SENSITIVE = []
|
6648
6667
|
include Aws::Structure
|
6649
6668
|
end
|
@@ -6739,6 +6758,42 @@ module Aws::FSx
|
|
6739
6758
|
include Aws::Structure
|
6740
6759
|
end
|
6741
6760
|
|
6761
|
+
# The configuration for the optional provisioned SSD read cache on
|
6762
|
+
# Amazon FSx for Lustre file systems that use the Intelligent-Tiering
|
6763
|
+
# storage class.
|
6764
|
+
#
|
6765
|
+
# @!attribute [rw] sizing_mode
|
6766
|
+
# Specifies how the provisioned SSD read cache is sized, as follows:
|
6767
|
+
#
|
6768
|
+
# * Set to `NO_CACHE` if you do not want to use an SSD read cache with
|
6769
|
+
# your Intelligent-Tiering file system.
|
6770
|
+
#
|
6771
|
+
# * Set to `USER_PROVISIONED` to specify the exact size of your SSD
|
6772
|
+
# read cache.
|
6773
|
+
#
|
6774
|
+
# * Set to `PROPORTIONAL_TO_THROUGHPUT_CAPACITY` to have your SSD read
|
6775
|
+
# cache automatically sized based on your throughput capacity.
|
6776
|
+
# @return [String]
|
6777
|
+
#
|
6778
|
+
# @!attribute [rw] size_gi_b
|
6779
|
+
# Required if `SizingMode` is set to `USER_PROVISIONED`. Specifies the
|
6780
|
+
# size of the file system's SSD read cache, in gibibytes (GiB).
|
6781
|
+
#
|
6782
|
+
# The SSD read cache size is distributed across provisioned file
|
6783
|
+
# servers in your file system. Intelligent-Tiering file systems
|
6784
|
+
# support a minimum of 32 GiB and maximum of 131072 GiB for SSD read
|
6785
|
+
# cache size for every 4,000 MB/s of throughput capacity provisioned.
|
6786
|
+
# @return [Integer]
|
6787
|
+
#
|
6788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreReadCacheConfiguration AWS API Documentation
|
6789
|
+
#
|
6790
|
+
class LustreReadCacheConfiguration < Struct.new(
|
6791
|
+
:sizing_mode,
|
6792
|
+
:size_gi_b)
|
6793
|
+
SENSITIVE = []
|
6794
|
+
include Aws::Structure
|
6795
|
+
end
|
6796
|
+
|
6742
6797
|
# The configuration for Lustre root squash used to restrict root-level
|
6743
6798
|
# access from clients that try to access your FSx for Lustre file system
|
6744
6799
|
# as root. Use the `RootSquash` parameter to enable root squash. To
|
@@ -6974,20 +7029,11 @@ module Aws::FSx
|
|
6974
7029
|
# @return [Integer]
|
6975
7030
|
#
|
6976
7031
|
# @!attribute [rw] weekly_maintenance_start_time
|
6977
|
-
#
|
6978
|
-
#
|
6979
|
-
#
|
6980
|
-
# represents Sunday. For further details, see [the ISO-8601 spec as
|
6981
|
-
# described on Wikipedia][1].
|
6982
|
-
#
|
6983
|
-
# `HH` is the zero-padded hour of the day (0-23), and `MM` is the
|
6984
|
-
# zero-padded minute of the hour.
|
7032
|
+
# The preferred start time to perform weekly maintenance, formatted
|
7033
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
7034
|
+
# through 7, beginning with Monday and ending with Sunday.
|
6985
7035
|
#
|
6986
7036
|
# For example, `1:05:00` specifies maintenance at 5 AM Monday.
|
6987
|
-
#
|
6988
|
-
#
|
6989
|
-
#
|
6990
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_week_date
|
6991
7037
|
# @return [String]
|
6992
7038
|
#
|
6993
7039
|
# @!attribute [rw] fsx_admin_password
|
@@ -7390,20 +7436,11 @@ module Aws::FSx
|
|
7390
7436
|
# @return [Integer]
|
7391
7437
|
#
|
7392
7438
|
# @!attribute [rw] weekly_maintenance_start_time
|
7393
|
-
#
|
7394
|
-
#
|
7395
|
-
#
|
7396
|
-
# represents Sunday. For further details, see [the ISO-8601 spec as
|
7397
|
-
# described on Wikipedia][1].
|
7398
|
-
#
|
7399
|
-
# `HH` is the zero-padded hour of the day (0-23), and `MM` is the
|
7400
|
-
# zero-padded minute of the hour.
|
7439
|
+
# The preferred start time to perform weekly maintenance, formatted
|
7440
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
7441
|
+
# through 7, beginning with Monday and ending with Sunday.
|
7401
7442
|
#
|
7402
7443
|
# For example, `1:05:00` specifies maintenance at 5 AM Monday.
|
7403
|
-
#
|
7404
|
-
#
|
7405
|
-
#
|
7406
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_week_date
|
7407
7444
|
# @return [String]
|
7408
7445
|
#
|
7409
7446
|
# @!attribute [rw] disk_iops_configuration
|
@@ -7534,8 +7571,9 @@ module Aws::FSx
|
|
7534
7571
|
include Aws::Structure
|
7535
7572
|
end
|
7536
7573
|
|
7537
|
-
# The configuration for the optional provisioned SSD read cache on
|
7538
|
-
# systems that use the Intelligent-Tiering
|
7574
|
+
# The configuration for the optional provisioned SSD read cache on
|
7575
|
+
# Amazon FSx for OpenZFS file systems that use the Intelligent-Tiering
|
7576
|
+
# storage class.
|
7539
7577
|
#
|
7540
7578
|
# @!attribute [rw] sizing_mode
|
7541
7579
|
# Specifies how the provisioned SSD read cache is sized, as follows:
|
@@ -8194,8 +8232,8 @@ module Aws::FSx
|
|
8194
8232
|
end
|
8195
8233
|
|
8196
8234
|
# An error indicating that a particular service limit was exceeded. You
|
8197
|
-
# can increase some service limits by contacting Amazon Web
|
8198
|
-
#
|
8235
|
+
# can increase some service limits by contacting Amazon Web
|
8236
|
+
# ServicesSupport.
|
8199
8237
|
#
|
8200
8238
|
# @!attribute [rw] limit
|
8201
8239
|
# Enumeration of the service limit that was exceeded.
|
@@ -8943,20 +8981,11 @@ module Aws::FSx
|
|
8943
8981
|
# The configuration update for an Amazon File Cache resource.
|
8944
8982
|
#
|
8945
8983
|
# @!attribute [rw] weekly_maintenance_start_time
|
8946
|
-
#
|
8947
|
-
#
|
8948
|
-
#
|
8949
|
-
# represents Sunday. For further details, see [the ISO-8601 spec as
|
8950
|
-
# described on Wikipedia][1].
|
8951
|
-
#
|
8952
|
-
# `HH` is the zero-padded hour of the day (0-23), and `MM` is the
|
8953
|
-
# zero-padded minute of the hour.
|
8984
|
+
# The preferred start time to perform weekly maintenance, formatted
|
8985
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
8986
|
+
# through 7, beginning with Monday and ending with Sunday.
|
8954
8987
|
#
|
8955
8988
|
# For example, `1:05:00` specifies maintenance at 5 AM Monday.
|
8956
|
-
#
|
8957
|
-
#
|
8958
|
-
#
|
8959
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_week_date
|
8960
8989
|
# @return [String]
|
8961
8990
|
#
|
8962
8991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileCacheLustreConfiguration AWS API Documentation
|
@@ -9116,6 +9145,18 @@ module Aws::FSx
|
|
9116
9145
|
# metadata performance.
|
9117
9146
|
# @return [Types::UpdateFileSystemLustreMetadataConfiguration]
|
9118
9147
|
#
|
9148
|
+
# @!attribute [rw] throughput_capacity
|
9149
|
+
# The throughput of an Amazon FSx for Lustre file system using an
|
9150
|
+
# Intelligent-Tiering storage class, measured in megabytes per second
|
9151
|
+
# (MBps). You can only increase your file system's throughput. Valid
|
9152
|
+
# values are 4000 MBps or multiples of 4000 MBps.
|
9153
|
+
# @return [Integer]
|
9154
|
+
#
|
9155
|
+
# @!attribute [rw] data_read_cache_configuration
|
9156
|
+
# Specifies the optional provisioned SSD read cache on Amazon FSx for
|
9157
|
+
# Lustre file systems that use the Intelligent-Tiering storage class.
|
9158
|
+
# @return [Types::LustreReadCacheConfiguration]
|
9159
|
+
#
|
9119
9160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
9120
9161
|
#
|
9121
9162
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
@@ -9127,7 +9168,9 @@ module Aws::FSx
|
|
9127
9168
|
:log_configuration,
|
9128
9169
|
:root_squash_configuration,
|
9129
9170
|
:per_unit_storage_throughput,
|
9130
|
-
:metadata_configuration
|
9171
|
+
:metadata_configuration,
|
9172
|
+
:throughput_capacity,
|
9173
|
+
:data_read_cache_configuration)
|
9131
9174
|
SENSITIVE = []
|
9132
9175
|
include Aws::Structure
|
9133
9176
|
end
|
@@ -9145,9 +9188,13 @@ module Aws::FSx
|
|
9145
9188
|
#
|
9146
9189
|
# @!attribute [rw] iops
|
9147
9190
|
# (USER\_PROVISIONED mode only) Specifies the number of Metadata IOPS
|
9148
|
-
# to provision for your file system.
|
9149
|
-
#
|
9150
|
-
# `
|
9191
|
+
# to provision for your file system.
|
9192
|
+
#
|
9193
|
+
# * For SSD file systems, valid values are `1500`, `3000`, `6000`,
|
9194
|
+
# `12000`, and multiples of `12000` up to a maximum of `192000`.
|
9195
|
+
#
|
9196
|
+
# * For Intelligent-Tiering file systems, valid values are `6000` and
|
9197
|
+
# `12000`.
|
9151
9198
|
#
|
9152
9199
|
# The value you provide must be greater than or equal to the current
|
9153
9200
|
# number of Metadata IOPS provisioned for the file system.
|
@@ -9158,19 +9205,24 @@ module Aws::FSx
|
|
9158
9205
|
# an FSx for Lustre file system using a `PERSISTENT_2` deployment
|
9159
9206
|
# type.
|
9160
9207
|
#
|
9161
|
-
# * To increase the Metadata IOPS or to switch
|
9162
|
-
# specify `USER_PROVISIONED` as the value for this
|
9163
|
-
# use the Iops parameter to provide a Metadata IOPS
|
9164
|
-
# greater than or equal to the current number of
|
9165
|
-
# provisioned for the file system.
|
9208
|
+
# * To increase the Metadata IOPS or to switch an SSD file system from
|
9209
|
+
# AUTOMATIC, specify `USER_PROVISIONED` as the value for this
|
9210
|
+
# parameter. Then use the Iops parameter to provide a Metadata IOPS
|
9211
|
+
# value that is greater than or equal to the current number of
|
9212
|
+
# Metadata IOPS provisioned for the file system.
|
9213
|
+
#
|
9214
|
+
# * To switch from USER\_PROVISIONED mode on an SSD file system,
|
9215
|
+
# specify `AUTOMATIC` as the value for this parameter, but do not
|
9216
|
+
# input a value for Iops.
|
9166
9217
|
#
|
9167
|
-
#
|
9168
|
-
#
|
9218
|
+
# <note markdown="1"> * If you request to switch from USER\_PROVISIONED to AUTOMATIC
|
9219
|
+
# mode and the current Metadata IOPS value is greater than the
|
9220
|
+
# automated default, FSx for Lustre rejects the request because
|
9221
|
+
# downscaling Metadata IOPS is not supported.
|
9169
9222
|
#
|
9170
|
-
#
|
9171
|
-
#
|
9172
|
-
#
|
9173
|
-
# Metadata IOPS is not supported.
|
9223
|
+
# * AUTOMATIC mode is not supported on Intelligent-Tiering file
|
9224
|
+
# systems. For Intelligent-Tiering file systems, use
|
9225
|
+
# USER\_PROVISIONED mode.
|
9174
9226
|
#
|
9175
9227
|
# </note>
|
9176
9228
|
# @return [String]
|
@@ -9211,20 +9263,11 @@ module Aws::FSx
|
|
9211
9263
|
# @return [String]
|
9212
9264
|
#
|
9213
9265
|
# @!attribute [rw] weekly_maintenance_start_time
|
9214
|
-
#
|
9215
|
-
#
|
9216
|
-
#
|
9217
|
-
# represents Sunday. For further details, see [the ISO-8601 spec as
|
9218
|
-
# described on Wikipedia][1].
|
9219
|
-
#
|
9220
|
-
# `HH` is the zero-padded hour of the day (0-23), and `MM` is the
|
9221
|
-
# zero-padded minute of the hour.
|
9266
|
+
# The preferred start time to perform weekly maintenance, formatted
|
9267
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
9268
|
+
# through 7, beginning with Monday and ending with Sunday.
|
9222
9269
|
#
|
9223
9270
|
# For example, `1:05:00` specifies maintenance at 5 AM Monday.
|
9224
|
-
#
|
9225
|
-
#
|
9226
|
-
#
|
9227
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_week_date
|
9228
9271
|
# @return [String]
|
9229
9272
|
#
|
9230
9273
|
# @!attribute [rw] disk_iops_configuration
|
@@ -9388,20 +9431,11 @@ module Aws::FSx
|
|
9388
9431
|
# @return [Integer]
|
9389
9432
|
#
|
9390
9433
|
# @!attribute [rw] weekly_maintenance_start_time
|
9391
|
-
#
|
9392
|
-
#
|
9393
|
-
#
|
9394
|
-
# represents Sunday. For further details, see [the ISO-8601 spec as
|
9395
|
-
# described on Wikipedia][1].
|
9396
|
-
#
|
9397
|
-
# `HH` is the zero-padded hour of the day (0-23), and `MM` is the
|
9398
|
-
# zero-padded minute of the hour.
|
9434
|
+
# The preferred start time to perform weekly maintenance, formatted
|
9435
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
9436
|
+
# through 7, beginning with Monday and ending with Sunday.
|
9399
9437
|
#
|
9400
9438
|
# For example, `1:05:00` specifies maintenance at 5 AM Monday.
|
9401
|
-
#
|
9402
|
-
#
|
9403
|
-
#
|
9404
|
-
# [1]: https://en.wikipedia.org/wiki/ISO_week_date
|
9405
9439
|
# @return [String]
|
9406
9440
|
#
|
9407
9441
|
# @!attribute [rw] disk_iops_configuration
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -330,6 +330,11 @@ module Aws
|
|
330
330
|
metadata_configuration: {
|
331
331
|
iops: ::Integer?,
|
332
332
|
mode: ("AUTOMATIC" | "USER_PROVISIONED")
|
333
|
+
}?,
|
334
|
+
throughput_capacity: ::Integer?,
|
335
|
+
data_read_cache_configuration: {
|
336
|
+
sizing_mode: ("NO_CACHE" | "USER_PROVISIONED" | "PROPORTIONAL_TO_THROUGHPUT_CAPACITY")?,
|
337
|
+
size_gi_b: ::Integer?
|
333
338
|
}?
|
334
339
|
},
|
335
340
|
?ontap_configuration: {
|
@@ -465,6 +470,11 @@ module Aws
|
|
465
470
|
metadata_configuration: {
|
466
471
|
iops: ::Integer?,
|
467
472
|
mode: ("AUTOMATIC" | "USER_PROVISIONED")
|
473
|
+
}?,
|
474
|
+
throughput_capacity: ::Integer?,
|
475
|
+
data_read_cache_configuration: {
|
476
|
+
sizing_mode: ("NO_CACHE" | "USER_PROVISIONED" | "PROPORTIONAL_TO_THROUGHPUT_CAPACITY")?,
|
477
|
+
size_gi_b: ::Integer?
|
468
478
|
}?
|
469
479
|
},
|
470
480
|
?storage_type: ("SSD" | "HDD" | "INTELLIGENT_TIERING"),
|
@@ -1186,6 +1196,11 @@ module Aws
|
|
1186
1196
|
metadata_configuration: {
|
1187
1197
|
iops: ::Integer?,
|
1188
1198
|
mode: ("AUTOMATIC" | "USER_PROVISIONED")?
|
1199
|
+
}?,
|
1200
|
+
throughput_capacity: ::Integer?,
|
1201
|
+
data_read_cache_configuration: {
|
1202
|
+
sizing_mode: ("NO_CACHE" | "USER_PROVISIONED" | "PROPORTIONAL_TO_THROUGHPUT_CAPACITY")?,
|
1203
|
+
size_gi_b: ::Integer?
|
1189
1204
|
}?
|
1190
1205
|
},
|
1191
1206
|
?ontap_configuration: {
|
data/sig/types.rbs
CHANGED
@@ -303,6 +303,8 @@ module Aws::FSx
|
|
303
303
|
attr_accessor log_configuration: Types::LustreLogCreateConfiguration
|
304
304
|
attr_accessor root_squash_configuration: Types::LustreRootSquashConfiguration
|
305
305
|
attr_accessor metadata_configuration: Types::CreateFileSystemLustreMetadataConfiguration
|
306
|
+
attr_accessor throughput_capacity: ::Integer
|
307
|
+
attr_accessor data_read_cache_configuration: Types::LustreReadCacheConfiguration
|
306
308
|
SENSITIVE: []
|
307
309
|
end
|
308
310
|
|
@@ -1128,6 +1130,8 @@ module Aws::FSx
|
|
1128
1130
|
attr_accessor root_squash_configuration: Types::LustreRootSquashConfiguration
|
1129
1131
|
attr_accessor metadata_configuration: Types::FileSystemLustreMetadataConfiguration
|
1130
1132
|
attr_accessor efa_enabled: bool
|
1133
|
+
attr_accessor throughput_capacity: ::Integer
|
1134
|
+
attr_accessor data_read_cache_configuration: Types::LustreReadCacheConfiguration
|
1131
1135
|
SENSITIVE: []
|
1132
1136
|
end
|
1133
1137
|
|
@@ -1143,6 +1147,12 @@ module Aws::FSx
|
|
1143
1147
|
SENSITIVE: []
|
1144
1148
|
end
|
1145
1149
|
|
1150
|
+
class LustreReadCacheConfiguration
|
1151
|
+
attr_accessor sizing_mode: ("NO_CACHE" | "USER_PROVISIONED" | "PROPORTIONAL_TO_THROUGHPUT_CAPACITY")
|
1152
|
+
attr_accessor size_gi_b: ::Integer
|
1153
|
+
SENSITIVE: []
|
1154
|
+
end
|
1155
|
+
|
1146
1156
|
class LustreRootSquashConfiguration
|
1147
1157
|
attr_accessor root_squash: ::String
|
1148
1158
|
attr_accessor no_squash_nids: ::Array[::String]
|
@@ -1565,6 +1575,8 @@ module Aws::FSx
|
|
1565
1575
|
attr_accessor root_squash_configuration: Types::LustreRootSquashConfiguration
|
1566
1576
|
attr_accessor per_unit_storage_throughput: ::Integer
|
1567
1577
|
attr_accessor metadata_configuration: Types::UpdateFileSystemLustreMetadataConfiguration
|
1578
|
+
attr_accessor throughput_capacity: ::Integer
|
1579
|
+
attr_accessor data_read_cache_configuration: Types::LustreReadCacheConfiguration
|
1568
1580
|
SENSITIVE: []
|
1569
1581
|
end
|
1570
1582
|
|