aws-sdk-fsx 1.93.0 → 1.94.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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"))
@@ -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 been completed
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 any other administrative
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 6.
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` - (Default) A high availability file system
2041
- # configured for Multi-AZ redundancy to tolerate temporary
2042
- # Availability Zone (AZ) unavailability.
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`. This
2081
- # specifies the subnet in which you want the preferred file server to
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. Scale-up file systems are powered by 1 HA
2141
- # pair. The default value is 1. FSx for ONTAP scale-out file systems
2142
- # are powered by up to 12 HA pairs. The value of this property affects
2143
- # the values of `StorageCapacity`, `Iops`, and `ThroughputCapacity`.
2144
- # For more information, see [High-availability (HA) pairs][1] in the
2145
- # FSx for ONTAP user guide.
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 `MULTI_AZ_1`.
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 scale-up file
2168
- # systems powered by one HA pair.
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` file systems, valid values are 3072 or 6144
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 valid HA
2185
- # pair (a value between 2 and 12).
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. Single AZ deployment
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 that are
2252
- # configured for Multi-AZ redundancy to tolerate temporary
2253
- # unavailability in Availability Zones (AZs). `Multi_AZ_1` is
2254
- # available only in the US East (N. Virginia), US East (Ohio), US
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
- # * `SINGLE_AZ_1`- Creates file systems with throughput capacities of
2259
- # 64 - 4,096 MB/s. `Single_AZ_1` is available in all Amazon Web
2260
- # Services Regions where Amazon FSx for OpenZFS is available.
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. `Single_AZ_2` is
2264
- # available only in the US East (N. Virginia), US East (Ohio), US
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
- # For more information, see [Deployment type availability][1] and
2269
- # [File system performance][2] in the *Amazon FSx for OpenZFS User
2270
- # Guide*.
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` - (Default) A high availability file system
6833
- # configured for Multi-AZ redundancy to tolerate temporary
6834
- # Availability Zone (AZ) unavailability.
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 `MULTI_AZ_1`.
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`, valid values are 128, 256,
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 valid HA
6959
- # pair (a value between 2 and 12).
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`, `SINGLE_AZ_1`, and `SINGLE_AZ_2`.
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`, valid values are 128, 256,
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 valid HA
9178
- # pair (a value between 2 and 12).
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-fsx/customizations'
52
52
  # @!group service
53
53
  module Aws::FSx
54
54
 
55
- GEM_VERSION = '1.93.0'
55
+ GEM_VERSION = '1.94.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -330,7 +330,7 @@ module Aws
330
330
  ?ontap_configuration: {
331
331
  automatic_backup_retention_days: ::Integer?,
332
332
  daily_automatic_backup_start_time: ::String?,
333
- deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2"),
333
+ deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_2"),
334
334
  endpoint_ip_address_range: ::String?,
335
335
  fsx_admin_password: ::String?,
336
336
  disk_iops_configuration: {
@@ -350,7 +350,7 @@ module Aws
350
350
  copy_tags_to_backups: bool?,
351
351
  copy_tags_to_volumes: bool?,
352
352
  daily_automatic_backup_start_time: ::String?,
353
- deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_1"),
353
+ deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "SINGLE_AZ_HA_1" | "SINGLE_AZ_HA_2" | "MULTI_AZ_1"),
354
354
  throughput_capacity: ::Integer,
355
355
  weekly_maintenance_start_time: ::String?,
356
356
  disk_iops_configuration: {
@@ -465,7 +465,7 @@ module Aws
465
465
  copy_tags_to_backups: bool?,
466
466
  copy_tags_to_volumes: bool?,
467
467
  daily_automatic_backup_start_time: ::String?,
468
- deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_1"),
468
+ deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "SINGLE_AZ_HA_1" | "SINGLE_AZ_HA_2" | "MULTI_AZ_1"),
469
469
  throughput_capacity: ::Integer,
470
470
  weekly_maintenance_start_time: ::String?,
471
471
  disk_iops_configuration: {
@@ -1186,7 +1186,8 @@ module Aws
1186
1186
  throughput_capacity: ::Integer?,
1187
1187
  add_route_table_ids: Array[::String]?,
1188
1188
  remove_route_table_ids: Array[::String]?,
1189
- throughput_capacity_per_ha_pair: ::Integer?
1189
+ throughput_capacity_per_ha_pair: ::Integer?,
1190
+ ha_pairs: ::Integer?
1190
1191
  },
1191
1192
  ?open_zfs_configuration: {
1192
1193
  automatic_backup_retention_days: ::Integer?,
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.93.0
4
+ version: 1.94.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-07-02 00:00:00.000000000 Z
11
+ date: 2024-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core