aws-sdk-fsx 1.20.0 → 1.25.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: 672f464f9df3f4a8e5cf72931c1d35904616c38fe7a251a10634fb9b9e2b07c2
4
- data.tar.gz: f45d7c865658096307178b18dc0e2fe997ffe2b0c83037d5c12fe0a355605b75
3
+ metadata.gz: c1388c7e6c609c449a57456d0d868f7035f39e5f93759d92812c584485a61b7a
4
+ data.tar.gz: f8799f8e30fdad5848502594889fdc4c14366207d07d2ac0dcc33f77b3303ec6
5
5
  SHA512:
6
- metadata.gz: 8c5a21f95bf10c55f586ad145bf0b2605c21dafde4a4ca11666474f7165aadd3a03761b90d833d8a8c523a472bf988614b03076d5cd4ff7ecd4e98b5ccc0a5ae
7
- data.tar.gz: 9feaaeb1e29b525b7af4be116c6704001e2f88eef349f38f9cf442529404f4ca59412a97ce665307d406cadc1bb7cc5d46352c56b02a0b427c39430c81aa2020
6
+ metadata.gz: d1bf099c033980c89488a6cdfd5b136c3f9911f53d9ecbe069fe52cc6ca6f8647bbcb27c10cbfadb3872aec1a329f8e01bf4f9383e444ee17a949896eae17cda
7
+ data.tar.gz: 7b49789c11d8aba0dbc326f95cc83c5dd3eb1ade462d845fd81bd18938b0a12deda24c08627ac500b0aad6a8dd7550c6adb20be6cfd7272b9b4ce1a7fb8f151e
@@ -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.20.0'
50
+ GEM_VERSION = '1.25.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:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::FSx
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
74
78
 
@@ -161,7 +165,7 @@ module Aws::FSx
161
165
  # @option options [String] :endpoint
162
166
  # The client endpoint is normally constructed from the `:region`
163
167
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
169
  #
166
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -357,11 +361,23 @@ module Aws::FSx
357
361
  req.send_request(options)
358
362
  end
359
363
 
360
- # Creates a backup of an existing Amazon FSx for Windows File Server
361
- # file system. Creating regular backups for your file system is a best
362
- # practice that complements the replication that Amazon FSx for Windows
363
- # File Server performs for your file system. It also enables you to
364
- # 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 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].
365
381
  #
366
382
  # If a backup with the specified client request token exists, and the
367
383
  # parameters match, this operation returns the description of the
@@ -382,30 +398,34 @@ module Aws::FSx
382
398
  # request token and the initial call created a backup, the operation
383
399
  # returns a successful result because all the parameters are the same.
384
400
  #
385
- # The `CreateFileSystem` operation returns while the backup's lifecycle
386
- # state is still `CREATING`. You can check the file system creation
387
- # status by calling the DescribeBackups operation, which returns the
388
- # 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.
389
405
  #
390
- # <note markdown="1">
391
406
  #
392
- # </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
393
410
  #
394
411
  # @option params [required, String] :file_system_id
395
412
  # The ID of the file system to back up.
396
413
  #
397
414
  # @option params [String] :client_request_token
398
- # (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
399
- # to ensure idempotent creation. This string is automatically filled on
400
- # your behalf when you use the AWS Command Line Interface (AWS CLI) or
401
- # an AWS SDK.
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.
402
419
  #
403
420
  # **A suitable default value is auto-generated.** You should normally
404
421
  # not need to pass this option.**
405
422
  #
406
423
  # @option params [Array<Types::Tag>] :tags
407
424
  # The tags to apply to the backup at backup creation. The key value of
408
- # 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.
409
429
  #
410
430
  # @return [Types::CreateBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
411
431
  #
@@ -462,8 +482,8 @@ module Aws::FSx
462
482
  # client_request_token: "ClientRequestToken",
463
483
  # tags: [
464
484
  # {
465
- # key: "TagKey",
466
- # value: "TagValue",
485
+ # key: "TagKey", # required
486
+ # value: "TagValue", # required
467
487
  # },
468
488
  # ],
469
489
  # })
@@ -519,12 +539,18 @@ module Aws::FSx
519
539
  # resp.backup.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
520
540
  # resp.backup.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
521
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"
522
543
  # resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
523
544
  # resp.backup.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
524
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
525
548
  # resp.backup.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
526
549
  # resp.backup.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
527
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
528
554
  # resp.backup.file_system.administrative_actions #=> Array
529
555
  # resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
530
556
  # resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
@@ -618,8 +644,8 @@ module Aws::FSx
618
644
  # client_request_token: "ClientRequestToken",
619
645
  # tags: [
620
646
  # {
621
- # key: "TagKey",
622
- # value: "TagValue",
647
+ # key: "TagKey", # required
648
+ # value: "TagValue", # required
623
649
  # },
624
650
  # ],
625
651
  # })
@@ -693,10 +719,10 @@ module Aws::FSx
693
719
  # </note>
694
720
  #
695
721
  # @option params [String] :client_request_token
696
- # (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
697
- # to ensure idempotent creation. This string is automatically filled on
698
- # your behalf when you use the AWS Command Line Interface (AWS CLI) or
699
- # 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.
700
726
  #
701
727
  # **A suitable default value is auto-generated.** You should normally
702
728
  # not need to pass this option.**
@@ -858,8 +884,8 @@ module Aws::FSx
858
884
  # security_group_ids: ["SecurityGroupId"],
859
885
  # tags: [
860
886
  # {
861
- # key: "TagKey",
862
- # value: "TagValue",
887
+ # key: "TagKey", # required
888
+ # value: "TagValue", # required
863
889
  # },
864
890
  # ],
865
891
  # kms_key_id: "KmsKeyId",
@@ -887,7 +913,11 @@ module Aws::FSx
887
913
  # export_path: "ArchivePath",
888
914
  # imported_file_chunk_size: 1,
889
915
  # deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
916
+ # auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
890
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,
891
921
  # },
892
922
  # })
893
923
  #
@@ -931,12 +961,18 @@ module Aws::FSx
931
961
  # resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
932
962
  # resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
933
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"
934
965
  # resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
935
966
  # resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
936
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
937
970
  # resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
938
971
  # resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
939
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
940
976
  # resp.file_system.administrative_actions #=> Array
941
977
  # resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
942
978
  # resp.file_system.administrative_actions[0].progress_percent #=> Integer
@@ -954,8 +990,8 @@ module Aws::FSx
954
990
  req.send_request(options)
955
991
  end
956
992
 
957
- # Creates a new Amazon FSx file system from an existing Amazon FSx for
958
- # Windows File Server backup.
993
+ # Creates a new Amazon FSx file system from an existing Amazon FSx
994
+ # backup.
959
995
  #
960
996
  # If a file system with the specified client request token exists and
961
997
  # the parameters match, this operation returns the description of the
@@ -996,10 +1032,10 @@ module Aws::FSx
996
1032
  # a file system from an existing backup.
997
1033
  #
998
1034
  # @option params [String] :client_request_token
999
- # (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
1000
- # to ensure idempotent creation. This string is automatically filled on
1001
- # your behalf when you use the AWS Command Line Interface (AWS CLI) or
1002
- # 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.
1003
1039
  #
1004
1040
  # **A suitable default value is auto-generated.** You should normally
1005
1041
  # not need to pass this option.**
@@ -1030,6 +1066,9 @@ module Aws::FSx
1030
1066
  # @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
1031
1067
  # The configuration for this Microsoft Windows file system.
1032
1068
  #
1069
+ # @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
1070
+ # The Lustre configuration for the file system being created.
1071
+ #
1033
1072
  # @option params [String] :storage_type
1034
1073
  # Sets the storage type for the Windows file system you're creating
1035
1074
  # from a backup. Valid values are `SSD` and `HDD`.
@@ -1120,8 +1159,8 @@ module Aws::FSx
1120
1159
  # security_group_ids: ["SecurityGroupId"],
1121
1160
  # tags: [
1122
1161
  # {
1123
- # key: "TagKey",
1124
- # value: "TagValue",
1162
+ # key: "TagKey", # required
1163
+ # value: "TagValue", # required
1125
1164
  # },
1126
1165
  # ],
1127
1166
  # windows_configuration: {
@@ -1142,6 +1181,18 @@ module Aws::FSx
1142
1181
  # automatic_backup_retention_days: 1,
1143
1182
  # copy_tags_to_backups: false,
1144
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
+ # },
1145
1196
  # storage_type: "SSD", # accepts SSD, HDD
1146
1197
  # })
1147
1198
  #
@@ -1185,12 +1236,18 @@ module Aws::FSx
1185
1236
  # resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
1186
1237
  # resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
1187
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"
1188
1240
  # resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
1189
1241
  # resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
1190
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
1191
1245
  # resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
1192
1246
  # resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
1193
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
1194
1251
  # resp.file_system.administrative_actions #=> Array
1195
1252
  # resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
1196
1253
  # resp.file_system.administrative_actions[0].progress_percent #=> Integer
@@ -1208,9 +1265,8 @@ module Aws::FSx
1208
1265
  req.send_request(options)
1209
1266
  end
1210
1267
 
1211
- # Deletes an Amazon FSx for Windows File Server backup, deleting its
1212
- # contents. After deletion, the backup no longer exists, and its data is
1213
- # gone.
1268
+ # Deletes an Amazon FSx backup, deleting its contents. After deletion,
1269
+ # the backup no longer exists, and its data is gone.
1214
1270
  #
1215
1271
  # The `DeleteBackup` call returns instantly. The backup will not show up
1216
1272
  # in later `DescribeBackups` calls.
@@ -1222,9 +1278,9 @@ module Aws::FSx
1222
1278
  # The ID of the backup you want to delete.
1223
1279
  #
1224
1280
  # @option params [String] :client_request_token
1225
- # (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
1226
- # to ensure idempotent deletion. This is automatically filled on your
1227
- # 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.
1228
1284
  #
1229
1285
  # **A suitable default value is auto-generated.** You should normally
1230
1286
  # not need to pass this option.**
@@ -1299,9 +1355,9 @@ module Aws::FSx
1299
1355
  # The ID of the file system you want to delete.
1300
1356
  #
1301
1357
  # @option params [String] :client_request_token
1302
- # (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
1303
- # to ensure idempotent deletion. This is automatically filled on your
1304
- # 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.
1305
1361
  #
1306
1362
  # **A suitable default value is auto-generated.** You should normally
1307
1363
  # not need to pass this option.**
@@ -1310,11 +1366,16 @@ module Aws::FSx
1310
1366
  # The configuration object for the Microsoft Windows file system used in
1311
1367
  # the `DeleteFileSystem` operation.
1312
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
+ #
1313
1373
  # @return [Types::DeleteFileSystemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1314
1374
  #
1315
1375
  # * {Types::DeleteFileSystemResponse#file_system_id #file_system_id} => String
1316
1376
  # * {Types::DeleteFileSystemResponse#lifecycle #lifecycle} => String
1317
1377
  # * {Types::DeleteFileSystemResponse#windows_response #windows_response} => Types::DeleteFileSystemWindowsResponse
1378
+ # * {Types::DeleteFileSystemResponse#lustre_response #lustre_response} => Types::DeleteFileSystemLustreResponse
1318
1379
  #
1319
1380
  #
1320
1381
  # @example Example: To delete a file system
@@ -1340,8 +1401,17 @@ module Aws::FSx
1340
1401
  # skip_final_backup: false,
1341
1402
  # final_backup_tags: [
1342
1403
  # {
1343
- # key: "TagKey",
1344
- # 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
1345
1415
  # },
1346
1416
  # ],
1347
1417
  # },
@@ -1355,6 +1425,10 @@ module Aws::FSx
1355
1425
  # resp.windows_response.final_backup_tags #=> Array
1356
1426
  # resp.windows_response.final_backup_tags[0].key #=> String
1357
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
1358
1432
  #
1359
1433
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystem AWS API Documentation
1360
1434
  #
@@ -1365,10 +1439,10 @@ module Aws::FSx
1365
1439
  req.send_request(options)
1366
1440
  end
1367
1441
 
1368
- # Returns the description of specific Amazon FSx for Windows File Server
1369
- # backups, if a `BackupIds` value is provided for that backup.
1370
- # Otherwise, it returns all backups owned by your AWS account in the AWS
1371
- # 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.
1372
1446
  #
1373
1447
  # When retrieving all backups, you can optionally specify the
1374
1448
  # `MaxResults` parameter to limit the number of backups in a response.
@@ -1393,25 +1467,23 @@ module Aws::FSx
1393
1467
  # responses of a multi-call iteration is unspecified.
1394
1468
  #
1395
1469
  # @option params [Array<String>] :backup_ids
1396
- # (Optional) IDs of the backups you want to retrieve (String). This
1397
- # overrides any filters. If any IDs are not found, BackupNotFound will
1398
- # 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.
1399
1472
  #
1400
1473
  # @option params [Array<Types::Filter>] :filters
1401
- # (Optional) Filters structure. Supported names are file-system-id and
1402
- # backup-type.
1474
+ # Filters structure. Supported names are file-system-id and backup-type.
1403
1475
  #
1404
1476
  # @option params [Integer] :max_results
1405
- # (Optional) Maximum number of backups to return in the response
1406
- # (integer). This parameter value must be greater than 0. The number of
1407
- # items that Amazon FSx returns is the minimum of the `MaxResults`
1408
- # parameter specified in the request and the service's internal maximum
1409
- # 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.
1410
1482
  #
1411
1483
  # @option params [String] :next_token
1412
- # (Optional) Opaque pagination token returned from a previous
1413
- # `DescribeBackups` operation (String). If a token present, the action
1414
- # 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.
1415
1487
  #
1416
1488
  # @return [Types::DescribeBackupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1417
1489
  #
@@ -1464,7 +1536,7 @@ module Aws::FSx
1464
1536
  # backup_ids: ["BackupId"],
1465
1537
  # filters: [
1466
1538
  # {
1467
- # name: "file-system-id", # accepts file-system-id, backup-type
1539
+ # name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
1468
1540
  # values: ["FilterValue"],
1469
1541
  # },
1470
1542
  # ],
@@ -1524,12 +1596,18 @@ module Aws::FSx
1524
1596
  # resp.backups[0].file_system.windows_configuration.automatic_backup_retention_days #=> Integer
1525
1597
  # resp.backups[0].file_system.windows_configuration.copy_tags_to_backups #=> Boolean
1526
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"
1527
1600
  # resp.backups[0].file_system.lustre_configuration.data_repository_configuration.import_path #=> String
1528
1601
  # resp.backups[0].file_system.lustre_configuration.data_repository_configuration.export_path #=> String
1529
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
1530
1605
  # resp.backups[0].file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
1531
1606
  # resp.backups[0].file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
1532
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
1533
1611
  # resp.backups[0].file_system.administrative_actions #=> Array
1534
1612
  # resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
1535
1613
  # resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
@@ -1669,20 +1747,20 @@ module Aws::FSx
1669
1747
  # across the responses of a multicall iteration is unspecified.
1670
1748
  #
1671
1749
  # @option params [Array<String>] :file_system_ids
1672
- # (Optional) IDs of the file systems whose descriptions you want to
1673
- # retrieve (String).
1750
+ # IDs of the file systems whose descriptions you want to retrieve
1751
+ # (String).
1674
1752
  #
1675
1753
  # @option params [Integer] :max_results
1676
- # (Optional) Maximum number of file systems to return in the response
1677
- # (integer). This parameter value must be greater than 0. The number of
1678
- # items that Amazon FSx returns is the minimum of the `MaxResults`
1679
- # parameter specified in the request and the service's internal maximum
1680
- # 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.
1681
1759
  #
1682
1760
  # @option params [String] :next_token
1683
- # (Optional) Opaque pagination token returned from a previous
1684
- # `DescribeFileSystems` operation (String). If a token present, the
1685
- # 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.
1686
1764
  #
1687
1765
  # @return [Types::DescribeFileSystemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1688
1766
  #
@@ -1784,12 +1862,18 @@ module Aws::FSx
1784
1862
  # resp.file_systems[0].windows_configuration.automatic_backup_retention_days #=> Integer
1785
1863
  # resp.file_systems[0].windows_configuration.copy_tags_to_backups #=> Boolean
1786
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"
1787
1866
  # resp.file_systems[0].lustre_configuration.data_repository_configuration.import_path #=> String
1788
1867
  # resp.file_systems[0].lustre_configuration.data_repository_configuration.export_path #=> String
1789
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
1790
1871
  # resp.file_systems[0].lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
1791
1872
  # resp.file_systems[0].lustre_configuration.per_unit_storage_throughput #=> Integer
1792
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
1793
1877
  # resp.file_systems[0].administrative_actions #=> Array
1794
1878
  # resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
1795
1879
  # resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
@@ -1836,16 +1920,16 @@ module Aws::FSx
1836
1920
  # The ARN of the Amazon FSx resource that will have its tags listed.
1837
1921
  #
1838
1922
  # @option params [Integer] :max_results
1839
- # (Optional) Maximum number of tags to return in the response (integer).
1840
- # 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
1841
1925
  # Amazon FSx returns is the minimum of the `MaxResults` parameter
1842
1926
  # specified in the request and the service's internal maximum number of
1843
1927
  # items per page.
1844
1928
  #
1845
1929
  # @option params [String] :next_token
1846
- # (Optional) Opaque pagination token returned from a previous
1847
- # `ListTagsForResource` operation (String). If a token present, the
1848
- # 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.
1849
1933
  #
1850
1934
  # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1851
1935
  #
@@ -1928,8 +2012,8 @@ module Aws::FSx
1928
2012
  # resource_arn: "ResourceARN", # required
1929
2013
  # tags: [ # required
1930
2014
  # {
1931
- # key: "TagKey",
1932
- # value: "TagValue",
2015
+ # key: "TagKey", # required
2016
+ # value: "TagValue", # required
1933
2017
  # },
1934
2018
  # ],
1935
2019
  # })
@@ -1983,9 +2067,11 @@ module Aws::FSx
1983
2067
  end
1984
2068
 
1985
2069
  # Use this operation to update the configuration of an existing Amazon
1986
- # FSx file system. For an Amazon FSx for Lustre file system, you can
1987
- # update only the WeeklyMaintenanceStartTime. For an Amazon for Windows
1988
- # 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:
1989
2075
  #
1990
2076
  # * AutomaticBackupRetentionDays
1991
2077
  #
@@ -1999,7 +2085,16 @@ module Aws::FSx
1999
2085
  #
2000
2086
  # * WeeklyMaintenanceStartTime
2001
2087
  #
2002
- # 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
2003
2098
  #
2004
2099
  # @option params [required, String] :file_system_id
2005
2100
  # Identifies the file system that you are updating.
@@ -2102,6 +2197,9 @@ module Aws::FSx
2102
2197
  # },
2103
2198
  # lustre_configuration: {
2104
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
2105
2203
  # },
2106
2204
  # })
2107
2205
  #
@@ -2145,12 +2243,18 @@ module Aws::FSx
2145
2243
  # resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
2146
2244
  # resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
2147
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"
2148
2247
  # resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
2149
2248
  # resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
2150
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
2151
2252
  # resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
2152
2253
  # resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
2153
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
2154
2258
  # resp.file_system.administrative_actions #=> Array
2155
2259
  # resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
2156
2260
  # resp.file_system.administrative_actions[0].progress_percent #=> Integer
@@ -2181,7 +2285,7 @@ module Aws::FSx
2181
2285
  params: params,
2182
2286
  config: config)
2183
2287
  context[:gem_name] = 'aws-sdk-fsx'
2184
- context[:gem_version] = '1.20.0'
2288
+ context[:gem_version] = '1.25.0'
2185
2289
  Seahorse::Client::Request.new(handlers, context)
2186
2290
  end
2187
2291