aws-sdk-fsx 1.36.0 → 1.37.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.rb +1 -1
- data/lib/aws-sdk-fsx/client.rb +15 -3
- data/lib/aws-sdk-fsx/client_api.rb +4 -0
- data/lib/aws-sdk-fsx/types.rb +60 -3
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c2e3f3c646f21f3588616aeab447a7474a2ffd30fe909e142a14d932bef9671
|
|
4
|
+
data.tar.gz: 0a4414b73cd208104009996a51bb1d74b1ef275c471db3e8648d499f413b9544
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aade5300028bb38bd55916aeec79e7d778955a6ebd265e538192e212243e579a33aae4abc9de1a8c248cb4f6ac833b35d594e2bdeb661d8d40fc22247a7bf2b1
|
|
7
|
+
data.tar.gz: b37594d2fd864bce815fbb81b32fab1fba15b536a08060dfffd43883811376973ad7c84304875ed509ca39cba60fb3a9eeda9b3c746c9f3422afb1a3086df99f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.37.0 (2021-05-27)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds LZ4 data compression support to FSx for Lustre to reduce storage consumption of both file system storage and file system backups.
|
|
8
|
+
|
|
4
9
|
1.36.0 (2021-04-12)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.37.0
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
|
@@ -485,8 +485,8 @@ module Aws::FSx
|
|
|
485
485
|
#
|
|
486
486
|
#
|
|
487
487
|
#
|
|
488
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/
|
|
489
|
-
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/
|
|
488
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/using-backups.html#copy-backups
|
|
489
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html#copy-backups
|
|
490
490
|
#
|
|
491
491
|
# @option params [String] :client_request_token
|
|
492
492
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
@@ -665,6 +665,7 @@ module Aws::FSx
|
|
|
665
665
|
# resp.backup.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
666
666
|
# resp.backup.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
667
667
|
# resp.backup.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
|
668
|
+
# resp.backup.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
668
669
|
# resp.backup.file_system.administrative_actions #=> Array
|
|
669
670
|
# 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"
|
|
670
671
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -882,6 +883,7 @@ module Aws::FSx
|
|
|
882
883
|
# resp.backup.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
883
884
|
# resp.backup.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
884
885
|
# resp.backup.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
|
886
|
+
# resp.backup.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
885
887
|
# resp.backup.file_system.administrative_actions #=> Array
|
|
886
888
|
# 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"
|
|
887
889
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -1278,6 +1280,7 @@ module Aws::FSx
|
|
|
1278
1280
|
# automatic_backup_retention_days: 1,
|
|
1279
1281
|
# copy_tags_to_backups: false,
|
|
1280
1282
|
# drive_cache_type: "NONE", # accepts NONE, READ
|
|
1283
|
+
# data_compression_type: "NONE", # accepts NONE, LZ4
|
|
1281
1284
|
# },
|
|
1282
1285
|
# })
|
|
1283
1286
|
#
|
|
@@ -1337,6 +1340,7 @@ module Aws::FSx
|
|
|
1337
1340
|
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
1338
1341
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
1339
1342
|
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
|
1343
|
+
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
1340
1344
|
# resp.file_system.administrative_actions #=> Array
|
|
1341
1345
|
# 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"
|
|
1342
1346
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -1571,6 +1575,7 @@ module Aws::FSx
|
|
|
1571
1575
|
# automatic_backup_retention_days: 1,
|
|
1572
1576
|
# copy_tags_to_backups: false,
|
|
1573
1577
|
# drive_cache_type: "NONE", # accepts NONE, READ
|
|
1578
|
+
# data_compression_type: "NONE", # accepts NONE, LZ4
|
|
1574
1579
|
# },
|
|
1575
1580
|
# storage_type: "SSD", # accepts SSD, HDD
|
|
1576
1581
|
# kms_key_id: "KmsKeyId",
|
|
@@ -1632,6 +1637,7 @@ module Aws::FSx
|
|
|
1632
1637
|
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
1633
1638
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
1634
1639
|
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
|
1640
|
+
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
1635
1641
|
# resp.file_system.administrative_actions #=> Array
|
|
1636
1642
|
# 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"
|
|
1637
1643
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -1996,6 +2002,7 @@ module Aws::FSx
|
|
|
1996
2002
|
# resp.backups[0].file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
1997
2003
|
# resp.backups[0].file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
1998
2004
|
# resp.backups[0].file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
|
2005
|
+
# resp.backups[0].file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
1999
2006
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
|
2000
2007
|
# 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"
|
|
2001
2008
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -2334,6 +2341,7 @@ module Aws::FSx
|
|
|
2334
2341
|
# resp.file_systems[0].lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
2335
2342
|
# resp.file_systems[0].lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
2336
2343
|
# resp.file_systems[0].lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
|
2344
|
+
# resp.file_systems[0].lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
2337
2345
|
# resp.file_systems[0].administrative_actions #=> Array
|
|
2338
2346
|
# 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"
|
|
2339
2347
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
|
@@ -2612,6 +2620,8 @@ module Aws::FSx
|
|
|
2612
2620
|
#
|
|
2613
2621
|
# * DailyAutomaticBackupStartTime
|
|
2614
2622
|
#
|
|
2623
|
+
# * DataCompressionType
|
|
2624
|
+
#
|
|
2615
2625
|
# * StorageCapacity
|
|
2616
2626
|
#
|
|
2617
2627
|
# * WeeklyMaintenanceStartTime
|
|
@@ -2741,6 +2751,7 @@ module Aws::FSx
|
|
|
2741
2751
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
2742
2752
|
# automatic_backup_retention_days: 1,
|
|
2743
2753
|
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
|
2754
|
+
# data_compression_type: "NONE", # accepts NONE, LZ4
|
|
2744
2755
|
# },
|
|
2745
2756
|
# })
|
|
2746
2757
|
#
|
|
@@ -2800,6 +2811,7 @@ module Aws::FSx
|
|
|
2800
2811
|
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
2801
2812
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
2802
2813
|
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
|
2814
|
+
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
2803
2815
|
# resp.file_system.administrative_actions #=> Array
|
|
2804
2816
|
# 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"
|
|
2805
2817
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
@@ -2830,7 +2842,7 @@ module Aws::FSx
|
|
|
2830
2842
|
params: params,
|
|
2831
2843
|
config: config)
|
|
2832
2844
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
2833
|
-
context[:gem_version] = '1.
|
|
2845
|
+
context[:gem_version] = '1.37.0'
|
|
2834
2846
|
Seahorse::Client::Request.new(handlers, context)
|
|
2835
2847
|
end
|
|
2836
2848
|
|
|
@@ -63,6 +63,7 @@ module Aws::FSx
|
|
|
63
63
|
CreationTime = Shapes::TimestampShape.new(name: 'CreationTime')
|
|
64
64
|
DNSName = Shapes::StringShape.new(name: 'DNSName')
|
|
65
65
|
DailyTime = Shapes::StringShape.new(name: 'DailyTime')
|
|
66
|
+
DataCompressionType = Shapes::StringShape.new(name: 'DataCompressionType')
|
|
66
67
|
DataRepositoryConfiguration = Shapes::StructureShape.new(name: 'DataRepositoryConfiguration')
|
|
67
68
|
DataRepositoryFailureDetails = Shapes::StructureShape.new(name: 'DataRepositoryFailureDetails')
|
|
68
69
|
DataRepositoryLifecycle = Shapes::StringShape.new(name: 'DataRepositoryLifecycle')
|
|
@@ -347,6 +348,7 @@ module Aws::FSx
|
|
|
347
348
|
CreateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
|
348
349
|
CreateFileSystemLustreConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
|
349
350
|
CreateFileSystemLustreConfiguration.add_member(:drive_cache_type, Shapes::ShapeRef.new(shape: DriveCacheType, location_name: "DriveCacheType"))
|
|
351
|
+
CreateFileSystemLustreConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: DataCompressionType, location_name: "DataCompressionType"))
|
|
350
352
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
|
351
353
|
|
|
352
354
|
CreateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
@@ -608,6 +610,7 @@ module Aws::FSx
|
|
|
608
610
|
LustreFileSystemConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
|
609
611
|
LustreFileSystemConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
|
610
612
|
LustreFileSystemConfiguration.add_member(:drive_cache_type, Shapes::ShapeRef.new(shape: DriveCacheType, location_name: "DriveCacheType"))
|
|
613
|
+
LustreFileSystemConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: DataCompressionType, location_name: "DataCompressionType"))
|
|
611
614
|
LustreFileSystemConfiguration.struct_class = Types::LustreFileSystemConfiguration
|
|
612
615
|
|
|
613
616
|
MissingFileSystemConfiguration.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
|
@@ -688,6 +691,7 @@ module Aws::FSx
|
|
|
688
691
|
UpdateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
|
689
692
|
UpdateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
|
690
693
|
UpdateFileSystemLustreConfiguration.add_member(:auto_import_policy, Shapes::ShapeRef.new(shape: AutoImportPolicyType, location_name: "AutoImportPolicy"))
|
|
694
|
+
UpdateFileSystemLustreConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: DataCompressionType, location_name: "DataCompressionType"))
|
|
691
695
|
UpdateFileSystemLustreConfiguration.struct_class = Types::UpdateFileSystemLustreConfiguration
|
|
692
696
|
|
|
693
697
|
UpdateFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
|
@@ -932,6 +932,7 @@ module Aws::FSx
|
|
|
932
932
|
# automatic_backup_retention_days: 1,
|
|
933
933
|
# copy_tags_to_backups: false,
|
|
934
934
|
# drive_cache_type: "NONE", # accepts NONE, READ
|
|
935
|
+
# data_compression_type: "NONE", # accepts NONE, LZ4
|
|
935
936
|
# },
|
|
936
937
|
# storage_type: "SSD", # accepts SSD, HDD
|
|
937
938
|
# kms_key_id: "KmsKeyId",
|
|
@@ -1070,6 +1071,7 @@ module Aws::FSx
|
|
|
1070
1071
|
# automatic_backup_retention_days: 1,
|
|
1071
1072
|
# copy_tags_to_backups: false,
|
|
1072
1073
|
# drive_cache_type: "NONE", # accepts NONE, READ
|
|
1074
|
+
# data_compression_type: "NONE", # accepts NONE, LZ4
|
|
1073
1075
|
# }
|
|
1074
1076
|
#
|
|
1075
1077
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
@@ -1233,6 +1235,22 @@ module Aws::FSx
|
|
|
1233
1235
|
# This parameter is required when `StorageType` is set to HDD.
|
|
1234
1236
|
# @return [String]
|
|
1235
1237
|
#
|
|
1238
|
+
# @!attribute [rw] data_compression_type
|
|
1239
|
+
# Sets the data compression configuration for the file system.
|
|
1240
|
+
# `DataCompressionType` can have the following values:
|
|
1241
|
+
#
|
|
1242
|
+
# * `NONE` - (Default) Data compression is turned off when the file
|
|
1243
|
+
# system is created.
|
|
1244
|
+
#
|
|
1245
|
+
# * `LZ4` - Data compression is turned on with the LZ4 algorithm.
|
|
1246
|
+
#
|
|
1247
|
+
# For more information, see [Lustre data compression][1].
|
|
1248
|
+
#
|
|
1249
|
+
#
|
|
1250
|
+
#
|
|
1251
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-compression.html
|
|
1252
|
+
# @return [String]
|
|
1253
|
+
#
|
|
1236
1254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
|
1237
1255
|
#
|
|
1238
1256
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
|
@@ -1246,7 +1264,8 @@ module Aws::FSx
|
|
|
1246
1264
|
:daily_automatic_backup_start_time,
|
|
1247
1265
|
:automatic_backup_retention_days,
|
|
1248
1266
|
:copy_tags_to_backups,
|
|
1249
|
-
:drive_cache_type
|
|
1267
|
+
:drive_cache_type,
|
|
1268
|
+
:data_compression_type)
|
|
1250
1269
|
SENSITIVE = []
|
|
1251
1270
|
include Aws::Structure
|
|
1252
1271
|
end
|
|
@@ -1301,6 +1320,7 @@ module Aws::FSx
|
|
|
1301
1320
|
# automatic_backup_retention_days: 1,
|
|
1302
1321
|
# copy_tags_to_backups: false,
|
|
1303
1322
|
# drive_cache_type: "NONE", # accepts NONE, READ
|
|
1323
|
+
# data_compression_type: "NONE", # accepts NONE, LZ4
|
|
1304
1324
|
# },
|
|
1305
1325
|
# }
|
|
1306
1326
|
#
|
|
@@ -3145,6 +3165,21 @@ module Aws::FSx
|
|
|
3145
3165
|
# This parameter is required when `StorageType` is set to HDD.
|
|
3146
3166
|
# @return [String]
|
|
3147
3167
|
#
|
|
3168
|
+
# @!attribute [rw] data_compression_type
|
|
3169
|
+
# The data compression configuration for the file system.
|
|
3170
|
+
# `DataCompressionType` can have the following values:
|
|
3171
|
+
#
|
|
3172
|
+
# * `NONE` - Data compression is turned off for the file system.
|
|
3173
|
+
#
|
|
3174
|
+
# * `LZ4` - Data compression is turned on with the LZ4 algorithm.
|
|
3175
|
+
#
|
|
3176
|
+
# For more information, see [Lustre data compression][1].
|
|
3177
|
+
#
|
|
3178
|
+
#
|
|
3179
|
+
#
|
|
3180
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-compression.html
|
|
3181
|
+
# @return [String]
|
|
3182
|
+
#
|
|
3148
3183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
|
3149
3184
|
#
|
|
3150
3185
|
class LustreFileSystemConfiguration < Struct.new(
|
|
@@ -3156,7 +3191,8 @@ module Aws::FSx
|
|
|
3156
3191
|
:daily_automatic_backup_start_time,
|
|
3157
3192
|
:automatic_backup_retention_days,
|
|
3158
3193
|
:copy_tags_to_backups,
|
|
3159
|
-
:drive_cache_type
|
|
3194
|
+
:drive_cache_type,
|
|
3195
|
+
:data_compression_type)
|
|
3160
3196
|
SENSITIVE = []
|
|
3161
3197
|
include Aws::Structure
|
|
3162
3198
|
end
|
|
@@ -3572,6 +3608,7 @@ module Aws::FSx
|
|
|
3572
3608
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
3573
3609
|
# automatic_backup_retention_days: 1,
|
|
3574
3610
|
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
|
3611
|
+
# data_compression_type: "NONE", # accepts NONE, LZ4
|
|
3575
3612
|
# }
|
|
3576
3613
|
#
|
|
3577
3614
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
@@ -3621,13 +3658,32 @@ module Aws::FSx
|
|
|
3621
3658
|
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/autoimport-data-repo.html
|
|
3622
3659
|
# @return [String]
|
|
3623
3660
|
#
|
|
3661
|
+
# @!attribute [rw] data_compression_type
|
|
3662
|
+
# Sets the data compression configuration for the file system.
|
|
3663
|
+
# `DataCompressionType` can have the following values:
|
|
3664
|
+
#
|
|
3665
|
+
# * `NONE` - Data compression is turned off for the file system.
|
|
3666
|
+
#
|
|
3667
|
+
# * `LZ4` - Data compression is turned on with the LZ4 algorithm.
|
|
3668
|
+
#
|
|
3669
|
+
# If you don't use `DataCompressionType`, the file system retains its
|
|
3670
|
+
# current data compression configuration.
|
|
3671
|
+
#
|
|
3672
|
+
# For more information, see [Lustre data compression][1].
|
|
3673
|
+
#
|
|
3674
|
+
#
|
|
3675
|
+
#
|
|
3676
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-compression.html
|
|
3677
|
+
# @return [String]
|
|
3678
|
+
#
|
|
3624
3679
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
|
3625
3680
|
#
|
|
3626
3681
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
|
3627
3682
|
:weekly_maintenance_start_time,
|
|
3628
3683
|
:daily_automatic_backup_start_time,
|
|
3629
3684
|
:automatic_backup_retention_days,
|
|
3630
|
-
:auto_import_policy
|
|
3685
|
+
:auto_import_policy,
|
|
3686
|
+
:data_compression_type)
|
|
3631
3687
|
SENSITIVE = []
|
|
3632
3688
|
include Aws::Structure
|
|
3633
3689
|
end
|
|
@@ -3657,6 +3713,7 @@ module Aws::FSx
|
|
|
3657
3713
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
3658
3714
|
# automatic_backup_retention_days: 1,
|
|
3659
3715
|
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
|
3716
|
+
# data_compression_type: "NONE", # accepts NONE, LZ4
|
|
3660
3717
|
# },
|
|
3661
3718
|
# }
|
|
3662
3719
|
#
|
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.37.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: 2021-
|
|
11
|
+
date: 2021-05-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
84
|
version: '0'
|
|
85
85
|
requirements: []
|
|
86
|
-
|
|
87
|
-
rubygems_version: 2.7.6.2
|
|
86
|
+
rubygems_version: 3.1.6
|
|
88
87
|
signing_key:
|
|
89
88
|
specification_version: 4
|
|
90
89
|
summary: AWS SDK for Ruby - Amazon FSx
|