aws-sdk-fsx 1.22.0 → 1.23.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 +1 -1
- data/lib/aws-sdk-fsx/client.rb +133 -69
- data/lib/aws-sdk-fsx/client_api.rb +22 -0
- data/lib/aws-sdk-fsx/types.rb +251 -57
- 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: 35a08d5df02a7748e692caf8abc5bff80ff73602f5563c3c8d65177859ddf985
|
4
|
+
data.tar.gz: 5026ead238928b681f67672bba66e0de638832dc64a7b40578e8892e6a1aac29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51a586a044a2b1f44eff751a7ddb69130c201e644904d6f8748133bf3aff069c80904cb0e163d345597bed76a37e2c3d61ad7f751decafb2b88c1830967afc25
|
7
|
+
data.tar.gz: c5a11096e94d33f2980ea50d2c74e870b09e16eb2d8b5ea33d4f07dbb84f757d2353c6dd8be71badc5dfa4f19f7df5b1b6eab2d900d97c62d28d9c1ebe959e73
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -361,11 +361,20 @@ module Aws::FSx
|
|
361
361
|
req.send_request(options)
|
362
362
|
end
|
363
363
|
|
364
|
-
# Creates a backup of an existing Amazon FSx
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
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 an Amazon S3 data respository.
|
375
|
+
#
|
376
|
+
# For more information, see
|
377
|
+
# [https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-backups.html][1].
|
369
378
|
#
|
370
379
|
# If a backup with the specified client request token exists, and the
|
371
380
|
# parameters match, this operation returns the description of the
|
@@ -386,30 +395,33 @@ module Aws::FSx
|
|
386
395
|
# request token and the initial call created a backup, the operation
|
387
396
|
# returns a successful result because all the parameters are the same.
|
388
397
|
#
|
389
|
-
# The `
|
390
|
-
# state is still `CREATING`. You can check the
|
391
|
-
#
|
392
|
-
#
|
398
|
+
# The `CreateBackup` operation returns while the backup's lifecycle
|
399
|
+
# state is still `CREATING`. You can check the backup creation status by
|
400
|
+
# calling the DescribeBackups operation, which returns the backup state
|
401
|
+
# along with other information.
|
393
402
|
#
|
394
|
-
# <note markdown="1">
|
395
403
|
#
|
396
|
-
#
|
404
|
+
#
|
405
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-backups.html
|
397
406
|
#
|
398
407
|
# @option params [required, String] :file_system_id
|
399
408
|
# The ID of the file system to back up.
|
400
409
|
#
|
401
410
|
# @option params [String] :client_request_token
|
402
|
-
#
|
403
|
-
#
|
404
|
-
#
|
405
|
-
#
|
411
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
412
|
+
# idempotent creation. This string is automatically filled on your
|
413
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
414
|
+
# SDK.
|
406
415
|
#
|
407
416
|
# **A suitable default value is auto-generated.** You should normally
|
408
417
|
# not need to pass this option.**
|
409
418
|
#
|
410
419
|
# @option params [Array<Types::Tag>] :tags
|
411
420
|
# The tags to apply to the backup at backup creation. The key value of
|
412
|
-
# the `Name` tag appears in the console as the backup name.
|
421
|
+
# the `Name` tag appears in the console as the backup name. If you have
|
422
|
+
# set `CopyTagsToBackups` to true, and you specify one or more tags
|
423
|
+
# using the `CreateBackup` action, no existing tags on the file system
|
424
|
+
# are copied from the file system to the backup.
|
413
425
|
#
|
414
426
|
# @return [Types::CreateBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
415
427
|
#
|
@@ -529,6 +541,9 @@ module Aws::FSx
|
|
529
541
|
# resp.backup.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
530
542
|
# resp.backup.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
531
543
|
# resp.backup.file_system.lustre_configuration.mount_name #=> String
|
544
|
+
# resp.backup.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
545
|
+
# resp.backup.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
546
|
+
# resp.backup.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
532
547
|
# resp.backup.file_system.administrative_actions #=> Array
|
533
548
|
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
534
549
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -697,10 +712,10 @@ module Aws::FSx
|
|
697
712
|
# </note>
|
698
713
|
#
|
699
714
|
# @option params [String] :client_request_token
|
700
|
-
#
|
701
|
-
#
|
702
|
-
#
|
703
|
-
#
|
715
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
716
|
+
# idempotent creation. This string is automatically filled on your
|
717
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
718
|
+
# SDK.
|
704
719
|
#
|
705
720
|
# **A suitable default value is auto-generated.** You should normally
|
706
721
|
# not need to pass this option.**
|
@@ -892,6 +907,9 @@ module Aws::FSx
|
|
892
907
|
# imported_file_chunk_size: 1,
|
893
908
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
894
909
|
# per_unit_storage_throughput: 1,
|
910
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
911
|
+
# automatic_backup_retention_days: 1,
|
912
|
+
# copy_tags_to_backups: false,
|
895
913
|
# },
|
896
914
|
# })
|
897
915
|
#
|
@@ -941,6 +959,9 @@ module Aws::FSx
|
|
941
959
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
942
960
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
943
961
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
962
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
963
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
964
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
944
965
|
# resp.file_system.administrative_actions #=> Array
|
945
966
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
946
967
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -958,8 +979,8 @@ module Aws::FSx
|
|
958
979
|
req.send_request(options)
|
959
980
|
end
|
960
981
|
|
961
|
-
# Creates a new Amazon FSx file system from an existing Amazon FSx
|
962
|
-
#
|
982
|
+
# Creates a new Amazon FSx file system from an existing Amazon FSx
|
983
|
+
# backup.
|
963
984
|
#
|
964
985
|
# If a file system with the specified client request token exists and
|
965
986
|
# the parameters match, this operation returns the description of the
|
@@ -1000,10 +1021,10 @@ module Aws::FSx
|
|
1000
1021
|
# a file system from an existing backup.
|
1001
1022
|
#
|
1002
1023
|
# @option params [String] :client_request_token
|
1003
|
-
#
|
1004
|
-
#
|
1005
|
-
#
|
1006
|
-
#
|
1024
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1025
|
+
# idempotent creation. This string is automatically filled on your
|
1026
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
1027
|
+
# SDK.
|
1007
1028
|
#
|
1008
1029
|
# **A suitable default value is auto-generated.** You should normally
|
1009
1030
|
# not need to pass this option.**
|
@@ -1034,6 +1055,9 @@ module Aws::FSx
|
|
1034
1055
|
# @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
|
1035
1056
|
# The configuration for this Microsoft Windows file system.
|
1036
1057
|
#
|
1058
|
+
# @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
|
1059
|
+
# The Lustre configuration for the file system being created.
|
1060
|
+
#
|
1037
1061
|
# @option params [String] :storage_type
|
1038
1062
|
# Sets the storage type for the Windows file system you're creating
|
1039
1063
|
# from a backup. Valid values are `SSD` and `HDD`.
|
@@ -1146,6 +1170,17 @@ module Aws::FSx
|
|
1146
1170
|
# automatic_backup_retention_days: 1,
|
1147
1171
|
# copy_tags_to_backups: false,
|
1148
1172
|
# },
|
1173
|
+
# lustre_configuration: {
|
1174
|
+
# weekly_maintenance_start_time: "WeeklyTime",
|
1175
|
+
# import_path: "ArchivePath",
|
1176
|
+
# export_path: "ArchivePath",
|
1177
|
+
# imported_file_chunk_size: 1,
|
1178
|
+
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
1179
|
+
# per_unit_storage_throughput: 1,
|
1180
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
1181
|
+
# automatic_backup_retention_days: 1,
|
1182
|
+
# copy_tags_to_backups: false,
|
1183
|
+
# },
|
1149
1184
|
# storage_type: "SSD", # accepts SSD, HDD
|
1150
1185
|
# })
|
1151
1186
|
#
|
@@ -1195,6 +1230,9 @@ module Aws::FSx
|
|
1195
1230
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1196
1231
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1197
1232
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
1233
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
1234
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
1235
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1198
1236
|
# resp.file_system.administrative_actions #=> Array
|
1199
1237
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1200
1238
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1212,9 +1250,8 @@ module Aws::FSx
|
|
1212
1250
|
req.send_request(options)
|
1213
1251
|
end
|
1214
1252
|
|
1215
|
-
# Deletes an Amazon FSx
|
1216
|
-
#
|
1217
|
-
# gone.
|
1253
|
+
# Deletes an Amazon FSx backup, deleting its contents. After deletion,
|
1254
|
+
# the backup no longer exists, and its data is gone.
|
1218
1255
|
#
|
1219
1256
|
# The `DeleteBackup` call returns instantly. The backup will not show up
|
1220
1257
|
# in later `DescribeBackups` calls.
|
@@ -1226,9 +1263,9 @@ module Aws::FSx
|
|
1226
1263
|
# The ID of the backup you want to delete.
|
1227
1264
|
#
|
1228
1265
|
# @option params [String] :client_request_token
|
1229
|
-
#
|
1230
|
-
#
|
1231
|
-
#
|
1266
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1267
|
+
# idempotent deletion. This is automatically filled on your behalf when
|
1268
|
+
# using the AWS CLI or SDK.
|
1232
1269
|
#
|
1233
1270
|
# **A suitable default value is auto-generated.** You should normally
|
1234
1271
|
# not need to pass this option.**
|
@@ -1303,9 +1340,9 @@ module Aws::FSx
|
|
1303
1340
|
# The ID of the file system you want to delete.
|
1304
1341
|
#
|
1305
1342
|
# @option params [String] :client_request_token
|
1306
|
-
#
|
1307
|
-
#
|
1308
|
-
#
|
1343
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1344
|
+
# idempotent deletion. This is automatically filled on your behalf when
|
1345
|
+
# using the AWS CLI or SDK.
|
1309
1346
|
#
|
1310
1347
|
# **A suitable default value is auto-generated.** You should normally
|
1311
1348
|
# not need to pass this option.**
|
@@ -1314,11 +1351,16 @@ module Aws::FSx
|
|
1314
1351
|
# The configuration object for the Microsoft Windows file system used in
|
1315
1352
|
# the `DeleteFileSystem` operation.
|
1316
1353
|
#
|
1354
|
+
# @option params [Types::DeleteFileSystemLustreConfiguration] :lustre_configuration
|
1355
|
+
# The configuration object for the Amazon FSx for Lustre file system
|
1356
|
+
# being deleted in the `DeleteFileSystem` operation.
|
1357
|
+
#
|
1317
1358
|
# @return [Types::DeleteFileSystemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1318
1359
|
#
|
1319
1360
|
# * {Types::DeleteFileSystemResponse#file_system_id #file_system_id} => String
|
1320
1361
|
# * {Types::DeleteFileSystemResponse#lifecycle #lifecycle} => String
|
1321
1362
|
# * {Types::DeleteFileSystemResponse#windows_response #windows_response} => Types::DeleteFileSystemWindowsResponse
|
1363
|
+
# * {Types::DeleteFileSystemResponse#lustre_response #lustre_response} => Types::DeleteFileSystemLustreResponse
|
1322
1364
|
#
|
1323
1365
|
#
|
1324
1366
|
# @example Example: To delete a file system
|
@@ -1349,6 +1391,15 @@ module Aws::FSx
|
|
1349
1391
|
# },
|
1350
1392
|
# ],
|
1351
1393
|
# },
|
1394
|
+
# lustre_configuration: {
|
1395
|
+
# skip_final_backup: false,
|
1396
|
+
# final_backup_tags: [
|
1397
|
+
# {
|
1398
|
+
# key: "TagKey",
|
1399
|
+
# value: "TagValue",
|
1400
|
+
# },
|
1401
|
+
# ],
|
1402
|
+
# },
|
1352
1403
|
# })
|
1353
1404
|
#
|
1354
1405
|
# @example Response structure
|
@@ -1359,6 +1410,10 @@ module Aws::FSx
|
|
1359
1410
|
# resp.windows_response.final_backup_tags #=> Array
|
1360
1411
|
# resp.windows_response.final_backup_tags[0].key #=> String
|
1361
1412
|
# resp.windows_response.final_backup_tags[0].value #=> String
|
1413
|
+
# resp.lustre_response.final_backup_id #=> String
|
1414
|
+
# resp.lustre_response.final_backup_tags #=> Array
|
1415
|
+
# resp.lustre_response.final_backup_tags[0].key #=> String
|
1416
|
+
# resp.lustre_response.final_backup_tags[0].value #=> String
|
1362
1417
|
#
|
1363
1418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystem AWS API Documentation
|
1364
1419
|
#
|
@@ -1369,10 +1424,10 @@ module Aws::FSx
|
|
1369
1424
|
req.send_request(options)
|
1370
1425
|
end
|
1371
1426
|
|
1372
|
-
# Returns the description of specific Amazon FSx
|
1373
|
-
#
|
1374
|
-
#
|
1375
|
-
#
|
1427
|
+
# Returns the description of specific Amazon FSx backups, if a
|
1428
|
+
# `BackupIds` value is provided for that backup. Otherwise, it returns
|
1429
|
+
# all backups owned by your AWS account in the AWS Region of the
|
1430
|
+
# endpoint that you're calling.
|
1376
1431
|
#
|
1377
1432
|
# When retrieving all backups, you can optionally specify the
|
1378
1433
|
# `MaxResults` parameter to limit the number of backups in a response.
|
@@ -1397,25 +1452,23 @@ module Aws::FSx
|
|
1397
1452
|
# responses of a multi-call iteration is unspecified.
|
1398
1453
|
#
|
1399
1454
|
# @option params [Array<String>] :backup_ids
|
1400
|
-
#
|
1401
|
-
#
|
1402
|
-
# be thrown.
|
1455
|
+
# IDs of the backups you want to retrieve (String). This overrides any
|
1456
|
+
# filters. If any IDs are not found, BackupNotFound will be thrown.
|
1403
1457
|
#
|
1404
1458
|
# @option params [Array<Types::Filter>] :filters
|
1405
|
-
#
|
1406
|
-
# backup-type.
|
1459
|
+
# Filters structure. Supported names are file-system-id and backup-type.
|
1407
1460
|
#
|
1408
1461
|
# @option params [Integer] :max_results
|
1409
|
-
#
|
1410
|
-
#
|
1411
|
-
#
|
1412
|
-
#
|
1413
|
-
#
|
1462
|
+
# Maximum number of backups to return in the response (integer). This
|
1463
|
+
# parameter value must be greater than 0. The number of items that
|
1464
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1465
|
+
# specified in the request and the service's internal maximum number of
|
1466
|
+
# items per page.
|
1414
1467
|
#
|
1415
1468
|
# @option params [String] :next_token
|
1416
|
-
#
|
1417
|
-
#
|
1418
|
-
#
|
1469
|
+
# Opaque pagination token returned from a previous `DescribeBackups`
|
1470
|
+
# operation (String). If a token present, the action continues the list
|
1471
|
+
# from where the returning call left off.
|
1419
1472
|
#
|
1420
1473
|
# @return [Types::DescribeBackupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1421
1474
|
#
|
@@ -1468,7 +1521,7 @@ module Aws::FSx
|
|
1468
1521
|
# backup_ids: ["BackupId"],
|
1469
1522
|
# filters: [
|
1470
1523
|
# {
|
1471
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
1524
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
1472
1525
|
# values: ["FilterValue"],
|
1473
1526
|
# },
|
1474
1527
|
# ],
|
@@ -1534,6 +1587,9 @@ module Aws::FSx
|
|
1534
1587
|
# resp.backups[0].file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1535
1588
|
# resp.backups[0].file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1536
1589
|
# resp.backups[0].file_system.lustre_configuration.mount_name #=> String
|
1590
|
+
# resp.backups[0].file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
1591
|
+
# resp.backups[0].file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
1592
|
+
# resp.backups[0].file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1537
1593
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
1538
1594
|
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1539
1595
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1673,20 +1729,20 @@ module Aws::FSx
|
|
1673
1729
|
# across the responses of a multicall iteration is unspecified.
|
1674
1730
|
#
|
1675
1731
|
# @option params [Array<String>] :file_system_ids
|
1676
|
-
#
|
1677
|
-
#
|
1732
|
+
# IDs of the file systems whose descriptions you want to retrieve
|
1733
|
+
# (String).
|
1678
1734
|
#
|
1679
1735
|
# @option params [Integer] :max_results
|
1680
|
-
#
|
1681
|
-
#
|
1682
|
-
#
|
1683
|
-
#
|
1684
|
-
#
|
1736
|
+
# Maximum number of file systems to return in the response (integer).
|
1737
|
+
# This parameter value must be greater than 0. The number of items that
|
1738
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1739
|
+
# specified in the request and the service's internal maximum number of
|
1740
|
+
# items per page.
|
1685
1741
|
#
|
1686
1742
|
# @option params [String] :next_token
|
1687
|
-
#
|
1688
|
-
#
|
1689
|
-
#
|
1743
|
+
# Opaque pagination token returned from a previous `DescribeFileSystems`
|
1744
|
+
# operation (String). If a token present, the action continues the list
|
1745
|
+
# from where the returning call left off.
|
1690
1746
|
#
|
1691
1747
|
# @return [Types::DescribeFileSystemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1692
1748
|
#
|
@@ -1794,6 +1850,9 @@ module Aws::FSx
|
|
1794
1850
|
# resp.file_systems[0].lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1795
1851
|
# resp.file_systems[0].lustre_configuration.per_unit_storage_throughput #=> Integer
|
1796
1852
|
# resp.file_systems[0].lustre_configuration.mount_name #=> String
|
1853
|
+
# resp.file_systems[0].lustre_configuration.daily_automatic_backup_start_time #=> String
|
1854
|
+
# resp.file_systems[0].lustre_configuration.automatic_backup_retention_days #=> Integer
|
1855
|
+
# resp.file_systems[0].lustre_configuration.copy_tags_to_backups #=> Boolean
|
1797
1856
|
# resp.file_systems[0].administrative_actions #=> Array
|
1798
1857
|
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1799
1858
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
@@ -1840,16 +1899,16 @@ module Aws::FSx
|
|
1840
1899
|
# The ARN of the Amazon FSx resource that will have its tags listed.
|
1841
1900
|
#
|
1842
1901
|
# @option params [Integer] :max_results
|
1843
|
-
#
|
1844
|
-
#
|
1902
|
+
# Maximum number of tags to return in the response (integer). This
|
1903
|
+
# parameter value must be greater than 0. The number of items that
|
1845
1904
|
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1846
1905
|
# specified in the request and the service's internal maximum number of
|
1847
1906
|
# items per page.
|
1848
1907
|
#
|
1849
1908
|
# @option params [String] :next_token
|
1850
|
-
#
|
1851
|
-
#
|
1852
|
-
#
|
1909
|
+
# Opaque pagination token returned from a previous `ListTagsForResource`
|
1910
|
+
# operation (String). If a token present, the action continues the list
|
1911
|
+
# from where the returning call left off.
|
1853
1912
|
#
|
1854
1913
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1855
1914
|
#
|
@@ -2106,6 +2165,8 @@ module Aws::FSx
|
|
2106
2165
|
# },
|
2107
2166
|
# lustre_configuration: {
|
2108
2167
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2168
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
2169
|
+
# automatic_backup_retention_days: 1,
|
2109
2170
|
# },
|
2110
2171
|
# })
|
2111
2172
|
#
|
@@ -2155,6 +2216,9 @@ module Aws::FSx
|
|
2155
2216
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
2156
2217
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
2157
2218
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
2219
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
2220
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
2221
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
2158
2222
|
# resp.file_system.administrative_actions #=> Array
|
2159
2223
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
2160
2224
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -2185,7 +2249,7 @@ module Aws::FSx
|
|
2185
2249
|
params: params,
|
2186
2250
|
config: config)
|
2187
2251
|
context[:gem_name] = 'aws-sdk-fsx'
|
2188
|
-
context[:gem_version] = '1.
|
2252
|
+
context[:gem_version] = '1.23.0'
|
2189
2253
|
Seahorse::Client::Request.new(handlers, context)
|
2190
2254
|
end
|
2191
2255
|
|
@@ -71,6 +71,8 @@ module Aws::FSx
|
|
71
71
|
DataRepositoryTasks = Shapes::ListShape.new(name: 'DataRepositoryTasks')
|
72
72
|
DeleteBackupRequest = Shapes::StructureShape.new(name: 'DeleteBackupRequest')
|
73
73
|
DeleteBackupResponse = Shapes::StructureShape.new(name: 'DeleteBackupResponse')
|
74
|
+
DeleteFileSystemLustreConfiguration = Shapes::StructureShape.new(name: 'DeleteFileSystemLustreConfiguration')
|
75
|
+
DeleteFileSystemLustreResponse = Shapes::StructureShape.new(name: 'DeleteFileSystemLustreResponse')
|
74
76
|
DeleteFileSystemRequest = Shapes::StructureShape.new(name: 'DeleteFileSystemRequest')
|
75
77
|
DeleteFileSystemResponse = Shapes::StructureShape.new(name: 'DeleteFileSystemResponse')
|
76
78
|
DeleteFileSystemWindowsConfiguration = Shapes::StructureShape.new(name: 'DeleteFileSystemWindowsConfiguration')
|
@@ -266,6 +268,7 @@ module Aws::FSx
|
|
266
268
|
CreateFileSystemFromBackupRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
267
269
|
CreateFileSystemFromBackupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
268
270
|
CreateFileSystemFromBackupRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
|
271
|
+
CreateFileSystemFromBackupRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
|
269
272
|
CreateFileSystemFromBackupRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
|
270
273
|
CreateFileSystemFromBackupRequest.struct_class = Types::CreateFileSystemFromBackupRequest
|
271
274
|
|
@@ -278,6 +281,9 @@ module Aws::FSx
|
|
278
281
|
CreateFileSystemLustreConfiguration.add_member(:imported_file_chunk_size, Shapes::ShapeRef.new(shape: Megabytes, location_name: "ImportedFileChunkSize"))
|
279
282
|
CreateFileSystemLustreConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: LustreDeploymentType, location_name: "DeploymentType"))
|
280
283
|
CreateFileSystemLustreConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
284
|
+
CreateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
285
|
+
CreateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
286
|
+
CreateFileSystemLustreConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
281
287
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
282
288
|
|
283
289
|
CreateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
@@ -364,14 +370,24 @@ module Aws::FSx
|
|
364
370
|
DeleteBackupResponse.add_member(:lifecycle, Shapes::ShapeRef.new(shape: BackupLifecycle, location_name: "Lifecycle"))
|
365
371
|
DeleteBackupResponse.struct_class = Types::DeleteBackupResponse
|
366
372
|
|
373
|
+
DeleteFileSystemLustreConfiguration.add_member(:skip_final_backup, Shapes::ShapeRef.new(shape: Flag, location_name: "SkipFinalBackup"))
|
374
|
+
DeleteFileSystemLustreConfiguration.add_member(:final_backup_tags, Shapes::ShapeRef.new(shape: Tags, location_name: "FinalBackupTags"))
|
375
|
+
DeleteFileSystemLustreConfiguration.struct_class = Types::DeleteFileSystemLustreConfiguration
|
376
|
+
|
377
|
+
DeleteFileSystemLustreResponse.add_member(:final_backup_id, Shapes::ShapeRef.new(shape: BackupId, location_name: "FinalBackupId"))
|
378
|
+
DeleteFileSystemLustreResponse.add_member(:final_backup_tags, Shapes::ShapeRef.new(shape: Tags, location_name: "FinalBackupTags"))
|
379
|
+
DeleteFileSystemLustreResponse.struct_class = Types::DeleteFileSystemLustreResponse
|
380
|
+
|
367
381
|
DeleteFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
368
382
|
DeleteFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
369
383
|
DeleteFileSystemRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: DeleteFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
|
384
|
+
DeleteFileSystemRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: DeleteFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
|
370
385
|
DeleteFileSystemRequest.struct_class = Types::DeleteFileSystemRequest
|
371
386
|
|
372
387
|
DeleteFileSystemResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "FileSystemId"))
|
373
388
|
DeleteFileSystemResponse.add_member(:lifecycle, Shapes::ShapeRef.new(shape: FileSystemLifecycle, location_name: "Lifecycle"))
|
374
389
|
DeleteFileSystemResponse.add_member(:windows_response, Shapes::ShapeRef.new(shape: DeleteFileSystemWindowsResponse, location_name: "WindowsResponse"))
|
390
|
+
DeleteFileSystemResponse.add_member(:lustre_response, Shapes::ShapeRef.new(shape: DeleteFileSystemLustreResponse, location_name: "LustreResponse"))
|
375
391
|
DeleteFileSystemResponse.struct_class = Types::DeleteFileSystemResponse
|
376
392
|
|
377
393
|
DeleteFileSystemWindowsConfiguration.add_member(:skip_final_backup, Shapes::ShapeRef.new(shape: Flag, location_name: "SkipFinalBackup"))
|
@@ -488,6 +504,9 @@ module Aws::FSx
|
|
488
504
|
LustreFileSystemConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: LustreDeploymentType, location_name: "DeploymentType"))
|
489
505
|
LustreFileSystemConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
490
506
|
LustreFileSystemConfiguration.add_member(:mount_name, Shapes::ShapeRef.new(shape: LustreFileSystemMountName, location_name: "MountName"))
|
507
|
+
LustreFileSystemConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
508
|
+
LustreFileSystemConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
509
|
+
LustreFileSystemConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
491
510
|
LustreFileSystemConfiguration.struct_class = Types::LustreFileSystemConfiguration
|
492
511
|
|
493
512
|
MissingFileSystemConfiguration.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -561,6 +580,8 @@ module Aws::FSx
|
|
561
580
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
562
581
|
|
563
582
|
UpdateFileSystemLustreConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
583
|
+
UpdateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
584
|
+
UpdateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
564
585
|
UpdateFileSystemLustreConfiguration.struct_class = Types::UpdateFileSystemLustreConfiguration
|
565
586
|
|
566
587
|
UpdateFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
@@ -684,6 +705,7 @@ module Aws::FSx
|
|
684
705
|
o.errors << Shapes::ShapeRef.new(shape: ActiveDirectoryError)
|
685
706
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleParameterError)
|
686
707
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNetworkSettings)
|
708
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidPerUnitStorageThroughput)
|
687
709
|
o.errors << Shapes::ShapeRef.new(shape: ServiceLimitExceeded)
|
688
710
|
o.errors << Shapes::ShapeRef.new(shape: BackupNotFound)
|
689
711
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -151,8 +151,7 @@ module Aws::FSx
|
|
151
151
|
include Aws::Structure
|
152
152
|
end
|
153
153
|
|
154
|
-
# A backup of an Amazon FSx for
|
155
|
-
# create a new file system from a backup to protect against data loss.
|
154
|
+
# A backup of an Amazon FSx for file system.
|
156
155
|
#
|
157
156
|
# @!attribute [rw] backup_id
|
158
157
|
# The ID of the backup.
|
@@ -435,10 +434,10 @@ module Aws::FSx
|
|
435
434
|
# @return [String]
|
436
435
|
#
|
437
436
|
# @!attribute [rw] client_request_token
|
438
|
-
#
|
439
|
-
#
|
440
|
-
#
|
441
|
-
#
|
437
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
438
|
+
# idempotent creation. This string is automatically filled on your
|
439
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
440
|
+
# AWS SDK.
|
442
441
|
#
|
443
442
|
# **A suitable default value is auto-generated.** You should normally
|
444
443
|
# not need to pass this option.
|
@@ -446,7 +445,10 @@ module Aws::FSx
|
|
446
445
|
#
|
447
446
|
# @!attribute [rw] tags
|
448
447
|
# The tags to apply to the backup at backup creation. The key value of
|
449
|
-
# the `Name` tag appears in the console as the backup name.
|
448
|
+
# the `Name` tag appears in the console as the backup name. If you
|
449
|
+
# have set `CopyTagsToBackups` to true, and you specify one or more
|
450
|
+
# tags using the `CreateBackup` action, no existing tags on the file
|
451
|
+
# system are copied from the file system to the backup.
|
450
452
|
# @return [Array<Types::Tag>]
|
451
453
|
#
|
452
454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateBackupRequest AWS API Documentation
|
@@ -598,6 +600,17 @@ module Aws::FSx
|
|
598
600
|
# automatic_backup_retention_days: 1,
|
599
601
|
# copy_tags_to_backups: false,
|
600
602
|
# },
|
603
|
+
# lustre_configuration: {
|
604
|
+
# weekly_maintenance_start_time: "WeeklyTime",
|
605
|
+
# import_path: "ArchivePath",
|
606
|
+
# export_path: "ArchivePath",
|
607
|
+
# imported_file_chunk_size: 1,
|
608
|
+
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
609
|
+
# per_unit_storage_throughput: 1,
|
610
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
611
|
+
# automatic_backup_retention_days: 1,
|
612
|
+
# copy_tags_to_backups: false,
|
613
|
+
# },
|
601
614
|
# storage_type: "SSD", # accepts SSD, HDD
|
602
615
|
# }
|
603
616
|
#
|
@@ -607,10 +620,10 @@ module Aws::FSx
|
|
607
620
|
# @return [String]
|
608
621
|
#
|
609
622
|
# @!attribute [rw] client_request_token
|
610
|
-
#
|
611
|
-
#
|
612
|
-
#
|
613
|
-
#
|
623
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
624
|
+
# idempotent creation. This string is automatically filled on your
|
625
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
626
|
+
# AWS SDK.
|
614
627
|
#
|
615
628
|
# **A suitable default value is auto-generated.** You should normally
|
616
629
|
# not need to pass this option.
|
@@ -646,6 +659,10 @@ module Aws::FSx
|
|
646
659
|
# The configuration for this Microsoft Windows file system.
|
647
660
|
# @return [Types::CreateFileSystemWindowsConfiguration]
|
648
661
|
#
|
662
|
+
# @!attribute [rw] lustre_configuration
|
663
|
+
# The Lustre configuration for the file system being created.
|
664
|
+
# @return [Types::CreateFileSystemLustreConfiguration]
|
665
|
+
#
|
649
666
|
# @!attribute [rw] storage_type
|
650
667
|
# Sets the storage type for the Windows file system you're creating
|
651
668
|
# from a backup. Valid values are `SSD` and `HDD`.
|
@@ -678,6 +695,7 @@ module Aws::FSx
|
|
678
695
|
:security_group_ids,
|
679
696
|
:tags,
|
680
697
|
:windows_configuration,
|
698
|
+
:lustre_configuration,
|
681
699
|
:storage_type)
|
682
700
|
SENSITIVE = []
|
683
701
|
include Aws::Structure
|
@@ -709,6 +727,9 @@ module Aws::FSx
|
|
709
727
|
# imported_file_chunk_size: 1,
|
710
728
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
711
729
|
# per_unit_storage_throughput: 1,
|
730
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
731
|
+
# automatic_backup_retention_days: 1,
|
732
|
+
# copy_tags_to_backups: false,
|
712
733
|
# }
|
713
734
|
#
|
714
735
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -762,11 +783,15 @@ module Aws::FSx
|
|
762
783
|
# @return [Integer]
|
763
784
|
#
|
764
785
|
# @!attribute [rw] deployment_type
|
765
|
-
#
|
766
|
-
#
|
786
|
+
# Choose `SCRATCH_1` and `SCRATCH_2` deployment types when you need
|
787
|
+
# temporary storage and shorter-term processing of data. The
|
767
788
|
# `SCRATCH_2` deployment type provides in-transit encryption of data
|
768
789
|
# and higher burst throughput capacity than `SCRATCH_1`.
|
769
790
|
#
|
791
|
+
# <note markdown="1"> This option can only be set for for PERSISTENT\_1 deployments types.
|
792
|
+
#
|
793
|
+
# </note>
|
794
|
+
#
|
770
795
|
# Choose `PERSISTENT_1` deployment type for longer-term storage and
|
771
796
|
# workloads and encryption of data in transit. To learn more about
|
772
797
|
# deployment types, see [ FSx for Lustre Deployment Options][1].
|
@@ -800,6 +825,29 @@ module Aws::FSx
|
|
800
825
|
# Valid values are 50, 100, 200.
|
801
826
|
# @return [Integer]
|
802
827
|
#
|
828
|
+
# @!attribute [rw] daily_automatic_backup_start_time
|
829
|
+
# A recurring daily time, in the format `HH:MM`. `HH` is the
|
830
|
+
# zero-padded hour of the day (0-23), and `MM` is the zero-padded
|
831
|
+
# minute of the hour. For example, `05:00` specifies 5 AM daily.
|
832
|
+
# @return [String]
|
833
|
+
#
|
834
|
+
# @!attribute [rw] automatic_backup_retention_days
|
835
|
+
# The number of days to retain automatic backups. Setting this to 0
|
836
|
+
# disables automatic backups. You can retain automatic backups for a
|
837
|
+
# maximum of 35 days. The default is 0.
|
838
|
+
# @return [Integer]
|
839
|
+
#
|
840
|
+
# @!attribute [rw] copy_tags_to_backups
|
841
|
+
# A boolean flag indicating whether tags for the file system should be
|
842
|
+
# copied to backups. This value defaults to false. If it's set to
|
843
|
+
# true, all tags for the file system are copied to all automatic and
|
844
|
+
# user-initiated backups where the user doesn't specify tags. If this
|
845
|
+
# value is true, and you specify one or more tags, only the specified
|
846
|
+
# tags are copied to backups. If you specify one or more tags when
|
847
|
+
# creating a user-initiated backup, no tags are copied from the file
|
848
|
+
# system, regardless of this value.
|
849
|
+
# @return [Boolean]
|
850
|
+
#
|
803
851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
804
852
|
#
|
805
853
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
@@ -808,7 +856,10 @@ module Aws::FSx
|
|
808
856
|
:export_path,
|
809
857
|
:imported_file_chunk_size,
|
810
858
|
:deployment_type,
|
811
|
-
:per_unit_storage_throughput
|
859
|
+
:per_unit_storage_throughput,
|
860
|
+
:daily_automatic_backup_start_time,
|
861
|
+
:automatic_backup_retention_days,
|
862
|
+
:copy_tags_to_backups)
|
812
863
|
SENSITIVE = []
|
813
864
|
include Aws::Structure
|
814
865
|
end
|
@@ -857,14 +908,17 @@ module Aws::FSx
|
|
857
908
|
# imported_file_chunk_size: 1,
|
858
909
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
859
910
|
# per_unit_storage_throughput: 1,
|
911
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
912
|
+
# automatic_backup_retention_days: 1,
|
913
|
+
# copy_tags_to_backups: false,
|
860
914
|
# },
|
861
915
|
# }
|
862
916
|
#
|
863
917
|
# @!attribute [rw] client_request_token
|
864
|
-
#
|
865
|
-
#
|
866
|
-
#
|
867
|
-
#
|
918
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
919
|
+
# idempotent creation. This string is automatically filled on your
|
920
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
921
|
+
# AWS SDK.
|
868
922
|
#
|
869
923
|
# **A suitable default value is auto-generated.** You should normally
|
870
924
|
# not need to pass this option.
|
@@ -1429,9 +1483,9 @@ module Aws::FSx
|
|
1429
1483
|
# @return [String]
|
1430
1484
|
#
|
1431
1485
|
# @!attribute [rw] client_request_token
|
1432
|
-
#
|
1433
|
-
#
|
1434
|
-
#
|
1486
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1487
|
+
# idempotent deletion. This is automatically filled on your behalf
|
1488
|
+
# when using the AWS CLI or SDK.
|
1435
1489
|
#
|
1436
1490
|
# **A suitable default value is auto-generated.** You should normally
|
1437
1491
|
# not need to pass this option.
|
@@ -1465,6 +1519,66 @@ module Aws::FSx
|
|
1465
1519
|
include Aws::Structure
|
1466
1520
|
end
|
1467
1521
|
|
1522
|
+
# The configuration object for the Amazon FSx for Lustre file system
|
1523
|
+
# being deleted in the `DeleteFileSystem` operation.
|
1524
|
+
#
|
1525
|
+
# @note When making an API call, you may pass DeleteFileSystemLustreConfiguration
|
1526
|
+
# data as a hash:
|
1527
|
+
#
|
1528
|
+
# {
|
1529
|
+
# skip_final_backup: false,
|
1530
|
+
# final_backup_tags: [
|
1531
|
+
# {
|
1532
|
+
# key: "TagKey",
|
1533
|
+
# value: "TagValue",
|
1534
|
+
# },
|
1535
|
+
# ],
|
1536
|
+
# }
|
1537
|
+
#
|
1538
|
+
# @!attribute [rw] skip_final_backup
|
1539
|
+
# Set `SkipFinalBackup` to false if you want to take a final backup of
|
1540
|
+
# the file system you are deleting. By default, Amazon FSx will not
|
1541
|
+
# take a final backup on your behalf when the `DeleteFileSystem`
|
1542
|
+
# operation is invoked. (Default = true)
|
1543
|
+
# @return [Boolean]
|
1544
|
+
#
|
1545
|
+
# @!attribute [rw] final_backup_tags
|
1546
|
+
# Use if `SkipFinalBackup` is set to `false`, and you want to apply an
|
1547
|
+
# array of tags to the final backup. If you have set the file system
|
1548
|
+
# property `CopyTagsToBackups` to true, and you specify one or more
|
1549
|
+
# `FinalBackupTags` when deleting a file system, Amazon FSx will not
|
1550
|
+
# copy any existing file system tags to the backup.
|
1551
|
+
# @return [Array<Types::Tag>]
|
1552
|
+
#
|
1553
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemLustreConfiguration AWS API Documentation
|
1554
|
+
#
|
1555
|
+
class DeleteFileSystemLustreConfiguration < Struct.new(
|
1556
|
+
:skip_final_backup,
|
1557
|
+
:final_backup_tags)
|
1558
|
+
SENSITIVE = []
|
1559
|
+
include Aws::Structure
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
# The response object for the Amazon FSx for Lustre file system being
|
1563
|
+
# deleted in the `DeleteFileSystem` operation.
|
1564
|
+
#
|
1565
|
+
# @!attribute [rw] final_backup_id
|
1566
|
+
# The ID of the final backup for this file system.
|
1567
|
+
# @return [String]
|
1568
|
+
#
|
1569
|
+
# @!attribute [rw] final_backup_tags
|
1570
|
+
# The set of tags applied to the final backup.
|
1571
|
+
# @return [Array<Types::Tag>]
|
1572
|
+
#
|
1573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemLustreResponse AWS API Documentation
|
1574
|
+
#
|
1575
|
+
class DeleteFileSystemLustreResponse < Struct.new(
|
1576
|
+
:final_backup_id,
|
1577
|
+
:final_backup_tags)
|
1578
|
+
SENSITIVE = []
|
1579
|
+
include Aws::Structure
|
1580
|
+
end
|
1581
|
+
|
1468
1582
|
# The request object for `DeleteFileSystem` operation.
|
1469
1583
|
#
|
1470
1584
|
# @note When making an API call, you may pass DeleteFileSystemRequest
|
@@ -1482,6 +1596,15 @@ module Aws::FSx
|
|
1482
1596
|
# },
|
1483
1597
|
# ],
|
1484
1598
|
# },
|
1599
|
+
# lustre_configuration: {
|
1600
|
+
# skip_final_backup: false,
|
1601
|
+
# final_backup_tags: [
|
1602
|
+
# {
|
1603
|
+
# key: "TagKey",
|
1604
|
+
# value: "TagValue",
|
1605
|
+
# },
|
1606
|
+
# ],
|
1607
|
+
# },
|
1485
1608
|
# }
|
1486
1609
|
#
|
1487
1610
|
# @!attribute [rw] file_system_id
|
@@ -1489,9 +1612,9 @@ module Aws::FSx
|
|
1489
1612
|
# @return [String]
|
1490
1613
|
#
|
1491
1614
|
# @!attribute [rw] client_request_token
|
1492
|
-
#
|
1493
|
-
#
|
1494
|
-
#
|
1615
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1616
|
+
# idempotent deletion. This is automatically filled on your behalf
|
1617
|
+
# when using the AWS CLI or SDK.
|
1495
1618
|
#
|
1496
1619
|
# **A suitable default value is auto-generated.** You should normally
|
1497
1620
|
# not need to pass this option.
|
@@ -1502,12 +1625,18 @@ module Aws::FSx
|
|
1502
1625
|
# in the `DeleteFileSystem` operation.
|
1503
1626
|
# @return [Types::DeleteFileSystemWindowsConfiguration]
|
1504
1627
|
#
|
1628
|
+
# @!attribute [rw] lustre_configuration
|
1629
|
+
# The configuration object for the Amazon FSx for Lustre file system
|
1630
|
+
# being deleted in the `DeleteFileSystem` operation.
|
1631
|
+
# @return [Types::DeleteFileSystemLustreConfiguration]
|
1632
|
+
#
|
1505
1633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemRequest AWS API Documentation
|
1506
1634
|
#
|
1507
1635
|
class DeleteFileSystemRequest < Struct.new(
|
1508
1636
|
:file_system_id,
|
1509
1637
|
:client_request_token,
|
1510
|
-
:windows_configuration
|
1638
|
+
:windows_configuration,
|
1639
|
+
:lustre_configuration)
|
1511
1640
|
SENSITIVE = []
|
1512
1641
|
include Aws::Structure
|
1513
1642
|
end
|
@@ -1528,12 +1657,18 @@ module Aws::FSx
|
|
1528
1657
|
# the `DeleteFileSystem` operation.
|
1529
1658
|
# @return [Types::DeleteFileSystemWindowsResponse]
|
1530
1659
|
#
|
1660
|
+
# @!attribute [rw] lustre_response
|
1661
|
+
# The response object for the Amazon FSx for Lustre file system being
|
1662
|
+
# deleted in the `DeleteFileSystem` operation.
|
1663
|
+
# @return [Types::DeleteFileSystemLustreResponse]
|
1664
|
+
#
|
1531
1665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemResponse AWS API Documentation
|
1532
1666
|
#
|
1533
1667
|
class DeleteFileSystemResponse < Struct.new(
|
1534
1668
|
:file_system_id,
|
1535
1669
|
:lifecycle,
|
1536
|
-
:windows_response
|
1670
|
+
:windows_response,
|
1671
|
+
:lustre_response)
|
1537
1672
|
SENSITIVE = []
|
1538
1673
|
include Aws::Structure
|
1539
1674
|
end
|
@@ -1604,7 +1739,7 @@ module Aws::FSx
|
|
1604
1739
|
# backup_ids: ["BackupId"],
|
1605
1740
|
# filters: [
|
1606
1741
|
# {
|
1607
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
1742
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
1608
1743
|
# values: ["FilterValue"],
|
1609
1744
|
# },
|
1610
1745
|
# ],
|
@@ -1613,28 +1748,27 @@ module Aws::FSx
|
|
1613
1748
|
# }
|
1614
1749
|
#
|
1615
1750
|
# @!attribute [rw] backup_ids
|
1616
|
-
#
|
1617
|
-
#
|
1618
|
-
# be thrown.
|
1751
|
+
# IDs of the backups you want to retrieve (String). This overrides any
|
1752
|
+
# filters. If any IDs are not found, BackupNotFound will be thrown.
|
1619
1753
|
# @return [Array<String>]
|
1620
1754
|
#
|
1621
1755
|
# @!attribute [rw] filters
|
1622
|
-
#
|
1756
|
+
# Filters structure. Supported names are file-system-id and
|
1623
1757
|
# backup-type.
|
1624
1758
|
# @return [Array<Types::Filter>]
|
1625
1759
|
#
|
1626
1760
|
# @!attribute [rw] max_results
|
1627
|
-
#
|
1628
|
-
#
|
1629
|
-
#
|
1630
|
-
#
|
1631
|
-
#
|
1761
|
+
# Maximum number of backups to return in the response (integer). This
|
1762
|
+
# parameter value must be greater than 0. The number of items that
|
1763
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1764
|
+
# specified in the request and the service's internal maximum number
|
1765
|
+
# of items per page.
|
1632
1766
|
# @return [Integer]
|
1633
1767
|
#
|
1634
1768
|
# @!attribute [rw] next_token
|
1635
|
-
#
|
1636
|
-
#
|
1637
|
-
#
|
1769
|
+
# Opaque pagination token returned from a previous `DescribeBackups`
|
1770
|
+
# operation (String). If a token present, the action continues the
|
1771
|
+
# list from where the returning call left off.
|
1638
1772
|
# @return [String]
|
1639
1773
|
#
|
1640
1774
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeBackupsRequest AWS API Documentation
|
@@ -1750,20 +1884,20 @@ module Aws::FSx
|
|
1750
1884
|
# }
|
1751
1885
|
#
|
1752
1886
|
# @!attribute [rw] file_system_ids
|
1753
|
-
#
|
1754
|
-
#
|
1887
|
+
# IDs of the file systems whose descriptions you want to retrieve
|
1888
|
+
# (String).
|
1755
1889
|
# @return [Array<String>]
|
1756
1890
|
#
|
1757
1891
|
# @!attribute [rw] max_results
|
1758
|
-
#
|
1759
|
-
#
|
1760
|
-
#
|
1761
|
-
#
|
1762
|
-
#
|
1892
|
+
# Maximum number of file systems to return in the response (integer).
|
1893
|
+
# This parameter value must be greater than 0. The number of items
|
1894
|
+
# that Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1895
|
+
# specified in the request and the service's internal maximum number
|
1896
|
+
# of items per page.
|
1763
1897
|
# @return [Integer]
|
1764
1898
|
#
|
1765
1899
|
# @!attribute [rw] next_token
|
1766
|
-
#
|
1900
|
+
# Opaque pagination token returned from a previous
|
1767
1901
|
# `DescribeFileSystems` operation (String). If a token present, the
|
1768
1902
|
# action continues the list from where the returning call left off.
|
1769
1903
|
# @return [String]
|
@@ -2003,7 +2137,7 @@ module Aws::FSx
|
|
2003
2137
|
# data as a hash:
|
2004
2138
|
#
|
2005
2139
|
# {
|
2006
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
2140
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
2007
2141
|
# values: ["FilterValue"],
|
2008
2142
|
# }
|
2009
2143
|
#
|
@@ -2162,15 +2296,15 @@ module Aws::FSx
|
|
2162
2296
|
# @return [String]
|
2163
2297
|
#
|
2164
2298
|
# @!attribute [rw] max_results
|
2165
|
-
#
|
2166
|
-
#
|
2167
|
-
#
|
2168
|
-
#
|
2169
|
-
#
|
2299
|
+
# Maximum number of tags to return in the response (integer). This
|
2300
|
+
# parameter value must be greater than 0. The number of items that
|
2301
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
2302
|
+
# specified in the request and the service's internal maximum number
|
2303
|
+
# of items per page.
|
2170
2304
|
# @return [Integer]
|
2171
2305
|
#
|
2172
2306
|
# @!attribute [rw] next_token
|
2173
|
-
#
|
2307
|
+
# Opaque pagination token returned from a previous
|
2174
2308
|
# `ListTagsForResource` operation (String). If a token present, the
|
2175
2309
|
# action continues the list from where the returning call left off.
|
2176
2310
|
# @return [String]
|
@@ -2220,7 +2354,23 @@ module Aws::FSx
|
|
2220
2354
|
# @return [Types::DataRepositoryConfiguration]
|
2221
2355
|
#
|
2222
2356
|
# @!attribute [rw] deployment_type
|
2223
|
-
# The deployment type of the FSX for Lustre file system.
|
2357
|
+
# The deployment type of the FSX for Lustre file system. *Scratch
|
2358
|
+
# deployment type* is designed for temporary storage and shorter-term
|
2359
|
+
# processing of data.
|
2360
|
+
#
|
2361
|
+
# `SCRATCH_1` and `SCRATCH_2` deployment types are best suited for
|
2362
|
+
# when you need temporary storage and shorter-term processing of data.
|
2363
|
+
# The `SCRATCH_2` deployment type provides in-transit encryption of
|
2364
|
+
# data and higher burst throughput capacity than `SCRATCH_1`.
|
2365
|
+
#
|
2366
|
+
# The `PERSISTENT_1` deployment type is used for longer-term storage
|
2367
|
+
# and workloads and encryption of data in transit. To learn more about
|
2368
|
+
# deployment types, see [ FSx for Lustre Deployment Options][1].
|
2369
|
+
# (Default = `SCRATCH_1`)
|
2370
|
+
#
|
2371
|
+
#
|
2372
|
+
#
|
2373
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-deployment-types.html
|
2224
2374
|
# @return [String]
|
2225
2375
|
#
|
2226
2376
|
# @!attribute [rw] per_unit_storage_throughput
|
@@ -2239,6 +2389,29 @@ module Aws::FSx
|
|
2239
2389
|
# string that is unique within an AWS Region.
|
2240
2390
|
# @return [String]
|
2241
2391
|
#
|
2392
|
+
# @!attribute [rw] daily_automatic_backup_start_time
|
2393
|
+
# A recurring daily time, in the format `HH:MM`. `HH` is the
|
2394
|
+
# zero-padded hour of the day (0-23), and `MM` is the zero-padded
|
2395
|
+
# minute of the hour. For example, `05:00` specifies 5 AM daily.
|
2396
|
+
# @return [String]
|
2397
|
+
#
|
2398
|
+
# @!attribute [rw] automatic_backup_retention_days
|
2399
|
+
# The number of days to retain automatic backups. Setting this to 0
|
2400
|
+
# disables automatic backups. You can retain automatic backups for a
|
2401
|
+
# maximum of 35 days. The default is 0.
|
2402
|
+
# @return [Integer]
|
2403
|
+
#
|
2404
|
+
# @!attribute [rw] copy_tags_to_backups
|
2405
|
+
# A boolean flag indicating whether tags on the file system should be
|
2406
|
+
# copied to backups. If it's set to true, all tags on the file system
|
2407
|
+
# are copied to all automatic backups and any user-initiated backups
|
2408
|
+
# where the user doesn't specify any tags. If this value is true, and
|
2409
|
+
# you specify one or more tags, only the specified tags are copied to
|
2410
|
+
# backups. If you specify one or more tags when creating a
|
2411
|
+
# user-initiated backup, no tags are copied from the file system,
|
2412
|
+
# regardless of this value. (Default = false)
|
2413
|
+
# @return [Boolean]
|
2414
|
+
#
|
2242
2415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
2243
2416
|
#
|
2244
2417
|
class LustreFileSystemConfiguration < Struct.new(
|
@@ -2246,7 +2419,10 @@ module Aws::FSx
|
|
2246
2419
|
:data_repository_configuration,
|
2247
2420
|
:deployment_type,
|
2248
2421
|
:per_unit_storage_throughput,
|
2249
|
-
:mount_name
|
2422
|
+
:mount_name,
|
2423
|
+
:daily_automatic_backup_start_time,
|
2424
|
+
:automatic_backup_retention_days,
|
2425
|
+
:copy_tags_to_backups)
|
2250
2426
|
SENSITIVE = []
|
2251
2427
|
include Aws::Structure
|
2252
2428
|
end
|
@@ -2647,6 +2823,8 @@ module Aws::FSx
|
|
2647
2823
|
#
|
2648
2824
|
# {
|
2649
2825
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2826
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
2827
|
+
# automatic_backup_retention_days: 1,
|
2650
2828
|
# }
|
2651
2829
|
#
|
2652
2830
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -2655,10 +2833,24 @@ module Aws::FSx
|
|
2655
2833
|
# through 7, beginning with Monday and ending with Sunday.
|
2656
2834
|
# @return [String]
|
2657
2835
|
#
|
2836
|
+
# @!attribute [rw] daily_automatic_backup_start_time
|
2837
|
+
# A recurring daily time, in the format `HH:MM`. `HH` is the
|
2838
|
+
# zero-padded hour of the day (0-23), and `MM` is the zero-padded
|
2839
|
+
# minute of the hour. For example, `05:00` specifies 5 AM daily.
|
2840
|
+
# @return [String]
|
2841
|
+
#
|
2842
|
+
# @!attribute [rw] automatic_backup_retention_days
|
2843
|
+
# The number of days to retain automatic backups. Setting this to 0
|
2844
|
+
# disables automatic backups. You can retain automatic backups for a
|
2845
|
+
# maximum of 35 days. The default is 0.
|
2846
|
+
# @return [Integer]
|
2847
|
+
#
|
2658
2848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
2659
2849
|
#
|
2660
2850
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
2661
|
-
:weekly_maintenance_start_time
|
2851
|
+
:weekly_maintenance_start_time,
|
2852
|
+
:daily_automatic_backup_start_time,
|
2853
|
+
:automatic_backup_retention_days)
|
2662
2854
|
SENSITIVE = []
|
2663
2855
|
include Aws::Structure
|
2664
2856
|
end
|
@@ -2685,6 +2877,8 @@ module Aws::FSx
|
|
2685
2877
|
# },
|
2686
2878
|
# lustre_configuration: {
|
2687
2879
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2880
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
2881
|
+
# automatic_backup_retention_days: 1,
|
2688
2882
|
# },
|
2689
2883
|
# }
|
2690
2884
|
#
|
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.23.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-06-
|
11
|
+
date: 2020-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|