aws-sdk-fsx 1.50.0 → 1.51.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +77 -36
- data/lib/aws-sdk-fsx/client_api.rb +16 -4
- data/lib/aws-sdk-fsx/types.rb +168 -69
- 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: e536e1c41cedcac8d267a0df4c2196f6985cbdbd7d49d44083c77d6ce1d801c3
|
4
|
+
data.tar.gz: 2b6be3aa63b5316bdf80b9ac5d446443845672f047bd1f8dba47ac4b1e71f195
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c5fd906ddfaf773f9d48efd48ab5e29efdfdc38147ba9d6075021f3478306d2dab52dd1081ff6942b089bbeb4cb473a6f21019a83e63d7cdd2eb58b7dd16980
|
7
|
+
data.tar.gz: 5ec3b809450738b9be749116676a72d2e95d8c1e167feead0fa027ffff4b420831083657a81df823b36f4388e23a382757fd6259ade81bbd2c9ad960d3afb692
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.51.0 (2022-02-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* 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.
|
8
|
+
|
4
9
|
1.50.0 (2022-02-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.51.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -735,7 +735,8 @@ module Aws::FSx
|
|
735
735
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
736
736
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
737
737
|
# 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.
|
738
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
739
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
739
740
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
740
741
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
741
742
|
# 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 +756,7 @@ module Aws::FSx
|
|
755
756
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
756
757
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
757
758
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
759
|
+
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
758
760
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
759
761
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
760
762
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -918,6 +920,7 @@ module Aws::FSx
|
|
918
920
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
919
921
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
920
922
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
923
|
+
# resp.backup.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
921
924
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
922
925
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
923
926
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -926,7 +929,8 @@ module Aws::FSx
|
|
926
929
|
# resp.backup.volume.open_zfs_configuration.volume_path #=> String
|
927
930
|
# resp.backup.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
928
931
|
# resp.backup.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
929
|
-
# resp.backup.volume.open_zfs_configuration.
|
932
|
+
# resp.backup.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
933
|
+
# resp.backup.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
930
934
|
# resp.backup.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
931
935
|
# resp.backup.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
932
936
|
# resp.backup.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -1201,7 +1205,8 @@ module Aws::FSx
|
|
1201
1205
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
1202
1206
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
1203
1207
|
# 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.
|
1208
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
1209
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
1205
1210
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
1206
1211
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
1207
1212
|
# 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 +1226,7 @@ module Aws::FSx
|
|
1221
1226
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
1222
1227
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
1223
1228
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
1229
|
+
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
1224
1230
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
1225
1231
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
1226
1232
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -1384,6 +1390,7 @@ module Aws::FSx
|
|
1384
1390
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
1385
1391
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
1386
1392
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
1393
|
+
# resp.backup.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
1387
1394
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
1388
1395
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
1389
1396
|
# resp.backup.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -1392,7 +1399,8 @@ module Aws::FSx
|
|
1392
1399
|
# resp.backup.volume.open_zfs_configuration.volume_path #=> String
|
1393
1400
|
# resp.backup.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
1394
1401
|
# resp.backup.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
1395
|
-
# resp.backup.volume.open_zfs_configuration.
|
1402
|
+
# resp.backup.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
1403
|
+
# resp.backup.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
1396
1404
|
# resp.backup.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
1397
1405
|
# resp.backup.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
1398
1406
|
# resp.backup.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -2048,7 +2056,8 @@ module Aws::FSx
|
|
2048
2056
|
# iops: 1,
|
2049
2057
|
# },
|
2050
2058
|
# root_volume_configuration: {
|
2051
|
-
#
|
2059
|
+
# record_size_ki_b: 1,
|
2060
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
2052
2061
|
# nfs_exports: [
|
2053
2062
|
# {
|
2054
2063
|
# client_configurations: [ # required
|
@@ -2168,7 +2177,8 @@ module Aws::FSx
|
|
2168
2177
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
2169
2178
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
2170
2179
|
# 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.
|
2180
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
2181
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
2172
2182
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
2173
2183
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
2174
2184
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -2188,6 +2198,7 @@ module Aws::FSx
|
|
2188
2198
|
# resp.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
2189
2199
|
# resp.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
2190
2200
|
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
2201
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
2191
2202
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
2192
2203
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
2193
2204
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -2236,8 +2247,8 @@ module Aws::FSx
|
|
2236
2247
|
#
|
2237
2248
|
# If a file system with the specified client request token exists and
|
2238
2249
|
# the parameters match, this operation returns the description of the
|
2239
|
-
# file system. If a
|
2240
|
-
#
|
2250
|
+
# file system. If a file system with the specified client request token
|
2251
|
+
# exists but the parameters don't match, this call returns
|
2241
2252
|
# `IncompatibleParameterError`. If a file system with the specified
|
2242
2253
|
# client request token doesn't exist, this operation does the
|
2243
2254
|
# following:
|
@@ -2509,7 +2520,8 @@ module Aws::FSx
|
|
2509
2520
|
# iops: 1,
|
2510
2521
|
# },
|
2511
2522
|
# root_volume_configuration: {
|
2512
|
-
#
|
2523
|
+
# record_size_ki_b: 1,
|
2524
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
2513
2525
|
# nfs_exports: [
|
2514
2526
|
# {
|
2515
2527
|
# client_configurations: [ # required
|
@@ -2629,7 +2641,8 @@ module Aws::FSx
|
|
2629
2641
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
2630
2642
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
2631
2643
|
# 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.
|
2644
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
2645
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
2633
2646
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
2634
2647
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
2635
2648
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -2649,6 +2662,7 @@ module Aws::FSx
|
|
2649
2662
|
# resp.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
2650
2663
|
# resp.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
2651
2664
|
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
2665
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
2652
2666
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
2653
2667
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
2654
2668
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -2691,9 +2705,9 @@ module Aws::FSx
|
|
2691
2705
|
req.send_request(options)
|
2692
2706
|
end
|
2693
2707
|
|
2694
|
-
# Creates a snapshot of an existing Amazon FSx for OpenZFS
|
2695
|
-
#
|
2696
|
-
#
|
2708
|
+
# Creates a snapshot of an existing Amazon FSx for OpenZFS volume. With
|
2709
|
+
# snapshots, you can easily undo file changes and compare file versions
|
2710
|
+
# by restoring the volume to a previous version.
|
2697
2711
|
#
|
2698
2712
|
# If a snapshot with the specified client request token exists, and the
|
2699
2713
|
# parameters match, this operation returns the description of the
|
@@ -2767,6 +2781,7 @@ module Aws::FSx
|
|
2767
2781
|
# resp.snapshot.volume_id #=> String
|
2768
2782
|
# resp.snapshot.creation_time #=> Time
|
2769
2783
|
# resp.snapshot.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
2784
|
+
# resp.snapshot.lifecycle_transition_reason.message #=> String
|
2770
2785
|
# resp.snapshot.tags #=> Array
|
2771
2786
|
# resp.snapshot.tags[0].key #=> String
|
2772
2787
|
# resp.snapshot.tags[0].value #=> String
|
@@ -2892,7 +2907,8 @@ module Aws::FSx
|
|
2892
2907
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
2893
2908
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
2894
2909
|
# 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.
|
2910
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
2911
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
2896
2912
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
2897
2913
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
2898
2914
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -3098,7 +3114,8 @@ module Aws::FSx
|
|
3098
3114
|
# parent_volume_id: "VolumeId", # required
|
3099
3115
|
# storage_capacity_reservation_gi_b: 1,
|
3100
3116
|
# storage_capacity_quota_gi_b: 1,
|
3101
|
-
#
|
3117
|
+
# record_size_ki_b: 1,
|
3118
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
3102
3119
|
# copy_tags_to_snapshots: false,
|
3103
3120
|
# origin_snapshot: {
|
3104
3121
|
# snapshot_arn: "ResourceARN", # required
|
@@ -3251,6 +3268,7 @@ module Aws::FSx
|
|
3251
3268
|
# resp.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
3252
3269
|
# resp.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
3253
3270
|
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
3271
|
+
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
3254
3272
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
3255
3273
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
3256
3274
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -3259,7 +3277,8 @@ module Aws::FSx
|
|
3259
3277
|
# resp.volume.open_zfs_configuration.volume_path #=> String
|
3260
3278
|
# resp.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
3261
3279
|
# resp.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
3262
|
-
# resp.volume.open_zfs_configuration.
|
3280
|
+
# resp.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
3281
|
+
# resp.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
3263
3282
|
# resp.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
3264
3283
|
# resp.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
3265
3284
|
# resp.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -3463,6 +3482,7 @@ module Aws::FSx
|
|
3463
3482
|
# resp.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
3464
3483
|
# resp.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
3465
3484
|
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
3485
|
+
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
3466
3486
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
3467
3487
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
3468
3488
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -3471,7 +3491,8 @@ module Aws::FSx
|
|
3471
3491
|
# resp.volume.open_zfs_configuration.volume_path #=> String
|
3472
3492
|
# resp.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
3473
3493
|
# resp.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
3474
|
-
# resp.volume.open_zfs_configuration.
|
3494
|
+
# resp.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
3495
|
+
# resp.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
3475
3496
|
# resp.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
3476
3497
|
# resp.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
3477
3498
|
# resp.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -3720,6 +3741,7 @@ module Aws::FSx
|
|
3720
3741
|
# value: "TagValue", # required
|
3721
3742
|
# },
|
3722
3743
|
# ],
|
3744
|
+
# options: ["DELETE_CHILD_VOLUMES_AND_SNAPSHOTS"], # accepts DELETE_CHILD_VOLUMES_AND_SNAPSHOTS
|
3723
3745
|
# },
|
3724
3746
|
# })
|
3725
3747
|
#
|
@@ -3749,9 +3771,9 @@ module Aws::FSx
|
|
3749
3771
|
req.send_request(options)
|
3750
3772
|
end
|
3751
3773
|
|
3752
|
-
# Deletes
|
3753
|
-
# longer exists, and its data is gone. Deleting a snapshot
|
3754
|
-
# affect snapshots stored in a file system backup.
|
3774
|
+
# Deletes an Amazon FSx for OpenZFS snapshot. After deletion, the
|
3775
|
+
# snapshot no longer exists, and its data is gone. Deleting a snapshot
|
3776
|
+
# doesn't affect snapshots stored in a file system backup.
|
3755
3777
|
#
|
3756
3778
|
# The `DeleteSnapshot` operation returns instantly. The snapshot appears
|
3757
3779
|
# with the lifecycle status of `DELETING` until the deletion is
|
@@ -4118,7 +4140,8 @@ module Aws::FSx
|
|
4118
4140
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
4119
4141
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
4120
4142
|
# 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.
|
4143
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
4144
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
4122
4145
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
4123
4146
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
4124
4147
|
# 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 +4161,7 @@ module Aws::FSx
|
|
4138
4161
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
4139
4162
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
4140
4163
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
4164
|
+
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
4141
4165
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
4142
4166
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
4143
4167
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -4301,6 +4325,7 @@ module Aws::FSx
|
|
4301
4325
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
4302
4326
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
4303
4327
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
4328
|
+
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
4304
4329
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
4305
4330
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
4306
4331
|
# resp.backups[0].volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -4309,7 +4334,8 @@ module Aws::FSx
|
|
4309
4334
|
# resp.backups[0].volume.open_zfs_configuration.volume_path #=> String
|
4310
4335
|
# resp.backups[0].volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
4311
4336
|
# resp.backups[0].volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
4312
|
-
# resp.backups[0].volume.open_zfs_configuration.
|
4337
|
+
# resp.backups[0].volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
4338
|
+
# resp.backups[0].volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
4313
4339
|
# resp.backups[0].volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
4314
4340
|
# resp.backups[0].volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
4315
4341
|
# resp.backups[0].volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -4781,7 +4807,8 @@ module Aws::FSx
|
|
4781
4807
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
4782
4808
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
4783
4809
|
# 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.
|
4810
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
4811
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
4785
4812
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
4786
4813
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
4787
4814
|
# 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 +4828,7 @@ module Aws::FSx
|
|
4801
4828
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.volume_id #=> String
|
4802
4829
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
4803
4830
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
4831
|
+
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
4804
4832
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.tags #=> Array
|
4805
4833
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
4806
4834
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -4844,10 +4872,10 @@ module Aws::FSx
|
|
4844
4872
|
req.send_request(options)
|
4845
4873
|
end
|
4846
4874
|
|
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.
|
4875
|
+
# Returns the description of specific Amazon FSx for OpenZFS snapshots,
|
4876
|
+
# if a `SnapshotIds` value is provided. Otherwise, this operation
|
4877
|
+
# returns all snapshots owned by your Amazon Web Services account in the
|
4878
|
+
# Amazon Web Services Region of the endpoint that you're calling.
|
4851
4879
|
#
|
4852
4880
|
# When retrieving all snapshots, you can optionally specify the
|
4853
4881
|
# `MaxResults` parameter to limit the number of snapshots in a response.
|
@@ -4920,6 +4948,7 @@ module Aws::FSx
|
|
4920
4948
|
# resp.snapshots[0].volume_id #=> String
|
4921
4949
|
# resp.snapshots[0].creation_time #=> Time
|
4922
4950
|
# resp.snapshots[0].lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
4951
|
+
# resp.snapshots[0].lifecycle_transition_reason.message #=> String
|
4923
4952
|
# resp.snapshots[0].tags #=> Array
|
4924
4953
|
# resp.snapshots[0].tags[0].key #=> String
|
4925
4954
|
# resp.snapshots[0].tags[0].value #=> String
|
@@ -5045,7 +5074,8 @@ module Aws::FSx
|
|
5045
5074
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
5046
5075
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
5047
5076
|
# 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.
|
5077
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
5078
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
5049
5079
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
5050
5080
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
5051
5081
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -5325,6 +5355,7 @@ module Aws::FSx
|
|
5325
5355
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.volume_id #=> String
|
5326
5356
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
5327
5357
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
5358
|
+
# resp.volumes[0].administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
5328
5359
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.tags #=> Array
|
5329
5360
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
5330
5361
|
# resp.volumes[0].administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -5333,7 +5364,8 @@ module Aws::FSx
|
|
5333
5364
|
# resp.volumes[0].open_zfs_configuration.volume_path #=> String
|
5334
5365
|
# resp.volumes[0].open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
5335
5366
|
# resp.volumes[0].open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
5336
|
-
# resp.volumes[0].open_zfs_configuration.
|
5367
|
+
# resp.volumes[0].open_zfs_configuration.record_size_ki_b #=> Integer
|
5368
|
+
# resp.volumes[0].open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
5337
5369
|
# resp.volumes[0].open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
5338
5370
|
# resp.volumes[0].open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
5339
5371
|
# resp.volumes[0].open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -5627,7 +5659,8 @@ module Aws::FSx
|
|
5627
5659
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
5628
5660
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
5629
5661
|
# 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.
|
5662
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
5663
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
5631
5664
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
5632
5665
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
5633
5666
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -5647,6 +5680,7 @@ module Aws::FSx
|
|
5647
5680
|
# resp.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
5648
5681
|
# resp.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
5649
5682
|
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
5683
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
5650
5684
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
5651
5685
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
5652
5686
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -6260,7 +6294,8 @@ module Aws::FSx
|
|
6260
6294
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
6261
6295
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
6262
6296
|
# 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.
|
6297
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
6298
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
6264
6299
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
6265
6300
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
6266
6301
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -6280,6 +6315,7 @@ module Aws::FSx
|
|
6280
6315
|
# resp.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
6281
6316
|
# resp.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
6282
6317
|
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
6318
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
6283
6319
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
6284
6320
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
6285
6321
|
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -6322,7 +6358,7 @@ module Aws::FSx
|
|
6322
6358
|
req.send_request(options)
|
6323
6359
|
end
|
6324
6360
|
|
6325
|
-
# Updates the name of
|
6361
|
+
# Updates the name of an Amazon FSx for OpenZFS snapshot.
|
6326
6362
|
#
|
6327
6363
|
# @option params [String] :client_request_token
|
6328
6364
|
# (Optional) An idempotency token for resource creation, in a string of
|
@@ -6360,6 +6396,7 @@ module Aws::FSx
|
|
6360
6396
|
# resp.snapshot.volume_id #=> String
|
6361
6397
|
# resp.snapshot.creation_time #=> Time
|
6362
6398
|
# resp.snapshot.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
6399
|
+
# resp.snapshot.lifecycle_transition_reason.message #=> String
|
6363
6400
|
# resp.snapshot.tags #=> Array
|
6364
6401
|
# resp.snapshot.tags[0].key #=> String
|
6365
6402
|
# resp.snapshot.tags[0].value #=> String
|
@@ -6485,7 +6522,8 @@ module Aws::FSx
|
|
6485
6522
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
6486
6523
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
6487
6524
|
# 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.
|
6525
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
6526
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
6489
6527
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
6490
6528
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
6491
6529
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -6646,7 +6684,8 @@ module Aws::FSx
|
|
6646
6684
|
# open_zfs_configuration: {
|
6647
6685
|
# storage_capacity_reservation_gi_b: 1,
|
6648
6686
|
# storage_capacity_quota_gi_b: 1,
|
6649
|
-
#
|
6687
|
+
# record_size_ki_b: 1,
|
6688
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
6650
6689
|
# nfs_exports: [
|
6651
6690
|
# {
|
6652
6691
|
# client_configurations: [ # required
|
@@ -6794,6 +6833,7 @@ module Aws::FSx
|
|
6794
6833
|
# resp.volume.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
6795
6834
|
# resp.volume.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
6796
6835
|
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
6836
|
+
# resp.volume.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
6797
6837
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags #=> Array
|
6798
6838
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
6799
6839
|
# resp.volume.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
@@ -6802,7 +6842,8 @@ module Aws::FSx
|
|
6802
6842
|
# resp.volume.open_zfs_configuration.volume_path #=> String
|
6803
6843
|
# resp.volume.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
6804
6844
|
# resp.volume.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
6805
|
-
# resp.volume.open_zfs_configuration.
|
6845
|
+
# resp.volume.open_zfs_configuration.record_size_ki_b #=> Integer
|
6846
|
+
# resp.volume.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
6806
6847
|
# resp.volume.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
6807
6848
|
# resp.volume.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
6808
6849
|
# resp.volume.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
@@ -6839,7 +6880,7 @@ module Aws::FSx
|
|
6839
6880
|
params: params,
|
6840
6881
|
config: config)
|
6841
6882
|
context[:gem_name] = 'aws-sdk-fsx'
|
6842
|
-
context[:gem_version] = '1.
|
6883
|
+
context[:gem_version] = '1.51.0'
|
6843
6884
|
Seahorse::Client::Request.new(handlers, context)
|
6844
6885
|
end
|
6845
6886
|
|
@@ -117,6 +117,8 @@ module Aws::FSx
|
|
117
117
|
DeleteFileSystemLustreConfiguration = Shapes::StructureShape.new(name: 'DeleteFileSystemLustreConfiguration')
|
118
118
|
DeleteFileSystemLustreResponse = Shapes::StructureShape.new(name: 'DeleteFileSystemLustreResponse')
|
119
119
|
DeleteFileSystemOpenZFSConfiguration = Shapes::StructureShape.new(name: 'DeleteFileSystemOpenZFSConfiguration')
|
120
|
+
DeleteFileSystemOpenZFSOption = Shapes::StringShape.new(name: 'DeleteFileSystemOpenZFSOption')
|
121
|
+
DeleteFileSystemOpenZFSOptions = Shapes::ListShape.new(name: 'DeleteFileSystemOpenZFSOptions')
|
120
122
|
DeleteFileSystemOpenZFSResponse = Shapes::StructureShape.new(name: 'DeleteFileSystemOpenZFSResponse')
|
121
123
|
DeleteFileSystemRequest = Shapes::StructureShape.new(name: 'DeleteFileSystemRequest')
|
122
124
|
DeleteFileSystemResponse = Shapes::StructureShape.new(name: 'DeleteFileSystemResponse')
|
@@ -188,6 +190,8 @@ module Aws::FSx
|
|
188
190
|
IncompatibleParameterError = Shapes::StructureShape.new(name: 'IncompatibleParameterError')
|
189
191
|
IncompatibleRegionForMultiAZ = Shapes::StructureShape.new(name: 'IncompatibleRegionForMultiAZ')
|
190
192
|
IntegerNoMax = Shapes::IntegerShape.new(name: 'IntegerNoMax')
|
193
|
+
IntegerNoMaxFromNegativeOne = Shapes::IntegerShape.new(name: 'IntegerNoMaxFromNegativeOne')
|
194
|
+
IntegerRecordSizeKiB = Shapes::IntegerShape.new(name: 'IntegerRecordSizeKiB')
|
191
195
|
InternalServerError = Shapes::StructureShape.new(name: 'InternalServerError')
|
192
196
|
InvalidDataRepositoryType = Shapes::StructureShape.new(name: 'InvalidDataRepositoryType')
|
193
197
|
InvalidDestinationKmsKey = Shapes::StructureShape.new(name: 'InvalidDestinationKmsKey')
|
@@ -614,8 +618,9 @@ module Aws::FSx
|
|
614
618
|
CreateOpenZFSOriginSnapshotConfiguration.struct_class = Types::CreateOpenZFSOriginSnapshotConfiguration
|
615
619
|
|
616
620
|
CreateOpenZFSVolumeConfiguration.add_member(:parent_volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location_name: "ParentVolumeId"))
|
617
|
-
CreateOpenZFSVolumeConfiguration.add_member(:storage_capacity_reservation_gi_b, Shapes::ShapeRef.new(shape:
|
618
|
-
CreateOpenZFSVolumeConfiguration.add_member(:storage_capacity_quota_gi_b, Shapes::ShapeRef.new(shape:
|
621
|
+
CreateOpenZFSVolumeConfiguration.add_member(:storage_capacity_reservation_gi_b, Shapes::ShapeRef.new(shape: IntegerNoMaxFromNegativeOne, location_name: "StorageCapacityReservationGiB"))
|
622
|
+
CreateOpenZFSVolumeConfiguration.add_member(:storage_capacity_quota_gi_b, Shapes::ShapeRef.new(shape: IntegerNoMaxFromNegativeOne, location_name: "StorageCapacityQuotaGiB"))
|
623
|
+
CreateOpenZFSVolumeConfiguration.add_member(:record_size_ki_b, Shapes::ShapeRef.new(shape: IntegerRecordSizeKiB, location_name: "RecordSizeKiB"))
|
619
624
|
CreateOpenZFSVolumeConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: OpenZFSDataCompressionType, location_name: "DataCompressionType"))
|
620
625
|
CreateOpenZFSVolumeConfiguration.add_member(:copy_tags_to_snapshots, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToSnapshots"))
|
621
626
|
CreateOpenZFSVolumeConfiguration.add_member(:origin_snapshot, Shapes::ShapeRef.new(shape: CreateOpenZFSOriginSnapshotConfiguration, location_name: "OriginSnapshot"))
|
@@ -775,8 +780,11 @@ module Aws::FSx
|
|
775
780
|
|
776
781
|
DeleteFileSystemOpenZFSConfiguration.add_member(:skip_final_backup, Shapes::ShapeRef.new(shape: Flag, location_name: "SkipFinalBackup"))
|
777
782
|
DeleteFileSystemOpenZFSConfiguration.add_member(:final_backup_tags, Shapes::ShapeRef.new(shape: Tags, location_name: "FinalBackupTags"))
|
783
|
+
DeleteFileSystemOpenZFSConfiguration.add_member(:options, Shapes::ShapeRef.new(shape: DeleteFileSystemOpenZFSOptions, location_name: "Options"))
|
778
784
|
DeleteFileSystemOpenZFSConfiguration.struct_class = Types::DeleteFileSystemOpenZFSConfiguration
|
779
785
|
|
786
|
+
DeleteFileSystemOpenZFSOptions.member = Shapes::ShapeRef.new(shape: DeleteFileSystemOpenZFSOption)
|
787
|
+
|
780
788
|
DeleteFileSystemOpenZFSResponse.add_member(:final_backup_id, Shapes::ShapeRef.new(shape: BackupId, location_name: "FinalBackupId"))
|
781
789
|
DeleteFileSystemOpenZFSResponse.add_member(:final_backup_tags, Shapes::ShapeRef.new(shape: Tags, location_name: "FinalBackupTags"))
|
782
790
|
DeleteFileSystemOpenZFSResponse.struct_class = Types::DeleteFileSystemOpenZFSResponse
|
@@ -1103,6 +1111,7 @@ module Aws::FSx
|
|
1103
1111
|
|
1104
1112
|
OpenZFSClientConfigurations.member = Shapes::ShapeRef.new(shape: OpenZFSClientConfiguration)
|
1105
1113
|
|
1114
|
+
OpenZFSCreateRootVolumeConfiguration.add_member(:record_size_ki_b, Shapes::ShapeRef.new(shape: IntegerRecordSizeKiB, location_name: "RecordSizeKiB"))
|
1106
1115
|
OpenZFSCreateRootVolumeConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: OpenZFSDataCompressionType, location_name: "DataCompressionType"))
|
1107
1116
|
OpenZFSCreateRootVolumeConfiguration.add_member(:nfs_exports, Shapes::ShapeRef.new(shape: OpenZFSNfsExports, location_name: "NfsExports"))
|
1108
1117
|
OpenZFSCreateRootVolumeConfiguration.add_member(:user_and_group_quotas, Shapes::ShapeRef.new(shape: OpenZFSUserAndGroupQuotas, location_name: "UserAndGroupQuotas"))
|
@@ -1143,6 +1152,7 @@ module Aws::FSx
|
|
1143
1152
|
OpenZFSVolumeConfiguration.add_member(:volume_path, Shapes::ShapeRef.new(shape: VolumePath, location_name: "VolumePath"))
|
1144
1153
|
OpenZFSVolumeConfiguration.add_member(:storage_capacity_reservation_gi_b, Shapes::ShapeRef.new(shape: IntegerNoMax, location_name: "StorageCapacityReservationGiB"))
|
1145
1154
|
OpenZFSVolumeConfiguration.add_member(:storage_capacity_quota_gi_b, Shapes::ShapeRef.new(shape: IntegerNoMax, location_name: "StorageCapacityQuotaGiB"))
|
1155
|
+
OpenZFSVolumeConfiguration.add_member(:record_size_ki_b, Shapes::ShapeRef.new(shape: IntegerRecordSizeKiB, location_name: "RecordSizeKiB"))
|
1146
1156
|
OpenZFSVolumeConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: OpenZFSDataCompressionType, location_name: "DataCompressionType"))
|
1147
1157
|
OpenZFSVolumeConfiguration.add_member(:copy_tags_to_snapshots, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToSnapshots"))
|
1148
1158
|
OpenZFSVolumeConfiguration.add_member(:origin_snapshot, Shapes::ShapeRef.new(shape: OpenZFSOriginSnapshotConfiguration, location_name: "OriginSnapshot"))
|
@@ -1216,6 +1226,7 @@ module Aws::FSx
|
|
1216
1226
|
Snapshot.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, location_name: "VolumeId"))
|
1217
1227
|
Snapshot.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTime"))
|
1218
1228
|
Snapshot.add_member(:lifecycle, Shapes::ShapeRef.new(shape: SnapshotLifecycle, location_name: "Lifecycle"))
|
1229
|
+
Snapshot.add_member(:lifecycle_transition_reason, Shapes::ShapeRef.new(shape: LifecycleTransitionReason, location_name: "LifecycleTransitionReason"))
|
1219
1230
|
Snapshot.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
1220
1231
|
Snapshot.add_member(:administrative_actions, Shapes::ShapeRef.new(shape: AdministrativeActions, location_name: "AdministrativeActions"))
|
1221
1232
|
Snapshot.struct_class = Types::Snapshot
|
@@ -1374,8 +1385,9 @@ module Aws::FSx
|
|
1374
1385
|
UpdateOntapVolumeConfiguration.add_member(:tiering_policy, Shapes::ShapeRef.new(shape: TieringPolicy, location_name: "TieringPolicy"))
|
1375
1386
|
UpdateOntapVolumeConfiguration.struct_class = Types::UpdateOntapVolumeConfiguration
|
1376
1387
|
|
1377
|
-
UpdateOpenZFSVolumeConfiguration.add_member(:storage_capacity_reservation_gi_b, Shapes::ShapeRef.new(shape:
|
1378
|
-
UpdateOpenZFSVolumeConfiguration.add_member(:storage_capacity_quota_gi_b, Shapes::ShapeRef.new(shape:
|
1388
|
+
UpdateOpenZFSVolumeConfiguration.add_member(:storage_capacity_reservation_gi_b, Shapes::ShapeRef.new(shape: IntegerNoMaxFromNegativeOne, location_name: "StorageCapacityReservationGiB"))
|
1389
|
+
UpdateOpenZFSVolumeConfiguration.add_member(:storage_capacity_quota_gi_b, Shapes::ShapeRef.new(shape: IntegerNoMaxFromNegativeOne, location_name: "StorageCapacityQuotaGiB"))
|
1390
|
+
UpdateOpenZFSVolumeConfiguration.add_member(:record_size_ki_b, Shapes::ShapeRef.new(shape: IntegerRecordSizeKiB, location_name: "RecordSizeKiB"))
|
1379
1391
|
UpdateOpenZFSVolumeConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: OpenZFSDataCompressionType, location_name: "DataCompressionType"))
|
1380
1392
|
UpdateOpenZFSVolumeConfiguration.add_member(:nfs_exports, Shapes::ShapeRef.new(shape: OpenZFSNfsExports, location_name: "NfsExports"))
|
1381
1393
|
UpdateOpenZFSVolumeConfiguration.add_member(:user_and_group_quotas, Shapes::ShapeRef.new(shape: OpenZFSUserAndGroupQuotas, location_name: "UserAndGroupQuotas"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -1209,7 +1209,8 @@ module Aws::FSx
|
|
1209
1209
|
# iops: 1,
|
1210
1210
|
# },
|
1211
1211
|
# root_volume_configuration: {
|
1212
|
-
#
|
1212
|
+
# record_size_ki_b: 1,
|
1213
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
1213
1214
|
# nfs_exports: [
|
1214
1215
|
# {
|
1215
1216
|
# client_configurations: [ # required
|
@@ -1796,8 +1797,8 @@ module Aws::FSx
|
|
1796
1797
|
include Aws::Structure
|
1797
1798
|
end
|
1798
1799
|
|
1799
|
-
# The OpenZFS configuration properties for the file
|
1800
|
-
# creating.
|
1800
|
+
# The Amazon FSx for OpenZFS configuration properties for the file
|
1801
|
+
# system that you are creating.
|
1801
1802
|
#
|
1802
1803
|
# @note When making an API call, you may pass CreateFileSystemOpenZFSConfiguration
|
1803
1804
|
# data as a hash:
|
@@ -1815,7 +1816,8 @@ module Aws::FSx
|
|
1815
1816
|
# iops: 1,
|
1816
1817
|
# },
|
1817
1818
|
# root_volume_configuration: {
|
1818
|
-
#
|
1819
|
+
# record_size_ki_b: 1,
|
1820
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
1819
1821
|
# nfs_exports: [
|
1820
1822
|
# {
|
1821
1823
|
# client_configurations: [ # required
|
@@ -2022,7 +2024,8 @@ module Aws::FSx
|
|
2022
2024
|
# iops: 1,
|
2023
2025
|
# },
|
2024
2026
|
# root_volume_configuration: {
|
2025
|
-
#
|
2027
|
+
# record_size_ki_b: 1,
|
2028
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
2026
2029
|
# nfs_exports: [
|
2027
2030
|
# {
|
2028
2031
|
# client_configurations: [ # required
|
@@ -2583,8 +2586,8 @@ module Aws::FSx
|
|
2583
2586
|
include Aws::Structure
|
2584
2587
|
end
|
2585
2588
|
|
2586
|
-
# Specifies the configuration of the OpenZFS volume that
|
2587
|
-
# creating.
|
2589
|
+
# Specifies the configuration of the Amazon FSx for OpenZFS volume that
|
2590
|
+
# you are creating.
|
2588
2591
|
#
|
2589
2592
|
# @note When making an API call, you may pass CreateOpenZFSVolumeConfiguration
|
2590
2593
|
# data as a hash:
|
@@ -2593,7 +2596,8 @@ module Aws::FSx
|
|
2593
2596
|
# parent_volume_id: "VolumeId", # required
|
2594
2597
|
# storage_capacity_reservation_gi_b: 1,
|
2595
2598
|
# storage_capacity_quota_gi_b: 1,
|
2596
|
-
#
|
2599
|
+
# record_size_ki_b: 1,
|
2600
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
2597
2601
|
# copy_tags_to_snapshots: false,
|
2598
2602
|
# origin_snapshot: {
|
2599
2603
|
# snapshot_arn: "ResourceARN", # required
|
@@ -2626,26 +2630,47 @@ module Aws::FSx
|
|
2626
2630
|
# @!attribute [rw] storage_capacity_reservation_gi_b
|
2627
2631
|
# The amount of storage in gibibytes (GiB) to reserve from the parent
|
2628
2632
|
# volume. You can't reserve more storage than the parent volume has
|
2629
|
-
# reserved.
|
2633
|
+
# reserved. To not specify a storage capacity reservation, set this to
|
2634
|
+
# `-1`.
|
2630
2635
|
# @return [Integer]
|
2631
2636
|
#
|
2632
2637
|
# @!attribute [rw] storage_capacity_quota_gi_b
|
2633
2638
|
# The maximum amount of storage in gibibytes (GiB) that the volume can
|
2634
|
-
# use from its parent. You can specify a quota larger than the
|
2635
|
-
# on the parent volume.
|
2639
|
+
# use from its parent. You can't specify a quota larger than the
|
2640
|
+
# storage on the parent volume. To not specify a storage capacity
|
2641
|
+
# quota, set this to `-1`.
|
2642
|
+
# @return [Integer]
|
2643
|
+
#
|
2644
|
+
# @!attribute [rw] record_size_ki_b
|
2645
|
+
# Specifies the record size of an OpenZFS volume, in kibibytes (KiB).
|
2646
|
+
# Valid values are 4, 8, 16, 32, 64, 128, 256, 512, or 1024 KiB. The
|
2647
|
+
# default is 128 KiB. Most workloads should use the default record
|
2648
|
+
# size. Database workflows can benefit from a smaller record size,
|
2649
|
+
# while streaming workflows can benefit from a larger record size. For
|
2650
|
+
# additional guidance on when to set a custom record size, see [ Tips
|
2651
|
+
# for maximizing performance][1] in the *Amazon FSx for OpenZFS User
|
2652
|
+
# Guide*.
|
2653
|
+
#
|
2654
|
+
#
|
2655
|
+
#
|
2656
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#performance-tips-zfs
|
2636
2657
|
# @return [Integer]
|
2637
2658
|
#
|
2638
2659
|
# @!attribute [rw] data_compression_type
|
2639
|
-
# Specifies the method used to compress the data on the volume.
|
2640
|
-
#
|
2641
|
-
# `DataCompressionType` value of their parent volume.
|
2660
|
+
# Specifies the method used to compress the data on the volume. The
|
2661
|
+
# compression type is `NONE` by default.
|
2642
2662
|
#
|
2643
|
-
# * `NONE` - Doesn't compress the data on the volume.
|
2663
|
+
# * `NONE` - Doesn't compress the data on the volume. `NONE` is the
|
2664
|
+
# default.
|
2644
2665
|
#
|
2645
2666
|
# * `ZSTD` - Compresses the data in the volume using the Zstandard
|
2646
|
-
# (ZSTD) compression algorithm.
|
2647
|
-
#
|
2648
|
-
#
|
2667
|
+
# (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides
|
2668
|
+
# a better compression ratio to minimize on-disk storage
|
2669
|
+
# utilization.
|
2670
|
+
#
|
2671
|
+
# * `LZ4` - Compresses the data in the volume using the LZ4
|
2672
|
+
# compression algorithm. Compared to Z-Standard, LZ4 is less
|
2673
|
+
# compute-intensive and delivers higher write throughput speeds.
|
2649
2674
|
# @return [String]
|
2650
2675
|
#
|
2651
2676
|
# @!attribute [rw] copy_tags_to_snapshots
|
@@ -2683,6 +2708,7 @@ module Aws::FSx
|
|
2683
2708
|
:parent_volume_id,
|
2684
2709
|
:storage_capacity_reservation_gi_b,
|
2685
2710
|
:storage_capacity_quota_gi_b,
|
2711
|
+
:record_size_ki_b,
|
2686
2712
|
:data_compression_type,
|
2687
2713
|
:copy_tags_to_snapshots,
|
2688
2714
|
:origin_snapshot,
|
@@ -3013,7 +3039,8 @@ module Aws::FSx
|
|
3013
3039
|
# parent_volume_id: "VolumeId", # required
|
3014
3040
|
# storage_capacity_reservation_gi_b: 1,
|
3015
3041
|
# storage_capacity_quota_gi_b: 1,
|
3016
|
-
#
|
3042
|
+
# record_size_ki_b: 1,
|
3043
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
3017
3044
|
# copy_tags_to_snapshots: false,
|
3018
3045
|
# origin_snapshot: {
|
3019
3046
|
# snapshot_arn: "ResourceARN", # required
|
@@ -3821,8 +3848,8 @@ module Aws::FSx
|
|
3821
3848
|
include Aws::Structure
|
3822
3849
|
end
|
3823
3850
|
|
3824
|
-
# The configuration object for the OpenZFS file system
|
3825
|
-
# `DeleteFileSystem` operation.
|
3851
|
+
# The configuration object for the Amazon FSx for OpenZFS file system
|
3852
|
+
# used in the `DeleteFileSystem` operation.
|
3826
3853
|
#
|
3827
3854
|
# @note When making an API call, you may pass DeleteFileSystemOpenZFSConfiguration
|
3828
3855
|
# data as a hash:
|
@@ -3835,25 +3862,34 @@ module Aws::FSx
|
|
3835
3862
|
# value: "TagValue", # required
|
3836
3863
|
# },
|
3837
3864
|
# ],
|
3865
|
+
# options: ["DELETE_CHILD_VOLUMES_AND_SNAPSHOTS"], # accepts DELETE_CHILD_VOLUMES_AND_SNAPSHOTS
|
3838
3866
|
# }
|
3839
3867
|
#
|
3840
3868
|
# @!attribute [rw] skip_final_backup
|
3841
3869
|
# By default, Amazon FSx for OpenZFS takes a final backup on your
|
3842
3870
|
# behalf when the `DeleteFileSystem` operation is invoked. Doing this
|
3843
3871
|
# helps protect you from data loss, and we highly recommend taking the
|
3844
|
-
# final backup. If you want to skip
|
3845
|
-
#
|
3872
|
+
# final backup. If you want to skip taking a final backup, set this
|
3873
|
+
# value to `true`.
|
3846
3874
|
# @return [Boolean]
|
3847
3875
|
#
|
3848
3876
|
# @!attribute [rw] final_backup_tags
|
3849
|
-
# A list of
|
3877
|
+
# A list of tags to apply to the file system's final backup.
|
3850
3878
|
# @return [Array<Types::Tag>]
|
3851
3879
|
#
|
3880
|
+
# @!attribute [rw] options
|
3881
|
+
# To delete a file system if there are child volumes present below the
|
3882
|
+
# root volume, use the string `DELETE_CHILD_VOLUMES_AND_SNAPSHOTS`. If
|
3883
|
+
# your file system has child volumes and you don't use this option,
|
3884
|
+
# the delete request will fail.
|
3885
|
+
# @return [Array<String>]
|
3886
|
+
#
|
3852
3887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemOpenZFSConfiguration AWS API Documentation
|
3853
3888
|
#
|
3854
3889
|
class DeleteFileSystemOpenZFSConfiguration < Struct.new(
|
3855
3890
|
:skip_final_backup,
|
3856
|
-
:final_backup_tags
|
3891
|
+
:final_backup_tags,
|
3892
|
+
:options)
|
3857
3893
|
SENSITIVE = []
|
3858
3894
|
include Aws::Structure
|
3859
3895
|
end
|
@@ -3913,6 +3949,7 @@ module Aws::FSx
|
|
3913
3949
|
# value: "TagValue", # required
|
3914
3950
|
# },
|
3915
3951
|
# ],
|
3952
|
+
# options: ["DELETE_CHILD_VOLUMES_AND_SNAPSHOTS"], # accepts DELETE_CHILD_VOLUMES_AND_SNAPSHOTS
|
3916
3953
|
# },
|
3917
3954
|
# }
|
3918
3955
|
#
|
@@ -5997,7 +6034,7 @@ module Aws::FSx
|
|
5997
6034
|
# @!attribute [rw] clients
|
5998
6035
|
# A value that specifies who can mount the file system. You can
|
5999
6036
|
# provide a wildcard character (`*`), an IP address (`0.0.0.0`), or a
|
6000
|
-
# CIDR address (`192.0.2.0/24
|
6037
|
+
# CIDR address (`192.0.2.0/24`). By default, Amazon FSx uses the
|
6001
6038
|
# wildcard character when specifying the client.
|
6002
6039
|
# @return [String]
|
6003
6040
|
#
|
@@ -6007,10 +6044,9 @@ module Aws::FSx
|
|
6007
6044
|
# [exports(5) - Linux man page][1]. When choosing your options,
|
6008
6045
|
# consider the following:
|
6009
6046
|
#
|
6010
|
-
# * `
|
6011
|
-
#
|
6012
|
-
#
|
6013
|
-
# directory.
|
6047
|
+
# * `crossmnt` is used by default. If you don't specify `crossmnt`
|
6048
|
+
# when changing the client configuration, you won't be able to see
|
6049
|
+
# or access snapshots in your file system's snapshot directory.
|
6014
6050
|
#
|
6015
6051
|
# * `sync` is used by default. If you instead specify `async`, the
|
6016
6052
|
# system acknowledges writes before writing to disk. If the system
|
@@ -6037,7 +6073,8 @@ module Aws::FSx
|
|
6037
6073
|
# data as a hash:
|
6038
6074
|
#
|
6039
6075
|
# {
|
6040
|
-
#
|
6076
|
+
# record_size_ki_b: 1,
|
6077
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
6041
6078
|
# nfs_exports: [
|
6042
6079
|
# {
|
6043
6080
|
# client_configurations: [ # required
|
@@ -6059,17 +6096,36 @@ module Aws::FSx
|
|
6059
6096
|
# read_only: false,
|
6060
6097
|
# }
|
6061
6098
|
#
|
6099
|
+
# @!attribute [rw] record_size_ki_b
|
6100
|
+
# Specifies the record size of an OpenZFS root volume, in kibibytes
|
6101
|
+
# (KiB). Valid values are 4, 8, 16, 32, 64, 128, 256, 512, or 1024
|
6102
|
+
# KiB. The default is 128 KiB. Most workloads should use the default
|
6103
|
+
# record size. Database workflows can benefit from a smaller record
|
6104
|
+
# size, while streaming workflows can benefit from a larger record
|
6105
|
+
# size. For additional guidance on setting a custom record size, see [
|
6106
|
+
# Tips for maximizing performance][1] in the *Amazon FSx for OpenZFS
|
6107
|
+
# User Guide*.
|
6108
|
+
#
|
6109
|
+
#
|
6110
|
+
#
|
6111
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#performance-tips-zfs
|
6112
|
+
# @return [Integer]
|
6113
|
+
#
|
6062
6114
|
# @!attribute [rw] data_compression_type
|
6063
|
-
# Specifies the method used to compress the data on the volume.
|
6064
|
-
#
|
6065
|
-
# `DataCompressionType` value of their parent volume.
|
6115
|
+
# Specifies the method used to compress the data on the volume. The
|
6116
|
+
# compression type is `NONE` by default.
|
6066
6117
|
#
|
6067
|
-
# * `NONE` - Doesn't compress the data on the volume.
|
6118
|
+
# * `NONE` - Doesn't compress the data on the volume. `NONE` is the
|
6119
|
+
# default.
|
6068
6120
|
#
|
6069
|
-
# * `ZSTD` - Compresses the data in the volume using the
|
6070
|
-
# (ZSTD) compression algorithm.
|
6071
|
-
#
|
6072
|
-
#
|
6121
|
+
# * `ZSTD` - Compresses the data in the volume using the Zstandard
|
6122
|
+
# (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides
|
6123
|
+
# a better compression ratio to minimize on-disk storage
|
6124
|
+
# utilization.
|
6125
|
+
#
|
6126
|
+
# * `LZ4` - Compresses the data in the volume using the LZ4
|
6127
|
+
# compression algorithm. Compared to Z-Standard, LZ4 is less
|
6128
|
+
# compute-intensive and delivers higher write throughput speeds.
|
6073
6129
|
# @return [String]
|
6074
6130
|
#
|
6075
6131
|
# @!attribute [rw] nfs_exports
|
@@ -6083,12 +6139,13 @@ module Aws::FSx
|
|
6083
6139
|
#
|
6084
6140
|
# @!attribute [rw] copy_tags_to_snapshots
|
6085
6141
|
# A Boolean value indicating whether tags for the volume should be
|
6086
|
-
# copied to snapshots. This value defaults to `false`.
|
6087
|
-
# `true`, all tags for the volume are copied to
|
6088
|
-
# user doesn't specify tags. If this value is
|
6089
|
-
# one or more tags, only the specified tags are
|
6090
|
-
# If you specify one or more tags when creating
|
6091
|
-
# are copied from the volume, regardless of this
|
6142
|
+
# copied to snapshots of the volume. This value defaults to `false`.
|
6143
|
+
# If it's set to `true`, all tags for the volume are copied to
|
6144
|
+
# snapshots where the user doesn't specify tags. If this value is
|
6145
|
+
# `true` and you specify one or more tags, only the specified tags are
|
6146
|
+
# copied to snapshots. If you specify one or more tags when creating
|
6147
|
+
# the snapshot, no tags are copied from the volume, regardless of this
|
6148
|
+
# value.
|
6092
6149
|
# @return [Boolean]
|
6093
6150
|
#
|
6094
6151
|
# @!attribute [rw] read_only
|
@@ -6100,6 +6157,7 @@ module Aws::FSx
|
|
6100
6157
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OpenZFSCreateRootVolumeConfiguration AWS API Documentation
|
6101
6158
|
#
|
6102
6159
|
class OpenZFSCreateRootVolumeConfiguration < Struct.new(
|
6160
|
+
:record_size_ki_b,
|
6103
6161
|
:data_compression_type,
|
6104
6162
|
:nfs_exports,
|
6105
6163
|
:user_and_group_quotas,
|
@@ -6152,8 +6210,8 @@ module Aws::FSx
|
|
6152
6210
|
#
|
6153
6211
|
# @!attribute [rw] throughput_capacity
|
6154
6212
|
# The throughput of an Amazon FSx file system, measured in megabytes
|
6155
|
-
# per second (MBps)
|
6156
|
-
#
|
6213
|
+
# per second (MBps). Valid values are 64, 128, 256, 512, 1024, 2048,
|
6214
|
+
# 3072, or 4096 MB/s.
|
6157
6215
|
# @return [Integer]
|
6158
6216
|
#
|
6159
6217
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -6325,17 +6383,29 @@ module Aws::FSx
|
|
6325
6383
|
# on the parent volume.
|
6326
6384
|
# @return [Integer]
|
6327
6385
|
#
|
6386
|
+
# @!attribute [rw] record_size_ki_b
|
6387
|
+
# The record size of an OpenZFS volume, in kibibytes (KiB). Valid
|
6388
|
+
# values are 4, 8, 16, 32, 64, 128, 256, 512, or 1024 KiB. The default
|
6389
|
+
# is 128 KiB. Most workloads should use the default record size. For
|
6390
|
+
# guidance on when to set a custom record size, see the *Amazon FSx
|
6391
|
+
# for OpenZFS User Guide*.
|
6392
|
+
# @return [Integer]
|
6393
|
+
#
|
6328
6394
|
# @!attribute [rw] data_compression_type
|
6329
|
-
#
|
6330
|
-
# compression type is
|
6331
|
-
# `DataCompressionType` value of their parent volume.
|
6395
|
+
# Specifies the method used to compress the data on the volume. The
|
6396
|
+
# compression type is `NONE` by default.
|
6332
6397
|
#
|
6333
|
-
# * `NONE` - Doesn't compress the data on the volume.
|
6398
|
+
# * `NONE` - Doesn't compress the data on the volume. `NONE` is the
|
6399
|
+
# default.
|
6334
6400
|
#
|
6335
6401
|
# * `ZSTD` - Compresses the data in the volume using the Zstandard
|
6336
|
-
# (ZSTD) compression algorithm.
|
6337
|
-
#
|
6338
|
-
#
|
6402
|
+
# (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides
|
6403
|
+
# a better compression ratio to minimize on-disk storage
|
6404
|
+
# utilization.
|
6405
|
+
#
|
6406
|
+
# * `LZ4` - Compresses the data in the volume using the LZ4
|
6407
|
+
# compression algorithm. Compared to Z-Standard, LZ4 is less
|
6408
|
+
# compute-intensive and delivers higher write throughput speeds.
|
6339
6409
|
# @return [String]
|
6340
6410
|
#
|
6341
6411
|
# @!attribute [rw] copy_tags_to_snapshots
|
@@ -6374,6 +6444,7 @@ module Aws::FSx
|
|
6374
6444
|
:volume_path,
|
6375
6445
|
:storage_capacity_reservation_gi_b,
|
6376
6446
|
:storage_capacity_quota_gi_b,
|
6447
|
+
:record_size_ki_b,
|
6377
6448
|
:data_compression_type,
|
6378
6449
|
:copy_tags_to_snapshots,
|
6379
6450
|
:origin_snapshot,
|
@@ -6810,6 +6881,10 @@ module Aws::FSx
|
|
6810
6881
|
# * `AVAILABLE` - The snapshot is fully available.
|
6811
6882
|
# @return [String]
|
6812
6883
|
#
|
6884
|
+
# @!attribute [rw] lifecycle_transition_reason
|
6885
|
+
# Describes why a resource lifecycle state changed.
|
6886
|
+
# @return [Types::LifecycleTransitionReason]
|
6887
|
+
#
|
6813
6888
|
# @!attribute [rw] tags
|
6814
6889
|
# A list of `Tag` values, with a maximum of 50 elements.
|
6815
6890
|
# @return [Array<Types::Tag>]
|
@@ -6829,6 +6904,7 @@ module Aws::FSx
|
|
6829
6904
|
:volume_id,
|
6830
6905
|
:creation_time,
|
6831
6906
|
:lifecycle,
|
6907
|
+
:lifecycle_transition_reason,
|
6832
6908
|
:tags,
|
6833
6909
|
:administrative_actions)
|
6834
6910
|
SENSITIVE = []
|
@@ -7625,8 +7701,8 @@ module Aws::FSx
|
|
7625
7701
|
#
|
7626
7702
|
# @!attribute [rw] throughput_capacity
|
7627
7703
|
# The throughput of an Amazon FSx file system, measured in megabytes
|
7628
|
-
# per second (MBps)
|
7629
|
-
#
|
7704
|
+
# per second (MBps). Valid values are 64, 128, 256, 512, 1024, 2048,
|
7705
|
+
# 3072, or 4096 MB/s.
|
7630
7706
|
# @return [Integer]
|
7631
7707
|
#
|
7632
7708
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -7987,7 +8063,8 @@ module Aws::FSx
|
|
7987
8063
|
# {
|
7988
8064
|
# storage_capacity_reservation_gi_b: 1,
|
7989
8065
|
# storage_capacity_quota_gi_b: 1,
|
7990
|
-
#
|
8066
|
+
# record_size_ki_b: 1,
|
8067
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
7991
8068
|
# nfs_exports: [
|
7992
8069
|
# {
|
7993
8070
|
# client_configurations: [ # required
|
@@ -8011,26 +8088,47 @@ module Aws::FSx
|
|
8011
8088
|
# @!attribute [rw] storage_capacity_reservation_gi_b
|
8012
8089
|
# The amount of storage in gibibytes (GiB) to reserve from the parent
|
8013
8090
|
# volume. You can't reserve more storage than the parent volume has
|
8014
|
-
# reserved.
|
8091
|
+
# reserved. You can specify a value of `-1` to unset a volume's
|
8092
|
+
# storage capacity reservation.
|
8015
8093
|
# @return [Integer]
|
8016
8094
|
#
|
8017
8095
|
# @!attribute [rw] storage_capacity_quota_gi_b
|
8018
8096
|
# The maximum amount of storage in gibibytes (GiB) that the volume can
|
8019
8097
|
# use from its parent. You can specify a quota larger than the storage
|
8020
|
-
# on the parent volume.
|
8098
|
+
# on the parent volume. You can specify a value of `-1` to unset a
|
8099
|
+
# volume's storage capacity quota.
|
8100
|
+
# @return [Integer]
|
8101
|
+
#
|
8102
|
+
# @!attribute [rw] record_size_ki_b
|
8103
|
+
# Specifies the record size of an OpenZFS volume, in kibibytes (KiB).
|
8104
|
+
# Valid values are 4, 8, 16, 32, 64, 128, 256, 512, or 1024 KiB. The
|
8105
|
+
# default is 128 KiB. Most workloads should use the default record
|
8106
|
+
# size. Database workflows can benefit from a smaller record size,
|
8107
|
+
# while streaming workflows can benefit from a larger record size. For
|
8108
|
+
# additional guidance on when to set a custom record size, see [ Tips
|
8109
|
+
# for maximizing performance][1] in the *Amazon FSx for OpenZFS User
|
8110
|
+
# Guide*.
|
8111
|
+
#
|
8112
|
+
#
|
8113
|
+
#
|
8114
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#performance-tips-zfs
|
8021
8115
|
# @return [Integer]
|
8022
8116
|
#
|
8023
8117
|
# @!attribute [rw] data_compression_type
|
8024
|
-
# Specifies the method used to compress the data on the volume.
|
8025
|
-
#
|
8026
|
-
# `DataCompressionType` value of their parent volume.
|
8118
|
+
# Specifies the method used to compress the data on the volume. The
|
8119
|
+
# compression type is `NONE` by default.
|
8027
8120
|
#
|
8028
|
-
# * `NONE` - Doesn't compress the data on the volume.
|
8121
|
+
# * `NONE` - Doesn't compress the data on the volume. `NONE` is the
|
8122
|
+
# default.
|
8029
8123
|
#
|
8030
8124
|
# * `ZSTD` - Compresses the data in the volume using the Zstandard
|
8031
|
-
# (ZSTD) compression algorithm.
|
8032
|
-
#
|
8033
|
-
#
|
8125
|
+
# (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides
|
8126
|
+
# a better compression ratio to minimize on-disk storage
|
8127
|
+
# utilization.
|
8128
|
+
#
|
8129
|
+
# * `LZ4` - Compresses the data in the volume using the LZ4
|
8130
|
+
# compression algorithm. Compared to Z-Standard, LZ4 is less
|
8131
|
+
# compute-intensive and delivers higher write throughput speeds.
|
8034
8132
|
# @return [String]
|
8035
8133
|
#
|
8036
8134
|
# @!attribute [rw] nfs_exports
|
@@ -8052,6 +8150,7 @@ module Aws::FSx
|
|
8052
8150
|
class UpdateOpenZFSVolumeConfiguration < Struct.new(
|
8053
8151
|
:storage_capacity_reservation_gi_b,
|
8054
8152
|
:storage_capacity_quota_gi_b,
|
8153
|
+
:record_size_ki_b,
|
8055
8154
|
:data_compression_type,
|
8056
8155
|
:nfs_exports,
|
8057
8156
|
:user_and_group_quotas,
|
@@ -8224,7 +8323,8 @@ module Aws::FSx
|
|
8224
8323
|
# open_zfs_configuration: {
|
8225
8324
|
# storage_capacity_reservation_gi_b: 1,
|
8226
8325
|
# storage_capacity_quota_gi_b: 1,
|
8227
|
-
#
|
8326
|
+
# record_size_ki_b: 1,
|
8327
|
+
# data_compression_type: "NONE", # accepts NONE, ZSTD, LZ4
|
8228
8328
|
# nfs_exports: [
|
8229
8329
|
# {
|
8230
8330
|
# client_configurations: [ # required
|
@@ -8427,8 +8527,7 @@ module Aws::FSx
|
|
8427
8527
|
include Aws::Structure
|
8428
8528
|
end
|
8429
8529
|
|
8430
|
-
# No Amazon FSx
|
8431
|
-
# supplied parameters.
|
8530
|
+
# No Amazon FSx volumes were found based upon the supplied parameters.
|
8432
8531
|
#
|
8433
8532
|
# @!attribute [rw] message
|
8434
8533
|
# A detailed error message.
|
data/lib/aws-sdk-fsx.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-fsx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.51.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: 2022-02-
|
11
|
+
date: 2022-02-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|