aws-sdk-fsx 1.60.0 → 1.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +319 -48
- data/lib/aws-sdk-fsx/client_api.rb +18 -4
- data/lib/aws-sdk-fsx/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-fsx/endpoint_provider.rb +141 -0
- data/lib/aws-sdk-fsx/endpoints.rb +589 -0
- data/lib/aws-sdk-fsx/plugins/endpoints.rb +150 -0
- data/lib/aws-sdk-fsx/types.rb +283 -48
- data/lib/aws-sdk-fsx.rb +5 -1
- metadata +8 -4
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:fsx)
|
@@ -79,8 +79,9 @@ module Aws::FSx
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
84
|
+
add_plugin(Aws::FSx::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -297,6 +298,19 @@ module Aws::FSx
|
|
297
298
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
298
299
|
# requests are made, and retries are disabled.
|
299
300
|
#
|
301
|
+
# @option options [Aws::TokenProvider] :token_provider
|
302
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
303
|
+
# following classes:
|
304
|
+
#
|
305
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
306
|
+
# tokens.
|
307
|
+
#
|
308
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
309
|
+
# access token generated from `aws login`.
|
310
|
+
#
|
311
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
312
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
313
|
+
#
|
300
314
|
# @option options [Boolean] :use_dualstack_endpoint
|
301
315
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
302
316
|
# will be used if available.
|
@@ -310,6 +324,9 @@ module Aws::FSx
|
|
310
324
|
# When `true`, request parameters are validated before
|
311
325
|
# sending the request.
|
312
326
|
#
|
327
|
+
# @option options [Aws::FSx::EndpointProvider] :endpoint_provider
|
328
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::FSx::EndpointParameters`
|
329
|
+
#
|
313
330
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
314
331
|
# requests through. Formatted like 'http://proxy.com:123'.
|
315
332
|
#
|
@@ -715,7 +732,7 @@ module Aws::FSx
|
|
715
732
|
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
716
733
|
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
717
734
|
# resp.backup.file_system.administrative_actions #=> Array
|
718
|
-
# 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"
|
735
|
+
# 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"
|
719
736
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
720
737
|
# resp.backup.file_system.administrative_actions[0].request_time #=> Time
|
721
738
|
# resp.backup.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -736,6 +753,8 @@ module Aws::FSx
|
|
736
753
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
737
754
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
738
755
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
756
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
757
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
739
758
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
740
759
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
741
760
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -763,6 +782,9 @@ module Aws::FSx
|
|
763
782
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
764
783
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
765
784
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
785
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
786
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
787
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
766
788
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
767
789
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
768
790
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.name #=> String
|
@@ -796,7 +818,7 @@ module Aws::FSx
|
|
796
818
|
# resp.backup.file_system.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
797
819
|
# resp.backup.file_system.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
798
820
|
# resp.backup.file_system.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
799
|
-
# resp.backup.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
821
|
+
# resp.backup.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
800
822
|
# resp.backup.file_system.open_zfs_configuration.throughput_capacity #=> Integer
|
801
823
|
# resp.backup.file_system.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
802
824
|
# resp.backup.file_system.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -824,6 +846,8 @@ module Aws::FSx
|
|
824
846
|
# resp.backup.volume.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
825
847
|
# resp.backup.volume.ontap_configuration.uuid #=> String
|
826
848
|
# resp.backup.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
849
|
+
# resp.backup.volume.ontap_configuration.snapshot_policy #=> String
|
850
|
+
# resp.backup.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
827
851
|
# resp.backup.volume.resource_arn #=> String
|
828
852
|
# resp.backup.volume.tags #=> Array
|
829
853
|
# resp.backup.volume.tags[0].key #=> String
|
@@ -832,7 +856,7 @@ module Aws::FSx
|
|
832
856
|
# resp.backup.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
833
857
|
# resp.backup.volume.lifecycle_transition_reason.message #=> String
|
834
858
|
# resp.backup.volume.administrative_actions #=> Array
|
835
|
-
# 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"
|
859
|
+
# 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"
|
836
860
|
# resp.backup.volume.administrative_actions[0].progress_percent #=> Integer
|
837
861
|
# resp.backup.volume.administrative_actions[0].request_time #=> Time
|
838
862
|
# resp.backup.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -922,7 +946,7 @@ module Aws::FSx
|
|
922
946
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
923
947
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
924
948
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
925
|
-
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
949
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
926
950
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
927
951
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
928
952
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -960,6 +984,9 @@ module Aws::FSx
|
|
960
984
|
# resp.backup.volume.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
961
985
|
# resp.backup.volume.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
962
986
|
# resp.backup.volume.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
987
|
+
# resp.backup.volume.open_zfs_configuration.restore_to_snapshot #=> String
|
988
|
+
# resp.backup.volume.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
989
|
+
# resp.backup.volume.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
963
990
|
#
|
964
991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CopyBackup AWS API Documentation
|
965
992
|
#
|
@@ -1191,7 +1218,7 @@ module Aws::FSx
|
|
1191
1218
|
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
1192
1219
|
# resp.backup.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
1193
1220
|
# resp.backup.file_system.administrative_actions #=> Array
|
1194
|
-
# 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"
|
1221
|
+
# 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"
|
1195
1222
|
# resp.backup.file_system.administrative_actions[0].progress_percent #=> Integer
|
1196
1223
|
# resp.backup.file_system.administrative_actions[0].request_time #=> Time
|
1197
1224
|
# resp.backup.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -1212,6 +1239,8 @@ module Aws::FSx
|
|
1212
1239
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
1213
1240
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
1214
1241
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
1242
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
1243
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
1215
1244
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
1216
1245
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
1217
1246
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -1239,6 +1268,9 @@ module Aws::FSx
|
|
1239
1268
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
1240
1269
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
1241
1270
|
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
1271
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
1272
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
1273
|
+
# resp.backup.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
1242
1274
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
1243
1275
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
1244
1276
|
# resp.backup.file_system.administrative_actions[0].target_snapshot_values.name #=> String
|
@@ -1272,7 +1304,7 @@ module Aws::FSx
|
|
1272
1304
|
# resp.backup.file_system.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
1273
1305
|
# resp.backup.file_system.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
1274
1306
|
# resp.backup.file_system.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
1275
|
-
# resp.backup.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
1307
|
+
# resp.backup.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
1276
1308
|
# resp.backup.file_system.open_zfs_configuration.throughput_capacity #=> Integer
|
1277
1309
|
# resp.backup.file_system.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
1278
1310
|
# resp.backup.file_system.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -1300,6 +1332,8 @@ module Aws::FSx
|
|
1300
1332
|
# resp.backup.volume.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
1301
1333
|
# resp.backup.volume.ontap_configuration.uuid #=> String
|
1302
1334
|
# resp.backup.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
1335
|
+
# resp.backup.volume.ontap_configuration.snapshot_policy #=> String
|
1336
|
+
# resp.backup.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
1303
1337
|
# resp.backup.volume.resource_arn #=> String
|
1304
1338
|
# resp.backup.volume.tags #=> Array
|
1305
1339
|
# resp.backup.volume.tags[0].key #=> String
|
@@ -1308,7 +1342,7 @@ module Aws::FSx
|
|
1308
1342
|
# resp.backup.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
1309
1343
|
# resp.backup.volume.lifecycle_transition_reason.message #=> String
|
1310
1344
|
# resp.backup.volume.administrative_actions #=> Array
|
1311
|
-
# 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"
|
1345
|
+
# 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"
|
1312
1346
|
# resp.backup.volume.administrative_actions[0].progress_percent #=> Integer
|
1313
1347
|
# resp.backup.volume.administrative_actions[0].request_time #=> Time
|
1314
1348
|
# resp.backup.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -1398,7 +1432,7 @@ module Aws::FSx
|
|
1398
1432
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
1399
1433
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
1400
1434
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
1401
|
-
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
1435
|
+
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
1402
1436
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
1403
1437
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
1404
1438
|
# resp.backup.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -1436,6 +1470,9 @@ module Aws::FSx
|
|
1436
1470
|
# resp.backup.volume.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
1437
1471
|
# resp.backup.volume.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
1438
1472
|
# resp.backup.volume.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
1473
|
+
# resp.backup.volume.open_zfs_configuration.restore_to_snapshot #=> String
|
1474
|
+
# resp.backup.volume.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
1475
|
+
# resp.backup.volume.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
1439
1476
|
#
|
1440
1477
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateBackup AWS API Documentation
|
1441
1478
|
#
|
@@ -2298,7 +2335,7 @@ module Aws::FSx
|
|
2298
2335
|
# copy_tags_to_backups: false,
|
2299
2336
|
# copy_tags_to_volumes: false,
|
2300
2337
|
# daily_automatic_backup_start_time: "DailyTime",
|
2301
|
-
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1
|
2338
|
+
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1, SINGLE_AZ_2
|
2302
2339
|
# throughput_capacity: 1, # required
|
2303
2340
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2304
2341
|
# disk_iops_configuration: {
|
@@ -2397,7 +2434,7 @@ module Aws::FSx
|
|
2397
2434
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
2398
2435
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
2399
2436
|
# resp.file_system.administrative_actions #=> Array
|
2400
|
-
# 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"
|
2437
|
+
# 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"
|
2401
2438
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
2402
2439
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
2403
2440
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -2418,6 +2455,8 @@ module Aws::FSx
|
|
2418
2455
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
2419
2456
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
2420
2457
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
2458
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
2459
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
2421
2460
|
# resp.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
2422
2461
|
# resp.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
2423
2462
|
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -2445,6 +2484,9 @@ module Aws::FSx
|
|
2445
2484
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
2446
2485
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
2447
2486
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
2487
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
2488
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
2489
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
2448
2490
|
# resp.file_system.administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
2449
2491
|
# resp.file_system.administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
2450
2492
|
# resp.file_system.administrative_actions[0].target_snapshot_values.name #=> String
|
@@ -2478,7 +2520,7 @@ module Aws::FSx
|
|
2478
2520
|
# resp.file_system.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
2479
2521
|
# resp.file_system.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
2480
2522
|
# resp.file_system.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
2481
|
-
# resp.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
2523
|
+
# resp.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
2482
2524
|
# resp.file_system.open_zfs_configuration.throughput_capacity #=> Integer
|
2483
2525
|
# resp.file_system.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
2484
2526
|
# resp.file_system.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -2791,7 +2833,7 @@ module Aws::FSx
|
|
2791
2833
|
# copy_tags_to_backups: false,
|
2792
2834
|
# copy_tags_to_volumes: false,
|
2793
2835
|
# daily_automatic_backup_start_time: "DailyTime",
|
2794
|
-
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1
|
2836
|
+
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1, SINGLE_AZ_2
|
2795
2837
|
# throughput_capacity: 1, # required
|
2796
2838
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2797
2839
|
# disk_iops_configuration: {
|
@@ -2891,7 +2933,7 @@ module Aws::FSx
|
|
2891
2933
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
2892
2934
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
2893
2935
|
# resp.file_system.administrative_actions #=> Array
|
2894
|
-
# 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"
|
2936
|
+
# 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"
|
2895
2937
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
2896
2938
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
2897
2939
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -2912,6 +2954,8 @@ module Aws::FSx
|
|
2912
2954
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
2913
2955
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
2914
2956
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
2957
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
2958
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
2915
2959
|
# resp.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
2916
2960
|
# resp.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
2917
2961
|
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -2939,6 +2983,9 @@ module Aws::FSx
|
|
2939
2983
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
2940
2984
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
2941
2985
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
2986
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
2987
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
2988
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
2942
2989
|
# resp.file_system.administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
2943
2990
|
# resp.file_system.administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
2944
2991
|
# resp.file_system.administrative_actions[0].target_snapshot_values.name #=> String
|
@@ -2972,7 +3019,7 @@ module Aws::FSx
|
|
2972
3019
|
# resp.file_system.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
2973
3020
|
# resp.file_system.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
2974
3021
|
# resp.file_system.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
2975
|
-
# resp.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
3022
|
+
# resp.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
2976
3023
|
# resp.file_system.open_zfs_configuration.throughput_capacity #=> Integer
|
2977
3024
|
# resp.file_system.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
2978
3025
|
# resp.file_system.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -3069,7 +3116,7 @@ module Aws::FSx
|
|
3069
3116
|
# resp.snapshot.tags[0].key #=> String
|
3070
3117
|
# resp.snapshot.tags[0].value #=> String
|
3071
3118
|
# resp.snapshot.administrative_actions #=> Array
|
3072
|
-
# 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"
|
3119
|
+
# 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"
|
3073
3120
|
# resp.snapshot.administrative_actions[0].progress_percent #=> Integer
|
3074
3121
|
# resp.snapshot.administrative_actions[0].request_time #=> Time
|
3075
3122
|
# resp.snapshot.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -3159,7 +3206,7 @@ module Aws::FSx
|
|
3159
3206
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
3160
3207
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
3161
3208
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
3162
|
-
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
3209
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
3163
3210
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
3164
3211
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
3165
3212
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -3181,6 +3228,8 @@ module Aws::FSx
|
|
3181
3228
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
3182
3229
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
3183
3230
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
3231
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
3232
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
3184
3233
|
# resp.snapshot.administrative_actions[0].target_volume_values.resource_arn #=> String
|
3185
3234
|
# resp.snapshot.administrative_actions[0].target_volume_values.tags #=> Array
|
3186
3235
|
# resp.snapshot.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -3208,6 +3257,9 @@ module Aws::FSx
|
|
3208
3257
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
3209
3258
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
3210
3259
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
3260
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
3261
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
3262
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
3211
3263
|
# resp.snapshot.administrative_actions[0].target_snapshot_values #=> Types::Snapshot
|
3212
3264
|
#
|
3213
3265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateSnapshot AWS API Documentation
|
@@ -3324,7 +3376,6 @@ module Aws::FSx
|
|
3324
3376
|
# resp.storage_virtual_machine.name #=> String
|
3325
3377
|
# resp.storage_virtual_machine.resource_arn #=> String
|
3326
3378
|
# resp.storage_virtual_machine.storage_virtual_machine_id #=> String
|
3327
|
-
# resp.storage_virtual_machine.subtype #=> String, one of "DEFAULT", "DP_DESTINATION", "SYNC_DESTINATION", "SYNC_SOURCE"
|
3328
3379
|
# resp.storage_virtual_machine.uuid #=> String
|
3329
3380
|
# resp.storage_virtual_machine.tags #=> Array
|
3330
3381
|
# resp.storage_virtual_machine.tags[0].key #=> String
|
@@ -3379,15 +3430,18 @@ module Aws::FSx
|
|
3379
3430
|
# volume_type: "ONTAP", # required, accepts ONTAP, OPENZFS
|
3380
3431
|
# name: "VolumeName", # required
|
3381
3432
|
# ontap_configuration: {
|
3382
|
-
# junction_path: "JunctionPath",
|
3433
|
+
# junction_path: "JunctionPath",
|
3383
3434
|
# security_style: "UNIX", # accepts UNIX, NTFS, MIXED
|
3384
3435
|
# size_in_megabytes: 1, # required
|
3385
|
-
# storage_efficiency_enabled: false,
|
3436
|
+
# storage_efficiency_enabled: false,
|
3386
3437
|
# storage_virtual_machine_id: "StorageVirtualMachineId", # required
|
3387
3438
|
# tiering_policy: {
|
3388
3439
|
# cooling_period: 1,
|
3389
3440
|
# name: "SNAPSHOT_ONLY", # accepts SNAPSHOT_ONLY, AUTO, ALL, NONE
|
3390
3441
|
# },
|
3442
|
+
# ontap_volume_type: "RW", # accepts RW, DP
|
3443
|
+
# snapshot_policy: "SnapshotPolicy",
|
3444
|
+
# copy_tags_to_backups: false,
|
3391
3445
|
# },
|
3392
3446
|
# tags: [
|
3393
3447
|
# {
|
@@ -3444,6 +3498,8 @@ module Aws::FSx
|
|
3444
3498
|
# resp.volume.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
3445
3499
|
# resp.volume.ontap_configuration.uuid #=> String
|
3446
3500
|
# resp.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
3501
|
+
# resp.volume.ontap_configuration.snapshot_policy #=> String
|
3502
|
+
# resp.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
3447
3503
|
# resp.volume.resource_arn #=> String
|
3448
3504
|
# resp.volume.tags #=> Array
|
3449
3505
|
# resp.volume.tags[0].key #=> String
|
@@ -3452,7 +3508,7 @@ module Aws::FSx
|
|
3452
3508
|
# resp.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
3453
3509
|
# resp.volume.lifecycle_transition_reason.message #=> String
|
3454
3510
|
# resp.volume.administrative_actions #=> Array
|
3455
|
-
# 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"
|
3511
|
+
# 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"
|
3456
3512
|
# resp.volume.administrative_actions[0].progress_percent #=> Integer
|
3457
3513
|
# resp.volume.administrative_actions[0].request_time #=> Time
|
3458
3514
|
# resp.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -3542,7 +3598,7 @@ module Aws::FSx
|
|
3542
3598
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
3543
3599
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
3544
3600
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
3545
|
-
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
3601
|
+
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
3546
3602
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
3547
3603
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
3548
3604
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -3580,6 +3636,9 @@ module Aws::FSx
|
|
3580
3636
|
# resp.volume.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
3581
3637
|
# resp.volume.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
3582
3638
|
# resp.volume.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
3639
|
+
# resp.volume.open_zfs_configuration.restore_to_snapshot #=> String
|
3640
|
+
# resp.volume.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
3641
|
+
# resp.volume.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
3583
3642
|
#
|
3584
3643
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateVolume AWS API Documentation
|
3585
3644
|
#
|
@@ -3626,15 +3685,18 @@ module Aws::FSx
|
|
3626
3685
|
# client_request_token: "ClientRequestToken",
|
3627
3686
|
# name: "VolumeName", # required
|
3628
3687
|
# ontap_configuration: {
|
3629
|
-
# junction_path: "JunctionPath",
|
3688
|
+
# junction_path: "JunctionPath",
|
3630
3689
|
# security_style: "UNIX", # accepts UNIX, NTFS, MIXED
|
3631
3690
|
# size_in_megabytes: 1, # required
|
3632
|
-
# storage_efficiency_enabled: false,
|
3691
|
+
# storage_efficiency_enabled: false,
|
3633
3692
|
# storage_virtual_machine_id: "StorageVirtualMachineId", # required
|
3634
3693
|
# tiering_policy: {
|
3635
3694
|
# cooling_period: 1,
|
3636
3695
|
# name: "SNAPSHOT_ONLY", # accepts SNAPSHOT_ONLY, AUTO, ALL, NONE
|
3637
3696
|
# },
|
3697
|
+
# ontap_volume_type: "RW", # accepts RW, DP
|
3698
|
+
# snapshot_policy: "SnapshotPolicy",
|
3699
|
+
# copy_tags_to_backups: false,
|
3638
3700
|
# },
|
3639
3701
|
# tags: [
|
3640
3702
|
# {
|
@@ -3661,6 +3723,8 @@ module Aws::FSx
|
|
3661
3723
|
# resp.volume.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
3662
3724
|
# resp.volume.ontap_configuration.uuid #=> String
|
3663
3725
|
# resp.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
3726
|
+
# resp.volume.ontap_configuration.snapshot_policy #=> String
|
3727
|
+
# resp.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
3664
3728
|
# resp.volume.resource_arn #=> String
|
3665
3729
|
# resp.volume.tags #=> Array
|
3666
3730
|
# resp.volume.tags[0].key #=> String
|
@@ -3669,7 +3733,7 @@ module Aws::FSx
|
|
3669
3733
|
# resp.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
3670
3734
|
# resp.volume.lifecycle_transition_reason.message #=> String
|
3671
3735
|
# resp.volume.administrative_actions #=> Array
|
3672
|
-
# 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"
|
3736
|
+
# 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"
|
3673
3737
|
# resp.volume.administrative_actions[0].progress_percent #=> Integer
|
3674
3738
|
# resp.volume.administrative_actions[0].request_time #=> Time
|
3675
3739
|
# resp.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -3759,7 +3823,7 @@ module Aws::FSx
|
|
3759
3823
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
3760
3824
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
3761
3825
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
3762
|
-
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
3826
|
+
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
3763
3827
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
3764
3828
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
3765
3829
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -3797,6 +3861,9 @@ module Aws::FSx
|
|
3797
3861
|
# resp.volume.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
3798
3862
|
# resp.volume.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
3799
3863
|
# resp.volume.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
3864
|
+
# resp.volume.open_zfs_configuration.restore_to_snapshot #=> String
|
3865
|
+
# resp.volume.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
3866
|
+
# resp.volume.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
3800
3867
|
#
|
3801
3868
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateVolumeFromBackup AWS API Documentation
|
3802
3869
|
#
|
@@ -4455,7 +4522,7 @@ module Aws::FSx
|
|
4455
4522
|
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
4456
4523
|
# resp.backups[0].file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
4457
4524
|
# resp.backups[0].file_system.administrative_actions #=> Array
|
4458
|
-
# 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"
|
4525
|
+
# 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"
|
4459
4526
|
# resp.backups[0].file_system.administrative_actions[0].progress_percent #=> Integer
|
4460
4527
|
# resp.backups[0].file_system.administrative_actions[0].request_time #=> Time
|
4461
4528
|
# resp.backups[0].file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -4476,6 +4543,8 @@ module Aws::FSx
|
|
4476
4543
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
4477
4544
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
4478
4545
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
4546
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
4547
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
4479
4548
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
4480
4549
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
4481
4550
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -4503,6 +4572,9 @@ module Aws::FSx
|
|
4503
4572
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
4504
4573
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
4505
4574
|
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
4575
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
4576
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
4577
|
+
# resp.backups[0].file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
4506
4578
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
4507
4579
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
4508
4580
|
# resp.backups[0].file_system.administrative_actions[0].target_snapshot_values.name #=> String
|
@@ -4536,7 +4608,7 @@ module Aws::FSx
|
|
4536
4608
|
# resp.backups[0].file_system.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
4537
4609
|
# resp.backups[0].file_system.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
4538
4610
|
# resp.backups[0].file_system.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
4539
|
-
# resp.backups[0].file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
4611
|
+
# resp.backups[0].file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
4540
4612
|
# resp.backups[0].file_system.open_zfs_configuration.throughput_capacity #=> Integer
|
4541
4613
|
# resp.backups[0].file_system.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
4542
4614
|
# resp.backups[0].file_system.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -4564,6 +4636,8 @@ module Aws::FSx
|
|
4564
4636
|
# resp.backups[0].volume.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
4565
4637
|
# resp.backups[0].volume.ontap_configuration.uuid #=> String
|
4566
4638
|
# resp.backups[0].volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
4639
|
+
# resp.backups[0].volume.ontap_configuration.snapshot_policy #=> String
|
4640
|
+
# resp.backups[0].volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
4567
4641
|
# resp.backups[0].volume.resource_arn #=> String
|
4568
4642
|
# resp.backups[0].volume.tags #=> Array
|
4569
4643
|
# resp.backups[0].volume.tags[0].key #=> String
|
@@ -4572,7 +4646,7 @@ module Aws::FSx
|
|
4572
4646
|
# resp.backups[0].volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
4573
4647
|
# resp.backups[0].volume.lifecycle_transition_reason.message #=> String
|
4574
4648
|
# resp.backups[0].volume.administrative_actions #=> Array
|
4575
|
-
# 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"
|
4649
|
+
# 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"
|
4576
4650
|
# resp.backups[0].volume.administrative_actions[0].progress_percent #=> Integer
|
4577
4651
|
# resp.backups[0].volume.administrative_actions[0].request_time #=> Time
|
4578
4652
|
# resp.backups[0].volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -4662,7 +4736,7 @@ module Aws::FSx
|
|
4662
4736
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
4663
4737
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
4664
4738
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
4665
|
-
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
4739
|
+
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
4666
4740
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
4667
4741
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
4668
4742
|
# resp.backups[0].volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -4700,6 +4774,9 @@ module Aws::FSx
|
|
4700
4774
|
# resp.backups[0].volume.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
4701
4775
|
# resp.backups[0].volume.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
4702
4776
|
# resp.backups[0].volume.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
4777
|
+
# resp.backups[0].volume.open_zfs_configuration.restore_to_snapshot #=> String
|
4778
|
+
# resp.backups[0].volume.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
4779
|
+
# resp.backups[0].volume.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
4703
4780
|
# resp.next_token #=> String
|
4704
4781
|
#
|
4705
4782
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeBackups AWS API Documentation
|
@@ -5238,7 +5315,7 @@ module Aws::FSx
|
|
5238
5315
|
# resp.file_systems[0].lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
5239
5316
|
# resp.file_systems[0].lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
5240
5317
|
# resp.file_systems[0].administrative_actions #=> Array
|
5241
|
-
# 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"
|
5318
|
+
# 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"
|
5242
5319
|
# resp.file_systems[0].administrative_actions[0].progress_percent #=> Integer
|
5243
5320
|
# resp.file_systems[0].administrative_actions[0].request_time #=> Time
|
5244
5321
|
# resp.file_systems[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -5259,6 +5336,8 @@ module Aws::FSx
|
|
5259
5336
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
5260
5337
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
5261
5338
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
5339
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
5340
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
5262
5341
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.resource_arn #=> String
|
5263
5342
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.tags #=> Array
|
5264
5343
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -5286,6 +5365,9 @@ module Aws::FSx
|
|
5286
5365
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
5287
5366
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
5288
5367
|
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
5368
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
5369
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
5370
|
+
# resp.file_systems[0].administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
5289
5371
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
5290
5372
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
5291
5373
|
# resp.file_systems[0].administrative_actions[0].target_snapshot_values.name #=> String
|
@@ -5319,7 +5401,7 @@ module Aws::FSx
|
|
5319
5401
|
# resp.file_systems[0].open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
5320
5402
|
# resp.file_systems[0].open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
5321
5403
|
# resp.file_systems[0].open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
5322
|
-
# resp.file_systems[0].open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
5404
|
+
# resp.file_systems[0].open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
5323
5405
|
# resp.file_systems[0].open_zfs_configuration.throughput_capacity #=> Integer
|
5324
5406
|
# resp.file_systems[0].open_zfs_configuration.weekly_maintenance_start_time #=> String
|
5325
5407
|
# resp.file_systems[0].open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -5417,7 +5499,7 @@ module Aws::FSx
|
|
5417
5499
|
# resp.snapshots[0].tags[0].key #=> String
|
5418
5500
|
# resp.snapshots[0].tags[0].value #=> String
|
5419
5501
|
# resp.snapshots[0].administrative_actions #=> Array
|
5420
|
-
# 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"
|
5502
|
+
# 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"
|
5421
5503
|
# resp.snapshots[0].administrative_actions[0].progress_percent #=> Integer
|
5422
5504
|
# resp.snapshots[0].administrative_actions[0].request_time #=> Time
|
5423
5505
|
# resp.snapshots[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -5507,7 +5589,7 @@ module Aws::FSx
|
|
5507
5589
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
5508
5590
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
5509
5591
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
5510
|
-
# resp.snapshots[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
5592
|
+
# resp.snapshots[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
5511
5593
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
5512
5594
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
5513
5595
|
# resp.snapshots[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -5529,6 +5611,8 @@ module Aws::FSx
|
|
5529
5611
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
5530
5612
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
5531
5613
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
5614
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
5615
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
5532
5616
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.resource_arn #=> String
|
5533
5617
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.tags #=> Array
|
5534
5618
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -5556,6 +5640,9 @@ module Aws::FSx
|
|
5556
5640
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
5557
5641
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
5558
5642
|
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
5643
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
5644
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
5645
|
+
# resp.snapshots[0].administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
5559
5646
|
# resp.snapshots[0].administrative_actions[0].target_snapshot_values #=> Types::Snapshot
|
5560
5647
|
# resp.next_token #=> String
|
5561
5648
|
#
|
@@ -5636,7 +5723,6 @@ module Aws::FSx
|
|
5636
5723
|
# resp.storage_virtual_machines[0].name #=> String
|
5637
5724
|
# resp.storage_virtual_machines[0].resource_arn #=> String
|
5638
5725
|
# resp.storage_virtual_machines[0].storage_virtual_machine_id #=> String
|
5639
|
-
# resp.storage_virtual_machines[0].subtype #=> String, one of "DEFAULT", "DP_DESTINATION", "SYNC_DESTINATION", "SYNC_SOURCE"
|
5640
5726
|
# resp.storage_virtual_machines[0].uuid #=> String
|
5641
5727
|
# resp.storage_virtual_machines[0].tags #=> Array
|
5642
5728
|
# resp.storage_virtual_machines[0].tags[0].key #=> String
|
@@ -5713,6 +5799,8 @@ module Aws::FSx
|
|
5713
5799
|
# resp.volumes[0].ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
5714
5800
|
# resp.volumes[0].ontap_configuration.uuid #=> String
|
5715
5801
|
# resp.volumes[0].ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
5802
|
+
# resp.volumes[0].ontap_configuration.snapshot_policy #=> String
|
5803
|
+
# resp.volumes[0].ontap_configuration.copy_tags_to_backups #=> Boolean
|
5716
5804
|
# resp.volumes[0].resource_arn #=> String
|
5717
5805
|
# resp.volumes[0].tags #=> Array
|
5718
5806
|
# resp.volumes[0].tags[0].key #=> String
|
@@ -5721,7 +5809,7 @@ module Aws::FSx
|
|
5721
5809
|
# resp.volumes[0].volume_type #=> String, one of "ONTAP", "OPENZFS"
|
5722
5810
|
# resp.volumes[0].lifecycle_transition_reason.message #=> String
|
5723
5811
|
# resp.volumes[0].administrative_actions #=> Array
|
5724
|
-
# 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"
|
5812
|
+
# 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"
|
5725
5813
|
# resp.volumes[0].administrative_actions[0].progress_percent #=> Integer
|
5726
5814
|
# resp.volumes[0].administrative_actions[0].request_time #=> Time
|
5727
5815
|
# resp.volumes[0].administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -5811,7 +5899,7 @@ module Aws::FSx
|
|
5811
5899
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
5812
5900
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
5813
5901
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
5814
|
-
# resp.volumes[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
5902
|
+
# resp.volumes[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
5815
5903
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
5816
5904
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
5817
5905
|
# resp.volumes[0].administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -5849,6 +5937,9 @@ module Aws::FSx
|
|
5849
5937
|
# resp.volumes[0].open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
5850
5938
|
# resp.volumes[0].open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
5851
5939
|
# resp.volumes[0].open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
5940
|
+
# resp.volumes[0].open_zfs_configuration.restore_to_snapshot #=> String
|
5941
|
+
# resp.volumes[0].open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
5942
|
+
# resp.volumes[0].open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
5852
5943
|
# resp.next_token #=> String
|
5853
5944
|
#
|
5854
5945
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeVolumes AWS API Documentation
|
@@ -6098,7 +6189,7 @@ module Aws::FSx
|
|
6098
6189
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
6099
6190
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
6100
6191
|
# resp.file_system.administrative_actions #=> Array
|
6101
|
-
# 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"
|
6192
|
+
# 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"
|
6102
6193
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
6103
6194
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
6104
6195
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -6119,6 +6210,8 @@ module Aws::FSx
|
|
6119
6210
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
6120
6211
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
6121
6212
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
6213
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
6214
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
6122
6215
|
# resp.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
6123
6216
|
# resp.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
6124
6217
|
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -6146,6 +6239,9 @@ module Aws::FSx
|
|
6146
6239
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
6147
6240
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
6148
6241
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
6242
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
6243
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
6244
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
6149
6245
|
# resp.file_system.administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
6150
6246
|
# resp.file_system.administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
6151
6247
|
# resp.file_system.administrative_actions[0].target_snapshot_values.name #=> String
|
@@ -6179,7 +6275,7 @@ module Aws::FSx
|
|
6179
6275
|
# resp.file_system.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
6180
6276
|
# resp.file_system.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
6181
6277
|
# resp.file_system.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
6182
|
-
# resp.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
6278
|
+
# resp.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
6183
6279
|
# resp.file_system.open_zfs_configuration.throughput_capacity #=> Integer
|
6184
6280
|
# resp.file_system.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
6185
6281
|
# resp.file_system.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -6231,6 +6327,7 @@ module Aws::FSx
|
|
6231
6327
|
#
|
6232
6328
|
# * {Types::RestoreVolumeFromSnapshotResponse#volume_id #volume_id} => String
|
6233
6329
|
# * {Types::RestoreVolumeFromSnapshotResponse#lifecycle #lifecycle} => String
|
6330
|
+
# * {Types::RestoreVolumeFromSnapshotResponse#administrative_actions #administrative_actions} => Array<Types::AdministrativeAction>
|
6234
6331
|
#
|
6235
6332
|
# @example Request syntax with placeholder values
|
6236
6333
|
#
|
@@ -6245,6 +6342,162 @@ module Aws::FSx
|
|
6245
6342
|
#
|
6246
6343
|
# resp.volume_id #=> String
|
6247
6344
|
# resp.lifecycle #=> String, one of "CREATING", "CREATED", "DELETING", "FAILED", "MISCONFIGURED", "PENDING", "AVAILABLE"
|
6345
|
+
# resp.administrative_actions #=> Array
|
6346
|
+
# 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"
|
6347
|
+
# resp.administrative_actions[0].progress_percent #=> Integer
|
6348
|
+
# resp.administrative_actions[0].request_time #=> Time
|
6349
|
+
# resp.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
6350
|
+
# resp.administrative_actions[0].target_file_system_values.owner_id #=> String
|
6351
|
+
# resp.administrative_actions[0].target_file_system_values.creation_time #=> Time
|
6352
|
+
# resp.administrative_actions[0].target_file_system_values.file_system_id #=> String
|
6353
|
+
# resp.administrative_actions[0].target_file_system_values.file_system_type #=> String, one of "WINDOWS", "LUSTRE", "ONTAP", "OPENZFS"
|
6354
|
+
# resp.administrative_actions[0].target_file_system_values.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING", "MISCONFIGURED_UNAVAILABLE"
|
6355
|
+
# resp.administrative_actions[0].target_file_system_values.failure_details.message #=> String
|
6356
|
+
# resp.administrative_actions[0].target_file_system_values.storage_capacity #=> Integer
|
6357
|
+
# resp.administrative_actions[0].target_file_system_values.storage_type #=> String, one of "SSD", "HDD"
|
6358
|
+
# resp.administrative_actions[0].target_file_system_values.vpc_id #=> String
|
6359
|
+
# resp.administrative_actions[0].target_file_system_values.subnet_ids #=> Array
|
6360
|
+
# resp.administrative_actions[0].target_file_system_values.subnet_ids[0] #=> String
|
6361
|
+
# resp.administrative_actions[0].target_file_system_values.network_interface_ids #=> Array
|
6362
|
+
# resp.administrative_actions[0].target_file_system_values.network_interface_ids[0] #=> String
|
6363
|
+
# resp.administrative_actions[0].target_file_system_values.dns_name #=> String
|
6364
|
+
# resp.administrative_actions[0].target_file_system_values.kms_key_id #=> String
|
6365
|
+
# resp.administrative_actions[0].target_file_system_values.resource_arn #=> String
|
6366
|
+
# resp.administrative_actions[0].target_file_system_values.tags #=> Array
|
6367
|
+
# resp.administrative_actions[0].target_file_system_values.tags[0].key #=> String
|
6368
|
+
# resp.administrative_actions[0].target_file_system_values.tags[0].value #=> String
|
6369
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.active_directory_id #=> String
|
6370
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.self_managed_active_directory_configuration.domain_name #=> String
|
6371
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.self_managed_active_directory_configuration.organizational_unit_distinguished_name #=> String
|
6372
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.self_managed_active_directory_configuration.file_system_administrators_group #=> String
|
6373
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
6374
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
6375
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
6376
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1", "SINGLE_AZ_2"
|
6377
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.remote_administration_endpoint #=> String
|
6378
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.preferred_subnet_id #=> String
|
6379
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.preferred_file_server_ip #=> String
|
6380
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.throughput_capacity #=> Integer
|
6381
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.maintenance_operations_in_progress #=> Array
|
6382
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
6383
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.weekly_maintenance_start_time #=> String
|
6384
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.daily_automatic_backup_start_time #=> String
|
6385
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.automatic_backup_retention_days #=> Integer
|
6386
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.copy_tags_to_backups #=> Boolean
|
6387
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.aliases #=> Array
|
6388
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.aliases[0].name #=> String
|
6389
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
6390
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.audit_log_configuration.file_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
6391
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.audit_log_configuration.file_share_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
6392
|
+
# resp.administrative_actions[0].target_file_system_values.windows_configuration.audit_log_configuration.audit_log_destination #=> String
|
6393
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.weekly_maintenance_start_time #=> String
|
6394
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING", "FAILED"
|
6395
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_repository_configuration.import_path #=> String
|
6396
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_repository_configuration.export_path #=> String
|
6397
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
6398
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_repository_configuration.auto_import_policy #=> String, one of "NONE", "NEW", "NEW_CHANGED", "NEW_CHANGED_DELETED"
|
6399
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_repository_configuration.failure_details.message #=> String
|
6400
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1", "PERSISTENT_2"
|
6401
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.per_unit_storage_throughput #=> Integer
|
6402
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.mount_name #=> String
|
6403
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.daily_automatic_backup_start_time #=> String
|
6404
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.automatic_backup_retention_days #=> Integer
|
6405
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.copy_tags_to_backups #=> Boolean
|
6406
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.drive_cache_type #=> String, one of "NONE", "READ"
|
6407
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.data_compression_type #=> String, one of "NONE", "LZ4"
|
6408
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.level #=> String, one of "DISABLED", "WARN_ONLY", "ERROR_ONLY", "WARN_ERROR"
|
6409
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.log_configuration.destination #=> String
|
6410
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.root_squash #=> String
|
6411
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
6412
|
+
# resp.administrative_actions[0].target_file_system_values.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
6413
|
+
# resp.administrative_actions[0].target_file_system_values.administrative_actions #=> Types::AdministrativeActions
|
6414
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.automatic_backup_retention_days #=> Integer
|
6415
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.daily_automatic_backup_start_time #=> String
|
6416
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
6417
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.endpoint_ip_address_range #=> String
|
6418
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.dns_name #=> String
|
6419
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses #=> Array
|
6420
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.intercluster.ip_addresses[0] #=> String
|
6421
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.management.dns_name #=> String
|
6422
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.management.ip_addresses #=> Array
|
6423
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.endpoints.management.ip_addresses[0] #=> String
|
6424
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
6425
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.disk_iops_configuration.iops #=> Integer
|
6426
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.preferred_subnet_id #=> String
|
6427
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.route_table_ids #=> Array
|
6428
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.route_table_ids[0] #=> String
|
6429
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.throughput_capacity #=> Integer
|
6430
|
+
# resp.administrative_actions[0].target_file_system_values.ontap_configuration.weekly_maintenance_start_time #=> String
|
6431
|
+
# resp.administrative_actions[0].target_file_system_values.file_system_type_version #=> String
|
6432
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.automatic_backup_retention_days #=> Integer
|
6433
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
6434
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
6435
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
6436
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
6437
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
6438
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
6439
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
6440
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.iops #=> Integer
|
6441
|
+
# resp.administrative_actions[0].target_file_system_values.open_zfs_configuration.root_volume_id #=> String
|
6442
|
+
# resp.administrative_actions[0].failure_details.message #=> String
|
6443
|
+
# resp.administrative_actions[0].target_volume_values.creation_time #=> Time
|
6444
|
+
# resp.administrative_actions[0].target_volume_values.file_system_id #=> String
|
6445
|
+
# resp.administrative_actions[0].target_volume_values.lifecycle #=> String, one of "CREATING", "CREATED", "DELETING", "FAILED", "MISCONFIGURED", "PENDING", "AVAILABLE"
|
6446
|
+
# resp.administrative_actions[0].target_volume_values.name #=> String
|
6447
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.flex_cache_endpoint_type #=> String, one of "NONE", "ORIGIN", "CACHE"
|
6448
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.junction_path #=> String
|
6449
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.security_style #=> String, one of "UNIX", "NTFS", "MIXED"
|
6450
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.size_in_megabytes #=> Integer
|
6451
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.storage_efficiency_enabled #=> Boolean
|
6452
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.storage_virtual_machine_id #=> String
|
6453
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.storage_virtual_machine_root #=> Boolean
|
6454
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.cooling_period #=> Integer
|
6455
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
6456
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
6457
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
6458
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
6459
|
+
# resp.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
6460
|
+
# resp.administrative_actions[0].target_volume_values.resource_arn #=> String
|
6461
|
+
# resp.administrative_actions[0].target_volume_values.tags #=> Array
|
6462
|
+
# resp.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
6463
|
+
# resp.administrative_actions[0].target_volume_values.tags[0].value #=> String
|
6464
|
+
# resp.administrative_actions[0].target_volume_values.volume_id #=> String
|
6465
|
+
# resp.administrative_actions[0].target_volume_values.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
6466
|
+
# resp.administrative_actions[0].target_volume_values.lifecycle_transition_reason.message #=> String
|
6467
|
+
# resp.administrative_actions[0].target_volume_values.administrative_actions #=> Types::AdministrativeActions
|
6468
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.parent_volume_id #=> String
|
6469
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.volume_path #=> String
|
6470
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_reservation_gi_b #=> Integer
|
6471
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.storage_capacity_quota_gi_b #=> Integer
|
6472
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.record_size_ki_b #=> Integer
|
6473
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.data_compression_type #=> String, one of "NONE", "ZSTD", "LZ4"
|
6474
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.copy_tags_to_snapshots #=> Boolean
|
6475
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.snapshot_arn #=> String
|
6476
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.origin_snapshot.copy_strategy #=> String, one of "CLONE", "FULL_COPY"
|
6477
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.read_only #=> Boolean
|
6478
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports #=> Array
|
6479
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports[0].client_configurations #=> Array
|
6480
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports[0].client_configurations[0].clients #=> String
|
6481
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports[0].client_configurations[0].options #=> Array
|
6482
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.nfs_exports[0].client_configurations[0].options[0] #=> String
|
6483
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas #=> Array
|
6484
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
6485
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
6486
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
6487
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
6488
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
6489
|
+
# resp.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
6490
|
+
# resp.administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
6491
|
+
# resp.administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
6492
|
+
# resp.administrative_actions[0].target_snapshot_values.name #=> String
|
6493
|
+
# resp.administrative_actions[0].target_snapshot_values.volume_id #=> String
|
6494
|
+
# resp.administrative_actions[0].target_snapshot_values.creation_time #=> Time
|
6495
|
+
# resp.administrative_actions[0].target_snapshot_values.lifecycle #=> String, one of "PENDING", "CREATING", "DELETING", "AVAILABLE"
|
6496
|
+
# resp.administrative_actions[0].target_snapshot_values.lifecycle_transition_reason.message #=> String
|
6497
|
+
# resp.administrative_actions[0].target_snapshot_values.tags #=> Array
|
6498
|
+
# resp.administrative_actions[0].target_snapshot_values.tags[0].key #=> String
|
6499
|
+
# resp.administrative_actions[0].target_snapshot_values.tags[0].value #=> String
|
6500
|
+
# resp.administrative_actions[0].target_snapshot_values.administrative_actions #=> Types::AdministrativeActions
|
6248
6501
|
#
|
6249
6502
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/RestoreVolumeFromSnapshot AWS API Documentation
|
6250
6503
|
#
|
@@ -6743,6 +6996,8 @@ module Aws::FSx
|
|
6743
6996
|
# iops: 1,
|
6744
6997
|
# },
|
6745
6998
|
# throughput_capacity: 1,
|
6999
|
+
# add_route_table_ids: ["RouteTableId"],
|
7000
|
+
# remove_route_table_ids: ["RouteTableId"],
|
6746
7001
|
# },
|
6747
7002
|
# open_zfs_configuration: {
|
6748
7003
|
# automatic_backup_retention_days: 1,
|
@@ -6824,7 +7079,7 @@ module Aws::FSx
|
|
6824
7079
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids #=> Array
|
6825
7080
|
# resp.file_system.lustre_configuration.root_squash_configuration.no_squash_nids[0] #=> String
|
6826
7081
|
# resp.file_system.administrative_actions #=> Array
|
6827
|
-
# 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"
|
7082
|
+
# 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"
|
6828
7083
|
# resp.file_system.administrative_actions[0].progress_percent #=> Integer
|
6829
7084
|
# resp.file_system.administrative_actions[0].request_time #=> Time
|
6830
7085
|
# resp.file_system.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -6845,6 +7100,8 @@ module Aws::FSx
|
|
6845
7100
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
6846
7101
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
6847
7102
|
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
7103
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
7104
|
+
# resp.file_system.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
6848
7105
|
# resp.file_system.administrative_actions[0].target_volume_values.resource_arn #=> String
|
6849
7106
|
# resp.file_system.administrative_actions[0].target_volume_values.tags #=> Array
|
6850
7107
|
# resp.file_system.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -6872,6 +7129,9 @@ module Aws::FSx
|
|
6872
7129
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
6873
7130
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
6874
7131
|
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
7132
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
7133
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
7134
|
+
# resp.file_system.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
6875
7135
|
# resp.file_system.administrative_actions[0].target_snapshot_values.resource_arn #=> String
|
6876
7136
|
# resp.file_system.administrative_actions[0].target_snapshot_values.snapshot_id #=> String
|
6877
7137
|
# resp.file_system.administrative_actions[0].target_snapshot_values.name #=> String
|
@@ -6905,7 +7165,7 @@ module Aws::FSx
|
|
6905
7165
|
# resp.file_system.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
6906
7166
|
# resp.file_system.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
6907
7167
|
# resp.file_system.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
6908
|
-
# resp.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
7168
|
+
# resp.file_system.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
6909
7169
|
# resp.file_system.open_zfs_configuration.throughput_capacity #=> Integer
|
6910
7170
|
# resp.file_system.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
6911
7171
|
# resp.file_system.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -6964,7 +7224,7 @@ module Aws::FSx
|
|
6964
7224
|
# resp.snapshot.tags[0].key #=> String
|
6965
7225
|
# resp.snapshot.tags[0].value #=> String
|
6966
7226
|
# resp.snapshot.administrative_actions #=> Array
|
6967
|
-
# 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"
|
7227
|
+
# 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"
|
6968
7228
|
# resp.snapshot.administrative_actions[0].progress_percent #=> Integer
|
6969
7229
|
# resp.snapshot.administrative_actions[0].request_time #=> Time
|
6970
7230
|
# resp.snapshot.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -7054,7 +7314,7 @@ module Aws::FSx
|
|
7054
7314
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
7055
7315
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
7056
7316
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
7057
|
-
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
7317
|
+
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
7058
7318
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
7059
7319
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
7060
7320
|
# resp.snapshot.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -7076,6 +7336,8 @@ module Aws::FSx
|
|
7076
7336
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
7077
7337
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.uuid #=> String
|
7078
7338
|
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
7339
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.snapshot_policy #=> String
|
7340
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.ontap_configuration.copy_tags_to_backups #=> Boolean
|
7079
7341
|
# resp.snapshot.administrative_actions[0].target_volume_values.resource_arn #=> String
|
7080
7342
|
# resp.snapshot.administrative_actions[0].target_volume_values.tags #=> Array
|
7081
7343
|
# resp.snapshot.administrative_actions[0].target_volume_values.tags[0].key #=> String
|
@@ -7103,6 +7365,9 @@ module Aws::FSx
|
|
7103
7365
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
7104
7366
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
7105
7367
|
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
7368
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.restore_to_snapshot #=> String
|
7369
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
7370
|
+
# resp.snapshot.administrative_actions[0].target_volume_values.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
7106
7371
|
# resp.snapshot.administrative_actions[0].target_snapshot_values #=> Types::Snapshot
|
7107
7372
|
#
|
7108
7373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateSnapshot AWS API Documentation
|
@@ -7182,7 +7447,6 @@ module Aws::FSx
|
|
7182
7447
|
# resp.storage_virtual_machine.name #=> String
|
7183
7448
|
# resp.storage_virtual_machine.resource_arn #=> String
|
7184
7449
|
# resp.storage_virtual_machine.storage_virtual_machine_id #=> String
|
7185
|
-
# resp.storage_virtual_machine.subtype #=> String, one of "DEFAULT", "DP_DESTINATION", "SYNC_DESTINATION", "SYNC_SOURCE"
|
7186
7450
|
# resp.storage_virtual_machine.uuid #=> String
|
7187
7451
|
# resp.storage_virtual_machine.tags #=> Array
|
7188
7452
|
# resp.storage_virtual_machine.tags[0].key #=> String
|
@@ -7245,6 +7509,8 @@ module Aws::FSx
|
|
7245
7509
|
# cooling_period: 1,
|
7246
7510
|
# name: "SNAPSHOT_ONLY", # accepts SNAPSHOT_ONLY, AUTO, ALL, NONE
|
7247
7511
|
# },
|
7512
|
+
# snapshot_policy: "SnapshotPolicy",
|
7513
|
+
# copy_tags_to_backups: false,
|
7248
7514
|
# },
|
7249
7515
|
# name: "VolumeName",
|
7250
7516
|
# open_zfs_configuration: {
|
@@ -7290,6 +7556,8 @@ module Aws::FSx
|
|
7290
7556
|
# resp.volume.ontap_configuration.tiering_policy.name #=> String, one of "SNAPSHOT_ONLY", "AUTO", "ALL", "NONE"
|
7291
7557
|
# resp.volume.ontap_configuration.uuid #=> String
|
7292
7558
|
# resp.volume.ontap_configuration.ontap_volume_type #=> String, one of "RW", "DP", "LS"
|
7559
|
+
# resp.volume.ontap_configuration.snapshot_policy #=> String
|
7560
|
+
# resp.volume.ontap_configuration.copy_tags_to_backups #=> Boolean
|
7293
7561
|
# resp.volume.resource_arn #=> String
|
7294
7562
|
# resp.volume.tags #=> Array
|
7295
7563
|
# resp.volume.tags[0].key #=> String
|
@@ -7298,7 +7566,7 @@ module Aws::FSx
|
|
7298
7566
|
# resp.volume.volume_type #=> String, one of "ONTAP", "OPENZFS"
|
7299
7567
|
# resp.volume.lifecycle_transition_reason.message #=> String
|
7300
7568
|
# resp.volume.administrative_actions #=> Array
|
7301
|
-
# 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"
|
7569
|
+
# 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"
|
7302
7570
|
# resp.volume.administrative_actions[0].progress_percent #=> Integer
|
7303
7571
|
# resp.volume.administrative_actions[0].request_time #=> Time
|
7304
7572
|
# resp.volume.administrative_actions[0].status #=> String, one of "FAILED", "IN_PROGRESS", "PENDING", "COMPLETED", "UPDATED_OPTIMIZING"
|
@@ -7388,7 +7656,7 @@ module Aws::FSx
|
|
7388
7656
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_backups #=> Boolean
|
7389
7657
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.copy_tags_to_volumes #=> Boolean
|
7390
7658
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.daily_automatic_backup_start_time #=> String
|
7391
|
-
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1"
|
7659
|
+
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.deployment_type #=> String, one of "SINGLE_AZ_1", "SINGLE_AZ_2"
|
7392
7660
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.throughput_capacity #=> Integer
|
7393
7661
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.weekly_maintenance_start_time #=> String
|
7394
7662
|
# resp.volume.administrative_actions[0].target_file_system_values.open_zfs_configuration.disk_iops_configuration.mode #=> String, one of "AUTOMATIC", "USER_PROVISIONED"
|
@@ -7426,6 +7694,9 @@ module Aws::FSx
|
|
7426
7694
|
# resp.volume.open_zfs_configuration.user_and_group_quotas[0].type #=> String, one of "USER", "GROUP"
|
7427
7695
|
# resp.volume.open_zfs_configuration.user_and_group_quotas[0].id #=> Integer
|
7428
7696
|
# resp.volume.open_zfs_configuration.user_and_group_quotas[0].storage_capacity_quota_gi_b #=> Integer
|
7697
|
+
# resp.volume.open_zfs_configuration.restore_to_snapshot #=> String
|
7698
|
+
# resp.volume.open_zfs_configuration.delete_intermediate_snaphots #=> Boolean
|
7699
|
+
# resp.volume.open_zfs_configuration.delete_cloned_volumes #=> Boolean
|
7429
7700
|
#
|
7430
7701
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateVolume AWS API Documentation
|
7431
7702
|
#
|
@@ -7449,7 +7720,7 @@ module Aws::FSx
|
|
7449
7720
|
params: params,
|
7450
7721
|
config: config)
|
7451
7722
|
context[:gem_name] = 'aws-sdk-fsx'
|
7452
|
-
context[:gem_version] = '1.
|
7723
|
+
context[:gem_version] = '1.62.0'
|
7453
7724
|
Seahorse::Client::Request.new(handlers, context)
|
7454
7725
|
end
|
7455
7726
|
|