aws-sdk-fsx 1.26.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-fsx.rb +1 -1
- data/lib/aws-sdk-fsx/client.rb +25 -17
- data/lib/aws-sdk-fsx/client_api.rb +3 -0
- data/lib/aws-sdk-fsx/types.rb +127 -95
- 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: 3c2e0fd725f020971e4b7aa9c8fb58fd34c7d3af3a2476f214e44e2aacfe239c
|
4
|
+
data.tar.gz: bcc09ae9ae016dc08fd276408abe59c4caf444b074455c3320671a6c8b4c8615
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fdcac25bf49ac228f43921108b17706185e4a2fbf535dde72e8501c72072f1593474ec878a33c288c95362aa86eb1660c83e584eb4c5ee83f7cf541a34eeac0
|
7
|
+
data.tar.gz: 1a92aa55100952685b9dac05431105897de2de929b9cbae0c247cd1f8dd9a909e7c92fceff0cf9561b1870450626538c677216a6046f378e80edb9d234be762d
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -371,7 +371,7 @@ module Aws::FSx
|
|
371
371
|
#
|
372
372
|
# * a Persistent deployment type
|
373
373
|
#
|
374
|
-
# * is *not* linked to
|
374
|
+
# * is *not* linked to an Amazon S3 data respository.
|
375
375
|
#
|
376
376
|
# For more information about backing up Amazon FSx for Lustre file
|
377
377
|
# systems, see [Working with FSx for Lustre backups][1].
|
@@ -412,20 +412,20 @@ module Aws::FSx
|
|
412
412
|
# The ID of the file system to back up.
|
413
413
|
#
|
414
414
|
# @option params [String] :client_request_token
|
415
|
-
#
|
416
|
-
#
|
417
|
-
#
|
418
|
-
#
|
415
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
416
|
+
# idempotent creation. This string is automatically filled on your
|
417
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
418
|
+
# SDK.
|
419
419
|
#
|
420
420
|
# **A suitable default value is auto-generated.** You should normally
|
421
421
|
# not need to pass this option.**
|
422
422
|
#
|
423
423
|
# @option params [Array<Types::Tag>] :tags
|
424
|
-
#
|
425
|
-
#
|
426
|
-
#
|
427
|
-
#
|
428
|
-
# copied from the file system to the backup.
|
424
|
+
# The tags to apply to the backup at backup creation. The key value of
|
425
|
+
# the `Name` tag appears in the console as the backup name. If you have
|
426
|
+
# set `CopyTagsToBackups` to true, and you specify one or more tags
|
427
|
+
# using the `CreateBackup` action, no existing tags on the file system
|
428
|
+
# are copied from the file system to the backup.
|
429
429
|
#
|
430
430
|
# @return [Types::CreateBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
431
431
|
#
|
@@ -491,7 +491,7 @@ module Aws::FSx
|
|
491
491
|
# @example Response structure
|
492
492
|
#
|
493
493
|
# resp.backup.backup_id #=> String
|
494
|
-
# resp.backup.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETED", "FAILED"
|
494
|
+
# resp.backup.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
495
495
|
# resp.backup.failure_details.message #=> String
|
496
496
|
# resp.backup.type #=> String, one of "AUTOMATIC", "USER_INITIATED"
|
497
497
|
# resp.backup.progress_percent #=> Integer
|
@@ -551,6 +551,7 @@ module Aws::FSx
|
|
551
551
|
# resp.backup.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
552
552
|
# resp.backup.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
553
553
|
# resp.backup.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
554
|
+
# resp.backup.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
554
555
|
# resp.backup.file_system.administrative_actions #=> Array
|
555
556
|
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
556
557
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -737,10 +738,10 @@ module Aws::FSx
|
|
737
738
|
# For Lustre file systems:
|
738
739
|
#
|
739
740
|
# * For `SCRATCH_2` and `PERSISTENT_1` deployment types, valid values
|
740
|
-
# are
|
741
|
+
# are 1.2, 2.4, and increments of 2.4 TiB.
|
741
742
|
#
|
742
|
-
# * For `SCRATCH_1` deployment type, valid values are
|
743
|
-
#
|
743
|
+
# * For `SCRATCH_1` deployment type, valid values are 1.2, 2.4, and
|
744
|
+
# increments of 3.6 TiB.
|
744
745
|
#
|
745
746
|
# For Windows file systems:
|
746
747
|
#
|
@@ -918,6 +919,7 @@ module Aws::FSx
|
|
918
919
|
# daily_automatic_backup_start_time: "DailyTime",
|
919
920
|
# automatic_backup_retention_days: 1,
|
920
921
|
# copy_tags_to_backups: false,
|
922
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
921
923
|
# },
|
922
924
|
# })
|
923
925
|
#
|
@@ -973,6 +975,7 @@ module Aws::FSx
|
|
973
975
|
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
974
976
|
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
975
977
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
978
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
976
979
|
# resp.file_system.administrative_actions #=> Array
|
977
980
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
978
981
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1192,6 +1195,7 @@ module Aws::FSx
|
|
1192
1195
|
# daily_automatic_backup_start_time: "DailyTime",
|
1193
1196
|
# automatic_backup_retention_days: 1,
|
1194
1197
|
# copy_tags_to_backups: false,
|
1198
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
1195
1199
|
# },
|
1196
1200
|
# storage_type: "SSD", # accepts SSD, HDD
|
1197
1201
|
# })
|
@@ -1248,6 +1252,7 @@ module Aws::FSx
|
|
1248
1252
|
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
1249
1253
|
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
1250
1254
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1255
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1251
1256
|
# resp.file_system.administrative_actions #=> Array
|
1252
1257
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1253
1258
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1315,7 +1320,7 @@ module Aws::FSx
|
|
1315
1320
|
# @example Response structure
|
1316
1321
|
#
|
1317
1322
|
# resp.backup_id #=> String
|
1318
|
-
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETED", "FAILED"
|
1323
|
+
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
1319
1324
|
#
|
1320
1325
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteBackup AWS API Documentation
|
1321
1326
|
#
|
@@ -1548,7 +1553,7 @@ module Aws::FSx
|
|
1548
1553
|
#
|
1549
1554
|
# resp.backups #=> Array
|
1550
1555
|
# resp.backups[0].backup_id #=> String
|
1551
|
-
# resp.backups[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETED", "FAILED"
|
1556
|
+
# resp.backups[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
1552
1557
|
# resp.backups[0].failure_details.message #=> String
|
1553
1558
|
# resp.backups[0].type #=> String, one of "AUTOMATIC", "USER_INITIATED"
|
1554
1559
|
# resp.backups[0].progress_percent #=> Integer
|
@@ -1608,6 +1613,7 @@ module Aws::FSx
|
|
1608
1613
|
# resp.backups[0].file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
1609
1614
|
# resp.backups[0].file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
1610
1615
|
# resp.backups[0].file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1616
|
+
# resp.backups[0].file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1611
1617
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
1612
1618
|
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1613
1619
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1874,6 +1880,7 @@ module Aws::FSx
|
|
1874
1880
|
# resp.file_systems[0].lustre_configuration.daily_automatic_backup_start_time #=> String
|
1875
1881
|
# resp.file_systems[0].lustre_configuration.automatic_backup_retention_days #=> Integer
|
1876
1882
|
# resp.file_systems[0].lustre_configuration.copy_tags_to_backups #=> Boolean
|
1883
|
+
# resp.file_systems[0].lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1877
1884
|
# resp.file_systems[0].administrative_actions #=> Array
|
1878
1885
|
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1879
1886
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
@@ -2255,6 +2262,7 @@ module Aws::FSx
|
|
2255
2262
|
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
2256
2263
|
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
2257
2264
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
2265
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
2258
2266
|
# resp.file_system.administrative_actions #=> Array
|
2259
2267
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
2260
2268
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -2285,7 +2293,7 @@ module Aws::FSx
|
|
2285
2293
|
params: params,
|
2286
2294
|
config: config)
|
2287
2295
|
context[:gem_name] = 'aws-sdk-fsx'
|
2288
|
-
context[:gem_version] = '1.
|
2296
|
+
context[:gem_version] = '1.27.0'
|
2289
2297
|
Seahorse::Client::Request.new(handlers, context)
|
2290
2298
|
end
|
2291
2299
|
|
@@ -90,6 +90,7 @@ module Aws::FSx
|
|
90
90
|
DirectoryPassword = Shapes::StringShape.new(name: 'DirectoryPassword')
|
91
91
|
DirectoryUserName = Shapes::StringShape.new(name: 'DirectoryUserName')
|
92
92
|
DnsIps = Shapes::ListShape.new(name: 'DnsIps')
|
93
|
+
DriveCacheType = Shapes::StringShape.new(name: 'DriveCacheType')
|
93
94
|
EndTime = Shapes::TimestampShape.new(name: 'EndTime')
|
94
95
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
95
96
|
FailedCount = Shapes::IntegerShape.new(name: 'FailedCount')
|
@@ -288,6 +289,7 @@ module Aws::FSx
|
|
288
289
|
CreateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
289
290
|
CreateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
290
291
|
CreateFileSystemLustreConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
292
|
+
CreateFileSystemLustreConfiguration.add_member(:drive_cache_type, Shapes::ShapeRef.new(shape: DriveCacheType, location_name: "DriveCacheType"))
|
291
293
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
292
294
|
|
293
295
|
CreateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
@@ -517,6 +519,7 @@ module Aws::FSx
|
|
517
519
|
LustreFileSystemConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
518
520
|
LustreFileSystemConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
519
521
|
LustreFileSystemConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
522
|
+
LustreFileSystemConfiguration.add_member(:drive_cache_type, Shapes::ShapeRef.new(shape: DriveCacheType, location_name: "DriveCacheType"))
|
520
523
|
LustreFileSystemConfiguration.struct_class = Types::LustreFileSystemConfiguration
|
521
524
|
|
522
525
|
MissingFileSystemConfiguration.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -434,21 +434,21 @@ module Aws::FSx
|
|
434
434
|
# @return [String]
|
435
435
|
#
|
436
436
|
# @!attribute [rw] client_request_token
|
437
|
-
#
|
438
|
-
#
|
439
|
-
#
|
440
|
-
#
|
437
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
438
|
+
# idempotent creation. This string is automatically filled on your
|
439
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
440
|
+
# AWS SDK.
|
441
441
|
#
|
442
442
|
# **A suitable default value is auto-generated.** You should normally
|
443
443
|
# not need to pass this option.
|
444
444
|
# @return [String]
|
445
445
|
#
|
446
446
|
# @!attribute [rw] tags
|
447
|
-
#
|
448
|
-
#
|
449
|
-
#
|
450
|
-
#
|
451
|
-
# system
|
447
|
+
# The tags to apply to the backup at backup creation. The key value of
|
448
|
+
# the `Name` tag appears in the console as the backup name. If you
|
449
|
+
# have set `CopyTagsToBackups` to true, and you specify one or more
|
450
|
+
# tags using the `CreateBackup` action, no existing tags on the file
|
451
|
+
# system are copied from the file system to the backup.
|
452
452
|
# @return [Array<Types::Tag>]
|
453
453
|
#
|
454
454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateBackupRequest AWS API Documentation
|
@@ -611,6 +611,7 @@ module Aws::FSx
|
|
611
611
|
# daily_automatic_backup_start_time: "DailyTime",
|
612
612
|
# automatic_backup_retention_days: 1,
|
613
613
|
# copy_tags_to_backups: false,
|
614
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
614
615
|
# },
|
615
616
|
# storage_type: "SSD", # accepts SSD, HDD
|
616
617
|
# }
|
@@ -732,13 +733,13 @@ module Aws::FSx
|
|
732
733
|
# daily_automatic_backup_start_time: "DailyTime",
|
733
734
|
# automatic_backup_retention_days: 1,
|
734
735
|
# copy_tags_to_backups: false,
|
736
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
735
737
|
# }
|
736
738
|
#
|
737
739
|
# @!attribute [rw] weekly_maintenance_start_time
|
738
|
-
#
|
739
|
-
#
|
740
|
-
#
|
741
|
-
# Sunday.
|
740
|
+
# The preferred start time to perform weekly maintenance, formatted
|
741
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
742
|
+
# through 7, beginning with Monday and ending with Sunday.
|
742
743
|
# @return [String]
|
743
744
|
#
|
744
745
|
# @!attribute [rw] import_path
|
@@ -812,25 +813,27 @@ module Aws::FSx
|
|
812
813
|
# @return [String]
|
813
814
|
#
|
814
815
|
# @!attribute [rw] auto_import_policy
|
815
|
-
# (Optional)
|
816
|
-
#
|
817
|
-
#
|
818
|
-
#
|
819
|
-
# `AutoImportPolicy` can have the following values:
|
820
|
-
#
|
821
|
-
# * `NONE` - (Default) AutoImport is off.
|
822
|
-
#
|
823
|
-
#
|
824
|
-
#
|
825
|
-
#
|
826
|
-
#
|
827
|
-
#
|
828
|
-
#
|
829
|
-
#
|
830
|
-
# * `NEW_CHANGED` - AutoImport is on.
|
831
|
-
#
|
832
|
-
#
|
833
|
-
#
|
816
|
+
# (Optional) Use this property to configure the AutoImport feature on
|
817
|
+
# the file system's linked Amazon S3 data repository. You use
|
818
|
+
# AutoImport to update the contents of your FSx for Lustre file system
|
819
|
+
# automatically with changes that occur in the linked S3 data
|
820
|
+
# repository. `AutoImportPolicy` can have the following values:
|
821
|
+
#
|
822
|
+
# * `NONE` - (Default) AutoImport is off. Changes in the linked data
|
823
|
+
# repository are not reflected on the FSx file system.
|
824
|
+
#
|
825
|
+
# * `NEW` - AutoImport is on. New files in the linked data repository
|
826
|
+
# that do not currently exist in the FSx file system are
|
827
|
+
# automatically imported. Updates to existing FSx files are not
|
828
|
+
# imported to the FSx file system. Files deleted from the linked
|
829
|
+
# data repository are not deleted from the FSx file system.
|
830
|
+
#
|
831
|
+
# * `NEW_CHANGED` - AutoImport is on. New files in the linked S3 data
|
832
|
+
# repository that do not currently exist in the FSx file system are
|
833
|
+
# automatically imported. Changes to existing FSx files in the
|
834
|
+
# linked repository are also automatically imported to the FSx file
|
835
|
+
# system. Files deleted from the linked data repository are not
|
836
|
+
# deleted from the FSx file system.
|
834
837
|
#
|
835
838
|
# For more information, see [Automatically import updates from your S3
|
836
839
|
# bucket][1].
|
@@ -850,7 +853,8 @@ module Aws::FSx
|
|
850
853
|
# of file system throughput. You pay for the amount of throughput that
|
851
854
|
# you provision.
|
852
855
|
#
|
853
|
-
# Valid values
|
856
|
+
# Valid values for SSD storage: 50, 100, 200. Valid values for HDD
|
857
|
+
# storage: 12, 40.
|
854
858
|
# @return [Integer]
|
855
859
|
#
|
856
860
|
# @!attribute [rw] daily_automatic_backup_start_time
|
@@ -862,20 +866,18 @@ module Aws::FSx
|
|
862
866
|
# @!attribute [rw] automatic_backup_retention_days
|
863
867
|
# The number of days to retain automatic backups. Setting this to 0
|
864
868
|
# disables automatic backups. You can retain automatic backups for a
|
865
|
-
# maximum of
|
869
|
+
# maximum of 90 days. The default is 0.
|
866
870
|
# @return [Integer]
|
867
871
|
#
|
868
872
|
# @!attribute [rw] copy_tags_to_backups
|
869
|
-
#
|
870
|
-
#
|
871
|
-
# file system
|
872
|
-
#
|
873
|
-
#
|
874
|
-
#
|
875
|
-
#
|
876
|
-
#
|
877
|
-
# backup, no tags are copied from the file system, regardless of this
|
878
|
-
# value.
|
873
|
+
# A boolean flag indicating whether tags for the file system should be
|
874
|
+
# copied to backups. This value defaults to false. If it's set to
|
875
|
+
# true, all tags for the file system are copied to all automatic and
|
876
|
+
# user-initiated backups where the user doesn't specify tags. If this
|
877
|
+
# value is true, and you specify one or more tags, only the specified
|
878
|
+
# tags are copied to backups. If you specify one or more tags when
|
879
|
+
# creating a user-initiated backup, no tags are copied from the file
|
880
|
+
# system, regardless of this value.
|
879
881
|
#
|
880
882
|
# For more information, see [Working with backups][1].
|
881
883
|
#
|
@@ -884,6 +886,16 @@ module Aws::FSx
|
|
884
886
|
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html
|
885
887
|
# @return [Boolean]
|
886
888
|
#
|
889
|
+
# @!attribute [rw] drive_cache_type
|
890
|
+
# The type of drive cache used by PERSISTENT\_1 file systems that are
|
891
|
+
# provisioned with HDD storage devices. This parameter is required
|
892
|
+
# when storage type is HDD. Set to `READ`, improve the performance for
|
893
|
+
# frequently accessed files and allows 20% of the total storage
|
894
|
+
# capacity of the file system to be cached.
|
895
|
+
#
|
896
|
+
# This parameter is required when `StorageType` is set to HDD.
|
897
|
+
# @return [String]
|
898
|
+
#
|
887
899
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
888
900
|
#
|
889
901
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
@@ -896,7 +908,8 @@ module Aws::FSx
|
|
896
908
|
:per_unit_storage_throughput,
|
897
909
|
:daily_automatic_backup_start_time,
|
898
910
|
:automatic_backup_retention_days,
|
899
|
-
:copy_tags_to_backups
|
911
|
+
:copy_tags_to_backups,
|
912
|
+
:drive_cache_type)
|
900
913
|
SENSITIVE = []
|
901
914
|
include Aws::Structure
|
902
915
|
end
|
@@ -949,6 +962,7 @@ module Aws::FSx
|
|
949
962
|
# daily_automatic_backup_start_time: "DailyTime",
|
950
963
|
# automatic_backup_retention_days: 1,
|
951
964
|
# copy_tags_to_backups: false,
|
965
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
952
966
|
# },
|
953
967
|
# }
|
954
968
|
#
|
@@ -973,10 +987,10 @@ module Aws::FSx
|
|
973
987
|
# For Lustre file systems:
|
974
988
|
#
|
975
989
|
# * For `SCRATCH_2` and `PERSISTENT_1` deployment types, valid values
|
976
|
-
# are
|
990
|
+
# are 1.2, 2.4, and increments of 2.4 TiB.
|
977
991
|
#
|
978
|
-
# * For `SCRATCH_1` deployment type, valid values are
|
979
|
-
#
|
992
|
+
# * For `SCRATCH_1` deployment type, valid values are 1.2, 2.4, and
|
993
|
+
# increments of 3.6 TiB.
|
980
994
|
#
|
981
995
|
# For Windows file systems:
|
982
996
|
#
|
@@ -1176,7 +1190,7 @@ module Aws::FSx
|
|
1176
1190
|
# The number of days to retain automatic backups. The default is to
|
1177
1191
|
# retain backups for 7 days. Setting this value to 0 disables the
|
1178
1192
|
# creation of automatic backups. The maximum retention period for
|
1179
|
-
# backups is
|
1193
|
+
# backups is 90 days.
|
1180
1194
|
# @return [Integer]
|
1181
1195
|
#
|
1182
1196
|
# @!attribute [rw] copy_tags_to_backups
|
@@ -1260,24 +1274,26 @@ module Aws::FSx
|
|
1260
1274
|
#
|
1261
1275
|
# @!attribute [rw] auto_import_policy
|
1262
1276
|
# Describes the file system's linked S3 data repository's
|
1263
|
-
# `AutoImportPolicy`. The AutoImportPolicy configures how
|
1264
|
-
#
|
1265
|
-
#
|
1266
|
-
# the following values:
|
1267
|
-
#
|
1268
|
-
# * `NONE` - (Default) AutoImport is off.
|
1269
|
-
#
|
1270
|
-
#
|
1271
|
-
#
|
1272
|
-
#
|
1273
|
-
#
|
1274
|
-
#
|
1275
|
-
#
|
1276
|
-
#
|
1277
|
-
# * `NEW_CHANGED` - AutoImport is on.
|
1278
|
-
#
|
1279
|
-
#
|
1280
|
-
#
|
1277
|
+
# `AutoImportPolicy`. The AutoImportPolicy configures how your FSx for
|
1278
|
+
# Lustre file system automatically updates its contents with changes
|
1279
|
+
# that occur in the linked S3 data repository. `AutoImportPolicy` can
|
1280
|
+
# have the following values:
|
1281
|
+
#
|
1282
|
+
# * `NONE` - (Default) AutoImport is off. Changes in the linked data
|
1283
|
+
# repository are not reflected on the FSx file system.
|
1284
|
+
#
|
1285
|
+
# * `NEW` - AutoImport is on. New files in the linked data repository
|
1286
|
+
# that do not currently exist in the FSx file system are
|
1287
|
+
# automatically imported. Updates to existing FSx files are not
|
1288
|
+
# imported to the FSx file system. Files deleted from the linked
|
1289
|
+
# data repository are not deleted from the FSx file system.
|
1290
|
+
#
|
1291
|
+
# * `NEW_CHANGED` - AutoImport is on. New files in the linked S3 data
|
1292
|
+
# repository that do not currently exist in the FSx file system are
|
1293
|
+
# automatically imported. Changes to existing FSx files in the
|
1294
|
+
# linked repository are also automatically imported to the FSx file
|
1295
|
+
# system. Files deleted from the linked data repository are not
|
1296
|
+
# deleted from the FSx file system.
|
1281
1297
|
#
|
1282
1298
|
# For more information, see [Automatically import updates from your S3
|
1283
1299
|
# bucket][1].
|
@@ -2492,7 +2508,10 @@ module Aws::FSx
|
|
2492
2508
|
# read or write throughput per 1 tebibyte of storage provisioned. File
|
2493
2509
|
# system throughput capacity is equal to Storage capacity (TiB) *
|
2494
2510
|
# PerUnitStorageThroughput (MB/s/TiB). This option is only valid for
|
2495
|
-
# `PERSISTENT_1` deployment types.
|
2511
|
+
# `PERSISTENT_1` deployment types.
|
2512
|
+
#
|
2513
|
+
# Valid values for SSD storage: 50, 100, 200. Valid values for HDD
|
2514
|
+
# storage: 12, 40.
|
2496
2515
|
# @return [Integer]
|
2497
2516
|
#
|
2498
2517
|
# @!attribute [rw] mount_name
|
@@ -2512,7 +2531,7 @@ module Aws::FSx
|
|
2512
2531
|
# @!attribute [rw] automatic_backup_retention_days
|
2513
2532
|
# The number of days to retain automatic backups. Setting this to 0
|
2514
2533
|
# disables automatic backups. You can retain automatic backups for a
|
2515
|
-
# maximum of
|
2534
|
+
# maximum of 90 days. The default is 0.
|
2516
2535
|
# @return [Integer]
|
2517
2536
|
#
|
2518
2537
|
# @!attribute [rw] copy_tags_to_backups
|
@@ -2526,6 +2545,16 @@ module Aws::FSx
|
|
2526
2545
|
# regardless of this value. (Default = false)
|
2527
2546
|
# @return [Boolean]
|
2528
2547
|
#
|
2548
|
+
# @!attribute [rw] drive_cache_type
|
2549
|
+
# The type of drive cache used by PERSISTENT\_1 file systems that are
|
2550
|
+
# provisioned with HDD storage devices. This parameter is required
|
2551
|
+
# when storage type is HDD. Set to `READ`, improve the performance for
|
2552
|
+
# frequently accessed files and allows 20% of the total storage
|
2553
|
+
# capacity of the file system to be cached.
|
2554
|
+
#
|
2555
|
+
# This parameter is required when `StorageType` is set to HDD.
|
2556
|
+
# @return [String]
|
2557
|
+
#
|
2529
2558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
2530
2559
|
#
|
2531
2560
|
class LustreFileSystemConfiguration < Struct.new(
|
@@ -2536,7 +2565,8 @@ module Aws::FSx
|
|
2536
2565
|
:mount_name,
|
2537
2566
|
:daily_automatic_backup_start_time,
|
2538
2567
|
:automatic_backup_retention_days,
|
2539
|
-
:copy_tags_to_backups
|
2568
|
+
:copy_tags_to_backups,
|
2569
|
+
:drive_cache_type)
|
2540
2570
|
SENSITIVE = []
|
2541
2571
|
include Aws::Structure
|
2542
2572
|
end
|
@@ -2943,9 +2973,9 @@ module Aws::FSx
|
|
2943
2973
|
# }
|
2944
2974
|
#
|
2945
2975
|
# @!attribute [rw] weekly_maintenance_start_time
|
2946
|
-
#
|
2947
|
-
#
|
2948
|
-
#
|
2976
|
+
# The preferred start time to perform weekly maintenance, formatted
|
2977
|
+
# d:HH:MM in the UTC time zone. d is the weekday number, from 1
|
2978
|
+
# through 7, beginning with Monday and ending with Sunday.
|
2949
2979
|
# @return [String]
|
2950
2980
|
#
|
2951
2981
|
# @!attribute [rw] daily_automatic_backup_start_time
|
@@ -2957,29 +2987,31 @@ module Aws::FSx
|
|
2957
2987
|
# @!attribute [rw] automatic_backup_retention_days
|
2958
2988
|
# The number of days to retain automatic backups. Setting this to 0
|
2959
2989
|
# disables automatic backups. You can retain automatic backups for a
|
2960
|
-
# maximum of
|
2990
|
+
# maximum of 90 days. The default is 0.
|
2961
2991
|
# @return [Integer]
|
2962
2992
|
#
|
2963
2993
|
# @!attribute [rw] auto_import_policy
|
2964
|
-
# (Optional)
|
2965
|
-
#
|
2966
|
-
#
|
2967
|
-
#
|
2968
|
-
# `AutoImportPolicy` can have the following values:
|
2969
|
-
#
|
2970
|
-
# * `NONE` - (Default) AutoImport is off.
|
2971
|
-
#
|
2972
|
-
#
|
2973
|
-
#
|
2974
|
-
#
|
2975
|
-
#
|
2976
|
-
#
|
2977
|
-
#
|
2978
|
-
#
|
2979
|
-
# * `NEW_CHANGED` - AutoImport is on.
|
2980
|
-
#
|
2981
|
-
#
|
2982
|
-
#
|
2994
|
+
# (Optional) Use this property to configure the AutoImport feature on
|
2995
|
+
# the file system's linked Amazon S3 data repository. You use
|
2996
|
+
# AutoImport to update the contents of your FSx for Lustre file system
|
2997
|
+
# automatically with changes that occur in the linked S3 data
|
2998
|
+
# repository. `AutoImportPolicy` can have the following values:
|
2999
|
+
#
|
3000
|
+
# * `NONE` - (Default) AutoImport is off. Changes in the linked data
|
3001
|
+
# repository are not reflected on the FSx file system.
|
3002
|
+
#
|
3003
|
+
# * `NEW` - AutoImport is on. New files in the linked data repository
|
3004
|
+
# that do not currently exist in the FSx file system are
|
3005
|
+
# automatically imported. Updates to existing FSx files are not
|
3006
|
+
# imported to the FSx file system. Files deleted from the linked
|
3007
|
+
# data repository are not deleted from the FSx file system.
|
3008
|
+
#
|
3009
|
+
# * `NEW_CHANGED` - AutoImport is on. New files in the linked S3 data
|
3010
|
+
# repository that do not currently exist in the FSx file system are
|
3011
|
+
# automatically imported. Changes to existing FSx files in the
|
3012
|
+
# linked repository are also automatically imported to the FSx file
|
3013
|
+
# system. Files deleted from the linked data repository are not
|
3014
|
+
# deleted from the FSx file system.
|
2983
3015
|
#
|
2984
3016
|
# For more information, see [Automatically import updates from your S3
|
2985
3017
|
# bucket][1].
|
@@ -3127,7 +3159,7 @@ module Aws::FSx
|
|
3127
3159
|
# @!attribute [rw] automatic_backup_retention_days
|
3128
3160
|
# The number of days to retain automatic daily backups. Setting this
|
3129
3161
|
# to zero (0) disables automatic daily backups. You can retain
|
3130
|
-
# automatic daily backups for a maximum of
|
3162
|
+
# automatic daily backups for a maximum of 90 days. For more
|
3131
3163
|
# information, see [Working with Automatic Daily Backups][1].
|
3132
3164
|
#
|
3133
3165
|
#
|
@@ -3272,7 +3304,7 @@ module Aws::FSx
|
|
3272
3304
|
# @!attribute [rw] automatic_backup_retention_days
|
3273
3305
|
# The number of days to retain automatic backups. Setting this to 0
|
3274
3306
|
# disables automatic backups. You can retain automatic backups for a
|
3275
|
-
# maximum of
|
3307
|
+
# maximum of 90 days.
|
3276
3308
|
# @return [Integer]
|
3277
3309
|
#
|
3278
3310
|
# @!attribute [rw] copy_tags_to_backups
|
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.27.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: 2020-08-
|
11
|
+
date: 2020-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|