aws-sdk-fsx 1.93.0 → 1.95.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +107 -89
- data/lib/aws-sdk-fsx/client_api.rb +1 -0
- data/lib/aws-sdk-fsx/types.rb +133 -61
- data/lib/aws-sdk-fsx.rb +1 -1
- data/sig/client.rbs +6 -4
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +7 -6
- metadata +4 -4
@@ -1716,6 +1716,7 @@ module Aws::FSx
|
|
1716
1716
|
UpdateFileSystemOntapConfiguration.add_member(:add_route_table_ids, Shapes::ShapeRef.new(shape: RouteTableIds, location_name: "AddRouteTableIds"))
|
1717
1717
|
UpdateFileSystemOntapConfiguration.add_member(:remove_route_table_ids, Shapes::ShapeRef.new(shape: RouteTableIds, location_name: "RemoveRouteTableIds"))
|
1718
1718
|
UpdateFileSystemOntapConfiguration.add_member(:throughput_capacity_per_ha_pair, Shapes::ShapeRef.new(shape: ThroughputCapacityPerHAPair, location_name: "ThroughputCapacityPerHAPair"))
|
1719
|
+
UpdateFileSystemOntapConfiguration.add_member(:ha_pairs, Shapes::ShapeRef.new(shape: HAPairs, location_name: "HAPairs"))
|
1719
1720
|
UpdateFileSystemOntapConfiguration.struct_class = Types::UpdateFileSystemOntapConfiguration
|
1720
1721
|
|
1721
1722
|
UpdateFileSystemOpenZFSConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -91,7 +91,7 @@ module Aws::FSx
|
|
91
91
|
# File Server User Guide*.
|
92
92
|
#
|
93
93
|
# * `STORAGE_OPTIMIZATION` - After the `FILE_SYSTEM_UPDATE` task to
|
94
|
-
# increase a file system's storage capacity has
|
94
|
+
# increase a file system's storage capacity has completed
|
95
95
|
# successfully, a `STORAGE_OPTIMIZATION` task starts.
|
96
96
|
#
|
97
97
|
# * For Windows and ONTAP, storage optimization is the process of
|
@@ -154,6 +154,11 @@ module Aws::FSx
|
|
154
154
|
# * `RELEASE_NFS_V3_LOCKS` - Tracks the release of Network File System
|
155
155
|
# (NFS) V3 locks on an Amazon FSx for OpenZFS file system.
|
156
156
|
#
|
157
|
+
# * `DOWNLOAD_DATA_FROM_BACKUP` - An FSx for ONTAP backup is being
|
158
|
+
# restored to a new volume on a second-generation file system. Once
|
159
|
+
# the all the file metadata is loaded onto the volume, you can mount
|
160
|
+
# the volume with read-only access. during this process.
|
161
|
+
#
|
157
162
|
# * `VOLUME_INITIALIZE_WITH_SNAPSHOT` - A volume is being created from
|
158
163
|
# a snapshot on a different FSx for OpenZFS file system. You can
|
159
164
|
# initiate this from the Amazon FSx console, API (`CreateVolume`),
|
@@ -178,9 +183,9 @@ module Aws::FSx
|
|
178
183
|
# @return [String]
|
179
184
|
#
|
180
185
|
# @!attribute [rw] progress_percent
|
181
|
-
# The percentage-complete status of a `STORAGE_OPTIMIZATION`
|
182
|
-
# administrative action. Does not apply to
|
183
|
-
# action type.
|
186
|
+
# The percentage-complete status of a `STORAGE_OPTIMIZATION` or
|
187
|
+
# `DOWNLOAD_DATA_FROM_BACKUP` administrative action. Does not apply to
|
188
|
+
# any other administrative action type.
|
184
189
|
# @return [Integer]
|
185
190
|
#
|
186
191
|
# @!attribute [rw] request_time
|
@@ -202,9 +207,25 @@ module Aws::FSx
|
|
202
207
|
# * `COMPLETED` - Amazon FSx has finished processing the
|
203
208
|
# administrative task.
|
204
209
|
#
|
210
|
+
# For a backup restore to a second-generation FSx for ONTAP file
|
211
|
+
# system, indicates that all data has been downloaded to the volume,
|
212
|
+
# and clients now have read-write access to volume.
|
213
|
+
#
|
205
214
|
# * `UPDATED_OPTIMIZING` - For a storage-capacity increase update,
|
206
215
|
# Amazon FSx has updated the file system with the new storage
|
207
216
|
# capacity, and is now performing the storage-optimization process.
|
217
|
+
#
|
218
|
+
# * `PENDING` - For a backup restore to a second-generation FSx for
|
219
|
+
# ONTAP file system, indicates that the file metadata is being
|
220
|
+
# downloaded onto the volume. The volume's Lifecycle state is
|
221
|
+
# CREATING.
|
222
|
+
#
|
223
|
+
# * `IN_PROGRESS` - For a backup restore to a second-generation FSx
|
224
|
+
# for ONTAP file system, indicates that all metadata has been
|
225
|
+
# downloaded to the new volume and client can access data with
|
226
|
+
# read-only access while Amazon FSx downloads the file data to the
|
227
|
+
# volume. Track the progress of this process with the
|
228
|
+
# `ProgressPercent` element.
|
208
229
|
# @return [String]
|
209
230
|
#
|
210
231
|
# @!attribute [rw] target_file_system_values
|
@@ -281,7 +302,7 @@ module Aws::FSx
|
|
281
302
|
# the following conditions:
|
282
303
|
#
|
283
304
|
# * The strings in the value of `Aggregates` are not are not formatted
|
284
|
-
# as `aggrX`, where X is a number between 1 and
|
305
|
+
# as `aggrX`, where X is a number between 1 and 12.
|
285
306
|
#
|
286
307
|
# * The value of `Aggregates` contains aggregates that are not
|
287
308
|
# present.
|
@@ -2037,14 +2058,21 @@ module Aws::FSx
|
|
2037
2058
|
# Specifies the FSx for ONTAP file system deployment type to use in
|
2038
2059
|
# creating the file system.
|
2039
2060
|
#
|
2040
|
-
# * `MULTI_AZ_1` -
|
2041
|
-
#
|
2042
|
-
#
|
2061
|
+
# * `MULTI_AZ_1` - A high availability file system configured for
|
2062
|
+
# Multi-AZ redundancy to tolerate temporary Availability Zone (AZ)
|
2063
|
+
# unavailability. This is a first-generation FSx for ONTAP file
|
2064
|
+
# system.
|
2065
|
+
#
|
2066
|
+
# * `MULTI_AZ_2` - A high availability file system configured for
|
2067
|
+
# Multi-AZ redundancy to tolerate temporary AZ unavailability. This
|
2068
|
+
# is a second-generation FSx for ONTAP file system.
|
2043
2069
|
#
|
2044
2070
|
# * `SINGLE_AZ_1` - A file system configured for Single-AZ redundancy.
|
2071
|
+
# This is a first-generation FSx for ONTAP file system.
|
2045
2072
|
#
|
2046
2073
|
# * `SINGLE_AZ_2` - A file system configured with multiple
|
2047
|
-
# high-availability (HA) pairs for Single-AZ redundancy.
|
2074
|
+
# high-availability (HA) pairs for Single-AZ redundancy. This is a
|
2075
|
+
# second-generation FSx for ONTAP file system.
|
2048
2076
|
#
|
2049
2077
|
# For information about the use cases for Multi-AZ and Single-AZ
|
2050
2078
|
# deployments, refer to [Choosing a file system deployment type][1].
|
@@ -2077,9 +2105,9 @@ module Aws::FSx
|
|
2077
2105
|
# @return [Types::DiskIopsConfiguration]
|
2078
2106
|
#
|
2079
2107
|
# @!attribute [rw] preferred_subnet_id
|
2080
|
-
# Required when `DeploymentType` is set to `MULTI_AZ_1
|
2081
|
-
# specifies the subnet in which you want the
|
2082
|
-
# be located.
|
2108
|
+
# Required when `DeploymentType` is set to `MULTI_AZ_1` or
|
2109
|
+
# `MULTI_AZ_2`. This specifies the subnet in which you want the
|
2110
|
+
# preferred file server to be located.
|
2083
2111
|
# @return [String]
|
2084
2112
|
#
|
2085
2113
|
# @!attribute [rw] route_table_ids
|
@@ -2137,12 +2165,16 @@ module Aws::FSx
|
|
2137
2165
|
#
|
2138
2166
|
# @!attribute [rw] ha_pairs
|
2139
2167
|
# Specifies how many high-availability (HA) pairs of file servers will
|
2140
|
-
# power your file system.
|
2141
|
-
# pair.
|
2142
|
-
#
|
2143
|
-
#
|
2144
|
-
#
|
2145
|
-
#
|
2168
|
+
# power your file system. First-generation file systems are powered by
|
2169
|
+
# 1 HA pair. Second-generation multi-AZ file systems are powered by 1
|
2170
|
+
# HA pair. Second generation single-AZ file systems are powered by up
|
2171
|
+
# to 12 HA pairs. The default value is 1. The value of this property
|
2172
|
+
# affects the values of `StorageCapacity`, `Iops`, and
|
2173
|
+
# `ThroughputCapacity`. For more information, see [High-availability
|
2174
|
+
# (HA) pairs][1] in the FSx for ONTAP user guide. Block storage
|
2175
|
+
# protocol support (iSCSI and NVMe over TCP) is disabled on file
|
2176
|
+
# systems with more than 6 HA pairs. For more information, see [Using
|
2177
|
+
# block storage protocols][2].
|
2146
2178
|
#
|
2147
2179
|
# Amazon FSx responds with an HTTP status code 400 (Bad Request) for
|
2148
2180
|
# the following conditions:
|
@@ -2150,11 +2182,12 @@ module Aws::FSx
|
|
2150
2182
|
# * The value of `HAPairs` is less than 1 or greater than 12.
|
2151
2183
|
#
|
2152
2184
|
# * The value of `HAPairs` is greater than 1 and the value of
|
2153
|
-
# `DeploymentType` is `SINGLE_AZ_1` or `
|
2185
|
+
# `DeploymentType` is `SINGLE_AZ_1`, `MULTI_AZ_1`, or `MULTI_AZ_2`.
|
2154
2186
|
#
|
2155
2187
|
#
|
2156
2188
|
#
|
2157
2189
|
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/administering-file-systems.html#HA-pairs
|
2190
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/supported-fsx-clients.html#using-block-storage
|
2158
2191
|
# @return [Integer]
|
2159
2192
|
#
|
2160
2193
|
# @!attribute [rw] throughput_capacity_per_ha_pair
|
@@ -2164,13 +2197,15 @@ module Aws::FSx
|
|
2164
2197
|
# You can define either the `ThroughputCapacityPerHAPair` or the
|
2165
2198
|
# `ThroughputCapacity` when creating a file system, but not both.
|
2166
2199
|
#
|
2167
|
-
# This field and `ThroughputCapacity` are the same for
|
2168
|
-
#
|
2200
|
+
# This field and `ThroughputCapacity` are the same for file systems
|
2201
|
+
# powered by one HA pair.
|
2169
2202
|
#
|
2170
2203
|
# * For `SINGLE_AZ_1` and `MULTI_AZ_1` file systems, valid values are
|
2171
2204
|
# 128, 256, 512, 1024, 2048, or 4096 MBps.
|
2172
2205
|
#
|
2173
|
-
# * For `SINGLE_AZ_2
|
2206
|
+
# * For `SINGLE_AZ_2`, valid values are 1536, 3072, or 6144 MBps.
|
2207
|
+
#
|
2208
|
+
# * For `MULTI_AZ_2`, valid values are 384, 768, 1536, 3072, or 6144
|
2174
2209
|
# MBps.
|
2175
2210
|
#
|
2176
2211
|
# Amazon FSx responds with an HTTP status code 400 (Bad Request) for
|
@@ -2181,8 +2216,8 @@ module Aws::FSx
|
|
2181
2216
|
# systems with one HA pair.
|
2182
2217
|
#
|
2183
2218
|
# * The value of deployment type is `SINGLE_AZ_2` and
|
2184
|
-
# `ThroughputCapacity` / `ThroughputCapacityPerHAPair` is a
|
2185
|
-
# pair (a value between
|
2219
|
+
# `ThroughputCapacity` / `ThroughputCapacityPerHAPair` is not a
|
2220
|
+
# valid HA pair (a value between 1 and 12).
|
2186
2221
|
#
|
2187
2222
|
# * The value of `ThroughputCapacityPerHAPair` is not a valid value.
|
2188
2223
|
# @return [Integer]
|
@@ -2243,31 +2278,36 @@ module Aws::FSx
|
|
2243
2278
|
# @return [String]
|
2244
2279
|
#
|
2245
2280
|
# @!attribute [rw] deployment_type
|
2246
|
-
# Specifies the file system deployment type.
|
2247
|
-
# types are configured for redundancy within a single Availability
|
2248
|
-
# Zone in an Amazon Web Services Region . Valid values are the
|
2281
|
+
# Specifies the file system deployment type. Valid values are the
|
2249
2282
|
# following:
|
2250
2283
|
#
|
2251
|
-
# * `MULTI_AZ_1`- Creates file systems with high availability
|
2252
|
-
#
|
2253
|
-
#
|
2254
|
-
#
|
2255
|
-
# West (Oregon), Asia Pacific (Singapore), Asia Pacific (Tokyo), and
|
2256
|
-
# Europe (Ireland) Amazon Web Services Regions.
|
2284
|
+
# * `MULTI_AZ_1`- Creates file systems with high availability and
|
2285
|
+
# durability by replicating your data and supporting failover across
|
2286
|
+
# multiple Availability Zones in the same Amazon Web Services
|
2287
|
+
# Region.
|
2257
2288
|
#
|
2258
|
-
# * `
|
2259
|
-
#
|
2260
|
-
#
|
2289
|
+
# * `SINGLE_AZ_HA_2`- Creates file systems with high availability and
|
2290
|
+
# throughput capacities of 160 - 10,240 MB/s using an NVMe L2ARC
|
2291
|
+
# cache by deploying a primary and standby file system within the
|
2292
|
+
# same Availability Zone.
|
2293
|
+
#
|
2294
|
+
# * `SINGLE_AZ_HA_1`- Creates file systems with high availability and
|
2295
|
+
# throughput capacities of 64 - 4,096 MB/s by deploying a primary
|
2296
|
+
# and standby file system within the same Availability Zone.
|
2261
2297
|
#
|
2262
2298
|
# * `SINGLE_AZ_2`- Creates file systems with throughput capacities of
|
2263
|
-
# 160 - 10,240 MB/s using an NVMe L2ARC cache
|
2264
|
-
#
|
2265
|
-
# West (Oregon), Asia Pacific (Singapore), Asia Pacific (Tokyo), and
|
2266
|
-
# Europe (Ireland) Amazon Web Services Regions.
|
2299
|
+
# 160 - 10,240 MB/s using an NVMe L2ARC cache that automatically
|
2300
|
+
# recover within a single Availability Zone.
|
2267
2301
|
#
|
2268
|
-
#
|
2269
|
-
#
|
2270
|
-
#
|
2302
|
+
# * `SINGLE_AZ_1`- Creates file systems with throughput capacities of
|
2303
|
+
# 64 - 4,096 MBs that automatically recover within a single
|
2304
|
+
# Availability Zone.
|
2305
|
+
#
|
2306
|
+
# For a list of which Amazon Web Services Regions each deployment type
|
2307
|
+
# is available in, see [Deployment type availability][1]. For more
|
2308
|
+
# information on the differences in performance between deployment
|
2309
|
+
# types, see [File system performance][2] in the *Amazon FSx for
|
2310
|
+
# OpenZFS User Guide*.
|
2271
2311
|
#
|
2272
2312
|
#
|
2273
2313
|
#
|
@@ -5541,7 +5581,8 @@ module Aws::FSx
|
|
5541
5581
|
# @return [String]
|
5542
5582
|
#
|
5543
5583
|
# @!attribute [rw] failure_details
|
5544
|
-
# A structure providing details of any failures that occurred
|
5584
|
+
# A structure providing details of any failures that occurred in
|
5585
|
+
# creating a cache.
|
5545
5586
|
# @return [Types::FileCacheFailureDetails]
|
5546
5587
|
#
|
5547
5588
|
# @!attribute [rw] storage_capacity
|
@@ -6829,14 +6870,21 @@ module Aws::FSx
|
|
6829
6870
|
# Specifies the FSx for ONTAP file system deployment type in use in
|
6830
6871
|
# the file system.
|
6831
6872
|
#
|
6832
|
-
# * `MULTI_AZ_1` -
|
6833
|
-
#
|
6834
|
-
#
|
6873
|
+
# * `MULTI_AZ_1` - A high availability file system configured for
|
6874
|
+
# Multi-AZ redundancy to tolerate temporary Availability Zone (AZ)
|
6875
|
+
# unavailability. This is a first-generation FSx for ONTAP file
|
6876
|
+
# system.
|
6877
|
+
#
|
6878
|
+
# * `MULTI_AZ_2` - A high availability file system configured for
|
6879
|
+
# Multi-AZ redundancy to tolerate temporary AZ unavailability. This
|
6880
|
+
# is a second-generation FSx for ONTAP file system.
|
6835
6881
|
#
|
6836
6882
|
# * `SINGLE_AZ_1` - A file system configured for Single-AZ redundancy.
|
6883
|
+
# This is a first-generation FSx for ONTAP file system.
|
6837
6884
|
#
|
6838
6885
|
# * `SINGLE_AZ_2` - A file system configured with multiple
|
6839
|
-
# high-availability (HA) pairs for Single-AZ redundancy.
|
6886
|
+
# high-availability (HA) pairs for Single-AZ redundancy. This is a
|
6887
|
+
# second-generation FSx for ONTAP file system.
|
6840
6888
|
#
|
6841
6889
|
# For information about the use cases for Multi-AZ and Single-AZ
|
6842
6890
|
# deployments, refer to [Choosing Multi-AZ or Single-AZ file system
|
@@ -6925,7 +6973,7 @@ module Aws::FSx
|
|
6925
6973
|
# * The value of `HAPairs` is less than 1 or greater than 12.
|
6926
6974
|
#
|
6927
6975
|
# * The value of `HAPairs` is greater than 1 and the value of
|
6928
|
-
# `DeploymentType` is `SINGLE_AZ_1` or `
|
6976
|
+
# `DeploymentType` is `SINGLE_AZ_1`, `MULTI_AZ_1`, or `MULTI_AZ_2`.
|
6929
6977
|
#
|
6930
6978
|
#
|
6931
6979
|
#
|
@@ -6943,10 +6991,13 @@ module Aws::FSx
|
|
6943
6991
|
# This field and `ThroughputCapacity` are the same for file systems
|
6944
6992
|
# with one HA pair.
|
6945
6993
|
#
|
6946
|
-
# * For `SINGLE_AZ_1` and `MULTI_AZ_1
|
6947
|
-
# 512, 1024, 2048, or 4096 MBps.
|
6994
|
+
# * For `SINGLE_AZ_1` and `MULTI_AZ_1` file systems, valid values are
|
6995
|
+
# 128, 256, 512, 1024, 2048, or 4096 MBps.
|
6948
6996
|
#
|
6949
|
-
# * For `SINGLE_AZ_2`, valid values are 3072 or 6144 MBps.
|
6997
|
+
# * For `SINGLE_AZ_2`, valid values are 1536, 3072, or 6144 MBps.
|
6998
|
+
#
|
6999
|
+
# * For `MULTI_AZ_2`, valid values are 384, 768, 1536, 3072, or 6144
|
7000
|
+
# MBps.
|
6950
7001
|
#
|
6951
7002
|
# Amazon FSx responds with an HTTP status code 400 (Bad Request) for
|
6952
7003
|
# the following conditions:
|
@@ -6955,8 +7006,8 @@ module Aws::FSx
|
|
6955
7006
|
# `ThroughputCapacityPerHAPair` are not the same value.
|
6956
7007
|
#
|
6957
7008
|
# * The value of deployment type is `SINGLE_AZ_2` and
|
6958
|
-
# `ThroughputCapacity` / `ThroughputCapacityPerHAPair` is a
|
6959
|
-
# pair (a value between
|
7009
|
+
# `ThroughputCapacity` / `ThroughputCapacityPerHAPair` is not a
|
7010
|
+
# valid HA pair (a value between 1 and 12).
|
6960
7011
|
#
|
6961
7012
|
# * The value of `ThroughputCapacityPerHAPair` is not a valid value.
|
6962
7013
|
# @return [Integer]
|
@@ -7293,7 +7344,8 @@ module Aws::FSx
|
|
7293
7344
|
#
|
7294
7345
|
# @!attribute [rw] deployment_type
|
7295
7346
|
# Specifies the file-system deployment type. Amazon FSx for OpenZFS
|
7296
|
-
# supports
`MULTI_AZ_1`, `
|
7347
|
+
# supports
`MULTI_AZ_1`, `SINGLE_AZ_HA_2`, `SINGLE_AZ_HA_1`,
|
7348
|
+
# `SINGLE_AZ_2`, and `SINGLE_AZ_1`.
|
7297
7349
|
# @return [String]
|
7298
7350
|
#
|
7299
7351
|
# @!attribute [rw] throughput_capacity
|
@@ -9161,10 +9213,13 @@ module Aws::FSx
|
|
9161
9213
|
# This field and `ThroughputCapacity` are the same for file systems
|
9162
9214
|
# with one HA pair.
|
9163
9215
|
#
|
9164
|
-
# * For `SINGLE_AZ_1` and `MULTI_AZ_1
|
9165
|
-
# 512, 1024, 2048, or 4096 MBps.
|
9216
|
+
# * For `SINGLE_AZ_1` and `MULTI_AZ_1` file systems, valid values are
|
9217
|
+
# 128, 256, 512, 1024, 2048, or 4096 MBps.
|
9166
9218
|
#
|
9167
|
-
# * For `SINGLE_AZ_2`, valid values are 3072 or 6144 MBps.
|
9219
|
+
# * For `SINGLE_AZ_2`, valid values are 1536, 3072, or 6144 MBps.
|
9220
|
+
#
|
9221
|
+
# * For `MULTI_AZ_2`, valid values are 384, 768, 1536, 3072, or 6144
|
9222
|
+
# MBps.
|
9168
9223
|
#
|
9169
9224
|
# Amazon FSx responds with an HTTP status code 400 (Bad Request) for
|
9170
9225
|
# the following conditions:
|
@@ -9174,12 +9229,28 @@ module Aws::FSx
|
|
9174
9229
|
# systems with one HA pair.
|
9175
9230
|
#
|
9176
9231
|
# * The value of deployment type is `SINGLE_AZ_2` and
|
9177
|
-
# `ThroughputCapacity` / `ThroughputCapacityPerHAPair` is a
|
9178
|
-
# pair (a value between
|
9232
|
+
# `ThroughputCapacity` / `ThroughputCapacityPerHAPair` is not a
|
9233
|
+
# valid HA pair (a value between 1 and 12).
|
9179
9234
|
#
|
9180
9235
|
# * The value of `ThroughputCapacityPerHAPair` is not a valid value.
|
9181
9236
|
# @return [Integer]
|
9182
9237
|
#
|
9238
|
+
# @!attribute [rw] ha_pairs
|
9239
|
+
# Use to update the number of high-availability (HA) pairs for a
|
9240
|
+
# second-generation single-AZ file system. If you increase the number
|
9241
|
+
# of HA pairs for your file system, you must specify proportional
|
9242
|
+
# increases for `StorageCapacity`, `Iops`, and `ThroughputCapacity`.
|
9243
|
+
# For more information, see [High-availability (HA) pairs][1] in the
|
9244
|
+
# FSx for ONTAP user guide. Block storage protocol support (iSCSI and
|
9245
|
+
# NVMe over TCP) is disabled on file systems with more than 6 HA
|
9246
|
+
# pairs. For more information, see [Using block storage protocols][2].
|
9247
|
+
#
|
9248
|
+
#
|
9249
|
+
#
|
9250
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/administering-file-systems.html#HA-pairs
|
9251
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/supported-fsx-clients.html#using-block-storage
|
9252
|
+
# @return [Integer]
|
9253
|
+
#
|
9183
9254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemOntapConfiguration AWS API Documentation
|
9184
9255
|
#
|
9185
9256
|
class UpdateFileSystemOntapConfiguration < Struct.new(
|
@@ -9191,7 +9262,8 @@ module Aws::FSx
|
|
9191
9262
|
:throughput_capacity,
|
9192
9263
|
:add_route_table_ids,
|
9193
9264
|
:remove_route_table_ids,
|
9194
|
-
:throughput_capacity_per_ha_pair
|
9265
|
+
:throughput_capacity_per_ha_pair,
|
9266
|
+
:ha_pairs)
|
9195
9267
|
SENSITIVE = [:fsx_admin_password]
|
9196
9268
|
include Aws::Structure
|
9197
9269
|
end
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
@@ -330,7 +331,7 @@ module Aws
|
|
330
331
|
?ontap_configuration: {
|
331
332
|
automatic_backup_retention_days: ::Integer?,
|
332
333
|
daily_automatic_backup_start_time: ::String?,
|
333
|
-
deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2"),
|
334
|
+
deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_2"),
|
334
335
|
endpoint_ip_address_range: ::String?,
|
335
336
|
fsx_admin_password: ::String?,
|
336
337
|
disk_iops_configuration: {
|
@@ -350,7 +351,7 @@ module Aws
|
|
350
351
|
copy_tags_to_backups: bool?,
|
351
352
|
copy_tags_to_volumes: bool?,
|
352
353
|
daily_automatic_backup_start_time: ::String?,
|
353
|
-
deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_1"),
|
354
|
+
deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "SINGLE_AZ_HA_1" | "SINGLE_AZ_HA_2" | "MULTI_AZ_1"),
|
354
355
|
throughput_capacity: ::Integer,
|
355
356
|
weekly_maintenance_start_time: ::String?,
|
356
357
|
disk_iops_configuration: {
|
@@ -465,7 +466,7 @@ module Aws
|
|
465
466
|
copy_tags_to_backups: bool?,
|
466
467
|
copy_tags_to_volumes: bool?,
|
467
468
|
daily_automatic_backup_start_time: ::String?,
|
468
|
-
deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_1"),
|
469
|
+
deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "SINGLE_AZ_HA_1" | "SINGLE_AZ_HA_2" | "MULTI_AZ_1"),
|
469
470
|
throughput_capacity: ::Integer,
|
470
471
|
weekly_maintenance_start_time: ::String?,
|
471
472
|
disk_iops_configuration: {
|
@@ -1186,7 +1187,8 @@ module Aws
|
|
1186
1187
|
throughput_capacity: ::Integer?,
|
1187
1188
|
add_route_table_ids: Array[::String]?,
|
1188
1189
|
remove_route_table_ids: Array[::String]?,
|
1189
|
-
throughput_capacity_per_ha_pair: ::Integer
|
1190
|
+
throughput_capacity_per_ha_pair: ::Integer?,
|
1191
|
+
ha_pairs: ::Integer?
|
1190
1192
|
},
|
1191
1193
|
?open_zfs_configuration: {
|
1192
1194
|
automatic_backup_retention_days: ::Integer?,
|
data/sig/resource.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -23,10 +23,10 @@ module Aws::FSx
|
|
23
23
|
end
|
24
24
|
|
25
25
|
class AdministrativeAction
|
26
|
-
attr_accessor administrative_action_type: ("FILE_SYSTEM_UPDATE" | "STORAGE_OPTIMIZATION" | "FILE_SYSTEM_ALIAS_ASSOCIATION" | "FILE_SYSTEM_ALIAS_DISASSOCIATION" | "VOLUME_UPDATE" | "SNAPSHOT_UPDATE" | "RELEASE_NFS_V3_LOCKS" | "VOLUME_RESTORE" | "THROUGHPUT_OPTIMIZATION" | "IOPS_OPTIMIZATION" | "STORAGE_TYPE_OPTIMIZATION" | "MISCONFIGURED_STATE_RECOVERY" | "VOLUME_UPDATE_WITH_SNAPSHOT" | "VOLUME_INITIALIZE_WITH_SNAPSHOT")
|
26
|
+
attr_accessor administrative_action_type: ("FILE_SYSTEM_UPDATE" | "STORAGE_OPTIMIZATION" | "FILE_SYSTEM_ALIAS_ASSOCIATION" | "FILE_SYSTEM_ALIAS_DISASSOCIATION" | "VOLUME_UPDATE" | "SNAPSHOT_UPDATE" | "RELEASE_NFS_V3_LOCKS" | "VOLUME_RESTORE" | "THROUGHPUT_OPTIMIZATION" | "IOPS_OPTIMIZATION" | "STORAGE_TYPE_OPTIMIZATION" | "MISCONFIGURED_STATE_RECOVERY" | "VOLUME_UPDATE_WITH_SNAPSHOT" | "VOLUME_INITIALIZE_WITH_SNAPSHOT" | "DOWNLOAD_DATA_FROM_BACKUP")
|
27
27
|
attr_accessor progress_percent: ::Integer
|
28
28
|
attr_accessor request_time: ::Time
|
29
|
-
attr_accessor status: ("FAILED" | "IN_PROGRESS" | "PENDING" | "COMPLETED" | "UPDATED_OPTIMIZING")
|
29
|
+
attr_accessor status: ("FAILED" | "IN_PROGRESS" | "PENDING" | "COMPLETED" | "UPDATED_OPTIMIZING" | "OPTIMIZING")
|
30
30
|
attr_accessor target_file_system_values: Types::FileSystem
|
31
31
|
attr_accessor failure_details: Types::AdministrativeActionFailureDetails
|
32
32
|
attr_accessor target_volume_values: Types::Volume
|
@@ -313,7 +313,7 @@ module Aws::FSx
|
|
313
313
|
class CreateFileSystemOntapConfiguration
|
314
314
|
attr_accessor automatic_backup_retention_days: ::Integer
|
315
315
|
attr_accessor daily_automatic_backup_start_time: ::String
|
316
|
-
attr_accessor deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2")
|
316
|
+
attr_accessor deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_2")
|
317
317
|
attr_accessor endpoint_ip_address_range: ::String
|
318
318
|
attr_accessor fsx_admin_password: ::String
|
319
319
|
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
@@ -331,7 +331,7 @@ module Aws::FSx
|
|
331
331
|
attr_accessor copy_tags_to_backups: bool
|
332
332
|
attr_accessor copy_tags_to_volumes: bool
|
333
333
|
attr_accessor daily_automatic_backup_start_time: ::String
|
334
|
-
attr_accessor deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_1")
|
334
|
+
attr_accessor deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "SINGLE_AZ_HA_1" | "SINGLE_AZ_HA_2" | "MULTI_AZ_1")
|
335
335
|
attr_accessor throughput_capacity: ::Integer
|
336
336
|
attr_accessor weekly_maintenance_start_time: ::String
|
337
337
|
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
@@ -1176,7 +1176,7 @@ module Aws::FSx
|
|
1176
1176
|
class OntapFileSystemConfiguration
|
1177
1177
|
attr_accessor automatic_backup_retention_days: ::Integer
|
1178
1178
|
attr_accessor daily_automatic_backup_start_time: ::String
|
1179
|
-
attr_accessor deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2")
|
1179
|
+
attr_accessor deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_2")
|
1180
1180
|
attr_accessor endpoint_ip_address_range: ::String
|
1181
1181
|
attr_accessor endpoints: Types::FileSystemEndpoints
|
1182
1182
|
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
@@ -1231,7 +1231,7 @@ module Aws::FSx
|
|
1231
1231
|
attr_accessor copy_tags_to_backups: bool
|
1232
1232
|
attr_accessor copy_tags_to_volumes: bool
|
1233
1233
|
attr_accessor daily_automatic_backup_start_time: ::String
|
1234
|
-
attr_accessor deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_1")
|
1234
|
+
attr_accessor deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "SINGLE_AZ_HA_1" | "SINGLE_AZ_HA_2" | "MULTI_AZ_1")
|
1235
1235
|
attr_accessor throughput_capacity: ::Integer
|
1236
1236
|
attr_accessor weekly_maintenance_start_time: ::String
|
1237
1237
|
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
@@ -1573,6 +1573,7 @@ module Aws::FSx
|
|
1573
1573
|
attr_accessor add_route_table_ids: ::Array[::String]
|
1574
1574
|
attr_accessor remove_route_table_ids: ::Array[::String]
|
1575
1575
|
attr_accessor throughput_capacity_per_ha_pair: ::Integer
|
1576
|
+
attr_accessor ha_pairs: ::Integer
|
1576
1577
|
SENSITIVE: [:fsx_admin_password]
|
1577
1578
|
end
|
1578
1579
|
|
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.95.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: 2024-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|