aws-sdk-fsx 1.64.0 → 1.66.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +85 -70
- data/lib/aws-sdk-fsx/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-fsx/endpoint_provider.rb +25 -43
- data/lib/aws-sdk-fsx/types.rb +129 -137
- data/lib/aws-sdk-fsx.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7529472a1c06ce668075dccd31ae5f27ccaa5569b372fa11053915c9684af0f9
|
|
4
|
+
data.tar.gz: 50925489f69181441ca5aa821cb9b6d0e948adf2bfb372ac456132c54144cfad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3fbb749cd8095c955ac1ff3e57dcfc5826ffe7300cb7907eccca6eef014acb48eca3a74c289ebab6a054da1b9e251c84a19dddca43d2d0d39c55e6b72fd14c1d
|
|
7
|
+
data.tar.gz: c9c50276b22d1fdebe16d666f8e24c8ab5fc6a36a644ce87612c59cbaa283b7430820a8cd8d514a530394eb71dc18a43c81ffeaf408a76e5456014579f823594
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.66.0 (2023-05-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.65.0 (2023-04-07)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Amazon FSx for Lustre now supports creating data repository associations on Persistent_1 and Scratch_2 file systems.
|
|
13
|
+
|
|
4
14
|
1.64.0 (2023-01-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.66.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
|
@@ -275,6 +275,11 @@ module Aws::FSx
|
|
|
275
275
|
# in the future.
|
|
276
276
|
#
|
|
277
277
|
#
|
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
|
279
|
+
# A unique and opaque application ID that is appended to the
|
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
|
281
|
+
# maximum length of 50.
|
|
282
|
+
#
|
|
278
283
|
# @option options [String] :secret_access_key
|
|
279
284
|
#
|
|
280
285
|
# @option options [String] :session_token
|
|
@@ -400,7 +405,7 @@ module Aws::FSx
|
|
|
400
405
|
#
|
|
401
406
|
# @option params [String] :client_request_token
|
|
402
407
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
403
|
-
# up to
|
|
408
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
404
409
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
405
410
|
# Services SDK.
|
|
406
411
|
#
|
|
@@ -537,7 +542,7 @@ module Aws::FSx
|
|
|
537
542
|
#
|
|
538
543
|
# @option params [String] :client_request_token
|
|
539
544
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
540
|
-
# up to
|
|
545
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
541
546
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
542
547
|
# Services SDK.
|
|
543
548
|
#
|
|
@@ -1061,7 +1066,7 @@ module Aws::FSx
|
|
|
1061
1066
|
# The ID of the file system to back up.
|
|
1062
1067
|
#
|
|
1063
1068
|
# @option params [String] :client_request_token
|
|
1064
|
-
# (Optional) A string of up to
|
|
1069
|
+
# (Optional) A string of up to 63 ASCII characters that Amazon FSx uses
|
|
1065
1070
|
# to ensure idempotent creation. This string is automatically filled on
|
|
1066
1071
|
# your behalf when you use the Command Line Interface (CLI) or an Amazon
|
|
1067
1072
|
# Web Services SDK.
|
|
@@ -1487,8 +1492,8 @@ module Aws::FSx
|
|
|
1487
1492
|
# data repository association is a link between a directory on the file
|
|
1488
1493
|
# system and an Amazon S3 bucket or prefix. You can have a maximum of 8
|
|
1489
1494
|
# data repository associations on a file system. Data repository
|
|
1490
|
-
# associations are supported
|
|
1491
|
-
#
|
|
1495
|
+
# associations are supported for all file systems except for `Scratch_1`
|
|
1496
|
+
# deployment type.
|
|
1492
1497
|
#
|
|
1493
1498
|
# Each data repository association must have a unique Amazon FSx file
|
|
1494
1499
|
# system directory and a unique S3 bucket or prefix associated with it.
|
|
@@ -1562,7 +1567,7 @@ module Aws::FSx
|
|
|
1562
1567
|
#
|
|
1563
1568
|
# @option params [String] :client_request_token
|
|
1564
1569
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
1565
|
-
# up to
|
|
1570
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
1566
1571
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
1567
1572
|
# Services SDK.
|
|
1568
1573
|
#
|
|
@@ -1692,7 +1697,7 @@ module Aws::FSx
|
|
|
1692
1697
|
#
|
|
1693
1698
|
# @option params [String] :client_request_token
|
|
1694
1699
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
1695
|
-
# up to
|
|
1700
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
1696
1701
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
1697
1702
|
# Services SDK.
|
|
1698
1703
|
#
|
|
@@ -1799,7 +1804,7 @@ module Aws::FSx
|
|
|
1799
1804
|
# [1]: https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileCaches.html
|
|
1800
1805
|
#
|
|
1801
1806
|
# @option params [String] :client_request_token
|
|
1802
|
-
# An idempotency token for resource creation, in a string of up to
|
|
1807
|
+
# An idempotency token for resource creation, in a string of up to 63
|
|
1803
1808
|
# ASCII characters. This token is automatically filled on your behalf
|
|
1804
1809
|
# when you use the Command Line Interface (CLI) or an Amazon Web
|
|
1805
1810
|
# Services SDK.
|
|
@@ -2006,7 +2011,7 @@ module Aws::FSx
|
|
|
2006
2011
|
# [1]: https://docs.aws.amazon.com/fsx/latest/APIReference/API_DescribeFileSystems.html
|
|
2007
2012
|
#
|
|
2008
2013
|
# @option params [String] :client_request_token
|
|
2009
|
-
# A string of up to
|
|
2014
|
+
# A string of up to 63 ASCII characters that Amazon FSx uses to ensure
|
|
2010
2015
|
# idempotent creation. This string is automatically filled on your
|
|
2011
2016
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
2012
2017
|
# Services SDK.
|
|
@@ -2134,10 +2139,8 @@ module Aws::FSx
|
|
|
2134
2139
|
# @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
|
|
2135
2140
|
# The Lustre configuration for the file system being created.
|
|
2136
2141
|
#
|
|
2137
|
-
# <note markdown="1"> The following parameters are not supported for file systems with
|
|
2138
|
-
#
|
|
2139
|
-
# `CreateDataRepositoryAssociation` to create a data repository
|
|
2140
|
-
# association to link your Lustre file system to a data repository.
|
|
2142
|
+
# <note markdown="1"> The following parameters are not supported for file systems with a
|
|
2143
|
+
# data repository association created with .
|
|
2141
2144
|
#
|
|
2142
2145
|
# * `AutoImportPolicy`
|
|
2143
2146
|
#
|
|
@@ -2156,7 +2159,7 @@ module Aws::FSx
|
|
|
2156
2159
|
# @option params [String] :file_system_type_version
|
|
2157
2160
|
# (Optional) For FSx for Lustre file systems, sets the Lustre version
|
|
2158
2161
|
# for the file system that you're creating. Valid values are `2.10` and
|
|
2159
|
-
# `2.12
|
|
2162
|
+
# `2.12`:
|
|
2160
2163
|
#
|
|
2161
2164
|
# * 2\.10 is supported by the Scratch and Persistent\_1 Lustre deployment
|
|
2162
2165
|
# types.
|
|
@@ -2583,7 +2586,7 @@ module Aws::FSx
|
|
|
2583
2586
|
# copying.
|
|
2584
2587
|
#
|
|
2585
2588
|
# @option params [String] :client_request_token
|
|
2586
|
-
# A string of up to
|
|
2589
|
+
# A string of up to 63 ASCII characters that Amazon FSx uses to ensure
|
|
2587
2590
|
# idempotent creation. This string is automatically filled on your
|
|
2588
2591
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
2589
2592
|
# Services SDK.
|
|
@@ -2621,10 +2624,8 @@ module Aws::FSx
|
|
|
2621
2624
|
# @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
|
|
2622
2625
|
# The Lustre configuration for the file system being created.
|
|
2623
2626
|
#
|
|
2624
|
-
# <note markdown="1"> The following parameters are not supported for file systems with
|
|
2625
|
-
#
|
|
2626
|
-
# `CreateDataRepositoryAssociation` to create a data repository
|
|
2627
|
-
# association to link your Lustre file system to a data repository.
|
|
2627
|
+
# <note markdown="1"> The following parameters are not supported for file systems with a
|
|
2628
|
+
# data repository association created with .
|
|
2628
2629
|
#
|
|
2629
2630
|
# * `AutoImportPolicy`
|
|
2630
2631
|
#
|
|
@@ -3069,7 +3070,7 @@ module Aws::FSx
|
|
|
3069
3070
|
#
|
|
3070
3071
|
# @option params [String] :client_request_token
|
|
3071
3072
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
3072
|
-
# up to
|
|
3073
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
3073
3074
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
3074
3075
|
# Services SDK.
|
|
3075
3076
|
#
|
|
@@ -3282,7 +3283,7 @@ module Aws::FSx
|
|
|
3282
3283
|
#
|
|
3283
3284
|
# @option params [String] :client_request_token
|
|
3284
3285
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
3285
|
-
# up to
|
|
3286
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
3286
3287
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
3287
3288
|
# Services SDK.
|
|
3288
3289
|
#
|
|
@@ -3397,7 +3398,7 @@ module Aws::FSx
|
|
|
3397
3398
|
#
|
|
3398
3399
|
# @option params [String] :client_request_token
|
|
3399
3400
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
3400
|
-
# up to
|
|
3401
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
3401
3402
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
3402
3403
|
# Services SDK.
|
|
3403
3404
|
#
|
|
@@ -3659,7 +3660,7 @@ module Aws::FSx
|
|
|
3659
3660
|
#
|
|
3660
3661
|
# @option params [String] :client_request_token
|
|
3661
3662
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
3662
|
-
# up to
|
|
3663
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
3663
3664
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
3664
3665
|
# Services SDK.
|
|
3665
3666
|
#
|
|
@@ -3888,7 +3889,7 @@ module Aws::FSx
|
|
|
3888
3889
|
# The ID of the backup that you want to delete.
|
|
3889
3890
|
#
|
|
3890
3891
|
# @option params [String] :client_request_token
|
|
3891
|
-
# A string of up to
|
|
3892
|
+
# A string of up to 63 ASCII characters that Amazon FSx uses to ensure
|
|
3892
3893
|
# idempotent deletion. This parameter is automatically filled on your
|
|
3893
3894
|
# behalf when using the CLI or SDK.
|
|
3894
3895
|
#
|
|
@@ -3941,15 +3942,15 @@ module Aws::FSx
|
|
|
3941
3942
|
# system from the Amazon S3 bucket. When deleting a data repository
|
|
3942
3943
|
# association, you have the option of deleting the data in the file
|
|
3943
3944
|
# system that corresponds to the data repository association. Data
|
|
3944
|
-
# repository associations are supported
|
|
3945
|
-
# `
|
|
3945
|
+
# repository associations are supported for all file systems except for
|
|
3946
|
+
# `Scratch_1` deployment type.
|
|
3946
3947
|
#
|
|
3947
3948
|
# @option params [required, String] :association_id
|
|
3948
3949
|
# The ID of the data repository association that you want to delete.
|
|
3949
3950
|
#
|
|
3950
3951
|
# @option params [String] :client_request_token
|
|
3951
3952
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
3952
|
-
# up to
|
|
3953
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
3953
3954
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
3954
3955
|
# Services SDK.
|
|
3955
3956
|
#
|
|
@@ -4010,7 +4011,7 @@ module Aws::FSx
|
|
|
4010
4011
|
#
|
|
4011
4012
|
# @option params [String] :client_request_token
|
|
4012
4013
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
4013
|
-
# up to
|
|
4014
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
4014
4015
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
4015
4016
|
# Services SDK.
|
|
4016
4017
|
#
|
|
@@ -4080,7 +4081,7 @@ module Aws::FSx
|
|
|
4080
4081
|
# The ID of the file system that you want to delete.
|
|
4081
4082
|
#
|
|
4082
4083
|
# @option params [String] :client_request_token
|
|
4083
|
-
# A string of up to
|
|
4084
|
+
# A string of up to 63 ASCII characters that Amazon FSx uses to ensure
|
|
4084
4085
|
# idempotent deletion. This token is automatically filled on your behalf
|
|
4085
4086
|
# when using the Command Line Interface (CLI) or an Amazon Web Services
|
|
4086
4087
|
# SDK.
|
|
@@ -4194,7 +4195,7 @@ module Aws::FSx
|
|
|
4194
4195
|
#
|
|
4195
4196
|
# @option params [String] :client_request_token
|
|
4196
4197
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
4197
|
-
# up to
|
|
4198
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
4198
4199
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
4199
4200
|
# Services SDK.
|
|
4200
4201
|
#
|
|
@@ -4236,7 +4237,7 @@ module Aws::FSx
|
|
|
4236
4237
|
#
|
|
4237
4238
|
# @option params [String] :client_request_token
|
|
4238
4239
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
4239
|
-
# up to
|
|
4240
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
4240
4241
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
4241
4242
|
# Services SDK.
|
|
4242
4243
|
#
|
|
@@ -4277,7 +4278,7 @@ module Aws::FSx
|
|
|
4277
4278
|
#
|
|
4278
4279
|
# @option params [String] :client_request_token
|
|
4279
4280
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
4280
|
-
# up to
|
|
4281
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
4281
4282
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
4282
4283
|
# Services SDK.
|
|
4283
4284
|
#
|
|
@@ -4792,9 +4793,9 @@ module Aws::FSx
|
|
|
4792
4793
|
# Returns the description of specific Amazon FSx for Lustre or Amazon
|
|
4793
4794
|
# File Cache data repository associations, if one or more
|
|
4794
4795
|
# `AssociationIds` values are provided in the request, or if filters are
|
|
4795
|
-
# used in the request. Data repository associations are supported
|
|
4796
|
-
#
|
|
4797
|
-
#
|
|
4796
|
+
# used in the request. Data repository associations are supported on
|
|
4797
|
+
# Amazon File Cache resources and all Amazon FSx for Lustre file systems
|
|
4798
|
+
# excluding `Scratch_1` deployment types.
|
|
4798
4799
|
#
|
|
4799
4800
|
# You can use filters to narrow the response to include just data
|
|
4800
4801
|
# repository associations for specific file systems (use the
|
|
@@ -5090,7 +5091,7 @@ module Aws::FSx
|
|
|
5090
5091
|
#
|
|
5091
5092
|
# @option params [String] :client_request_token
|
|
5092
5093
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
5093
|
-
# up to
|
|
5094
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
5094
5095
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
5095
5096
|
# Services SDK.
|
|
5096
5097
|
#
|
|
@@ -5970,7 +5971,7 @@ module Aws::FSx
|
|
|
5970
5971
|
#
|
|
5971
5972
|
# @option params [String] :client_request_token
|
|
5972
5973
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
5973
|
-
# up to
|
|
5974
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
5974
5975
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
5975
5976
|
# Services SDK.
|
|
5976
5977
|
#
|
|
@@ -6107,7 +6108,7 @@ module Aws::FSx
|
|
|
6107
6108
|
#
|
|
6108
6109
|
# @option params [String] :client_request_token
|
|
6109
6110
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
6110
|
-
# up to
|
|
6111
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
6111
6112
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
6112
6113
|
# Services SDK.
|
|
6113
6114
|
#
|
|
@@ -6298,7 +6299,7 @@ module Aws::FSx
|
|
|
6298
6299
|
#
|
|
6299
6300
|
# @option params [String] :client_request_token
|
|
6300
6301
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
6301
|
-
# up to
|
|
6302
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
6302
6303
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
6303
6304
|
# Services SDK.
|
|
6304
6305
|
#
|
|
@@ -6599,7 +6600,7 @@ module Aws::FSx
|
|
|
6599
6600
|
|
|
6600
6601
|
# Updates the configuration of an existing data repository association
|
|
6601
6602
|
# on an Amazon FSx for Lustre file system. Data repository associations
|
|
6602
|
-
# are supported
|
|
6603
|
+
# are supported for all file systems except for `Scratch_1` deployment
|
|
6603
6604
|
# type.
|
|
6604
6605
|
#
|
|
6605
6606
|
# @option params [required, String] :association_id
|
|
@@ -6607,7 +6608,7 @@ module Aws::FSx
|
|
|
6607
6608
|
#
|
|
6608
6609
|
# @option params [String] :client_request_token
|
|
6609
6610
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
6610
|
-
# up to
|
|
6611
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
6611
6612
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
6612
6613
|
# Services SDK.
|
|
6613
6614
|
#
|
|
@@ -6698,7 +6699,7 @@ module Aws::FSx
|
|
|
6698
6699
|
#
|
|
6699
6700
|
# @option params [String] :client_request_token
|
|
6700
6701
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
6701
|
-
# up to
|
|
6702
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
6702
6703
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
6703
6704
|
# Services SDK.
|
|
6704
6705
|
#
|
|
@@ -6763,8 +6764,8 @@ module Aws::FSx
|
|
|
6763
6764
|
# FSx file system. You can update multiple properties in a single
|
|
6764
6765
|
# request.
|
|
6765
6766
|
#
|
|
6766
|
-
# For
|
|
6767
|
-
#
|
|
6767
|
+
# For FSx for Windows File Server file systems, you can update the
|
|
6768
|
+
# following properties:
|
|
6768
6769
|
#
|
|
6769
6770
|
# * `AuditLogConfiguration`
|
|
6770
6771
|
#
|
|
@@ -6780,7 +6781,7 @@ module Aws::FSx
|
|
|
6780
6781
|
#
|
|
6781
6782
|
# * `WeeklyMaintenanceStartTime`
|
|
6782
6783
|
#
|
|
6783
|
-
# For
|
|
6784
|
+
# For FSx for Lustre file systems, you can update the following
|
|
6784
6785
|
# properties:
|
|
6785
6786
|
#
|
|
6786
6787
|
# * `AutoImportPolicy`
|
|
@@ -6797,8 +6798,10 @@ module Aws::FSx
|
|
|
6797
6798
|
#
|
|
6798
6799
|
# * `WeeklyMaintenanceStartTime`
|
|
6799
6800
|
#
|
|
6800
|
-
# For
|
|
6801
|
-
#
|
|
6801
|
+
# For FSx for ONTAP file systems, you can update the following
|
|
6802
|
+
# properties:
|
|
6803
|
+
#
|
|
6804
|
+
# * `AddRouteTableIds`
|
|
6802
6805
|
#
|
|
6803
6806
|
# * `AutomaticBackupRetentionDays`
|
|
6804
6807
|
#
|
|
@@ -6808,14 +6811,16 @@ module Aws::FSx
|
|
|
6808
6811
|
#
|
|
6809
6812
|
# * `FsxAdminPassword`
|
|
6810
6813
|
#
|
|
6814
|
+
# * `RemoveRouteTableIds`
|
|
6815
|
+
#
|
|
6811
6816
|
# * `StorageCapacity`
|
|
6812
6817
|
#
|
|
6813
6818
|
# * `ThroughputCapacity`
|
|
6814
6819
|
#
|
|
6815
6820
|
# * `WeeklyMaintenanceStartTime`
|
|
6816
6821
|
#
|
|
6817
|
-
# For
|
|
6818
|
-
#
|
|
6822
|
+
# For FSx for OpenZFS file systems, you can update the following
|
|
6823
|
+
# properties:
|
|
6819
6824
|
#
|
|
6820
6825
|
# * `AutomaticBackupRetentionDays`
|
|
6821
6826
|
#
|
|
@@ -6825,6 +6830,10 @@ module Aws::FSx
|
|
|
6825
6830
|
#
|
|
6826
6831
|
# * `DailyAutomaticBackupStartTime`
|
|
6827
6832
|
#
|
|
6833
|
+
# * `DiskIopsConfiguration`
|
|
6834
|
+
#
|
|
6835
|
+
# * `StorageCapacity`
|
|
6836
|
+
#
|
|
6828
6837
|
# * `ThroughputCapacity`
|
|
6829
6838
|
#
|
|
6830
6839
|
# * `WeeklyMaintenanceStartTime`
|
|
@@ -6833,7 +6842,7 @@ module Aws::FSx
|
|
|
6833
6842
|
# The ID of the file system that you are updating.
|
|
6834
6843
|
#
|
|
6835
6844
|
# @option params [String] :client_request_token
|
|
6836
|
-
# A string of up to
|
|
6845
|
+
# A string of up to 63 ASCII characters that Amazon FSx uses to ensure
|
|
6837
6846
|
# idempotent updates. This string is automatically filled on your behalf
|
|
6838
6847
|
# when you use the Command Line Interface (CLI) or an Amazon Web
|
|
6839
6848
|
# Services SDK.
|
|
@@ -6842,23 +6851,17 @@ module Aws::FSx
|
|
|
6842
6851
|
# not need to pass this option.**
|
|
6843
6852
|
#
|
|
6844
6853
|
# @option params [Integer] :storage_capacity
|
|
6845
|
-
# Use this parameter to increase the storage capacity of an
|
|
6846
|
-
#
|
|
6847
|
-
#
|
|
6848
|
-
#
|
|
6849
|
-
#
|
|
6854
|
+
# Use this parameter to increase the storage capacity of an FSx for
|
|
6855
|
+
# Windows File Server, FSx for Lustre, FSx for OpenZFS, or FSx for ONTAP
|
|
6856
|
+
# file system. Specifies the storage capacity target value, in GiB, to
|
|
6857
|
+
# increase the storage capacity for the file system that you're
|
|
6858
|
+
# updating.
|
|
6850
6859
|
#
|
|
6851
6860
|
# <note markdown="1"> You can't make a storage capacity increase request if there is an
|
|
6852
6861
|
# existing storage capacity increase request in progress.
|
|
6853
6862
|
#
|
|
6854
6863
|
# </note>
|
|
6855
6864
|
#
|
|
6856
|
-
# For Windows file systems, the storage capacity target value must be at
|
|
6857
|
-
# least 10 percent greater than the current storage capacity value. To
|
|
6858
|
-
# increase storage capacity, the file system must have at least 16 MBps
|
|
6859
|
-
# of throughput capacity. For more information, see [Managing storage
|
|
6860
|
-
# capacity][1] in the *Amazon FSx for Windows File Server User Guide*.
|
|
6861
|
-
#
|
|
6862
6865
|
# For Lustre file systems, the storage capacity target value can be the
|
|
6863
6866
|
# following:
|
|
6864
6867
|
#
|
|
@@ -6875,18 +6878,30 @@ module Aws::FSx
|
|
|
6875
6878
|
# capacity.
|
|
6876
6879
|
#
|
|
6877
6880
|
# For more information, see [Managing storage and throughput
|
|
6878
|
-
# capacity][
|
|
6881
|
+
# capacity][1] in the *FSx for Lustre User Guide*.
|
|
6882
|
+
#
|
|
6883
|
+
# For FSx for OpenZFS file systems, the storage capacity target value
|
|
6884
|
+
# must be at least 10 percent greater than the current storage capacity
|
|
6885
|
+
# value. For more information, see [Managing storage capacity][2] in the
|
|
6886
|
+
# *FSx for OpenZFS User Guide*.
|
|
6887
|
+
#
|
|
6888
|
+
# For Windows file systems, the storage capacity target value must be at
|
|
6889
|
+
# least 10 percent greater than the current storage capacity value. To
|
|
6890
|
+
# increase storage capacity, the file system must have at least 16 MBps
|
|
6891
|
+
# of throughput capacity. For more information, see [Managing storage
|
|
6892
|
+
# capacity][3] in the *Amazon FSx for Windows File Server User Guide*.
|
|
6879
6893
|
#
|
|
6880
6894
|
# For ONTAP file systems, the storage capacity target value must be at
|
|
6881
6895
|
# least 10 percent greater than the current storage capacity value. For
|
|
6882
6896
|
# more information, see [Managing storage capacity and provisioned
|
|
6883
|
-
# IOPS][
|
|
6897
|
+
# IOPS][4] in the *Amazon FSx for NetApp ONTAP User Guide*.
|
|
6884
6898
|
#
|
|
6885
6899
|
#
|
|
6886
6900
|
#
|
|
6887
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/
|
|
6888
|
-
# [2]: https://docs.aws.amazon.com/fsx/latest/
|
|
6889
|
-
# [3]: https://docs.aws.amazon.com/fsx/latest/
|
|
6901
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/managing-storage-capacity.html
|
|
6902
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/managing-storage-capacity.html
|
|
6903
|
+
# [3]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
|
6904
|
+
# [4]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-storage-capacity.html
|
|
6890
6905
|
#
|
|
6891
6906
|
# @option params [Types::UpdateFileSystemWindowsConfiguration] :windows_configuration
|
|
6892
6907
|
# The configuration updates for an Amazon FSx for Windows File Server
|
|
@@ -7187,7 +7202,7 @@ module Aws::FSx
|
|
|
7187
7202
|
#
|
|
7188
7203
|
# @option params [String] :client_request_token
|
|
7189
7204
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
7190
|
-
# up to
|
|
7205
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
7191
7206
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
7192
7207
|
# Services SDK.
|
|
7193
7208
|
#
|
|
@@ -7389,7 +7404,7 @@ module Aws::FSx
|
|
|
7389
7404
|
#
|
|
7390
7405
|
# @option params [String] :client_request_token
|
|
7391
7406
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
7392
|
-
# up to
|
|
7407
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
7393
7408
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
7394
7409
|
# Services SDK.
|
|
7395
7410
|
#
|
|
@@ -7471,7 +7486,7 @@ module Aws::FSx
|
|
|
7471
7486
|
#
|
|
7472
7487
|
# @option params [String] :client_request_token
|
|
7473
7488
|
# (Optional) An idempotency token for resource creation, in a string of
|
|
7474
|
-
# up to
|
|
7489
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
7475
7490
|
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
7476
7491
|
# Services SDK.
|
|
7477
7492
|
#
|
|
@@ -7723,7 +7738,7 @@ module Aws::FSx
|
|
|
7723
7738
|
params: params,
|
|
7724
7739
|
config: config)
|
|
7725
7740
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
7726
|
-
context[:gem_version] = '1.
|
|
7741
|
+
context[:gem_version] = '1.66.0'
|
|
7727
7742
|
Seahorse::Client::Request.new(handlers, context)
|
|
7728
7743
|
end
|
|
7729
7744
|
|
|
@@ -50,9 +50,6 @@ module Aws::FSx
|
|
|
50
50
|
|
|
51
51
|
def initialize(options = {})
|
|
52
52
|
self[:region] = options[:region]
|
|
53
|
-
if self[:region].nil?
|
|
54
|
-
raise ArgumentError, "Missing required EndpointParameter: :region"
|
|
55
|
-
end
|
|
56
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
|
57
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
|
58
55
|
if self[:use_dual_stack].nil?
|
|
@@ -14,57 +14,39 @@ module Aws::FSx
|
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
|
15
15
|
use_fips = parameters.use_fips
|
|
16
16
|
endpoint = parameters.endpoint
|
|
17
|
-
if
|
|
18
|
-
if Aws::Endpoints::Matchers.
|
|
19
|
-
|
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
|
-
end
|
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
24
|
-
end
|
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
18
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
26
20
|
end
|
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
28
|
-
|
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://fsx-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
30
|
-
end
|
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
21
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
32
23
|
end
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
if Aws::Endpoints::Matchers.
|
|
39
|
-
return Aws::Endpoints::Endpoint.new(url: "https://fsx-fips
|
|
40
|
-
end
|
|
41
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "prod-us-east-2")
|
|
42
|
-
return Aws::Endpoints::Endpoint.new(url: "https://fsx-fips.us-east-2.amazonaws.com", headers: {}, properties: {})
|
|
43
|
-
end
|
|
44
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "prod-us-west-1")
|
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://fsx-fips.us-west-1.amazonaws.com", headers: {}, properties: {})
|
|
46
|
-
end
|
|
47
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "prod-us-west-2")
|
|
48
|
-
return Aws::Endpoints::Endpoint.new(url: "https://fsx-fips.us-west-2.amazonaws.com", headers: {}, properties: {})
|
|
49
|
-
end
|
|
50
|
-
if Aws::Endpoints::Matchers.string_equals?(region, "prod-us-gov-east-1")
|
|
51
|
-
return Aws::Endpoints::Endpoint.new(url: "https://fsx-fips.us-gov-east-1.amazonaws.com", headers: {}, properties: {})
|
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
25
|
+
end
|
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://fsx-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
52
31
|
end
|
|
53
|
-
|
|
54
|
-
|
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
|
+
end
|
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://fsx-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
55
37
|
end
|
|
56
|
-
|
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
57
39
|
end
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://fsx.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
43
|
+
end
|
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
63
45
|
end
|
|
64
|
-
|
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://fsx.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
65
47
|
end
|
|
66
|
-
return Aws::Endpoints::Endpoint.new(url: "https://fsx.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
67
48
|
end
|
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
|
68
50
|
raise ArgumentError, 'No endpoint could be resolved'
|
|
69
51
|
|
|
70
52
|
end
|