aws-sdk-fsx 1.50.0 → 1.53.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +143 -63
- data/lib/aws-sdk-fsx/client_api.rb +17 -4
- data/lib/aws-sdk-fsx/types.rb +318 -127
- data/lib/aws-sdk-fsx.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ee19ce49c85fc8f3be5be8bcaddfb8eabe2cda172dfb0733f91908e4fe6904c
|
4
|
+
data.tar.gz: cb31868c49e947cb30119e81c0d563e589176adda9241a97d3d0d53674384681
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0416258da46e7fc9a4a74e27b7708d9a1c5de34f727bc2bac85abd83c62a890209be0c4e9497def001b3c0b894db0b91fa06996d92599a7d7bbe99cf1a834a6c'
|
7
|
+
data.tar.gz: ad53a54086cc89cc8422d3423060b50a708f2fd8b53e05a9ea477223415e8af2163c23f48ee675b0de8be0d18e99e55cb2a61e34f222ac82f6638cfb99e81141
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.53.0 (2022-03-30)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for modifying throughput capacity for FSx for ONTAP file systems.
|
8
|
+
|
9
|
+
1.52.0 (2022-03-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for data repository associations to use root ("/") as the file system path
|
13
|
+
|
14
|
+
1.51.0 (2022-02-28)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds support for the following FSx for OpenZFS features: snapshot lifecycle transition messages, force flag for deleting file systems with child resources, LZ4 data compression, custom record sizes, and unsetting volume quotas and reservations.
|
18
|
+
|
4
19
|
1.50.0 (2022-02-24)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.53.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -539,14 +539,24 @@ module Aws::FSx
|
|
539
539
|
# the Region where the request is sent from (in-Region copy).
|
540
540
|
#
|
541
541
|
# @option params [String] :kms_key_id
|
542
|
-
#
|
543
|
-
#
|
544
|
-
#
|
545
|
-
# Lustre `PERSISTENT_1` and `PERSISTENT_2`
|
546
|
-
#
|
547
|
-
#
|
548
|
-
#
|
549
|
-
#
|
542
|
+
# Specifies the ID of the Key Management Service (KMS) key to use for
|
543
|
+
# encrypting data on Amazon FSx file systems, as follows:
|
544
|
+
#
|
545
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
546
|
+
# types only.
|
547
|
+
#
|
548
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon FSx
|
549
|
+
# service KMS key for your account.
|
550
|
+
#
|
551
|
+
# * Amazon FSx for NetApp ONTAP
|
552
|
+
#
|
553
|
+
# * Amazon FSx for OpenZFS
|
554
|
+
#
|
555
|
+
# * Amazon FSx for Windows File Server
|
556
|
+
#
|
557
|
+
# If a `KmsKeyId` isn't specified, the Amazon FSx-managed KMS key for
|
558
|
+
# your account is used. For more information, see [Encrypt][1] in the
|
559
|
+
# *Key Management Service API Reference*.
|
550
560
|
#
|
551
561
|
#
|
552
562
|
#
|
@@ -735,7 +745,8 @@ module Aws::FSx
|
|
735
745
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
736
746
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
737
747
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
738
|
-
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.
|
748
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
749
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
739
750
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
740
751
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
741
752
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -755,6 +766,7 @@ module Aws::FSx
|
|
755
766
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
756
767
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
757
768
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
769
|
+
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
758
770
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
759
771
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
760
772
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -918,6 +930,7 @@ module Aws::FSx
|
|
918
930
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
919
931
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
920
932
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
933
|
+
# resp.backup.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
921
934
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
922
935
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
923
936
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -926,7 +939,8 @@ module Aws::FSx
|
|
926
939
|
# resp.backup.volume.open_zfs_configuration.volume_path #=> String
|
927
940
|
# resp.backup.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
928
941
|
# resp.backup.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
929
|
-
# resp.backup.volume.open_zfs_configuration.
|
942
|
+
# resp.backup.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
943
|
+
# resp.backup.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
930
944
|
# resp.backup.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
931
945
|
# resp.backup.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
932
946
|
# resp.backup.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -1201,7 +1215,8 @@ module Aws::FSx
|
|
1201
1215
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
1202
1216
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
1203
1217
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
1204
|
-
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.
|
1218
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
1219
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
1205
1220
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
1206
1221
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
1207
1222
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -1221,6 +1236,7 @@ module Aws::FSx
|
|
1221
1236
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
1222
1237
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
1223
1238
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
1239
|
+
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
1224
1240
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
1225
1241
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
1226
1242
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -1384,6 +1400,7 @@ module Aws::FSx
|
|
1384
1400
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
1385
1401
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
1386
1402
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
1403
|
+
# resp.backup.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
1387
1404
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
1388
1405
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
1389
1406
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -1392,7 +1409,8 @@ module Aws::FSx
|
|
1392
1409
|
# resp.backup.volume.open_zfs_configuration.volume_path #=> String
|
1393
1410
|
# resp.backup.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
1394
1411
|
# resp.backup.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
1395
|
-
# resp.backup.volume.open_zfs_configuration.
|
1412
|
+
# resp.backup.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
1413
|
+
# resp.backup.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
1396
1414
|
# resp.backup.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
1397
1415
|
# resp.backup.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
1398
1416
|
# resp.backup.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -1451,6 +1469,13 @@ module Aws::FSx
|
|
1451
1469
|
# one Amazon S3 bucket, and no other S3 bucket can be linked to the
|
1452
1470
|
# directory.
|
1453
1471
|
#
|
1472
|
+
# <note markdown="1"> If you specify only a forward slash (`/`) as the file system path, you
|
1473
|
+
# can link only 1 data repository to the file system. You can only
|
1474
|
+
# specify "/" as the file system path for the first data repository
|
1475
|
+
# associated with a file system.
|
1476
|
+
#
|
1477
|
+
# </note>
|
1478
|
+
#
|
1454
1479
|
# @option params [required, String] :data_repository_path
|
1455
1480
|
# The path to the Amazon S3 data repository that will be linked to the
|
1456
1481
|
# file system. The path can be an S3 bucket or prefix in the format
|
@@ -1699,7 +1724,7 @@ module Aws::FSx
|
|
1699
1724
|
# * Creates a new, empty Amazon FSx file system with an assigned ID, and
|
1700
1725
|
# an initial lifecycle state of `CREATING`.
|
1701
1726
|
#
|
1702
|
-
# * Returns the description of the file system.
|
1727
|
+
# * Returns the description of the file system in JSON format.
|
1703
1728
|
#
|
1704
1729
|
# This operation requires a client request token in the request that
|
1705
1730
|
# Amazon FSx uses to ensure idempotent creation. This means that calling
|
@@ -1823,14 +1848,24 @@ module Aws::FSx
|
|
1823
1848
|
# name.
|
1824
1849
|
#
|
1825
1850
|
# @option params [String] :kms_key_id
|
1826
|
-
#
|
1827
|
-
#
|
1828
|
-
#
|
1829
|
-
# Lustre `PERSISTENT_1` and `PERSISTENT_2`
|
1830
|
-
#
|
1831
|
-
#
|
1832
|
-
#
|
1833
|
-
#
|
1851
|
+
# Specifies the ID of the Key Management Service (KMS) key to use for
|
1852
|
+
# encrypting data on Amazon FSx file systems, as follows:
|
1853
|
+
#
|
1854
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
1855
|
+
# types only.
|
1856
|
+
#
|
1857
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon FSx
|
1858
|
+
# service KMS key for your account.
|
1859
|
+
#
|
1860
|
+
# * Amazon FSx for NetApp ONTAP
|
1861
|
+
#
|
1862
|
+
# * Amazon FSx for OpenZFS
|
1863
|
+
#
|
1864
|
+
# * Amazon FSx for Windows File Server
|
1865
|
+
#
|
1866
|
+
# If a `KmsKeyId` isn't specified, the Amazon FSx-managed KMS key for
|
1867
|
+
# your account is used. For more information, see [Encrypt][1] in the
|
1868
|
+
# *Key Management Service API Reference*.
|
1834
1869
|
#
|
1835
1870
|
#
|
1836
1871
|
#
|
@@ -2048,7 +2083,8 @@ module Aws::FSx
|
|
2048
2083
|
# iops: 1,
|
2049
2084
|
# },
|
2050
2085
|
# root_volume_configuration: {
|
2051
|
-
#
|
2086
|
+
# record_size_ki_b: 1,
|
2087
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
2052
2088
|
# nfs_exports: [
|
2053
2089
|
# {
|
2054
2090
|
# client_configurations: [ # required
|
@@ -2168,7 +2204,8 @@ module Aws::FSx
|
|
2168
2204
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
2169
2205
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
2170
2206
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
2171
|
-
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.
|
2207
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
2208
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
2172
2209
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
2173
2210
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
2174
2211
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -2188,6 +2225,7 @@ module Aws::FSx
|
|
2188
2225
|
# resp.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
2189
2226
|
# resp.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
2190
2227
|
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
2228
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
2191
2229
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
2192
2230
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
2193
2231
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -2236,8 +2274,8 @@ module Aws::FSx
|
|
2236
2274
|
#
|
2237
2275
|
# If a file system with the specified client request token exists and
|
2238
2276
|
# the parameters match, this operation returns the description of the
|
2239
|
-
# file system. If a
|
2240
|
-
#
|
2277
|
+
# file system. If a file system with the specified client request token
|
2278
|
+
# exists but the parameters don't match, this call returns
|
2241
2279
|
# `IncompatibleParameterError`. If a file system with the specified
|
2242
2280
|
# client request token doesn't exist, this operation does the
|
2243
2281
|
# following:
|
@@ -2353,14 +2391,24 @@ module Aws::FSx
|
|
2353
2391
|
# </note>
|
2354
2392
|
#
|
2355
2393
|
# @option params [String] :kms_key_id
|
2356
|
-
#
|
2357
|
-
#
|
2358
|
-
#
|
2359
|
-
# Lustre `PERSISTENT_1` and `PERSISTENT_2`
|
2360
|
-
#
|
2361
|
-
#
|
2362
|
-
#
|
2363
|
-
#
|
2394
|
+
# Specifies the ID of the Key Management Service (KMS) key to use for
|
2395
|
+
# encrypting data on Amazon FSx file systems, as follows:
|
2396
|
+
#
|
2397
|
+
# * Amazon FSx for Lustre `PERSISTENT_1` and `PERSISTENT_2` deployment
|
2398
|
+
# types only.
|
2399
|
+
#
|
2400
|
+
# `SCRATCH_1` and `SCRATCH_2` types are encrypted using the Amazon FSx
|
2401
|
+
# service KMS key for your account.
|
2402
|
+
#
|
2403
|
+
# * Amazon FSx for NetApp ONTAP
|
2404
|
+
#
|
2405
|
+
# * Amazon FSx for OpenZFS
|
2406
|
+
#
|
2407
|
+
# * Amazon FSx for Windows File Server
|
2408
|
+
#
|
2409
|
+
# If a `KmsKeyId` isn't specified, the Amazon FSx-managed KMS key for
|
2410
|
+
# your account is used. For more information, see [Encrypt][1] in the
|
2411
|
+
# *Key Management Service API Reference*.
|
2364
2412
|
#
|
2365
2413
|
#
|
2366
2414
|
#
|
@@ -2509,7 +2557,8 @@ module Aws::FSx
|
|
2509
2557
|
# iops: 1,
|
2510
2558
|
# },
|
2511
2559
|
# root_volume_configuration: {
|
2512
|
-
#
|
2560
|
+
# record_size_ki_b: 1,
|
2561
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
2513
2562
|
# nfs_exports: [
|
2514
2563
|
# {
|
2515
2564
|
# client_configurations: [ # required
|
@@ -2629,7 +2678,8 @@ module Aws::FSx
|
|
2629
2678
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
2630
2679
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
2631
2680
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
2632
|
-
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.
|
2681
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
2682
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
2633
2683
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
2634
2684
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
2635
2685
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -2649,6 +2699,7 @@ module Aws::FSx
|
|
2649
2699
|
# resp.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
2650
2700
|
# resp.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
2651
2701
|
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
2702
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
2652
2703
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
2653
2704
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
2654
2705
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -2691,9 +2742,9 @@ module Aws::FSx
|
|
2691
2742
|
req.send_request(options)
|
2692
2743
|
end
|
2693
2744
|
|
2694
|
-
# Creates a snapshot of an existing Amazon FSx for OpenZFS
|
2695
|
-
#
|
2696
|
-
#
|
2745
|
+
# Creates a snapshot of an existing Amazon FSx for OpenZFS volume. With
|
2746
|
+
# snapshots, you can easily undo file changes and compare file versions
|
2747
|
+
# by restoring the volume to a previous version.
|
2697
2748
|
#
|
2698
2749
|
# If a snapshot with the specified client request token exists, and the
|
2699
2750
|
# parameters match, this operation returns the description of the
|
@@ -2767,6 +2818,7 @@ module Aws::FSx
|
|
2767
2818
|
# resp.snapshot.volume_id #=> String
|
2768
2819
|
# resp.snapshot.creation_time #=> Time
|
2769
2820
|
# resp.snapshot.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
2821
|
+
# resp.snapshot.lifecycle_transition_reason.message #=> String
|
2770
2822
|
# resp.snapshot.tags #=> Array
|
2771
2823
|
# resp.snapshot.tags[0].key #=> String
|
2772
2824
|
# resp.snapshot.tags[0].value #=> String
|
@@ -2892,7 +2944,8 @@ module Aws::FSx
|
|
2892
2944
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
2893
2945
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
2894
2946
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
2895
|
-
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.
|
2947
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
2948
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
2896
2949
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
2897
2950
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
2898
2951
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -3039,8 +3092,7 @@ module Aws::FSx
|
|
3039
3092
|
req.send_request(options)
|
3040
3093
|
end
|
3041
3094
|
|
3042
|
-
# Creates an
|
3043
|
-
# storage volume.
|
3095
|
+
# Creates an FSx for ONTAP or Amazon FSx for OpenZFS storage volume.
|
3044
3096
|
#
|
3045
3097
|
# @option params [String] :client_request_token
|
3046
3098
|
# (Optional) An idempotency token for resource creation, in a string of
|
@@ -3098,7 +3150,8 @@ module Aws::FSx
|
|
3098
3150
|
# parent_volume_id: "VolumeId", # required
|
3099
3151
|
# storage_capacity_reservation_gi_b: 1,
|
3100
3152
|
# storage_capacity_quota_gi_b: 1,
|
3101
|
-
#
|
3153
|
+
# record_size_ki_b: 1,
|
3154
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
3102
3155
|
# copy_tags_to_snapshots: false,
|
3103
3156
|
# origin_snapshot: {
|
3104
3157
|
# snapshot_arn: "ResourceARN", # required
|
@@ -3251,6 +3304,7 @@ module Aws::FSx
|
|
3251
3304
|
# resp.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
3252
3305
|
# resp.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
3253
3306
|
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
3307
|
+
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
3254
3308
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
3255
3309
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
3256
3310
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -3259,7 +3313,8 @@ module Aws::FSx
|
|
3259
3313
|
# resp.volume.open_zfs_configuration.volume_path #=> String
|
3260
3314
|
# resp.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
3261
3315
|
# resp.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
3262
|
-
# resp.volume.open_zfs_configuration.
|
3316
|
+
# resp.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
3317
|
+
# resp.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
3263
3318
|
# resp.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
3264
3319
|
# resp.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
3265
3320
|
# resp.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -3463,6 +3518,7 @@ module Aws::FSx
|
|
3463
3518
|
# resp.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
3464
3519
|
# resp.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
3465
3520
|
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
3521
|
+
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
3466
3522
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
3467
3523
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
3468
3524
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -3471,7 +3527,8 @@ module Aws::FSx
|
|
3471
3527
|
# resp.volume.open_zfs_configuration.volume_path #=> String
|
3472
3528
|
# resp.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
3473
3529
|
# resp.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
3474
|
-
# resp.volume.open_zfs_configuration.
|
3530
|
+
# resp.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
3531
|
+
# resp.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
3475
3532
|
# resp.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
3476
3533
|
# resp.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
3477
3534
|
# resp.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -3720,6 +3777,7 @@ module Aws::FSx
|
|
3720
3777
|
# value: "TagValue", # required
|
3721
3778
|
# },
|
3722
3779
|
# ],
|
3780
|
+
# options: ["DELETE_CHILD_VOLUMES_AND_SNAPSHOTS"], # accepts DELETE_CHILD_VOLUMES_AND_SNAPSHOTS
|
3723
3781
|
# },
|
3724
3782
|
# })
|
3725
3783
|
#
|
@@ -3749,9 +3807,9 @@ module Aws::FSx
|
|
3749
3807
|
req.send_request(options)
|
3750
3808
|
end
|
3751
3809
|
|
3752
|
-
# Deletes
|
3753
|
-
# longer exists, and its data is gone. Deleting a snapshot
|
3754
|
-
# affect snapshots stored in a file system backup.
|
3810
|
+
# Deletes an Amazon FSx for OpenZFS snapshot. After deletion, the
|
3811
|
+
# snapshot no longer exists, and its data is gone. Deleting a snapshot
|
3812
|
+
# doesn't affect snapshots stored in a file system backup.
|
3755
3813
|
#
|
3756
3814
|
# The `DeleteSnapshot` operation returns instantly. The snapshot appears
|
3757
3815
|
# with the lifecycle status of `DELETING` until the deletion is
|
@@ -4118,7 +4176,8 @@ module Aws::FSx
|
|
4118
4176
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
4119
4177
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
4120
4178
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
4121
|
-
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.
|
4179
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
4180
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
4122
4181
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
4123
4182
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
4124
4183
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -4138,6 +4197,7 @@ module Aws::FSx
|
|
4138
4197
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
4139
4198
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
4140
4199
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
4200
|
+
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
4141
4201
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
4142
4202
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
4143
4203
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -4301,6 +4361,7 @@ module Aws::FSx
|
|
4301
4361
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
4302
4362
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
4303
4363
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
4364
|
+
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
4304
4365
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
4305
4366
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
4306
4367
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -4309,7 +4370,8 @@ module Aws::FSx
|
|
4309
4370
|
# resp.backups[0].volume.open_zfs_configuration.volume_path #=> String
|
4310
4371
|
# resp.backups[0].volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
4311
4372
|
# resp.backups[0].volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
4312
|
-
# resp.backups[0].volume.open_zfs_configuration.
|
4373
|
+
# resp.backups[0].volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
4374
|
+
# resp.backups[0].volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
4313
4375
|
# resp.backups[0].volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
4314
4376
|
# resp.backups[0].volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
4315
4377
|
# resp.backups[0].volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -4781,7 +4843,8 @@ module Aws::FSx
|
|
4781
4843
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
4782
4844
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
4783
4845
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
4784
|
-
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.
|
4846
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
4847
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
4785
4848
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
4786
4849
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
4787
4850
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -4801,6 +4864,7 @@ module Aws::FSx
|
|
4801
4864
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.volume_id #=> String
|
4802
4865
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
4803
4866
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
4867
|
+
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
4804
4868
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.tags #=> Array
|
4805
4869
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
4806
4870
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -4844,10 +4908,10 @@ module Aws::FSx
|
|
4844
4908
|
req.send_request(options)
|
4845
4909
|
end
|
4846
4910
|
|
4847
|
-
# Returns the description of specific Amazon FSx snapshots,
|
4848
|
-
# `SnapshotIds` value is provided. Otherwise, this operation
|
4849
|
-
# snapshots owned by your Amazon Web Services account in the
|
4850
|
-
# Services Region of the endpoint that you're calling.
|
4911
|
+
# Returns the description of specific Amazon FSx for OpenZFS snapshots,
|
4912
|
+
# if a `SnapshotIds` value is provided. Otherwise, this operation
|
4913
|
+
# returns all snapshots owned by your Amazon Web Services account in the
|
4914
|
+
# Amazon Web Services Region of the endpoint that you're calling.
|
4851
4915
|
#
|
4852
4916
|
# When retrieving all snapshots, you can optionally specify the
|
4853
4917
|
# `MaxResults` parameter to limit the number of snapshots in a response.
|
@@ -4920,6 +4984,7 @@ module Aws::FSx
|
|
4920
4984
|
# resp.snapshots[0].volume_id #=> String
|
4921
4985
|
# resp.snapshots[0].creation_time #=> Time
|
4922
4986
|
# resp.snapshots[0].lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
4987
|
+
# resp.snapshots[0].lifecycle_transition_reason.message #=> String
|
4923
4988
|
# resp.snapshots[0].tags #=> Array
|
4924
4989
|
# resp.snapshots[0].tags[0].key #=> String
|
4925
4990
|
# resp.snapshots[0].tags[0].value #=> String
|
@@ -5045,7 +5110,8 @@ module Aws::FSx
|
|
5045
5110
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
5046
5111
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
5047
5112
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
5048
|
-
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.
|
5113
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
5114
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
5049
5115
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
5050
5116
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
5051
5117
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -5325,6 +5391,7 @@ module Aws::FSx
|
|
5325
5391
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.volume_id #=> String
|
5326
5392
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
5327
5393
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
5394
|
+
# resp.volumes[0].administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
5328
5395
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.tags #=> Array
|
5329
5396
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
5330
5397
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -5333,7 +5400,8 @@ module Aws::FSx
|
|
5333
5400
|
# resp.volumes[0].open_zfs_configuration.volume_path #=> String
|
5334
5401
|
# resp.volumes[0].open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
5335
5402
|
# resp.volumes[0].open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
5336
|
-
# resp.volumes[0].open_zfs_configuration.
|
5403
|
+
# resp.volumes[0].open_zfs_configuration.record_size_ki_b #=> Integer
|
5404
|
+
# resp.volumes[0].open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
5337
5405
|
# resp.volumes[0].open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
5338
5406
|
# resp.volumes[0].open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
5339
5407
|
# resp.volumes[0].open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -5627,7 +5695,8 @@ module Aws::FSx
|
|
5627
5695
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
5628
5696
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
5629
5697
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
5630
|
-
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.
|
5698
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
5699
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
5631
5700
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
5632
5701
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
5633
5702
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -5647,6 +5716,7 @@ module Aws::FSx
|
|
5647
5716
|
# resp.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
5648
5717
|
# resp.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
5649
5718
|
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
5719
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
5650
5720
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
5651
5721
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
5652
5722
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -5968,6 +6038,8 @@ module Aws::FSx
|
|
5968
6038
|
#
|
5969
6039
|
# * `StorageCapacity`
|
5970
6040
|
#
|
6041
|
+
# * `ThroughputCapacity`
|
6042
|
+
#
|
5971
6043
|
# * `WeeklyMaintenanceStartTime`
|
5972
6044
|
#
|
5973
6045
|
# For the Amazon FSx for OpenZFS file systems, you can update the
|
@@ -6149,6 +6221,7 @@ module Aws::FSx
|
|
6149
6221
|
# mode: "AUTOMATIC", # accepts AUTOMATIC, USER_PROVISIONED
|
6150
6222
|
# iops: 1,
|
6151
6223
|
# },
|
6224
|
+
# throughput_capacity: 1,
|
6152
6225
|
# },
|
6153
6226
|
# open_zfs_configuration: {
|
6154
6227
|
# automatic_backup_retention_days: 1,
|
@@ -6260,7 +6333,8 @@ module Aws::FSx
|
|
6260
6333
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
6261
6334
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
6262
6335
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
6263
|
-
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.
|
6336
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
6337
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
6264
6338
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
6265
6339
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
6266
6340
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -6280,6 +6354,7 @@ module Aws::FSx
|
|
6280
6354
|
# resp.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
6281
6355
|
# resp.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
6282
6356
|
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
6357
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
6283
6358
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
6284
6359
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
6285
6360
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -6322,7 +6397,7 @@ module Aws::FSx
|
|
6322
6397
|
req.send_request(options)
|
6323
6398
|
end
|
6324
6399
|
|
6325
|
-
# Updates the name of
|
6400
|
+
# Updates the name of an Amazon FSx for OpenZFS snapshot.
|
6326
6401
|
#
|
6327
6402
|
# @option params [String] :client_request_token
|
6328
6403
|
# (Optional) An idempotency token for resource creation, in a string of
|
@@ -6360,6 +6435,7 @@ module Aws::FSx
|
|
6360
6435
|
# resp.snapshot.volume_id #=> String
|
6361
6436
|
# resp.snapshot.creation_time #=> Time
|
6362
6437
|
# resp.snapshot.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
6438
|
+
# resp.snapshot.lifecycle_transition_reason.message #=> String
|
6363
6439
|
# resp.snapshot.tags #=> Array
|
6364
6440
|
# resp.snapshot.tags[0].key #=> String
|
6365
6441
|
# resp.snapshot.tags[0].value #=> String
|
@@ -6485,7 +6561,8 @@ module Aws::FSx
|
|
6485
6561
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
6486
6562
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
6487
6563
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
6488
|
-
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.
|
6564
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
6565
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
6489
6566
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
6490
6567
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
6491
6568
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -6646,7 +6723,8 @@ module Aws::FSx
|
|
6646
6723
|
# open_zfs_configuration: {
|
6647
6724
|
# storage_capacity_reservation_gi_b: 1,
|
6648
6725
|
# storage_capacity_quota_gi_b: 1,
|
6649
|
-
#
|
6726
|
+
# record_size_ki_b: 1,
|
6727
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
6650
6728
|
# nfs_exports: [
|
6651
6729
|
# {
|
6652
6730
|
# client_configurations: [ # required
|
@@ -6794,6 +6872,7 @@ module Aws::FSx
|
|
6794
6872
|
# resp.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
6795
6873
|
# resp.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
6796
6874
|
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
6875
|
+
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
6797
6876
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
6798
6877
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
6799
6878
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -6802,7 +6881,8 @@ module Aws::FSx
|
|
6802
6881
|
# resp.volume.open_zfs_configuration.volume_path #=> String
|
6803
6882
|
# resp.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
6804
6883
|
# resp.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
6805
|
-
# resp.volume.open_zfs_configuration.
|
6884
|
+
# resp.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
6885
|
+
# resp.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
6806
6886
|
# resp.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
6807
6887
|
# resp.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
6808
6888
|
# resp.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -6839,7 +6919,7 @@ module Aws::FSx
|
|
6839
6919
|
params: params,
|
6840
6920
|
config: config)
|
6841
6921
|
context[:gem_name] = 'aws-sdk-fsx'
|
6842
|
-
context[:gem_version] = '1.
|
6922
|
+
context[:gem_version] = '1.53.0'
|
6843
6923
|
Seahorse::Client::Request.new(handlers, context)
|
6844
6924
|
end
|
6845
6925
|
|