aws-sdk-fsx 1.72.0 → 1.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +303 -1
- data/lib/aws-sdk-fsx/client_api.rb +52 -0
- data/lib/aws-sdk-fsx/types.rb +417 -9
- 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: 055f2837d13e43b7446f6470844b1b23782e132889437339fd63b440104f67a6
|
|
4
|
+
data.tar.gz: b90f3e10eb8130ddf9edbfbf9febf50876eb38d16a2bdd3bfca57c71406ced4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 775215b1450bbc41dfb5e00faa69cbb7f156cb08e957fafd9408d0b1f0401549b452fee9dda0adf74a488feae3f53aae4d5c5b516c204c609d5193fa57f8077f
|
|
7
|
+
data.tar.gz: 80ec86535c52ef93c0dbe446e56400c83b6bb9a46eb5caa7bbe3b0d50b82948a8cc3e4fd4ae21f4bc029f2deef3ee4a1a4ead119514f824014c2beaba5291122
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.73.0 (2023-07-13)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon FSx for NetApp ONTAP now supports SnapLock, an ONTAP feature that enables you to protect your files in a volume by transitioning them to a write once, read many (WORM) state.
|
|
8
|
+
|
|
4
9
|
1.72.0 (2023-07-11)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.73.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
|
@@ -775,6 +775,18 @@ module Aws::FSx
|
|
|
775
775
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
776
776
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
777
777
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
778
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
779
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
780
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
781
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
782
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
783
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
784
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
785
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
786
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
787
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
788
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
789
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
778
790
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
779
791
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
|
780
792
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -869,6 +881,18 @@ module Aws::FSx
|
|
|
869
881
|
# resp.backup.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
870
882
|
# resp.backup.volume.ontap_configuration.snapshot_policy #=> String
|
|
871
883
|
# resp.backup.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
884
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
885
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
886
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
887
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
888
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
889
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
890
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
891
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
892
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
893
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
894
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
895
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
872
896
|
# resp.backup.volume.resource_arn #=> String
|
|
873
897
|
# resp.backup.volume.tags #=> Array
|
|
874
898
|
# resp.backup.volume.tags[0].key #=> String
|
|
@@ -1263,6 +1287,18 @@ module Aws::FSx
|
|
|
1263
1287
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
1264
1288
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
1265
1289
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
1290
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
1291
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
1292
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
1293
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
1294
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
1295
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
1296
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
1297
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
1298
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
1299
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
1300
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
1301
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
1266
1302
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
1267
1303
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
|
1268
1304
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -1357,6 +1393,18 @@ module Aws::FSx
|
|
|
1357
1393
|
# resp.backup.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
1358
1394
|
# resp.backup.volume.ontap_configuration.snapshot_policy #=> String
|
|
1359
1395
|
# resp.backup.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
1396
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
1397
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
1398
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
1399
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
1400
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
1401
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
1402
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
1403
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
1404
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
1405
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
1406
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
1407
|
+
# resp.backup.volume.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
1360
1408
|
# resp.backup.volume.resource_arn #=> String
|
|
1361
1409
|
# resp.backup.volume.tags #=> Array
|
|
1362
1410
|
# resp.backup.volume.tags[0].key #=> String
|
|
@@ -2479,6 +2527,18 @@ module Aws::FSx
|
|
|
2479
2527
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
2480
2528
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
2481
2529
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
2530
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
2531
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
2532
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
2533
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
2534
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
2535
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
2536
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
2537
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
2538
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
2539
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
2540
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
2541
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
2482
2542
|
# resp.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
2483
2543
|
# resp.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
|
2484
2544
|
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -2977,6 +3037,18 @@ module Aws::FSx
|
|
|
2977
3037
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
2978
3038
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
2979
3039
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
3040
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
3041
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
3042
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
3043
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
3044
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3045
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
3046
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3047
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
3048
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3049
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
3050
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
3051
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
2980
3052
|
# resp.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
2981
3053
|
# resp.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
|
2982
3054
|
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -3253,6 +3325,18 @@ module Aws::FSx
|
|
|
3253
3325
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
3254
3326
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
3255
3327
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
3328
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
3329
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
3330
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
3331
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
3332
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3333
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
3334
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3335
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
3336
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3337
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
3338
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
3339
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
3256
3340
|
# resp.snapshot.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
3257
3341
|
# resp.snapshot.administrative_actions[0].target_volume_values.tags #=> Array
|
|
3258
3342
|
# resp.snapshot.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -3466,6 +3550,30 @@ module Aws::FSx
|
|
|
3466
3550
|
# ontap_volume_type: "RW", # accepts RW, DP
|
|
3467
3551
|
# snapshot_policy: "SnapshotPolicy",
|
|
3468
3552
|
# copy_tags_to_backups: false,
|
|
3553
|
+
# snaplock_configuration: {
|
|
3554
|
+
# audit_log_volume: false,
|
|
3555
|
+
# autocommit_period: {
|
|
3556
|
+
# type: "MINUTES", # required, accepts MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE
|
|
3557
|
+
# value: 1,
|
|
3558
|
+
# },
|
|
3559
|
+
# privileged_delete: "DISABLED", # accepts DISABLED, ENABLED, PERMANENTLY_DISABLED
|
|
3560
|
+
# retention_period: {
|
|
3561
|
+
# default_retention: { # required
|
|
3562
|
+
# type: "SECONDS", # required, accepts SECONDS, MINUTES, HOURS, DAYS, MONTHS, YEARS, INFINITE, UNSPECIFIED
|
|
3563
|
+
# value: 1,
|
|
3564
|
+
# },
|
|
3565
|
+
# minimum_retention: { # required
|
|
3566
|
+
# type: "SECONDS", # required, accepts SECONDS, MINUTES, HOURS, DAYS, MONTHS, YEARS, INFINITE, UNSPECIFIED
|
|
3567
|
+
# value: 1,
|
|
3568
|
+
# },
|
|
3569
|
+
# maximum_retention: { # required
|
|
3570
|
+
# type: "SECONDS", # required, accepts SECONDS, MINUTES, HOURS, DAYS, MONTHS, YEARS, INFINITE, UNSPECIFIED
|
|
3571
|
+
# value: 1,
|
|
3572
|
+
# },
|
|
3573
|
+
# },
|
|
3574
|
+
# snaplock_type: "COMPLIANCE", # required, accepts COMPLIANCE, ENTERPRISE
|
|
3575
|
+
# volume_append_mode_enabled: false,
|
|
3576
|
+
# },
|
|
3469
3577
|
# },
|
|
3470
3578
|
# tags: [
|
|
3471
3579
|
# {
|
|
@@ -3524,6 +3632,18 @@ module Aws::FSx
|
|
|
3524
3632
|
# resp.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
3525
3633
|
# resp.volume.ontap_configuration.snapshot_policy #=> String
|
|
3526
3634
|
# resp.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
3635
|
+
# resp.volume.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
3636
|
+
# resp.volume.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
3637
|
+
# resp.volume.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
3638
|
+
# resp.volume.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
3639
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3640
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
3641
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3642
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
3643
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3644
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
3645
|
+
# resp.volume.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
3646
|
+
# resp.volume.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
3527
3647
|
# resp.volume.resource_arn #=> String
|
|
3528
3648
|
# resp.volume.tags #=> Array
|
|
3529
3649
|
# resp.volume.tags[0].key #=> String
|
|
@@ -3722,6 +3842,30 @@ module Aws::FSx
|
|
|
3722
3842
|
# ontap_volume_type: "RW", # accepts RW, DP
|
|
3723
3843
|
# snapshot_policy: "SnapshotPolicy",
|
|
3724
3844
|
# copy_tags_to_backups: false,
|
|
3845
|
+
# snaplock_configuration: {
|
|
3846
|
+
# audit_log_volume: false,
|
|
3847
|
+
# autocommit_period: {
|
|
3848
|
+
# type: "MINUTES", # required, accepts MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE
|
|
3849
|
+
# value: 1,
|
|
3850
|
+
# },
|
|
3851
|
+
# privileged_delete: "DISABLED", # accepts DISABLED, ENABLED, PERMANENTLY_DISABLED
|
|
3852
|
+
# retention_period: {
|
|
3853
|
+
# default_retention: { # required
|
|
3854
|
+
# type: "SECONDS", # required, accepts SECONDS, MINUTES, HOURS, DAYS, MONTHS, YEARS, INFINITE, UNSPECIFIED
|
|
3855
|
+
# value: 1,
|
|
3856
|
+
# },
|
|
3857
|
+
# minimum_retention: { # required
|
|
3858
|
+
# type: "SECONDS", # required, accepts SECONDS, MINUTES, HOURS, DAYS, MONTHS, YEARS, INFINITE, UNSPECIFIED
|
|
3859
|
+
# value: 1,
|
|
3860
|
+
# },
|
|
3861
|
+
# maximum_retention: { # required
|
|
3862
|
+
# type: "SECONDS", # required, accepts SECONDS, MINUTES, HOURS, DAYS, MONTHS, YEARS, INFINITE, UNSPECIFIED
|
|
3863
|
+
# value: 1,
|
|
3864
|
+
# },
|
|
3865
|
+
# },
|
|
3866
|
+
# snaplock_type: "COMPLIANCE", # required, accepts COMPLIANCE, ENTERPRISE
|
|
3867
|
+
# volume_append_mode_enabled: false,
|
|
3868
|
+
# },
|
|
3725
3869
|
# },
|
|
3726
3870
|
# tags: [
|
|
3727
3871
|
# {
|
|
@@ -3750,6 +3894,18 @@ module Aws::FSx
|
|
|
3750
3894
|
# resp.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
3751
3895
|
# resp.volume.ontap_configuration.snapshot_policy #=> String
|
|
3752
3896
|
# resp.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
3897
|
+
# resp.volume.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
3898
|
+
# resp.volume.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
3899
|
+
# resp.volume.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
3900
|
+
# resp.volume.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
3901
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3902
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
3903
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3904
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
3905
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
3906
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
3907
|
+
# resp.volume.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
3908
|
+
# resp.volume.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
3753
3909
|
# resp.volume.resource_arn #=> String
|
|
3754
3910
|
# resp.volume.tags #=> Array
|
|
3755
3911
|
# resp.volume.tags[0].key #=> String
|
|
@@ -4340,6 +4496,7 @@ module Aws::FSx
|
|
|
4340
4496
|
# value: "TagValue", # required
|
|
4341
4497
|
# },
|
|
4342
4498
|
# ],
|
|
4499
|
+
# bypass_snaplock_enterprise_retention: false,
|
|
4343
4500
|
# },
|
|
4344
4501
|
# open_zfs_configuration: {
|
|
4345
4502
|
# options: ["DELETE_CHILD_VOLUMES_AND_SNAPSHOTS"], # accepts DELETE_CHILD_VOLUMES_AND_SNAPSHOTS
|
|
@@ -4571,6 +4728,18 @@ module Aws::FSx
|
|
|
4571
4728
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
4572
4729
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
4573
4730
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
4731
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
4732
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
4733
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
4734
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
4735
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
4736
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
4737
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
4738
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
4739
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
4740
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
4741
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
4742
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
4574
4743
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
4575
4744
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
|
4576
4745
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -4665,6 +4834,18 @@ module Aws::FSx
|
|
|
4665
4834
|
# resp.backups[0].volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
4666
4835
|
# resp.backups[0].volume.ontap_configuration.snapshot_policy #=> String
|
|
4667
4836
|
# resp.backups[0].volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
4837
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
4838
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
4839
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
4840
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
4841
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
4842
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
4843
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
4844
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
4845
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
4846
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
4847
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
4848
|
+
# resp.backups[0].volume.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
4668
4849
|
# resp.backups[0].volume.resource_arn #=> String
|
|
4669
4850
|
# resp.backups[0].volume.tags #=> Array
|
|
4670
4851
|
# resp.backups[0].volume.tags[0].key #=> String
|
|
@@ -5366,6 +5547,18 @@ module Aws::FSx
|
|
|
5366
5547
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
5367
5548
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
5368
5549
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
5550
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
5551
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
5552
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
5553
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
5554
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
5555
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
5556
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
5557
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
5558
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
5559
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
5560
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
5561
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
5369
5562
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
5370
5563
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.tags #=> Array
|
|
5371
5564
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -5643,6 +5836,18 @@ module Aws::FSx
|
|
|
5643
5836
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
5644
5837
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
5645
5838
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
5839
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
5840
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
5841
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
5842
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
5843
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
5844
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
5845
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
5846
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
5847
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
5848
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
5849
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
5850
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
5646
5851
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
5647
5852
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.tags #=> Array
|
|
5648
5853
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -5832,6 +6037,18 @@ module Aws::FSx
|
|
|
5832
6037
|
# resp.volumes[0].ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
5833
6038
|
# resp.volumes[0].ontap_configuration.snapshot_policy #=> String
|
|
5834
6039
|
# resp.volumes[0].ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
6040
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
6041
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
6042
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
6043
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
6044
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
6045
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
6046
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
6047
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
6048
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
6049
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
6050
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
6051
|
+
# resp.volumes[0].ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
5835
6052
|
# resp.volumes[0].resource_arn #=> String
|
|
5836
6053
|
# resp.volumes[0].tags #=> Array
|
|
5837
6054
|
# resp.volumes[0].tags[0].key #=> String
|
|
@@ -6244,6 +6461,18 @@ module Aws::FSx
|
|
|
6244
6461
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
6245
6462
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
6246
6463
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
6464
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
6465
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
6466
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
6467
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
6468
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
6469
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
6470
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
6471
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
6472
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
6473
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
6474
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
6475
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
6247
6476
|
# resp.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
6248
6477
|
# resp.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
|
6249
6478
|
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -6491,6 +6720,18 @@ module Aws::FSx
|
|
|
6491
6720
|
# resp.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
6492
6721
|
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
6493
6722
|
# resp.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
6723
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
6724
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
6725
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
6726
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
6727
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
6728
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
6729
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
6730
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
6731
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
6732
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
6733
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
6734
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
6494
6735
|
# resp.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
6495
6736
|
# resp.administrative_actions[0].target_volume_values.tags #=> Array
|
|
6496
6737
|
# resp.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -6823,6 +7064,8 @@ module Aws::FSx
|
|
|
6823
7064
|
#
|
|
6824
7065
|
# * `DataCompressionType`
|
|
6825
7066
|
#
|
|
7067
|
+
# * `LogConfiguration`
|
|
7068
|
+
#
|
|
6826
7069
|
# * `LustreRootSquashConfiguration`
|
|
6827
7070
|
#
|
|
6828
7071
|
# * `StorageCapacity`
|
|
@@ -7153,6 +7396,18 @@ module Aws::FSx
|
|
|
7153
7396
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
7154
7397
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
7155
7398
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
7399
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
7400
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
7401
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
7402
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
7403
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
7404
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
7405
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
7406
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
7407
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
7408
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
7409
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
7410
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
7156
7411
|
# resp.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
7157
7412
|
# resp.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
|
7158
7413
|
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -7391,6 +7646,18 @@ module Aws::FSx
|
|
|
7391
7646
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
7392
7647
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
7393
7648
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
7649
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
7650
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
7651
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
7652
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
7653
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
7654
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
7655
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
7656
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
7657
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
7658
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
7659
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
7660
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
7394
7661
|
# resp.snapshot.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
7395
7662
|
# resp.snapshot.administrative_actions[0].target_volume_values.tags #=> Array
|
|
7396
7663
|
# resp.snapshot.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
@@ -7569,6 +7836,29 @@ module Aws::FSx
|
|
|
7569
7836
|
# },
|
|
7570
7837
|
# snapshot_policy: "SnapshotPolicy",
|
|
7571
7838
|
# copy_tags_to_backups: false,
|
|
7839
|
+
# snaplock_configuration: {
|
|
7840
|
+
# audit_log_volume: false,
|
|
7841
|
+
# autocommit_period: {
|
|
7842
|
+
# type: "MINUTES", # required, accepts MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE
|
|
7843
|
+
# value: 1,
|
|
7844
|
+
# },
|
|
7845
|
+
# privileged_delete: "DISABLED", # accepts DISABLED, ENABLED, PERMANENTLY_DISABLED
|
|
7846
|
+
# retention_period: {
|
|
7847
|
+
# default_retention: { # required
|
|
7848
|
+
# type: "SECONDS", # required, accepts SECONDS, MINUTES, HOURS, DAYS, MONTHS, YEARS, INFINITE, UNSPECIFIED
|
|
7849
|
+
# value: 1,
|
|
7850
|
+
# },
|
|
7851
|
+
# minimum_retention: { # required
|
|
7852
|
+
# type: "SECONDS", # required, accepts SECONDS, MINUTES, HOURS, DAYS, MONTHS, YEARS, INFINITE, UNSPECIFIED
|
|
7853
|
+
# value: 1,
|
|
7854
|
+
# },
|
|
7855
|
+
# maximum_retention: { # required
|
|
7856
|
+
# type: "SECONDS", # required, accepts SECONDS, MINUTES, HOURS, DAYS, MONTHS, YEARS, INFINITE, UNSPECIFIED
|
|
7857
|
+
# value: 1,
|
|
7858
|
+
# },
|
|
7859
|
+
# },
|
|
7860
|
+
# volume_append_mode_enabled: false,
|
|
7861
|
+
# },
|
|
7572
7862
|
# },
|
|
7573
7863
|
# name: "VolumeName",
|
|
7574
7864
|
# open_zfs_configuration: {
|
|
@@ -7616,6 +7906,18 @@ module Aws::FSx
|
|
|
7616
7906
|
# resp.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
7617
7907
|
# resp.volume.ontap_configuration.snapshot_policy #=> String
|
|
7618
7908
|
# resp.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
7909
|
+
# resp.volume.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
7910
|
+
# resp.volume.ontap_configuration.snaplock_configuration.autocommit_period.type #=> String, one of "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "NONE"
|
|
7911
|
+
# resp.volume.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
7912
|
+
# resp.volume.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
7913
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
7914
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
7915
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
7916
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
7917
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.type #=> String, one of "SECONDS", "MINUTES", "HOURS", "DAYS", "MONTHS", "YEARS", "INFINITE", "UNSPECIFIED"
|
|
7918
|
+
# resp.volume.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
7919
|
+
# resp.volume.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
7920
|
+
# resp.volume.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
7619
7921
|
# resp.volume.resource_arn #=> String
|
|
7620
7922
|
# resp.volume.tags #=> Array
|
|
7621
7923
|
# resp.volume.tags[0].key #=> String
|
|
@@ -7779,7 +8081,7 @@ module Aws::FSx
|
|
|
7779
8081
|
params: params,
|
|
7780
8082
|
config: config)
|
|
7781
8083
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
7782
|
-
context[:gem_version] = '1.
|
|
8084
|
+
context[:gem_version] = '1.73.0'
|
|
7783
8085
|
Seahorse::Client::Request.new(handlers, context)
|
|
7784
8086
|
end
|
|
7785
8087
|
|
|
@@ -34,6 +34,9 @@ module Aws::FSx
|
|
|
34
34
|
AutoExportPolicy = Shapes::StructureShape.new(name: 'AutoExportPolicy')
|
|
35
35
|
AutoImportPolicy = Shapes::StructureShape.new(name: 'AutoImportPolicy')
|
|
36
36
|
AutoImportPolicyType = Shapes::StringShape.new(name: 'AutoImportPolicyType')
|
|
37
|
+
AutocommitPeriod = Shapes::StructureShape.new(name: 'AutocommitPeriod')
|
|
38
|
+
AutocommitPeriodType = Shapes::StringShape.new(name: 'AutocommitPeriodType')
|
|
39
|
+
AutocommitPeriodValue = Shapes::IntegerShape.new(name: 'AutocommitPeriodValue')
|
|
37
40
|
AutomaticBackupRetentionDays = Shapes::IntegerShape.new(name: 'AutomaticBackupRetentionDays')
|
|
38
41
|
Backup = Shapes::StructureShape.new(name: 'Backup')
|
|
39
42
|
BackupBeingCopied = Shapes::StructureShape.new(name: 'BackupBeingCopied')
|
|
@@ -78,6 +81,7 @@ module Aws::FSx
|
|
|
78
81
|
CreateOntapVolumeConfiguration = Shapes::StructureShape.new(name: 'CreateOntapVolumeConfiguration')
|
|
79
82
|
CreateOpenZFSOriginSnapshotConfiguration = Shapes::StructureShape.new(name: 'CreateOpenZFSOriginSnapshotConfiguration')
|
|
80
83
|
CreateOpenZFSVolumeConfiguration = Shapes::StructureShape.new(name: 'CreateOpenZFSVolumeConfiguration')
|
|
84
|
+
CreateSnaplockConfiguration = Shapes::StructureShape.new(name: 'CreateSnaplockConfiguration')
|
|
81
85
|
CreateSnapshotRequest = Shapes::StructureShape.new(name: 'CreateSnapshotRequest')
|
|
82
86
|
CreateSnapshotResponse = Shapes::StructureShape.new(name: 'CreateSnapshotResponse')
|
|
83
87
|
CreateStorageVirtualMachineRequest = Shapes::StructureShape.new(name: 'CreateStorageVirtualMachineRequest')
|
|
@@ -286,6 +290,7 @@ module Aws::FSx
|
|
|
286
290
|
OrganizationalUnitDistinguishedName = Shapes::StringShape.new(name: 'OrganizationalUnitDistinguishedName')
|
|
287
291
|
Parameter = Shapes::StringShape.new(name: 'Parameter')
|
|
288
292
|
PerUnitStorageThroughput = Shapes::IntegerShape.new(name: 'PerUnitStorageThroughput')
|
|
293
|
+
PrivilegedDelete = Shapes::StringShape.new(name: 'PrivilegedDelete')
|
|
289
294
|
ProgressPercent = Shapes::IntegerShape.new(name: 'ProgressPercent')
|
|
290
295
|
ReadOnly = Shapes::BooleanShape.new(name: 'ReadOnly')
|
|
291
296
|
Region = Shapes::StringShape.new(name: 'Region')
|
|
@@ -304,6 +309,9 @@ module Aws::FSx
|
|
|
304
309
|
RestoreOpenZFSVolumeOptions = Shapes::ListShape.new(name: 'RestoreOpenZFSVolumeOptions')
|
|
305
310
|
RestoreVolumeFromSnapshotRequest = Shapes::StructureShape.new(name: 'RestoreVolumeFromSnapshotRequest')
|
|
306
311
|
RestoreVolumeFromSnapshotResponse = Shapes::StructureShape.new(name: 'RestoreVolumeFromSnapshotResponse')
|
|
312
|
+
RetentionPeriod = Shapes::StructureShape.new(name: 'RetentionPeriod')
|
|
313
|
+
RetentionPeriodType = Shapes::StringShape.new(name: 'RetentionPeriodType')
|
|
314
|
+
RetentionPeriodValue = Shapes::IntegerShape.new(name: 'RetentionPeriodValue')
|
|
307
315
|
RouteTableId = Shapes::StringShape.new(name: 'RouteTableId')
|
|
308
316
|
RouteTableIds = Shapes::ListShape.new(name: 'RouteTableIds')
|
|
309
317
|
S3DataRepositoryConfiguration = Shapes::StructureShape.new(name: 'S3DataRepositoryConfiguration')
|
|
@@ -315,6 +323,9 @@ module Aws::FSx
|
|
|
315
323
|
SelfManagedActiveDirectoryConfigurationUpdates = Shapes::StructureShape.new(name: 'SelfManagedActiveDirectoryConfigurationUpdates')
|
|
316
324
|
ServiceLimit = Shapes::StringShape.new(name: 'ServiceLimit')
|
|
317
325
|
ServiceLimitExceeded = Shapes::StructureShape.new(name: 'ServiceLimitExceeded')
|
|
326
|
+
SnaplockConfiguration = Shapes::StructureShape.new(name: 'SnaplockConfiguration')
|
|
327
|
+
SnaplockRetentionPeriod = Shapes::StructureShape.new(name: 'SnaplockRetentionPeriod')
|
|
328
|
+
SnaplockType = Shapes::StringShape.new(name: 'SnaplockType')
|
|
318
329
|
Snapshot = Shapes::StructureShape.new(name: 'Snapshot')
|
|
319
330
|
SnapshotFilter = Shapes::StructureShape.new(name: 'SnapshotFilter')
|
|
320
331
|
SnapshotFilterName = Shapes::StringShape.new(name: 'SnapshotFilterName')
|
|
@@ -384,6 +395,7 @@ module Aws::FSx
|
|
|
384
395
|
UpdateFileSystemWindowsConfiguration = Shapes::StructureShape.new(name: 'UpdateFileSystemWindowsConfiguration')
|
|
385
396
|
UpdateOntapVolumeConfiguration = Shapes::StructureShape.new(name: 'UpdateOntapVolumeConfiguration')
|
|
386
397
|
UpdateOpenZFSVolumeConfiguration = Shapes::StructureShape.new(name: 'UpdateOpenZFSVolumeConfiguration')
|
|
398
|
+
UpdateSnaplockConfiguration = Shapes::StructureShape.new(name: 'UpdateSnaplockConfiguration')
|
|
387
399
|
UpdateSnapshotRequest = Shapes::StructureShape.new(name: 'UpdateSnapshotRequest')
|
|
388
400
|
UpdateSnapshotResponse = Shapes::StructureShape.new(name: 'UpdateSnapshotResponse')
|
|
389
401
|
UpdateStorageVirtualMachineRequest = Shapes::StructureShape.new(name: 'UpdateStorageVirtualMachineRequest')
|
|
@@ -461,6 +473,10 @@ module Aws::FSx
|
|
|
461
473
|
AutoImportPolicy.add_member(:events, Shapes::ShapeRef.new(shape: EventTypes, location_name: "Events"))
|
|
462
474
|
AutoImportPolicy.struct_class = Types::AutoImportPolicy
|
|
463
475
|
|
|
476
|
+
AutocommitPeriod.add_member(:type, Shapes::ShapeRef.new(shape: AutocommitPeriodType, required: true, location_name: "Type"))
|
|
477
|
+
AutocommitPeriod.add_member(:value, Shapes::ShapeRef.new(shape: AutocommitPeriodValue, location_name: "Value"))
|
|
478
|
+
AutocommitPeriod.struct_class = Types::AutocommitPeriod
|
|
479
|
+
|
|
464
480
|
Backup.add_member(:backup_id, Shapes::ShapeRef.new(shape: BackupId, required: true, location_name: "BackupId"))
|
|
465
481
|
Backup.add_member(:lifecycle, Shapes::ShapeRef.new(shape: BackupLifecycle, required: true, location_name: "Lifecycle"))
|
|
466
482
|
Backup.add_member(:failure_details, Shapes::ShapeRef.new(shape: BackupFailureDetails, location_name: "FailureDetails"))
|
|
@@ -681,6 +697,7 @@ module Aws::FSx
|
|
|
681
697
|
CreateOntapVolumeConfiguration.add_member(:ontap_volume_type, Shapes::ShapeRef.new(shape: InputOntapVolumeType, location_name: "OntapVolumeType"))
|
|
682
698
|
CreateOntapVolumeConfiguration.add_member(:snapshot_policy, Shapes::ShapeRef.new(shape: SnapshotPolicy, location_name: "SnapshotPolicy"))
|
|
683
699
|
CreateOntapVolumeConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
|
700
|
+
CreateOntapVolumeConfiguration.add_member(:snaplock_configuration, Shapes::ShapeRef.new(shape: CreateSnaplockConfiguration, location_name: "SnaplockConfiguration"))
|
|
684
701
|
CreateOntapVolumeConfiguration.struct_class = Types::CreateOntapVolumeConfiguration
|
|
685
702
|
|
|
686
703
|
CreateOpenZFSOriginSnapshotConfiguration.add_member(:snapshot_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "SnapshotARN"))
|
|
@@ -699,6 +716,14 @@ module Aws::FSx
|
|
|
699
716
|
CreateOpenZFSVolumeConfiguration.add_member(:user_and_group_quotas, Shapes::ShapeRef.new(shape: OpenZFSUserAndGroupQuotas, location_name: "UserAndGroupQuotas"))
|
|
700
717
|
CreateOpenZFSVolumeConfiguration.struct_class = Types::CreateOpenZFSVolumeConfiguration
|
|
701
718
|
|
|
719
|
+
CreateSnaplockConfiguration.add_member(:audit_log_volume, Shapes::ShapeRef.new(shape: Flag, location_name: "AuditLogVolume"))
|
|
720
|
+
CreateSnaplockConfiguration.add_member(:autocommit_period, Shapes::ShapeRef.new(shape: AutocommitPeriod, location_name: "AutocommitPeriod"))
|
|
721
|
+
CreateSnaplockConfiguration.add_member(:privileged_delete, Shapes::ShapeRef.new(shape: PrivilegedDelete, location_name: "PrivilegedDelete"))
|
|
722
|
+
CreateSnaplockConfiguration.add_member(:retention_period, Shapes::ShapeRef.new(shape: SnaplockRetentionPeriod, location_name: "RetentionPeriod"))
|
|
723
|
+
CreateSnaplockConfiguration.add_member(:snaplock_type, Shapes::ShapeRef.new(shape: SnaplockType, required: true, location_name: "SnaplockType"))
|
|
724
|
+
CreateSnaplockConfiguration.add_member(:volume_append_mode_enabled, Shapes::ShapeRef.new(shape: Flag, location_name: "VolumeAppendModeEnabled"))
|
|
725
|
+
CreateSnaplockConfiguration.struct_class = Types::CreateSnaplockConfiguration
|
|
726
|
+
|
|
702
727
|
CreateSnapshotRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
703
728
|
CreateSnapshotRequest.add_member(:name, Shapes::ShapeRef.new(shape: SnapshotName, required: true, location_name: "Name"))
|
|
704
729
|
CreateSnapshotRequest.add_member(:volume_id, Shapes::ShapeRef.new(shape: VolumeId, required: true, location_name: "VolumeId"))
|
|
@@ -916,6 +941,7 @@ module Aws::FSx
|
|
|
916
941
|
|
|
917
942
|
DeleteVolumeOntapConfiguration.add_member(:skip_final_backup, Shapes::ShapeRef.new(shape: Flag, location_name: "SkipFinalBackup"))
|
|
918
943
|
DeleteVolumeOntapConfiguration.add_member(:final_backup_tags, Shapes::ShapeRef.new(shape: Tags, location_name: "FinalBackupTags"))
|
|
944
|
+
DeleteVolumeOntapConfiguration.add_member(:bypass_snaplock_enterprise_retention, Shapes::ShapeRef.new(shape: Flag, location_name: "BypassSnaplockEnterpriseRetention"))
|
|
919
945
|
DeleteVolumeOntapConfiguration.struct_class = Types::DeleteVolumeOntapConfiguration
|
|
920
946
|
|
|
921
947
|
DeleteVolumeOntapResponse.add_member(:final_backup_id, Shapes::ShapeRef.new(shape: BackupId, location_name: "FinalBackupId"))
|
|
@@ -1284,6 +1310,7 @@ module Aws::FSx
|
|
|
1284
1310
|
OntapVolumeConfiguration.add_member(:ontap_volume_type, Shapes::ShapeRef.new(shape: OntapVolumeType, location_name: "OntapVolumeType"))
|
|
1285
1311
|
OntapVolumeConfiguration.add_member(:snapshot_policy, Shapes::ShapeRef.new(shape: SnapshotPolicy, location_name: "SnapshotPolicy"))
|
|
1286
1312
|
OntapVolumeConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
|
1313
|
+
OntapVolumeConfiguration.add_member(:snaplock_configuration, Shapes::ShapeRef.new(shape: SnaplockConfiguration, location_name: "SnaplockConfiguration"))
|
|
1287
1314
|
OntapVolumeConfiguration.struct_class = Types::OntapVolumeConfiguration
|
|
1288
1315
|
|
|
1289
1316
|
OpenZFSClientConfiguration.add_member(:clients, Shapes::ShapeRef.new(shape: OpenZFSClients, required: true, location_name: "Clients"))
|
|
@@ -1375,6 +1402,10 @@ module Aws::FSx
|
|
|
1375
1402
|
RestoreVolumeFromSnapshotResponse.add_member(:administrative_actions, Shapes::ShapeRef.new(shape: AdministrativeActions, location_name: "AdministrativeActions"))
|
|
1376
1403
|
RestoreVolumeFromSnapshotResponse.struct_class = Types::RestoreVolumeFromSnapshotResponse
|
|
1377
1404
|
|
|
1405
|
+
RetentionPeriod.add_member(:type, Shapes::ShapeRef.new(shape: RetentionPeriodType, required: true, location_name: "Type"))
|
|
1406
|
+
RetentionPeriod.add_member(:value, Shapes::ShapeRef.new(shape: RetentionPeriodValue, location_name: "Value"))
|
|
1407
|
+
RetentionPeriod.struct_class = Types::RetentionPeriod
|
|
1408
|
+
|
|
1378
1409
|
RouteTableIds.member = Shapes::ShapeRef.new(shape: RouteTableId)
|
|
1379
1410
|
|
|
1380
1411
|
S3DataRepositoryConfiguration.add_member(:auto_import_policy, Shapes::ShapeRef.new(shape: AutoImportPolicy, location_name: "AutoImportPolicy"))
|
|
@@ -1410,6 +1441,19 @@ module Aws::FSx
|
|
|
1410
1441
|
ServiceLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
|
1411
1442
|
ServiceLimitExceeded.struct_class = Types::ServiceLimitExceeded
|
|
1412
1443
|
|
|
1444
|
+
SnaplockConfiguration.add_member(:audit_log_volume, Shapes::ShapeRef.new(shape: Flag, location_name: "AuditLogVolume"))
|
|
1445
|
+
SnaplockConfiguration.add_member(:autocommit_period, Shapes::ShapeRef.new(shape: AutocommitPeriod, location_name: "AutocommitPeriod"))
|
|
1446
|
+
SnaplockConfiguration.add_member(:privileged_delete, Shapes::ShapeRef.new(shape: PrivilegedDelete, location_name: "PrivilegedDelete"))
|
|
1447
|
+
SnaplockConfiguration.add_member(:retention_period, Shapes::ShapeRef.new(shape: SnaplockRetentionPeriod, location_name: "RetentionPeriod"))
|
|
1448
|
+
SnaplockConfiguration.add_member(:snaplock_type, Shapes::ShapeRef.new(shape: SnaplockType, location_name: "SnaplockType"))
|
|
1449
|
+
SnaplockConfiguration.add_member(:volume_append_mode_enabled, Shapes::ShapeRef.new(shape: Flag, location_name: "VolumeAppendModeEnabled"))
|
|
1450
|
+
SnaplockConfiguration.struct_class = Types::SnaplockConfiguration
|
|
1451
|
+
|
|
1452
|
+
SnaplockRetentionPeriod.add_member(:default_retention, Shapes::ShapeRef.new(shape: RetentionPeriod, required: true, location_name: "DefaultRetention"))
|
|
1453
|
+
SnaplockRetentionPeriod.add_member(:minimum_retention, Shapes::ShapeRef.new(shape: RetentionPeriod, required: true, location_name: "MinimumRetention"))
|
|
1454
|
+
SnaplockRetentionPeriod.add_member(:maximum_retention, Shapes::ShapeRef.new(shape: RetentionPeriod, required: true, location_name: "MaximumRetention"))
|
|
1455
|
+
SnaplockRetentionPeriod.struct_class = Types::SnaplockRetentionPeriod
|
|
1456
|
+
|
|
1413
1457
|
Snapshot.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "ResourceARN"))
|
|
1414
1458
|
Snapshot.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, location_name: "SnapshotId"))
|
|
1415
1459
|
Snapshot.add_member(:name, Shapes::ShapeRef.new(shape: SnapshotName, location_name: "Name"))
|
|
@@ -1592,6 +1636,7 @@ module Aws::FSx
|
|
|
1592
1636
|
UpdateOntapVolumeConfiguration.add_member(:tiering_policy, Shapes::ShapeRef.new(shape: TieringPolicy, location_name: "TieringPolicy"))
|
|
1593
1637
|
UpdateOntapVolumeConfiguration.add_member(:snapshot_policy, Shapes::ShapeRef.new(shape: SnapshotPolicy, location_name: "SnapshotPolicy"))
|
|
1594
1638
|
UpdateOntapVolumeConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
|
1639
|
+
UpdateOntapVolumeConfiguration.add_member(:snaplock_configuration, Shapes::ShapeRef.new(shape: UpdateSnaplockConfiguration, location_name: "SnaplockConfiguration"))
|
|
1595
1640
|
UpdateOntapVolumeConfiguration.struct_class = Types::UpdateOntapVolumeConfiguration
|
|
1596
1641
|
|
|
1597
1642
|
UpdateOpenZFSVolumeConfiguration.add_member(:storage_capacity_reservation_gi_b, Shapes::ShapeRef.new(shape: IntegerNoMaxFromNegativeOne, location_name: "StorageCapacityReservationGiB"))
|
|
@@ -1603,6 +1648,13 @@ module Aws::FSx
|
|
|
1603
1648
|
UpdateOpenZFSVolumeConfiguration.add_member(:read_only, Shapes::ShapeRef.new(shape: ReadOnly, location_name: "ReadOnly"))
|
|
1604
1649
|
UpdateOpenZFSVolumeConfiguration.struct_class = Types::UpdateOpenZFSVolumeConfiguration
|
|
1605
1650
|
|
|
1651
|
+
UpdateSnaplockConfiguration.add_member(:audit_log_volume, Shapes::ShapeRef.new(shape: Flag, location_name: "AuditLogVolume"))
|
|
1652
|
+
UpdateSnaplockConfiguration.add_member(:autocommit_period, Shapes::ShapeRef.new(shape: AutocommitPeriod, location_name: "AutocommitPeriod"))
|
|
1653
|
+
UpdateSnaplockConfiguration.add_member(:privileged_delete, Shapes::ShapeRef.new(shape: PrivilegedDelete, location_name: "PrivilegedDelete"))
|
|
1654
|
+
UpdateSnaplockConfiguration.add_member(:retention_period, Shapes::ShapeRef.new(shape: SnaplockRetentionPeriod, location_name: "RetentionPeriod"))
|
|
1655
|
+
UpdateSnaplockConfiguration.add_member(:volume_append_mode_enabled, Shapes::ShapeRef.new(shape: Flag, location_name: "VolumeAppendModeEnabled"))
|
|
1656
|
+
UpdateSnaplockConfiguration.struct_class = Types::UpdateSnaplockConfiguration
|
|
1657
|
+
|
|
1606
1658
|
UpdateSnapshotRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
1607
1659
|
UpdateSnapshotRequest.add_member(:name, Shapes::ShapeRef.new(shape: SnapshotName, required: true, location_name: "Name"))
|
|
1608
1660
|
UpdateSnapshotRequest.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: SnapshotId, required: true, location_name: "SnapshotId"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
|
@@ -407,6 +407,47 @@ module Aws::FSx
|
|
|
407
407
|
include Aws::Structure
|
|
408
408
|
end
|
|
409
409
|
|
|
410
|
+
# Sets the autocommit period of files in an FSx for ONTAP SnapLock
|
|
411
|
+
# volume, which determines how long the files must remain unmodified
|
|
412
|
+
# before they're automatically transitioned to the write once, read
|
|
413
|
+
# many (WORM) state.
|
|
414
|
+
#
|
|
415
|
+
# For more information, see [Autocommit][1].
|
|
416
|
+
#
|
|
417
|
+
#
|
|
418
|
+
#
|
|
419
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/worm-state.html#worm-state-autocommit
|
|
420
|
+
#
|
|
421
|
+
# @!attribute [rw] type
|
|
422
|
+
# Defines the type of time for the autocommit period of a file in an
|
|
423
|
+
# FSx for ONTAP SnapLock volume. Setting this value to `NONE` disables
|
|
424
|
+
# autocommit. The default value is `NONE`.
|
|
425
|
+
# @return [String]
|
|
426
|
+
#
|
|
427
|
+
# @!attribute [rw] value
|
|
428
|
+
# Defines the amount of time for the autocommit period of a file in an
|
|
429
|
+
# FSx for ONTAP SnapLock volume. The following ranges are valid:
|
|
430
|
+
#
|
|
431
|
+
# * `Minutes`: 5 - 65,535
|
|
432
|
+
#
|
|
433
|
+
# * `Hours`: 1 - 65,535
|
|
434
|
+
#
|
|
435
|
+
# * `Days`: 1 - 3,650
|
|
436
|
+
#
|
|
437
|
+
# * `Months`: 1 - 120
|
|
438
|
+
#
|
|
439
|
+
# * `Years`: 1 - 10
|
|
440
|
+
# @return [Integer]
|
|
441
|
+
#
|
|
442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/AutocommitPeriod AWS API Documentation
|
|
443
|
+
#
|
|
444
|
+
class AutocommitPeriod < Struct.new(
|
|
445
|
+
:type,
|
|
446
|
+
:value)
|
|
447
|
+
SENSITIVE = []
|
|
448
|
+
include Aws::Structure
|
|
449
|
+
end
|
|
450
|
+
|
|
410
451
|
# A backup of an Amazon FSx for Windows File Server, Amazon FSx for
|
|
411
452
|
# Lustre file system, Amazon FSx for NetApp ONTAP volume, or Amazon FSx
|
|
412
453
|
# for OpenZFS file system.
|
|
@@ -2306,8 +2347,7 @@ module Aws::FSx
|
|
|
2306
2347
|
#
|
|
2307
2348
|
# @!attribute [rw] size_in_megabytes
|
|
2308
2349
|
# Specifies the size of the volume, in megabytes (MB), that you are
|
|
2309
|
-
# creating.
|
|
2310
|
-
# specify the size of the volume.
|
|
2350
|
+
# creating.
|
|
2311
2351
|
# @return [Integer]
|
|
2312
2352
|
#
|
|
2313
2353
|
# @!attribute [rw] storage_efficiency_enabled
|
|
@@ -2409,6 +2449,10 @@ module Aws::FSx
|
|
|
2409
2449
|
# volume, regardless of this value.
|
|
2410
2450
|
# @return [Boolean]
|
|
2411
2451
|
#
|
|
2452
|
+
# @!attribute [rw] snaplock_configuration
|
|
2453
|
+
# Specifies the SnapLock configuration for an FSx for ONTAP volume.
|
|
2454
|
+
# @return [Types::CreateSnaplockConfiguration]
|
|
2455
|
+
#
|
|
2412
2456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateOntapVolumeConfiguration AWS API Documentation
|
|
2413
2457
|
#
|
|
2414
2458
|
class CreateOntapVolumeConfiguration < Struct.new(
|
|
@@ -2420,7 +2464,8 @@ module Aws::FSx
|
|
|
2420
2464
|
:tiering_policy,
|
|
2421
2465
|
:ontap_volume_type,
|
|
2422
2466
|
:snapshot_policy,
|
|
2423
|
-
:copy_tags_to_backups
|
|
2467
|
+
:copy_tags_to_backups,
|
|
2468
|
+
:snaplock_configuration)
|
|
2424
2469
|
SENSITIVE = []
|
|
2425
2470
|
include Aws::Structure
|
|
2426
2471
|
end
|
|
@@ -2591,6 +2636,97 @@ module Aws::FSx
|
|
|
2591
2636
|
include Aws::Structure
|
|
2592
2637
|
end
|
|
2593
2638
|
|
|
2639
|
+
# Defines the SnapLock configuration when creating an FSx for ONTAP
|
|
2640
|
+
# SnapLock volume.
|
|
2641
|
+
#
|
|
2642
|
+
# @!attribute [rw] audit_log_volume
|
|
2643
|
+
# Enables or disables the audit log volume for an FSx for ONTAP
|
|
2644
|
+
# SnapLock volume. The default value is `false`. If you set
|
|
2645
|
+
# `AuditLogVolume` to `true`, the SnapLock volume is created as an
|
|
2646
|
+
# audit log volume. The minimum retention period for an audit log
|
|
2647
|
+
# volume is six months.
|
|
2648
|
+
#
|
|
2649
|
+
# For more information, see [ SnapLock audit log volumes][1].
|
|
2650
|
+
#
|
|
2651
|
+
#
|
|
2652
|
+
#
|
|
2653
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/how-snaplock-works.html#snaplock-audit-log-volume
|
|
2654
|
+
# @return [Boolean]
|
|
2655
|
+
#
|
|
2656
|
+
# @!attribute [rw] autocommit_period
|
|
2657
|
+
# The configuration object for setting the autocommit period of files
|
|
2658
|
+
# in an FSx for ONTAP SnapLock volume.
|
|
2659
|
+
# @return [Types::AutocommitPeriod]
|
|
2660
|
+
#
|
|
2661
|
+
# @!attribute [rw] privileged_delete
|
|
2662
|
+
# Enables, disables, or permanently disables privileged delete on an
|
|
2663
|
+
# FSx for ONTAP SnapLock Enterprise volume. Enabling privileged delete
|
|
2664
|
+
# allows SnapLock administrators to delete WORM files even if they
|
|
2665
|
+
# have active retention periods. `PERMANENTLY_DISABLED` is a terminal
|
|
2666
|
+
# state. If privileged delete is permanently disabled on a SnapLock
|
|
2667
|
+
# volume, you can't re-enable it. The default value is `DISABLED`.
|
|
2668
|
+
#
|
|
2669
|
+
# For more information, see [Privileged delete][1].
|
|
2670
|
+
#
|
|
2671
|
+
#
|
|
2672
|
+
#
|
|
2673
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/how-snaplock-works.html#privileged-delete
|
|
2674
|
+
# @return [String]
|
|
2675
|
+
#
|
|
2676
|
+
# @!attribute [rw] retention_period
|
|
2677
|
+
# Specifies the retention period of an FSx for ONTAP SnapLock volume.
|
|
2678
|
+
# @return [Types::SnaplockRetentionPeriod]
|
|
2679
|
+
#
|
|
2680
|
+
# @!attribute [rw] snaplock_type
|
|
2681
|
+
# Specifies the retention mode of an FSx for ONTAP SnapLock volume.
|
|
2682
|
+
# After it is set, it can't be changed. You can choose one of the
|
|
2683
|
+
# following retention modes:
|
|
2684
|
+
#
|
|
2685
|
+
# * `COMPLIANCE`: Files transitioned to write once, read many (WORM)
|
|
2686
|
+
# on a Compliance volume can't be deleted until their retention
|
|
2687
|
+
# periods expire. This retention mode is used to address government
|
|
2688
|
+
# or industry-specific mandates or to protect against ransomware
|
|
2689
|
+
# attacks. For more information, see [SnapLock Compliance][1].
|
|
2690
|
+
#
|
|
2691
|
+
# * `ENTERPRISE`: Files transitioned to WORM on an Enterprise volume
|
|
2692
|
+
# can be deleted by authorized users before their retention periods
|
|
2693
|
+
# expire using privileged delete. This retention mode is used to
|
|
2694
|
+
# advance an organization's data integrity and internal compliance
|
|
2695
|
+
# or to test retention settings before using SnapLock Compliance.
|
|
2696
|
+
# For more information, see [SnapLock Enterprise][2].
|
|
2697
|
+
#
|
|
2698
|
+
#
|
|
2699
|
+
#
|
|
2700
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-compliance.html
|
|
2701
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/how-snaplock-works.htmlFile
|
|
2702
|
+
# @return [String]
|
|
2703
|
+
#
|
|
2704
|
+
# @!attribute [rw] volume_append_mode_enabled
|
|
2705
|
+
# Enables or disables volume-append mode on an FSx for ONTAP SnapLock
|
|
2706
|
+
# volume. Volume-append mode allows you to create WORM-appendable
|
|
2707
|
+
# files and write data to them incrementally. The default value is
|
|
2708
|
+
# `false`.
|
|
2709
|
+
#
|
|
2710
|
+
# For more information, see [Volume-append mode][1].
|
|
2711
|
+
#
|
|
2712
|
+
#
|
|
2713
|
+
#
|
|
2714
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/worm-state.html#worm-state-append
|
|
2715
|
+
# @return [Boolean]
|
|
2716
|
+
#
|
|
2717
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateSnaplockConfiguration AWS API Documentation
|
|
2718
|
+
#
|
|
2719
|
+
class CreateSnaplockConfiguration < Struct.new(
|
|
2720
|
+
:audit_log_volume,
|
|
2721
|
+
:autocommit_period,
|
|
2722
|
+
:privileged_delete,
|
|
2723
|
+
:retention_period,
|
|
2724
|
+
:snaplock_type,
|
|
2725
|
+
:volume_append_mode_enabled)
|
|
2726
|
+
SENSITIVE = []
|
|
2727
|
+
include Aws::Structure
|
|
2728
|
+
end
|
|
2729
|
+
|
|
2594
2730
|
# @!attribute [rw] client_request_token
|
|
2595
2731
|
# (Optional) An idempotency token for resource creation, in a string
|
|
2596
2732
|
# of up to 63 ASCII characters. This token is automatically filled on
|
|
@@ -3946,8 +4082,9 @@ module Aws::FSx
|
|
|
3946
4082
|
include Aws::Structure
|
|
3947
4083
|
end
|
|
3948
4084
|
|
|
3949
|
-
# Use to specify skipping a final backup,
|
|
3950
|
-
#
|
|
4085
|
+
# Use to specify skipping a final backup, adding tags to a final backup,
|
|
4086
|
+
# or bypassing the retention period of an FSx for ONTAP SnapLock
|
|
4087
|
+
# Enterprise volume when deleting an FSx for ONTAP volume.
|
|
3951
4088
|
#
|
|
3952
4089
|
# @!attribute [rw] skip_final_backup
|
|
3953
4090
|
# Set to true if you want to skip taking a final backup of the volume
|
|
@@ -3958,11 +4095,27 @@ module Aws::FSx
|
|
|
3958
4095
|
# A list of `Tag` values, with a maximum of 50 elements.
|
|
3959
4096
|
# @return [Array<Types::Tag>]
|
|
3960
4097
|
#
|
|
4098
|
+
# @!attribute [rw] bypass_snaplock_enterprise_retention
|
|
4099
|
+
# Setting this to `true` allows a SnapLock administrator to delete an
|
|
4100
|
+
# FSx for ONTAP SnapLock Enterprise volume with unexpired write once,
|
|
4101
|
+
# read many (WORM) files. The IAM permission
|
|
4102
|
+
# `fsx:BypassSnaplockEnterpriseRetention` is also required to delete
|
|
4103
|
+
# SnapLock Enterprise volumes with unexpired WORM files. The default
|
|
4104
|
+
# value is `false`.
|
|
4105
|
+
#
|
|
4106
|
+
# For more information, see [ Deleting a SnapLock volume ][1].
|
|
4107
|
+
#
|
|
4108
|
+
#
|
|
4109
|
+
#
|
|
4110
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/how-snaplock-works.html#snaplock-delete-volume
|
|
4111
|
+
# @return [Boolean]
|
|
4112
|
+
#
|
|
3961
4113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteVolumeOntapConfiguration AWS API Documentation
|
|
3962
4114
|
#
|
|
3963
4115
|
class DeleteVolumeOntapConfiguration < Struct.new(
|
|
3964
4116
|
:skip_final_backup,
|
|
3965
|
-
:final_backup_tags
|
|
4117
|
+
:final_backup_tags,
|
|
4118
|
+
:bypass_snaplock_enterprise_retention)
|
|
3966
4119
|
SENSITIVE = []
|
|
3967
4120
|
include Aws::Structure
|
|
3968
4121
|
end
|
|
@@ -6264,6 +6417,11 @@ module Aws::FSx
|
|
|
6264
6417
|
# volume, regardless of this value.
|
|
6265
6418
|
# @return [Boolean]
|
|
6266
6419
|
#
|
|
6420
|
+
# @!attribute [rw] snaplock_configuration
|
|
6421
|
+
# The SnapLock configuration object for an FSx for ONTAP SnapLock
|
|
6422
|
+
# volume.
|
|
6423
|
+
# @return [Types::SnaplockConfiguration]
|
|
6424
|
+
#
|
|
6267
6425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OntapVolumeConfiguration AWS API Documentation
|
|
6268
6426
|
#
|
|
6269
6427
|
class OntapVolumeConfiguration < Struct.new(
|
|
@@ -6278,7 +6436,8 @@ module Aws::FSx
|
|
|
6278
6436
|
:uuid,
|
|
6279
6437
|
:ontap_volume_type,
|
|
6280
6438
|
:snapshot_policy,
|
|
6281
|
-
:copy_tags_to_backups
|
|
6439
|
+
:copy_tags_to_backups,
|
|
6440
|
+
:snaplock_configuration)
|
|
6282
6441
|
SENSITIVE = []
|
|
6283
6442
|
include Aws::Structure
|
|
6284
6443
|
end
|
|
@@ -6823,6 +6982,53 @@ module Aws::FSx
|
|
|
6823
6982
|
include Aws::Structure
|
|
6824
6983
|
end
|
|
6825
6984
|
|
|
6985
|
+
# Specifies the retention period of an FSx for ONTAP SnapLock volume.
|
|
6986
|
+
# After it is set, it can't be changed. Files can't be deleted or
|
|
6987
|
+
# modified during the retention period.
|
|
6988
|
+
#
|
|
6989
|
+
# For more information, see [Working with the retention period in
|
|
6990
|
+
# SnapLock][1].
|
|
6991
|
+
#
|
|
6992
|
+
#
|
|
6993
|
+
#
|
|
6994
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-retention.html
|
|
6995
|
+
#
|
|
6996
|
+
# @!attribute [rw] type
|
|
6997
|
+
# Defines the type of time for the retention period of an FSx for
|
|
6998
|
+
# ONTAP SnapLock volume. Set it to one of the valid types. If you set
|
|
6999
|
+
# it to `INFINITE`, the files are retained forever. If you set it to
|
|
7000
|
+
# `UNSPECIFIED`, the files are retained until you set an explicit
|
|
7001
|
+
# retention period.
|
|
7002
|
+
# @return [String]
|
|
7003
|
+
#
|
|
7004
|
+
# @!attribute [rw] value
|
|
7005
|
+
# Defines the amount of time for the retention period of an FSx for
|
|
7006
|
+
# ONTAP SnapLock volume. You can't set a value for `INFINITE` or
|
|
7007
|
+
# `UNSPECIFIED`. For all other options, the following ranges are
|
|
7008
|
+
# valid:
|
|
7009
|
+
#
|
|
7010
|
+
# * `Seconds`: 0 - 65,535
|
|
7011
|
+
#
|
|
7012
|
+
# * `Minutes`: 0 - 65,535
|
|
7013
|
+
#
|
|
7014
|
+
# * `Hours`: 0 - 24
|
|
7015
|
+
#
|
|
7016
|
+
# * `Days`: 0 - 365
|
|
7017
|
+
#
|
|
7018
|
+
# * `Months`: 0 - 12
|
|
7019
|
+
#
|
|
7020
|
+
# * `Years`: 0 - 100
|
|
7021
|
+
# @return [Integer]
|
|
7022
|
+
#
|
|
7023
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/RetentionPeriod AWS API Documentation
|
|
7024
|
+
#
|
|
7025
|
+
class RetentionPeriod < Struct.new(
|
|
7026
|
+
:type,
|
|
7027
|
+
:value)
|
|
7028
|
+
SENSITIVE = []
|
|
7029
|
+
include Aws::Structure
|
|
7030
|
+
end
|
|
7031
|
+
|
|
6826
7032
|
# The configuration for an Amazon S3 data repository linked to an Amazon
|
|
6827
7033
|
# FSx for Lustre file system with a data repository association. The
|
|
6828
7034
|
# configuration consists of an `AutoImportPolicy` that defines which
|
|
@@ -7050,6 +7256,135 @@ module Aws::FSx
|
|
|
7050
7256
|
include Aws::Structure
|
|
7051
7257
|
end
|
|
7052
7258
|
|
|
7259
|
+
# Specifies the SnapLock configuration for an FSx for ONTAP SnapLock
|
|
7260
|
+
# volume.
|
|
7261
|
+
#
|
|
7262
|
+
# @!attribute [rw] audit_log_volume
|
|
7263
|
+
# Enables or disables the audit log volume for an FSx for ONTAP
|
|
7264
|
+
# SnapLock volume. The default value is `false`. If you set
|
|
7265
|
+
# `AuditLogVolume` to `true`, the SnapLock volume is created as an
|
|
7266
|
+
# audit log volume. The minimum retention period for an audit log
|
|
7267
|
+
# volume is six months.
|
|
7268
|
+
#
|
|
7269
|
+
# For more information, see [ SnapLock audit log volumes][1].
|
|
7270
|
+
#
|
|
7271
|
+
#
|
|
7272
|
+
#
|
|
7273
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/how-snaplock-works.html#snaplock-audit-log-volume
|
|
7274
|
+
# @return [Boolean]
|
|
7275
|
+
#
|
|
7276
|
+
# @!attribute [rw] autocommit_period
|
|
7277
|
+
# The configuration object for setting the autocommit period of files
|
|
7278
|
+
# in an FSx for ONTAP SnapLock volume.
|
|
7279
|
+
# @return [Types::AutocommitPeriod]
|
|
7280
|
+
#
|
|
7281
|
+
# @!attribute [rw] privileged_delete
|
|
7282
|
+
# Enables, disables, or permanently disables privileged delete on an
|
|
7283
|
+
# FSx for ONTAP SnapLock Enterprise volume. Enabling privileged delete
|
|
7284
|
+
# allows SnapLock administrators to delete write once, read many
|
|
7285
|
+
# (WORM) files even if they have active retention periods.
|
|
7286
|
+
# `PERMANENTLY_DISABLED` is a terminal state. If privileged delete is
|
|
7287
|
+
# permanently disabled on a SnapLock volume, you can't re-enable it.
|
|
7288
|
+
# The default value is `DISABLED`.
|
|
7289
|
+
#
|
|
7290
|
+
# For more information, see [Privileged delete][1].
|
|
7291
|
+
#
|
|
7292
|
+
#
|
|
7293
|
+
#
|
|
7294
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/how-snaplock-works.html#privileged-delete
|
|
7295
|
+
# @return [String]
|
|
7296
|
+
#
|
|
7297
|
+
# @!attribute [rw] retention_period
|
|
7298
|
+
# Specifies the retention period of an FSx for ONTAP SnapLock volume.
|
|
7299
|
+
# @return [Types::SnaplockRetentionPeriod]
|
|
7300
|
+
#
|
|
7301
|
+
# @!attribute [rw] snaplock_type
|
|
7302
|
+
# Specifies the retention mode of an FSx for ONTAP SnapLock volume.
|
|
7303
|
+
# After it is set, it can't be changed. You can choose one of the
|
|
7304
|
+
# following retention modes:
|
|
7305
|
+
#
|
|
7306
|
+
# * `COMPLIANCE`: Files transitioned to write once, read many (WORM)
|
|
7307
|
+
# on a Compliance volume can't be deleted until their retention
|
|
7308
|
+
# periods expire. This retention mode is used to address government
|
|
7309
|
+
# or industry-specific mandates or to protect against ransomware
|
|
7310
|
+
# attacks. For more information, see [SnapLock Compliance][1].
|
|
7311
|
+
#
|
|
7312
|
+
# * `ENTERPRISE`: Files transitioned to WORM on an Enterprise volume
|
|
7313
|
+
# can be deleted by authorized users before their retention periods
|
|
7314
|
+
# expire using privileged delete. This retention mode is used to
|
|
7315
|
+
# advance an organization's data integrity and internal compliance
|
|
7316
|
+
# or to test retention settings before using SnapLock Compliance.
|
|
7317
|
+
# For more information, see [SnapLock Enterprise][2].
|
|
7318
|
+
#
|
|
7319
|
+
#
|
|
7320
|
+
#
|
|
7321
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-compliance.html
|
|
7322
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/how-snaplock-works.htmlFile
|
|
7323
|
+
# @return [String]
|
|
7324
|
+
#
|
|
7325
|
+
# @!attribute [rw] volume_append_mode_enabled
|
|
7326
|
+
# Enables or disables volume-append mode on an FSx for ONTAP SnapLock
|
|
7327
|
+
# volume. Volume-append mode allows you to create WORM-appendable
|
|
7328
|
+
# files and write data to them incrementally. The default value is
|
|
7329
|
+
# `false`.
|
|
7330
|
+
#
|
|
7331
|
+
# For more information, see [Volume-append mode][1].
|
|
7332
|
+
#
|
|
7333
|
+
#
|
|
7334
|
+
#
|
|
7335
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/worm-state.html#worm-state-append
|
|
7336
|
+
# @return [Boolean]
|
|
7337
|
+
#
|
|
7338
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/SnaplockConfiguration AWS API Documentation
|
|
7339
|
+
#
|
|
7340
|
+
class SnaplockConfiguration < Struct.new(
|
|
7341
|
+
:audit_log_volume,
|
|
7342
|
+
:autocommit_period,
|
|
7343
|
+
:privileged_delete,
|
|
7344
|
+
:retention_period,
|
|
7345
|
+
:snaplock_type,
|
|
7346
|
+
:volume_append_mode_enabled)
|
|
7347
|
+
SENSITIVE = []
|
|
7348
|
+
include Aws::Structure
|
|
7349
|
+
end
|
|
7350
|
+
|
|
7351
|
+
# The configuration to set the retention period of an FSx for ONTAP
|
|
7352
|
+
# SnapLock volume. The retention period includes default, maximum, and
|
|
7353
|
+
# minimum settings. For more information, see [Working with the
|
|
7354
|
+
# retention period in SnapLock][1].
|
|
7355
|
+
#
|
|
7356
|
+
#
|
|
7357
|
+
#
|
|
7358
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-retention.html
|
|
7359
|
+
#
|
|
7360
|
+
# @!attribute [rw] default_retention
|
|
7361
|
+
# The retention period assigned to a write once, read many (WORM) file
|
|
7362
|
+
# by default if an explicit retention period is not set for an FSx for
|
|
7363
|
+
# ONTAP SnapLock volume. The default retention period must be greater
|
|
7364
|
+
# than or equal to the minimum retention period and less than or equal
|
|
7365
|
+
# to the maximum retention period.
|
|
7366
|
+
# @return [Types::RetentionPeriod]
|
|
7367
|
+
#
|
|
7368
|
+
# @!attribute [rw] minimum_retention
|
|
7369
|
+
# The shortest retention period that can be assigned to a WORM file on
|
|
7370
|
+
# an FSx for ONTAP SnapLock volume.
|
|
7371
|
+
# @return [Types::RetentionPeriod]
|
|
7372
|
+
#
|
|
7373
|
+
# @!attribute [rw] maximum_retention
|
|
7374
|
+
# The longest retention period that can be assigned to a WORM file on
|
|
7375
|
+
# an FSx for ONTAP SnapLock volume.
|
|
7376
|
+
# @return [Types::RetentionPeriod]
|
|
7377
|
+
#
|
|
7378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/SnaplockRetentionPeriod AWS API Documentation
|
|
7379
|
+
#
|
|
7380
|
+
class SnaplockRetentionPeriod < Struct.new(
|
|
7381
|
+
:default_retention,
|
|
7382
|
+
:minimum_retention,
|
|
7383
|
+
:maximum_retention)
|
|
7384
|
+
SENSITIVE = []
|
|
7385
|
+
include Aws::Structure
|
|
7386
|
+
end
|
|
7387
|
+
|
|
7053
7388
|
# A snapshot of an Amazon FSx for OpenZFS volume.
|
|
7054
7389
|
#
|
|
7055
7390
|
# @!attribute [rw] resource_arn
|
|
@@ -8155,7 +8490,7 @@ module Aws::FSx
|
|
|
8155
8490
|
# @return [String]
|
|
8156
8491
|
#
|
|
8157
8492
|
# @!attribute [rw] security_style
|
|
8158
|
-
# The security style for the volume, which can be `UNIX
|
|
8493
|
+
# The security style for the volume, which can be `UNIX`, `NTFS`, or
|
|
8159
8494
|
# `MIXED`.
|
|
8160
8495
|
# @return [String]
|
|
8161
8496
|
#
|
|
@@ -8212,6 +8547,11 @@ module Aws::FSx
|
|
|
8212
8547
|
# volume, regardless of this value.
|
|
8213
8548
|
# @return [Boolean]
|
|
8214
8549
|
#
|
|
8550
|
+
# @!attribute [rw] snaplock_configuration
|
|
8551
|
+
# The configuration object for updating the SnapLock configuration of
|
|
8552
|
+
# an FSx for ONTAP SnapLock volume.
|
|
8553
|
+
# @return [Types::UpdateSnaplockConfiguration]
|
|
8554
|
+
#
|
|
8215
8555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateOntapVolumeConfiguration AWS API Documentation
|
|
8216
8556
|
#
|
|
8217
8557
|
class UpdateOntapVolumeConfiguration < Struct.new(
|
|
@@ -8221,7 +8561,8 @@ module Aws::FSx
|
|
|
8221
8561
|
:storage_efficiency_enabled,
|
|
8222
8562
|
:tiering_policy,
|
|
8223
8563
|
:snapshot_policy,
|
|
8224
|
-
:copy_tags_to_backups
|
|
8564
|
+
:copy_tags_to_backups,
|
|
8565
|
+
:snaplock_configuration)
|
|
8225
8566
|
SENSITIVE = []
|
|
8226
8567
|
include Aws::Structure
|
|
8227
8568
|
end
|
|
@@ -8303,6 +8644,73 @@ module Aws::FSx
|
|
|
8303
8644
|
include Aws::Structure
|
|
8304
8645
|
end
|
|
8305
8646
|
|
|
8647
|
+
# Updates the SnapLock configuration for an existing FSx for ONTAP
|
|
8648
|
+
# volume.
|
|
8649
|
+
#
|
|
8650
|
+
# @!attribute [rw] audit_log_volume
|
|
8651
|
+
# Enables or disables the audit log volume for an FSx for ONTAP
|
|
8652
|
+
# SnapLock volume. The default value is `false`. If you set
|
|
8653
|
+
# `AuditLogVolume` to `true`, the SnapLock volume is created as an
|
|
8654
|
+
# audit log volume. The minimum retention period for an audit log
|
|
8655
|
+
# volume is six months.
|
|
8656
|
+
#
|
|
8657
|
+
# For more information, see [ SnapLock audit log volumes][1].
|
|
8658
|
+
#
|
|
8659
|
+
#
|
|
8660
|
+
#
|
|
8661
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/how-snaplock-works.html#snaplock-audit-log-volume
|
|
8662
|
+
# @return [Boolean]
|
|
8663
|
+
#
|
|
8664
|
+
# @!attribute [rw] autocommit_period
|
|
8665
|
+
# The configuration object for setting the autocommit period of files
|
|
8666
|
+
# in an FSx for ONTAP SnapLock volume.
|
|
8667
|
+
# @return [Types::AutocommitPeriod]
|
|
8668
|
+
#
|
|
8669
|
+
# @!attribute [rw] privileged_delete
|
|
8670
|
+
# Enables, disables, or permanently disables privileged delete on an
|
|
8671
|
+
# FSx for ONTAP SnapLock Enterprise volume. Enabling privileged delete
|
|
8672
|
+
# allows SnapLock administrators to delete write once, read many
|
|
8673
|
+
# (WORM) files even if they have active retention periods.
|
|
8674
|
+
# `PERMANENTLY_DISABLED` is a terminal state. If privileged delete is
|
|
8675
|
+
# permanently disabled on a SnapLock volume, you can't re-enable it.
|
|
8676
|
+
# The default value is `DISABLED`.
|
|
8677
|
+
#
|
|
8678
|
+
# For more information, see [Privileged delete][1].
|
|
8679
|
+
#
|
|
8680
|
+
#
|
|
8681
|
+
#
|
|
8682
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/how-snaplock-works.html#privileged-delete
|
|
8683
|
+
# @return [String]
|
|
8684
|
+
#
|
|
8685
|
+
# @!attribute [rw] retention_period
|
|
8686
|
+
# Specifies the retention period of an FSx for ONTAP SnapLock volume.
|
|
8687
|
+
# @return [Types::SnaplockRetentionPeriod]
|
|
8688
|
+
#
|
|
8689
|
+
# @!attribute [rw] volume_append_mode_enabled
|
|
8690
|
+
# Enables or disables volume-append mode on an FSx for ONTAP SnapLock
|
|
8691
|
+
# volume. Volume-append mode allows you to create WORM-appendable
|
|
8692
|
+
# files and write data to them incrementally. The default value is
|
|
8693
|
+
# `false`.
|
|
8694
|
+
#
|
|
8695
|
+
# For more information, see [Volume-append mode][1].
|
|
8696
|
+
#
|
|
8697
|
+
#
|
|
8698
|
+
#
|
|
8699
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/worm-state.html#worm-state-append
|
|
8700
|
+
# @return [Boolean]
|
|
8701
|
+
#
|
|
8702
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateSnaplockConfiguration AWS API Documentation
|
|
8703
|
+
#
|
|
8704
|
+
class UpdateSnaplockConfiguration < Struct.new(
|
|
8705
|
+
:audit_log_volume,
|
|
8706
|
+
:autocommit_period,
|
|
8707
|
+
:privileged_delete,
|
|
8708
|
+
:retention_period,
|
|
8709
|
+
:volume_append_mode_enabled)
|
|
8710
|
+
SENSITIVE = []
|
|
8711
|
+
include Aws::Structure
|
|
8712
|
+
end
|
|
8713
|
+
|
|
8306
8714
|
# @!attribute [rw] client_request_token
|
|
8307
8715
|
# (Optional) An idempotency token for resource creation, in a string
|
|
8308
8716
|
# of up to 63 ASCII characters. This token is automatically filled on
|
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.73.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: 2023-07-
|
|
11
|
+
date: 2023-07-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|