aws-sdk-fsx 1.60.0 → 1.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +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/types.rb
CHANGED
@@ -112,6 +112,11 @@ module Aws::FSx
|
|
112
112
|
# ONTAP or Amazon FSx for OpenZFS volume initiated from the Amazon
|
113
113
|
# FSx console, API (`UpdateVolume`), or CLI (`update-volume`).
|
114
114
|
#
|
115
|
+
# * `VOLUME_RESTORE` - An Amazon FSx for OpenZFS volume is returned to
|
116
|
+
# the state saved by the specified snapshot, initiated from an API
|
117
|
+
# (`RestoreVolumeFromSnapshot`) or CLI
|
118
|
+
# (`restore-volume-from-snapshot`).
|
119
|
+
#
|
115
120
|
# * `SNAPSHOT_UPDATE` - A snapshot update to an Amazon FSx for OpenZFS
|
116
121
|
# volume initiated from the Amazon FSx console, API
|
117
122
|
# (`UpdateSnapshot`), or CLI (`update-snapshot`).
|
@@ -1452,7 +1457,7 @@ module Aws::FSx
|
|
1452
1457
|
# copy_tags_to_backups: false,
|
1453
1458
|
# copy_tags_to_volumes: false,
|
1454
1459
|
# daily_automatic_backup_start_time: "DailyTime",
|
1455
|
-
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1
|
1460
|
+
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1, SINGLE_AZ_2
|
1456
1461
|
# throughput_capacity: 1, # required
|
1457
1462
|
# weekly_maintenance_start_time: "WeeklyTime",
|
1458
1463
|
# disk_iops_configuration: {
|
@@ -2029,13 +2034,13 @@ module Aws::FSx
|
|
2029
2034
|
#
|
2030
2035
|
# @!attribute [rw] endpoint_ip_address_range
|
2031
2036
|
# (Multi-AZ only) Specifies the IP address range in which the
|
2032
|
-
# endpoints to access your file system will be created. By default
|
2033
|
-
# Amazon FSx selects an unused IP address range
|
2034
|
-
# 198.19.* range.
|
2035
|
-
#
|
2036
|
-
#
|
2037
|
-
#
|
2038
|
-
#
|
2037
|
+
# endpoints to access your file system will be created. By default in
|
2038
|
+
# the Amazon FSx API, Amazon FSx selects an unused IP address range
|
2039
|
+
# for you from the 198.19.* range. By default in the Amazon FSx
|
2040
|
+
# console, Amazon FSx chooses the last 64 IP addresses from the VPC’s
|
2041
|
+
# primary CIDR range to use as the endpoint IP address range for the
|
2042
|
+
# file system. You can have overlapping endpoint IP addresses for file
|
2043
|
+
# systems deployed in the same VPC/route tables.
|
2039
2044
|
# @return [String]
|
2040
2045
|
#
|
2041
2046
|
# @!attribute [rw] fsx_admin_password
|
@@ -2064,7 +2069,7 @@ module Aws::FSx
|
|
2064
2069
|
#
|
2065
2070
|
# @!attribute [rw] throughput_capacity
|
2066
2071
|
# Sets the throughput capacity for the file system that you're
|
2067
|
-
# creating. Valid values are 128, 256, 512, 1024, and
|
2072
|
+
# creating. Valid values are 128, 256, 512, 1024, 2048, and 4096 MBps.
|
2068
2073
|
# @return [Integer]
|
2069
2074
|
#
|
2070
2075
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -2112,7 +2117,7 @@ module Aws::FSx
|
|
2112
2117
|
# copy_tags_to_backups: false,
|
2113
2118
|
# copy_tags_to_volumes: false,
|
2114
2119
|
# daily_automatic_backup_start_time: "DailyTime",
|
2115
|
-
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1
|
2120
|
+
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1, SINGLE_AZ_2
|
2116
2121
|
# throughput_capacity: 1, # required
|
2117
2122
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2118
2123
|
# disk_iops_configuration: {
|
@@ -2178,16 +2183,43 @@ module Aws::FSx
|
|
2178
2183
|
# @return [String]
|
2179
2184
|
#
|
2180
2185
|
# @!attribute [rw] deployment_type
|
2181
|
-
# Specifies the file system deployment type.
|
2182
|
-
#
|
2183
|
-
#
|
2186
|
+
# Specifies the file system deployment type. Single AZ deployment
|
2187
|
+
# types are configured for redundancy within a single Availability
|
2188
|
+
# Zone in an Amazon Web Services Region . Valid values are the
|
2189
|
+
# following:
|
2190
|
+
#
|
2191
|
+
# * `SINGLE_AZ_1`- (Default) Creates file systems with throughput
|
2192
|
+
# capacities of 64 - 4,096 MB/s. `Single_AZ_1` is available in all
|
2193
|
+
# Amazon Web Services Regions where Amazon FSx for OpenZFS is
|
2194
|
+
# available, except US West (Oregon).
|
2195
|
+
#
|
2196
|
+
# * `SINGLE_AZ_2`- Creates file systems with throughput capacities of
|
2197
|
+
# 160 - 10,240 MB/s using an NVMe L2ARC cache. `Single_AZ_2` is
|
2198
|
+
# available only in the US East (N. Virginia), US East (Ohio), US
|
2199
|
+
# West (Oregon), and Europe (Ireland) Amazon Web Services Regions.
|
2200
|
+
#
|
2201
|
+
# For more information, see: [Deployment type availability][1] and [
|
2202
|
+
# File system performance][2]in the*Amazon FSx for OpenZFS User
|
2203
|
+
# Guide*.
|
2204
|
+
#
|
2205
|
+
#
|
2206
|
+
#
|
2207
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/available-aws-regions.html
|
2208
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/zfs-fs-performance.html
|
2184
2209
|
# @return [String]
|
2185
2210
|
#
|
2186
2211
|
# @!attribute [rw] throughput_capacity
|
2187
2212
|
# Specifies the throughput of an Amazon FSx for OpenZFS file system,
|
2188
|
-
# measured in megabytes per second (MB/s). Valid values
|
2189
|
-
#
|
2190
|
-
#
|
2213
|
+
# measured in megabytes per second (MB/s). Valid values depend on the
|
2214
|
+
# DeploymentType you choose, as follows:
|
2215
|
+
#
|
2216
|
+
# * For `SINGLE_AZ_1`, valid values are 64, 128, 256, 512, 1024, 2048,
|
2217
|
+
# 3072, or 4096 MB/s.
|
2218
|
+
#
|
2219
|
+
# * For `SINGLE_AZ_2`, valid values are 160, 320, 640, 1280, 2560,
|
2220
|
+
# 3840, 5120, 7680, or 10240 MB/s.
|
2221
|
+
#
|
2222
|
+
# You pay for additional throughput capacity that you provision.
|
2191
2223
|
# @return [Integer]
|
2192
2224
|
#
|
2193
2225
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -2324,7 +2356,7 @@ module Aws::FSx
|
|
2324
2356
|
# copy_tags_to_backups: false,
|
2325
2357
|
# copy_tags_to_volumes: false,
|
2326
2358
|
# daily_automatic_backup_start_time: "DailyTime",
|
2327
|
-
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1
|
2359
|
+
# deployment_type: "SINGLE_AZ_1", # required, accepts SINGLE_AZ_1, SINGLE_AZ_2
|
2328
2360
|
# throughput_capacity: 1, # required
|
2329
2361
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2330
2362
|
# disk_iops_configuration: {
|
@@ -2765,15 +2797,18 @@ module Aws::FSx
|
|
2765
2797
|
# data as a hash:
|
2766
2798
|
#
|
2767
2799
|
# {
|
2768
|
-
# junction_path: "JunctionPath",
|
2800
|
+
# junction_path: "JunctionPath",
|
2769
2801
|
# security_style: "UNIX", # accepts UNIX, NTFS, MIXED
|
2770
2802
|
# size_in_megabytes: 1, # required
|
2771
|
-
# storage_efficiency_enabled: false,
|
2803
|
+
# storage_efficiency_enabled: false,
|
2772
2804
|
# storage_virtual_machine_id: "StorageVirtualMachineId", # required
|
2773
2805
|
# tiering_policy: {
|
2774
2806
|
# cooling_period: 1,
|
2775
2807
|
# name: "SNAPSHOT_ONLY", # accepts SNAPSHOT_ONLY, AUTO, ALL, NONE
|
2776
2808
|
# },
|
2809
|
+
# ontap_volume_type: "RW", # accepts RW, DP
|
2810
|
+
# snapshot_policy: "SnapshotPolicy",
|
2811
|
+
# copy_tags_to_backups: false,
|
2777
2812
|
# }
|
2778
2813
|
#
|
2779
2814
|
# @!attribute [rw] junction_path
|
@@ -2852,6 +2887,64 @@ module Aws::FSx
|
|
2852
2887
|
# ^
|
2853
2888
|
# @return [Types::TieringPolicy]
|
2854
2889
|
#
|
2890
|
+
# @!attribute [rw] ontap_volume_type
|
2891
|
+
# Specifies the type of volume you are creating. Valid values are the
|
2892
|
+
# following:
|
2893
|
+
#
|
2894
|
+
# * `RW` specifies a read/write volume. `RW` is the default.
|
2895
|
+
#
|
2896
|
+
# * `DP` specifies a data-protection volume. A `DP` volume is
|
2897
|
+
# read-only and can be used as the destination of a NetApp
|
2898
|
+
# SnapMirror relationship.
|
2899
|
+
#
|
2900
|
+
# For more information, see [Volume types][1] in the *Amazon FSx for
|
2901
|
+
# NetApp ONTAP User Guide*.
|
2902
|
+
#
|
2903
|
+
#
|
2904
|
+
#
|
2905
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/volume-types
|
2906
|
+
# @return [String]
|
2907
|
+
#
|
2908
|
+
# @!attribute [rw] snapshot_policy
|
2909
|
+
# Specifies the snapshot policy for the volume. There are three
|
2910
|
+
# built-in snapshot policies:
|
2911
|
+
#
|
2912
|
+
# * `default`\: This is the default policy. A maximum of six hourly
|
2913
|
+
# snapshots taken five minutes past the hour. A maximum of two daily
|
2914
|
+
# snapshots taken Monday through Saturday at 10 minutes after
|
2915
|
+
# midnight. A maximum of two weekly snapshots taken every Sunday at
|
2916
|
+
# 15 minutes after midnight.
|
2917
|
+
#
|
2918
|
+
# * `default-1weekly`\: This policy is the same as the `default`
|
2919
|
+
# policy except that it only retains one snapshot from the weekly
|
2920
|
+
# schedule.
|
2921
|
+
#
|
2922
|
+
# * `none`\: This policy does not take any snapshots. This policy can
|
2923
|
+
# be assigned to volumes to prevent automatic snapshots from being
|
2924
|
+
# taken.
|
2925
|
+
#
|
2926
|
+
# You can also provide the name of a custom policy that you created
|
2927
|
+
# with the ONTAP CLI or REST API.
|
2928
|
+
#
|
2929
|
+
# For more information, see [Snapshot policies][1] in the *Amazon FSx
|
2930
|
+
# for NetApp ONTAP User Guide*.
|
2931
|
+
#
|
2932
|
+
#
|
2933
|
+
#
|
2934
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snapshots-ontap.html#snapshot-policies
|
2935
|
+
# @return [String]
|
2936
|
+
#
|
2937
|
+
# @!attribute [rw] copy_tags_to_backups
|
2938
|
+
# A boolean flag indicating whether tags for the volume should be
|
2939
|
+
# copied to backups. This value defaults to false. If it's set to
|
2940
|
+
# true, all tags for the volume are copied to all automatic and
|
2941
|
+
# user-initiated backups where the user doesn't specify tags. If this
|
2942
|
+
# value is true, and you specify one or more tags, only the specified
|
2943
|
+
# tags are copied to backups. If you specify one or more tags when
|
2944
|
+
# creating a user-initiated backup, no tags are copied from the
|
2945
|
+
# volume, regardless of this value.
|
2946
|
+
# @return [Boolean]
|
2947
|
+
#
|
2855
2948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateOntapVolumeConfiguration AWS API Documentation
|
2856
2949
|
#
|
2857
2950
|
class CreateOntapVolumeConfiguration < Struct.new(
|
@@ -2860,7 +2953,10 @@ module Aws::FSx
|
|
2860
2953
|
:size_in_megabytes,
|
2861
2954
|
:storage_efficiency_enabled,
|
2862
2955
|
:storage_virtual_machine_id,
|
2863
|
-
:tiering_policy
|
2956
|
+
:tiering_policy,
|
2957
|
+
:ontap_volume_type,
|
2958
|
+
:snapshot_policy,
|
2959
|
+
:copy_tags_to_backups)
|
2864
2960
|
SENSITIVE = []
|
2865
2961
|
include Aws::Structure
|
2866
2962
|
end
|
@@ -3294,15 +3390,18 @@ module Aws::FSx
|
|
3294
3390
|
# client_request_token: "ClientRequestToken",
|
3295
3391
|
# name: "VolumeName", # required
|
3296
3392
|
# ontap_configuration: {
|
3297
|
-
# junction_path: "JunctionPath",
|
3393
|
+
# junction_path: "JunctionPath",
|
3298
3394
|
# security_style: "UNIX", # accepts UNIX, NTFS, MIXED
|
3299
3395
|
# size_in_megabytes: 1, # required
|
3300
|
-
# storage_efficiency_enabled: false,
|
3396
|
+
# storage_efficiency_enabled: false,
|
3301
3397
|
# storage_virtual_machine_id: "StorageVirtualMachineId", # required
|
3302
3398
|
# tiering_policy: {
|
3303
3399
|
# cooling_period: 1,
|
3304
3400
|
# name: "SNAPSHOT_ONLY", # accepts SNAPSHOT_ONLY, AUTO, ALL, NONE
|
3305
3401
|
# },
|
3402
|
+
# ontap_volume_type: "RW", # accepts RW, DP
|
3403
|
+
# snapshot_policy: "SnapshotPolicy",
|
3404
|
+
# copy_tags_to_backups: false,
|
3306
3405
|
# },
|
3307
3406
|
# tags: [
|
3308
3407
|
# {
|
@@ -3373,15 +3472,18 @@ module Aws::FSx
|
|
3373
3472
|
# volume_type: "ONTAP", # required, accepts ONTAP, OPENZFS
|
3374
3473
|
# name: "VolumeName", # required
|
3375
3474
|
# ontap_configuration: {
|
3376
|
-
# junction_path: "JunctionPath",
|
3475
|
+
# junction_path: "JunctionPath",
|
3377
3476
|
# security_style: "UNIX", # accepts UNIX, NTFS, MIXED
|
3378
3477
|
# size_in_megabytes: 1, # required
|
3379
|
-
# storage_efficiency_enabled: false,
|
3478
|
+
# storage_efficiency_enabled: false,
|
3380
3479
|
# storage_virtual_machine_id: "StorageVirtualMachineId", # required
|
3381
3480
|
# tiering_policy: {
|
3382
3481
|
# cooling_period: 1,
|
3383
3482
|
# name: "SNAPSHOT_ONLY", # accepts SNAPSHOT_ONLY, AUTO, ALL, NONE
|
3384
3483
|
# },
|
3484
|
+
# ontap_volume_type: "RW", # accepts RW, DP
|
3485
|
+
# snapshot_policy: "SnapshotPolicy",
|
3486
|
+
# copy_tags_to_backups: false,
|
3385
3487
|
# },
|
3386
3488
|
# tags: [
|
3387
3489
|
# {
|
@@ -3541,7 +3643,7 @@ module Aws::FSx
|
|
3541
3643
|
# @return [String]
|
3542
3644
|
#
|
3543
3645
|
# @!attribute [rw] failure_details
|
3544
|
-
# Provides detailed information about the data
|
3646
|
+
# Provides detailed information about the data repository if its
|
3545
3647
|
# `Lifecycle` is set to `MISCONFIGURED` or `FAILED`.
|
3546
3648
|
# @return [Types::DataRepositoryFailureDetails]
|
3547
3649
|
#
|
@@ -3800,7 +3902,7 @@ module Aws::FSx
|
|
3800
3902
|
# @return [String]
|
3801
3903
|
#
|
3802
3904
|
# @!attribute [rw] failure_details
|
3803
|
-
# Provides detailed information about the data
|
3905
|
+
# Provides detailed information about the data repository if its
|
3804
3906
|
# `Lifecycle` is set to `MISCONFIGURED` or `FAILED`.
|
3805
3907
|
# @return [Types::DataRepositoryFailureDetails]
|
3806
3908
|
#
|
@@ -3817,7 +3919,7 @@ module Aws::FSx
|
|
3817
3919
|
include Aws::Structure
|
3818
3920
|
end
|
3819
3921
|
|
3820
|
-
# Provides detailed information about the data
|
3922
|
+
# Provides detailed information about the data repository if its
|
3821
3923
|
# `Lifecycle` is set to `MISCONFIGURED` or `FAILED`.
|
3822
3924
|
#
|
3823
3925
|
# @!attribute [rw] message
|
@@ -7196,6 +7298,46 @@ module Aws::FSx
|
|
7196
7298
|
# additional read-only access to clients.
|
7197
7299
|
# @return [String]
|
7198
7300
|
#
|
7301
|
+
# @!attribute [rw] snapshot_policy
|
7302
|
+
# Specifies the snapshot policy for the volume. There are three
|
7303
|
+
# built-in snapshot policies:
|
7304
|
+
#
|
7305
|
+
# * `default`\: This is the default policy. A maximum of six hourly
|
7306
|
+
# snapshots taken five minutes past the hour. A maximum of two daily
|
7307
|
+
# snapshots taken Monday through Saturday at 10 minutes after
|
7308
|
+
# midnight. A maximum of two weekly snapshots taken every Sunday at
|
7309
|
+
# 15 minutes after midnight.
|
7310
|
+
#
|
7311
|
+
# * `default-1weekly`\: This policy is the same as the `default`
|
7312
|
+
# policy except that it only retains one snapshot from the weekly
|
7313
|
+
# schedule.
|
7314
|
+
#
|
7315
|
+
# * `none`\: This policy does not take any snapshots. This policy can
|
7316
|
+
# be assigned to volumes to prevent automatic snapshots from being
|
7317
|
+
# taken.
|
7318
|
+
#
|
7319
|
+
# You can also provide the name of a custom policy that you created
|
7320
|
+
# with the ONTAP CLI or REST API.
|
7321
|
+
#
|
7322
|
+
# For more information, see [Snapshot policies][1] in the *Amazon FSx
|
7323
|
+
# for NetApp ONTAP User Guide*.
|
7324
|
+
#
|
7325
|
+
#
|
7326
|
+
#
|
7327
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snapshots-ontap.html#snapshot-policies
|
7328
|
+
# @return [String]
|
7329
|
+
#
|
7330
|
+
# @!attribute [rw] copy_tags_to_backups
|
7331
|
+
# A boolean flag indicating whether tags for the volume should be
|
7332
|
+
# copied to backups. This value defaults to false. If it's set to
|
7333
|
+
# true, all tags for the volume are copied to all automatic and
|
7334
|
+
# user-initiated backups where the user doesn't specify tags. If this
|
7335
|
+
# value is true, and you specify one or more tags, only the specified
|
7336
|
+
# tags are copied to backups. If you specify one or more tags when
|
7337
|
+
# creating a user-initiated backup, no tags are copied from the
|
7338
|
+
# volume, regardless of this value.
|
7339
|
+
# @return [Boolean]
|
7340
|
+
#
|
7199
7341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OntapVolumeConfiguration AWS API Documentation
|
7200
7342
|
#
|
7201
7343
|
class OntapVolumeConfiguration < Struct.new(
|
@@ -7208,7 +7350,9 @@ module Aws::FSx
|
|
7208
7350
|
:storage_virtual_machine_root,
|
7209
7351
|
:tiering_policy,
|
7210
7352
|
:uuid,
|
7211
|
-
:ontap_volume_type
|
7353
|
+
:ontap_volume_type,
|
7354
|
+
:snapshot_policy,
|
7355
|
+
:copy_tags_to_backups)
|
7212
7356
|
SENSITIVE = []
|
7213
7357
|
include Aws::Structure
|
7214
7358
|
end
|
@@ -7397,14 +7541,12 @@ module Aws::FSx
|
|
7397
7541
|
#
|
7398
7542
|
# @!attribute [rw] deployment_type
|
7399
7543
|
# Specifies the file-system deployment type. Amazon FSx for OpenZFS
|
7400
|
-
# supports
|
7401
|
-
# for a single Availability Zone (AZ) of redundancy.
|
7544
|
+
# supports
`SINGLE_AZ_1` and `SINGLE_AZ_2`.
|
7402
7545
|
# @return [String]
|
7403
7546
|
#
|
7404
7547
|
# @!attribute [rw] throughput_capacity
|
7405
7548
|
# The throughput of an Amazon FSx file system, measured in megabytes
|
7406
|
-
# per second (MBps).
|
7407
|
-
# 3072, or 4096 MB/s.
|
7549
|
+
# per second (MBps).
|
7408
7550
|
# @return [Integer]
|
7409
7551
|
#
|
7410
7552
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -7630,6 +7772,22 @@ module Aws::FSx
|
|
7630
7772
|
# volume.
|
7631
7773
|
# @return [Array<Types::OpenZFSUserOrGroupQuota>]
|
7632
7774
|
#
|
7775
|
+
# @!attribute [rw] restore_to_snapshot
|
7776
|
+
# Specifies the ID of the snapshot to which the volume was restored.
|
7777
|
+
# @return [String]
|
7778
|
+
#
|
7779
|
+
# @!attribute [rw] delete_intermediate_snaphots
|
7780
|
+
# A Boolean value indicating whether snapshots between the current
|
7781
|
+
# state and the specified snapshot should be deleted when a volume is
|
7782
|
+
# restored from snapshot.
|
7783
|
+
# @return [Boolean]
|
7784
|
+
#
|
7785
|
+
# @!attribute [rw] delete_cloned_volumes
|
7786
|
+
# A Boolean value indicating whether dependent clone volumes created
|
7787
|
+
# from intermediate snapshots should be deleted when a volume is
|
7788
|
+
# restored from snapshot.
|
7789
|
+
# @return [Boolean]
|
7790
|
+
#
|
7633
7791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OpenZFSVolumeConfiguration AWS API Documentation
|
7634
7792
|
#
|
7635
7793
|
class OpenZFSVolumeConfiguration < Struct.new(
|
@@ -7643,7 +7801,10 @@ module Aws::FSx
|
|
7643
7801
|
:origin_snapshot,
|
7644
7802
|
:read_only,
|
7645
7803
|
:nfs_exports,
|
7646
|
-
:user_and_group_quotas
|
7804
|
+
:user_and_group_quotas,
|
7805
|
+
:restore_to_snapshot,
|
7806
|
+
:delete_intermediate_snaphots,
|
7807
|
+
:delete_cloned_volumes)
|
7647
7808
|
SENSITIVE = []
|
7648
7809
|
include Aws::Structure
|
7649
7810
|
end
|
@@ -7793,11 +7954,18 @@ module Aws::FSx
|
|
7793
7954
|
# The lifecycle state of the volume being restored.
|
7794
7955
|
# @return [String]
|
7795
7956
|
#
|
7957
|
+
# @!attribute [rw] administrative_actions
|
7958
|
+
# A list of administrative actions for the file system that are in
|
7959
|
+
# process or waiting to be processed. Administrative actions describe
|
7960
|
+
# changes to the Amazon FSx system.
|
7961
|
+
# @return [Array<Types::AdministrativeAction>]
|
7962
|
+
#
|
7796
7963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/RestoreVolumeFromSnapshotResponse AWS API Documentation
|
7797
7964
|
#
|
7798
7965
|
class RestoreVolumeFromSnapshotResponse < Struct.new(
|
7799
7966
|
:volume_id,
|
7800
|
-
:lifecycle
|
7967
|
+
:lifecycle,
|
7968
|
+
:administrative_actions)
|
7801
7969
|
SENSITIVE = []
|
7802
7970
|
include Aws::Structure
|
7803
7971
|
end
|
@@ -8235,10 +8403,6 @@ module Aws::FSx
|
|
8235
8403
|
# The SVM's system generated unique ID.
|
8236
8404
|
# @return [String]
|
8237
8405
|
#
|
8238
|
-
# @!attribute [rw] subtype
|
8239
|
-
# Describes the SVM's subtype.
|
8240
|
-
# @return [String]
|
8241
|
-
#
|
8242
8406
|
# @!attribute [rw] uuid
|
8243
8407
|
# The SVM's UUID (universally unique identifier).
|
8244
8408
|
# @return [String]
|
@@ -8266,7 +8430,6 @@ module Aws::FSx
|
|
8266
8430
|
:name,
|
8267
8431
|
:resource_arn,
|
8268
8432
|
:storage_virtual_machine_id,
|
8269
|
-
:subtype,
|
8270
8433
|
:uuid,
|
8271
8434
|
:tags,
|
8272
8435
|
:lifecycle_transition_reason,
|
@@ -8889,6 +9052,8 @@ module Aws::FSx
|
|
8889
9052
|
# iops: 1,
|
8890
9053
|
# },
|
8891
9054
|
# throughput_capacity: 1,
|
9055
|
+
# add_route_table_ids: ["RouteTableId"],
|
9056
|
+
# remove_route_table_ids: ["RouteTableId"],
|
8892
9057
|
# }
|
8893
9058
|
#
|
8894
9059
|
# @!attribute [rw] automatic_backup_retention_days
|
@@ -8936,9 +9101,22 @@ module Aws::FSx
|
|
8936
9101
|
# @!attribute [rw] throughput_capacity
|
8937
9102
|
# Specifies the throughput of an FSx for NetApp ONTAP file system,
|
8938
9103
|
# measured in megabytes per second (MBps). Valid values are 128, 256,
|
8939
|
-
# 512, 1024,
|
9104
|
+
# 512, 1024, 2048, and 4096 MBps.
|
8940
9105
|
# @return [Integer]
|
8941
9106
|
#
|
9107
|
+
# @!attribute [rw] add_route_table_ids
|
9108
|
+
# (Multi-AZ only) A list of IDs of new virtual private cloud (VPC)
|
9109
|
+
# route tables to associate (add) with your Amazon FSx for NetApp
|
9110
|
+
# ONTAP file system.
|
9111
|
+
# @return [Array<String>]
|
9112
|
+
#
|
9113
|
+
# @!attribute [rw] remove_route_table_ids
|
9114
|
+
# (Multi-AZ only) A list of IDs of existing virtual private cloud
|
9115
|
+
# (VPC) route tables to disassociate (remove) from your Amazon FSx for
|
9116
|
+
# NetApp ONTAP file system. You can use the API operation to retrieve
|
9117
|
+
# the list of VPC route table IDs for a file system.
|
9118
|
+
# @return [Array<String>]
|
9119
|
+
#
|
8942
9120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemOntapConfiguration AWS API Documentation
|
8943
9121
|
#
|
8944
9122
|
class UpdateFileSystemOntapConfiguration < Struct.new(
|
@@ -8947,7 +9125,9 @@ module Aws::FSx
|
|
8947
9125
|
:fsx_admin_password,
|
8948
9126
|
:weekly_maintenance_start_time,
|
8949
9127
|
:disk_iops_configuration,
|
8950
|
-
:throughput_capacity
|
9128
|
+
:throughput_capacity,
|
9129
|
+
:add_route_table_ids,
|
9130
|
+
:remove_route_table_ids)
|
8951
9131
|
SENSITIVE = [:fsx_admin_password]
|
8952
9132
|
include Aws::Structure
|
8953
9133
|
end
|
@@ -9004,9 +9184,15 @@ module Aws::FSx
|
|
9004
9184
|
# @return [String]
|
9005
9185
|
#
|
9006
9186
|
# @!attribute [rw] throughput_capacity
|
9007
|
-
# The throughput of an Amazon FSx file system, measured in
|
9008
|
-
# per second
|
9009
|
-
#
|
9187
|
+
# The throughput of an Amazon FSx for OpenZFS file system, measured in
|
9188
|
+
# megabytes per second
(MB/s). Valid values depend on the
|
9189
|
+
# DeploymentType you choose, as follows:
|
9190
|
+
#
|
9191
|
+
# * For `SINGLE_AZ_1`, valid values are 64, 128, 256, 512, 1024, 2048,
|
9192
|
+
# 3072, or 4096 MB/s.
|
9193
|
+
#
|
9194
|
+
# * For `SINGLE_AZ_2`, valid values are 160, 320, 640, 1280, 2560,
|
9195
|
+
# 3840, 5120, 7680, or 10240 MB/s.
|
9010
9196
|
# @return [Integer]
|
9011
9197
|
#
|
9012
9198
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -9099,6 +9285,8 @@ module Aws::FSx
|
|
9099
9285
|
# iops: 1,
|
9100
9286
|
# },
|
9101
9287
|
# throughput_capacity: 1,
|
9288
|
+
# add_route_table_ids: ["RouteTableId"],
|
9289
|
+
# remove_route_table_ids: ["RouteTableId"],
|
9102
9290
|
# },
|
9103
9291
|
# open_zfs_configuration: {
|
9104
9292
|
# automatic_backup_retention_days: 1,
|
@@ -9324,6 +9512,8 @@ module Aws::FSx
|
|
9324
9512
|
# cooling_period: 1,
|
9325
9513
|
# name: "SNAPSHOT_ONLY", # accepts SNAPSHOT_ONLY, AUTO, ALL, NONE
|
9326
9514
|
# },
|
9515
|
+
# snapshot_policy: "SnapshotPolicy",
|
9516
|
+
# copy_tags_to_backups: false,
|
9327
9517
|
# }
|
9328
9518
|
#
|
9329
9519
|
# @!attribute [rw] junction_path
|
@@ -9351,6 +9541,46 @@ module Aws::FSx
|
|
9351
9541
|
# Update the volume's data tiering policy.
|
9352
9542
|
# @return [Types::TieringPolicy]
|
9353
9543
|
#
|
9544
|
+
# @!attribute [rw] snapshot_policy
|
9545
|
+
# Specifies the snapshot policy for the volume. There are three
|
9546
|
+
# built-in snapshot policies:
|
9547
|
+
#
|
9548
|
+
# * `default`\: This is the default policy. A maximum of six hourly
|
9549
|
+
# snapshots taken five minutes past the hour. A maximum of two daily
|
9550
|
+
# snapshots taken Monday through Saturday at 10 minutes after
|
9551
|
+
# midnight. A maximum of two weekly snapshots taken every Sunday at
|
9552
|
+
# 15 minutes after midnight.
|
9553
|
+
#
|
9554
|
+
# * `default-1weekly`\: This policy is the same as the `default`
|
9555
|
+
# policy except that it only retains one snapshot from the weekly
|
9556
|
+
# schedule.
|
9557
|
+
#
|
9558
|
+
# * `none`\: This policy does not take any snapshots. This policy can
|
9559
|
+
# be assigned to volumes to prevent automatic snapshots from being
|
9560
|
+
# taken.
|
9561
|
+
#
|
9562
|
+
# You can also provide the name of a custom policy that you created
|
9563
|
+
# with the ONTAP CLI or REST API.
|
9564
|
+
#
|
9565
|
+
# For more information, see [Snapshot policies][1] in the *Amazon FSx
|
9566
|
+
# for NetApp ONTAP User Guide*.
|
9567
|
+
#
|
9568
|
+
#
|
9569
|
+
#
|
9570
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snapshots-ontap.html#snapshot-policies
|
9571
|
+
# @return [String]
|
9572
|
+
#
|
9573
|
+
# @!attribute [rw] copy_tags_to_backups
|
9574
|
+
# A boolean flag indicating whether tags for the volume should be
|
9575
|
+
# copied to backups. This value defaults to false. If it's set to
|
9576
|
+
# true, all tags for the volume are copied to all automatic and
|
9577
|
+
# user-initiated backups where the user doesn't specify tags. If this
|
9578
|
+
# value is true, and you specify one or more tags, only the specified
|
9579
|
+
# tags are copied to backups. If you specify one or more tags when
|
9580
|
+
# creating a user-initiated backup, no tags are copied from the
|
9581
|
+
# volume, regardless of this value.
|
9582
|
+
# @return [Boolean]
|
9583
|
+
#
|
9354
9584
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateOntapVolumeConfiguration AWS API Documentation
|
9355
9585
|
#
|
9356
9586
|
class UpdateOntapVolumeConfiguration < Struct.new(
|
@@ -9358,7 +9588,9 @@ module Aws::FSx
|
|
9358
9588
|
:security_style,
|
9359
9589
|
:size_in_megabytes,
|
9360
9590
|
:storage_efficiency_enabled,
|
9361
|
-
:tiering_policy
|
9591
|
+
:tiering_policy,
|
9592
|
+
:snapshot_policy,
|
9593
|
+
:copy_tags_to_backups)
|
9362
9594
|
SENSITIVE = []
|
9363
9595
|
include Aws::Structure
|
9364
9596
|
end
|
@@ -9627,6 +9859,8 @@ module Aws::FSx
|
|
9627
9859
|
# cooling_period: 1,
|
9628
9860
|
# name: "SNAPSHOT_ONLY", # accepts SNAPSHOT_ONLY, AUTO, ALL, NONE
|
9629
9861
|
# },
|
9862
|
+
# snapshot_policy: "SnapshotPolicy",
|
9863
|
+
# copy_tags_to_backups: false,
|
9630
9864
|
# },
|
9631
9865
|
# name: "VolumeName",
|
9632
9866
|
# open_zfs_configuration: {
|
@@ -9777,9 +10011,10 @@ module Aws::FSx
|
|
9777
10011
|
# @return [Types::LifecycleTransitionReason]
|
9778
10012
|
#
|
9779
10013
|
# @!attribute [rw] administrative_actions
|
9780
|
-
# A list of administrative actions for the
|
9781
|
-
#
|
9782
|
-
#
|
10014
|
+
# A list of administrative actions for the volume that are in process
|
10015
|
+
# or waiting to be processed. Administrative actions describe changes
|
10016
|
+
# to the volume that you have initiated using the `UpdateVolume`
|
10017
|
+
# action.
|
9783
10018
|
# @return [Array<Types::AdministrativeAction>]
|
9784
10019
|
#
|
9785
10020
|
# @!attribute [rw] open_zfs_configuration
|
data/lib/aws-sdk-fsx.rb
CHANGED
@@ -13,9 +13,13 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-fsx/types'
|
15
15
|
require_relative 'aws-sdk-fsx/client_api'
|
16
|
+
require_relative 'aws-sdk-fsx/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-fsx/client'
|
17
18
|
require_relative 'aws-sdk-fsx/errors'
|
18
19
|
require_relative 'aws-sdk-fsx/resource'
|
20
|
+
require_relative 'aws-sdk-fsx/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-fsx/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-fsx/endpoints'
|
19
23
|
require_relative 'aws-sdk-fsx/customizations'
|
20
24
|
|
21
25
|
# This module provides support for Amazon FSx. This module is available in the
|
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-fsx/customizations'
|
|
48
52
|
# @!group service
|
49
53
|
module Aws::FSx
|
50
54
|
|
51
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.62.0'
|
52
56
|
|
53
57
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-fsx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.62.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.165.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-fsx/client.rb
|
60
60
|
- lib/aws-sdk-fsx/client_api.rb
|
61
61
|
- lib/aws-sdk-fsx/customizations.rb
|
62
|
+
- lib/aws-sdk-fsx/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-fsx/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-fsx/endpoints.rb
|
62
65
|
- lib/aws-sdk-fsx/errors.rb
|
66
|
+
- lib/aws-sdk-fsx/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-fsx/resource.rb
|
64
68
|
- lib/aws-sdk-fsx/types.rb
|
65
69
|
homepage: https://github.com/aws/aws-sdk-ruby
|