aws-sdk-fsx 1.52.0 → 1.55.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +100 -66
- data/lib/aws-sdk-fsx/client_api.rb +1 -0
- data/lib/aws-sdk-fsx/types.rb +140 -66
- data/lib/aws-sdk-fsx.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ce12dcb17455a96d45bb3f06d9ab613ff517417cbded7581cd310e998023e54
|
4
|
+
data.tar.gz: 40ba36f17671c8acc34ad3834eced7723a8679ba8ce981160c64bf2b2e365c51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 268ef1978633fd37426f05cd4342bc8060fdf09e77298aed56d50a2ddd5fc8caf23497e5700368d72be573d148bdd66b18c57f9c99addb6377473f60677559f4
|
7
|
+
data.tar.gz: 71d1c281cc9a9cc59f59475ae692f107fb7b4c380618d25b1ea15030d8a77f9f524b390d98696370015d7aafc9965f59441648924a1903225a8c684d64f5b612
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.55.0 (2022-04-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for deploying FSx for ONTAP file systems in a single Availability Zone.
|
8
|
+
|
9
|
+
1.54.0 (2022-04-05)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Provide customers more visibility into file system status by adding new "Misconfigured Unavailable" status for Amazon FSx for Windows File Server.
|
13
|
+
|
14
|
+
1.53.0 (2022-03-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds support for modifying throughput capacity for FSx for ONTAP file systems.
|
18
|
+
|
4
19
|
1.52.0 (2022-03-03)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.55.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -539,14 +539,24 @@ module Aws::FSx
|
|
539
539
|
# the Region where the request is sent from (in-Region copy).
|
540
540
|
#
|
541
541
|
# @option params [String] :kms_key_id
|
542
|
-
#
|
543
|
-
#
|
544
|
-
#
|
545
|
-
# Lustre `PERSISTENT_1` and `PERSISTENT_2`
|
546
|
-
#
|
547
|
-
#
|
548
|
-
#
|
549
|
-
#
|
542
|
+
# Specifies the ID of the Key Management Service (KMS) key to use for
|
543
|
+
# encrypting data on Amazon FSx file systems, as follows:
|
544
|
+
#
|
545
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
546
|
+
# types only.
|
547
|
+
#
|
548
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon FSx
|
549
|
+
# service KMS key for your account.
|
550
|
+
#
|
551
|
+
# * Amazon FSx for NetApp ONTAP
|
552
|
+
#
|
553
|
+
# * Amazon FSx for OpenZFS
|
554
|
+
#
|
555
|
+
# * Amazon FSx for Windows File Server
|
556
|
+
#
|
557
|
+
# If a `KmsKeyId` isn't specified, the Amazon FSx-managed KMS key for
|
558
|
+
# your account is used. For more information, see [Encrypt][1] in the
|
559
|
+
# *Key Management Service API Reference*.
|
550
560
|
#
|
551
561
|
#
|
552
562
|
#
|
@@ -645,7 +655,7 @@ module Aws::FSx
|
|
645
655
|
# resp.backup.file_system.creation_time #=> Time
|
646
656
|
# resp.backup.file_system.file_system_id #=> String
|
647
657
|
# resp.backup.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
648
|
-
# resp.backup.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
658
|
+
# resp.backup.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
649
659
|
# resp.backup.file_system.failure_details.message #=> String
|
650
660
|
# resp.backup.file_system.storage_capacity #=> Integer
|
651
661
|
# resp.backup.file_system.storage_type #=> String, one of "SSD", "HDD"
|
@@ -763,7 +773,7 @@ module Aws::FSx
|
|
763
773
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
764
774
|
# resp.backup.file_system.ontap_configuration.automatic_backup_retention_days #=> Integer
|
765
775
|
# resp.backup.file_system.ontap_configuration.daily_automatic_backup_start_time #=> String
|
766
|
-
# resp.backup.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
776
|
+
# resp.backup.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
767
777
|
# resp.backup.file_system.ontap_configuration.endpoint_ip_address_range #=> String
|
768
778
|
# resp.backup.file_system.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
769
779
|
# resp.backup.file_system.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -827,7 +837,7 @@ module Aws::FSx
|
|
827
837
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.creation_time #=> Time
|
828
838
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.file_system_id #=> String
|
829
839
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
830
|
-
# resp.backup.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
840
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
831
841
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
832
842
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
833
843
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -886,7 +896,7 @@ module Aws::FSx
|
|
886
896
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
887
897
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
888
898
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
889
|
-
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
899
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
890
900
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
891
901
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
892
902
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -1115,7 +1125,7 @@ module Aws::FSx
|
|
1115
1125
|
# resp.backup.file_system.creation_time #=> Time
|
1116
1126
|
# resp.backup.file_system.file_system_id #=> String
|
1117
1127
|
# resp.backup.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
1118
|
-
# resp.backup.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
1128
|
+
# resp.backup.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
1119
1129
|
# resp.backup.file_system.failure_details.message #=> String
|
1120
1130
|
# resp.backup.file_system.storage_capacity #=> Integer
|
1121
1131
|
# resp.backup.file_system.storage_type #=> String, one of "SSD", "HDD"
|
@@ -1233,7 +1243,7 @@ module Aws::FSx
|
|
1233
1243
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
1234
1244
|
# resp.backup.file_system.ontap_configuration.automatic_backup_retention_days #=> Integer
|
1235
1245
|
# resp.backup.file_system.ontap_configuration.daily_automatic_backup_start_time #=> String
|
1236
|
-
# resp.backup.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
1246
|
+
# resp.backup.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
1237
1247
|
# resp.backup.file_system.ontap_configuration.endpoint_ip_address_range #=> String
|
1238
1248
|
# resp.backup.file_system.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
1239
1249
|
# resp.backup.file_system.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -1297,7 +1307,7 @@ module Aws::FSx
|
|
1297
1307
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.creation_time #=> Time
|
1298
1308
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.file_system_id #=> String
|
1299
1309
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
1300
|
-
# resp.backup.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
1310
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
1301
1311
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
1302
1312
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
1303
1313
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -1356,7 +1366,7 @@ module Aws::FSx
|
|
1356
1366
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
1357
1367
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
1358
1368
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
1359
|
-
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
1369
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
1360
1370
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
1361
1371
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
1362
1372
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -1714,7 +1724,7 @@ module Aws::FSx
|
|
1714
1724
|
# * Creates a new, empty Amazon FSx file system with an assigned ID, and
|
1715
1725
|
# an initial lifecycle state of `CREATING`.
|
1716
1726
|
#
|
1717
|
-
# * Returns the description of the file system.
|
1727
|
+
# * Returns the description of the file system in JSON format.
|
1718
1728
|
#
|
1719
1729
|
# This operation requires a client request token in the request that
|
1720
1730
|
# Amazon FSx uses to ensure idempotent creation. This means that calling
|
@@ -1838,14 +1848,24 @@ module Aws::FSx
|
|
1838
1848
|
# name.
|
1839
1849
|
#
|
1840
1850
|
# @option params [String] :kms_key_id
|
1841
|
-
#
|
1842
|
-
#
|
1843
|
-
#
|
1844
|
-
# Lustre `PERSISTENT_1` and `PERSISTENT_2`
|
1845
|
-
#
|
1846
|
-
#
|
1847
|
-
#
|
1848
|
-
#
|
1851
|
+
# Specifies the ID of the Key Management Service (KMS) key to use for
|
1852
|
+
# encrypting data on Amazon FSx file systems, as follows:
|
1853
|
+
#
|
1854
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
1855
|
+
# types only.
|
1856
|
+
#
|
1857
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon FSx
|
1858
|
+
# service KMS key for your account.
|
1859
|
+
#
|
1860
|
+
# * Amazon FSx for NetApp ONTAP
|
1861
|
+
#
|
1862
|
+
# * Amazon FSx for OpenZFS
|
1863
|
+
#
|
1864
|
+
# * Amazon FSx for Windows File Server
|
1865
|
+
#
|
1866
|
+
# If a `KmsKeyId` isn't specified, the Amazon FSx-managed KMS key for
|
1867
|
+
# your account is used. For more information, see [Encrypt][1] in the
|
1868
|
+
# *Key Management Service API Reference*.
|
1849
1869
|
#
|
1850
1870
|
#
|
1851
1871
|
#
|
@@ -2037,7 +2057,7 @@ module Aws::FSx
|
|
2037
2057
|
# ontap_configuration: {
|
2038
2058
|
# automatic_backup_retention_days: 1,
|
2039
2059
|
# daily_automatic_backup_start_time: "DailyTime",
|
2040
|
-
# deployment_type: "MULTI_AZ_1", # required, accepts MULTI_AZ_1
|
2060
|
+
# deployment_type: "MULTI_AZ_1", # required, accepts MULTI_AZ_1, SINGLE_AZ_1
|
2041
2061
|
# endpoint_ip_address_range: "IpAddressRange",
|
2042
2062
|
# fsx_admin_password: "AdminPassword",
|
2043
2063
|
# disk_iops_configuration: {
|
@@ -2094,7 +2114,7 @@ module Aws::FSx
|
|
2094
2114
|
# resp.file_system.creation_time #=> Time
|
2095
2115
|
# resp.file_system.file_system_id #=> String
|
2096
2116
|
# resp.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
2097
|
-
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
2117
|
+
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
2098
2118
|
# resp.file_system.failure_details.message #=> String
|
2099
2119
|
# resp.file_system.storage_capacity #=> Integer
|
2100
2120
|
# resp.file_system.storage_type #=> String, one of "SSD", "HDD"
|
@@ -2212,7 +2232,7 @@ module Aws::FSx
|
|
2212
2232
|
# resp.file_system.administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
2213
2233
|
# resp.file_system.ontap_configuration.automatic_backup_retention_days #=> Integer
|
2214
2234
|
# resp.file_system.ontap_configuration.daily_automatic_backup_start_time #=> String
|
2215
|
-
# resp.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
2235
|
+
# resp.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
2216
2236
|
# resp.file_system.ontap_configuration.endpoint_ip_address_range #=> String
|
2217
2237
|
# resp.file_system.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
2218
2238
|
# resp.file_system.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -2371,14 +2391,24 @@ module Aws::FSx
|
|
2371
2391
|
# </note>
|
2372
2392
|
#
|
2373
2393
|
# @option params [String] :kms_key_id
|
2374
|
-
#
|
2375
|
-
#
|
2376
|
-
#
|
2377
|
-
# Lustre `PERSISTENT_1` and `PERSISTENT_2`
|
2378
|
-
#
|
2379
|
-
#
|
2380
|
-
#
|
2381
|
-
#
|
2394
|
+
# Specifies the ID of the Key Management Service (KMS) key to use for
|
2395
|
+
# encrypting data on Amazon FSx file systems, as follows:
|
2396
|
+
#
|
2397
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
2398
|
+
# types only.
|
2399
|
+
#
|
2400
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon FSx
|
2401
|
+
# service KMS key for your account.
|
2402
|
+
#
|
2403
|
+
# * Amazon FSx for NetApp ONTAP
|
2404
|
+
#
|
2405
|
+
# * Amazon FSx for OpenZFS
|
2406
|
+
#
|
2407
|
+
# * Amazon FSx for Windows File Server
|
2408
|
+
#
|
2409
|
+
# If a `KmsKeyId` isn't specified, the Amazon FSx-managed KMS key for
|
2410
|
+
# your account is used. For more information, see [Encrypt][1] in the
|
2411
|
+
# *Key Management Service API Reference*.
|
2382
2412
|
#
|
2383
2413
|
#
|
2384
2414
|
#
|
@@ -2558,7 +2588,7 @@ module Aws::FSx
|
|
2558
2588
|
# resp.file_system.creation_time #=> Time
|
2559
2589
|
# resp.file_system.file_system_id #=> String
|
2560
2590
|
# resp.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
2561
|
-
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
2591
|
+
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
2562
2592
|
# resp.file_system.failure_details.message #=> String
|
2563
2593
|
# resp.file_system.storage_capacity #=> Integer
|
2564
2594
|
# resp.file_system.storage_type #=> String, one of "SSD", "HDD"
|
@@ -2676,7 +2706,7 @@ module Aws::FSx
|
|
2676
2706
|
# resp.file_system.administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
2677
2707
|
# resp.file_system.ontap_configuration.automatic_backup_retention_days #=> Integer
|
2678
2708
|
# resp.file_system.ontap_configuration.daily_automatic_backup_start_time #=> String
|
2679
|
-
# resp.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
2709
|
+
# resp.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
2680
2710
|
# resp.file_system.ontap_configuration.endpoint_ip_address_range #=> String
|
2681
2711
|
# resp.file_system.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
2682
2712
|
# resp.file_system.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -2801,7 +2831,7 @@ module Aws::FSx
|
|
2801
2831
|
# resp.snapshot.administrative_actions[0].target_file_system_values.creation_time #=> Time
|
2802
2832
|
# resp.snapshot.administrative_actions[0].target_file_system_values.file_system_id #=> String
|
2803
2833
|
# resp.snapshot.administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
2804
|
-
# resp.snapshot.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
2834
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
2805
2835
|
# resp.snapshot.administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
2806
2836
|
# resp.snapshot.administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
2807
2837
|
# resp.snapshot.administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -2860,7 +2890,7 @@ module Aws::FSx
|
|
2860
2890
|
# resp.snapshot.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
2861
2891
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
2862
2892
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
2863
|
-
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
2893
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
2864
2894
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
2865
2895
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
2866
2896
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -3181,7 +3211,7 @@ module Aws::FSx
|
|
3181
3211
|
# resp.volume.administrative_actions[0].target_file_system_values.creation_time #=> Time
|
3182
3212
|
# resp.volume.administrative_actions[0].target_file_system_values.file_system_id #=> String
|
3183
3213
|
# resp.volume.administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
3184
|
-
# resp.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
3214
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
3185
3215
|
# resp.volume.administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
3186
3216
|
# resp.volume.administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
3187
3217
|
# resp.volume.administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -3240,7 +3270,7 @@ module Aws::FSx
|
|
3240
3270
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
3241
3271
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
3242
3272
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
3243
|
-
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
3273
|
+
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
3244
3274
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
3245
3275
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
3246
3276
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -3395,7 +3425,7 @@ module Aws::FSx
|
|
3395
3425
|
# resp.volume.administrative_actions[0].target_file_system_values.creation_time #=> Time
|
3396
3426
|
# resp.volume.administrative_actions[0].target_file_system_values.file_system_id #=> String
|
3397
3427
|
# resp.volume.administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
3398
|
-
# resp.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
3428
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
3399
3429
|
# resp.volume.administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
3400
3430
|
# resp.volume.administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
3401
3431
|
# resp.volume.administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -3454,7 +3484,7 @@ module Aws::FSx
|
|
3454
3484
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
3455
3485
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
3456
3486
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
3457
|
-
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
3487
|
+
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
3458
3488
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
3459
3489
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
3460
3490
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -3754,7 +3784,7 @@ module Aws::FSx
|
|
3754
3784
|
# @example Response structure
|
3755
3785
|
#
|
3756
3786
|
# resp.file_system_id #=> String
|
3757
|
-
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
3787
|
+
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
3758
3788
|
# resp.windows_response.final_backup_id #=> String
|
3759
3789
|
# resp.windows_response.final_backup_tags #=> Array
|
3760
3790
|
# resp.windows_response.final_backup_tags[0].key #=> String
|
@@ -4056,7 +4086,7 @@ module Aws::FSx
|
|
4056
4086
|
# resp.backups[0].file_system.creation_time #=> Time
|
4057
4087
|
# resp.backups[0].file_system.file_system_id #=> String
|
4058
4088
|
# resp.backups[0].file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
4059
|
-
# resp.backups[0].file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
4089
|
+
# resp.backups[0].file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
4060
4090
|
# resp.backups[0].file_system.failure_details.message #=> String
|
4061
4091
|
# resp.backups[0].file_system.storage_capacity #=> Integer
|
4062
4092
|
# resp.backups[0].file_system.storage_type #=> String, one of "SSD", "HDD"
|
@@ -4174,7 +4204,7 @@ module Aws::FSx
|
|
4174
4204
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
4175
4205
|
# resp.backups[0].file_system.ontap_configuration.automatic_backup_retention_days #=> Integer
|
4176
4206
|
# resp.backups[0].file_system.ontap_configuration.daily_automatic_backup_start_time #=> String
|
4177
|
-
# resp.backups[0].file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
4207
|
+
# resp.backups[0].file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
4178
4208
|
# resp.backups[0].file_system.ontap_configuration.endpoint_ip_address_range #=> String
|
4179
4209
|
# resp.backups[0].file_system.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
4180
4210
|
# resp.backups[0].file_system.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -4238,7 +4268,7 @@ module Aws::FSx
|
|
4238
4268
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.creation_time #=> Time
|
4239
4269
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.file_system_id #=> String
|
4240
4270
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
4241
|
-
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
4271
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
4242
4272
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
4243
4273
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
4244
4274
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -4297,7 +4327,7 @@ module Aws::FSx
|
|
4297
4327
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
4298
4328
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
4299
4329
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
4300
|
-
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
4330
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
4301
4331
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
4302
4332
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
4303
4333
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -4723,7 +4753,7 @@ module Aws::FSx
|
|
4723
4753
|
# resp.file_systems[0].creation_time #=> Time
|
4724
4754
|
# resp.file_systems[0].file_system_id #=> String
|
4725
4755
|
# resp.file_systems[0].file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
4726
|
-
# resp.file_systems[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
4756
|
+
# resp.file_systems[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
4727
4757
|
# resp.file_systems[0].failure_details.message #=> String
|
4728
4758
|
# resp.file_systems[0].storage_capacity #=> Integer
|
4729
4759
|
# resp.file_systems[0].storage_type #=> String, one of "SSD", "HDD"
|
@@ -4841,7 +4871,7 @@ module Aws::FSx
|
|
4841
4871
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
4842
4872
|
# resp.file_systems[0].ontap_configuration.automatic_backup_retention_days #=> Integer
|
4843
4873
|
# resp.file_systems[0].ontap_configuration.daily_automatic_backup_start_time #=> String
|
4844
|
-
# resp.file_systems[0].ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
4874
|
+
# resp.file_systems[0].ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
4845
4875
|
# resp.file_systems[0].ontap_configuration.endpoint_ip_address_range #=> String
|
4846
4876
|
# resp.file_systems[0].ontap_configuration.endpoints.intercluster.dns_name #=> String
|
4847
4877
|
# resp.file_systems[0].ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -4967,7 +4997,7 @@ module Aws::FSx
|
|
4967
4997
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.creation_time #=> Time
|
4968
4998
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.file_system_id #=> String
|
4969
4999
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
4970
|
-
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
5000
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
4971
5001
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
4972
5002
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
4973
5003
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -5026,7 +5056,7 @@ module Aws::FSx
|
|
5026
5056
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
5027
5057
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
5028
5058
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
5029
|
-
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
5059
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
5030
5060
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
5031
5061
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
5032
5062
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -5268,7 +5298,7 @@ module Aws::FSx
|
|
5268
5298
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.creation_time #=> Time
|
5269
5299
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.file_system_id #=> String
|
5270
5300
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
5271
|
-
# resp.volumes[0].administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
5301
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
5272
5302
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
5273
5303
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
5274
5304
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -5327,7 +5357,7 @@ module Aws::FSx
|
|
5327
5357
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
5328
5358
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
5329
5359
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
5330
|
-
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
5360
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
5331
5361
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
5332
5362
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
5333
5363
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -5575,7 +5605,7 @@ module Aws::FSx
|
|
5575
5605
|
# resp.file_system.creation_time #=> Time
|
5576
5606
|
# resp.file_system.file_system_id #=> String
|
5577
5607
|
# resp.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
5578
|
-
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
5608
|
+
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
5579
5609
|
# resp.file_system.failure_details.message #=> String
|
5580
5610
|
# resp.file_system.storage_capacity #=> Integer
|
5581
5611
|
# resp.file_system.storage_type #=> String, one of "SSD", "HDD"
|
@@ -5693,7 +5723,7 @@ module Aws::FSx
|
|
5693
5723
|
# resp.file_system.administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
5694
5724
|
# resp.file_system.ontap_configuration.automatic_backup_retention_days #=> Integer
|
5695
5725
|
# resp.file_system.ontap_configuration.daily_automatic_backup_start_time #=> String
|
5696
|
-
# resp.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
5726
|
+
# resp.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
5697
5727
|
# resp.file_system.ontap_configuration.endpoint_ip_address_range #=> String
|
5698
5728
|
# resp.file_system.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
5699
5729
|
# resp.file_system.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -5756,8 +5786,9 @@ module Aws::FSx
|
|
5756
5786
|
# snapshots and this option isn't used, `RestoreVolumeFromSnapshot`
|
5757
5787
|
# fails.
|
5758
5788
|
#
|
5759
|
-
# * `DELETE_CLONED_VOLUMES` - Deletes any
|
5760
|
-
#
|
5789
|
+
# * `DELETE_CLONED_VOLUMES` - Deletes any dependent clone volumes
|
5790
|
+
# created from intermediate snapshots. If there are any dependent
|
5791
|
+
# clone volumes and this option isn't used,
|
5761
5792
|
# `RestoreVolumeFromSnapshot` fails.
|
5762
5793
|
#
|
5763
5794
|
# @return [Types::RestoreVolumeFromSnapshotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -6008,6 +6039,8 @@ module Aws::FSx
|
|
6008
6039
|
#
|
6009
6040
|
# * `StorageCapacity`
|
6010
6041
|
#
|
6042
|
+
# * `ThroughputCapacity`
|
6043
|
+
#
|
6011
6044
|
# * `WeeklyMaintenanceStartTime`
|
6012
6045
|
#
|
6013
6046
|
# For the Amazon FSx for OpenZFS file systems, you can update the
|
@@ -6189,6 +6222,7 @@ module Aws::FSx
|
|
6189
6222
|
# mode: "AUTOMATIC", # accepts AUTOMATIC, USER_PROVISIONED
|
6190
6223
|
# iops: 1,
|
6191
6224
|
# },
|
6225
|
+
# throughput_capacity: 1,
|
6192
6226
|
# },
|
6193
6227
|
# open_zfs_configuration: {
|
6194
6228
|
# automatic_backup_retention_days: 1,
|
@@ -6210,7 +6244,7 @@ module Aws::FSx
|
|
6210
6244
|
# resp.file_system.creation_time #=> Time
|
6211
6245
|
# resp.file_system.file_system_id #=> String
|
6212
6246
|
# resp.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
6213
|
-
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
6247
|
+
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
6214
6248
|
# resp.file_system.failure_details.message #=> String
|
6215
6249
|
# resp.file_system.storage_capacity #=> Integer
|
6216
6250
|
# resp.file_system.storage_type #=> String, one of "SSD", "HDD"
|
@@ -6328,7 +6362,7 @@ module Aws::FSx
|
|
6328
6362
|
# resp.file_system.administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
6329
6363
|
# resp.file_system.ontap_configuration.automatic_backup_retention_days #=> Integer
|
6330
6364
|
# resp.file_system.ontap_configuration.daily_automatic_backup_start_time #=> String
|
6331
|
-
# resp.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
6365
|
+
# resp.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
6332
6366
|
# resp.file_system.ontap_configuration.endpoint_ip_address_range #=> String
|
6333
6367
|
# resp.file_system.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
6334
6368
|
# resp.file_system.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -6415,7 +6449,7 @@ module Aws::FSx
|
|
6415
6449
|
# resp.snapshot.administrative_actions[0].target_file_system_values.creation_time #=> Time
|
6416
6450
|
# resp.snapshot.administrative_actions[0].target_file_system_values.file_system_id #=> String
|
6417
6451
|
# resp.snapshot.administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
6418
|
-
# resp.snapshot.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
6452
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
6419
6453
|
# resp.snapshot.administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
6420
6454
|
# resp.snapshot.administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
6421
6455
|
# resp.snapshot.administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -6474,7 +6508,7 @@ module Aws::FSx
|
|
6474
6508
|
# resp.snapshot.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
6475
6509
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
6476
6510
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
6477
|
-
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
6511
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
6478
6512
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
6479
6513
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
6480
6514
|
# resp.snapshot.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -6746,7 +6780,7 @@ module Aws::FSx
|
|
6746
6780
|
# resp.volume.administrative_actions[0].target_file_system_values.creation_time #=> Time
|
6747
6781
|
# resp.volume.administrative_actions[0].target_file_system_values.file_system_id #=> String
|
6748
6782
|
# resp.volume.administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
6749
|
-
# resp.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
6783
|
+
# resp.volume.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
6750
6784
|
# resp.volume.administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
6751
6785
|
# resp.volume.administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
6752
6786
|
# resp.volume.administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
@@ -6805,7 +6839,7 @@ module Aws::FSx
|
|
6805
6839
|
# resp.volume.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
6806
6840
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
6807
6841
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
6808
|
-
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1"
|
6842
|
+
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
6809
6843
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
6810
6844
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
6811
6845
|
# resp.volume.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
@@ -6886,7 +6920,7 @@ module Aws::FSx
|
|
6886
6920
|
params: params,
|
6887
6921
|
config: config)
|
6888
6922
|
context[:gem_name] = 'aws-sdk-fsx'
|
6889
|
-
context[:gem_version] = '1.
|
6923
|
+
context[:gem_version] = '1.55.0'
|
6890
6924
|
Seahorse::Client::Request.new(handlers, context)
|
6891
6925
|
end
|
6892
6926
|
|
@@ -1347,6 +1347,7 @@ module Aws::FSx
|
|
1347
1347
|
UpdateFileSystemOntapConfiguration.add_member(:fsx_admin_password, Shapes::ShapeRef.new(shape: AdminPassword, location_name: "FsxAdminPassword"))
|
1348
1348
|
UpdateFileSystemOntapConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
1349
1349
|
UpdateFileSystemOntapConfiguration.add_member(:disk_iops_configuration, Shapes::ShapeRef.new(shape: DiskIopsConfiguration, location_name: "DiskIopsConfiguration"))
|
1350
|
+
UpdateFileSystemOntapConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: MegabytesPerSecond, location_name: "ThroughputCapacity"))
|
1350
1351
|
UpdateFileSystemOntapConfiguration.struct_class = Types::UpdateFileSystemOntapConfiguration
|
1351
1352
|
|
1352
1353
|
UpdateFileSystemOpenZFSConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -796,15 +796,24 @@ module Aws::FSx
|
|
796
796
|
# @return [String]
|
797
797
|
#
|
798
798
|
# @!attribute [rw] kms_key_id
|
799
|
-
#
|
800
|
-
#
|
801
|
-
#
|
802
|
-
# for Lustre `PERSISTENT_1` and `PERSISTENT_2`
|
803
|
-
#
|
804
|
-
#
|
805
|
-
#
|
806
|
-
#
|
807
|
-
#
|
799
|
+
# Specifies the ID of the Key Management Service (KMS) key to use for
|
800
|
+
# encrypting data on Amazon FSx file systems, as follows:
|
801
|
+
#
|
802
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
803
|
+
# types only.
|
804
|
+
#
|
805
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon
|
806
|
+
# FSx service KMS key for your account.
|
807
|
+
#
|
808
|
+
# * Amazon FSx for NetApp ONTAP
|
809
|
+
#
|
810
|
+
# * Amazon FSx for OpenZFS
|
811
|
+
#
|
812
|
+
# * Amazon FSx for Windows File Server
|
813
|
+
#
|
814
|
+
# If a `KmsKeyId` isn't specified, the Amazon FSx-managed KMS key for
|
815
|
+
# your account is used. For more information, see [Encrypt][1] in the
|
816
|
+
# *Key Management Service API Reference*.
|
808
817
|
#
|
809
818
|
#
|
810
819
|
#
|
@@ -1330,15 +1339,24 @@ module Aws::FSx
|
|
1330
1339
|
# @return [String]
|
1331
1340
|
#
|
1332
1341
|
# @!attribute [rw] kms_key_id
|
1333
|
-
#
|
1334
|
-
#
|
1335
|
-
#
|
1336
|
-
# for Lustre `PERSISTENT_1` and `PERSISTENT_2`
|
1337
|
-
#
|
1338
|
-
#
|
1339
|
-
#
|
1340
|
-
#
|
1341
|
-
#
|
1342
|
+
# Specifies the ID of the Key Management Service (KMS) key to use for
|
1343
|
+
# encrypting data on Amazon FSx file systems, as follows:
|
1344
|
+
#
|
1345
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
1346
|
+
# types only.
|
1347
|
+
#
|
1348
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon
|
1349
|
+
# FSx service KMS key for your account.
|
1350
|
+
#
|
1351
|
+
# * Amazon FSx for NetApp ONTAP
|
1352
|
+
#
|
1353
|
+
# * Amazon FSx for OpenZFS
|
1354
|
+
#
|
1355
|
+
# * Amazon FSx for Windows File Server
|
1356
|
+
#
|
1357
|
+
# If a `KmsKeyId` isn't specified, the Amazon FSx-managed KMS key for
|
1358
|
+
# your account is used. For more information, see [Encrypt][1] in the
|
1359
|
+
# *Key Management Service API Reference*.
|
1342
1360
|
#
|
1343
1361
|
#
|
1344
1362
|
#
|
@@ -1704,7 +1722,7 @@ module Aws::FSx
|
|
1704
1722
|
# {
|
1705
1723
|
# automatic_backup_retention_days: 1,
|
1706
1724
|
# daily_automatic_backup_start_time: "DailyTime",
|
1707
|
-
# deployment_type: "MULTI_AZ_1", # required, accepts MULTI_AZ_1
|
1725
|
+
# deployment_type: "MULTI_AZ_1", # required, accepts MULTI_AZ_1, SINGLE_AZ_1
|
1708
1726
|
# endpoint_ip_address_range: "IpAddressRange",
|
1709
1727
|
# fsx_admin_password: "AdminPassword",
|
1710
1728
|
# disk_iops_configuration: {
|
@@ -1731,14 +1749,28 @@ module Aws::FSx
|
|
1731
1749
|
#
|
1732
1750
|
# @!attribute [rw] deployment_type
|
1733
1751
|
# Specifies the FSx for ONTAP file system deployment type to use in
|
1734
|
-
# creating the file system.
|
1735
|
-
#
|
1752
|
+
# creating the file system.
|
1753
|
+
#
|
1754
|
+
# * `MULTI_AZ_1` - (Default) A high availability file system
|
1755
|
+
# configured for Multi-AZ redundancy to tolerate temporary
|
1756
|
+
# Availability Zone (AZ) unavailability.
|
1757
|
+
#
|
1758
|
+
# * `SINGLE_AZ_1` - A file system configured for Single-AZ redundancy.
|
1759
|
+
#
|
1760
|
+
# For information about the use cases for Multi-AZ and Single-AZ
|
1761
|
+
# deployments, refer to [Choosing Multi-AZ or Single-AZ file system
|
1762
|
+
# deployment][1].
|
1763
|
+
#
|
1764
|
+
#
|
1765
|
+
#
|
1766
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-multiAZ.html
|
1736
1767
|
# @return [String]
|
1737
1768
|
#
|
1738
1769
|
# @!attribute [rw] endpoint_ip_address_range
|
1739
|
-
# Specifies the IP address range in which the
|
1740
|
-
# file system will be created. By default,
|
1741
|
-
# unused IP address range for you from the
|
1770
|
+
# (Multi-AZ only) Specifies the IP address range in which the
|
1771
|
+
# endpoints to access your file system will be created. By default,
|
1772
|
+
# Amazon FSx selects an unused IP address range for you from the
|
1773
|
+
# 198.19.* range.
|
1742
1774
|
#
|
1743
1775
|
# The Endpoint IP address range you select for your file system must
|
1744
1776
|
# exist outside the VPC's CIDR range and must be at least /30 or
|
@@ -1762,11 +1794,11 @@ module Aws::FSx
|
|
1762
1794
|
# @return [String]
|
1763
1795
|
#
|
1764
1796
|
# @!attribute [rw] route_table_ids
|
1765
|
-
# Specifies the virtual private cloud (VPC) route
|
1766
|
-
# file system's endpoints will be created. You
|
1767
|
-
# route tables associated with the subnets in
|
1768
|
-
# located. By default, Amazon FSx selects your
|
1769
|
-
# table.
|
1797
|
+
# (Multi-AZ only) Specifies the virtual private cloud (VPC) route
|
1798
|
+
# tables in which your file system's endpoints will be created. You
|
1799
|
+
# should specify all VPC route tables associated with the subnets in
|
1800
|
+
# which your clients are located. By default, Amazon FSx selects your
|
1801
|
+
# VPC's default route table.
|
1770
1802
|
# @return [Array<String>]
|
1771
1803
|
#
|
1772
1804
|
# @!attribute [rw] throughput_capacity
|
@@ -2009,7 +2041,7 @@ module Aws::FSx
|
|
2009
2041
|
# ontap_configuration: {
|
2010
2042
|
# automatic_backup_retention_days: 1,
|
2011
2043
|
# daily_automatic_backup_start_time: "DailyTime",
|
2012
|
-
# deployment_type: "MULTI_AZ_1", # required, accepts MULTI_AZ_1
|
2044
|
+
# deployment_type: "MULTI_AZ_1", # required, accepts MULTI_AZ_1, SINGLE_AZ_1
|
2013
2045
|
# endpoint_ip_address_range: "IpAddressRange",
|
2014
2046
|
# fsx_admin_password: "AdminPassword",
|
2015
2047
|
# disk_iops_configuration: {
|
@@ -2166,15 +2198,24 @@ module Aws::FSx
|
|
2166
2198
|
# @return [Array<Types::Tag>]
|
2167
2199
|
#
|
2168
2200
|
# @!attribute [rw] kms_key_id
|
2169
|
-
#
|
2170
|
-
#
|
2171
|
-
#
|
2172
|
-
# for Lustre `PERSISTENT_1` and `PERSISTENT_2`
|
2173
|
-
#
|
2174
|
-
#
|
2175
|
-
#
|
2176
|
-
#
|
2177
|
-
#
|
2201
|
+
# Specifies the ID of the Key Management Service (KMS) key to use for
|
2202
|
+
# encrypting data on Amazon FSx file systems, as follows:
|
2203
|
+
#
|
2204
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
2205
|
+
# types only.
|
2206
|
+
#
|
2207
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon
|
2208
|
+
# FSx service KMS key for your account.
|
2209
|
+
#
|
2210
|
+
# * Amazon FSx for NetApp ONTAP
|
2211
|
+
#
|
2212
|
+
# * Amazon FSx for OpenZFS
|
2213
|
+
#
|
2214
|
+
# * Amazon FSx for Windows File Server
|
2215
|
+
#
|
2216
|
+
# If a `KmsKeyId` isn't specified, the Amazon FSx-managed KMS key for
|
2217
|
+
# your account is used. For more information, see [Encrypt][1] in the
|
2218
|
+
# *Key Management Service API Reference*.
|
2178
2219
|
#
|
2179
2220
|
#
|
2180
2221
|
#
|
@@ -5078,6 +5119,10 @@ module Aws::FSx
|
|
5078
5119
|
# * `MISCONFIGURED` - The file system is in a failed but recoverable
|
5079
5120
|
# state.
|
5080
5121
|
#
|
5122
|
+
# * `MISCONFIGURED_UNAVAILABLE` - (Amazon FSx for Windows File Server
|
5123
|
+
# only) The file system is currently unavailable due to a change in
|
5124
|
+
# your Active Directory configuration.
|
5125
|
+
#
|
5081
5126
|
# * `UPDATING` - The file system is undergoing a customer-initiated
|
5082
5127
|
# update.
|
5083
5128
|
# @return [String]
|
@@ -5137,23 +5182,25 @@ module Aws::FSx
|
|
5137
5182
|
# @return [String]
|
5138
5183
|
#
|
5139
5184
|
# @!attribute [rw] kms_key_id
|
5140
|
-
# The ID of the Key Management Service (KMS) key used to encrypt
|
5141
|
-
# file system
|
5142
|
-
#
|
5143
|
-
# Amazon FSx for Lustre file systems at rest. If this ID isn't
|
5144
|
-
# specified, the Amazon FSx-managed key for your account is used. The
|
5145
|
-
# scratch Amazon FSx for Lustre file systems are always encrypted at
|
5146
|
-
# rest using the Amazon FSx-managed key for your account. For more
|
5147
|
-
# information, see [Encrypt][1] in the *Key Management Service API
|
5148
|
-
# Reference*.
|
5185
|
+
# The ID of the Key Management Service (KMS) key used to encrypt
|
5186
|
+
# Amazon FSx file system data. Used as follows with Amazon FSx file
|
5187
|
+
# system types:
|
5149
5188
|
#
|
5189
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
5190
|
+
# types only.
|
5150
5191
|
#
|
5192
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon
|
5193
|
+
# FSx service KMS key for your account.
|
5151
5194
|
#
|
5152
|
-
#
|
5195
|
+
# * Amazon FSx for NetApp ONTAP
|
5196
|
+
#
|
5197
|
+
# * Amazon FSx for OpenZFS
|
5198
|
+
#
|
5199
|
+
# * Amazon FSx for Windows File Server
|
5153
5200
|
# @return [String]
|
5154
5201
|
#
|
5155
5202
|
# @!attribute [rw] resource_arn
|
5156
|
-
# The Amazon Resource Name (ARN)
|
5203
|
+
# The Amazon Resource Name (ARN) of the file system resource.
|
5157
5204
|
# @return [String]
|
5158
5205
|
#
|
5159
5206
|
# @!attribute [rw] tags
|
@@ -5167,7 +5214,8 @@ module Aws::FSx
|
|
5167
5214
|
# @return [Array<Types::Tag>]
|
5168
5215
|
#
|
5169
5216
|
# @!attribute [rw] windows_configuration
|
5170
|
-
# The configuration for this FSx for Windows File Server file
|
5217
|
+
# The configuration for this Amazon FSx for Windows File Server file
|
5218
|
+
# system.
|
5171
5219
|
# @return [Types::WindowsFileSystemConfiguration]
|
5172
5220
|
#
|
5173
5221
|
# @!attribute [rw] lustre_configuration
|
@@ -5182,7 +5230,7 @@ module Aws::FSx
|
|
5182
5230
|
# @return [Array<Types::AdministrativeAction>]
|
5183
5231
|
#
|
5184
5232
|
# @!attribute [rw] ontap_configuration
|
5185
|
-
# The configuration for this FSx for ONTAP file system.
|
5233
|
+
# The configuration for this Amazon FSx for NetApp ONTAP file system.
|
5186
5234
|
# @return [Types::OntapFileSystemConfiguration]
|
5187
5235
|
#
|
5188
5236
|
# @!attribute [rw] file_system_type_version
|
@@ -5902,12 +5950,27 @@ module Aws::FSx
|
|
5902
5950
|
# @return [String]
|
5903
5951
|
#
|
5904
5952
|
# @!attribute [rw] deployment_type
|
5905
|
-
#
|
5953
|
+
# Specifies the FSx for ONTAP file system deployment type in use in
|
5954
|
+
# the file system.
|
5955
|
+
#
|
5956
|
+
# * `MULTI_AZ_1` - (Default) A high availability file system
|
5957
|
+
# configured for Multi-AZ redundancy to tolerate temporary
|
5958
|
+
# Availability Zone (AZ) unavailability.
|
5959
|
+
#
|
5960
|
+
# * `SINGLE_AZ_1` - A file system configured for Single-AZ redundancy.
|
5961
|
+
#
|
5962
|
+
# For information about the use cases for Multi-AZ and Single-AZ
|
5963
|
+
# deployments, refer to [Choosing Multi-AZ or Single-AZ file system
|
5964
|
+
# deployment][1].
|
5965
|
+
#
|
5966
|
+
#
|
5967
|
+
#
|
5968
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/high-availability-multiAZ.html
|
5906
5969
|
# @return [String]
|
5907
5970
|
#
|
5908
5971
|
# @!attribute [rw] endpoint_ip_address_range
|
5909
|
-
# The IP address range in which the endpoints to
|
5910
|
-
# system are created.
|
5972
|
+
# (Multi-AZ only) The IP address range in which the endpoints to
|
5973
|
+
# access your file system are created.
|
5911
5974
|
#
|
5912
5975
|
# The Endpoint IP address range you select for your file system must
|
5913
5976
|
# exist outside the VPC's CIDR range and must be at least /30 or
|
@@ -5937,12 +6000,13 @@ module Aws::FSx
|
|
5937
6000
|
# @return [String]
|
5938
6001
|
#
|
5939
6002
|
# @!attribute [rw] route_table_ids
|
5940
|
-
# The VPC route tables in which your file system's
|
5941
|
-
# created.
|
6003
|
+
# (Multi-AZ only) The VPC route tables in which your file system's
|
6004
|
+
# endpoints are created.
|
5942
6005
|
# @return [Array<String>]
|
5943
6006
|
#
|
5944
6007
|
# @!attribute [rw] throughput_capacity
|
5945
|
-
# The sustained throughput of an Amazon FSx file system in
|
6008
|
+
# The sustained throughput of an Amazon FSx file system in Megabytes
|
6009
|
+
# per second (MBps).
|
5946
6010
|
# @return [Integer]
|
5947
6011
|
#
|
5948
6012
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -6073,8 +6137,8 @@ module Aws::FSx
|
|
6073
6137
|
include Aws::Structure
|
6074
6138
|
end
|
6075
6139
|
|
6076
|
-
# Specifies who can mount
|
6077
|
-
#
|
6140
|
+
# Specifies who can mount an OpenZFS file system and the options
|
6141
|
+
# available while mounting the file system.
|
6078
6142
|
#
|
6079
6143
|
# @note When making an API call, you may pass OpenZFSClientConfiguration
|
6080
6144
|
# data as a hash:
|
@@ -6628,9 +6692,10 @@ module Aws::FSx
|
|
6628
6692
|
# intermediate snapshots and this option isn't used,
|
6629
6693
|
# `RestoreVolumeFromSnapshot` fails.
|
6630
6694
|
#
|
6631
|
-
# * `DELETE_CLONED_VOLUMES` - Deletes any
|
6632
|
-
#
|
6633
|
-
# used,
|
6695
|
+
# * `DELETE_CLONED_VOLUMES` - Deletes any dependent clone volumes
|
6696
|
+
# created from intermediate snapshots. If there are any dependent
|
6697
|
+
# clone volumes and this option isn't used,
|
6698
|
+
# `RestoreVolumeFromSnapshot` fails.
|
6634
6699
|
# @return [Array<String>]
|
6635
6700
|
#
|
6636
6701
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/RestoreVolumeFromSnapshotRequest AWS API Documentation
|
@@ -7030,7 +7095,7 @@ module Aws::FSx
|
|
7030
7095
|
end
|
7031
7096
|
|
7032
7097
|
# Describes the Amazon FSx for NetApp ONTAP storage virtual machine
|
7033
|
-
# (SVM)
|
7098
|
+
# (SVM) configuration.
|
7034
7099
|
#
|
7035
7100
|
# @!attribute [rw] active_directory_configuration
|
7036
7101
|
# Describes the Microsoft Active Directory configuration to which the
|
@@ -7644,6 +7709,7 @@ module Aws::FSx
|
|
7644
7709
|
# mode: "AUTOMATIC", # accepts AUTOMATIC, USER_PROVISIONED
|
7645
7710
|
# iops: 1,
|
7646
7711
|
# },
|
7712
|
+
# throughput_capacity: 1,
|
7647
7713
|
# }
|
7648
7714
|
#
|
7649
7715
|
# @!attribute [rw] automatic_backup_retention_days
|
@@ -7688,6 +7754,12 @@ module Aws::FSx
|
|
7688
7754
|
# `USER_PROVISIONED` IOPS, the total number of SSD IOPS provisioned.
|
7689
7755
|
# @return [Types::DiskIopsConfiguration]
|
7690
7756
|
#
|
7757
|
+
# @!attribute [rw] throughput_capacity
|
7758
|
+
# Specifies the throughput of an FSx for NetApp ONTAP file system,
|
7759
|
+
# measured in megabytes per second (MBps). Valid values are 128, 256,
|
7760
|
+
# 512, 1024, or 2048 MB/s.
|
7761
|
+
# @return [Integer]
|
7762
|
+
#
|
7691
7763
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemOntapConfiguration AWS API Documentation
|
7692
7764
|
#
|
7693
7765
|
class UpdateFileSystemOntapConfiguration < Struct.new(
|
@@ -7695,7 +7767,8 @@ module Aws::FSx
|
|
7695
7767
|
:daily_automatic_backup_start_time,
|
7696
7768
|
:fsx_admin_password,
|
7697
7769
|
:weekly_maintenance_start_time,
|
7698
|
-
:disk_iops_configuration
|
7770
|
+
:disk_iops_configuration,
|
7771
|
+
:throughput_capacity)
|
7699
7772
|
SENSITIVE = [:fsx_admin_password]
|
7700
7773
|
include Aws::Structure
|
7701
7774
|
end
|
@@ -7842,6 +7915,7 @@ module Aws::FSx
|
|
7842
7915
|
# mode: "AUTOMATIC", # accepts AUTOMATIC, USER_PROVISIONED
|
7843
7916
|
# iops: 1,
|
7844
7917
|
# },
|
7918
|
+
# throughput_capacity: 1,
|
7845
7919
|
# },
|
7846
7920
|
# open_zfs_configuration: {
|
7847
7921
|
# automatic_backup_retention_days: 1,
|
@@ -8315,7 +8389,7 @@ module Aws::FSx
|
|
8315
8389
|
|
8316
8390
|
# @!attribute [rw] storage_virtual_machine
|
8317
8391
|
# Describes the Amazon FSx for NetApp ONTAP storage virtual machine
|
8318
|
-
# (SVM)
|
8392
|
+
# (SVM) configuration.
|
8319
8393
|
# @return [Types::StorageVirtualMachine]
|
8320
8394
|
#
|
8321
8395
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateStorageVirtualMachineResponse AWS API Documentation
|
data/lib/aws-sdk-fsx.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-fsx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.55.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|