aws-sdk-fsx 1.55.0 → 1.58.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +85 -10
- data/lib/aws-sdk-fsx/client_api.rb +13 -0
- data/lib/aws-sdk-fsx/types.rb +138 -26
- 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: d3a60e59369681799f95a64fb13e8f2da3c8f3f407351940e68827cb9777b6f4
|
4
|
+
data.tar.gz: 66ef4352e844e2c88d81e8bcbecfb6879de3a56aa11162d991c62d07dc777c5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4768cc05392353ac6591e7fc1e3291d70d59faeae6c11e90311333135dacb3ea566f303d8a590bafe034c4fb015e6c594efdc2f63f13b33ae7942a64f377ed19
|
7
|
+
data.tar.gz: 2e08ae6d3c3d353f5c3207e6e77fb1278fb19d969523a209f5b57c4dfd4a7aaa7986d355d978150205e5697fb4a83fa71130c661922af0cb0bfc49d6ef3506c5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.58.0 (2022-08-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Amazon FSx for NetApp ONTAP.
|
8
|
+
|
9
|
+
1.57.0 (2022-07-29)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for Amazon FSx
|
13
|
+
|
14
|
+
1.56.0 (2022-05-25)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* 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.
|
18
|
+
|
4
19
|
1.55.0 (2022-04-13)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.58.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
|
@@ -1596,13 +1608,21 @@ module Aws::FSx
|
|
1596
1608
|
# Specifies the type of data repository task to create.
|
1597
1609
|
#
|
1598
1610
|
# @option params [Array<String>] :paths
|
1599
|
-
#
|
1600
|
-
#
|
1601
|
-
#
|
1602
|
-
#
|
1603
|
-
#
|
1604
|
-
#
|
1605
|
-
#
|
1611
|
+
# A list of paths for the data repository task to use when the task is
|
1612
|
+
# processed. If a path that you provide isn't valid, the task fails.
|
1613
|
+
#
|
1614
|
+
# * For export tasks, the list contains paths on the Amazon FSx file
|
1615
|
+
# system from which the files are exported to the Amazon S3 bucket.
|
1616
|
+
# The default path is the file system root directory. The paths you
|
1617
|
+
# provide need to be relative to the mount point of the file system.
|
1618
|
+
# If the mount point is `/mnt/fsx` and `/mnt/fsx/path1` is a directory
|
1619
|
+
# or file on the file system you want to export, then the path to
|
1620
|
+
# provide is `path1`.
|
1621
|
+
#
|
1622
|
+
# * For import tasks, the list contains paths in the Amazon S3 bucket
|
1623
|
+
# from which POSIX metadata changes are imported to the Amazon FSx
|
1624
|
+
# file system. The path can be an S3 bucket or prefix in the format
|
1625
|
+
# `s3://myBucket/myPrefix` (where `myPrefix` is optional).
|
1606
1626
|
#
|
1607
1627
|
# @option params [required, String] :file_system_id
|
1608
1628
|
# The globally unique ID of the file system, assigned by Amazon FSx.
|
@@ -2053,6 +2073,10 @@ module Aws::FSx
|
|
2053
2073
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
2054
2074
|
# destination: "GeneralARN",
|
2055
2075
|
# },
|
2076
|
+
# root_squash_configuration: {
|
2077
|
+
# root_squash: "LustreRootSquash",
|
2078
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
2079
|
+
# },
|
2056
2080
|
# },
|
2057
2081
|
# ontap_configuration: {
|
2058
2082
|
# automatic_backup_retention_days: 1,
|
@@ -2170,6 +2194,9 @@ module Aws::FSx
|
|
2170
2194
|
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
2171
2195
|
# resp.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
2172
2196
|
# resp.file_system.lustre_configuration.log_configuration.destination #=> String
|
2197
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
2198
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
2199
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
2173
2200
|
# resp.file_system.administrative_actions #=> Array
|
2174
2201
|
# 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
2202
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -2540,6 +2567,10 @@ module Aws::FSx
|
|
2540
2567
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
2541
2568
|
# destination: "GeneralARN",
|
2542
2569
|
# },
|
2570
|
+
# root_squash_configuration: {
|
2571
|
+
# root_squash: "LustreRootSquash",
|
2572
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
2573
|
+
# },
|
2543
2574
|
# },
|
2544
2575
|
# storage_type: "SSD", # accepts SSD, HDD
|
2545
2576
|
# kms_key_id: "KmsKeyId",
|
@@ -2644,6 +2675,9 @@ module Aws::FSx
|
|
2644
2675
|
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
2645
2676
|
# resp.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
2646
2677
|
# resp.file_system.lustre_configuration.log_configuration.destination #=> String
|
2678
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
2679
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
2680
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
2647
2681
|
# resp.file_system.administrative_actions #=> Array
|
2648
2682
|
# 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
2683
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -2887,6 +2921,9 @@ module Aws::FSx
|
|
2887
2921
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
2888
2922
|
# 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
2923
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
2924
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
2925
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
2926
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
2890
2927
|
# resp.snapshot.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
2891
2928
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
2892
2929
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -3267,6 +3304,9 @@ module Aws::FSx
|
|
3267
3304
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
3268
3305
|
# 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
3306
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
3307
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
3308
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
3309
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
3270
3310
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
3271
3311
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
3272
3312
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -3481,6 +3521,9 @@ module Aws::FSx
|
|
3481
3521
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
3482
3522
|
# 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
3523
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
3524
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
3525
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
3526
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
3484
3527
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
3485
3528
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
3486
3529
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -4142,6 +4185,9 @@ module Aws::FSx
|
|
4142
4185
|
# resp.backups[0].file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
4143
4186
|
# resp.backups[0].file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
4144
4187
|
# resp.backups[0].file_system.lustre_configuration.log_configuration.destination #=> String
|
4188
|
+
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
4189
|
+
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
4190
|
+
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
4145
4191
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
4146
4192
|
# 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
4193
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -4324,6 +4370,9 @@ module Aws::FSx
|
|
4324
4370
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
4325
4371
|
# 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
4372
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
4373
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
4374
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
4375
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
4327
4376
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
4328
4377
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
4329
4378
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -4809,6 +4858,9 @@ module Aws::FSx
|
|
4809
4858
|
# resp.file_systems[0].lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
4810
4859
|
# resp.file_systems[0].lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
4811
4860
|
# resp.file_systems[0].lustre_configuration.log_configuration.destination #=> String
|
4861
|
+
# resp.file_systems[0].lustre_configuration.root_squash_configuration.root_squash #=> String
|
4862
|
+
# resp.file_systems[0].lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
4863
|
+
# resp.file_systems[0].lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
4812
4864
|
# resp.file_systems[0].administrative_actions #=> Array
|
4813
4865
|
# 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
4866
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
@@ -5053,6 +5105,9 @@ module Aws::FSx
|
|
5053
5105
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
5054
5106
|
# 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
5107
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
5108
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
5109
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
5110
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
5056
5111
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
5057
5112
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
5058
5113
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -5354,6 +5409,9 @@ module Aws::FSx
|
|
5354
5409
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
5355
5410
|
# 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
5411
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
5412
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
5413
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
5414
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
5357
5415
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
5358
5416
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
5359
5417
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -5484,8 +5542,7 @@ module Aws::FSx
|
|
5484
5542
|
req.send_request(options)
|
5485
5543
|
end
|
5486
5544
|
|
5487
|
-
# Lists tags for
|
5488
|
-
# Amazon FSx for Windows File Server.
|
5545
|
+
# Lists tags for Amazon FSx resources.
|
5489
5546
|
#
|
5490
5547
|
# When retrieving all tags, you can optionally specify the `MaxResults`
|
5491
5548
|
# parameter to limit the number of tags in a response. If more tags
|
@@ -5661,6 +5718,9 @@ module Aws::FSx
|
|
5661
5718
|
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
5662
5719
|
# resp.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
5663
5720
|
# resp.file_system.lustre_configuration.log_configuration.destination #=> String
|
5721
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
5722
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
5723
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
5664
5724
|
# resp.file_system.administrative_actions #=> Array
|
5665
5725
|
# 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
5726
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -6022,6 +6082,8 @@ module Aws::FSx
|
|
6022
6082
|
#
|
6023
6083
|
# * `DataCompressionType`
|
6024
6084
|
#
|
6085
|
+
# * `LustreRootSquashConfiguration`
|
6086
|
+
#
|
6025
6087
|
# * `StorageCapacity`
|
6026
6088
|
#
|
6027
6089
|
# * `WeeklyMaintenanceStartTime`
|
@@ -6212,6 +6274,10 @@ module Aws::FSx
|
|
6212
6274
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
6213
6275
|
# destination: "GeneralARN",
|
6214
6276
|
# },
|
6277
|
+
# root_squash_configuration: {
|
6278
|
+
# root_squash: "LustreRootSquash",
|
6279
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
6280
|
+
# },
|
6215
6281
|
# },
|
6216
6282
|
# ontap_configuration: {
|
6217
6283
|
# automatic_backup_retention_days: 1,
|
@@ -6300,6 +6366,9 @@ module Aws::FSx
|
|
6300
6366
|
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
6301
6367
|
# resp.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
6302
6368
|
# resp.file_system.lustre_configuration.log_configuration.destination #=> String
|
6369
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
6370
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
6371
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
6303
6372
|
# resp.file_system.administrative_actions #=> Array
|
6304
6373
|
# 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
6374
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -6505,6 +6574,9 @@ module Aws::FSx
|
|
6505
6574
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
6506
6575
|
# 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
6576
|
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
6577
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
6578
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
6579
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
6508
6580
|
# resp.snapshot.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
6509
6581
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
6510
6582
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -6836,6 +6908,9 @@ module Aws::FSx
|
|
6836
6908
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
6837
6909
|
# 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
6910
|
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
6911
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
6912
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
6913
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
6839
6914
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
6840
6915
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
6841
6916
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
@@ -6920,7 +6995,7 @@ module Aws::FSx
|
|
6920
6995
|
params: params,
|
6921
6996
|
config: config)
|
6922
6997
|
context[:gem_name] = 'aws-sdk-fsx'
|
6923
|
-
context[:gem_version] = '1.
|
6998
|
+
context[:gem_version] = '1.58.0'
|
6924
6999
|
Seahorse::Client::Request.new(handlers, context)
|
6925
7000
|
end
|
6926
7001
|
|
@@ -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
@@ -1087,13 +1087,21 @@ module Aws::FSx
|
|
1087
1087
|
# @return [String]
|
1088
1088
|
#
|
1089
1089
|
# @!attribute [rw] paths
|
1090
|
-
#
|
1091
|
-
#
|
1092
|
-
#
|
1093
|
-
#
|
1094
|
-
#
|
1095
|
-
#
|
1096
|
-
#
|
1090
|
+
# A list of paths for the data repository task to use when the task is
|
1091
|
+
# processed. If a path that you provide isn't valid, the task fails.
|
1092
|
+
#
|
1093
|
+
# * For export tasks, the list contains paths on the Amazon FSx file
|
1094
|
+
# system from which the files are exported to the Amazon S3 bucket.
|
1095
|
+
# The default path is the file system root directory. The paths you
|
1096
|
+
# provide need to be relative to the mount point of the file system.
|
1097
|
+
# If the mount point is `/mnt/fsx` and `/mnt/fsx/path1` is a
|
1098
|
+
# directory or file on the file system you want to export, then the
|
1099
|
+
# path to provide is `path1`.
|
1100
|
+
#
|
1101
|
+
# * For import tasks, the list contains paths in the Amazon S3 bucket
|
1102
|
+
# from which POSIX metadata changes are imported to the Amazon FSx
|
1103
|
+
# file system. The path can be an S3 bucket or prefix in the format
|
1104
|
+
# `s3://myBucket/myPrefix` (where `myPrefix` is optional).
|
1097
1105
|
# @return [Array<String>]
|
1098
1106
|
#
|
1099
1107
|
# @!attribute [rw] file_system_id
|
@@ -1208,6 +1216,10 @@ module Aws::FSx
|
|
1208
1216
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
1209
1217
|
# destination: "GeneralARN",
|
1210
1218
|
# },
|
1219
|
+
# root_squash_configuration: {
|
1220
|
+
# root_squash: "LustreRootSquash",
|
1221
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
1222
|
+
# },
|
1211
1223
|
# },
|
1212
1224
|
# storage_type: "SSD", # accepts SSD, HDD
|
1213
1225
|
# kms_key_id: "KmsKeyId",
|
@@ -1447,6 +1459,10 @@ module Aws::FSx
|
|
1447
1459
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
1448
1460
|
# destination: "GeneralARN",
|
1449
1461
|
# },
|
1462
|
+
# root_squash_configuration: {
|
1463
|
+
# root_squash: "LustreRootSquash",
|
1464
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
1465
|
+
# },
|
1450
1466
|
# }
|
1451
1467
|
#
|
1452
1468
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -1693,6 +1709,13 @@ module Aws::FSx
|
|
1693
1709
|
# system to Amazon CloudWatch Logs.
|
1694
1710
|
# @return [Types::LustreLogCreateConfiguration]
|
1695
1711
|
#
|
1712
|
+
# @!attribute [rw] root_squash_configuration
|
1713
|
+
# The Lustre root squash configuration used when creating an Amazon
|
1714
|
+
# FSx for Lustre file system. When enabled, root squash restricts
|
1715
|
+
# root-level access from clients that try to access your file system
|
1716
|
+
# as a root user.
|
1717
|
+
# @return [Types::LustreRootSquashConfiguration]
|
1718
|
+
#
|
1696
1719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
1697
1720
|
#
|
1698
1721
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
@@ -1708,7 +1731,8 @@ module Aws::FSx
|
|
1708
1731
|
:copy_tags_to_backups,
|
1709
1732
|
:drive_cache_type,
|
1710
1733
|
:data_compression_type,
|
1711
|
-
:log_configuration
|
1734
|
+
:log_configuration,
|
1735
|
+
:root_squash_configuration)
|
1712
1736
|
SENSITIVE = []
|
1713
1737
|
include Aws::Structure
|
1714
1738
|
end
|
@@ -1758,12 +1782,11 @@ module Aws::FSx
|
|
1758
1782
|
# * `SINGLE_AZ_1` - A file system configured for Single-AZ redundancy.
|
1759
1783
|
#
|
1760
1784
|
# For information about the use cases for Multi-AZ and Single-AZ
|
1761
|
-
# deployments, refer to [Choosing
|
1762
|
-
# deployment][1].
|
1785
|
+
# deployments, refer to [Choosing a file system deployment type][1].
|
1763
1786
|
#
|
1764
1787
|
#
|
1765
1788
|
#
|
1766
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-
|
1789
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-AZ.html
|
1767
1790
|
# @return [String]
|
1768
1791
|
#
|
1769
1792
|
# @!attribute [rw] endpoint_ip_address_range
|
@@ -1901,13 +1924,13 @@ module Aws::FSx
|
|
1901
1924
|
# @return [Boolean]
|
1902
1925
|
#
|
1903
1926
|
# @!attribute [rw] copy_tags_to_volumes
|
1904
|
-
# A Boolean value indicating whether tags for the
|
1905
|
-
# copied to
|
1906
|
-
# `true`, all tags for the
|
1907
|
-
# user doesn't specify tags. If this value is `true`, and you
|
1908
|
-
# one or more tags, only the specified tags are copied to
|
1909
|
-
# If you specify one or more tags when creating the
|
1910
|
-
# are copied from the
|
1927
|
+
# A Boolean value indicating whether tags for the file system should
|
1928
|
+
# be copied to volumes. This value defaults to `false`. If it's set
|
1929
|
+
# to `true`, all tags for the file system are copied to volumes where
|
1930
|
+
# the user doesn't specify tags. If this value is `true`, and you
|
1931
|
+
# specify one or more tags, only the specified tags are copied to
|
1932
|
+
# volumes. If you specify one or more tags when creating the volume,
|
1933
|
+
# no tags are copied from the file system, regardless of this value.
|
1911
1934
|
# @return [Boolean]
|
1912
1935
|
#
|
1913
1936
|
# @!attribute [rw] daily_automatic_backup_start_time
|
@@ -2037,6 +2060,10 @@ module Aws::FSx
|
|
2037
2060
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
2038
2061
|
# destination: "GeneralARN",
|
2039
2062
|
# },
|
2063
|
+
# root_squash_configuration: {
|
2064
|
+
# root_squash: "LustreRootSquash",
|
2065
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
2066
|
+
# },
|
2040
2067
|
# },
|
2041
2068
|
# ontap_configuration: {
|
2042
2069
|
# automatic_backup_retention_days: 1,
|
@@ -2518,13 +2545,13 @@ module Aws::FSx
|
|
2518
2545
|
# @return [String]
|
2519
2546
|
#
|
2520
2547
|
# @!attribute [rw] security_style
|
2521
|
-
# The security style for the volume.
|
2522
|
-
#
|
2548
|
+
# The security style for the volume. If a volume's security style is
|
2549
|
+
# not specified, it is automatically set to the root volume's
|
2550
|
+
# security style. Specify one of the following values:
|
2523
2551
|
#
|
2524
2552
|
# * `UNIX` if the file system is managed by a UNIX administrator, the
|
2525
2553
|
# majority of users are NFS clients, and an application accessing
|
2526
|
-
# the data uses a UNIX user as the service account.
|
2527
|
-
# default.
|
2554
|
+
# the data uses a UNIX user as the service account.
|
2528
2555
|
#
|
2529
2556
|
# * `NTFS` if the file system is managed by a Windows administrator,
|
2530
2557
|
# the majority of users are SMB clients, and an application
|
@@ -5639,8 +5666,8 @@ module Aws::FSx
|
|
5639
5666
|
#
|
5640
5667
|
# @!attribute [rw] weekly_maintenance_start_time
|
5641
5668
|
# 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.
|
5669
|
+
# d:HH:MM in the UTC time zone. Here, `d` is the weekday number, from
|
5670
|
+
# 1 through 7, beginning with Monday and ending with Sunday.
|
5644
5671
|
# @return [String]
|
5645
5672
|
#
|
5646
5673
|
# @!attribute [rw] data_repository_configuration
|
@@ -5755,6 +5782,12 @@ module Aws::FSx
|
|
5755
5782
|
# log events for your file system to Amazon CloudWatch Logs.
|
5756
5783
|
# @return [Types::LustreLogConfiguration]
|
5757
5784
|
#
|
5785
|
+
# @!attribute [rw] root_squash_configuration
|
5786
|
+
# The Lustre root squash configuration for an Amazon FSx for Lustre
|
5787
|
+
# file system. When enabled, root squash restricts root-level access
|
5788
|
+
# from clients that try to access your file system as a root user.
|
5789
|
+
# @return [Types::LustreRootSquashConfiguration]
|
5790
|
+
#
|
5758
5791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
5759
5792
|
#
|
5760
5793
|
class LustreFileSystemConfiguration < Struct.new(
|
@@ -5768,7 +5801,8 @@ module Aws::FSx
|
|
5768
5801
|
:copy_tags_to_backups,
|
5769
5802
|
:drive_cache_type,
|
5770
5803
|
:data_compression_type,
|
5771
|
-
:log_configuration
|
5804
|
+
:log_configuration,
|
5805
|
+
:root_squash_configuration)
|
5772
5806
|
SENSITIVE = []
|
5773
5807
|
include Aws::Structure
|
5774
5808
|
end
|
@@ -5886,6 +5920,68 @@ module Aws::FSx
|
|
5886
5920
|
include Aws::Structure
|
5887
5921
|
end
|
5888
5922
|
|
5923
|
+
# The configuration for Lustre root squash used to restrict root-level
|
5924
|
+
# access from clients that try to access your FSx for Lustre file system
|
5925
|
+
# as root. Use the `RootSquash` parameter to enable root squash. To
|
5926
|
+
# learn more about Lustre root squash, see [Lustre root squash][1].
|
5927
|
+
#
|
5928
|
+
# You can also use the `NoSquashNids` parameter to provide an array of
|
5929
|
+
# clients who are not affected by the root squash setting. These clients
|
5930
|
+
# will access the file system as root, with unrestricted privileges.
|
5931
|
+
#
|
5932
|
+
#
|
5933
|
+
#
|
5934
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/root-squash.html
|
5935
|
+
#
|
5936
|
+
# @note When making an API call, you may pass LustreRootSquashConfiguration
|
5937
|
+
# data as a hash:
|
5938
|
+
#
|
5939
|
+
# {
|
5940
|
+
# root_squash: "LustreRootSquash",
|
5941
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
5942
|
+
# }
|
5943
|
+
#
|
5944
|
+
# @!attribute [rw] root_squash
|
5945
|
+
# You enable root squash by setting a user ID (UID) and group ID (GID)
|
5946
|
+
# for the file system in the format `UID:GID` (for example,
|
5947
|
+
# `365534:65534`). The UID and GID values can range from `0` to
|
5948
|
+
# `4294967294`\:
|
5949
|
+
#
|
5950
|
+
# * A non-zero value for UID and GID enables root squash. The UID and
|
5951
|
+
# GID values can be different, but each must be a non-zero value.
|
5952
|
+
#
|
5953
|
+
# * A value of `0` (zero) for UID and GID indicates root, and
|
5954
|
+
# therefore disables root squash.
|
5955
|
+
#
|
5956
|
+
# When root squash is enabled, the user ID and group ID of a root user
|
5957
|
+
# accessing the file system are re-mapped to the UID and GID you
|
5958
|
+
# provide.
|
5959
|
+
# @return [String]
|
5960
|
+
#
|
5961
|
+
# @!attribute [rw] no_squash_nids
|
5962
|
+
# When root squash is enabled, you can optionally specify an array of
|
5963
|
+
# NIDs of clients for which root squash does not apply. A client NID
|
5964
|
+
# is a Lustre Network Identifier used to uniquely identify a client.
|
5965
|
+
# You can specify the NID as either a single address or a range of
|
5966
|
+
# addresses:
|
5967
|
+
#
|
5968
|
+
# * A single address is described in standard Lustre NID format by
|
5969
|
+
# specifying the client’s IP address followed by the Lustre network
|
5970
|
+
# ID (for example, `10.0.1.6@tcp`).
|
5971
|
+
#
|
5972
|
+
# * An address range is described using a dash to separate the range
|
5973
|
+
# (for example, `10.0.[2-10].[1-255]@tcp`).
|
5974
|
+
# @return [Array<String>]
|
5975
|
+
#
|
5976
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreRootSquashConfiguration AWS API Documentation
|
5977
|
+
#
|
5978
|
+
class LustreRootSquashConfiguration < Struct.new(
|
5979
|
+
:root_squash,
|
5980
|
+
:no_squash_nids)
|
5981
|
+
SENSITIVE = []
|
5982
|
+
include Aws::Structure
|
5983
|
+
end
|
5984
|
+
|
5889
5985
|
# A file system configuration is required for this operation.
|
5890
5986
|
#
|
5891
5987
|
# @!attribute [rw] message
|
@@ -7604,6 +7700,10 @@ module Aws::FSx
|
|
7604
7700
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
7605
7701
|
# destination: "GeneralARN",
|
7606
7702
|
# },
|
7703
|
+
# root_squash_configuration: {
|
7704
|
+
# root_squash: "LustreRootSquash",
|
7705
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
7706
|
+
# },
|
7607
7707
|
# }
|
7608
7708
|
#
|
7609
7709
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -7681,6 +7781,13 @@ module Aws::FSx
|
|
7681
7781
|
# system to Amazon CloudWatch Logs.
|
7682
7782
|
# @return [Types::LustreLogCreateConfiguration]
|
7683
7783
|
#
|
7784
|
+
# @!attribute [rw] root_squash_configuration
|
7785
|
+
# The Lustre root squash configuration used when updating an Amazon
|
7786
|
+
# FSx for Lustre file system. When enabled, root squash restricts
|
7787
|
+
# root-level access from clients that try to access your file system
|
7788
|
+
# as a root user.
|
7789
|
+
# @return [Types::LustreRootSquashConfiguration]
|
7790
|
+
#
|
7684
7791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
7685
7792
|
#
|
7686
7793
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
@@ -7689,7 +7796,8 @@ module Aws::FSx
|
|
7689
7796
|
:automatic_backup_retention_days,
|
7690
7797
|
:auto_import_policy,
|
7691
7798
|
:data_compression_type,
|
7692
|
-
:log_configuration
|
7799
|
+
:log_configuration,
|
7800
|
+
:root_squash_configuration)
|
7693
7801
|
SENSITIVE = []
|
7694
7802
|
include Aws::Structure
|
7695
7803
|
end
|
@@ -7905,6 +8013,10 @@ module Aws::FSx
|
|
7905
8013
|
# level: "DISABLED", # required, accepts DISABLED, WARN_ONLY, ERROR_ONLY, WARN_ERROR
|
7906
8014
|
# destination: "GeneralARN",
|
7907
8015
|
# },
|
8016
|
+
# root_squash_configuration: {
|
8017
|
+
# root_squash: "LustreRootSquash",
|
8018
|
+
# no_squash_nids: ["LustreNoSquashNid"],
|
8019
|
+
# },
|
7908
8020
|
# },
|
7909
8021
|
# ontap_configuration: {
|
7910
8022
|
# 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.58.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-08-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|