aws-sdk-fsx 1.84.0 → 1.86.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bdf329d633f6e7c56dc17148d3200ff42ba85455e02d97b2785e9d4cc511d51e
4
- data.tar.gz: 7ce78c045c3efc2bddbafe994ea89276bf990d80ee28fbc4c7ed994a9522e4b6
3
+ metadata.gz: 9260e2c276e48d902025b62475f26f065d415575297168008de9616a0bdd3c3b
4
+ data.tar.gz: d2fff4df8deda73125772ca0bfaffe87f2fc2c7da32fcf719febacee5c1bbfd1
5
5
  SHA512:
6
- metadata.gz: 6c8ddbd236f8137d5eb180d84c161cd3ef1807bfa3273b0fd20dbd1af3cbf0c7844f669249b552d3c40f983fad8cb1fd3493aec637ec5c3717fbd0d885aaf486
7
- data.tar.gz: da435ce4d04fdae716160339286a5c3dbe386d17e95c6d7ee551e079a3081b0e1f3cbc208e3bea0f61b09058f171b77eafbc0b47a6c61d75daca3afdefc58e6f
6
+ metadata.gz: 4a0f8e07f36fe8049ee02f7c6c840423551f60386053632958ef1d0b56ac26643cbcdb4c555c06dc8057907cab99981736931d6495439a8200f9ca4016d9c331
7
+ data.tar.gz: b4897947f7c2dde8e604d0566493ff20c0aa6d1506bee381d42838334d177ebbeabc57c7938f8932cc4c4da96114e0d407b5635c5a1d2ecdf9e1fb1846ba2260
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.86.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.85.0 (2024-03-04)
10
+ ------------------
11
+
12
+ * Feature - Added support for creating FSx for NetApp ONTAP file systems with up to 12 HA pairs, delivering up to 72 GB/s of read throughput and 12 GB/s of write throughput.
13
+
4
14
  1.84.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.84.0
1
+ 1.86.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::FSx
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::FSx
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::FSx
347
356
  # @option options [Aws::FSx::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::FSx::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
375
- #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
378
409
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
382
412
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
388
415
  #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -2528,8 +2552,8 @@ module Aws::FSx
2528
2552
  #
2529
2553
  # **FSx for ONTAP file systems** - The amount of storage capacity that
2530
2554
  # you can configure depends on the value of the `HAPairs` property. The
2531
- # minimum value is calculated as 1,024 * `HAPairs` and the maxium is
2532
- # calculated as 524,288 * `HAPairs`..
2555
+ # minimum value is calculated as 1,024 * `HAPairs` and the maximum is
2556
+ # calculated as 524,288 * `HAPairs`.
2533
2557
  #
2534
2558
  # **FSx for OpenZFS file systems** - The amount of storage capacity that
2535
2559
  # you can configure is from 64 GiB up to 524,288 GiB (512 TiB).
@@ -2589,6 +2613,9 @@ module Aws::FSx
2589
2613
  # interfaces created for file system access. This list isn't returned
2590
2614
  # in later requests to describe the file system.
2591
2615
  #
2616
+ # You must specify a security group if you are creating a Multi-AZ FSx
2617
+ # for ONTAP file system in a VPC subnet that has been shared with you.
2618
+ #
2592
2619
  # @option params [Array<Types::Tag>] :tags
2593
2620
  # The tags to apply to the file system that's being created. The key
2594
2621
  # value of the `Name` tag appears in the console as the file system
@@ -3883,7 +3910,7 @@ module Aws::FSx
3883
3910
  # Describes the self-managed Microsoft Active Directory to which you
3884
3911
  # want to join the SVM. Joining an Active Directory provides user
3885
3912
  # authentication and access control for SMB clients, including Microsoft
3886
- # Windows and macOS client accessing the file system.
3913
+ # Windows and macOS clients accessing the file system.
3887
3914
  #
3888
3915
  # @option params [String] :client_request_token
3889
3916
  # (Optional) An idempotency token for resource creation, in a string of
@@ -3916,12 +3943,15 @@ module Aws::FSx
3916
3943
  # majority of users are NFS clients, and an application accessing the
3917
3944
  # data uses a UNIX user as the service account.
3918
3945
  #
3919
- # * `NTFS` if the file system is managed by a Windows administrator, the
3920
- # majority of users are SMB clients, and an application accessing the
3921
- # data uses a Windows user as the service account.
3946
+ # * `NTFS` if the file system is managed by a Microsoft Windows
3947
+ # administrator, the majority of users are SMB clients, and an
3948
+ # application accessing the data uses a Microsoft Windows user as the
3949
+ # service account.
3922
3950
  #
3923
- # * `MIXED` if the file system is managed by both UNIX and Windows
3924
- # administrators and users consist of both NFS and SMB clients.
3951
+ # * `MIXED` This is an advanced setting. For more information, see
3952
+ # [Volume security
3953
+ # style](fsx/latest/ONTAPGuide/volume-security-style.html) in the
3954
+ # Amazon FSx for NetApp ONTAP User Guide.
3925
3955
  #
3926
3956
  # @return [Types::CreateStorageVirtualMachineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3927
3957
  #
@@ -6273,11 +6303,11 @@ module Aws::FSx
6273
6303
  # Indicates whether participant accounts in your organization can create
6274
6304
  # Amazon FSx for NetApp ONTAP Multi-AZ file systems in subnets that are
6275
6305
  # shared by a virtual private cloud (VPC) owner. For more information,
6276
- # see the [Amazon FSx for NetApp ONTAP User Guide][1].
6306
+ # see [Creating FSx for ONTAP file systems in shared subnets][1].
6277
6307
  #
6278
6308
  #
6279
6309
  #
6280
- # [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/maz-shared-vpc.html
6310
+ # [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/creating-file-systems.html#fsxn-vpc-shared-subnets
6281
6311
  #
6282
6312
  # @return [Types::DescribeSharedVpcConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6283
6313
  #
@@ -6343,10 +6373,10 @@ module Aws::FSx
6343
6373
  # left off.
6344
6374
  #
6345
6375
  # @option params [Boolean] :include_shared
6346
- # Set to `false` (default) if you want to only see the snapshots in your
6347
- # Amazon Web Services account. Set to `true` if you want to see the
6348
- # snapshots in your account and the ones shared with you from another
6349
- # account.
6376
+ # Set to `false` (default) if you want to only see the snapshots owned
6377
+ # by your Amazon Web Services account. Set to `true` if you want to see
6378
+ # the snapshots in your account and the ones shared with you from
6379
+ # another account.
6350
6380
  #
6351
6381
  # @return [Types::DescribeSnapshotsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6352
6382
  #
@@ -9198,7 +9228,7 @@ module Aws::FSx
9198
9228
  params: params,
9199
9229
  config: config)
9200
9230
  context[:gem_name] = 'aws-sdk-fsx'
9201
- context[:gem_version] = '1.84.0'
9231
+ context[:gem_version] = '1.86.0'
9202
9232
  Seahorse::Client::Request.new(handlers, context)
9203
9233
  end
9204
9234
 
@@ -1041,8 +1041,8 @@ module Aws::FSx
1041
1041
  include Aws::Structure
1042
1042
  end
1043
1043
 
1044
- # Used to specify the configuration options for a volume's storage
1045
- # aggregate or aggregates.
1044
+ # Used to specify the configuration options for an FSx for ONTAP
1045
+ # volume's storage aggregate or aggregates.
1046
1046
  #
1047
1047
  # @!attribute [rw] aggregates
1048
1048
  # Used to specify the names of aggregates on which the volume will be
@@ -2028,6 +2028,15 @@ module Aws::FSx
2028
2028
  # You should specify all virtual private cloud (VPC) route tables
2029
2029
  # associated with the subnets in which your clients are located. By
2030
2030
  # default, Amazon FSx selects your VPC's default route table.
2031
+ #
2032
+ # <note markdown="1"> Amazon FSx manages these route tables for Multi-AZ file systems
2033
+ # using tag-based authentication. These route tables are tagged with
2034
+ # `Key: AmazonFSx; Value: ManagedByAmazonFSx`. When creating FSx for
2035
+ # ONTAP Multi-AZ file systems using CloudFormation we recommend that
2036
+ # you add the `Key: AmazonFSx; Value: ManagedByAmazonFSx` tag
2037
+ # manually.
2038
+ #
2039
+ # </note>
2031
2040
  # @return [Array<String>]
2032
2041
  #
2033
2042
  # @!attribute [rw] throughput_capacity
@@ -2067,16 +2076,18 @@ module Aws::FSx
2067
2076
  # @return [String]
2068
2077
  #
2069
2078
  # @!attribute [rw] ha_pairs
2070
- # Specifies how many high-availability (HA) pairs the file system will
2071
- # have. The default value is 1. The value of this property affects the
2072
- # values of `StorageCapacity`, `Iops`, and `ThroughputCapacity`. For
2073
- # more information, see [High-availability (HA) pairs][1] in the FSx
2074
- # for ONTAP user guide.
2079
+ # Specifies how many high-availability (HA) pairs of file servers will
2080
+ # power your file system. Scale-up file systems are powered by 1 HA
2081
+ # pair. The default value is 1. FSx for ONTAP scale-out file systems
2082
+ # are powered by up to 12 HA pairs. The value of this property affects
2083
+ # the values of `StorageCapacity`, `Iops`, and `ThroughputCapacity`.
2084
+ # For more information, see [High-availability (HA) pairs][1] in the
2085
+ # FSx for ONTAP user guide.
2075
2086
  #
2076
2087
  # Amazon FSx responds with an HTTP status code 400 (Bad Request) for
2077
2088
  # the following conditions:
2078
2089
  #
2079
- # * The value of `HAPairs` is less than 1 or greater than 6.
2090
+ # * The value of `HAPairs` is less than 1 or greater than 12.
2080
2091
  #
2081
2092
  # * The value of `HAPairs` is greater than 1 and the value of
2082
2093
  # `DeploymentType` is `SINGLE_AZ_1` or `MULTI_AZ_1`.
@@ -2090,16 +2101,17 @@ module Aws::FSx
2090
2101
  # Use to choose the throughput capacity per HA pair, rather than the
2091
2102
  # total throughput for the file system.
2092
2103
  #
2093
- # This field and `ThroughputCapacity` cannot be defined in the same
2094
- # API call, but one is required.
2104
+ # You can define either the `ThroughputCapacityPerHAPair` or the
2105
+ # `ThroughputCapacity` when creating a file system, but not both.
2095
2106
  #
2096
- # This field and `ThroughputCapacity` are the same for file systems
2097
- # with one HA pair.
2107
+ # This field and `ThroughputCapacity` are the same for scale-up file
2108
+ # systems powered by one HA pair.
2098
2109
  #
2099
- # * For `SINGLE_AZ_1` and `MULTI_AZ_1`, valid values are 128, 256,
2100
- # 512, 1024, 2048, or 4096 MBps.
2110
+ # * For `SINGLE_AZ_1` and `MULTI_AZ_1` file systems, valid values are
2111
+ # 128, 256, 512, 1024, 2048, or 4096 MBps.
2101
2112
  #
2102
- # * For `SINGLE_AZ_2`, valid values are 3072 or 6144 MBps.
2113
+ # * For `SINGLE_AZ_2` file systems, valid values are 3072 or 6144
2114
+ # MBps.
2103
2115
  #
2104
2116
  # Amazon FSx responds with an HTTP status code 400 (Bad Request) for
2105
2117
  # the following conditions:
@@ -2110,7 +2122,7 @@ module Aws::FSx
2110
2122
  #
2111
2123
  # * The value of deployment type is `SINGLE_AZ_2` and
2112
2124
  # `ThroughputCapacity` / `ThroughputCapacityPerHAPair` is a valid HA
2113
- # pair (a value between 2 and 6).
2125
+ # pair (a value between 2 and 12).
2114
2126
  #
2115
2127
  # * The value of `ThroughputCapacityPerHAPair` is not a valid value.
2116
2128
  # @return [Integer]
@@ -2330,8 +2342,8 @@ module Aws::FSx
2330
2342
  #
2331
2343
  # **FSx for ONTAP file systems** - The amount of storage capacity that
2332
2344
  # you can configure depends on the value of the `HAPairs` property.
2333
- # The minimum value is calculated as 1,024 * `HAPairs` and the maxium
2334
- # is calculated as 524,288 * `HAPairs`..
2345
+ # The minimum value is calculated as 1,024 * `HAPairs` and the
2346
+ # maximum is calculated as 524,288 * `HAPairs`.
2335
2347
  #
2336
2348
  # **FSx for OpenZFS file systems** - The amount of storage capacity
2337
2349
  # that you can configure is from 64 GiB up to 524,288 GiB (512 TiB).
@@ -2393,6 +2405,9 @@ module Aws::FSx
2393
2405
  # A list of IDs specifying the security groups to apply to all network
2394
2406
  # interfaces created for file system access. This list isn't returned
2395
2407
  # in later requests to describe the file system.
2408
+ #
2409
+ # You must specify a security group if you are creating a Multi-AZ FSx
2410
+ # for ONTAP file system in a VPC subnet that has been shared with you.
2396
2411
  # @return [Array<String>]
2397
2412
  #
2398
2413
  # @!attribute [rw] tags
@@ -2700,23 +2715,32 @@ module Aws::FSx
2700
2715
  # the majority of users are SMB clients, and an application
2701
2716
  # accessing the data uses a Windows user as the service account.
2702
2717
  #
2703
- # * `MIXED` if the file system is managed by both UNIX and Windows
2704
- # administrators and users consist of both NFS and SMB clients.
2718
+ # * `MIXED` This is an advanced setting. For more information, see the
2719
+ # topic [What the security styles and their effects are][2] in the
2720
+ # NetApp Documentation Center.
2705
2721
  #
2722
+ # For more information, see [Volume security style][3] in the FSx for
2723
+ # ONTAP User Guide.
2706
2724
  #
2707
2725
  #
2708
- # [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-volumes.html#volume-security-style
2726
+ #
2727
+ # [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/volume-security-style
2728
+ # [2]: https://docs.netapp.com/us-en/ontap/nfs-admin/security-styles-their-effects-concept.html
2729
+ # [3]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/volume-security-style.html
2709
2730
  # @return [String]
2710
2731
  #
2711
2732
  # @!attribute [rw] size_in_megabytes
2712
- # Specifies the size of the volume, in megabytes (MB), that you are
2713
- # creating.
2733
+ # Use `SizeInBytes` instead. Specifies the size of the volume, in
2734
+ # megabytes (MB), that you are creating.
2714
2735
  # @return [Integer]
2715
2736
  #
2716
2737
  # @!attribute [rw] storage_efficiency_enabled
2717
2738
  # Set to true to enable deduplication, compression, and compaction
2718
2739
  # storage efficiency features on the volume, or set to false to
2719
- # disable them. This parameter is required.
2740
+ # disable them.
2741
+ #
2742
+ # `StorageEfficiencyEnabled` is required when creating a `RW` volume
2743
+ # (`OntapVolumeType` set to `RW`).
2720
2744
  # @return [Boolean]
2721
2745
  #
2722
2746
  # @!attribute [rw] storage_virtual_machine_id
@@ -2765,8 +2789,8 @@ module Aws::FSx
2765
2789
  # read-only and can be used as the destination of a NetApp
2766
2790
  # SnapMirror relationship.
2767
2791
  #
2768
- # For more information, see [Volume types][1] in the *Amazon FSx for
2769
- # NetApp ONTAP User Guide*.
2792
+ # For more information, see [Volume types][1] in the Amazon FSx for
2793
+ # NetApp ONTAP User Guide.
2770
2794
  #
2771
2795
  #
2772
2796
  #
@@ -2793,8 +2817,8 @@ module Aws::FSx
2793
2817
  # You can also provide the name of a custom policy that you created
2794
2818
  # with the ONTAP CLI or REST API.
2795
2819
  #
2796
- # For more information, see [Snapshot policies][1] in the *Amazon FSx
2797
- # for NetApp ONTAP User Guide*.
2820
+ # For more information, see [Snapshot policies][1] in the Amazon FSx
2821
+ # for NetApp ONTAP User Guide.
2798
2822
  #
2799
2823
  #
2800
2824
  #
@@ -2817,13 +2841,14 @@ module Aws::FSx
2817
2841
  # @return [Types::CreateSnaplockConfiguration]
2818
2842
  #
2819
2843
  # @!attribute [rw] volume_style
2820
- # Use to specify the style of an ONTAP volume. For more information
2821
- # about FlexVols and FlexGroups, see [Volume types][1] in Amazon FSx
2822
- # for NetApp ONTAP User Guide.
2844
+ # Use to specify the style of an ONTAP volume. FSx for ONTAP offers
2845
+ # two styles of volumes that you can use for different purposes,
2846
+ # FlexVol and FlexGroup volumes. For more information, see [Volume
2847
+ # styles][1] in the Amazon FSx for NetApp ONTAP User Guide.
2823
2848
  #
2824
2849
  #
2825
2850
  #
2826
- # [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/volume-types.html
2851
+ # [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/volume-styles.html
2827
2852
  # @return [String]
2828
2853
  #
2829
2854
  # @!attribute [rw] aggregate_configuration
@@ -2832,7 +2857,7 @@ module Aws::FSx
2832
2857
  # @return [Types::CreateAggregateConfiguration]
2833
2858
  #
2834
2859
  # @!attribute [rw] size_in_bytes
2835
- # The configured size of the volume, in bytes.
2860
+ # Specifies the configured size of the volume, in bytes.
2836
2861
  # @return [Integer]
2837
2862
  #
2838
2863
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateOntapVolumeConfiguration AWS API Documentation
@@ -3013,8 +3038,7 @@ module Aws::FSx
3013
3038
  # @return [Array<Types::OpenZFSNfsExport>]
3014
3039
  #
3015
3040
  # @!attribute [rw] user_and_group_quotas
3016
- # An object specifying how much storage users or groups can use on the
3017
- # volume.
3041
+ # Configures how much storage users and groups can use on the volume.
3018
3042
  # @return [Array<Types::OpenZFSUserOrGroupQuota>]
3019
3043
  #
3020
3044
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateOpenZFSVolumeConfiguration AWS API Documentation
@@ -3174,7 +3198,7 @@ module Aws::FSx
3174
3198
  # Describes the self-managed Microsoft Active Directory to which you
3175
3199
  # want to join the SVM. Joining an Active Directory provides user
3176
3200
  # authentication and access control for SMB clients, including
3177
- # Microsoft Windows and macOS client accessing the file system.
3201
+ # Microsoft Windows and macOS clients accessing the file system.
3178
3202
  # @return [Types::CreateSvmActiveDirectoryConfiguration]
3179
3203
  #
3180
3204
  # @!attribute [rw] client_request_token
@@ -3213,12 +3237,15 @@ module Aws::FSx
3213
3237
  # majority of users are NFS clients, and an application accessing
3214
3238
  # the data uses a UNIX user as the service account.
3215
3239
  #
3216
- # * `NTFS` if the file system is managed by a Windows administrator,
3217
- # the majority of users are SMB clients, and an application
3218
- # accessing the data uses a Windows user as the service account.
3240
+ # * `NTFS` if the file system is managed by a Microsoft Windows
3241
+ # administrator, the majority of users are SMB clients, and an
3242
+ # application accessing the data uses a Microsoft Windows user as
3243
+ # the service account.
3219
3244
  #
3220
- # * `MIXED` if the file system is managed by both UNIX and Windows
3221
- # administrators and users consist of both NFS and SMB clients.
3245
+ # * `MIXED` This is an advanced setting. For more information, see
3246
+ # [Volume security
3247
+ # style](fsx/latest/ONTAPGuide/volume-security-style.html) in the
3248
+ # Amazon FSx for NetApp ONTAP User Guide.
3222
3249
  # @return [String]
3223
3250
  #
3224
3251
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateStorageVirtualMachineRequest AWS API Documentation
@@ -3250,7 +3277,7 @@ module Aws::FSx
3250
3277
 
3251
3278
  # The configuration that Amazon FSx uses to join the ONTAP storage
3252
3279
  # virtual machine (SVM) to your self-managed (including on-premises)
3253
- # Microsoft Active Directory (AD) directory.
3280
+ # Microsoft Active Directory directory.
3254
3281
  #
3255
3282
  # @!attribute [rw] net_bios_name
3256
3283
  # The NetBIOS name of the Active Directory computer object that will
@@ -5010,9 +5037,9 @@ module Aws::FSx
5010
5037
  # @return [String]
5011
5038
  #
5012
5039
  # @!attribute [rw] include_shared
5013
- # Set to `false` (default) if you want to only see the snapshots in
5014
- # your Amazon Web Services account. Set to `true` if you want to see
5015
- # the snapshots in your account and the ones shared with you from
5040
+ # Set to `false` (default) if you want to only see the snapshots owned
5041
+ # by your Amazon Web Services account. Set to `true` if you want to
5042
+ # see the snapshots in your account and the ones shared with you from
5016
5043
  # another account.
5017
5044
  # @return [Boolean]
5018
5045
  #
@@ -5214,7 +5241,7 @@ module Aws::FSx
5214
5241
  #
5215
5242
  # @!attribute [rw] mode
5216
5243
  # Specifies whether the file system is using the `AUTOMATIC` setting
5217
- # of SSD IOPS of 3 IOPS per GB of storage capacity, , or if it using a
5244
+ # of SSD IOPS of 3 IOPS per GB of storage capacity, or if it using a
5218
5245
  # `USER_PROVISIONED` value.
5219
5246
  # @return [String]
5220
5247
  #
@@ -5885,12 +5912,12 @@ module Aws::FSx
5885
5912
  #
5886
5913
  # @!attribute [rw] tags
5887
5914
  # The tags to associate with the file system. For more information,
5888
- # see [Tagging your Amazon EC2 resources][1] in the *Amazon EC2 User
5889
- # Guide*.
5915
+ # see [Tagging your Amazon FSx resources][1] in the *Amazon FSx for
5916
+ # Lustre User Guide*.
5890
5917
  #
5891
5918
  #
5892
5919
  #
5893
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html
5920
+ # [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/tag-resources.html
5894
5921
  # @return [Array<Types::Tag>]
5895
5922
  #
5896
5923
  # @!attribute [rw] windows_configuration
@@ -6792,7 +6819,7 @@ module Aws::FSx
6792
6819
  # Amazon FSx responds with an HTTP status code 400 (Bad Request) for
6793
6820
  # the following conditions:
6794
6821
  #
6795
- # * The value of `HAPairs` is less than 1 or greater than 6.
6822
+ # * The value of `HAPairs` is less than 1 or greater than 12.
6796
6823
  #
6797
6824
  # * The value of `HAPairs` is greater than 1 and the value of
6798
6825
  # `DeploymentType` is `SINGLE_AZ_1` or `MULTI_AZ_1`.
@@ -6826,7 +6853,7 @@ module Aws::FSx
6826
6853
  #
6827
6854
  # * The value of deployment type is `SINGLE_AZ_2` and
6828
6855
  # `ThroughputCapacity` / `ThroughputCapacityPerHAPair` is a valid HA
6829
- # pair (a value between 2 and 6).
6856
+ # pair (a value between 2 and 12).
6830
6857
  #
6831
6858
  # * The value of `ThroughputCapacityPerHAPair` is not a valid value.
6832
6859
  # @return [Integer]
@@ -7310,20 +7337,24 @@ module Aws::FSx
7310
7337
  include Aws::Structure
7311
7338
  end
7312
7339
 
7313
- # The configuration for how much storage a user or group can use on the
7314
- # volume.
7340
+ # Used to configure quotas that define how much storage a user or group
7341
+ # can use on an FSx for OpenZFS volume. For more information, see
7342
+ # [Volume properties][1] in the FSx for OpenZFS User Guide.
7343
+ #
7344
+ #
7345
+ #
7346
+ # [1]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/managing-volumes.html#volume-properties
7315
7347
  #
7316
7348
  # @!attribute [rw] type
7317
- # A value that specifies whether the quota applies to a user or group.
7349
+ # Specifies whether the quota applies to a user or group.
7318
7350
  # @return [String]
7319
7351
  #
7320
7352
  # @!attribute [rw] id
7321
- # The ID of the user or group.
7353
+ # The ID of the user or group that the quota applies to.
7322
7354
  # @return [Integer]
7323
7355
  #
7324
7356
  # @!attribute [rw] storage_capacity_quota_gi_b
7325
- # The amount of storage that the user or group can use in gibibytes
7326
- # (GiB).
7357
+ # The user or group's storage quota, in gibibytes (GiB).
7327
7358
  # @return [Integer]
7328
7359
  #
7329
7360
  # @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OpenZFSUserOrGroupQuota AWS API Documentation
@@ -8981,7 +9012,7 @@ module Aws::FSx
8981
9012
  #
8982
9013
  # * The value of deployment type is `SINGLE_AZ_2` and
8983
9014
  # `ThroughputCapacity` / `ThroughputCapacityPerHAPair` is a valid HA
8984
- # pair (a value between 2 and 6).
9015
+ # pair (a value between 2 and 12).
8985
9016
  #
8986
9017
  # * The value of `ThroughputCapacityPerHAPair` is not a valid value.
8987
9018
  # @return [Integer]
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.84.0'
55
+ GEM_VERSION = '1.86.0'
56
56
 
57
57
  end
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.84.0
4
+ version: 1.86.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement