aws-sdk-fsx 1.22.0 → 1.27.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 +196 -88
- data/lib/aws-sdk-fsx/client_api.rb +38 -2
- data/lib/aws-sdk-fsx/types.rb +452 -80
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c2e0fd725f020971e4b7aa9c8fb58fd34c7d3af3a2476f214e44e2aacfe239c
|
4
|
+
data.tar.gz: bcc09ae9ae016dc08fd276408abe59c4caf444b074455c3320671a6c8b4c8615
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fdcac25bf49ac228f43921108b17706185e4a2fbf535dde72e8501c72072f1593474ec878a33c288c95362aa86eb1660c83e584eb4c5ee83f7cf541a34eeac0
|
7
|
+
data.tar.gz: 1a92aa55100952685b9dac05431105897de2de929b9cbae0c247cd1f8dd9a909e7c92fceff0cf9561b1870450626538c677216a6046f378e80edb9d234be762d
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -361,11 +361,23 @@ 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 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].
|
369
381
|
#
|
370
382
|
# If a backup with the specified client request token exists, and the
|
371
383
|
# parameters match, this operation returns the description of the
|
@@ -386,30 +398,34 @@ module Aws::FSx
|
|
386
398
|
# request token and the initial call created a backup, the operation
|
387
399
|
# returns a successful result because all the parameters are the same.
|
388
400
|
#
|
389
|
-
# The `
|
390
|
-
# state is still `CREATING`. You can check the
|
391
|
-
#
|
392
|
-
#
|
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.
|
393
405
|
#
|
394
|
-
# <note markdown="1">
|
395
406
|
#
|
396
|
-
#
|
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
|
397
410
|
#
|
398
411
|
# @option params [required, String] :file_system_id
|
399
412
|
# The ID of the file system to back up.
|
400
413
|
#
|
401
414
|
# @option params [String] :client_request_token
|
402
|
-
#
|
403
|
-
#
|
404
|
-
#
|
405
|
-
#
|
415
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
416
|
+
# idempotent creation. This string is automatically filled on your
|
417
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
418
|
+
# SDK.
|
406
419
|
#
|
407
420
|
# **A suitable default value is auto-generated.** You should normally
|
408
421
|
# not need to pass this option.**
|
409
422
|
#
|
410
423
|
# @option params [Array<Types::Tag>] :tags
|
411
424
|
# 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.
|
425
|
+
# the `Name` tag appears in the console as the backup name. If you have
|
426
|
+
# set `CopyTagsToBackups` to true, and you specify one or more tags
|
427
|
+
# using the `CreateBackup` action, no existing tags on the file system
|
428
|
+
# are copied from the file system to the backup.
|
413
429
|
#
|
414
430
|
# @return [Types::CreateBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
415
431
|
#
|
@@ -466,8 +482,8 @@ module Aws::FSx
|
|
466
482
|
# client_request_token: "ClientRequestToken",
|
467
483
|
# tags: [
|
468
484
|
# {
|
469
|
-
# key: "TagKey",
|
470
|
-
# value: "TagValue",
|
485
|
+
# key: "TagKey", # required
|
486
|
+
# value: "TagValue", # required
|
471
487
|
# },
|
472
488
|
# ],
|
473
489
|
# })
|
@@ -475,7 +491,7 @@ module Aws::FSx
|
|
475
491
|
# @example Response structure
|
476
492
|
#
|
477
493
|
# resp.backup.backup_id #=> String
|
478
|
-
# resp.backup.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETED", "FAILED"
|
494
|
+
# resp.backup.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
479
495
|
# resp.backup.failure_details.message #=> String
|
480
496
|
# resp.backup.type #=> String, one of "AUTOMATIC", "USER_INITIATED"
|
481
497
|
# resp.backup.progress_percent #=> Integer
|
@@ -523,12 +539,19 @@ module Aws::FSx
|
|
523
539
|
# resp.backup.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
524
540
|
# resp.backup.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
525
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"
|
526
543
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
527
544
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
528
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
|
529
548
|
# resp.backup.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
530
549
|
# resp.backup.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
531
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
|
554
|
+
# resp.backup.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
532
555
|
# resp.backup.file_system.administrative_actions #=> Array
|
533
556
|
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
534
557
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -622,8 +645,8 @@ module Aws::FSx
|
|
622
645
|
# client_request_token: "ClientRequestToken",
|
623
646
|
# tags: [
|
624
647
|
# {
|
625
|
-
# key: "TagKey",
|
626
|
-
# value: "TagValue",
|
648
|
+
# key: "TagKey", # required
|
649
|
+
# value: "TagValue", # required
|
627
650
|
# },
|
628
651
|
# ],
|
629
652
|
# })
|
@@ -697,10 +720,10 @@ module Aws::FSx
|
|
697
720
|
# </note>
|
698
721
|
#
|
699
722
|
# @option params [String] :client_request_token
|
700
|
-
#
|
701
|
-
#
|
702
|
-
#
|
703
|
-
#
|
723
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
724
|
+
# idempotent creation. This string is automatically filled on your
|
725
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
726
|
+
# SDK.
|
704
727
|
#
|
705
728
|
# **A suitable default value is auto-generated.** You should normally
|
706
729
|
# not need to pass this option.**
|
@@ -862,8 +885,8 @@ module Aws::FSx
|
|
862
885
|
# security_group_ids: ["SecurityGroupId"],
|
863
886
|
# tags: [
|
864
887
|
# {
|
865
|
-
# key: "TagKey",
|
866
|
-
# value: "TagValue",
|
888
|
+
# key: "TagKey", # required
|
889
|
+
# value: "TagValue", # required
|
867
890
|
# },
|
868
891
|
# ],
|
869
892
|
# kms_key_id: "KmsKeyId",
|
@@ -891,7 +914,12 @@ module Aws::FSx
|
|
891
914
|
# export_path: "ArchivePath",
|
892
915
|
# imported_file_chunk_size: 1,
|
893
916
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
917
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
894
918
|
# per_unit_storage_throughput: 1,
|
919
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
920
|
+
# automatic_backup_retention_days: 1,
|
921
|
+
# copy_tags_to_backups: false,
|
922
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
895
923
|
# },
|
896
924
|
# })
|
897
925
|
#
|
@@ -935,12 +963,19 @@ module Aws::FSx
|
|
935
963
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
936
964
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
937
965
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
966
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
938
967
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
939
968
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
940
969
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
970
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
971
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
941
972
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
942
973
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
943
974
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
975
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
976
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
977
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
978
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
944
979
|
# resp.file_system.administrative_actions #=> Array
|
945
980
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
946
981
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -958,8 +993,8 @@ module Aws::FSx
|
|
958
993
|
req.send_request(options)
|
959
994
|
end
|
960
995
|
|
961
|
-
# Creates a new Amazon FSx file system from an existing Amazon FSx
|
962
|
-
#
|
996
|
+
# Creates a new Amazon FSx file system from an existing Amazon FSx
|
997
|
+
# backup.
|
963
998
|
#
|
964
999
|
# If a file system with the specified client request token exists and
|
965
1000
|
# the parameters match, this operation returns the description of the
|
@@ -1000,10 +1035,10 @@ module Aws::FSx
|
|
1000
1035
|
# a file system from an existing backup.
|
1001
1036
|
#
|
1002
1037
|
# @option params [String] :client_request_token
|
1003
|
-
#
|
1004
|
-
#
|
1005
|
-
#
|
1006
|
-
#
|
1038
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1039
|
+
# idempotent creation. This string is automatically filled on your
|
1040
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
1041
|
+
# SDK.
|
1007
1042
|
#
|
1008
1043
|
# **A suitable default value is auto-generated.** You should normally
|
1009
1044
|
# not need to pass this option.**
|
@@ -1034,6 +1069,9 @@ module Aws::FSx
|
|
1034
1069
|
# @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
|
1035
1070
|
# The configuration for this Microsoft Windows file system.
|
1036
1071
|
#
|
1072
|
+
# @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
|
1073
|
+
# The Lustre configuration for the file system being created.
|
1074
|
+
#
|
1037
1075
|
# @option params [String] :storage_type
|
1038
1076
|
# Sets the storage type for the Windows file system you're creating
|
1039
1077
|
# from a backup. Valid values are `SSD` and `HDD`.
|
@@ -1124,8 +1162,8 @@ module Aws::FSx
|
|
1124
1162
|
# security_group_ids: ["SecurityGroupId"],
|
1125
1163
|
# tags: [
|
1126
1164
|
# {
|
1127
|
-
# key: "TagKey",
|
1128
|
-
# value: "TagValue",
|
1165
|
+
# key: "TagKey", # required
|
1166
|
+
# value: "TagValue", # required
|
1129
1167
|
# },
|
1130
1168
|
# ],
|
1131
1169
|
# windows_configuration: {
|
@@ -1146,6 +1184,19 @@ module Aws::FSx
|
|
1146
1184
|
# automatic_backup_retention_days: 1,
|
1147
1185
|
# copy_tags_to_backups: false,
|
1148
1186
|
# },
|
1187
|
+
# lustre_configuration: {
|
1188
|
+
# weekly_maintenance_start_time: "WeeklyTime",
|
1189
|
+
# import_path: "ArchivePath",
|
1190
|
+
# export_path: "ArchivePath",
|
1191
|
+
# imported_file_chunk_size: 1,
|
1192
|
+
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
1193
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
1194
|
+
# per_unit_storage_throughput: 1,
|
1195
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
1196
|
+
# automatic_backup_retention_days: 1,
|
1197
|
+
# copy_tags_to_backups: false,
|
1198
|
+
# drive_cache_type: "NONE", # accepts NONE, READ
|
1199
|
+
# },
|
1149
1200
|
# storage_type: "SSD", # accepts SSD, HDD
|
1150
1201
|
# })
|
1151
1202
|
#
|
@@ -1189,12 +1240,19 @@ module Aws::FSx
|
|
1189
1240
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
1190
1241
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
1191
1242
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
1243
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
1192
1244
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
1193
1245
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
1194
1246
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1247
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
1248
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
1195
1249
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1196
1250
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1197
1251
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
1252
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
1253
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
1254
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1255
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1198
1256
|
# resp.file_system.administrative_actions #=> Array
|
1199
1257
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1200
1258
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1212,9 +1270,8 @@ module Aws::FSx
|
|
1212
1270
|
req.send_request(options)
|
1213
1271
|
end
|
1214
1272
|
|
1215
|
-
# Deletes an Amazon FSx
|
1216
|
-
#
|
1217
|
-
# gone.
|
1273
|
+
# Deletes an Amazon FSx backup, deleting its contents. After deletion,
|
1274
|
+
# the backup no longer exists, and its data is gone.
|
1218
1275
|
#
|
1219
1276
|
# The `DeleteBackup` call returns instantly. The backup will not show up
|
1220
1277
|
# in later `DescribeBackups` calls.
|
@@ -1226,9 +1283,9 @@ module Aws::FSx
|
|
1226
1283
|
# The ID of the backup you want to delete.
|
1227
1284
|
#
|
1228
1285
|
# @option params [String] :client_request_token
|
1229
|
-
#
|
1230
|
-
#
|
1231
|
-
#
|
1286
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1287
|
+
# idempotent deletion. This is automatically filled on your behalf when
|
1288
|
+
# using the AWS CLI or SDK.
|
1232
1289
|
#
|
1233
1290
|
# **A suitable default value is auto-generated.** You should normally
|
1234
1291
|
# not need to pass this option.**
|
@@ -1263,7 +1320,7 @@ module Aws::FSx
|
|
1263
1320
|
# @example Response structure
|
1264
1321
|
#
|
1265
1322
|
# resp.backup_id #=> String
|
1266
|
-
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETED", "FAILED"
|
1323
|
+
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
1267
1324
|
#
|
1268
1325
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteBackup AWS API Documentation
|
1269
1326
|
#
|
@@ -1303,9 +1360,9 @@ module Aws::FSx
|
|
1303
1360
|
# The ID of the file system you want to delete.
|
1304
1361
|
#
|
1305
1362
|
# @option params [String] :client_request_token
|
1306
|
-
#
|
1307
|
-
#
|
1308
|
-
#
|
1363
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1364
|
+
# idempotent deletion. This is automatically filled on your behalf when
|
1365
|
+
# using the AWS CLI or SDK.
|
1309
1366
|
#
|
1310
1367
|
# **A suitable default value is auto-generated.** You should normally
|
1311
1368
|
# not need to pass this option.**
|
@@ -1314,11 +1371,16 @@ module Aws::FSx
|
|
1314
1371
|
# The configuration object for the Microsoft Windows file system used in
|
1315
1372
|
# the `DeleteFileSystem` operation.
|
1316
1373
|
#
|
1374
|
+
# @option params [Types::DeleteFileSystemLustreConfiguration] :lustre_configuration
|
1375
|
+
# The configuration object for the Amazon FSx for Lustre file system
|
1376
|
+
# being deleted in the `DeleteFileSystem` operation.
|
1377
|
+
#
|
1317
1378
|
# @return [Types::DeleteFileSystemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1318
1379
|
#
|
1319
1380
|
# * {Types::DeleteFileSystemResponse#file_system_id #file_system_id} => String
|
1320
1381
|
# * {Types::DeleteFileSystemResponse#lifecycle #lifecycle} => String
|
1321
1382
|
# * {Types::DeleteFileSystemResponse#windows_response #windows_response} => Types::DeleteFileSystemWindowsResponse
|
1383
|
+
# * {Types::DeleteFileSystemResponse#lustre_response #lustre_response} => Types::DeleteFileSystemLustreResponse
|
1322
1384
|
#
|
1323
1385
|
#
|
1324
1386
|
# @example Example: To delete a file system
|
@@ -1344,8 +1406,17 @@ module Aws::FSx
|
|
1344
1406
|
# skip_final_backup: false,
|
1345
1407
|
# final_backup_tags: [
|
1346
1408
|
# {
|
1347
|
-
# key: "TagKey",
|
1348
|
-
# value: "TagValue",
|
1409
|
+
# key: "TagKey", # required
|
1410
|
+
# value: "TagValue", # required
|
1411
|
+
# },
|
1412
|
+
# ],
|
1413
|
+
# },
|
1414
|
+
# lustre_configuration: {
|
1415
|
+
# skip_final_backup: false,
|
1416
|
+
# final_backup_tags: [
|
1417
|
+
# {
|
1418
|
+
# key: "TagKey", # required
|
1419
|
+
# value: "TagValue", # required
|
1349
1420
|
# },
|
1350
1421
|
# ],
|
1351
1422
|
# },
|
@@ -1359,6 +1430,10 @@ module Aws::FSx
|
|
1359
1430
|
# resp.windows_response.final_backup_tags #=> Array
|
1360
1431
|
# resp.windows_response.final_backup_tags[0].key #=> String
|
1361
1432
|
# resp.windows_response.final_backup_tags[0].value #=> String
|
1433
|
+
# resp.lustre_response.final_backup_id #=> String
|
1434
|
+
# resp.lustre_response.final_backup_tags #=> Array
|
1435
|
+
# resp.lustre_response.final_backup_tags[0].key #=> String
|
1436
|
+
# resp.lustre_response.final_backup_tags[0].value #=> String
|
1362
1437
|
#
|
1363
1438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystem AWS API Documentation
|
1364
1439
|
#
|
@@ -1369,10 +1444,10 @@ module Aws::FSx
|
|
1369
1444
|
req.send_request(options)
|
1370
1445
|
end
|
1371
1446
|
|
1372
|
-
# Returns the description of specific Amazon FSx
|
1373
|
-
#
|
1374
|
-
#
|
1375
|
-
#
|
1447
|
+
# Returns the description of specific Amazon FSx backups, if a
|
1448
|
+
# `BackupIds` value is provided for that backup. Otherwise, it returns
|
1449
|
+
# all backups owned by your AWS account in the AWS Region of the
|
1450
|
+
# endpoint that you're calling.
|
1376
1451
|
#
|
1377
1452
|
# When retrieving all backups, you can optionally specify the
|
1378
1453
|
# `MaxResults` parameter to limit the number of backups in a response.
|
@@ -1397,25 +1472,23 @@ module Aws::FSx
|
|
1397
1472
|
# responses of a multi-call iteration is unspecified.
|
1398
1473
|
#
|
1399
1474
|
# @option params [Array<String>] :backup_ids
|
1400
|
-
#
|
1401
|
-
#
|
1402
|
-
# be thrown.
|
1475
|
+
# IDs of the backups you want to retrieve (String). This overrides any
|
1476
|
+
# filters. If any IDs are not found, BackupNotFound will be thrown.
|
1403
1477
|
#
|
1404
1478
|
# @option params [Array<Types::Filter>] :filters
|
1405
|
-
#
|
1406
|
-
# backup-type.
|
1479
|
+
# Filters structure. Supported names are file-system-id and backup-type.
|
1407
1480
|
#
|
1408
1481
|
# @option params [Integer] :max_results
|
1409
|
-
#
|
1410
|
-
#
|
1411
|
-
#
|
1412
|
-
#
|
1413
|
-
#
|
1482
|
+
# Maximum number of backups to return in the response (integer). This
|
1483
|
+
# parameter value must be greater than 0. The number of items that
|
1484
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1485
|
+
# specified in the request and the service's internal maximum number of
|
1486
|
+
# items per page.
|
1414
1487
|
#
|
1415
1488
|
# @option params [String] :next_token
|
1416
|
-
#
|
1417
|
-
#
|
1418
|
-
#
|
1489
|
+
# Opaque pagination token returned from a previous `DescribeBackups`
|
1490
|
+
# operation (String). If a token present, the action continues the list
|
1491
|
+
# from where the returning call left off.
|
1419
1492
|
#
|
1420
1493
|
# @return [Types::DescribeBackupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1421
1494
|
#
|
@@ -1468,7 +1541,7 @@ module Aws::FSx
|
|
1468
1541
|
# backup_ids: ["BackupId"],
|
1469
1542
|
# filters: [
|
1470
1543
|
# {
|
1471
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
1544
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
1472
1545
|
# values: ["FilterValue"],
|
1473
1546
|
# },
|
1474
1547
|
# ],
|
@@ -1480,7 +1553,7 @@ module Aws::FSx
|
|
1480
1553
|
#
|
1481
1554
|
# resp.backups #=> Array
|
1482
1555
|
# resp.backups[0].backup_id #=> String
|
1483
|
-
# resp.backups[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETED", "FAILED"
|
1556
|
+
# resp.backups[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", "FAILED"
|
1484
1557
|
# resp.backups[0].failure_details.message #=> String
|
1485
1558
|
# resp.backups[0].type #=> String, one of "AUTOMATIC", "USER_INITIATED"
|
1486
1559
|
# resp.backups[0].progress_percent #=> Integer
|
@@ -1528,12 +1601,19 @@ module Aws::FSx
|
|
1528
1601
|
# resp.backups[0].file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
1529
1602
|
# resp.backups[0].file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
1530
1603
|
# resp.backups[0].file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
1604
|
+
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
1531
1605
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
1532
1606
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
1533
1607
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1608
|
+
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
1609
|
+
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
1534
1610
|
# resp.backups[0].file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1535
1611
|
# resp.backups[0].file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1536
1612
|
# resp.backups[0].file_system.lustre_configuration.mount_name #=> String
|
1613
|
+
# resp.backups[0].file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
1614
|
+
# resp.backups[0].file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
1615
|
+
# resp.backups[0].file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
1616
|
+
# resp.backups[0].file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1537
1617
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
1538
1618
|
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1539
1619
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -1673,20 +1753,20 @@ module Aws::FSx
|
|
1673
1753
|
# across the responses of a multicall iteration is unspecified.
|
1674
1754
|
#
|
1675
1755
|
# @option params [Array<String>] :file_system_ids
|
1676
|
-
#
|
1677
|
-
#
|
1756
|
+
# IDs of the file systems whose descriptions you want to retrieve
|
1757
|
+
# (String).
|
1678
1758
|
#
|
1679
1759
|
# @option params [Integer] :max_results
|
1680
|
-
#
|
1681
|
-
#
|
1682
|
-
#
|
1683
|
-
#
|
1684
|
-
#
|
1760
|
+
# Maximum number of file systems to return in the response (integer).
|
1761
|
+
# This parameter value must be greater than 0. The number of items that
|
1762
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1763
|
+
# specified in the request and the service's internal maximum number of
|
1764
|
+
# items per page.
|
1685
1765
|
#
|
1686
1766
|
# @option params [String] :next_token
|
1687
|
-
#
|
1688
|
-
#
|
1689
|
-
#
|
1767
|
+
# Opaque pagination token returned from a previous `DescribeFileSystems`
|
1768
|
+
# operation (String). If a token present, the action continues the list
|
1769
|
+
# from where the returning call left off.
|
1690
1770
|
#
|
1691
1771
|
# @return [Types::DescribeFileSystemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1692
1772
|
#
|
@@ -1788,12 +1868,19 @@ module Aws::FSx
|
|
1788
1868
|
# resp.file_systems[0].windows_configuration.automatic_backup_retention_days #=> Integer
|
1789
1869
|
# resp.file_systems[0].windows_configuration.copy_tags_to_backups #=> Boolean
|
1790
1870
|
# resp.file_systems[0].lustre_configuration.weekly_maintenance_start_time #=> String
|
1871
|
+
# resp.file_systems[0].lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
1791
1872
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.import_path #=> String
|
1792
1873
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.export_path #=> String
|
1793
1874
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1875
|
+
# resp.file_systems[0].lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
1876
|
+
# resp.file_systems[0].lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
1794
1877
|
# resp.file_systems[0].lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1795
1878
|
# resp.file_systems[0].lustre_configuration.per_unit_storage_throughput #=> Integer
|
1796
1879
|
# resp.file_systems[0].lustre_configuration.mount_name #=> String
|
1880
|
+
# resp.file_systems[0].lustre_configuration.daily_automatic_backup_start_time #=> String
|
1881
|
+
# resp.file_systems[0].lustre_configuration.automatic_backup_retention_days #=> Integer
|
1882
|
+
# resp.file_systems[0].lustre_configuration.copy_tags_to_backups #=> Boolean
|
1883
|
+
# resp.file_systems[0].lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
1797
1884
|
# resp.file_systems[0].administrative_actions #=> Array
|
1798
1885
|
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1799
1886
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
@@ -1840,16 +1927,16 @@ module Aws::FSx
|
|
1840
1927
|
# The ARN of the Amazon FSx resource that will have its tags listed.
|
1841
1928
|
#
|
1842
1929
|
# @option params [Integer] :max_results
|
1843
|
-
#
|
1844
|
-
#
|
1930
|
+
# Maximum number of tags to return in the response (integer). This
|
1931
|
+
# parameter value must be greater than 0. The number of items that
|
1845
1932
|
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1846
1933
|
# specified in the request and the service's internal maximum number of
|
1847
1934
|
# items per page.
|
1848
1935
|
#
|
1849
1936
|
# @option params [String] :next_token
|
1850
|
-
#
|
1851
|
-
#
|
1852
|
-
#
|
1937
|
+
# Opaque pagination token returned from a previous `ListTagsForResource`
|
1938
|
+
# operation (String). If a token present, the action continues the list
|
1939
|
+
# from where the returning call left off.
|
1853
1940
|
#
|
1854
1941
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1855
1942
|
#
|
@@ -1932,8 +2019,8 @@ module Aws::FSx
|
|
1932
2019
|
# resource_arn: "ResourceARN", # required
|
1933
2020
|
# tags: [ # required
|
1934
2021
|
# {
|
1935
|
-
# key: "TagKey",
|
1936
|
-
# value: "TagValue",
|
2022
|
+
# key: "TagKey", # required
|
2023
|
+
# value: "TagValue", # required
|
1937
2024
|
# },
|
1938
2025
|
# ],
|
1939
2026
|
# })
|
@@ -1987,9 +2074,11 @@ module Aws::FSx
|
|
1987
2074
|
end
|
1988
2075
|
|
1989
2076
|
# Use this operation to update the configuration of an existing Amazon
|
1990
|
-
# FSx file system.
|
1991
|
-
#
|
1992
|
-
#
|
2077
|
+
# FSx file system. You can update multiple properties in a single
|
2078
|
+
# request.
|
2079
|
+
#
|
2080
|
+
# For Amazon FSx for Windows File Server file systems, you can update
|
2081
|
+
# the following properties:
|
1993
2082
|
#
|
1994
2083
|
# * AutomaticBackupRetentionDays
|
1995
2084
|
#
|
@@ -2003,7 +2092,16 @@ module Aws::FSx
|
|
2003
2092
|
#
|
2004
2093
|
# * WeeklyMaintenanceStartTime
|
2005
2094
|
#
|
2006
|
-
#
|
2095
|
+
# For Amazon FSx for Lustre file systems, you can update the following
|
2096
|
+
# properties:
|
2097
|
+
#
|
2098
|
+
# * AutoImportPolicy
|
2099
|
+
#
|
2100
|
+
# * AutomaticBackupRetentionDays
|
2101
|
+
#
|
2102
|
+
# * DailyAutomaticBackupStartTime
|
2103
|
+
#
|
2104
|
+
# * WeeklyMaintenanceStartTime
|
2007
2105
|
#
|
2008
2106
|
# @option params [required, String] :file_system_id
|
2009
2107
|
# Identifies the file system that you are updating.
|
@@ -2106,6 +2204,9 @@ module Aws::FSx
|
|
2106
2204
|
# },
|
2107
2205
|
# lustre_configuration: {
|
2108
2206
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2207
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
2208
|
+
# automatic_backup_retention_days: 1,
|
2209
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
2109
2210
|
# },
|
2110
2211
|
# })
|
2111
2212
|
#
|
@@ -2149,12 +2250,19 @@ module Aws::FSx
|
|
2149
2250
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
2150
2251
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
2151
2252
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
2253
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
2152
2254
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
2153
2255
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
2154
2256
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
2257
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
2258
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
2155
2259
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
2156
2260
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
2157
2261
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
2262
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
2263
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
2264
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
2265
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
2158
2266
|
# resp.file_system.administrative_actions #=> Array
|
2159
2267
|
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
2160
2268
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
@@ -2185,7 +2293,7 @@ module Aws::FSx
|
|
2185
2293
|
params: params,
|
2186
2294
|
config: config)
|
2187
2295
|
context[:gem_name] = 'aws-sdk-fsx'
|
2188
|
-
context[:gem_version] = '1.
|
2296
|
+
context[:gem_version] = '1.27.0'
|
2189
2297
|
Seahorse::Client::Request.new(handlers, context)
|
2190
2298
|
end
|
2191
2299
|
|