aws-sdk-fsx 1.21.1 → 1.26.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efc143aaa96523642d57237fe420ab12bfa88a3465aa7a49b79fc49dc8b14a52
4
- data.tar.gz: 71d78c8d26dae17cb40ced45ef024b38a0ece925c8067eeda0656786533b8985
3
+ metadata.gz: aacf310c8af03adabc415fa66cfaa0592ec9ef44bf2a2f5280f85a16deb2946d
4
+ data.tar.gz: b7f71312267f6f82feebb32f456ab197e86c7e0e09174a7706e39d35f7a2c008
5
5
  SHA512:
6
- metadata.gz: 81a5ea8c5d6699211ec7b28311518fa22c8ed772adfd7628d9b3d9247a9215da4b8c8809dc7962cb6407b1c44b47a90d054a504db8f781822d4fab005f2ba670
7
- data.tar.gz: e5e5d1bd7df6733d14c11d30fe938525fbccd80acc593874eff4a8c38443ab697c74b9c5ccf7a2eea316a51e29465ee1e7da6cb4e6f9b88f3e44f337e0c00c70
6
+ metadata.gz: b4a9b0f3a7b069f62802a0c60fdeb64f82eaca86bcbba2fc797ea78937749d239ee07d791acc067010d3e49af2ea6d83fbcf87e2719f13192db808a5a2c7324c
7
+ data.tar.gz: 2753afa4c99874d842432193b9f28b408336cad5f30868c7e1f027d050d5d50ad33fee37c80ecdf6d2d0df3613fa1eaf33578c71b1cb10b88c3f3e400d3af6ff
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-fsx/customizations'
45
47
  # @service
46
48
  module Aws::FSx
47
49
 
48
- GEM_VERSION = '1.21.1'
50
+ GEM_VERSION = '1.26.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -359,11 +361,23 @@ module Aws::FSx
359
361
  req.send_request(options)
360
362
  end
361
363
 
362
- # Creates a backup of an existing Amazon FSx for Windows File Server
363
- # file system. Creating regular backups for your file system is a best
364
- # practice that complements the replication that Amazon FSx for Windows
365
- # File Server performs for your file system. It also enables you to
366
- # restore from user modification of data.
364
+ # Creates a backup of an existing Amazon FSx file system. Creating
365
+ # regular backups for your file system is a best practice, enabling you
366
+ # to restore a file system from a backup if an issue arises with the
367
+ # original file system.
368
+ #
369
+ # For Amazon FSx for Lustre file systems, you can create a backup only
370
+ # for file systems with the following configuration:
371
+ #
372
+ # * a Persistent deployment type
373
+ #
374
+ # * is *not* linked to a data respository.
375
+ #
376
+ # For more information about backing up Amazon FSx for Lustre file
377
+ # systems, see [Working with FSx for Lustre backups][1].
378
+ #
379
+ # For more information about backing up Amazon FSx for Lustre file
380
+ # systems, see [Working with FSx for Windows backups][2].
367
381
  #
368
382
  # If a backup with the specified client request token exists, and the
369
383
  # parameters match, this operation returns the description of the
@@ -384,14 +398,15 @@ module Aws::FSx
384
398
  # request token and the initial call created a backup, the operation
385
399
  # returns a successful result because all the parameters are the same.
386
400
  #
387
- # The `CreateFileSystem` operation returns while the backup's lifecycle
388
- # state is still `CREATING`. You can check the file system creation
389
- # status by calling the DescribeBackups operation, which returns the
390
- # backup state along with other information.
401
+ # The `CreateBackup` operation returns while the backup's lifecycle
402
+ # state is still `CREATING`. You can check the backup creation status by
403
+ # calling the DescribeBackups operation, which returns the backup state
404
+ # along with other information.
391
405
  #
392
- # <note markdown="1">
393
406
  #
394
- # </note>
407
+ #
408
+ # [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html
409
+ # [2]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/using-backups.html
395
410
  #
396
411
  # @option params [required, String] :file_system_id
397
412
  # The ID of the file system to back up.
@@ -406,8 +421,11 @@ module Aws::FSx
406
421
  # not need to pass this option.**
407
422
  #
408
423
  # @option params [Array<Types::Tag>] :tags
409
- # The tags to apply to the backup at backup creation. The key value of
410
- # the `Name` tag appears in the console as the backup name.
424
+ # (Optional) The tags to apply to the backup at backup creation. The key
425
+ # value of the `Name` tag appears in the console as the backup name. If
426
+ # you have set `CopyTagsToBackups` to true, and you specify one or more
427
+ # tags using the `CreateBackup` action, no existing file system tags are
428
+ # copied from the file system to the backup.
411
429
  #
412
430
  # @return [Types::CreateBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
413
431
  #
@@ -464,8 +482,8 @@ module Aws::FSx
464
482
  # client_request_token: "ClientRequestToken",
465
483
  # tags: [
466
484
  # {
467
- # key: "TagKey",
468
- # value: "TagValue",
485
+ # key: "TagKey", # required
486
+ # value: "TagValue", # required
469
487
  # },
470
488
  # ],
471
489
  # })
@@ -521,12 +539,18 @@ module Aws::FSx
521
539
  # resp.backup.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
522
540
  # resp.backup.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
523
541
  # resp.backup.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
542
+ # resp.backup.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
524
543
  # resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
525
544
  # resp.backup.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
526
545
  # resp.backup.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
546
+ # resp.backup.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
547
+ # resp.backup.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
527
548
  # resp.backup.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
528
549
  # resp.backup.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
529
550
  # resp.backup.file_system.lustre_configuration.mount_name #=> String
551
+ # resp.backup.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
552
+ # resp.backup.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
553
+ # resp.backup.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
530
554
  # resp.backup.file_system.administrative_actions #=> Array
531
555
  # resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
532
556
  # resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
@@ -620,8 +644,8 @@ module Aws::FSx
620
644
  # client_request_token: "ClientRequestToken",
621
645
  # tags: [
622
646
  # {
623
- # key: "TagKey",
624
- # value: "TagValue",
647
+ # key: "TagKey", # required
648
+ # value: "TagValue", # required
625
649
  # },
626
650
  # ],
627
651
  # })
@@ -695,10 +719,10 @@ module Aws::FSx
695
719
  # </note>
696
720
  #
697
721
  # @option params [String] :client_request_token
698
- # (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
699
- # to ensure idempotent creation. This string is automatically filled on
700
- # your behalf when you use the AWS Command Line Interface (AWS CLI) or
701
- # an AWS SDK.
722
+ # A string of up to 64 ASCII characters that Amazon FSx uses to ensure
723
+ # idempotent creation. This string is automatically filled on your
724
+ # behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
725
+ # SDK.
702
726
  #
703
727
  # **A suitable default value is auto-generated.** You should normally
704
728
  # not need to pass this option.**
@@ -713,10 +737,10 @@ module Aws::FSx
713
737
  # For Lustre file systems:
714
738
  #
715
739
  # * For `SCRATCH_2` and `PERSISTENT_1` deployment types, valid values
716
- # are 1.2, 2.4, and increments of 2.4 TiB.
740
+ # are 1200 GiB, 2400 GiB, and increments of 2400 GiB.
717
741
  #
718
- # * For `SCRATCH_1` deployment type, valid values are 1.2, 2.4, and
719
- # increments of 3.6 TiB.
742
+ # * For `SCRATCH_1` deployment type, valid values are 1200 GiB, 2400
743
+ # GiB, and increments of 3600 GiB.
720
744
  #
721
745
  # For Windows file systems:
722
746
  #
@@ -860,8 +884,8 @@ module Aws::FSx
860
884
  # security_group_ids: ["SecurityGroupId"],
861
885
  # tags: [
862
886
  # {
863
- # key: "TagKey",
864
- # value: "TagValue",
887
+ # key: "TagKey", # required
888
+ # value: "TagValue", # required
865
889
  # },
866
890
  # ],
867
891
  # kms_key_id: "KmsKeyId",
@@ -889,7 +913,11 @@ module Aws::FSx
889
913
  # export_path: "ArchivePath",
890
914
  # imported_file_chunk_size: 1,
891
915
  # deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
916
+ # auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
892
917
  # per_unit_storage_throughput: 1,
918
+ # daily_automatic_backup_start_time: "DailyTime",
919
+ # automatic_backup_retention_days: 1,
920
+ # copy_tags_to_backups: false,
893
921
  # },
894
922
  # })
895
923
  #
@@ -933,12 +961,18 @@ module Aws::FSx
933
961
  # resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
934
962
  # resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
935
963
  # resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
964
+ # resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
936
965
  # resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
937
966
  # resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
938
967
  # resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
968
+ # resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
969
+ # resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
939
970
  # resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
940
971
  # resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
941
972
  # resp.file_system.lustre_configuration.mount_name #=> String
973
+ # resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
974
+ # resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
975
+ # resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
942
976
  # resp.file_system.administrative_actions #=> Array
943
977
  # resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
944
978
  # resp.file_system.administrative_actions[0].progress_percent #=> Integer
@@ -956,8 +990,8 @@ module Aws::FSx
956
990
  req.send_request(options)
957
991
  end
958
992
 
959
- # Creates a new Amazon FSx file system from an existing Amazon FSx for
960
- # Windows File Server backup.
993
+ # Creates a new Amazon FSx file system from an existing Amazon FSx
994
+ # backup.
961
995
  #
962
996
  # If a file system with the specified client request token exists and
963
997
  # the parameters match, this operation returns the description of the
@@ -998,10 +1032,10 @@ module Aws::FSx
998
1032
  # a file system from an existing backup.
999
1033
  #
1000
1034
  # @option params [String] :client_request_token
1001
- # (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
1002
- # to ensure idempotent creation. This string is automatically filled on
1003
- # your behalf when you use the AWS Command Line Interface (AWS CLI) or
1004
- # an AWS SDK.
1035
+ # A string of up to 64 ASCII characters that Amazon FSx uses to ensure
1036
+ # idempotent creation. This string is automatically filled on your
1037
+ # behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
1038
+ # SDK.
1005
1039
  #
1006
1040
  # **A suitable default value is auto-generated.** You should normally
1007
1041
  # not need to pass this option.**
@@ -1032,6 +1066,9 @@ module Aws::FSx
1032
1066
  # @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
1033
1067
  # The configuration for this Microsoft Windows file system.
1034
1068
  #
1069
+ # @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
1070
+ # The Lustre configuration for the file system being created.
1071
+ #
1035
1072
  # @option params [String] :storage_type
1036
1073
  # Sets the storage type for the Windows file system you're creating
1037
1074
  # from a backup. Valid values are `SSD` and `HDD`.
@@ -1122,8 +1159,8 @@ module Aws::FSx
1122
1159
  # security_group_ids: ["SecurityGroupId"],
1123
1160
  # tags: [
1124
1161
  # {
1125
- # key: "TagKey",
1126
- # value: "TagValue",
1162
+ # key: "TagKey", # required
1163
+ # value: "TagValue", # required
1127
1164
  # },
1128
1165
  # ],
1129
1166
  # windows_configuration: {
@@ -1144,6 +1181,18 @@ module Aws::FSx
1144
1181
  # automatic_backup_retention_days: 1,
1145
1182
  # copy_tags_to_backups: false,
1146
1183
  # },
1184
+ # lustre_configuration: {
1185
+ # weekly_maintenance_start_time: "WeeklyTime",
1186
+ # import_path: "ArchivePath",
1187
+ # export_path: "ArchivePath",
1188
+ # imported_file_chunk_size: 1,
1189
+ # deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
1190
+ # auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
1191
+ # per_unit_storage_throughput: 1,
1192
+ # daily_automatic_backup_start_time: "DailyTime",
1193
+ # automatic_backup_retention_days: 1,
1194
+ # copy_tags_to_backups: false,
1195
+ # },
1147
1196
  # storage_type: "SSD", # accepts SSD, HDD
1148
1197
  # })
1149
1198
  #
@@ -1187,12 +1236,18 @@ module Aws::FSx
1187
1236
  # resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
1188
1237
  # resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
1189
1238
  # resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
1239
+ # resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
1190
1240
  # resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
1191
1241
  # resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
1192
1242
  # resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
1243
+ # resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
1244
+ # resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
1193
1245
  # resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
1194
1246
  # resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
1195
1247
  # resp.file_system.lustre_configuration.mount_name #=> String
1248
+ # resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
1249
+ # resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
1250
+ # resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
1196
1251
  # resp.file_system.administrative_actions #=> Array
1197
1252
  # resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
1198
1253
  # resp.file_system.administrative_actions[0].progress_percent #=> Integer
@@ -1210,9 +1265,8 @@ module Aws::FSx
1210
1265
  req.send_request(options)
1211
1266
  end
1212
1267
 
1213
- # Deletes an Amazon FSx for Windows File Server backup, deleting its
1214
- # contents. After deletion, the backup no longer exists, and its data is
1215
- # gone.
1268
+ # Deletes an Amazon FSx backup, deleting its contents. After deletion,
1269
+ # the backup no longer exists, and its data is gone.
1216
1270
  #
1217
1271
  # The `DeleteBackup` call returns instantly. The backup will not show up
1218
1272
  # in later `DescribeBackups` calls.
@@ -1224,9 +1278,9 @@ module Aws::FSx
1224
1278
  # The ID of the backup you want to delete.
1225
1279
  #
1226
1280
  # @option params [String] :client_request_token
1227
- # (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
1228
- # to ensure idempotent deletion. This is automatically filled on your
1229
- # behalf when using the AWS CLI or SDK.
1281
+ # A string of up to 64 ASCII characters that Amazon FSx uses to ensure
1282
+ # idempotent deletion. This is automatically filled on your behalf when
1283
+ # using the AWS CLI or SDK.
1230
1284
  #
1231
1285
  # **A suitable default value is auto-generated.** You should normally
1232
1286
  # not need to pass this option.**
@@ -1301,9 +1355,9 @@ module Aws::FSx
1301
1355
  # The ID of the file system you want to delete.
1302
1356
  #
1303
1357
  # @option params [String] :client_request_token
1304
- # (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
1305
- # to ensure idempotent deletion. This is automatically filled on your
1306
- # behalf when using the AWS CLI or SDK.
1358
+ # A string of up to 64 ASCII characters that Amazon FSx uses to ensure
1359
+ # idempotent deletion. This is automatically filled on your behalf when
1360
+ # using the AWS CLI or SDK.
1307
1361
  #
1308
1362
  # **A suitable default value is auto-generated.** You should normally
1309
1363
  # not need to pass this option.**
@@ -1312,11 +1366,16 @@ module Aws::FSx
1312
1366
  # The configuration object for the Microsoft Windows file system used in
1313
1367
  # the `DeleteFileSystem` operation.
1314
1368
  #
1369
+ # @option params [Types::DeleteFileSystemLustreConfiguration] :lustre_configuration
1370
+ # The configuration object for the Amazon FSx for Lustre file system
1371
+ # being deleted in the `DeleteFileSystem` operation.
1372
+ #
1315
1373
  # @return [Types::DeleteFileSystemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1316
1374
  #
1317
1375
  # * {Types::DeleteFileSystemResponse#file_system_id #file_system_id} => String
1318
1376
  # * {Types::DeleteFileSystemResponse#lifecycle #lifecycle} => String
1319
1377
  # * {Types::DeleteFileSystemResponse#windows_response #windows_response} => Types::DeleteFileSystemWindowsResponse
1378
+ # * {Types::DeleteFileSystemResponse#lustre_response #lustre_response} => Types::DeleteFileSystemLustreResponse
1320
1379
  #
1321
1380
  #
1322
1381
  # @example Example: To delete a file system
@@ -1342,8 +1401,17 @@ module Aws::FSx
1342
1401
  # skip_final_backup: false,
1343
1402
  # final_backup_tags: [
1344
1403
  # {
1345
- # key: "TagKey",
1346
- # value: "TagValue",
1404
+ # key: "TagKey", # required
1405
+ # value: "TagValue", # required
1406
+ # },
1407
+ # ],
1408
+ # },
1409
+ # lustre_configuration: {
1410
+ # skip_final_backup: false,
1411
+ # final_backup_tags: [
1412
+ # {
1413
+ # key: "TagKey", # required
1414
+ # value: "TagValue", # required
1347
1415
  # },
1348
1416
  # ],
1349
1417
  # },
@@ -1357,6 +1425,10 @@ module Aws::FSx
1357
1425
  # resp.windows_response.final_backup_tags #=> Array
1358
1426
  # resp.windows_response.final_backup_tags[0].key #=> String
1359
1427
  # resp.windows_response.final_backup_tags[0].value #=> String
1428
+ # resp.lustre_response.final_backup_id #=> String
1429
+ # resp.lustre_response.final_backup_tags #=> Array
1430
+ # resp.lustre_response.final_backup_tags[0].key #=> String
1431
+ # resp.lustre_response.final_backup_tags[0].value #=> String
1360
1432
  #
1361
1433
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystem AWS API Documentation
1362
1434
  #
@@ -1367,10 +1439,10 @@ module Aws::FSx
1367
1439
  req.send_request(options)
1368
1440
  end
1369
1441
 
1370
- # Returns the description of specific Amazon FSx for Windows File Server
1371
- # backups, if a `BackupIds` value is provided for that backup.
1372
- # Otherwise, it returns all backups owned by your AWS account in the AWS
1373
- # Region of the endpoint that you're calling.
1442
+ # Returns the description of specific Amazon FSx backups, if a
1443
+ # `BackupIds` value is provided for that backup. Otherwise, it returns
1444
+ # all backups owned by your AWS account in the AWS Region of the
1445
+ # endpoint that you're calling.
1374
1446
  #
1375
1447
  # When retrieving all backups, you can optionally specify the
1376
1448
  # `MaxResults` parameter to limit the number of backups in a response.
@@ -1395,25 +1467,23 @@ module Aws::FSx
1395
1467
  # responses of a multi-call iteration is unspecified.
1396
1468
  #
1397
1469
  # @option params [Array<String>] :backup_ids
1398
- # (Optional) IDs of the backups you want to retrieve (String). This
1399
- # overrides any filters. If any IDs are not found, BackupNotFound will
1400
- # be thrown.
1470
+ # IDs of the backups you want to retrieve (String). This overrides any
1471
+ # filters. If any IDs are not found, BackupNotFound will be thrown.
1401
1472
  #
1402
1473
  # @option params [Array<Types::Filter>] :filters
1403
- # (Optional) Filters structure. Supported names are file-system-id and
1404
- # backup-type.
1474
+ # Filters structure. Supported names are file-system-id and backup-type.
1405
1475
  #
1406
1476
  # @option params [Integer] :max_results
1407
- # (Optional) Maximum number of backups to return in the response
1408
- # (integer). This parameter value must be greater than 0. The number of
1409
- # items that Amazon FSx returns is the minimum of the `MaxResults`
1410
- # parameter specified in the request and the service's internal maximum
1411
- # number of items per page.
1477
+ # Maximum number of backups to return in the response (integer). This
1478
+ # parameter value must be greater than 0. The number of items that
1479
+ # Amazon FSx returns is the minimum of the `MaxResults` parameter
1480
+ # specified in the request and the service's internal maximum number of
1481
+ # items per page.
1412
1482
  #
1413
1483
  # @option params [String] :next_token
1414
- # (Optional) Opaque pagination token returned from a previous
1415
- # `DescribeBackups` operation (String). If a token present, the action
1416
- # continues the list from where the returning call left off.
1484
+ # Opaque pagination token returned from a previous `DescribeBackups`
1485
+ # operation (String). If a token present, the action continues the list
1486
+ # from where the returning call left off.
1417
1487
  #
1418
1488
  # @return [Types::DescribeBackupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1419
1489
  #
@@ -1466,7 +1536,7 @@ module Aws::FSx
1466
1536
  # backup_ids: ["BackupId"],
1467
1537
  # filters: [
1468
1538
  # {
1469
- # name: "file-system-id", # accepts file-system-id, backup-type
1539
+ # name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
1470
1540
  # values: ["FilterValue"],
1471
1541
  # },
1472
1542
  # ],
@@ -1526,12 +1596,18 @@ module Aws::FSx
1526
1596
  # resp.backups[0].file_system.windows_configuration.automatic_backup_retention_days #=> Integer
1527
1597
  # resp.backups[0].file_system.windows_configuration.copy_tags_to_backups #=> Boolean
1528
1598
  # resp.backups[0].file_system.lustre_configuration.weekly_maintenance_start_time #=> String
1599
+ # resp.backups[0].file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
1529
1600
  # resp.backups[0].file_system.lustre_configuration.data_repository_configuration.import_path #=> String
1530
1601
  # resp.backups[0].file_system.lustre_configuration.data_repository_configuration.export_path #=> String
1531
1602
  # resp.backups[0].file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
1603
+ # resp.backups[0].file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
1604
+ # resp.backups[0].file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
1532
1605
  # resp.backups[0].file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
1533
1606
  # resp.backups[0].file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
1534
1607
  # resp.backups[0].file_system.lustre_configuration.mount_name #=> String
1608
+ # resp.backups[0].file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
1609
+ # resp.backups[0].file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
1610
+ # resp.backups[0].file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
1535
1611
  # resp.backups[0].file_system.administrative_actions #=> Array
1536
1612
  # resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
1537
1613
  # resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
@@ -1671,20 +1747,20 @@ module Aws::FSx
1671
1747
  # across the responses of a multicall iteration is unspecified.
1672
1748
  #
1673
1749
  # @option params [Array<String>] :file_system_ids
1674
- # (Optional) IDs of the file systems whose descriptions you want to
1675
- # retrieve (String).
1750
+ # IDs of the file systems whose descriptions you want to retrieve
1751
+ # (String).
1676
1752
  #
1677
1753
  # @option params [Integer] :max_results
1678
- # (Optional) Maximum number of file systems to return in the response
1679
- # (integer). This parameter value must be greater than 0. The number of
1680
- # items that Amazon FSx returns is the minimum of the `MaxResults`
1681
- # parameter specified in the request and the service's internal maximum
1682
- # number of items per page.
1754
+ # Maximum number of file systems to return in the response (integer).
1755
+ # This parameter value must be greater than 0. The number of items that
1756
+ # Amazon FSx returns is the minimum of the `MaxResults` parameter
1757
+ # specified in the request and the service's internal maximum number of
1758
+ # items per page.
1683
1759
  #
1684
1760
  # @option params [String] :next_token
1685
- # (Optional) Opaque pagination token returned from a previous
1686
- # `DescribeFileSystems` operation (String). If a token present, the
1687
- # action continues the list from where the returning call left off.
1761
+ # Opaque pagination token returned from a previous `DescribeFileSystems`
1762
+ # operation (String). If a token present, the action continues the list
1763
+ # from where the returning call left off.
1688
1764
  #
1689
1765
  # @return [Types::DescribeFileSystemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1690
1766
  #
@@ -1786,12 +1862,18 @@ module Aws::FSx
1786
1862
  # resp.file_systems[0].windows_configuration.automatic_backup_retention_days #=> Integer
1787
1863
  # resp.file_systems[0].windows_configuration.copy_tags_to_backups #=> Boolean
1788
1864
  # resp.file_systems[0].lustre_configuration.weekly_maintenance_start_time #=> String
1865
+ # resp.file_systems[0].lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
1789
1866
  # resp.file_systems[0].lustre_configuration.data_repository_configuration.import_path #=> String
1790
1867
  # resp.file_systems[0].lustre_configuration.data_repository_configuration.export_path #=> String
1791
1868
  # resp.file_systems[0].lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
1869
+ # resp.file_systems[0].lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
1870
+ # resp.file_systems[0].lustre_configuration.data_repository_configuration.failure_details.message #=> String
1792
1871
  # resp.file_systems[0].lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
1793
1872
  # resp.file_systems[0].lustre_configuration.per_unit_storage_throughput #=> Integer
1794
1873
  # resp.file_systems[0].lustre_configuration.mount_name #=> String
1874
+ # resp.file_systems[0].lustre_configuration.daily_automatic_backup_start_time #=> String
1875
+ # resp.file_systems[0].lustre_configuration.automatic_backup_retention_days #=> Integer
1876
+ # resp.file_systems[0].lustre_configuration.copy_tags_to_backups #=> Boolean
1795
1877
  # resp.file_systems[0].administrative_actions #=> Array
1796
1878
  # resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
1797
1879
  # resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
@@ -1838,16 +1920,16 @@ module Aws::FSx
1838
1920
  # The ARN of the Amazon FSx resource that will have its tags listed.
1839
1921
  #
1840
1922
  # @option params [Integer] :max_results
1841
- # (Optional) Maximum number of tags to return in the response (integer).
1842
- # This parameter value must be greater than 0. The number of items that
1923
+ # Maximum number of tags to return in the response (integer). This
1924
+ # parameter value must be greater than 0. The number of items that
1843
1925
  # Amazon FSx returns is the minimum of the `MaxResults` parameter
1844
1926
  # specified in the request and the service's internal maximum number of
1845
1927
  # items per page.
1846
1928
  #
1847
1929
  # @option params [String] :next_token
1848
- # (Optional) Opaque pagination token returned from a previous
1849
- # `ListTagsForResource` operation (String). If a token present, the
1850
- # action continues the list from where the returning call left off.
1930
+ # Opaque pagination token returned from a previous `ListTagsForResource`
1931
+ # operation (String). If a token present, the action continues the list
1932
+ # from where the returning call left off.
1851
1933
  #
1852
1934
  # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1853
1935
  #
@@ -1930,8 +2012,8 @@ module Aws::FSx
1930
2012
  # resource_arn: "ResourceARN", # required
1931
2013
  # tags: [ # required
1932
2014
  # {
1933
- # key: "TagKey",
1934
- # value: "TagValue",
2015
+ # key: "TagKey", # required
2016
+ # value: "TagValue", # required
1935
2017
  # },
1936
2018
  # ],
1937
2019
  # })
@@ -1985,9 +2067,11 @@ module Aws::FSx
1985
2067
  end
1986
2068
 
1987
2069
  # Use this operation to update the configuration of an existing Amazon
1988
- # FSx file system. For an Amazon FSx for Lustre file system, you can
1989
- # update only the WeeklyMaintenanceStartTime. For an Amazon for Windows
1990
- # File Server file system, you can update the following properties:
2070
+ # FSx file system. You can update multiple properties in a single
2071
+ # request.
2072
+ #
2073
+ # For Amazon FSx for Windows File Server file systems, you can update
2074
+ # the following properties:
1991
2075
  #
1992
2076
  # * AutomaticBackupRetentionDays
1993
2077
  #
@@ -2001,7 +2085,16 @@ module Aws::FSx
2001
2085
  #
2002
2086
  # * WeeklyMaintenanceStartTime
2003
2087
  #
2004
- # You can update multiple properties in a single request.
2088
+ # For Amazon FSx for Lustre file systems, you can update the following
2089
+ # properties:
2090
+ #
2091
+ # * AutoImportPolicy
2092
+ #
2093
+ # * AutomaticBackupRetentionDays
2094
+ #
2095
+ # * DailyAutomaticBackupStartTime
2096
+ #
2097
+ # * WeeklyMaintenanceStartTime
2005
2098
  #
2006
2099
  # @option params [required, String] :file_system_id
2007
2100
  # Identifies the file system that you are updating.
@@ -2104,6 +2197,9 @@ module Aws::FSx
2104
2197
  # },
2105
2198
  # lustre_configuration: {
2106
2199
  # weekly_maintenance_start_time: "WeeklyTime",
2200
+ # daily_automatic_backup_start_time: "DailyTime",
2201
+ # automatic_backup_retention_days: 1,
2202
+ # auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
2107
2203
  # },
2108
2204
  # })
2109
2205
  #
@@ -2147,12 +2243,18 @@ module Aws::FSx
2147
2243
  # resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
2148
2244
  # resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
2149
2245
  # resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
2246
+ # resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
2150
2247
  # resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
2151
2248
  # resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
2152
2249
  # resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
2250
+ # resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
2251
+ # resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
2153
2252
  # resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
2154
2253
  # resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
2155
2254
  # resp.file_system.lustre_configuration.mount_name #=> String
2255
+ # resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
2256
+ # resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
2257
+ # resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
2156
2258
  # resp.file_system.administrative_actions #=> Array
2157
2259
  # resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
2158
2260
  # resp.file_system.administrative_actions[0].progress_percent #=> Integer
@@ -2183,7 +2285,7 @@ module Aws::FSx
2183
2285
  params: params,
2184
2286
  config: config)
2185
2287
  context[:gem_name] = 'aws-sdk-fsx'
2186
- context[:gem_version] = '1.21.1'
2288
+ context[:gem_version] = '1.26.0'
2187
2289
  Seahorse::Client::Request.new(handlers, context)
2188
2290
  end
2189
2291