aws-sdk-fsx 1.19.0 → 1.24.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 +255 -92
- data/lib/aws-sdk-fsx/client_api.rb +60 -2
- 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 +642 -106
- 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: 600acceb0e74ef1e4f0d9468c9a3a514a7fa7d636b5e2c093c1413ba700e9f97
|
|
4
|
+
data.tar.gz: 3bc1d142ac0cac9982e4f88867afb47219090d215857bd3b95433a9986777105
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 39b6271f085a3bfb9045a968154a352fb80212bc4eaea2e7dc815c38b772f4c320e105f9908b772fb3f8decc0f263edd68d873c165a2f779636209daa6a6e22b
|
|
7
|
+
data.tar.gz: ac4255fc2bbc8b7b393ae97234284ae256cf18c3567da81f40300739279e2ef3363fdf86dffc26f7c82ceb219cca3fcc50986fd55f8faad0bb600044efd383bc
|
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.24.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
|
|
@@ -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
|
#
|
|
@@ -462,8 +478,8 @@ module Aws::FSx
|
|
|
462
478
|
# client_request_token: "ClientRequestToken",
|
|
463
479
|
# tags: [
|
|
464
480
|
# {
|
|
465
|
-
# key: "TagKey",
|
|
466
|
-
# value: "TagValue",
|
|
481
|
+
# key: "TagKey", # required
|
|
482
|
+
# value: "TagValue", # required
|
|
467
483
|
# },
|
|
468
484
|
# ],
|
|
469
485
|
# })
|
|
@@ -519,12 +535,25 @@ module Aws::FSx
|
|
|
519
535
|
# resp.backup.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
|
520
536
|
# resp.backup.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
|
521
537
|
# resp.backup.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
538
|
+
# resp.backup.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
522
539
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
523
540
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
|
524
541
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
|
542
|
+
# resp.backup.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
|
543
|
+
# resp.backup.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
|
525
544
|
# resp.backup.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
526
545
|
# resp.backup.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
527
546
|
# resp.backup.file_system.lustre_configuration.mount_name #=> String
|
|
547
|
+
# resp.backup.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
|
548
|
+
# resp.backup.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
549
|
+
# resp.backup.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
550
|
+
# resp.backup.file_system.administrative_actions #=> Array
|
|
551
|
+
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
552
|
+
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
553
|
+
# resp.backup.file_system.administrative_actions[0].request_time #=> Time
|
|
554
|
+
# resp.backup.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
555
|
+
# resp.backup.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
556
|
+
# resp.backup.file_system.administrative_actions[0].failure_details.message #=> String
|
|
528
557
|
# resp.backup.directory_information.domain_name #=> String
|
|
529
558
|
# resp.backup.directory_information.active_directory_id #=> String
|
|
530
559
|
#
|
|
@@ -611,8 +640,8 @@ module Aws::FSx
|
|
|
611
640
|
# client_request_token: "ClientRequestToken",
|
|
612
641
|
# tags: [
|
|
613
642
|
# {
|
|
614
|
-
# key: "TagKey",
|
|
615
|
-
# value: "TagValue",
|
|
643
|
+
# key: "TagKey", # required
|
|
644
|
+
# value: "TagValue", # required
|
|
616
645
|
# },
|
|
617
646
|
# ],
|
|
618
647
|
# })
|
|
@@ -686,10 +715,10 @@ module Aws::FSx
|
|
|
686
715
|
# </note>
|
|
687
716
|
#
|
|
688
717
|
# @option params [String] :client_request_token
|
|
689
|
-
#
|
|
690
|
-
#
|
|
691
|
-
#
|
|
692
|
-
#
|
|
718
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
|
719
|
+
# idempotent creation. This string is automatically filled on your
|
|
720
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
|
721
|
+
# SDK.
|
|
693
722
|
#
|
|
694
723
|
# **A suitable default value is auto-generated.** You should normally
|
|
695
724
|
# not need to pass this option.**
|
|
@@ -731,7 +760,7 @@ module Aws::FSx
|
|
|
731
760
|
#
|
|
732
761
|
#
|
|
733
762
|
#
|
|
734
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-
|
|
763
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
|
735
764
|
#
|
|
736
765
|
# @option params [required, Array<String>] :subnet_ids
|
|
737
766
|
# Specifies the IDs of the subnets that the file system will be
|
|
@@ -851,8 +880,8 @@ module Aws::FSx
|
|
|
851
880
|
# security_group_ids: ["SecurityGroupId"],
|
|
852
881
|
# tags: [
|
|
853
882
|
# {
|
|
854
|
-
# key: "TagKey",
|
|
855
|
-
# value: "TagValue",
|
|
883
|
+
# key: "TagKey", # required
|
|
884
|
+
# value: "TagValue", # required
|
|
856
885
|
# },
|
|
857
886
|
# ],
|
|
858
887
|
# kms_key_id: "KmsKeyId",
|
|
@@ -880,7 +909,11 @@ module Aws::FSx
|
|
|
880
909
|
# export_path: "ArchivePath",
|
|
881
910
|
# imported_file_chunk_size: 1,
|
|
882
911
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
|
912
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
|
883
913
|
# per_unit_storage_throughput: 1,
|
|
914
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
|
915
|
+
# automatic_backup_retention_days: 1,
|
|
916
|
+
# copy_tags_to_backups: false,
|
|
884
917
|
# },
|
|
885
918
|
# })
|
|
886
919
|
#
|
|
@@ -924,12 +957,25 @@ module Aws::FSx
|
|
|
924
957
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
|
925
958
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
|
926
959
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
960
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
927
961
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
928
962
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
|
929
963
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
|
964
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
|
965
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
|
930
966
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
931
967
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
932
968
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
|
969
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
|
970
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
971
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
972
|
+
# resp.file_system.administrative_actions #=> Array
|
|
973
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
974
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
975
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
976
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
977
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
978
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
|
933
979
|
#
|
|
934
980
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystem AWS API Documentation
|
|
935
981
|
#
|
|
@@ -940,8 +986,8 @@ module Aws::FSx
|
|
|
940
986
|
req.send_request(options)
|
|
941
987
|
end
|
|
942
988
|
|
|
943
|
-
# Creates a new Amazon FSx file system from an existing Amazon FSx
|
|
944
|
-
#
|
|
989
|
+
# Creates a new Amazon FSx file system from an existing Amazon FSx
|
|
990
|
+
# backup.
|
|
945
991
|
#
|
|
946
992
|
# If a file system with the specified client request token exists and
|
|
947
993
|
# the parameters match, this operation returns the description of the
|
|
@@ -982,10 +1028,10 @@ module Aws::FSx
|
|
|
982
1028
|
# a file system from an existing backup.
|
|
983
1029
|
#
|
|
984
1030
|
# @option params [String] :client_request_token
|
|
985
|
-
#
|
|
986
|
-
#
|
|
987
|
-
#
|
|
988
|
-
#
|
|
1031
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
|
1032
|
+
# idempotent creation. This string is automatically filled on your
|
|
1033
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an AWS
|
|
1034
|
+
# SDK.
|
|
989
1035
|
#
|
|
990
1036
|
# **A suitable default value is auto-generated.** You should normally
|
|
991
1037
|
# not need to pass this option.**
|
|
@@ -1016,6 +1062,9 @@ module Aws::FSx
|
|
|
1016
1062
|
# @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
|
|
1017
1063
|
# The configuration for this Microsoft Windows file system.
|
|
1018
1064
|
#
|
|
1065
|
+
# @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
|
|
1066
|
+
# The Lustre configuration for the file system being created.
|
|
1067
|
+
#
|
|
1019
1068
|
# @option params [String] :storage_type
|
|
1020
1069
|
# Sets the storage type for the Windows file system you're creating
|
|
1021
1070
|
# from a backup. Valid values are `SSD` and `HDD`.
|
|
@@ -1106,8 +1155,8 @@ module Aws::FSx
|
|
|
1106
1155
|
# security_group_ids: ["SecurityGroupId"],
|
|
1107
1156
|
# tags: [
|
|
1108
1157
|
# {
|
|
1109
|
-
# key: "TagKey",
|
|
1110
|
-
# value: "TagValue",
|
|
1158
|
+
# key: "TagKey", # required
|
|
1159
|
+
# value: "TagValue", # required
|
|
1111
1160
|
# },
|
|
1112
1161
|
# ],
|
|
1113
1162
|
# windows_configuration: {
|
|
@@ -1128,6 +1177,18 @@ module Aws::FSx
|
|
|
1128
1177
|
# automatic_backup_retention_days: 1,
|
|
1129
1178
|
# copy_tags_to_backups: false,
|
|
1130
1179
|
# },
|
|
1180
|
+
# lustre_configuration: {
|
|
1181
|
+
# weekly_maintenance_start_time: "WeeklyTime",
|
|
1182
|
+
# import_path: "ArchivePath",
|
|
1183
|
+
# export_path: "ArchivePath",
|
|
1184
|
+
# imported_file_chunk_size: 1,
|
|
1185
|
+
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
|
1186
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
|
1187
|
+
# per_unit_storage_throughput: 1,
|
|
1188
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
|
1189
|
+
# automatic_backup_retention_days: 1,
|
|
1190
|
+
# copy_tags_to_backups: false,
|
|
1191
|
+
# },
|
|
1131
1192
|
# storage_type: "SSD", # accepts SSD, HDD
|
|
1132
1193
|
# })
|
|
1133
1194
|
#
|
|
@@ -1171,12 +1232,25 @@ module Aws::FSx
|
|
|
1171
1232
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
|
1172
1233
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
|
1173
1234
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
1235
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
1174
1236
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
1175
1237
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
|
1176
1238
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
|
1239
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
|
1240
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
|
1177
1241
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
1178
1242
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
1179
1243
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
|
1244
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
|
1245
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
1246
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
1247
|
+
# resp.file_system.administrative_actions #=> Array
|
|
1248
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
1249
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
1250
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
1251
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
1252
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
1253
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
|
1180
1254
|
#
|
|
1181
1255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemFromBackup AWS API Documentation
|
|
1182
1256
|
#
|
|
@@ -1187,9 +1261,8 @@ module Aws::FSx
|
|
|
1187
1261
|
req.send_request(options)
|
|
1188
1262
|
end
|
|
1189
1263
|
|
|
1190
|
-
# Deletes an Amazon FSx
|
|
1191
|
-
#
|
|
1192
|
-
# gone.
|
|
1264
|
+
# Deletes an Amazon FSx backup, deleting its contents. After deletion,
|
|
1265
|
+
# the backup no longer exists, and its data is gone.
|
|
1193
1266
|
#
|
|
1194
1267
|
# The `DeleteBackup` call returns instantly. The backup will not show up
|
|
1195
1268
|
# in later `DescribeBackups` calls.
|
|
@@ -1201,9 +1274,9 @@ module Aws::FSx
|
|
|
1201
1274
|
# The ID of the backup you want to delete.
|
|
1202
1275
|
#
|
|
1203
1276
|
# @option params [String] :client_request_token
|
|
1204
|
-
#
|
|
1205
|
-
#
|
|
1206
|
-
#
|
|
1277
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
|
1278
|
+
# idempotent deletion. This is automatically filled on your behalf when
|
|
1279
|
+
# using the AWS CLI or SDK.
|
|
1207
1280
|
#
|
|
1208
1281
|
# **A suitable default value is auto-generated.** You should normally
|
|
1209
1282
|
# not need to pass this option.**
|
|
@@ -1278,9 +1351,9 @@ module Aws::FSx
|
|
|
1278
1351
|
# The ID of the file system you want to delete.
|
|
1279
1352
|
#
|
|
1280
1353
|
# @option params [String] :client_request_token
|
|
1281
|
-
#
|
|
1282
|
-
#
|
|
1283
|
-
#
|
|
1354
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
|
1355
|
+
# idempotent deletion. This is automatically filled on your behalf when
|
|
1356
|
+
# using the AWS CLI or SDK.
|
|
1284
1357
|
#
|
|
1285
1358
|
# **A suitable default value is auto-generated.** You should normally
|
|
1286
1359
|
# not need to pass this option.**
|
|
@@ -1289,11 +1362,16 @@ module Aws::FSx
|
|
|
1289
1362
|
# The configuration object for the Microsoft Windows file system used in
|
|
1290
1363
|
# the `DeleteFileSystem` operation.
|
|
1291
1364
|
#
|
|
1365
|
+
# @option params [Types::DeleteFileSystemLustreConfiguration] :lustre_configuration
|
|
1366
|
+
# The configuration object for the Amazon FSx for Lustre file system
|
|
1367
|
+
# being deleted in the `DeleteFileSystem` operation.
|
|
1368
|
+
#
|
|
1292
1369
|
# @return [Types::DeleteFileSystemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1293
1370
|
#
|
|
1294
1371
|
# * {Types::DeleteFileSystemResponse#file_system_id #file_system_id} => String
|
|
1295
1372
|
# * {Types::DeleteFileSystemResponse#lifecycle #lifecycle} => String
|
|
1296
1373
|
# * {Types::DeleteFileSystemResponse#windows_response #windows_response} => Types::DeleteFileSystemWindowsResponse
|
|
1374
|
+
# * {Types::DeleteFileSystemResponse#lustre_response #lustre_response} => Types::DeleteFileSystemLustreResponse
|
|
1297
1375
|
#
|
|
1298
1376
|
#
|
|
1299
1377
|
# @example Example: To delete a file system
|
|
@@ -1319,8 +1397,17 @@ module Aws::FSx
|
|
|
1319
1397
|
# skip_final_backup: false,
|
|
1320
1398
|
# final_backup_tags: [
|
|
1321
1399
|
# {
|
|
1322
|
-
# key: "TagKey",
|
|
1323
|
-
# value: "TagValue",
|
|
1400
|
+
# key: "TagKey", # required
|
|
1401
|
+
# value: "TagValue", # required
|
|
1402
|
+
# },
|
|
1403
|
+
# ],
|
|
1404
|
+
# },
|
|
1405
|
+
# lustre_configuration: {
|
|
1406
|
+
# skip_final_backup: false,
|
|
1407
|
+
# final_backup_tags: [
|
|
1408
|
+
# {
|
|
1409
|
+
# key: "TagKey", # required
|
|
1410
|
+
# value: "TagValue", # required
|
|
1324
1411
|
# },
|
|
1325
1412
|
# ],
|
|
1326
1413
|
# },
|
|
@@ -1334,6 +1421,10 @@ module Aws::FSx
|
|
|
1334
1421
|
# resp.windows_response.final_backup_tags #=> Array
|
|
1335
1422
|
# resp.windows_response.final_backup_tags[0].key #=> String
|
|
1336
1423
|
# resp.windows_response.final_backup_tags[0].value #=> String
|
|
1424
|
+
# resp.lustre_response.final_backup_id #=> String
|
|
1425
|
+
# resp.lustre_response.final_backup_tags #=> Array
|
|
1426
|
+
# resp.lustre_response.final_backup_tags[0].key #=> String
|
|
1427
|
+
# resp.lustre_response.final_backup_tags[0].value #=> String
|
|
1337
1428
|
#
|
|
1338
1429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystem AWS API Documentation
|
|
1339
1430
|
#
|
|
@@ -1344,10 +1435,10 @@ module Aws::FSx
|
|
|
1344
1435
|
req.send_request(options)
|
|
1345
1436
|
end
|
|
1346
1437
|
|
|
1347
|
-
# Returns the description of specific Amazon FSx
|
|
1348
|
-
#
|
|
1349
|
-
#
|
|
1350
|
-
#
|
|
1438
|
+
# Returns the description of specific Amazon FSx backups, if a
|
|
1439
|
+
# `BackupIds` value is provided for that backup. Otherwise, it returns
|
|
1440
|
+
# all backups owned by your AWS account in the AWS Region of the
|
|
1441
|
+
# endpoint that you're calling.
|
|
1351
1442
|
#
|
|
1352
1443
|
# When retrieving all backups, you can optionally specify the
|
|
1353
1444
|
# `MaxResults` parameter to limit the number of backups in a response.
|
|
@@ -1372,25 +1463,23 @@ module Aws::FSx
|
|
|
1372
1463
|
# responses of a multi-call iteration is unspecified.
|
|
1373
1464
|
#
|
|
1374
1465
|
# @option params [Array<String>] :backup_ids
|
|
1375
|
-
#
|
|
1376
|
-
#
|
|
1377
|
-
# be thrown.
|
|
1466
|
+
# IDs of the backups you want to retrieve (String). This overrides any
|
|
1467
|
+
# filters. If any IDs are not found, BackupNotFound will be thrown.
|
|
1378
1468
|
#
|
|
1379
1469
|
# @option params [Array<Types::Filter>] :filters
|
|
1380
|
-
#
|
|
1381
|
-
# backup-type.
|
|
1470
|
+
# Filters structure. Supported names are file-system-id and backup-type.
|
|
1382
1471
|
#
|
|
1383
1472
|
# @option params [Integer] :max_results
|
|
1384
|
-
#
|
|
1385
|
-
#
|
|
1386
|
-
#
|
|
1387
|
-
#
|
|
1388
|
-
#
|
|
1473
|
+
# Maximum number of backups to return in the response (integer). This
|
|
1474
|
+
# parameter value must be greater than 0. The number of items that
|
|
1475
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
|
1476
|
+
# specified in the request and the service's internal maximum number of
|
|
1477
|
+
# items per page.
|
|
1389
1478
|
#
|
|
1390
1479
|
# @option params [String] :next_token
|
|
1391
|
-
#
|
|
1392
|
-
#
|
|
1393
|
-
#
|
|
1480
|
+
# Opaque pagination token returned from a previous `DescribeBackups`
|
|
1481
|
+
# operation (String). If a token present, the action continues the list
|
|
1482
|
+
# from where the returning call left off.
|
|
1394
1483
|
#
|
|
1395
1484
|
# @return [Types::DescribeBackupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1396
1485
|
#
|
|
@@ -1443,7 +1532,7 @@ module Aws::FSx
|
|
|
1443
1532
|
# backup_ids: ["BackupId"],
|
|
1444
1533
|
# filters: [
|
|
1445
1534
|
# {
|
|
1446
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
|
1535
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
|
1447
1536
|
# values: ["FilterValue"],
|
|
1448
1537
|
# },
|
|
1449
1538
|
# ],
|
|
@@ -1503,12 +1592,25 @@ module Aws::FSx
|
|
|
1503
1592
|
# resp.backups[0].file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
|
1504
1593
|
# resp.backups[0].file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
|
1505
1594
|
# resp.backups[0].file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
1595
|
+
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
1506
1596
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
1507
1597
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
|
1508
1598
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
|
1599
|
+
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
|
1600
|
+
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
|
1509
1601
|
# resp.backups[0].file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
1510
1602
|
# resp.backups[0].file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
1511
1603
|
# resp.backups[0].file_system.lustre_configuration.mount_name #=> String
|
|
1604
|
+
# resp.backups[0].file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
|
1605
|
+
# resp.backups[0].file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
1606
|
+
# resp.backups[0].file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
1607
|
+
# resp.backups[0].file_system.administrative_actions #=> Array
|
|
1608
|
+
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
1609
|
+
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
|
1610
|
+
# resp.backups[0].file_system.administrative_actions[0].request_time #=> Time
|
|
1611
|
+
# resp.backups[0].file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
1612
|
+
# resp.backups[0].file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
1613
|
+
# resp.backups[0].file_system.administrative_actions[0].failure_details.message #=> String
|
|
1512
1614
|
# resp.backups[0].directory_information.domain_name #=> String
|
|
1513
1615
|
# resp.backups[0].directory_information.active_directory_id #=> String
|
|
1514
1616
|
# resp.next_token #=> String
|
|
@@ -1641,20 +1743,20 @@ module Aws::FSx
|
|
|
1641
1743
|
# across the responses of a multicall iteration is unspecified.
|
|
1642
1744
|
#
|
|
1643
1745
|
# @option params [Array<String>] :file_system_ids
|
|
1644
|
-
#
|
|
1645
|
-
#
|
|
1746
|
+
# IDs of the file systems whose descriptions you want to retrieve
|
|
1747
|
+
# (String).
|
|
1646
1748
|
#
|
|
1647
1749
|
# @option params [Integer] :max_results
|
|
1648
|
-
#
|
|
1649
|
-
#
|
|
1650
|
-
#
|
|
1651
|
-
#
|
|
1652
|
-
#
|
|
1750
|
+
# Maximum number of file systems to return in the response (integer).
|
|
1751
|
+
# This parameter value must be greater than 0. The number of items that
|
|
1752
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
|
1753
|
+
# specified in the request and the service's internal maximum number of
|
|
1754
|
+
# items per page.
|
|
1653
1755
|
#
|
|
1654
1756
|
# @option params [String] :next_token
|
|
1655
|
-
#
|
|
1656
|
-
#
|
|
1657
|
-
#
|
|
1757
|
+
# Opaque pagination token returned from a previous `DescribeFileSystems`
|
|
1758
|
+
# operation (String). If a token present, the action continues the list
|
|
1759
|
+
# from where the returning call left off.
|
|
1658
1760
|
#
|
|
1659
1761
|
# @return [Types::DescribeFileSystemsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1660
1762
|
#
|
|
@@ -1756,12 +1858,25 @@ module Aws::FSx
|
|
|
1756
1858
|
# resp.file_systems[0].windows_configuration.automatic_backup_retention_days #=> Integer
|
|
1757
1859
|
# resp.file_systems[0].windows_configuration.copy_tags_to_backups #=> Boolean
|
|
1758
1860
|
# resp.file_systems[0].lustre_configuration.weekly_maintenance_start_time #=> String
|
|
1861
|
+
# resp.file_systems[0].lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
1759
1862
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.import_path #=> String
|
|
1760
1863
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.export_path #=> String
|
|
1761
1864
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
|
1865
|
+
# resp.file_systems[0].lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
|
1866
|
+
# resp.file_systems[0].lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
|
1762
1867
|
# resp.file_systems[0].lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
1763
1868
|
# resp.file_systems[0].lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
1764
1869
|
# resp.file_systems[0].lustre_configuration.mount_name #=> String
|
|
1870
|
+
# resp.file_systems[0].lustre_configuration.daily_automatic_backup_start_time #=> String
|
|
1871
|
+
# resp.file_systems[0].lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
1872
|
+
# resp.file_systems[0].lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
1873
|
+
# resp.file_systems[0].administrative_actions #=> Array
|
|
1874
|
+
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
1875
|
+
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
|
1876
|
+
# resp.file_systems[0].administrative_actions[0].request_time #=> Time
|
|
1877
|
+
# resp.file_systems[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
1878
|
+
# resp.file_systems[0].administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
1879
|
+
# resp.file_systems[0].administrative_actions[0].failure_details.message #=> String
|
|
1765
1880
|
# resp.next_token #=> String
|
|
1766
1881
|
#
|
|
1767
1882
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeFileSystems AWS API Documentation
|
|
@@ -1801,16 +1916,16 @@ module Aws::FSx
|
|
|
1801
1916
|
# The ARN of the Amazon FSx resource that will have its tags listed.
|
|
1802
1917
|
#
|
|
1803
1918
|
# @option params [Integer] :max_results
|
|
1804
|
-
#
|
|
1805
|
-
#
|
|
1919
|
+
# Maximum number of tags to return in the response (integer). This
|
|
1920
|
+
# parameter value must be greater than 0. The number of items that
|
|
1806
1921
|
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
|
1807
1922
|
# specified in the request and the service's internal maximum number of
|
|
1808
1923
|
# items per page.
|
|
1809
1924
|
#
|
|
1810
1925
|
# @option params [String] :next_token
|
|
1811
|
-
#
|
|
1812
|
-
#
|
|
1813
|
-
#
|
|
1926
|
+
# Opaque pagination token returned from a previous `ListTagsForResource`
|
|
1927
|
+
# operation (String). If a token present, the action continues the list
|
|
1928
|
+
# from where the returning call left off.
|
|
1814
1929
|
#
|
|
1815
1930
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1816
1931
|
#
|
|
@@ -1893,8 +2008,8 @@ module Aws::FSx
|
|
|
1893
2008
|
# resource_arn: "ResourceARN", # required
|
|
1894
2009
|
# tags: [ # required
|
|
1895
2010
|
# {
|
|
1896
|
-
# key: "TagKey",
|
|
1897
|
-
# value: "TagValue",
|
|
2011
|
+
# key: "TagKey", # required
|
|
2012
|
+
# value: "TagValue", # required
|
|
1898
2013
|
# },
|
|
1899
2014
|
# ],
|
|
1900
2015
|
# })
|
|
@@ -1947,24 +2062,54 @@ module Aws::FSx
|
|
|
1947
2062
|
req.send_request(options)
|
|
1948
2063
|
end
|
|
1949
2064
|
|
|
1950
|
-
#
|
|
2065
|
+
# Use this operation to update the configuration of an existing Amazon
|
|
2066
|
+
# FSx file system. For an Amazon FSx for Lustre file system, you can
|
|
2067
|
+
# update only the WeeklyMaintenanceStartTime. For an Amazon for Windows
|
|
2068
|
+
# File Server file system, you can update the following properties:
|
|
2069
|
+
#
|
|
2070
|
+
# * AutomaticBackupRetentionDays
|
|
2071
|
+
#
|
|
2072
|
+
# * DailyAutomaticBackupStartTime
|
|
2073
|
+
#
|
|
2074
|
+
# * SelfManagedActiveDirectoryConfiguration
|
|
2075
|
+
#
|
|
2076
|
+
# * StorageCapacity
|
|
2077
|
+
#
|
|
2078
|
+
# * ThroughputCapacity
|
|
2079
|
+
#
|
|
2080
|
+
# * WeeklyMaintenanceStartTime
|
|
2081
|
+
#
|
|
2082
|
+
# You can update multiple properties in a single request.
|
|
1951
2083
|
#
|
|
1952
2084
|
# @option params [required, String] :file_system_id
|
|
1953
|
-
#
|
|
2085
|
+
# Identifies the file system that you are updating.
|
|
1954
2086
|
#
|
|
1955
2087
|
# @option params [String] :client_request_token
|
|
1956
|
-
#
|
|
1957
|
-
#
|
|
1958
|
-
#
|
|
1959
|
-
# an AWS SDK.
|
|
2088
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
|
2089
|
+
# idempotent updates. This string is automatically filled on your behalf
|
|
2090
|
+
# when you use the AWS Command Line Interface (AWS CLI) or an AWS SDK.
|
|
1960
2091
|
#
|
|
1961
2092
|
# **A suitable default value is auto-generated.** You should normally
|
|
1962
2093
|
# not need to pass this option.**
|
|
1963
2094
|
#
|
|
2095
|
+
# @option params [Integer] :storage_capacity
|
|
2096
|
+
# Use this parameter to increase the storage capacity of an Amazon FSx
|
|
2097
|
+
# for Windows File Server file system. Specifies the storage capacity
|
|
2098
|
+
# target value, GiB, for the file system you're updating. The storage
|
|
2099
|
+
# capacity target value must be at least 10 percent (%) greater than the
|
|
2100
|
+
# current storage capacity value. In order to increase storage capacity,
|
|
2101
|
+
# the file system needs to have at least 16 MB/s of throughput capacity.
|
|
2102
|
+
# You cannot make a storage capacity increase request if there is an
|
|
2103
|
+
# existing storage capacity increase request in progress. For more
|
|
2104
|
+
# information, see [Managing Storage Capacity][1].
|
|
2105
|
+
#
|
|
2106
|
+
#
|
|
2107
|
+
#
|
|
2108
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
|
2109
|
+
#
|
|
1964
2110
|
# @option params [Types::UpdateFileSystemWindowsConfiguration] :windows_configuration
|
|
1965
|
-
# The configuration
|
|
1966
|
-
#
|
|
1967
|
-
# self-managed Active Directory configuration.
|
|
2111
|
+
# The configuration updates for an Amazon FSx for Windows File Server
|
|
2112
|
+
# file system.
|
|
1968
2113
|
#
|
|
1969
2114
|
# @option params [Types::UpdateFileSystemLustreConfiguration] :lustre_configuration
|
|
1970
2115
|
# The configuration object for Amazon FSx for Lustre file systems used
|
|
@@ -2023,10 +2168,12 @@ module Aws::FSx
|
|
|
2023
2168
|
# resp = client.update_file_system({
|
|
2024
2169
|
# file_system_id: "FileSystemId", # required
|
|
2025
2170
|
# client_request_token: "ClientRequestToken",
|
|
2171
|
+
# storage_capacity: 1,
|
|
2026
2172
|
# windows_configuration: {
|
|
2027
2173
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
2028
2174
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
2029
2175
|
# automatic_backup_retention_days: 1,
|
|
2176
|
+
# throughput_capacity: 1,
|
|
2030
2177
|
# self_managed_active_directory_configuration: {
|
|
2031
2178
|
# user_name: "DirectoryUserName",
|
|
2032
2179
|
# password: "DirectoryPassword",
|
|
@@ -2035,6 +2182,9 @@ module Aws::FSx
|
|
|
2035
2182
|
# },
|
|
2036
2183
|
# lustre_configuration: {
|
|
2037
2184
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
2185
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
|
2186
|
+
# automatic_backup_retention_days: 1,
|
|
2187
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
|
2038
2188
|
# },
|
|
2039
2189
|
# })
|
|
2040
2190
|
#
|
|
@@ -2078,12 +2228,25 @@ module Aws::FSx
|
|
|
2078
2228
|
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
|
2079
2229
|
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
|
2080
2230
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
2231
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
2081
2232
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
2082
2233
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
|
2083
2234
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
|
2235
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED"
|
|
2236
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
|
2084
2237
|
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
|
2085
2238
|
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
2086
2239
|
# resp.file_system.lustre_configuration.mount_name #=> String
|
|
2240
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
|
2241
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
2242
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
2243
|
+
# resp.file_system.administrative_actions #=> Array
|
|
2244
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION"
|
|
2245
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
2246
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
2247
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
2248
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
2249
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
|
2087
2250
|
#
|
|
2088
2251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystem AWS API Documentation
|
|
2089
2252
|
#
|
|
@@ -2107,7 +2270,7 @@ module Aws::FSx
|
|
|
2107
2270
|
params: params,
|
|
2108
2271
|
config: config)
|
|
2109
2272
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
2110
|
-
context[:gem_version] = '1.
|
|
2273
|
+
context[:gem_version] = '1.24.0'
|
|
2111
2274
|
Seahorse::Client::Request.new(handlers, context)
|
|
2112
2275
|
end
|
|
2113
2276
|
|