aws-sdk-fsx 1.18.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 +3 -1
- data/lib/aws-sdk-fsx/client.rb +223 -81
- data/lib/aws-sdk-fsx/client_api.rb +47 -0
- data/lib/aws-sdk-fsx/errors.rb +2 -0
- data/lib/aws-sdk-fsx/resource.rb +2 -0
- data/lib/aws-sdk-fsx/types.rb +505 -89
- metadata +4 -4
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
@@ -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.
|
50
|
+
GEM_VERSION = '1.23.0'
|
49
51
|
|
50
52
|
end
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -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
|
@@ -176,7 +180,7 @@ module Aws::FSx
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -357,11 +361,20 @@ module Aws::FSx
|
|
357
361
|
req.send_request(options)
|
358
362
|
end
|
359
363
|
|
360
|
-
# Creates a backup of an existing Amazon FSx
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
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].
|
365
378
|
#
|
366
379
|
# If a backup with the specified client request token exists, and the
|
367
380
|
# parameters match, this operation returns the description of the
|
@@ -382,30 +395,33 @@ module Aws::FSx
|
|
382
395
|
# request token and the initial call created a backup, the operation
|
383
396
|
# returns a successful result because all the parameters are the same.
|
384
397
|
#
|
385
|
-
# The `
|
386
|
-
# state is still `CREATING`. You can check the
|
387
|
-
#
|
388
|
-
#
|
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.
|
389
402
|
#
|
390
|
-
# <note markdown="1">
|
391
403
|
#
|
392
|
-
#
|
404
|
+
#
|
405
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-backups.html
|
393
406
|
#
|
394
407
|
# @option params [required, String] :file_system_id
|
395
408
|
# The ID of the file system to back up.
|
396
409
|
#
|
397
410
|
# @option params [String] :client_request_token
|
398
|
-
#
|
399
|
-
#
|
400
|
-
#
|
401
|
-
#
|
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.
|
402
415
|
#
|
403
416
|
# **A suitable default value is auto-generated.** You should normally
|
404
417
|
# not need to pass this option.**
|
405
418
|
#
|
406
419
|
# @option params [Array<Types::Tag>] :tags
|
407
420
|
# 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.
|
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.
|
409
425
|
#
|
410
426
|
# @return [Types::CreateBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
411
427
|
#
|
@@ -525,6 +541,16 @@ module Aws::FSx
|
|
525
541
|
# resp.backup.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
526
542
|
# resp.backup.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
527
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
|
547
|
+
# resp.backup.file_system.administrative_actions #=> Array
|
548
|
+
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
549
|
+
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
550
|
+
# resp.backup.file_system.administrative_actions[0].request_time #=> Time
|
551
|
+
# resp.backup.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
552
|
+
# resp.backup.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
553
|
+
# resp.backup.file_system.administrative_actions[0].failure_details.message #=> String
|
528
554
|
# resp.backup.directory_information.domain_name #=> String
|
529
555
|
# resp.backup.directory_information.active_directory_id #=> String
|
530
556
|
#
|
@@ -686,10 +712,10 @@ module Aws::FSx
|
|
686
712
|
# </note>
|
687
713
|
#
|
688
714
|
# @option params [String] :client_request_token
|
689
|
-
#
|
690
|
-
#
|
691
|
-
#
|
692
|
-
#
|
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.
|
693
719
|
#
|
694
720
|
# **A suitable default value is auto-generated.** You should normally
|
695
721
|
# not need to pass this option.**
|
@@ -731,7 +757,7 @@ module Aws::FSx
|
|
731
757
|
#
|
732
758
|
#
|
733
759
|
#
|
734
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-
|
760
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
735
761
|
#
|
736
762
|
# @option params [required, Array<String>] :subnet_ids
|
737
763
|
# Specifies the IDs of the subnets that the file system will be
|
@@ -881,6 +907,9 @@ module Aws::FSx
|
|
881
907
|
# imported_file_chunk_size: 1,
|
882
908
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
883
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,
|
884
913
|
# },
|
885
914
|
# })
|
886
915
|
#
|
@@ -930,6 +959,16 @@ module Aws::FSx
|
|
930
959
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
931
960
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
932
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
|
965
|
+
# resp.file_system.administrative_actions #=> Array
|
966
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
967
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
968
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
969
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
970
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
971
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
933
972
|
#
|
934
973
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystem AWS API Documentation
|
935
974
|
#
|
@@ -940,8 +979,8 @@ module Aws::FSx
|
|
940
979
|
req.send_request(options)
|
941
980
|
end
|
942
981
|
|
943
|
-
# Creates a new Amazon FSx file system from an existing Amazon FSx
|
944
|
-
#
|
982
|
+
# Creates a new Amazon FSx file system from an existing Amazon FSx
|
983
|
+
# backup.
|
945
984
|
#
|
946
985
|
# If a file system with the specified client request token exists and
|
947
986
|
# the parameters match, this operation returns the description of the
|
@@ -982,10 +1021,10 @@ module Aws::FSx
|
|
982
1021
|
# a file system from an existing backup.
|
983
1022
|
#
|
984
1023
|
# @option params [String] :client_request_token
|
985
|
-
#
|
986
|
-
#
|
987
|
-
#
|
988
|
-
#
|
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.
|
989
1028
|
#
|
990
1029
|
# **A suitable default value is auto-generated.** You should normally
|
991
1030
|
# not need to pass this option.**
|
@@ -1016,6 +1055,9 @@ module Aws::FSx
|
|
1016
1055
|
# @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
|
1017
1056
|
# The configuration for this Microsoft Windows file system.
|
1018
1057
|
#
|
1058
|
+
# @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
|
1059
|
+
# The Lustre configuration for the file system being created.
|
1060
|
+
#
|
1019
1061
|
# @option params [String] :storage_type
|
1020
1062
|
# Sets the storage type for the Windows file system you're creating
|
1021
1063
|
# from a backup. Valid values are `SSD` and `HDD`.
|
@@ -1128,6 +1170,17 @@ module Aws::FSx
|
|
1128
1170
|
# automatic_backup_retention_days: 1,
|
1129
1171
|
# copy_tags_to_backups: false,
|
1130
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
|
+
# },
|
1131
1184
|
# storage_type: "SSD", # accepts SSD, HDD
|
1132
1185
|
# })
|
1133
1186
|
#
|
@@ -1177,6 +1230,16 @@ module Aws::FSx
|
|
1177
1230
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1178
1231
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1179
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
|
1236
|
+
# resp.file_system.administrative_actions #=> Array
|
1237
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1238
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
1239
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
1240
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
1241
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
1242
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
1180
1243
|
#
|
1181
1244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemFromBackup AWS API Documentation
|
1182
1245
|
#
|
@@ -1187,9 +1250,8 @@ module Aws::FSx
|
|
1187
1250
|
req.send_request(options)
|
1188
1251
|
end
|
1189
1252
|
|
1190
|
-
# Deletes an Amazon FSx
|
1191
|
-
#
|
1192
|
-
# gone.
|
1253
|
+
# Deletes an Amazon FSx backup, deleting its contents. After deletion,
|
1254
|
+
# the backup no longer exists, and its data is gone.
|
1193
1255
|
#
|
1194
1256
|
# The `DeleteBackup` call returns instantly. The backup will not show up
|
1195
1257
|
# in later `DescribeBackups` calls.
|
@@ -1201,9 +1263,9 @@ module Aws::FSx
|
|
1201
1263
|
# The ID of the backup you want to delete.
|
1202
1264
|
#
|
1203
1265
|
# @option params [String] :client_request_token
|
1204
|
-
#
|
1205
|
-
#
|
1206
|
-
#
|
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.
|
1207
1269
|
#
|
1208
1270
|
# **A suitable default value is auto-generated.** You should normally
|
1209
1271
|
# not need to pass this option.**
|
@@ -1278,9 +1340,9 @@ module Aws::FSx
|
|
1278
1340
|
# The ID of the file system you want to delete.
|
1279
1341
|
#
|
1280
1342
|
# @option params [String] :client_request_token
|
1281
|
-
#
|
1282
|
-
#
|
1283
|
-
#
|
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.
|
1284
1346
|
#
|
1285
1347
|
# **A suitable default value is auto-generated.** You should normally
|
1286
1348
|
# not need to pass this option.**
|
@@ -1289,11 +1351,16 @@ module Aws::FSx
|
|
1289
1351
|
# The configuration object for the Microsoft Windows file system used in
|
1290
1352
|
# the `DeleteFileSystem` operation.
|
1291
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
|
+
#
|
1292
1358
|
# @return [Types::DeleteFileSystemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1293
1359
|
#
|
1294
1360
|
# * {Types::DeleteFileSystemResponse#file_system_id #file_system_id} => String
|
1295
1361
|
# * {Types::DeleteFileSystemResponse#lifecycle #lifecycle} => String
|
1296
1362
|
# * {Types::DeleteFileSystemResponse#windows_response #windows_response} => Types::DeleteFileSystemWindowsResponse
|
1363
|
+
# * {Types::DeleteFileSystemResponse#lustre_response #lustre_response} => Types::DeleteFileSystemLustreResponse
|
1297
1364
|
#
|
1298
1365
|
#
|
1299
1366
|
# @example Example: To delete a file system
|
@@ -1324,6 +1391,15 @@ module Aws::FSx
|
|
1324
1391
|
# },
|
1325
1392
|
# ],
|
1326
1393
|
# },
|
1394
|
+
# lustre_configuration: {
|
1395
|
+
# skip_final_backup: false,
|
1396
|
+
# final_backup_tags: [
|
1397
|
+
# {
|
1398
|
+
# key: "TagKey",
|
1399
|
+
# value: "TagValue",
|
1400
|
+
# },
|
1401
|
+
# ],
|
1402
|
+
# },
|
1327
1403
|
# })
|
1328
1404
|
#
|
1329
1405
|
# @example Response structure
|
@@ -1334,6 +1410,10 @@ module Aws::FSx
|
|
1334
1410
|
# resp.windows_response.final_backup_tags #=> Array
|
1335
1411
|
# resp.windows_response.final_backup_tags[0].key #=> String
|
1336
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
|
1337
1417
|
#
|
1338
1418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystem AWS API Documentation
|
1339
1419
|
#
|
@@ -1344,10 +1424,10 @@ module Aws::FSx
|
|
1344
1424
|
req.send_request(options)
|
1345
1425
|
end
|
1346
1426
|
|
1347
|
-
# Returns the description of specific Amazon FSx
|
1348
|
-
#
|
1349
|
-
#
|
1350
|
-
#
|
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.
|
1351
1431
|
#
|
1352
1432
|
# When retrieving all backups, you can optionally specify the
|
1353
1433
|
# `MaxResults` parameter to limit the number of backups in a response.
|
@@ -1372,25 +1452,23 @@ module Aws::FSx
|
|
1372
1452
|
# responses of a multi-call iteration is unspecified.
|
1373
1453
|
#
|
1374
1454
|
# @option params [Array<String>] :backup_ids
|
1375
|
-
#
|
1376
|
-
#
|
1377
|
-
# 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.
|
1378
1457
|
#
|
1379
1458
|
# @option params [Array<Types::Filter>] :filters
|
1380
|
-
#
|
1381
|
-
# backup-type.
|
1459
|
+
# Filters structure. Supported names are file-system-id and backup-type.
|
1382
1460
|
#
|
1383
1461
|
# @option params [Integer] :max_results
|
1384
|
-
#
|
1385
|
-
#
|
1386
|
-
#
|
1387
|
-
#
|
1388
|
-
#
|
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.
|
1389
1467
|
#
|
1390
1468
|
# @option params [String] :next_token
|
1391
|
-
#
|
1392
|
-
#
|
1393
|
-
#
|
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.
|
1394
1472
|
#
|
1395
1473
|
# @return [Types::DescribeBackupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1396
1474
|
#
|
@@ -1443,7 +1521,7 @@ module Aws::FSx
|
|
1443
1521
|
# backup_ids: ["BackupId"],
|
1444
1522
|
# filters: [
|
1445
1523
|
# {
|
1446
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
1524
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
1447
1525
|
# values: ["FilterValue"],
|
1448
1526
|
# },
|
1449
1527
|
# ],
|
@@ -1509,6 +1587,16 @@ module Aws::FSx
|
|
1509
1587
|
# resp.backups[0].file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1510
1588
|
# resp.backups[0].file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1511
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
|
1593
|
+
# resp.backups[0].file_system.administrative_actions #=> Array
|
1594
|
+
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1595
|
+
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
1596
|
+
# resp.backups[0].file_system.administrative_actions[0].request_time #=> Time
|
1597
|
+
# resp.backups[0].file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
1598
|
+
# resp.backups[0].file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
1599
|
+
# resp.backups[0].file_system.administrative_actions[0].failure_details.message #=> String
|
1512
1600
|
# resp.backups[0].directory_information.domain_name #=> String
|
1513
1601
|
# resp.backups[0].directory_information.active_directory_id #=> String
|
1514
1602
|
# resp.next_token #=> String
|
@@ -1641,20 +1729,20 @@ module Aws::FSx
|
|
1641
1729
|
# across the responses of a multicall iteration is unspecified.
|
1642
1730
|
#
|
1643
1731
|
# @option params [Array<String>] :file_system_ids
|
1644
|
-
#
|
1645
|
-
#
|
1732
|
+
# IDs of the file systems whose descriptions you want to retrieve
|
1733
|
+
# (String).
|
1646
1734
|
#
|
1647
1735
|
# @option params [Integer] :max_results
|
1648
|
-
#
|
1649
|
-
#
|
1650
|
-
#
|
1651
|
-
#
|
1652
|
-
#
|
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.
|
1653
1741
|
#
|
1654
1742
|
# @option params [String] :next_token
|
1655
|
-
#
|
1656
|
-
#
|
1657
|
-
#
|
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.
|
1658
1746
|
#
|
1659
1747
|
# @return [Types::DescribeFileSystemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1660
1748
|
#
|
@@ -1762,6 +1850,16 @@ module Aws::FSx
|
|
1762
1850
|
# resp.file_systems[0].lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1763
1851
|
# resp.file_systems[0].lustre_configuration.per_unit_storage_throughput #=> Integer
|
1764
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
|
1856
|
+
# resp.file_systems[0].administrative_actions #=> Array
|
1857
|
+
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
1858
|
+
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
1859
|
+
# resp.file_systems[0].administrative_actions[0].request_time #=> Time
|
1860
|
+
# resp.file_systems[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
1861
|
+
# resp.file_systems[0].administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
1862
|
+
# resp.file_systems[0].administrative_actions[0].failure_details.message #=> String
|
1765
1863
|
# resp.next_token #=> String
|
1766
1864
|
#
|
1767
1865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeFileSystems AWS API Documentation
|
@@ -1801,16 +1899,16 @@ module Aws::FSx
|
|
1801
1899
|
# The ARN of the Amazon FSx resource that will have its tags listed.
|
1802
1900
|
#
|
1803
1901
|
# @option params [Integer] :max_results
|
1804
|
-
#
|
1805
|
-
#
|
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
|
1806
1904
|
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1807
1905
|
# specified in the request and the service's internal maximum number of
|
1808
1906
|
# items per page.
|
1809
1907
|
#
|
1810
1908
|
# @option params [String] :next_token
|
1811
|
-
#
|
1812
|
-
#
|
1813
|
-
#
|
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.
|
1814
1912
|
#
|
1815
1913
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1816
1914
|
#
|
@@ -1947,24 +2045,54 @@ module Aws::FSx
|
|
1947
2045
|
req.send_request(options)
|
1948
2046
|
end
|
1949
2047
|
|
1950
|
-
#
|
2048
|
+
# Use this operation to update the configuration of an existing Amazon
|
2049
|
+
# FSx file system. For an Amazon FSx for Lustre file system, you can
|
2050
|
+
# update only the WeeklyMaintenanceStartTime. For an Amazon for Windows
|
2051
|
+
# File Server file system, you can update the following properties:
|
2052
|
+
#
|
2053
|
+
# * AutomaticBackupRetentionDays
|
2054
|
+
#
|
2055
|
+
# * DailyAutomaticBackupStartTime
|
2056
|
+
#
|
2057
|
+
# * SelfManagedActiveDirectoryConfiguration
|
2058
|
+
#
|
2059
|
+
# * StorageCapacity
|
2060
|
+
#
|
2061
|
+
# * ThroughputCapacity
|
2062
|
+
#
|
2063
|
+
# * WeeklyMaintenanceStartTime
|
2064
|
+
#
|
2065
|
+
# You can update multiple properties in a single request.
|
1951
2066
|
#
|
1952
2067
|
# @option params [required, String] :file_system_id
|
1953
|
-
#
|
2068
|
+
# Identifies the file system that you are updating.
|
1954
2069
|
#
|
1955
2070
|
# @option params [String] :client_request_token
|
1956
|
-
#
|
1957
|
-
#
|
1958
|
-
#
|
1959
|
-
# an AWS SDK.
|
2071
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
2072
|
+
# idempotent updates. This string is automatically filled on your behalf
|
2073
|
+
# when you use the AWS Command Line Interface (AWS CLI) or an AWS SDK.
|
1960
2074
|
#
|
1961
2075
|
# **A suitable default value is auto-generated.** You should normally
|
1962
2076
|
# not need to pass this option.**
|
1963
2077
|
#
|
2078
|
+
# @option params [Integer] :storage_capacity
|
2079
|
+
# Use this parameter to increase the storage capacity of an Amazon FSx
|
2080
|
+
# for Windows File Server file system. Specifies the storage capacity
|
2081
|
+
# target value, GiB, for the file system you're updating. The storage
|
2082
|
+
# capacity target value must be at least 10 percent (%) greater than the
|
2083
|
+
# current storage capacity value. In order to increase storage capacity,
|
2084
|
+
# the file system needs to have at least 16 MB/s of throughput capacity.
|
2085
|
+
# You cannot make a storage capacity increase request if there is an
|
2086
|
+
# existing storage capacity increase request in progress. For more
|
2087
|
+
# information, see [Managing Storage Capacity][1].
|
2088
|
+
#
|
2089
|
+
#
|
2090
|
+
#
|
2091
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
2092
|
+
#
|
1964
2093
|
# @option params [Types::UpdateFileSystemWindowsConfiguration] :windows_configuration
|
1965
|
-
# The configuration
|
1966
|
-
#
|
1967
|
-
# self-managed Active Directory configuration.
|
2094
|
+
# The configuration updates for an Amazon FSx for Windows File Server
|
2095
|
+
# file system.
|
1968
2096
|
#
|
1969
2097
|
# @option params [Types::UpdateFileSystemLustreConfiguration] :lustre_configuration
|
1970
2098
|
# The configuration object for Amazon FSx for Lustre file systems used
|
@@ -2023,10 +2151,12 @@ module Aws::FSx
|
|
2023
2151
|
# resp = client.update_file_system({
|
2024
2152
|
# file_system_id: "FileSystemId", # required
|
2025
2153
|
# client_request_token: "ClientRequestToken",
|
2154
|
+
# storage_capacity: 1,
|
2026
2155
|
# windows_configuration: {
|
2027
2156
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2028
2157
|
# daily_automatic_backup_start_time: "DailyTime",
|
2029
2158
|
# automatic_backup_retention_days: 1,
|
2159
|
+
# throughput_capacity: 1,
|
2030
2160
|
# self_managed_active_directory_configuration: {
|
2031
2161
|
# user_name: "DirectoryUserName",
|
2032
2162
|
# password: "DirectoryPassword",
|
@@ -2035,6 +2165,8 @@ module Aws::FSx
|
|
2035
2165
|
# },
|
2036
2166
|
# lustre_configuration: {
|
2037
2167
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2168
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
2169
|
+
# automatic_backup_retention_days: 1,
|
2038
2170
|
# },
|
2039
2171
|
# })
|
2040
2172
|
#
|
@@ -2084,6 +2216,16 @@ module Aws::FSx
|
|
2084
2216
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
2085
2217
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
2086
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
|
2222
|
+
# resp.file_system.administrative_actions #=> Array
|
2223
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
2224
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
2225
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
2226
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
2227
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
2228
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
2087
2229
|
#
|
2088
2230
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystem AWS API Documentation
|
2089
2231
|
#
|
@@ -2107,7 +2249,7 @@ module Aws::FSx
|
|
2107
2249
|
params: params,
|
2108
2250
|
config: config)
|
2109
2251
|
context[:gem_name] = 'aws-sdk-fsx'
|
2110
|
-
context[:gem_version] = '1.
|
2252
|
+
context[:gem_version] = '1.23.0'
|
2111
2253
|
Seahorse::Client::Request.new(handlers, context)
|
2112
2254
|
end
|
2113
2255
|
|