aws-sdk-fsx 1.77.0 → 1.79.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +241 -22
- data/lib/aws-sdk-fsx/client_api.rb +21 -0
- data/lib/aws-sdk-fsx/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-fsx/endpoints.rb +14 -0
- data/lib/aws-sdk-fsx/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-fsx/types.rb +63 -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: 3f14240445372587f1c1660a6a26bfeb4d0b4a358411f0a53cfe3932633ec986
|
|
4
|
+
data.tar.gz: 1f2cdcaa2ca549a53fa21f1835d6d0ebb3e18d29aae1de51602b54c7acad3fd5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f4dd9d475c27a948035f192ffd66df2471459c35d47ff1625c1b70a4f839e51cb4abe77e8aa4d1c7ed5656f5e0434dd38469e18f951e09d08d09466725737eab
|
|
7
|
+
data.tar.gz: dabb54c9f4bfd6a31a6a65f83dcd9f8cf6dfda0f63ca729892776f5977ac75f9dd79fa6570840fde8fe88ec91b843e469df6995bfc649a497583e2aac70f5fb3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.79.0 (2023-11-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Enables customers to update their PerUnitStorageThroughput on their Lustre file systems.
|
|
8
|
+
|
|
9
|
+
1.78.0 (2023-10-06)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - After performing steps to repair the Active Directory configuration of a file system, use this action to initiate the process of attempting to recover to the file system.
|
|
13
|
+
|
|
4
14
|
1.77.0 (2023-09-27)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.79.0
|
data/lib/aws-sdk-fsx/client.rb
CHANGED
|
@@ -758,7 +758,7 @@ module Aws::FSx
|
|
|
758
758
|
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
759
759
|
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
760
760
|
# resp.backup.file_system.administrative_actions #=> Array
|
|
761
|
-
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
761
|
+
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
762
762
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
763
763
|
# resp.backup.file_system.administrative_actions[0].request_time #=> Time
|
|
764
764
|
# resp.backup.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -912,7 +912,7 @@ module Aws::FSx
|
|
|
912
912
|
# resp.backup.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
|
913
913
|
# resp.backup.volume.lifecycle_transition_reason.message #=> String
|
|
914
914
|
# resp.backup.volume.administrative_actions #=> Array
|
|
915
|
-
# resp.backup.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
915
|
+
# resp.backup.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
916
916
|
# resp.backup.volume.administrative_actions[0].progress_percent #=> Integer
|
|
917
917
|
# resp.backup.volume.administrative_actions[0].request_time #=> Time
|
|
918
918
|
# resp.backup.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -1284,7 +1284,7 @@ module Aws::FSx
|
|
|
1284
1284
|
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
1285
1285
|
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
1286
1286
|
# resp.backup.file_system.administrative_actions #=> Array
|
|
1287
|
-
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
1287
|
+
# resp.backup.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
1288
1288
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
1289
1289
|
# resp.backup.file_system.administrative_actions[0].request_time #=> Time
|
|
1290
1290
|
# resp.backup.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -1438,7 +1438,7 @@ module Aws::FSx
|
|
|
1438
1438
|
# resp.backup.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
|
1439
1439
|
# resp.backup.volume.lifecycle_transition_reason.message #=> String
|
|
1440
1440
|
# resp.backup.volume.administrative_actions #=> Array
|
|
1441
|
-
# resp.backup.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
1441
|
+
# resp.backup.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
1442
1442
|
# resp.backup.volume.administrative_actions[0].progress_percent #=> Integer
|
|
1443
1443
|
# resp.backup.volume.administrative_actions[0].request_time #=> Time
|
|
1444
1444
|
# resp.backup.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -2295,7 +2295,7 @@ module Aws::FSx
|
|
|
2295
2295
|
#
|
|
2296
2296
|
# * `ExportPath`
|
|
2297
2297
|
#
|
|
2298
|
-
# * `
|
|
2298
|
+
# * `ImportedFileChunkSize`
|
|
2299
2299
|
#
|
|
2300
2300
|
# * `ImportPath`
|
|
2301
2301
|
#
|
|
@@ -2596,7 +2596,7 @@ module Aws::FSx
|
|
|
2596
2596
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
2597
2597
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
2598
2598
|
# resp.file_system.administrative_actions #=> Array
|
|
2599
|
-
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
2599
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
2600
2600
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
2601
2601
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
2602
2602
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -2808,7 +2808,7 @@ module Aws::FSx
|
|
|
2808
2808
|
#
|
|
2809
2809
|
# * `ExportPath`
|
|
2810
2810
|
#
|
|
2811
|
-
# * `
|
|
2811
|
+
# * `ImportedFileChunkSize`
|
|
2812
2812
|
#
|
|
2813
2813
|
# * `ImportPath`
|
|
2814
2814
|
#
|
|
@@ -3121,7 +3121,7 @@ module Aws::FSx
|
|
|
3121
3121
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
3122
3122
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
3123
3123
|
# resp.file_system.administrative_actions #=> Array
|
|
3124
|
-
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
3124
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
3125
3125
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
3126
3126
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
3127
3127
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -3322,7 +3322,7 @@ module Aws::FSx
|
|
|
3322
3322
|
# resp.snapshot.tags[0].key #=> String
|
|
3323
3323
|
# resp.snapshot.tags[0].value #=> String
|
|
3324
3324
|
# resp.snapshot.administrative_actions #=> Array
|
|
3325
|
-
# resp.snapshot.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
3325
|
+
# resp.snapshot.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
3326
3326
|
# resp.snapshot.administrative_actions[0].progress_percent #=> Integer
|
|
3327
3327
|
# resp.snapshot.administrative_actions[0].request_time #=> Time
|
|
3328
3328
|
# resp.snapshot.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -3771,7 +3771,7 @@ module Aws::FSx
|
|
|
3771
3771
|
# resp.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
|
3772
3772
|
# resp.volume.lifecycle_transition_reason.message #=> String
|
|
3773
3773
|
# resp.volume.administrative_actions #=> Array
|
|
3774
|
-
# resp.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
3774
|
+
# resp.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
3775
3775
|
# resp.volume.administrative_actions[0].progress_percent #=> Integer
|
|
3776
3776
|
# resp.volume.administrative_actions[0].request_time #=> Time
|
|
3777
3777
|
# resp.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -4040,7 +4040,7 @@ module Aws::FSx
|
|
|
4040
4040
|
# resp.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
|
4041
4041
|
# resp.volume.lifecycle_transition_reason.message #=> String
|
|
4042
4042
|
# resp.volume.administrative_actions #=> Array
|
|
4043
|
-
# resp.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
4043
|
+
# resp.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
4044
4044
|
# resp.volume.administrative_actions[0].progress_percent #=> Integer
|
|
4045
4045
|
# resp.volume.administrative_actions[0].request_time #=> Time
|
|
4046
4046
|
# resp.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -4858,7 +4858,7 @@ module Aws::FSx
|
|
|
4858
4858
|
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
4859
4859
|
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
4860
4860
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
|
4861
|
-
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
4861
|
+
# resp.backups[0].file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
4862
4862
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
|
4863
4863
|
# resp.backups[0].file_system.administrative_actions[0].request_time #=> Time
|
|
4864
4864
|
# resp.backups[0].file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -5012,7 +5012,7 @@ module Aws::FSx
|
|
|
5012
5012
|
# resp.backups[0].volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
|
5013
5013
|
# resp.backups[0].volume.lifecycle_transition_reason.message #=> String
|
|
5014
5014
|
# resp.backups[0].volume.administrative_actions #=> Array
|
|
5015
|
-
# resp.backups[0].volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
5015
|
+
# resp.backups[0].volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
5016
5016
|
# resp.backups[0].volume.administrative_actions[0].progress_percent #=> Integer
|
|
5017
5017
|
# resp.backups[0].volume.administrative_actions[0].request_time #=> Time
|
|
5018
5018
|
# resp.backups[0].volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -5693,7 +5693,7 @@ module Aws::FSx
|
|
|
5693
5693
|
# resp.file_systems[0].lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
5694
5694
|
# resp.file_systems[0].lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
5695
5695
|
# resp.file_systems[0].administrative_actions #=> Array
|
|
5696
|
-
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
5696
|
+
# resp.file_systems[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
5697
5697
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
|
5698
5698
|
# resp.file_systems[0].administrative_actions[0].request_time #=> Time
|
|
5699
5699
|
# resp.file_systems[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -5895,7 +5895,7 @@ module Aws::FSx
|
|
|
5895
5895
|
# resp.snapshots[0].tags[0].key #=> String
|
|
5896
5896
|
# resp.snapshots[0].tags[0].value #=> String
|
|
5897
5897
|
# resp.snapshots[0].administrative_actions #=> Array
|
|
5898
|
-
# resp.snapshots[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
5898
|
+
# resp.snapshots[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
5899
5899
|
# resp.snapshots[0].administrative_actions[0].progress_percent #=> Integer
|
|
5900
5900
|
# resp.snapshots[0].administrative_actions[0].request_time #=> Time
|
|
5901
5901
|
# resp.snapshots[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -6238,7 +6238,7 @@ module Aws::FSx
|
|
|
6238
6238
|
# resp.volumes[0].volume_type #=> String, one of "ONTAP", "OPENZFS"
|
|
6239
6239
|
# resp.volumes[0].lifecycle_transition_reason.message #=> String
|
|
6240
6240
|
# resp.volumes[0].administrative_actions #=> Array
|
|
6241
|
-
# resp.volumes[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
6241
|
+
# resp.volumes[0].administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
6242
6242
|
# resp.volumes[0].administrative_actions[0].progress_percent #=> Integer
|
|
6243
6243
|
# resp.volumes[0].administrative_actions[0].request_time #=> Time
|
|
6244
6244
|
# resp.volumes[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -6628,7 +6628,7 @@ module Aws::FSx
|
|
|
6628
6628
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
6629
6629
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
6630
6630
|
# resp.file_system.administrative_actions #=> Array
|
|
6631
|
-
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
6631
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
6632
6632
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
6633
6633
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
6634
6634
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -6800,7 +6800,7 @@ module Aws::FSx
|
|
|
6800
6800
|
# resp.volume_id #=> String
|
|
6801
6801
|
# resp.lifecycle #=> String, one of "CREATING", "CREATED", "DELETING", "FAILED", "MISCONFIGURED", "PENDING", "AVAILABLE"
|
|
6802
6802
|
# resp.administrative_actions #=> Array
|
|
6803
|
-
# resp.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
6803
|
+
# resp.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
6804
6804
|
# resp.administrative_actions[0].progress_percent #=> Integer
|
|
6805
6805
|
# resp.administrative_actions[0].request_time #=> Time
|
|
6806
6806
|
# resp.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -6985,6 +6985,222 @@ module Aws::FSx
|
|
|
6985
6985
|
req.send_request(options)
|
|
6986
6986
|
end
|
|
6987
6987
|
|
|
6988
|
+
# After performing steps to repair the Active Directory configuration of
|
|
6989
|
+
# an FSx for Windows File Server file system, use this action to
|
|
6990
|
+
# initiate the process of Amazon FSx attempting to reconnect to the file
|
|
6991
|
+
# system.
|
|
6992
|
+
#
|
|
6993
|
+
# @option params [String] :client_request_token
|
|
6994
|
+
# (Optional) An idempotency token for resource creation, in a string of
|
|
6995
|
+
# up to 63 ASCII characters. This token is automatically filled on your
|
|
6996
|
+
# behalf when you use the Command Line Interface (CLI) or an Amazon Web
|
|
6997
|
+
# Services SDK.
|
|
6998
|
+
#
|
|
6999
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
7000
|
+
# not need to pass this option.**
|
|
7001
|
+
#
|
|
7002
|
+
# @option params [required, String] :file_system_id
|
|
7003
|
+
# The globally unique ID of the file system, assigned by Amazon FSx.
|
|
7004
|
+
#
|
|
7005
|
+
# @return [Types::StartMisconfiguredStateRecoveryResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7006
|
+
#
|
|
7007
|
+
# * {Types::StartMisconfiguredStateRecoveryResponse#file_system #file_system} => Types::FileSystem
|
|
7008
|
+
#
|
|
7009
|
+
# @example Request syntax with placeholder values
|
|
7010
|
+
#
|
|
7011
|
+
# resp = client.start_misconfigured_state_recovery({
|
|
7012
|
+
# client_request_token: "ClientRequestToken",
|
|
7013
|
+
# file_system_id: "FileSystemId", # required
|
|
7014
|
+
# })
|
|
7015
|
+
#
|
|
7016
|
+
# @example Response structure
|
|
7017
|
+
#
|
|
7018
|
+
# resp.file_system.owner_id #=> String
|
|
7019
|
+
# resp.file_system.creation_time #=> Time
|
|
7020
|
+
# resp.file_system.file_system_id #=> String
|
|
7021
|
+
# resp.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
|
7022
|
+
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
|
7023
|
+
# resp.file_system.failure_details.message #=> String
|
|
7024
|
+
# resp.file_system.storage_capacity #=> Integer
|
|
7025
|
+
# resp.file_system.storage_type #=> String, one of "SSD", "HDD"
|
|
7026
|
+
# resp.file_system.vpc_id #=> String
|
|
7027
|
+
# resp.file_system.subnet_ids #=> Array
|
|
7028
|
+
# resp.file_system.subnet_ids[0] #=> String
|
|
7029
|
+
# resp.file_system.network_interface_ids #=> Array
|
|
7030
|
+
# resp.file_system.network_interface_ids[0] #=> String
|
|
7031
|
+
# resp.file_system.dns_name #=> String
|
|
7032
|
+
# resp.file_system.kms_key_id #=> String
|
|
7033
|
+
# resp.file_system.resource_arn #=> String
|
|
7034
|
+
# resp.file_system.tags #=> Array
|
|
7035
|
+
# resp.file_system.tags[0].key #=> String
|
|
7036
|
+
# resp.file_system.tags[0].value #=> String
|
|
7037
|
+
# resp.file_system.windows_configuration.active_directory_id #=> String
|
|
7038
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.domain_name #=> String
|
|
7039
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.organizational_unit_distinguished_name #=> String
|
|
7040
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.file_system_administrators_group #=> String
|
|
7041
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
|
7042
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
|
7043
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
|
7044
|
+
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1", "SINGLE_AZ_2"
|
|
7045
|
+
# resp.file_system.windows_configuration.remote_administration_endpoint #=> String
|
|
7046
|
+
# resp.file_system.windows_configuration.preferred_subnet_id #=> String
|
|
7047
|
+
# resp.file_system.windows_configuration.preferred_file_server_ip #=> String
|
|
7048
|
+
# resp.file_system.windows_configuration.throughput_capacity #=> Integer
|
|
7049
|
+
# resp.file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
|
7050
|
+
# resp.file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
|
7051
|
+
# resp.file_system.windows_configuration.weekly_maintenance_start_time #=> String
|
|
7052
|
+
# resp.file_system.windows_configuration.daily_automatic_backup_start_time #=> String
|
|
7053
|
+
# resp.file_system.windows_configuration.automatic_backup_retention_days #=> Integer
|
|
7054
|
+
# resp.file_system.windows_configuration.copy_tags_to_backups #=> Boolean
|
|
7055
|
+
# resp.file_system.windows_configuration.aliases #=> Array
|
|
7056
|
+
# resp.file_system.windows_configuration.aliases[0].name #=> String
|
|
7057
|
+
# resp.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
|
7058
|
+
# resp.file_system.windows_configuration.audit_log_configuration.file_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
7059
|
+
# resp.file_system.windows_configuration.audit_log_configuration.file_share_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
7060
|
+
# resp.file_system.windows_configuration.audit_log_configuration.audit_log_destination #=> String
|
|
7061
|
+
# resp.file_system.windows_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
|
7062
|
+
# resp.file_system.windows_configuration.disk_iops_configuration.iops #=> Integer
|
|
7063
|
+
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
7064
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING", "FAILED"
|
|
7065
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
7066
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
|
7067
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
|
7068
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED", "NEW_CHANGED_DELETED"
|
|
7069
|
+
# resp.file_system.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
|
7070
|
+
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1", "PERSISTENT_2"
|
|
7071
|
+
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
|
7072
|
+
# resp.file_system.lustre_configuration.mount_name #=> String
|
|
7073
|
+
# resp.file_system.lustre_configuration.daily_automatic_backup_start_time #=> String
|
|
7074
|
+
# resp.file_system.lustre_configuration.automatic_backup_retention_days #=> Integer
|
|
7075
|
+
# resp.file_system.lustre_configuration.copy_tags_to_backups #=> Boolean
|
|
7076
|
+
# resp.file_system.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
|
7077
|
+
# resp.file_system.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
|
7078
|
+
# resp.file_system.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
|
7079
|
+
# resp.file_system.lustre_configuration.log_configuration.destination #=> String
|
|
7080
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.root_squash #=> String
|
|
7081
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
7082
|
+
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
7083
|
+
# resp.file_system.administrative_actions #=> Array
|
|
7084
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
7085
|
+
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
7086
|
+
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
7087
|
+
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
7088
|
+
# resp.file_system.administrative_actions[0].target_file_system_values #=> Types::FileSystem
|
|
7089
|
+
# resp.file_system.administrative_actions[0].failure_details.message #=> String
|
|
7090
|
+
# resp.file_system.administrative_actions[0].target_volume_values.creation_time #=> Time
|
|
7091
|
+
# resp.file_system.administrative_actions[0].target_volume_values.file_system_id #=> String
|
|
7092
|
+
# resp.file_system.administrative_actions[0].target_volume_values.lifecycle #=> String, one of "CREATING", "CREATED", "DELETING", "FAILED", "MISCONFIGURED", "PENDING", "AVAILABLE"
|
|
7093
|
+
# resp.file_system.administrative_actions[0].target_volume_values.name #=> String
|
|
7094
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.flex_cache_endpoint_type #=> String, one of "NONE", "ORIGIN", "CACHE"
|
|
7095
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.junction_path #=> String
|
|
7096
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.security_style #=> String, one of "UNIX", "NTFS", "MIXED"
|
|
7097
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.size_in_megabytes #=> Integer
|
|
7098
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.storage_efficiency_enabled #=> Boolean
|
|
7099
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.storage_virtual_machine_id #=> String
|
|
7100
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.storage_virtual_machine_root #=> Boolean
|
|
7101
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.cooling_period #=> Integer
|
|
7102
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
|
7103
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
|
7104
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
|
7105
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
|
7106
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
|
7107
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.audit_log_volume #=> Boolean
|
|
7108
|
+
# 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"
|
|
7109
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.autocommit_period.value #=> Integer
|
|
7110
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.privileged_delete #=> String, one of "DISABLED", "ENABLED", "PERMANENTLY_DISABLED"
|
|
7111
|
+
# 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"
|
|
7112
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.default_retention.value #=> Integer
|
|
7113
|
+
# 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"
|
|
7114
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.minimum_retention.value #=> Integer
|
|
7115
|
+
# 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"
|
|
7116
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.retention_period.maximum_retention.value #=> Integer
|
|
7117
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.snaplock_type #=> String, one of "COMPLIANCE", "ENTERPRISE"
|
|
7118
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snaplock_configuration.volume_append_mode_enabled #=> Boolean
|
|
7119
|
+
# resp.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
|
7120
|
+
# resp.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
|
7121
|
+
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
|
7122
|
+
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].value #=> String
|
|
7123
|
+
# resp.file_system.administrative_actions[0].target_volume_values.volume_id #=> String
|
|
7124
|
+
# resp.file_system.administrative_actions[0].target_volume_values.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
|
7125
|
+
# resp.file_system.administrative_actions[0].target_volume_values.lifecycle_transition_reason.message #=> String
|
|
7126
|
+
# resp.file_system.administrative_actions[0].target_volume_values.administrative_actions #=> Types::AdministrativeActions
|
|
7127
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.parent_volume_id #=> String
|
|
7128
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
|
7129
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
|
7130
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
|
7131
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
|
7132
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
|
7133
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
|
7134
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
|
7135
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
|
7136
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.read_only #=> Boolean
|
|
7137
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports #=> Array
|
|
7138
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports[0].client_configurations #=> Array
|
|
7139
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports[0].client_configurations[0].clients #=> String
|
|
7140
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports[0].client_configurations[0].options #=> Array
|
|
7141
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports[0].client_configurations[0].options[0] #=> String
|
|
7142
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas #=> Array
|
|
7143
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
|
7144
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
|
7145
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
|
7146
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
|
7147
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
|
7148
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
|
7149
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
|
7150
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
|
7151
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.name #=> String
|
|
7152
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
|
7153
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
|
7154
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
|
7155
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
|
7156
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.tags #=> Array
|
|
7157
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
|
7158
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
|
7159
|
+
# resp.file_system.administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
|
7160
|
+
# resp.file_system.ontap_configuration.automatic_backup_retention_days #=> Integer
|
|
7161
|
+
# resp.file_system.ontap_configuration.daily_automatic_backup_start_time #=> String
|
|
7162
|
+
# resp.file_system.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
|
7163
|
+
# resp.file_system.ontap_configuration.endpoint_ip_address_range #=> String
|
|
7164
|
+
# resp.file_system.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
|
7165
|
+
# resp.file_system.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
|
7166
|
+
# resp.file_system.ontap_configuration.endpoints.intercluster.ip_addresses[0] #=> String
|
|
7167
|
+
# resp.file_system.ontap_configuration.endpoints.management.dns_name #=> String
|
|
7168
|
+
# resp.file_system.ontap_configuration.endpoints.management.ip_addresses #=> Array
|
|
7169
|
+
# resp.file_system.ontap_configuration.endpoints.management.ip_addresses[0] #=> String
|
|
7170
|
+
# resp.file_system.ontap_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
|
7171
|
+
# resp.file_system.ontap_configuration.disk_iops_configuration.iops #=> Integer
|
|
7172
|
+
# resp.file_system.ontap_configuration.preferred_subnet_id #=> String
|
|
7173
|
+
# resp.file_system.ontap_configuration.route_table_ids #=> Array
|
|
7174
|
+
# resp.file_system.ontap_configuration.route_table_ids[0] #=> String
|
|
7175
|
+
# resp.file_system.ontap_configuration.throughput_capacity #=> Integer
|
|
7176
|
+
# resp.file_system.ontap_configuration.weekly_maintenance_start_time #=> String
|
|
7177
|
+
# resp.file_system.ontap_configuration.fsx_admin_password #=> String
|
|
7178
|
+
# resp.file_system.file_system_type_version #=> String
|
|
7179
|
+
# resp.file_system.open_zfs_configuration.automatic_backup_retention_days #=> Integer
|
|
7180
|
+
# resp.file_system.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
|
7181
|
+
# resp.file_system.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
|
7182
|
+
# resp.file_system.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
|
7183
|
+
# resp.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2", "MULTI_AZ_1"
|
|
7184
|
+
# resp.file_system.open_zfs_configuration.throughput_capacity #=> Integer
|
|
7185
|
+
# resp.file_system.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
|
7186
|
+
# resp.file_system.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
|
7187
|
+
# resp.file_system.open_zfs_configuration.disk_iops_configuration.iops #=> Integer
|
|
7188
|
+
# resp.file_system.open_zfs_configuration.root_volume_id #=> String
|
|
7189
|
+
# resp.file_system.open_zfs_configuration.preferred_subnet_id #=> String
|
|
7190
|
+
# resp.file_system.open_zfs_configuration.endpoint_ip_address_range #=> String
|
|
7191
|
+
# resp.file_system.open_zfs_configuration.route_table_ids #=> Array
|
|
7192
|
+
# resp.file_system.open_zfs_configuration.route_table_ids[0] #=> String
|
|
7193
|
+
# resp.file_system.open_zfs_configuration.endpoint_ip_address #=> String
|
|
7194
|
+
#
|
|
7195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/StartMisconfiguredStateRecovery AWS API Documentation
|
|
7196
|
+
#
|
|
7197
|
+
# @overload start_misconfigured_state_recovery(params = {})
|
|
7198
|
+
# @param [Hash] params ({})
|
|
7199
|
+
def start_misconfigured_state_recovery(params = {}, options = {})
|
|
7200
|
+
req = build_request(:start_misconfigured_state_recovery, params)
|
|
7201
|
+
req.send_request(options)
|
|
7202
|
+
end
|
|
7203
|
+
|
|
6988
7204
|
# Tags an Amazon FSx resource.
|
|
6989
7205
|
#
|
|
6990
7206
|
# @option params [required, String] :resource_arn
|
|
@@ -7274,6 +7490,8 @@ module Aws::FSx
|
|
|
7274
7490
|
#
|
|
7275
7491
|
# * `LustreRootSquashConfiguration`
|
|
7276
7492
|
#
|
|
7493
|
+
# * `PerUnitStorageThroughput`
|
|
7494
|
+
#
|
|
7277
7495
|
# * `StorageCapacity`
|
|
7278
7496
|
#
|
|
7279
7497
|
# * `WeeklyMaintenanceStartTime`
|
|
@@ -7496,6 +7714,7 @@ module Aws::FSx
|
|
|
7496
7714
|
# root_squash: "LustreRootSquash",
|
|
7497
7715
|
# no_squash_nids: ["LustreNoSquashNid"],
|
|
7498
7716
|
# },
|
|
7717
|
+
# per_unit_storage_throughput: 1,
|
|
7499
7718
|
# },
|
|
7500
7719
|
# ontap_configuration: {
|
|
7501
7720
|
# automatic_backup_retention_days: 1,
|
|
@@ -7595,7 +7814,7 @@ module Aws::FSx
|
|
|
7595
7814
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
|
7596
7815
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
|
7597
7816
|
# resp.file_system.administrative_actions #=> Array
|
|
7598
|
-
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
7817
|
+
# resp.file_system.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
7599
7818
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
|
7600
7819
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
|
7601
7820
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -7758,7 +7977,7 @@ module Aws::FSx
|
|
|
7758
7977
|
# resp.snapshot.tags[0].key #=> String
|
|
7759
7978
|
# resp.snapshot.tags[0].value #=> String
|
|
7760
7979
|
# resp.snapshot.administrative_actions #=> Array
|
|
7761
|
-
# resp.snapshot.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
7980
|
+
# resp.snapshot.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
7762
7981
|
# resp.snapshot.administrative_actions[0].progress_percent #=> Integer
|
|
7763
7982
|
# resp.snapshot.administrative_actions[0].request_time #=> Time
|
|
7764
7983
|
# resp.snapshot.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -8160,7 +8379,7 @@ module Aws::FSx
|
|
|
8160
8379
|
# resp.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
|
8161
8380
|
# resp.volume.lifecycle_transition_reason.message #=> String
|
|
8162
8381
|
# resp.volume.administrative_actions #=> Array
|
|
8163
|
-
# resp.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION"
|
|
8382
|
+
# resp.volume.administrative_actions[0].administrative_action_type #=> String, one of "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", "FILE_SYSTEM_ALIAS_ASSOCIATION", "FILE_SYSTEM_ALIAS_DISASSOCIATION", "VOLUME_UPDATE", "SNAPSHOT_UPDATE", "RELEASE_NFS_V3_LOCKS", "VOLUME_RESTORE", "THROUGHPUT_OPTIMIZATION", "IOPS_OPTIMIZATION", "STORAGE_TYPE_OPTIMIZATION", "MISCONFIGURED_STATE_RECOVERY"
|
|
8164
8383
|
# resp.volume.administrative_actions[0].progress_percent #=> Integer
|
|
8165
8384
|
# resp.volume.administrative_actions[0].request_time #=> Time
|
|
8166
8385
|
# resp.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
|
@@ -8322,7 +8541,7 @@ module Aws::FSx
|
|
|
8322
8541
|
params: params,
|
|
8323
8542
|
config: config)
|
|
8324
8543
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
8325
|
-
context[:gem_version] = '1.
|
|
8544
|
+
context[:gem_version] = '1.79.0'
|
|
8326
8545
|
Seahorse::Client::Request.new(handlers, context)
|
|
8327
8546
|
end
|
|
8328
8547
|
|
|
@@ -343,6 +343,8 @@ module Aws::FSx
|
|
|
343
343
|
Snapshots = Shapes::ListShape.new(name: 'Snapshots')
|
|
344
344
|
SourceBackupId = Shapes::StringShape.new(name: 'SourceBackupId')
|
|
345
345
|
SourceBackupUnavailable = Shapes::StructureShape.new(name: 'SourceBackupUnavailable')
|
|
346
|
+
StartMisconfiguredStateRecoveryRequest = Shapes::StructureShape.new(name: 'StartMisconfiguredStateRecoveryRequest')
|
|
347
|
+
StartMisconfiguredStateRecoveryResponse = Shapes::StructureShape.new(name: 'StartMisconfiguredStateRecoveryResponse')
|
|
346
348
|
StartTime = Shapes::TimestampShape.new(name: 'StartTime')
|
|
347
349
|
Status = Shapes::StringShape.new(name: 'Status')
|
|
348
350
|
StorageCapacity = Shapes::IntegerShape.new(name: 'StorageCapacity')
|
|
@@ -1505,6 +1507,13 @@ module Aws::FSx
|
|
|
1505
1507
|
SourceBackupUnavailable.add_member(:backup_id, Shapes::ShapeRef.new(shape: BackupId, location_name: "BackupId"))
|
|
1506
1508
|
SourceBackupUnavailable.struct_class = Types::SourceBackupUnavailable
|
|
1507
1509
|
|
|
1510
|
+
StartMisconfiguredStateRecoveryRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
|
1511
|
+
StartMisconfiguredStateRecoveryRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
|
1512
|
+
StartMisconfiguredStateRecoveryRequest.struct_class = Types::StartMisconfiguredStateRecoveryRequest
|
|
1513
|
+
|
|
1514
|
+
StartMisconfiguredStateRecoveryResponse.add_member(:file_system, Shapes::ShapeRef.new(shape: FileSystem, location_name: "FileSystem"))
|
|
1515
|
+
StartMisconfiguredStateRecoveryResponse.struct_class = Types::StartMisconfiguredStateRecoveryResponse
|
|
1516
|
+
|
|
1508
1517
|
StorageVirtualMachine.add_member(:active_directory_configuration, Shapes::ShapeRef.new(shape: SvmActiveDirectoryConfiguration, location_name: "ActiveDirectoryConfiguration"))
|
|
1509
1518
|
StorageVirtualMachine.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTime"))
|
|
1510
1519
|
StorageVirtualMachine.add_member(:endpoints, Shapes::ShapeRef.new(shape: SvmEndpoints, location_name: "Endpoints"))
|
|
@@ -1609,6 +1618,7 @@ module Aws::FSx
|
|
|
1609
1618
|
UpdateFileSystemLustreConfiguration.add_member(:data_compression_type, Shapes::ShapeRef.new(shape: DataCompressionType, location_name: "DataCompressionType"))
|
|
1610
1619
|
UpdateFileSystemLustreConfiguration.add_member(:log_configuration, Shapes::ShapeRef.new(shape: LustreLogCreateConfiguration, location_name: "LogConfiguration"))
|
|
1611
1620
|
UpdateFileSystemLustreConfiguration.add_member(:root_squash_configuration, Shapes::ShapeRef.new(shape: LustreRootSquashConfiguration, location_name: "RootSquashConfiguration"))
|
|
1621
|
+
UpdateFileSystemLustreConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
|
1612
1622
|
UpdateFileSystemLustreConfiguration.struct_class = Types::UpdateFileSystemLustreConfiguration
|
|
1613
1623
|
|
|
1614
1624
|
UpdateFileSystemOntapConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
|
@@ -2285,6 +2295,17 @@ module Aws::FSx
|
|
|
2285
2295
|
o.errors << Shapes::ShapeRef.new(shape: VolumeNotFound)
|
|
2286
2296
|
end)
|
|
2287
2297
|
|
|
2298
|
+
api.add_operation(:start_misconfigured_state_recovery, Seahorse::Model::Operation.new.tap do |o|
|
|
2299
|
+
o.name = "StartMisconfiguredStateRecovery"
|
|
2300
|
+
o.http_method = "POST"
|
|
2301
|
+
o.http_request_uri = "/"
|
|
2302
|
+
o.input = Shapes::ShapeRef.new(shape: StartMisconfiguredStateRecoveryRequest)
|
|
2303
|
+
o.output = Shapes::ShapeRef.new(shape: StartMisconfiguredStateRecoveryResponse)
|
|
2304
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequest)
|
|
2305
|
+
o.errors << Shapes::ShapeRef.new(shape: FileSystemNotFound)
|
|
2306
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
|
2307
|
+
end)
|
|
2308
|
+
|
|
2288
2309
|
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
2289
2310
|
o.name = "TagResource"
|
|
2290
2311
|
o.http_method = "POST"
|
|
@@ -32,7 +32,7 @@ module Aws::FSx
|
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
33
|
end
|
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://fsx-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
37
|
end
|
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
@@ -474,6 +474,20 @@ module Aws::FSx
|
|
|
474
474
|
end
|
|
475
475
|
end
|
|
476
476
|
|
|
477
|
+
class StartMisconfiguredStateRecovery
|
|
478
|
+
def self.build(context)
|
|
479
|
+
unless context.config.regional_endpoint
|
|
480
|
+
endpoint = context.config.endpoint.to_s
|
|
481
|
+
end
|
|
482
|
+
Aws::FSx::EndpointParameters.new(
|
|
483
|
+
region: context.config.region,
|
|
484
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
485
|
+
use_fips: context.config.use_fips_endpoint,
|
|
486
|
+
endpoint: endpoint,
|
|
487
|
+
)
|
|
488
|
+
end
|
|
489
|
+
end
|
|
490
|
+
|
|
477
491
|
class TagResource
|
|
478
492
|
def self.build(context)
|
|
479
493
|
unless context.config.regional_endpoint
|
|
@@ -122,6 +122,8 @@ module Aws::FSx
|
|
|
122
122
|
Aws::FSx::Endpoints::ReleaseFileSystemNfsV3Locks.build(context)
|
|
123
123
|
when :restore_volume_from_snapshot
|
|
124
124
|
Aws::FSx::Endpoints::RestoreVolumeFromSnapshot.build(context)
|
|
125
|
+
when :start_misconfigured_state_recovery
|
|
126
|
+
Aws::FSx::Endpoints::StartMisconfiguredStateRecovery.build(context)
|
|
125
127
|
when :tag_resource
|
|
126
128
|
Aws::FSx::Endpoints::TagResource.build(context)
|
|
127
129
|
when :untag_resource
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
|
@@ -105,10 +105,9 @@ module Aws::FSx
|
|
|
105
105
|
# completed successfully, the parent `FILE_SYSTEM_UPDATE` action
|
|
106
106
|
# status changes to `COMPLETED`. For more information, see [Managing
|
|
107
107
|
# storage capacity][2] in the *Amazon FSx for Windows File Server
|
|
108
|
-
# User Guide*, [Managing storage
|
|
109
|
-
#
|
|
110
|
-
#
|
|
111
|
-
# Guide*.
|
|
108
|
+
# User Guide*, [Managing storage capacity][3] in the *Amazon FSx for
|
|
109
|
+
# Lustre User Guide*, and [Managing storage capacity and provisioned
|
|
110
|
+
# IOPS][4] in the *Amazon FSx for NetApp ONTAP User Guide*.
|
|
112
111
|
#
|
|
113
112
|
# * `FILE_SYSTEM_ALIAS_ASSOCIATION` - A file system update to
|
|
114
113
|
# associate a new Domain Name System (DNS) alias with the file
|
|
@@ -1382,7 +1381,7 @@ module Aws::FSx
|
|
|
1382
1381
|
#
|
|
1383
1382
|
# * `ExportPath`
|
|
1384
1383
|
#
|
|
1385
|
-
# * `
|
|
1384
|
+
# * `ImportedFileChunkSize`
|
|
1386
1385
|
#
|
|
1387
1386
|
# * `ImportPath`
|
|
1388
1387
|
#
|
|
@@ -1508,7 +1507,7 @@ module Aws::FSx
|
|
|
1508
1507
|
#
|
|
1509
1508
|
# * `ExportPath`
|
|
1510
1509
|
#
|
|
1511
|
-
# * `
|
|
1510
|
+
# * `ImportedFileChunkSize`
|
|
1512
1511
|
#
|
|
1513
1512
|
# * `ImportPath`
|
|
1514
1513
|
#
|
|
@@ -2190,7 +2189,7 @@ module Aws::FSx
|
|
|
2190
2189
|
#
|
|
2191
2190
|
# * `ExportPath`
|
|
2192
2191
|
#
|
|
2193
|
-
# * `
|
|
2192
|
+
# * `ImportedFileChunkSize`
|
|
2194
2193
|
#
|
|
2195
2194
|
# * `ImportPath`
|
|
2196
2195
|
#
|
|
@@ -7750,6 +7749,41 @@ module Aws::FSx
|
|
|
7750
7749
|
include Aws::Structure
|
|
7751
7750
|
end
|
|
7752
7751
|
|
|
7752
|
+
# @!attribute [rw] client_request_token
|
|
7753
|
+
# (Optional) An idempotency token for resource creation, in a string
|
|
7754
|
+
# of up to 63 ASCII characters. This token is automatically filled on
|
|
7755
|
+
# your behalf when you use the Command Line Interface (CLI) or an
|
|
7756
|
+
# Amazon Web Services SDK.
|
|
7757
|
+
#
|
|
7758
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
7759
|
+
# not need to pass this option.
|
|
7760
|
+
# @return [String]
|
|
7761
|
+
#
|
|
7762
|
+
# @!attribute [rw] file_system_id
|
|
7763
|
+
# The globally unique ID of the file system, assigned by Amazon FSx.
|
|
7764
|
+
# @return [String]
|
|
7765
|
+
#
|
|
7766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/StartMisconfiguredStateRecoveryRequest AWS API Documentation
|
|
7767
|
+
#
|
|
7768
|
+
class StartMisconfiguredStateRecoveryRequest < Struct.new(
|
|
7769
|
+
:client_request_token,
|
|
7770
|
+
:file_system_id)
|
|
7771
|
+
SENSITIVE = []
|
|
7772
|
+
include Aws::Structure
|
|
7773
|
+
end
|
|
7774
|
+
|
|
7775
|
+
# @!attribute [rw] file_system
|
|
7776
|
+
# A description of a specific Amazon FSx file system.
|
|
7777
|
+
# @return [Types::FileSystem]
|
|
7778
|
+
#
|
|
7779
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/StartMisconfiguredStateRecoveryResponse AWS API Documentation
|
|
7780
|
+
#
|
|
7781
|
+
class StartMisconfiguredStateRecoveryResponse < Struct.new(
|
|
7782
|
+
:file_system)
|
|
7783
|
+
SENSITIVE = []
|
|
7784
|
+
include Aws::Structure
|
|
7785
|
+
end
|
|
7786
|
+
|
|
7753
7787
|
# Describes the Amazon FSx for NetApp ONTAP storage virtual machine
|
|
7754
7788
|
# (SVM) configuration.
|
|
7755
7789
|
#
|
|
@@ -8332,6 +8366,25 @@ module Aws::FSx
|
|
|
8332
8366
|
# as a root user.
|
|
8333
8367
|
# @return [Types::LustreRootSquashConfiguration]
|
|
8334
8368
|
#
|
|
8369
|
+
# @!attribute [rw] per_unit_storage_throughput
|
|
8370
|
+
# The throughput of an Amazon FSx for Lustre Persistent SSD-based file
|
|
8371
|
+
# system, measured in megabytes per second per tebibyte (MB/s/TiB).
|
|
8372
|
+
# You can increase or decrease your file system's throughput. Valid
|
|
8373
|
+
# values depend on the deployment type of the file system, as follows:
|
|
8374
|
+
#
|
|
8375
|
+
# * For `PERSISTENT_1` SSD-based deployment types, valid values are
|
|
8376
|
+
# 50, 100, and 200 MB/s/TiB.
|
|
8377
|
+
#
|
|
8378
|
+
# * For `PERSISTENT_2` SSD-based deployment types, valid values are
|
|
8379
|
+
# 125, 250, 500, and 1000 MB/s/TiB.
|
|
8380
|
+
#
|
|
8381
|
+
# For more information, see [ Managing throughput capacity][1].
|
|
8382
|
+
#
|
|
8383
|
+
#
|
|
8384
|
+
#
|
|
8385
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/managing-throughput-capacity.html
|
|
8386
|
+
# @return [Integer]
|
|
8387
|
+
#
|
|
8335
8388
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
|
8336
8389
|
#
|
|
8337
8390
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
|
@@ -8341,7 +8394,8 @@ module Aws::FSx
|
|
|
8341
8394
|
:auto_import_policy,
|
|
8342
8395
|
:data_compression_type,
|
|
8343
8396
|
:log_configuration,
|
|
8344
|
-
:root_squash_configuration
|
|
8397
|
+
:root_squash_configuration,
|
|
8398
|
+
:per_unit_storage_throughput)
|
|
8345
8399
|
SENSITIVE = []
|
|
8346
8400
|
include Aws::Structure
|
|
8347
8401
|
end
|
|
@@ -8485,7 +8539,7 @@ module Aws::FSx
|
|
|
8485
8539
|
# DeploymentType you choose, as follows:
|
|
8486
8540
|
#
|
|
8487
8541
|
# * For `MULTI_AZ_1` and `SINGLE_AZ_2`, valid values are 160, 320,
|
|
8488
|
-
# 640, 1280, 2560, 3840, 5120, 7680, or 10240
|
|
8542
|
+
# 640, 1280, 2560, 3840, 5120, 7680, or 10240 MB/s.
|
|
8489
8543
|
#
|
|
8490
8544
|
# * For `SINGLE_AZ_1`, valid values are 64, 128, 256, 512, 1024, 2048,
|
|
8491
8545
|
# 3072, or 4096 MB/s.
|
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.79.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-
|
|
11
|
+
date: 2023-11-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|