aws-sdk-fsx 1.55.0 → 1.56.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 +69 -1
- data/lib/aws-sdk-fsx/client_api.rb +13 -0
- data/lib/aws-sdk-fsx/types.rb +112 -8
- data/lib/aws-sdk-fsx.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6547dcef290654ab59ec1d28a254fe45e85d36b08f3961e3f29125a8b3ed62e
|
|
4
|
+
data.tar.gz: d1dd12e60acc0a90e6236da1057cabe43b64a2b2ac13c42b66627b8d971d6496
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8e0dc7caf5a8639cadca270942c1822139d28375571446235f586b58632332e89a018580994563a62ce78a486c961597585950b339ff76c67cabd1579631d475
|
|
7
|
+
data.tar.gz: e621eb1220452f31971729f8efcd14f41171a8daa26273429b98fb066e9e5284f3b8825d6ae6a398cd43ca8ca427f4b91c99631558230137235b374c18cb685a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.56.0 (2022-05-25)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds root squash support to FSx for Lustre to restrict root level access from clients by mapping root users to a less-privileged user/group with limited permissions.
|
|
8
|
+
|
|
4
9
|
1.55.0 (2022-04-13)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.56.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
|
@@ -711,6 +711,9 @@ module Aws::FSx
|
|
|
711
711
|
# resp.backup.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
712
712
|
# resp.backup.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
713
713
|
# resp.backup.file_system.lustre_configuration.log_configuration.destination #=> String
|
|
714
|
+
# resp.backup.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
715
|
+
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
716
|
+
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
714
717
|
# resp.backup.file_system.administrative_actions #=> Array
|
|
715
718
|
# 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"
|
|
716
719
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -893,6 +896,9 @@ module Aws::FSx
|
|
|
893
896
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
894
897
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
895
898
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
899
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
900
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
901
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
896
902
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
897
903
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
898
904
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -1181,6 +1187,9 @@ module Aws::FSx
|
|
|
1181
1187
|
# resp.backup.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
1182
1188
|
# resp.backup.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
1183
1189
|
# resp.backup.file_system.lustre_configuration.log_configuration.destination #=> String
|
|
1190
|
+
# resp.backup.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
1191
|
+
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
1192
|
+
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
1184
1193
|
# resp.backup.file_system.administrative_actions #=> Array
|
|
1185
1194
|
# 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"
|
|
1186
1195
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -1363,6 +1372,9 @@ module Aws::FSx
|
|
|
1363
1372
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
1364
1373
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
1365
1374
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
1375
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
1376
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
1377
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
1366
1378
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
1367
1379
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
1368
1380
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -2053,6 +2065,10 @@ module Aws::FSx
|
|
|
2053
2065
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
|
2054
2066
|
# destination: "GeneralARN",
|
|
2055
2067
|
# },
|
|
2068
|
+
# root_squash_configuration: {
|
|
2069
|
+
# root_squash: "LustreRootSquash",
|
|
2070
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
|
2071
|
+
# },
|
|
2056
2072
|
# },
|
|
2057
2073
|
# ontap_configuration: {
|
|
2058
2074
|
# automatic_backup_retention_days: 1,
|
|
@@ -2170,6 +2186,9 @@ module Aws::FSx
|
|
|
2170
2186
|
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
2171
2187
|
# resp.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
2172
2188
|
# resp.file_system.lustre_configuration.log_configuration.destination #=> String
|
|
2189
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
2190
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
2191
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
2173
2192
|
# resp.file_system.administrative_actions #=> Array
|
|
2174
2193
|
# 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"
|
|
2175
2194
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -2540,6 +2559,10 @@ module Aws::FSx
|
|
|
2540
2559
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
|
2541
2560
|
# destination: "GeneralARN",
|
|
2542
2561
|
# },
|
|
2562
|
+
# root_squash_configuration: {
|
|
2563
|
+
# root_squash: "LustreRootSquash",
|
|
2564
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
|
2565
|
+
# },
|
|
2543
2566
|
# },
|
|
2544
2567
|
# storage_type: "SSD", # accepts SSD, HDD
|
|
2545
2568
|
# kms_key_id: "KmsKeyId",
|
|
@@ -2644,6 +2667,9 @@ module Aws::FSx
|
|
|
2644
2667
|
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
2645
2668
|
# resp.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
2646
2669
|
# resp.file_system.lustre_configuration.log_configuration.destination #=> String
|
|
2670
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
2671
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
2672
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
2647
2673
|
# resp.file_system.administrative_actions #=> Array
|
|
2648
2674
|
# 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"
|
|
2649
2675
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -2887,6 +2913,9 @@ module Aws::FSx
|
|
|
2887
2913
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
2888
2914
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
2889
2915
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
2916
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
2917
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
2918
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
2890
2919
|
# resp.snapshot.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
2891
2920
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
2892
2921
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -3267,6 +3296,9 @@ module Aws::FSx
|
|
|
3267
3296
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
3268
3297
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
3269
3298
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
3299
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
3300
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
3301
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
3270
3302
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
3271
3303
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
3272
3304
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -3481,6 +3513,9 @@ module Aws::FSx
|
|
|
3481
3513
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
3482
3514
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
3483
3515
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
3516
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
3517
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
3518
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
3484
3519
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
3485
3520
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
3486
3521
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -4142,6 +4177,9 @@ module Aws::FSx
|
|
|
4142
4177
|
# resp.backups[0].file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
4143
4178
|
# resp.backups[0].file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
4144
4179
|
# resp.backups[0].file_system.lustre_configuration.log_configuration.destination #=> String
|
|
4180
|
+
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
4181
|
+
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
4182
|
+
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
4145
4183
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
|
4146
4184
|
# 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"
|
|
4147
4185
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -4324,6 +4362,9 @@ module Aws::FSx
|
|
|
4324
4362
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
4325
4363
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
4326
4364
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
4365
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
4366
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
4367
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
4327
4368
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
4328
4369
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
4329
4370
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -4809,6 +4850,9 @@ module Aws::FSx
|
|
|
4809
4850
|
# resp.file_systems[0].lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
4810
4851
|
# resp.file_systems[0].lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
4811
4852
|
# resp.file_systems[0].lustre_configuration.log_configuration.destination #=> String
|
|
4853
|
+
# resp.file_systems[0].lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
4854
|
+
# resp.file_systems[0].lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
4855
|
+
# resp.file_systems[0].lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
4812
4856
|
# resp.file_systems[0].administrative_actions #=> Array
|
|
4813
4857
|
# 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"
|
|
4814
4858
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
|
@@ -5053,6 +5097,9 @@ module Aws::FSx
|
|
|
5053
5097
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
5054
5098
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
5055
5099
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
5100
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
5101
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
5102
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
5056
5103
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
5057
5104
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
5058
5105
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -5354,6 +5401,9 @@ module Aws::FSx
|
|
|
5354
5401
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
5355
5402
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
5356
5403
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
5404
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
5405
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
5406
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
5357
5407
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
5358
5408
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
5359
5409
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -5661,6 +5711,9 @@ module Aws::FSx
|
|
|
5661
5711
|
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
5662
5712
|
# resp.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
5663
5713
|
# resp.file_system.lustre_configuration.log_configuration.destination #=> String
|
|
5714
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
5715
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
5716
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
5664
5717
|
# resp.file_system.administrative_actions #=> Array
|
|
5665
5718
|
# 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"
|
|
5666
5719
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -6022,6 +6075,8 @@ module Aws::FSx
|
|
|
6022
6075
|
#
|
|
6023
6076
|
# * `DataCompressionType`
|
|
6024
6077
|
#
|
|
6078
|
+
# * `LustreRootSquashConfiguration`
|
|
6079
|
+
#
|
|
6025
6080
|
# * `StorageCapacity`
|
|
6026
6081
|
#
|
|
6027
6082
|
# * `WeeklyMaintenanceStartTime`
|
|
@@ -6212,6 +6267,10 @@ module Aws::FSx
|
|
|
6212
6267
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
|
6213
6268
|
# destination: "GeneralARN",
|
|
6214
6269
|
# },
|
|
6270
|
+
# root_squash_configuration: {
|
|
6271
|
+
# root_squash: "LustreRootSquash",
|
|
6272
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
|
6273
|
+
# },
|
|
6215
6274
|
# },
|
|
6216
6275
|
# ontap_configuration: {
|
|
6217
6276
|
# automatic_backup_retention_days: 1,
|
|
@@ -6300,6 +6359,9 @@ module Aws::FSx
|
|
|
6300
6359
|
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
6301
6360
|
# resp.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
6302
6361
|
# resp.file_system.lustre_configuration.log_configuration.destination #=> String
|
|
6362
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
6363
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
6364
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
6303
6365
|
# resp.file_system.administrative_actions #=> Array
|
|
6304
6366
|
# 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"
|
|
6305
6367
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -6505,6 +6567,9 @@ module Aws::FSx
|
|
|
6505
6567
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
6506
6568
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
6507
6569
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
6570
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
6571
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
6572
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
6508
6573
|
# resp.snapshot.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
6509
6574
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
6510
6575
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -6836,6 +6901,9 @@ module Aws::FSx
|
|
|
6836
6901
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
6837
6902
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
6838
6903
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
|
6904
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
6905
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
6906
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
6839
6907
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
|
6840
6908
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
6841
6909
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
@@ -6920,7 +6988,7 @@ module Aws::FSx
|
|
|
6920
6988
|
params: params,
|
|
6921
6989
|
config: config)
|
|
6922
6990
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
6923
|
-
context[:gem_version] = '1.
|
|
6991
|
+
context[:gem_version] = '1.56.0'
|
|
6924
6992
|
Seahorse::Client::Request.new(handlers, context)
|
|
6925
6993
|
end
|
|
6926
6994
|
|
|
@@ -217,6 +217,10 @@ module Aws::FSx
|
|
|
217
217
|
LustreFileSystemMountName = Shapes::StringShape.new(name: 'LustreFileSystemMountName')
|
|
218
218
|
LustreLogConfiguration = Shapes::StructureShape.new(name: 'LustreLogConfiguration')
|
|
219
219
|
LustreLogCreateConfiguration = Shapes::StructureShape.new(name: 'LustreLogCreateConfiguration')
|
|
220
|
+
LustreNoSquashNid = Shapes::StringShape.new(name: 'LustreNoSquashNid')
|
|
221
|
+
LustreNoSquashNids = Shapes::ListShape.new(name: 'LustreNoSquashNids')
|
|
222
|
+
LustreRootSquash = Shapes::StringShape.new(name: 'LustreRootSquash')
|
|
223
|
+
LustreRootSquashConfiguration = Shapes::StructureShape.new(name: 'LustreRootSquashConfiguration')
|
|
220
224
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
221
225
|
Megabytes = Shapes::IntegerShape.new(name: 'Megabytes')
|
|
222
226
|
MegabytesPerSecond = Shapes::IntegerShape.new(name: 'MegabytesPerSecond')
|
|
@@ -549,6 +553,7 @@ module Aws::FSx
|
|
|
549
553
|
CreateFileSystemLustreConfiguration.add_member(:drive_cache_type, Shapes::ShapeRef.new(shape: DriveCacheType, location_name: "DriveCacheType"))
|
|
550
554
|
CreateFileSystemLustreConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: DataCompressionType, location_name: "DataCompressionType"))
|
|
551
555
|
CreateFileSystemLustreConfiguration.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LustreLogCreateConfiguration, location_name: "LogConfiguration"))
|
|
556
|
+
CreateFileSystemLustreConfiguration.add_member(:root_squash_configuration, Shapes::ShapeRef.new(shape: LustreRootSquashConfiguration, location_name: "RootSquashConfiguration"))
|
|
552
557
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
|
553
558
|
|
|
554
559
|
CreateFileSystemOntapConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
|
@@ -1057,6 +1062,7 @@ module Aws::FSx
|
|
|
1057
1062
|
LustreFileSystemConfiguration.add_member(:drive_cache_type, Shapes::ShapeRef.new(shape: DriveCacheType, location_name: "DriveCacheType"))
|
|
1058
1063
|
LustreFileSystemConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: DataCompressionType, location_name: "DataCompressionType"))
|
|
1059
1064
|
LustreFileSystemConfiguration.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LustreLogConfiguration, location_name: "LogConfiguration"))
|
|
1065
|
+
LustreFileSystemConfiguration.add_member(:root_squash_configuration, Shapes::ShapeRef.new(shape: LustreRootSquashConfiguration, location_name: "RootSquashConfiguration"))
|
|
1060
1066
|
LustreFileSystemConfiguration.struct_class = Types::LustreFileSystemConfiguration
|
|
1061
1067
|
|
|
1062
1068
|
LustreLogConfiguration.add_member(:level, Shapes::ShapeRef.new(shape: LustreAccessAuditLogLevel, required: true, location_name: "Level"))
|
|
@@ -1067,6 +1073,12 @@ module Aws::FSx
|
|
|
1067
1073
|
LustreLogCreateConfiguration.add_member(:destination, Shapes::ShapeRef.new(shape: GeneralARN, location_name: "Destination"))
|
|
1068
1074
|
LustreLogCreateConfiguration.struct_class = Types::LustreLogCreateConfiguration
|
|
1069
1075
|
|
|
1076
|
+
LustreNoSquashNids.member = Shapes::ShapeRef.new(shape: LustreNoSquashNid)
|
|
1077
|
+
|
|
1078
|
+
LustreRootSquashConfiguration.add_member(:root_squash, Shapes::ShapeRef.new(shape: LustreRootSquash, location_name: "RootSquash"))
|
|
1079
|
+
LustreRootSquashConfiguration.add_member(:no_squash_nids, Shapes::ShapeRef.new(shape: LustreNoSquashNids, location_name: "NoSquashNids"))
|
|
1080
|
+
LustreRootSquashConfiguration.struct_class = Types::LustreRootSquashConfiguration
|
|
1081
|
+
|
|
1070
1082
|
MissingFileSystemConfiguration.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
|
1071
1083
|
MissingFileSystemConfiguration.struct_class = Types::MissingFileSystemConfiguration
|
|
1072
1084
|
|
|
@@ -1340,6 +1352,7 @@ module Aws::FSx
|
|
|
1340
1352
|
UpdateFileSystemLustreConfiguration.add_member(:auto_import_policy, Shapes::ShapeRef.new(shape: AutoImportPolicyType, location_name: "AutoImportPolicy"))
|
|
1341
1353
|
UpdateFileSystemLustreConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: DataCompressionType, location_name: "DataCompressionType"))
|
|
1342
1354
|
UpdateFileSystemLustreConfiguration.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LustreLogCreateConfiguration, location_name: "LogConfiguration"))
|
|
1355
|
+
UpdateFileSystemLustreConfiguration.add_member(:root_squash_configuration, Shapes::ShapeRef.new(shape: LustreRootSquashConfiguration, location_name: "RootSquashConfiguration"))
|
|
1343
1356
|
UpdateFileSystemLustreConfiguration.struct_class = Types::UpdateFileSystemLustreConfiguration
|
|
1344
1357
|
|
|
1345
1358
|
UpdateFileSystemOntapConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
|
@@ -1208,6 +1208,10 @@ module Aws::FSx
|
|
|
1208
1208
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
|
1209
1209
|
# destination: "GeneralARN",
|
|
1210
1210
|
# },
|
|
1211
|
+
# root_squash_configuration: {
|
|
1212
|
+
# root_squash: "LustreRootSquash",
|
|
1213
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
|
1214
|
+
# },
|
|
1211
1215
|
# },
|
|
1212
1216
|
# storage_type: "SSD", # accepts SSD, HDD
|
|
1213
1217
|
# kms_key_id: "KmsKeyId",
|
|
@@ -1447,6 +1451,10 @@ module Aws::FSx
|
|
|
1447
1451
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
|
1448
1452
|
# destination: "GeneralARN",
|
|
1449
1453
|
# },
|
|
1454
|
+
# root_squash_configuration: {
|
|
1455
|
+
# root_squash: "LustreRootSquash",
|
|
1456
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
|
1457
|
+
# },
|
|
1450
1458
|
# }
|
|
1451
1459
|
#
|
|
1452
1460
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
@@ -1693,6 +1701,13 @@ module Aws::FSx
|
|
|
1693
1701
|
# system to Amazon CloudWatch Logs.
|
|
1694
1702
|
# @return [Types::LustreLogCreateConfiguration]
|
|
1695
1703
|
#
|
|
1704
|
+
# @!attribute [rw] root_squash_configuration
|
|
1705
|
+
# The Lustre root squash configuration used when creating an Amazon
|
|
1706
|
+
# FSx for Lustre file system. When enabled, root squash restricts
|
|
1707
|
+
# root-level access from clients that try to access your file system
|
|
1708
|
+
# as a root user.
|
|
1709
|
+
# @return [Types::LustreRootSquashConfiguration]
|
|
1710
|
+
#
|
|
1696
1711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
|
1697
1712
|
#
|
|
1698
1713
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
|
@@ -1708,7 +1723,8 @@ module Aws::FSx
|
|
|
1708
1723
|
:copy_tags_to_backups,
|
|
1709
1724
|
:drive_cache_type,
|
|
1710
1725
|
:data_compression_type,
|
|
1711
|
-
:log_configuration
|
|
1726
|
+
:log_configuration,
|
|
1727
|
+
:root_squash_configuration)
|
|
1712
1728
|
SENSITIVE = []
|
|
1713
1729
|
include Aws::Structure
|
|
1714
1730
|
end
|
|
@@ -1758,12 +1774,11 @@ module Aws::FSx
|
|
|
1758
1774
|
# * `SINGLE_AZ_1` - A file system configured for Single-AZ redundancy.
|
|
1759
1775
|
#
|
|
1760
1776
|
# For information about the use cases for Multi-AZ and Single-AZ
|
|
1761
|
-
# deployments, refer to [Choosing
|
|
1762
|
-
# deployment][1].
|
|
1777
|
+
# deployments, refer to [Choosing a file system deployment type][1].
|
|
1763
1778
|
#
|
|
1764
1779
|
#
|
|
1765
1780
|
#
|
|
1766
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-
|
|
1781
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-AZ.html
|
|
1767
1782
|
# @return [String]
|
|
1768
1783
|
#
|
|
1769
1784
|
# @!attribute [rw] endpoint_ip_address_range
|
|
@@ -2037,6 +2052,10 @@ module Aws::FSx
|
|
|
2037
2052
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
|
2038
2053
|
# destination: "GeneralARN",
|
|
2039
2054
|
# },
|
|
2055
|
+
# root_squash_configuration: {
|
|
2056
|
+
# root_squash: "LustreRootSquash",
|
|
2057
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
|
2058
|
+
# },
|
|
2040
2059
|
# },
|
|
2041
2060
|
# ontap_configuration: {
|
|
2042
2061
|
# automatic_backup_retention_days: 1,
|
|
@@ -5639,8 +5658,8 @@ module Aws::FSx
|
|
|
5639
5658
|
#
|
|
5640
5659
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
5641
5660
|
# The preferred start time to perform weekly maintenance, formatted
|
|
5642
|
-
# d:HH:MM in the UTC time zone. Here, d is the weekday number, from
|
|
5643
|
-
# through 7, beginning with Monday and ending with Sunday.
|
|
5661
|
+
# d:HH:MM in the UTC time zone. Here, `d` is the weekday number, from
|
|
5662
|
+
# 1 through 7, beginning with Monday and ending with Sunday.
|
|
5644
5663
|
# @return [String]
|
|
5645
5664
|
#
|
|
5646
5665
|
# @!attribute [rw] data_repository_configuration
|
|
@@ -5755,6 +5774,12 @@ module Aws::FSx
|
|
|
5755
5774
|
# log events for your file system to Amazon CloudWatch Logs.
|
|
5756
5775
|
# @return [Types::LustreLogConfiguration]
|
|
5757
5776
|
#
|
|
5777
|
+
# @!attribute [rw] root_squash_configuration
|
|
5778
|
+
# The Lustre root squash configuration for an Amazon FSx for Lustre
|
|
5779
|
+
# file system. When enabled, root squash restricts root-level access
|
|
5780
|
+
# from clients that try to access your file system as a root user.
|
|
5781
|
+
# @return [Types::LustreRootSquashConfiguration]
|
|
5782
|
+
#
|
|
5758
5783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
|
5759
5784
|
#
|
|
5760
5785
|
class LustreFileSystemConfiguration < Struct.new(
|
|
@@ -5768,7 +5793,8 @@ module Aws::FSx
|
|
|
5768
5793
|
:copy_tags_to_backups,
|
|
5769
5794
|
:drive_cache_type,
|
|
5770
5795
|
:data_compression_type,
|
|
5771
|
-
:log_configuration
|
|
5796
|
+
:log_configuration,
|
|
5797
|
+
:root_squash_configuration)
|
|
5772
5798
|
SENSITIVE = []
|
|
5773
5799
|
include Aws::Structure
|
|
5774
5800
|
end
|
|
@@ -5886,6 +5912,68 @@ module Aws::FSx
|
|
|
5886
5912
|
include Aws::Structure
|
|
5887
5913
|
end
|
|
5888
5914
|
|
|
5915
|
+
# The configuration for Lustre root squash used to restrict root-level
|
|
5916
|
+
# access from clients that try to access your FSx for Lustre file system
|
|
5917
|
+
# as root. Use the `RootSquash` parameter to enable root squash. To
|
|
5918
|
+
# learn more about Lustre root squash, see [Lustre root squash][1].
|
|
5919
|
+
#
|
|
5920
|
+
# You can also use the `NoSquashNids` parameter to provide an array of
|
|
5921
|
+
# clients who are not affected by the root squash setting. These clients
|
|
5922
|
+
# will access the file system as root, with unrestricted privileges.
|
|
5923
|
+
#
|
|
5924
|
+
#
|
|
5925
|
+
#
|
|
5926
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/root-squash.html
|
|
5927
|
+
#
|
|
5928
|
+
# @note When making an API call, you may pass LustreRootSquashConfiguration
|
|
5929
|
+
# data as a hash:
|
|
5930
|
+
#
|
|
5931
|
+
# {
|
|
5932
|
+
# root_squash: "LustreRootSquash",
|
|
5933
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
|
5934
|
+
# }
|
|
5935
|
+
#
|
|
5936
|
+
# @!attribute [rw] root_squash
|
|
5937
|
+
# You enable root squash by setting a user ID (UID) and group ID (GID)
|
|
5938
|
+
# for the file system in the format `UID:GID` (for example,
|
|
5939
|
+
# `365534:65534`). The UID and GID values can range from `0` to
|
|
5940
|
+
# `4294967294`\:
|
|
5941
|
+
#
|
|
5942
|
+
# * A non-zero value for UID and GID enables root squash. The UID and
|
|
5943
|
+
# GID values can be different, but each must be a non-zero value.
|
|
5944
|
+
#
|
|
5945
|
+
# * A value of `0` (zero) for UID and GID indicates root, and
|
|
5946
|
+
# therefore disables root squash.
|
|
5947
|
+
#
|
|
5948
|
+
# When root squash is enabled, the user ID and group ID of a root user
|
|
5949
|
+
# accessing the file system are re-mapped to the UID and GID you
|
|
5950
|
+
# provide.
|
|
5951
|
+
# @return [String]
|
|
5952
|
+
#
|
|
5953
|
+
# @!attribute [rw] no_squash_nids
|
|
5954
|
+
# When root squash is enabled, you can optionally specify an array of
|
|
5955
|
+
# NIDs of clients for which root squash does not apply. A client NID
|
|
5956
|
+
# is a Lustre Network Identifier used to uniquely identify a client.
|
|
5957
|
+
# You can specify the NID as either a single address or a range of
|
|
5958
|
+
# addresses:
|
|
5959
|
+
#
|
|
5960
|
+
# * A single address is described in standard Lustre NID format by
|
|
5961
|
+
# specifying the client’s IP address followed by the Lustre network
|
|
5962
|
+
# ID (for example, `10.0.1.6@tcp`).
|
|
5963
|
+
#
|
|
5964
|
+
# * An address range is described using a dash to separate the range
|
|
5965
|
+
# (for example, `10.0.[2-10].[1-255]@tcp`).
|
|
5966
|
+
# @return [Array<String>]
|
|
5967
|
+
#
|
|
5968
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreRootSquashConfiguration AWS API Documentation
|
|
5969
|
+
#
|
|
5970
|
+
class LustreRootSquashConfiguration < Struct.new(
|
|
5971
|
+
:root_squash,
|
|
5972
|
+
:no_squash_nids)
|
|
5973
|
+
SENSITIVE = []
|
|
5974
|
+
include Aws::Structure
|
|
5975
|
+
end
|
|
5976
|
+
|
|
5889
5977
|
# A file system configuration is required for this operation.
|
|
5890
5978
|
#
|
|
5891
5979
|
# @!attribute [rw] message
|
|
@@ -7604,6 +7692,10 @@ module Aws::FSx
|
|
|
7604
7692
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
|
7605
7693
|
# destination: "GeneralARN",
|
|
7606
7694
|
# },
|
|
7695
|
+
# root_squash_configuration: {
|
|
7696
|
+
# root_squash: "LustreRootSquash",
|
|
7697
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
|
7698
|
+
# },
|
|
7607
7699
|
# }
|
|
7608
7700
|
#
|
|
7609
7701
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
@@ -7681,6 +7773,13 @@ module Aws::FSx
|
|
|
7681
7773
|
# system to Amazon CloudWatch Logs.
|
|
7682
7774
|
# @return [Types::LustreLogCreateConfiguration]
|
|
7683
7775
|
#
|
|
7776
|
+
# @!attribute [rw] root_squash_configuration
|
|
7777
|
+
# The Lustre root squash configuration used when updating an Amazon
|
|
7778
|
+
# FSx for Lustre file system. When enabled, root squash restricts
|
|
7779
|
+
# root-level access from clients that try to access your file system
|
|
7780
|
+
# as a root user.
|
|
7781
|
+
# @return [Types::LustreRootSquashConfiguration]
|
|
7782
|
+
#
|
|
7684
7783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
|
7685
7784
|
#
|
|
7686
7785
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
|
@@ -7689,7 +7788,8 @@ module Aws::FSx
|
|
|
7689
7788
|
:automatic_backup_retention_days,
|
|
7690
7789
|
:auto_import_policy,
|
|
7691
7790
|
:data_compression_type,
|
|
7692
|
-
:log_configuration
|
|
7791
|
+
:log_configuration,
|
|
7792
|
+
:root_squash_configuration)
|
|
7693
7793
|
SENSITIVE = []
|
|
7694
7794
|
include Aws::Structure
|
|
7695
7795
|
end
|
|
@@ -7905,6 +8005,10 @@ module Aws::FSx
|
|
|
7905
8005
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
|
7906
8006
|
# destination: "GeneralARN",
|
|
7907
8007
|
# },
|
|
8008
|
+
# root_squash_configuration: {
|
|
8009
|
+
# root_squash: "LustreRootSquash",
|
|
8010
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
|
8011
|
+
# },
|
|
7908
8012
|
# },
|
|
7909
8013
|
# ontap_configuration: {
|
|
7910
8014
|
# automatic_backup_retention_days: 1,
|
data/lib/aws-sdk-fsx.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-fsx
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.56.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-05-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|