aws-sdk-fsx 1.23.0 → 1.29.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/lib/aws-sdk-fsx.rb +2 -2
- data/lib/aws-sdk-fsx/client.rb +117 -51
- data/lib/aws-sdk-fsx/client_api.rb +16 -2
- data/lib/aws-sdk-fsx/types.rb +263 -72
- 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: 6624e1c3e4f9acdf537f03916f8d920cb84986d081c0d7e5a807f51fe1646c17
|
4
|
+
data.tar.gz: 9cbe2f29bfa829c65e9d9fb02be0b2618d50d9894fa7ca26941ee19712b8a2a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aad79ca81ea28f1eb6c5504112f6585f78e758bc9ef1bf7df53b682c218513b572bae6a6fc1fa249ced5fb0bcde834bd2a38f3440286741f0c22aa07fa15b359
|
7
|
+
data.tar.gz: d757034cc08516ce490e8a1fe9ce24ce2a00355accc90c2c4e2e84c0f92649b27f698bbbfa0a82ad185c4220a8d5d3692cd26eba95fef7e87baca6b40e28c7d3
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -85,13 +85,28 @@ module Aws::FSx
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::FSx
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -371,10 +386,13 @@ module Aws::FSx
|
|
371
386
|
#
|
372
387
|
# * a Persistent deployment type
|
373
388
|
#
|
374
|
-
# * is *not* linked to
|
389
|
+
# * is *not* linked to a data respository.
|
375
390
|
#
|
376
|
-
# For more information
|
377
|
-
# [
|
391
|
+
# For more information about backing up Amazon FSx for Lustre file
|
392
|
+
# systems, see [Working with FSx for Lustre backups][1].
|
393
|
+
#
|
394
|
+
# For more information about backing up Amazon FSx for Lustre file
|
395
|
+
# systems, see [Working with FSx for Windows backups][2].
|
378
396
|
#
|
379
397
|
# If a backup with the specified client request token exists, and the
|
380
398
|
# parameters match, this operation returns the description of the
|
@@ -402,26 +420,27 @@ module Aws::FSx
|
|
402
420
|
#
|
403
421
|
#
|
404
422
|
#
|
405
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/
|
423
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html
|
424
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/using-backups.html
|
406
425
|
#
|
407
426
|
# @option params [required, String] :file_system_id
|
408
427
|
# The ID of the file system to back up.
|
409
428
|
#
|
410
429
|
# @option params [String] :client_request_token
|
411
|
-
# A string of up to 64 ASCII characters that Amazon FSx uses
|
412
|
-
# idempotent creation. This string is automatically filled on
|
413
|
-
# behalf when you use the AWS Command Line Interface (AWS CLI) or
|
414
|
-
# SDK.
|
430
|
+
# (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
|
431
|
+
# to ensure idempotent creation. This string is automatically filled on
|
432
|
+
# your behalf when you use the AWS Command Line Interface (AWS CLI) or
|
433
|
+
# an AWS SDK.
|
415
434
|
#
|
416
435
|
# **A suitable default value is auto-generated.** You should normally
|
417
436
|
# not need to pass this option.**
|
418
437
|
#
|
419
438
|
# @option params [Array<Types::Tag>] :tags
|
420
|
-
# The tags to apply to the backup at backup creation. The key
|
421
|
-
# the `Name` tag appears in the console as the backup name. If
|
422
|
-
# set `CopyTagsToBackups` to true, and you specify one or more
|
423
|
-
# using the `CreateBackup` action, no existing
|
424
|
-
#
|
439
|
+
# (Optional) The tags to apply to the backup at backup creation. The key
|
440
|
+
# value of the `Name` tag appears in the console as the backup name. If
|
441
|
+
# you have set `CopyTagsToBackups` to true, and you specify one or more
|
442
|
+
# tags using the `CreateBackup` action, no existing file system tags are
|
443
|
+
# copied from the file system to the backup.
|
425
444
|
#
|
426
445
|
# @return [Types::CreateBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
427
446
|
#
|
@@ -478,8 +497,8 @@ module Aws::FSx
|
|
478
497
|
# client_request_token: "ClientRequestToken",
|
479
498
|
# tags: [
|
480
499
|
# {
|
481
|
-
# key: "TagKey",
|
482
|
-
# value: "TagValue",
|
500
|
+
# key: "TagKey", # required
|
501
|
+
# value: "TagValue", # required
|
483
502
|
# },
|
484
503
|
# ],
|
485
504
|
# })
|
@@ -487,7 +506,7 @@ module Aws::FSx
|
|
487
506
|
# @example Response structure
|
488
507
|
#
|
489
508
|
# resp.backup.backup_id #=> String
|
490
|
-
# resp.backup.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETED", "FAILED"
|
509
|
+
# resp.backup.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
491
510
|
# resp.backup.failure_details.message #=> String
|
492
511
|
# resp.backup.type #=> String, one of "AUTOMATIC", "USER_INITIATED"
|
493
512
|
# resp.backup.progress_percent #=> Integer
|
@@ -535,15 +554,19 @@ module Aws::FSx
|
|
535
554
|
# resp.backup.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
536
555
|
# resp.backup.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
537
556
|
# resp.backup.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
557
|
+
# resp.backup.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
538
558
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
539
559
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
540
560
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
561
|
+
# resp.backup.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
562
|
+
# resp.backup.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
541
563
|
# resp.backup.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
542
564
|
# resp.backup.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
543
565
|
# resp.backup.file_system.lustre_configuration.mount_name #=> String
|
544
566
|
# resp.backup.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
545
567
|
# resp.backup.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
546
568
|
# resp.backup.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
569
|
+
# resp.backup.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
547
570
|
# resp.backup.file_system.administrative_actions #=> Array
|
548
571
|
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
549
572
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -637,8 +660,8 @@ module Aws::FSx
|
|
637
660
|
# client_request_token: "ClientRequestToken",
|
638
661
|
# tags: [
|
639
662
|
# {
|
640
|
-
# key: "TagKey",
|
641
|
-
# value: "TagValue",
|
663
|
+
# key: "TagKey", # required
|
664
|
+
# value: "TagValue", # required
|
642
665
|
# },
|
643
666
|
# ],
|
644
667
|
# })
|
@@ -729,11 +752,15 @@ module Aws::FSx
|
|
729
752
|
#
|
730
753
|
# For Lustre file systems:
|
731
754
|
#
|
732
|
-
# * For `SCRATCH_2` and `PERSISTENT_1` deployment types, valid
|
733
|
-
# are
|
755
|
+
# * For `SCRATCH_2` and `PERSISTENT_1 SSD` deployment types, valid
|
756
|
+
# values are 1200 GiB, 2400 GiB, and increments of 2400 GiB.
|
757
|
+
#
|
758
|
+
# * For `PERSISTENT HDD` file systems, valid values are increments of
|
759
|
+
# 6000 GiB for 12 MB/s/TiB file systems and increments of 1800 GiB for
|
760
|
+
# 40 MB/s/TiB file systems.
|
734
761
|
#
|
735
|
-
# * For `SCRATCH_1` deployment type, valid values are
|
736
|
-
# increments of
|
762
|
+
# * For `SCRATCH_1` deployment type, valid values are 1200 GiB, 2400
|
763
|
+
# GiB, and increments of 3600 GiB.
|
737
764
|
#
|
738
765
|
# For Windows file systems:
|
739
766
|
#
|
@@ -743,21 +770,24 @@ module Aws::FSx
|
|
743
770
|
# TiB).
|
744
771
|
#
|
745
772
|
# @option params [String] :storage_type
|
746
|
-
# Sets the storage type for the
|
747
|
-
#
|
773
|
+
# Sets the storage type for the file system you're creating. Valid
|
774
|
+
# values are `SSD` and `HDD`.
|
748
775
|
#
|
749
776
|
# * Set to `SSD` to use solid state drive storage. SSD is supported on
|
750
|
-
# all Windows deployment types.
|
777
|
+
# all Windows and Lustre deployment types.
|
751
778
|
#
|
752
779
|
# * Set to `HDD` to use hard disk drive storage. HDD is supported on
|
753
|
-
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment types
|
780
|
+
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment types,
|
781
|
+
# and on `PERSISTENT` Lustre file system deployment types.
|
754
782
|
#
|
755
783
|
# Default value is `SSD`. For more information, see [ Storage Type
|
756
|
-
# Options][1] in the *Amazon FSx for Windows User Guide
|
784
|
+
# Options][1] in the *Amazon FSx for Windows User Guide* and [Multiple
|
785
|
+
# Storage Options][2] in the *Amazon FSx for Lustre User Guide*.
|
757
786
|
#
|
758
787
|
#
|
759
788
|
#
|
760
789
|
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
790
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/what-is.html#storage-options
|
761
791
|
#
|
762
792
|
# @option params [required, Array<String>] :subnet_ids
|
763
793
|
# Specifies the IDs of the subnets that the file system will be
|
@@ -877,8 +907,8 @@ module Aws::FSx
|
|
877
907
|
# security_group_ids: ["SecurityGroupId"],
|
878
908
|
# tags: [
|
879
909
|
# {
|
880
|
-
# key: "TagKey",
|
881
|
-
# value: "TagValue",
|
910
|
+
# key: "TagKey", # required
|
911
|
+
# value: "TagValue", # required
|
882
912
|
# },
|
883
913
|
# ],
|
884
914
|
# kms_key_id: "KmsKeyId",
|
@@ -906,10 +936,12 @@ module Aws::FSx
|
|
906
936
|
# export_path: "ArchivePath",
|
907
937
|
# imported_file_chunk_size: 1,
|
908
938
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
939
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
909
940
|
# per_unit_storage_throughput: 1,
|
910
941
|
# daily_automatic_backup_start_time: "DailyTime",
|
911
942
|
# automatic_backup_retention_days: 1,
|
912
943
|
# copy_tags_to_backups: false,
|
944
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
913
945
|
# },
|
914
946
|
# })
|
915
947
|
#
|
@@ -953,15 +985,19 @@ module Aws::FSx
|
|
953
985
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
954
986
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
955
987
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
988
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
956
989
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
957
990
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
958
991
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
992
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
993
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
959
994
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
960
995
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
961
996
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
962
997
|
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
963
998
|
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
964
999
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1000
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
965
1001
|
# resp.file_system.administrative_actions #=> Array
|
966
1002
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
967
1003
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1148,8 +1184,8 @@ module Aws::FSx
|
|
1148
1184
|
# security_group_ids: ["SecurityGroupId"],
|
1149
1185
|
# tags: [
|
1150
1186
|
# {
|
1151
|
-
# key: "TagKey",
|
1152
|
-
# value: "TagValue",
|
1187
|
+
# key: "TagKey", # required
|
1188
|
+
# value: "TagValue", # required
|
1153
1189
|
# },
|
1154
1190
|
# ],
|
1155
1191
|
# windows_configuration: {
|
@@ -1176,10 +1212,12 @@ module Aws::FSx
|
|
1176
1212
|
# export_path: "ArchivePath",
|
1177
1213
|
# imported_file_chunk_size: 1,
|
1178
1214
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
1215
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
1179
1216
|
# per_unit_storage_throughput: 1,
|
1180
1217
|
# daily_automatic_backup_start_time: "DailyTime",
|
1181
1218
|
# automatic_backup_retention_days: 1,
|
1182
1219
|
# copy_tags_to_backups: false,
|
1220
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
1183
1221
|
# },
|
1184
1222
|
# storage_type: "SSD", # accepts SSD, HDD
|
1185
1223
|
# })
|
@@ -1224,15 +1262,19 @@ module Aws::FSx
|
|
1224
1262
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
1225
1263
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
1226
1264
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
1265
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
1227
1266
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
1228
1267
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
1229
1268
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1269
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
1270
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
1230
1271
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1231
1272
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1232
1273
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
1233
1274
|
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
1234
1275
|
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
1235
1276
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1277
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1236
1278
|
# resp.file_system.administrative_actions #=> Array
|
1237
1279
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1238
1280
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1300,7 +1342,7 @@ module Aws::FSx
|
|
1300
1342
|
# @example Response structure
|
1301
1343
|
#
|
1302
1344
|
# resp.backup_id #=> String
|
1303
|
-
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETED", "FAILED"
|
1345
|
+
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
1304
1346
|
#
|
1305
1347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteBackup AWS API Documentation
|
1306
1348
|
#
|
@@ -1386,8 +1428,8 @@ module Aws::FSx
|
|
1386
1428
|
# skip_final_backup: false,
|
1387
1429
|
# final_backup_tags: [
|
1388
1430
|
# {
|
1389
|
-
# key: "TagKey",
|
1390
|
-
# value: "TagValue",
|
1431
|
+
# key: "TagKey", # required
|
1432
|
+
# value: "TagValue", # required
|
1391
1433
|
# },
|
1392
1434
|
# ],
|
1393
1435
|
# },
|
@@ -1395,8 +1437,8 @@ module Aws::FSx
|
|
1395
1437
|
# skip_final_backup: false,
|
1396
1438
|
# final_backup_tags: [
|
1397
1439
|
# {
|
1398
|
-
# key: "TagKey",
|
1399
|
-
# value: "TagValue",
|
1440
|
+
# key: "TagKey", # required
|
1441
|
+
# value: "TagValue", # required
|
1400
1442
|
# },
|
1401
1443
|
# ],
|
1402
1444
|
# },
|
@@ -1533,7 +1575,7 @@ module Aws::FSx
|
|
1533
1575
|
#
|
1534
1576
|
# resp.backups #=> Array
|
1535
1577
|
# resp.backups[0].backup_id #=> String
|
1536
|
-
# resp.backups[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETED", "FAILED"
|
1578
|
+
# resp.backups[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
1537
1579
|
# resp.backups[0].failure_details.message #=> String
|
1538
1580
|
# resp.backups[0].type #=> String, one of "AUTOMATIC", "USER_INITIATED"
|
1539
1581
|
# resp.backups[0].progress_percent #=> Integer
|
@@ -1581,15 +1623,19 @@ module Aws::FSx
|
|
1581
1623
|
# resp.backups[0].file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
1582
1624
|
# resp.backups[0].file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
1583
1625
|
# resp.backups[0].file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
1626
|
+
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
1584
1627
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
1585
1628
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
1586
1629
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1630
|
+
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
1631
|
+
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
1587
1632
|
# resp.backups[0].file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1588
1633
|
# resp.backups[0].file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1589
1634
|
# resp.backups[0].file_system.lustre_configuration.mount_name #=> String
|
1590
1635
|
# resp.backups[0].file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
1591
1636
|
# resp.backups[0].file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
1592
1637
|
# resp.backups[0].file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1638
|
+
# resp.backups[0].file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1593
1639
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
1594
1640
|
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1595
1641
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1844,15 +1890,19 @@ module Aws::FSx
|
|
1844
1890
|
# resp.file_systems[0].windows_configuration.automatic_backup_retention_days #=> Integer
|
1845
1891
|
# resp.file_systems[0].windows_configuration.copy_tags_to_backups #=> Boolean
|
1846
1892
|
# resp.file_systems[0].lustre_configuration.weekly_maintenance_start_time #=> String
|
1893
|
+
# resp.file_systems[0].lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
1847
1894
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.import_path #=> String
|
1848
1895
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.export_path #=> String
|
1849
1896
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1897
|
+
# resp.file_systems[0].lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
1898
|
+
# resp.file_systems[0].lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
1850
1899
|
# resp.file_systems[0].lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1851
1900
|
# resp.file_systems[0].lustre_configuration.per_unit_storage_throughput #=> Integer
|
1852
1901
|
# resp.file_systems[0].lustre_configuration.mount_name #=> String
|
1853
1902
|
# resp.file_systems[0].lustre_configuration.daily_automatic_backup_start_time #=> String
|
1854
1903
|
# resp.file_systems[0].lustre_configuration.automatic_backup_retention_days #=> Integer
|
1855
1904
|
# resp.file_systems[0].lustre_configuration.copy_tags_to_backups #=> Boolean
|
1905
|
+
# resp.file_systems[0].lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1856
1906
|
# resp.file_systems[0].administrative_actions #=> Array
|
1857
1907
|
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1858
1908
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
@@ -1991,8 +2041,8 @@ module Aws::FSx
|
|
1991
2041
|
# resource_arn: "ResourceARN", # required
|
1992
2042
|
# tags: [ # required
|
1993
2043
|
# {
|
1994
|
-
# key: "TagKey",
|
1995
|
-
# value: "TagValue",
|
2044
|
+
# key: "TagKey", # required
|
2045
|
+
# value: "TagValue", # required
|
1996
2046
|
# },
|
1997
2047
|
# ],
|
1998
2048
|
# })
|
@@ -2046,9 +2096,11 @@ module Aws::FSx
|
|
2046
2096
|
end
|
2047
2097
|
|
2048
2098
|
# Use this operation to update the configuration of an existing Amazon
|
2049
|
-
# FSx file system.
|
2050
|
-
#
|
2051
|
-
#
|
2099
|
+
# FSx file system. You can update multiple properties in a single
|
2100
|
+
# request.
|
2101
|
+
#
|
2102
|
+
# For Amazon FSx for Windows File Server file systems, you can update
|
2103
|
+
# the following properties:
|
2052
2104
|
#
|
2053
2105
|
# * AutomaticBackupRetentionDays
|
2054
2106
|
#
|
@@ -2062,7 +2114,16 @@ module Aws::FSx
|
|
2062
2114
|
#
|
2063
2115
|
# * WeeklyMaintenanceStartTime
|
2064
2116
|
#
|
2065
|
-
#
|
2117
|
+
# For Amazon FSx for Lustre file systems, you can update the following
|
2118
|
+
# properties:
|
2119
|
+
#
|
2120
|
+
# * AutoImportPolicy
|
2121
|
+
#
|
2122
|
+
# * AutomaticBackupRetentionDays
|
2123
|
+
#
|
2124
|
+
# * DailyAutomaticBackupStartTime
|
2125
|
+
#
|
2126
|
+
# * WeeklyMaintenanceStartTime
|
2066
2127
|
#
|
2067
2128
|
# @option params [required, String] :file_system_id
|
2068
2129
|
# Identifies the file system that you are updating.
|
@@ -2167,6 +2228,7 @@ module Aws::FSx
|
|
2167
2228
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2168
2229
|
# daily_automatic_backup_start_time: "DailyTime",
|
2169
2230
|
# automatic_backup_retention_days: 1,
|
2231
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
2170
2232
|
# },
|
2171
2233
|
# })
|
2172
2234
|
#
|
@@ -2210,15 +2272,19 @@ module Aws::FSx
|
|
2210
2272
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
2211
2273
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
2212
2274
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
2275
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
2213
2276
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
2214
2277
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
2215
2278
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
2279
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
2280
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
2216
2281
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
2217
2282
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
2218
2283
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
2219
2284
|
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
2220
2285
|
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
2221
2286
|
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
2287
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
2222
2288
|
# resp.file_system.administrative_actions #=> Array
|
2223
2289
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
2224
2290
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -2249,7 +2315,7 @@ module Aws::FSx
|
|
2249
2315
|
params: params,
|
2250
2316
|
config: config)
|
2251
2317
|
context[:gem_name] = 'aws-sdk-fsx'
|
2252
|
-
context[:gem_version] = '1.
|
2318
|
+
context[:gem_version] = '1.29.0'
|
2253
2319
|
Seahorse::Client::Request.new(handlers, context)
|
2254
2320
|
end
|
2255
2321
|
|
@@ -23,6 +23,7 @@ module Aws::FSx
|
|
23
23
|
AdministrativeActionType = Shapes::StringShape.new(name: 'AdministrativeActionType')
|
24
24
|
AdministrativeActions = Shapes::ListShape.new(name: 'AdministrativeActions')
|
25
25
|
ArchivePath = Shapes::StringShape.new(name: 'ArchivePath')
|
26
|
+
AutoImportPolicyType = Shapes::StringShape.new(name: 'AutoImportPolicyType')
|
26
27
|
AutomaticBackupRetentionDays = Shapes::IntegerShape.new(name: 'AutomaticBackupRetentionDays')
|
27
28
|
Backup = Shapes::StructureShape.new(name: 'Backup')
|
28
29
|
BackupFailureDetails = Shapes::StructureShape.new(name: 'BackupFailureDetails')
|
@@ -53,6 +54,8 @@ module Aws::FSx
|
|
53
54
|
DNSName = Shapes::StringShape.new(name: 'DNSName')
|
54
55
|
DailyTime = Shapes::StringShape.new(name: 'DailyTime')
|
55
56
|
DataRepositoryConfiguration = Shapes::StructureShape.new(name: 'DataRepositoryConfiguration')
|
57
|
+
DataRepositoryFailureDetails = Shapes::StructureShape.new(name: 'DataRepositoryFailureDetails')
|
58
|
+
DataRepositoryLifecycle = Shapes::StringShape.new(name: 'DataRepositoryLifecycle')
|
56
59
|
DataRepositoryTask = Shapes::StructureShape.new(name: 'DataRepositoryTask')
|
57
60
|
DataRepositoryTaskEnded = Shapes::StructureShape.new(name: 'DataRepositoryTaskEnded')
|
58
61
|
DataRepositoryTaskExecuting = Shapes::StructureShape.new(name: 'DataRepositoryTaskExecuting')
|
@@ -87,6 +90,7 @@ module Aws::FSx
|
|
87
90
|
DirectoryPassword = Shapes::StringShape.new(name: 'DirectoryPassword')
|
88
91
|
DirectoryUserName = Shapes::StringShape.new(name: 'DirectoryUserName')
|
89
92
|
DnsIps = Shapes::ListShape.new(name: 'DnsIps')
|
93
|
+
DriveCacheType = Shapes::StringShape.new(name: 'DriveCacheType')
|
90
94
|
EndTime = Shapes::TimestampShape.new(name: 'EndTime')
|
91
95
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
92
96
|
FailedCount = Shapes::IntegerShape.new(name: 'FailedCount')
|
@@ -280,10 +284,12 @@ module Aws::FSx
|
|
280
284
|
CreateFileSystemLustreConfiguration.add_member(:export_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ExportPath"))
|
281
285
|
CreateFileSystemLustreConfiguration.add_member(:imported_file_chunk_size, Shapes::ShapeRef.new(shape: Megabytes, location_name: "ImportedFileChunkSize"))
|
282
286
|
CreateFileSystemLustreConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: LustreDeploymentType, location_name: "DeploymentType"))
|
287
|
+
CreateFileSystemLustreConfiguration.add_member(:auto_import_policy, Shapes::ShapeRef.new(shape: AutoImportPolicyType, location_name: "AutoImportPolicy"))
|
283
288
|
CreateFileSystemLustreConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
284
289
|
CreateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
285
290
|
CreateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
286
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"))
|
287
293
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
288
294
|
|
289
295
|
CreateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
@@ -312,11 +318,17 @@ module Aws::FSx
|
|
312
318
|
CreateFileSystemWindowsConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
313
319
|
CreateFileSystemWindowsConfiguration.struct_class = Types::CreateFileSystemWindowsConfiguration
|
314
320
|
|
321
|
+
DataRepositoryConfiguration.add_member(:lifecycle, Shapes::ShapeRef.new(shape: DataRepositoryLifecycle, location_name: "Lifecycle"))
|
315
322
|
DataRepositoryConfiguration.add_member(:import_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ImportPath"))
|
316
323
|
DataRepositoryConfiguration.add_member(:export_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ExportPath"))
|
317
324
|
DataRepositoryConfiguration.add_member(:imported_file_chunk_size, Shapes::ShapeRef.new(shape: Megabytes, location_name: "ImportedFileChunkSize"))
|
325
|
+
DataRepositoryConfiguration.add_member(:auto_import_policy, Shapes::ShapeRef.new(shape: AutoImportPolicyType, location_name: "AutoImportPolicy"))
|
326
|
+
DataRepositoryConfiguration.add_member(:failure_details, Shapes::ShapeRef.new(shape: DataRepositoryFailureDetails, location_name: "FailureDetails"))
|
318
327
|
DataRepositoryConfiguration.struct_class = Types::DataRepositoryConfiguration
|
319
328
|
|
329
|
+
DataRepositoryFailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
330
|
+
DataRepositoryFailureDetails.struct_class = Types::DataRepositoryFailureDetails
|
331
|
+
|
320
332
|
DataRepositoryTask.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, required: true, location_name: "TaskId"))
|
321
333
|
DataRepositoryTask.add_member(:lifecycle, Shapes::ShapeRef.new(shape: DataRepositoryTaskLifecycle, required: true, location_name: "Lifecycle"))
|
322
334
|
DataRepositoryTask.add_member(:type, Shapes::ShapeRef.new(shape: DataRepositoryTaskType, required: true, location_name: "Type"))
|
@@ -507,6 +519,7 @@ module Aws::FSx
|
|
507
519
|
LustreFileSystemConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
508
520
|
LustreFileSystemConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
509
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"))
|
510
523
|
LustreFileSystemConfiguration.struct_class = Types::LustreFileSystemConfiguration
|
511
524
|
|
512
525
|
MissingFileSystemConfiguration.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -554,8 +567,8 @@ module Aws::FSx
|
|
554
567
|
|
555
568
|
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
556
569
|
|
557
|
-
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, location_name: "Key"))
|
558
|
-
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, location_name: "Value"))
|
570
|
+
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
571
|
+
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
|
559
572
|
Tag.struct_class = Types::Tag
|
560
573
|
|
561
574
|
TagKeys.member = Shapes::ShapeRef.new(shape: TagKey)
|
@@ -582,6 +595,7 @@ module Aws::FSx
|
|
582
595
|
UpdateFileSystemLustreConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
583
596
|
UpdateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
584
597
|
UpdateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
598
|
+
UpdateFileSystemLustreConfiguration.add_member(:auto_import_policy, Shapes::ShapeRef.new(shape: AutoImportPolicyType, location_name: "AutoImportPolicy"))
|
585
599
|
UpdateFileSystemLustreConfiguration.struct_class = Types::UpdateFileSystemLustreConfiguration
|
586
600
|
|
587
601
|
UpdateFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -159,6 +159,17 @@ module Aws::FSx
|
|
159
159
|
#
|
160
160
|
# @!attribute [rw] lifecycle
|
161
161
|
# The lifecycle status of the backup.
|
162
|
+
#
|
163
|
+
# * `AVAILABLE` - The backup is fully available.
|
164
|
+
#
|
165
|
+
# * `CREATING` - FSx is creating the backup.
|
166
|
+
#
|
167
|
+
# * `TRANSFERRING` - For Lustre file systems only; FSx is transferring
|
168
|
+
# the backup to S3.
|
169
|
+
#
|
170
|
+
# * `DELETED` - The backup was deleted is no longer available.
|
171
|
+
#
|
172
|
+
# * `FAILED` - Amazon FSx could not complete the backup.
|
162
173
|
# @return [String]
|
163
174
|
#
|
164
175
|
# @!attribute [rw] failure_details
|
@@ -166,7 +177,7 @@ module Aws::FSx
|
|
166
177
|
# @return [Types::BackupFailureDetails]
|
167
178
|
#
|
168
179
|
# @!attribute [rw] type
|
169
|
-
# The type of the backup.
|
180
|
+
# The type of the file system backup.
|
170
181
|
# @return [String]
|
171
182
|
#
|
172
183
|
# @!attribute [rw] progress_percent
|
@@ -179,8 +190,7 @@ module Aws::FSx
|
|
179
190
|
#
|
180
191
|
# @!attribute [rw] kms_key_id
|
181
192
|
# The ID of the AWS Key Management Service (AWS KMS) key used to
|
182
|
-
# encrypt
|
183
|
-
# data at rest. Amazon FSx for Lustre does not support KMS encryption.
|
193
|
+
# encrypt the backup of the Amazon FSx file system's data at rest.
|
184
194
|
# @return [String]
|
185
195
|
#
|
186
196
|
# @!attribute [rw] resource_arn
|
@@ -423,8 +433,8 @@ module Aws::FSx
|
|
423
433
|
# client_request_token: "ClientRequestToken",
|
424
434
|
# tags: [
|
425
435
|
# {
|
426
|
-
# key: "TagKey",
|
427
|
-
# value: "TagValue",
|
436
|
+
# key: "TagKey", # required
|
437
|
+
# value: "TagValue", # required
|
428
438
|
# },
|
429
439
|
# ],
|
430
440
|
# }
|
@@ -434,21 +444,21 @@ module Aws::FSx
|
|
434
444
|
# @return [String]
|
435
445
|
#
|
436
446
|
# @!attribute [rw] client_request_token
|
437
|
-
# A string of up to 64 ASCII characters that Amazon FSx
|
438
|
-
# idempotent creation. This string is automatically
|
439
|
-
# behalf when you use the AWS Command Line Interface
|
440
|
-
# AWS SDK.
|
447
|
+
# (Optional) A string of up to 64 ASCII characters that Amazon FSx
|
448
|
+
# uses to ensure idempotent creation. This string is automatically
|
449
|
+
# filled on your behalf when you use the AWS Command Line Interface
|
450
|
+
# (AWS CLI) or an AWS SDK.
|
441
451
|
#
|
442
452
|
# **A suitable default value is auto-generated.** You should normally
|
443
453
|
# not need to pass this option.
|
444
454
|
# @return [String]
|
445
455
|
#
|
446
456
|
# @!attribute [rw] tags
|
447
|
-
# The tags to apply to the backup at backup creation. The
|
448
|
-
# the `Name` tag appears in the console as the backup
|
449
|
-
# have set `CopyTagsToBackups` to true, and you specify
|
450
|
-
# tags using the `CreateBackup` action, no existing
|
451
|
-
# system are copied from the file system to the backup.
|
457
|
+
# (Optional) The tags to apply to the backup at backup creation. The
|
458
|
+
# key value of the `Name` tag appears in the console as the backup
|
459
|
+
# name. If you have set `CopyTagsToBackups` to true, and you specify
|
460
|
+
# one or more tags using the `CreateBackup` action, no existing file
|
461
|
+
# system tags are copied from the file system to the backup.
|
452
462
|
# @return [Array<Types::Tag>]
|
453
463
|
#
|
454
464
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateBackupRequest AWS API Documentation
|
@@ -491,8 +501,8 @@ module Aws::FSx
|
|
491
501
|
# client_request_token: "ClientRequestToken",
|
492
502
|
# tags: [
|
493
503
|
# {
|
494
|
-
# key: "TagKey",
|
495
|
-
# value: "TagValue",
|
504
|
+
# key: "TagKey", # required
|
505
|
+
# value: "TagValue", # required
|
496
506
|
# },
|
497
507
|
# ],
|
498
508
|
# }
|
@@ -578,8 +588,8 @@ module Aws::FSx
|
|
578
588
|
# security_group_ids: ["SecurityGroupId"],
|
579
589
|
# tags: [
|
580
590
|
# {
|
581
|
-
# key: "TagKey",
|
582
|
-
# value: "TagValue",
|
591
|
+
# key: "TagKey", # required
|
592
|
+
# value: "TagValue", # required
|
583
593
|
# },
|
584
594
|
# ],
|
585
595
|
# windows_configuration: {
|
@@ -606,10 +616,12 @@ module Aws::FSx
|
|
606
616
|
# export_path: "ArchivePath",
|
607
617
|
# imported_file_chunk_size: 1,
|
608
618
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
619
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
609
620
|
# per_unit_storage_throughput: 1,
|
610
621
|
# daily_automatic_backup_start_time: "DailyTime",
|
611
622
|
# automatic_backup_retention_days: 1,
|
612
623
|
# copy_tags_to_backups: false,
|
624
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
613
625
|
# },
|
614
626
|
# storage_type: "SSD", # accepts SSD, HDD
|
615
627
|
# }
|
@@ -726,16 +738,19 @@ module Aws::FSx
|
|
726
738
|
# export_path: "ArchivePath",
|
727
739
|
# imported_file_chunk_size: 1,
|
728
740
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
741
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
729
742
|
# per_unit_storage_throughput: 1,
|
730
743
|
# daily_automatic_backup_start_time: "DailyTime",
|
731
744
|
# automatic_backup_retention_days: 1,
|
732
745
|
# copy_tags_to_backups: false,
|
746
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
733
747
|
# }
|
734
748
|
#
|
735
749
|
# @!attribute [rw] weekly_maintenance_start_time
|
736
|
-
# The preferred start time to perform weekly maintenance,
|
737
|
-
# d:HH:MM in the UTC time zone, where d is the weekday
|
738
|
-
# through 7, beginning with Monday and ending with
|
750
|
+
# (Optional) The preferred start time to perform weekly maintenance,
|
751
|
+
# formatted d:HH:MM in the UTC time zone, where d is the weekday
|
752
|
+
# number, from 1 through 7, beginning with Monday and ending with
|
753
|
+
# Sunday.
|
739
754
|
# @return [String]
|
740
755
|
#
|
741
756
|
# @!attribute [rw] import_path
|
@@ -788,10 +803,6 @@ module Aws::FSx
|
|
788
803
|
# `SCRATCH_2` deployment type provides in-transit encryption of data
|
789
804
|
# and higher burst throughput capacity than `SCRATCH_1`.
|
790
805
|
#
|
791
|
-
# <note markdown="1"> This option can only be set for for PERSISTENT\_1 deployments types.
|
792
|
-
#
|
793
|
-
# </note>
|
794
|
-
#
|
795
806
|
# Choose `PERSISTENT_1` deployment type for longer-term storage and
|
796
807
|
# workloads and encryption of data in transit. To learn more about
|
797
808
|
# deployment types, see [ FSx for Lustre Deployment Options][1].
|
@@ -812,17 +823,47 @@ module Aws::FSx
|
|
812
823
|
# [3]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/encryption-in-transit-fsxl.html
|
813
824
|
# @return [String]
|
814
825
|
#
|
826
|
+
# @!attribute [rw] auto_import_policy
|
827
|
+
# (Optional) When you create your file system, your existing S3
|
828
|
+
# objects appear as file and directory listings. Use this property to
|
829
|
+
# choose how Amazon FSx keeps your file and directory listings up to
|
830
|
+
# date as you add or modify objects in your linked S3 bucket.
|
831
|
+
# `AutoImportPolicy` can have the following values:
|
832
|
+
#
|
833
|
+
# * `NONE` - (Default) AutoImport is off. Amazon FSx only updates file
|
834
|
+
# and directory listings from the linked S3 bucket when the file
|
835
|
+
# system is created. FSx does not update file and directory listings
|
836
|
+
# for any new or changed objects after choosing this option.
|
837
|
+
#
|
838
|
+
# * `NEW` - AutoImport is on. Amazon FSx automatically imports
|
839
|
+
# directory listings of any new objects added to the linked S3
|
840
|
+
# bucket that do not currently exist in the FSx file system.
|
841
|
+
#
|
842
|
+
# * `NEW_CHANGED` - AutoImport is on. Amazon FSx automatically imports
|
843
|
+
# file and directory listings of any new objects added to the S3
|
844
|
+
# bucket and any existing objects that are changed in the S3 bucket
|
845
|
+
# after you choose this option.
|
846
|
+
#
|
847
|
+
# For more information, see [Automatically import updates from your S3
|
848
|
+
# bucket][1].
|
849
|
+
#
|
850
|
+
#
|
851
|
+
#
|
852
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/autoimport-data-repo.html
|
853
|
+
# @return [String]
|
854
|
+
#
|
815
855
|
# @!attribute [rw] per_unit_storage_throughput
|
816
856
|
# Required for the `PERSISTENT_1` deployment type, describes the
|
817
857
|
# amount of read and write throughput for each 1 tebibyte of storage,
|
818
858
|
# in MB/s/TiB. File system throughput capacity is calculated by
|
819
859
|
# multiplying file system storage capacity (TiB) by the
|
820
860
|
# PerUnitStorageThroughput (MB/s/TiB). For a 2.4 TiB file system,
|
821
|
-
# provisioning 50 MB/s/TiB of PerUnitStorageThroughput yields
|
861
|
+
# provisioning 50 MB/s/TiB of PerUnitStorageThroughput yields 120 MB/s
|
822
862
|
# of file system throughput. You pay for the amount of throughput that
|
823
863
|
# you provision.
|
824
864
|
#
|
825
|
-
# Valid values
|
865
|
+
# Valid values for SSD storage: 50, 100, 200. Valid values for HDD
|
866
|
+
# storage: 12, 40.
|
826
867
|
# @return [Integer]
|
827
868
|
#
|
828
869
|
# @!attribute [rw] daily_automatic_backup_start_time
|
@@ -834,20 +875,38 @@ module Aws::FSx
|
|
834
875
|
# @!attribute [rw] automatic_backup_retention_days
|
835
876
|
# The number of days to retain automatic backups. Setting this to 0
|
836
877
|
# disables automatic backups. You can retain automatic backups for a
|
837
|
-
# maximum of
|
878
|
+
# maximum of 90 days. The default is 0.
|
838
879
|
# @return [Integer]
|
839
880
|
#
|
840
881
|
# @!attribute [rw] copy_tags_to_backups
|
841
|
-
#
|
842
|
-
#
|
843
|
-
#
|
844
|
-
#
|
845
|
-
#
|
846
|
-
# tags
|
847
|
-
#
|
848
|
-
#
|
882
|
+
# (Optional) Not available to use with file systems that are linked to
|
883
|
+
# a data repository. A boolean flag indicating whether tags for the
|
884
|
+
# file system should be copied to backups. The default value is false.
|
885
|
+
# If it's set to true, all file system tags are copied to all
|
886
|
+
# automatic and user-initiated backups when the user doesn't specify
|
887
|
+
# any backup-specific tags. If this value is true, and you specify one
|
888
|
+
# or more backup tags, only the specified tags are copied to backups.
|
889
|
+
# If you specify one or more tags when creating a user-initiated
|
890
|
+
# backup, no tags are copied from the file system, regardless of this
|
891
|
+
# value.
|
892
|
+
#
|
893
|
+
# For more information, see [Working with backups][1].
|
894
|
+
#
|
895
|
+
#
|
896
|
+
#
|
897
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html
|
849
898
|
# @return [Boolean]
|
850
899
|
#
|
900
|
+
# @!attribute [rw] drive_cache_type
|
901
|
+
# The type of drive cache used by PERSISTENT\_1 file systems that are
|
902
|
+
# provisioned with HDD storage devices. This parameter is required
|
903
|
+
# when storage type is HDD. Set to `READ`, improve the performance for
|
904
|
+
# frequently accessed files and allows 20% of the total storage
|
905
|
+
# capacity of the file system to be cached.
|
906
|
+
#
|
907
|
+
# This parameter is required when `StorageType` is set to HDD.
|
908
|
+
# @return [String]
|
909
|
+
#
|
851
910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
852
911
|
#
|
853
912
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
@@ -856,10 +915,12 @@ module Aws::FSx
|
|
856
915
|
:export_path,
|
857
916
|
:imported_file_chunk_size,
|
858
917
|
:deployment_type,
|
918
|
+
:auto_import_policy,
|
859
919
|
:per_unit_storage_throughput,
|
860
920
|
:daily_automatic_backup_start_time,
|
861
921
|
:automatic_backup_retention_days,
|
862
|
-
:copy_tags_to_backups
|
922
|
+
:copy_tags_to_backups,
|
923
|
+
:drive_cache_type)
|
863
924
|
SENSITIVE = []
|
864
925
|
include Aws::Structure
|
865
926
|
end
|
@@ -878,8 +939,8 @@ module Aws::FSx
|
|
878
939
|
# security_group_ids: ["SecurityGroupId"],
|
879
940
|
# tags: [
|
880
941
|
# {
|
881
|
-
# key: "TagKey",
|
882
|
-
# value: "TagValue",
|
942
|
+
# key: "TagKey", # required
|
943
|
+
# value: "TagValue", # required
|
883
944
|
# },
|
884
945
|
# ],
|
885
946
|
# kms_key_id: "KmsKeyId",
|
@@ -907,10 +968,12 @@ module Aws::FSx
|
|
907
968
|
# export_path: "ArchivePath",
|
908
969
|
# imported_file_chunk_size: 1,
|
909
970
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
971
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
910
972
|
# per_unit_storage_throughput: 1,
|
911
973
|
# daily_automatic_backup_start_time: "DailyTime",
|
912
974
|
# automatic_backup_retention_days: 1,
|
913
975
|
# copy_tags_to_backups: false,
|
976
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
914
977
|
# },
|
915
978
|
# }
|
916
979
|
#
|
@@ -934,11 +997,15 @@ module Aws::FSx
|
|
934
997
|
#
|
935
998
|
# For Lustre file systems:
|
936
999
|
#
|
937
|
-
# * For `SCRATCH_2` and `PERSISTENT_1` deployment types, valid
|
938
|
-
# are
|
1000
|
+
# * For `SCRATCH_2` and `PERSISTENT_1 SSD` deployment types, valid
|
1001
|
+
# values are 1200 GiB, 2400 GiB, and increments of 2400 GiB.
|
1002
|
+
#
|
1003
|
+
# * For `PERSISTENT HDD` file systems, valid values are increments of
|
1004
|
+
# 6000 GiB for 12 MB/s/TiB file systems and increments of 1800 GiB
|
1005
|
+
# for 40 MB/s/TiB file systems.
|
939
1006
|
#
|
940
|
-
# * For `SCRATCH_1` deployment type, valid values are
|
941
|
-
# increments of
|
1007
|
+
# * For `SCRATCH_1` deployment type, valid values are 1200 GiB, 2400
|
1008
|
+
# GiB, and increments of 3600 GiB.
|
942
1009
|
#
|
943
1010
|
# For Windows file systems:
|
944
1011
|
#
|
@@ -950,22 +1017,24 @@ module Aws::FSx
|
|
950
1017
|
# @return [Integer]
|
951
1018
|
#
|
952
1019
|
# @!attribute [rw] storage_type
|
953
|
-
# Sets the storage type for the
|
954
|
-
#
|
1020
|
+
# Sets the storage type for the file system you're creating. Valid
|
1021
|
+
# values are `SSD` and `HDD`.
|
955
1022
|
#
|
956
1023
|
# * Set to `SSD` to use solid state drive storage. SSD is supported on
|
957
|
-
# all Windows deployment types.
|
1024
|
+
# all Windows and Lustre deployment types.
|
958
1025
|
#
|
959
1026
|
# * Set to `HDD` to use hard disk drive storage. HDD is supported on
|
960
1027
|
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment
|
961
|
-
# types.
|
1028
|
+
# types, and on `PERSISTENT` Lustre file system deployment types.
|
962
1029
|
#
|
963
1030
|
# Default value is `SSD`. For more information, see [ Storage Type
|
964
|
-
# Options][1] in the *Amazon FSx for Windows User Guide
|
1031
|
+
# Options][1] in the *Amazon FSx for Windows User Guide* and [Multiple
|
1032
|
+
# Storage Options][2] in the *Amazon FSx for Lustre User Guide*.
|
965
1033
|
#
|
966
1034
|
#
|
967
1035
|
#
|
968
1036
|
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
1037
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/what-is.html#storage-options
|
969
1038
|
# @return [String]
|
970
1039
|
#
|
971
1040
|
# @!attribute [rw] subnet_ids
|
@@ -1138,7 +1207,7 @@ module Aws::FSx
|
|
1138
1207
|
# The number of days to retain automatic backups. The default is to
|
1139
1208
|
# retain backups for 7 days. Setting this value to 0 disables the
|
1140
1209
|
# creation of automatic backups. The maximum retention period for
|
1141
|
-
# backups is
|
1210
|
+
# backups is 90 days.
|
1142
1211
|
# @return [Integer]
|
1143
1212
|
#
|
1144
1213
|
# @!attribute [rw] copy_tags_to_backups
|
@@ -1171,6 +1240,30 @@ module Aws::FSx
|
|
1171
1240
|
# The data repository configuration object for Lustre file systems
|
1172
1241
|
# returned in the response of the `CreateFileSystem` operation.
|
1173
1242
|
#
|
1243
|
+
# @!attribute [rw] lifecycle
|
1244
|
+
# Describes the state of the file system's S3 durable data
|
1245
|
+
# repository, if it is configured with an S3 repository. The lifecycle
|
1246
|
+
# can have the following values:
|
1247
|
+
#
|
1248
|
+
# * `CREATING` - The data repository configuration between the FSx
|
1249
|
+
# file system and the linked S3 data repository is being created.
|
1250
|
+
# The data repository is unavailable.
|
1251
|
+
#
|
1252
|
+
# * `AVAILABLE` - The data repository is available for use.
|
1253
|
+
#
|
1254
|
+
# * `MISCONFIGURED` - Amazon FSx cannot automatically import updates
|
1255
|
+
# from the S3 bucket until the data repository configuration is
|
1256
|
+
# corrected. For more information, see [Troubleshooting a
|
1257
|
+
# Misconfigured linked S3 bucket][1].
|
1258
|
+
#
|
1259
|
+
# * `UPDATING` - The data repository is undergoing a customer
|
1260
|
+
# initiated update and availability may be impacted.
|
1261
|
+
#
|
1262
|
+
#
|
1263
|
+
#
|
1264
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/troubleshooting.html#troubleshooting-misconfigured-data-repository
|
1265
|
+
# @return [String]
|
1266
|
+
#
|
1174
1267
|
# @!attribute [rw] import_path
|
1175
1268
|
# The import path to the Amazon S3 bucket (and optional prefix) that
|
1176
1269
|
# you're using as the data repository for your FSx for Lustre file
|
@@ -1196,12 +1289,64 @@ module Aws::FSx
|
|
1196
1289
|
# TB.
|
1197
1290
|
# @return [Integer]
|
1198
1291
|
#
|
1292
|
+
# @!attribute [rw] auto_import_policy
|
1293
|
+
# Describes the file system's linked S3 data repository's
|
1294
|
+
# `AutoImportPolicy`. The AutoImportPolicy configures how Amazon FSx
|
1295
|
+
# keeps your file and directory listings up to date as you add or
|
1296
|
+
# modify objects in your linked S3 bucket. `AutoImportPolicy` can have
|
1297
|
+
# the following values:
|
1298
|
+
#
|
1299
|
+
# * `NONE` - (Default) AutoImport is off. Amazon FSx only updates file
|
1300
|
+
# and directory listings from the linked S3 bucket when the file
|
1301
|
+
# system is created. FSx does not update file and directory listings
|
1302
|
+
# for any new or changed objects after choosing this option.
|
1303
|
+
#
|
1304
|
+
# * `NEW` - AutoImport is on. Amazon FSx automatically imports
|
1305
|
+
# directory listings of any new objects added to the linked S3
|
1306
|
+
# bucket that do not currently exist in the FSx file system.
|
1307
|
+
#
|
1308
|
+
# * `NEW_CHANGED` - AutoImport is on. Amazon FSx automatically imports
|
1309
|
+
# file and directory listings of any new objects added to the S3
|
1310
|
+
# bucket and any existing objects that are changed in the S3 bucket
|
1311
|
+
# after you choose this option.
|
1312
|
+
#
|
1313
|
+
# For more information, see [Automatically import updates from your S3
|
1314
|
+
# bucket][1].
|
1315
|
+
#
|
1316
|
+
#
|
1317
|
+
#
|
1318
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/autoimport-data-repo.html
|
1319
|
+
# @return [String]
|
1320
|
+
#
|
1321
|
+
# @!attribute [rw] failure_details
|
1322
|
+
# Provides detailed information about the data respository if its
|
1323
|
+
# `Lifecycle` is set to `MISCONFIGURED`.
|
1324
|
+
# @return [Types::DataRepositoryFailureDetails]
|
1325
|
+
#
|
1199
1326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DataRepositoryConfiguration AWS API Documentation
|
1200
1327
|
#
|
1201
1328
|
class DataRepositoryConfiguration < Struct.new(
|
1329
|
+
:lifecycle,
|
1202
1330
|
:import_path,
|
1203
1331
|
:export_path,
|
1204
|
-
:imported_file_chunk_size
|
1332
|
+
:imported_file_chunk_size,
|
1333
|
+
:auto_import_policy,
|
1334
|
+
:failure_details)
|
1335
|
+
SENSITIVE = []
|
1336
|
+
include Aws::Structure
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
# Provides detailed information about the data respository if its
|
1340
|
+
# `Lifecycle` is set to `MISCONFIGURED`.
|
1341
|
+
#
|
1342
|
+
# @!attribute [rw] message
|
1343
|
+
# A detailed error message.
|
1344
|
+
# @return [String]
|
1345
|
+
#
|
1346
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DataRepositoryFailureDetails AWS API Documentation
|
1347
|
+
#
|
1348
|
+
class DataRepositoryFailureDetails < Struct.new(
|
1349
|
+
:message)
|
1205
1350
|
SENSITIVE = []
|
1206
1351
|
include Aws::Structure
|
1207
1352
|
end
|
@@ -1529,8 +1674,8 @@ module Aws::FSx
|
|
1529
1674
|
# skip_final_backup: false,
|
1530
1675
|
# final_backup_tags: [
|
1531
1676
|
# {
|
1532
|
-
# key: "TagKey",
|
1533
|
-
# value: "TagValue",
|
1677
|
+
# key: "TagKey", # required
|
1678
|
+
# value: "TagValue", # required
|
1534
1679
|
# },
|
1535
1680
|
# ],
|
1536
1681
|
# }
|
@@ -1591,8 +1736,8 @@ module Aws::FSx
|
|
1591
1736
|
# skip_final_backup: false,
|
1592
1737
|
# final_backup_tags: [
|
1593
1738
|
# {
|
1594
|
-
# key: "TagKey",
|
1595
|
-
# value: "TagValue",
|
1739
|
+
# key: "TagKey", # required
|
1740
|
+
# value: "TagValue", # required
|
1596
1741
|
# },
|
1597
1742
|
# ],
|
1598
1743
|
# },
|
@@ -1600,8 +1745,8 @@ module Aws::FSx
|
|
1600
1745
|
# skip_final_backup: false,
|
1601
1746
|
# final_backup_tags: [
|
1602
1747
|
# {
|
1603
|
-
# key: "TagKey",
|
1604
|
-
# value: "TagValue",
|
1748
|
+
# key: "TagKey", # required
|
1749
|
+
# value: "TagValue", # required
|
1605
1750
|
# },
|
1606
1751
|
# ],
|
1607
1752
|
# },
|
@@ -1683,8 +1828,8 @@ module Aws::FSx
|
|
1683
1828
|
# skip_final_backup: false,
|
1684
1829
|
# final_backup_tags: [
|
1685
1830
|
# {
|
1686
|
-
# key: "TagKey",
|
1687
|
-
# value: "TagValue",
|
1831
|
+
# key: "TagKey", # required
|
1832
|
+
# value: "TagValue", # required
|
1688
1833
|
# },
|
1689
1834
|
# ],
|
1690
1835
|
# }
|
@@ -2378,7 +2523,10 @@ module Aws::FSx
|
|
2378
2523
|
# read or write throughput per 1 tebibyte of storage provisioned. File
|
2379
2524
|
# system throughput capacity is equal to Storage capacity (TiB) *
|
2380
2525
|
# PerUnitStorageThroughput (MB/s/TiB). This option is only valid for
|
2381
|
-
# `PERSISTENT_1` deployment types.
|
2526
|
+
# `PERSISTENT_1` deployment types.
|
2527
|
+
#
|
2528
|
+
# Valid values for SSD storage: 50, 100, 200. Valid values for HDD
|
2529
|
+
# storage: 12, 40.
|
2382
2530
|
# @return [Integer]
|
2383
2531
|
#
|
2384
2532
|
# @!attribute [rw] mount_name
|
@@ -2398,7 +2546,7 @@ module Aws::FSx
|
|
2398
2546
|
# @!attribute [rw] automatic_backup_retention_days
|
2399
2547
|
# The number of days to retain automatic backups. Setting this to 0
|
2400
2548
|
# disables automatic backups. You can retain automatic backups for a
|
2401
|
-
# maximum of
|
2549
|
+
# maximum of 90 days. The default is 0.
|
2402
2550
|
# @return [Integer]
|
2403
2551
|
#
|
2404
2552
|
# @!attribute [rw] copy_tags_to_backups
|
@@ -2412,6 +2560,16 @@ module Aws::FSx
|
|
2412
2560
|
# regardless of this value. (Default = false)
|
2413
2561
|
# @return [Boolean]
|
2414
2562
|
#
|
2563
|
+
# @!attribute [rw] drive_cache_type
|
2564
|
+
# The type of drive cache used by PERSISTENT\_1 file systems that are
|
2565
|
+
# provisioned with HDD storage devices. This parameter is required
|
2566
|
+
# when storage type is HDD. Set to `READ`, improve the performance for
|
2567
|
+
# frequently accessed files and allows 20% of the total storage
|
2568
|
+
# capacity of the file system to be cached.
|
2569
|
+
#
|
2570
|
+
# This parameter is required when `StorageType` is set to HDD.
|
2571
|
+
# @return [String]
|
2572
|
+
#
|
2415
2573
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
2416
2574
|
#
|
2417
2575
|
class LustreFileSystemConfiguration < Struct.new(
|
@@ -2422,7 +2580,8 @@ module Aws::FSx
|
|
2422
2580
|
:mount_name,
|
2423
2581
|
:daily_automatic_backup_start_time,
|
2424
2582
|
:automatic_backup_retention_days,
|
2425
|
-
:copy_tags_to_backups
|
2583
|
+
:copy_tags_to_backups,
|
2584
|
+
:drive_cache_type)
|
2426
2585
|
SENSITIVE = []
|
2427
2586
|
include Aws::Structure
|
2428
2587
|
end
|
@@ -2701,8 +2860,8 @@ module Aws::FSx
|
|
2701
2860
|
# data as a hash:
|
2702
2861
|
#
|
2703
2862
|
# {
|
2704
|
-
# key: "TagKey",
|
2705
|
-
# value: "TagValue",
|
2863
|
+
# key: "TagKey", # required
|
2864
|
+
# value: "TagValue", # required
|
2706
2865
|
# }
|
2707
2866
|
#
|
2708
2867
|
# @!attribute [rw] key
|
@@ -2735,8 +2894,8 @@ module Aws::FSx
|
|
2735
2894
|
# resource_arn: "ResourceARN", # required
|
2736
2895
|
# tags: [ # required
|
2737
2896
|
# {
|
2738
|
-
# key: "TagKey",
|
2739
|
-
# value: "TagValue",
|
2897
|
+
# key: "TagKey", # required
|
2898
|
+
# value: "TagValue", # required
|
2740
2899
|
# },
|
2741
2900
|
# ],
|
2742
2901
|
# }
|
@@ -2825,12 +2984,13 @@ module Aws::FSx
|
|
2825
2984
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2826
2985
|
# daily_automatic_backup_start_time: "DailyTime",
|
2827
2986
|
# automatic_backup_retention_days: 1,
|
2987
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
2828
2988
|
# }
|
2829
2989
|
#
|
2830
2990
|
# @!attribute [rw] weekly_maintenance_start_time
|
2831
|
-
# The preferred start time to perform weekly maintenance,
|
2832
|
-
# d:HH:MM in the UTC time zone. d is the weekday number,
|
2833
|
-
# through 7, beginning with Monday and ending with Sunday.
|
2991
|
+
# (Optional) The preferred start time to perform weekly maintenance,
|
2992
|
+
# formatted d:HH:MM in the UTC time zone. d is the weekday number,
|
2993
|
+
# from 1 through 7, beginning with Monday and ending with Sunday.
|
2834
2994
|
# @return [String]
|
2835
2995
|
#
|
2836
2996
|
# @!attribute [rw] daily_automatic_backup_start_time
|
@@ -2842,15 +3002,45 @@ module Aws::FSx
|
|
2842
3002
|
# @!attribute [rw] automatic_backup_retention_days
|
2843
3003
|
# The number of days to retain automatic backups. Setting this to 0
|
2844
3004
|
# disables automatic backups. You can retain automatic backups for a
|
2845
|
-
# maximum of
|
3005
|
+
# maximum of 90 days. The default is 0.
|
2846
3006
|
# @return [Integer]
|
2847
3007
|
#
|
3008
|
+
# @!attribute [rw] auto_import_policy
|
3009
|
+
# (Optional) When you create your file system, your existing S3
|
3010
|
+
# objects appear as file and directory listings. Use this property to
|
3011
|
+
# choose how Amazon FSx keeps your file and directory listing up to
|
3012
|
+
# date as you add or modify objects in your linked S3 bucket.
|
3013
|
+
# `AutoImportPolicy` can have the following values:
|
3014
|
+
#
|
3015
|
+
# * `NONE` - (Default) AutoImport is off. Amazon FSx only updates file
|
3016
|
+
# and directory listings from the linked S3 bucket when the file
|
3017
|
+
# system is created. FSx does not update the file and directory
|
3018
|
+
# listing for any new or changed objects after choosing this option.
|
3019
|
+
#
|
3020
|
+
# * `NEW` - AutoImport is on. Amazon FSx automatically imports
|
3021
|
+
# directory listings of any new objects added to the linked S3
|
3022
|
+
# bucket that do not currently exist in the FSx file system.
|
3023
|
+
#
|
3024
|
+
# * `NEW_CHANGED` - AutoImport is on. Amazon FSx automatically imports
|
3025
|
+
# file and directory listings of any new objects added to the S3
|
3026
|
+
# bucket and any existing objects that are changed in the S3 bucket
|
3027
|
+
# after you choose this option.
|
3028
|
+
#
|
3029
|
+
# For more information, see [Automatically import updates from your S3
|
3030
|
+
# bucket][1].
|
3031
|
+
#
|
3032
|
+
#
|
3033
|
+
#
|
3034
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/autoimport-data-repo.html
|
3035
|
+
# @return [String]
|
3036
|
+
#
|
2848
3037
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
2849
3038
|
#
|
2850
3039
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
2851
3040
|
:weekly_maintenance_start_time,
|
2852
3041
|
:daily_automatic_backup_start_time,
|
2853
|
-
:automatic_backup_retention_days
|
3042
|
+
:automatic_backup_retention_days,
|
3043
|
+
:auto_import_policy)
|
2854
3044
|
SENSITIVE = []
|
2855
3045
|
include Aws::Structure
|
2856
3046
|
end
|
@@ -2879,6 +3069,7 @@ module Aws::FSx
|
|
2879
3069
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2880
3070
|
# daily_automatic_backup_start_time: "DailyTime",
|
2881
3071
|
# automatic_backup_retention_days: 1,
|
3072
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
2882
3073
|
# },
|
2883
3074
|
# }
|
2884
3075
|
#
|
@@ -2981,7 +3172,7 @@ module Aws::FSx
|
|
2981
3172
|
# @!attribute [rw] automatic_backup_retention_days
|
2982
3173
|
# The number of days to retain automatic daily backups. Setting this
|
2983
3174
|
# to zero (0) disables automatic daily backups. You can retain
|
2984
|
-
# automatic daily backups for a maximum of
|
3175
|
+
# automatic daily backups for a maximum of 90 days. For more
|
2985
3176
|
# information, see [Working with Automatic Daily Backups][1].
|
2986
3177
|
#
|
2987
3178
|
#
|
@@ -3126,7 +3317,7 @@ module Aws::FSx
|
|
3126
3317
|
# @!attribute [rw] automatic_backup_retention_days
|
3127
3318
|
# The number of days to retain automatic backups. Setting this to 0
|
3128
3319
|
# disables automatic backups. You can retain automatic backups for a
|
3129
|
-
# maximum of
|
3320
|
+
# maximum of 90 days.
|
3130
3321
|
# @return [Integer]
|
3131
3322
|
#
|
3132
3323
|
# @!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.29.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-
|
11
|
+
date: 2020-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|