aws-sdk-fsx 1.73.0 → 1.74.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +274 -57
- data/lib/aws-sdk-fsx/client_api.rb +26 -0
- data/lib/aws-sdk-fsx/types.rb +341 -71
- data/lib/aws-sdk-fsx.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -79,6 +79,17 @@ module Aws::FSx
|
|
79
79
|
# initiated from the Amazon FSx console, API (`UpdateFileSystem`),
|
80
80
|
# or CLI (`update-file-system`).
|
81
81
|
#
|
82
|
+
# * `THROUGHPUT_OPTIMIZATION` - After the `FILE_SYSTEM_UPDATE` task to
|
83
|
+
# increase a file system's throughput capacity has been completed
|
84
|
+
# successfully, a `THROUGHPUT_OPTIMIZATION` task starts.
|
85
|
+
#
|
86
|
+
# You can track the storage-optimization progress using the
|
87
|
+
# `ProgressPercent` property. When `THROUGHPUT_OPTIMIZATION` has
|
88
|
+
# been completed successfully, the parent `FILE_SYSTEM_UPDATE`
|
89
|
+
# action status changes to `COMPLETED`. For more information, see
|
90
|
+
# [Managing throughput capacity][1] in the *Amazon FSx for Windows
|
91
|
+
# File Server User Guide*.
|
92
|
+
#
|
82
93
|
# * `STORAGE_OPTIMIZATION` - After the `FILE_SYSTEM_UPDATE` task to
|
83
94
|
# increase a file system's storage capacity has been completed
|
84
95
|
# successfully, a `STORAGE_OPTIMIZATION` task starts.
|
@@ -93,20 +104,40 @@ module Aws::FSx
|
|
93
104
|
# `ProgressPercent` property. When `STORAGE_OPTIMIZATION` has been
|
94
105
|
# completed successfully, the parent `FILE_SYSTEM_UPDATE` action
|
95
106
|
# status changes to `COMPLETED`. For more information, see [Managing
|
96
|
-
# storage capacity][
|
97
|
-
# User Guide*, [Managing storage and throughput capacity][
|
107
|
+
# storage capacity][2] in the *Amazon FSx for Windows File Server
|
108
|
+
# User Guide*, [Managing storage and throughput capacity][3] in the
|
98
109
|
# *Amazon FSx for Lustre User Guide*, and [Managing storage capacity
|
99
|
-
# and provisioned IOPS][
|
110
|
+
# and provisioned IOPS][4] in the *Amazon FSx for NetApp ONTAP User
|
100
111
|
# Guide*.
|
101
112
|
#
|
102
113
|
# * `FILE_SYSTEM_ALIAS_ASSOCIATION` - A file system update to
|
103
114
|
# associate a new Domain Name System (DNS) alias with the file
|
104
115
|
# system. For more information, see [
|
105
|
-
# AssociateFileSystemAliases][
|
116
|
+
# AssociateFileSystemAliases][5].
|
106
117
|
#
|
107
118
|
# * `FILE_SYSTEM_ALIAS_DISASSOCIATION` - A file system update to
|
108
119
|
# disassociate a DNS alias from the file system. For more
|
109
|
-
# information, see [DisassociateFileSystemAliases][
|
120
|
+
# information, see [DisassociateFileSystemAliases][6].
|
121
|
+
#
|
122
|
+
# * `IOPS_OPTIMIZATION` - After the `FILE_SYSTEM_UPDATE` task to
|
123
|
+
# increase a file system's throughput capacity has been completed
|
124
|
+
# successfully, a `IOPS_OPTIMIZATION` task starts.
|
125
|
+
#
|
126
|
+
# You can track the storage-optimization progress using the
|
127
|
+
# `ProgressPercent` property. When `IOPS_OPTIMIZATION` has been
|
128
|
+
# completed successfully, the parent `FILE_SYSTEM_UPDATE` action
|
129
|
+
# status changes to `COMPLETED`. For more information, see [Managing
|
130
|
+
# provisioned SSD IOPS][7] in the *Amazon FSx for Windows File
|
131
|
+
# Server User Guide*.
|
132
|
+
#
|
133
|
+
# * `STORAGE_TYPE_OPTIMIZATION` - After the `FILE_SYSTEM_UPDATE` task
|
134
|
+
# to increase a file system's throughput capacity has been
|
135
|
+
# completed successfully, a `STORAGE_TYPE_OPTIMIZATION` task starts.
|
136
|
+
#
|
137
|
+
# You can track the storage-optimization progress using the
|
138
|
+
# `ProgressPercent` property. When `STORAGE_TYPE_OPTIMIZATION` has
|
139
|
+
# been completed successfully, the parent `FILE_SYSTEM_UPDATE`
|
140
|
+
# action status changes to `COMPLETED`.
|
110
141
|
#
|
111
142
|
# * `VOLUME_UPDATE` - A volume update to an Amazon FSx for NetApp
|
112
143
|
# ONTAP or Amazon FSx for OpenZFS volume initiated from the Amazon
|
@@ -126,11 +157,13 @@ module Aws::FSx
|
|
126
157
|
#
|
127
158
|
#
|
128
159
|
#
|
129
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-
|
130
|
-
# [2]: https://docs.aws.amazon.com/fsx/latest/
|
131
|
-
# [3]: https://docs.aws.amazon.com/fsx/latest/
|
132
|
-
# [4]: https://docs.aws.amazon.com/fsx/latest/
|
133
|
-
# [5]: https://docs.aws.amazon.com/fsx/latest/APIReference/
|
160
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-throughput-capacity.html
|
161
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
162
|
+
# [3]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/managing-storage-capacity.html
|
163
|
+
# [4]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/managing-storage-capacity.html
|
164
|
+
# [5]: https://docs.aws.amazon.com/fsx/latest/APIReference/API_AssociateFileSystemAliases.html
|
165
|
+
# [6]: https://docs.aws.amazon.com/fsx/latest/APIReference/API_DisassociateFileSystemAliases.html
|
166
|
+
# [7]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-provisioned-ssd-iops.html
|
134
167
|
# @return [String]
|
135
168
|
#
|
136
169
|
# @!attribute [rw] progress_percent
|
@@ -1010,24 +1043,53 @@ module Aws::FSx
|
|
1010
1043
|
|
1011
1044
|
# @!attribute [rw] type
|
1012
1045
|
# Specifies the type of data repository task to create.
|
1046
|
+
#
|
1047
|
+
# * `EXPORT_TO_REPOSITORY` tasks export from your Amazon FSx for
|
1048
|
+
# Lustre file system to a linked data repository.
|
1049
|
+
#
|
1050
|
+
# * `IMPORT_METADATA_FROM_REPOSITORY` tasks import metadata changes
|
1051
|
+
# from a linked S3 bucket to your Amazon FSx for Lustre file system.
|
1052
|
+
#
|
1053
|
+
# * `RELEASE_DATA_FROM_FILESYSTEM` tasks release files in your Amazon
|
1054
|
+
# FSx for Lustre file system that are archived and that meet your
|
1055
|
+
# specified release criteria.
|
1056
|
+
#
|
1057
|
+
# * `AUTO_RELEASE_DATA` tasks automatically release files from an
|
1058
|
+
# Amazon File Cache resource.
|
1013
1059
|
# @return [String]
|
1014
1060
|
#
|
1015
1061
|
# @!attribute [rw] paths
|
1016
1062
|
# A list of paths for the data repository task to use when the task is
|
1017
1063
|
# processed. If a path that you provide isn't valid, the task fails.
|
1018
|
-
#
|
1019
|
-
#
|
1020
|
-
#
|
1021
|
-
#
|
1022
|
-
#
|
1023
|
-
#
|
1024
|
-
#
|
1025
|
-
#
|
1064
|
+
# If you don't provide paths, the default behavior is to export all
|
1065
|
+
# files to S3 (for export tasks), import all files from S3 (for import
|
1066
|
+
# tasks), or release all archived files that meet the last accessed
|
1067
|
+
# time criteria (for release tasks).
|
1068
|
+
#
|
1069
|
+
# * For export tasks, the list contains paths on the FSx for Lustre
|
1070
|
+
# file system from which the files are exported to the Amazon S3
|
1071
|
+
# bucket. The default path is the file system root directory. The
|
1072
|
+
# paths you provide need to be relative to the mount point of the
|
1073
|
+
# file system. If the mount point is `/mnt/fsx` and `/mnt/fsx/path1`
|
1074
|
+
# is a directory or file on the file system you want to export, then
|
1075
|
+
# the path to provide is `path1`.
|
1026
1076
|
#
|
1027
1077
|
# * For import tasks, the list contains paths in the Amazon S3 bucket
|
1028
|
-
# from which POSIX metadata changes are imported to the
|
1029
|
-
# file system. The path can be an S3 bucket or prefix in the
|
1030
|
-
# `s3://myBucket/myPrefix` (where `myPrefix` is optional).
|
1078
|
+
# from which POSIX metadata changes are imported to the FSx for
|
1079
|
+
# Lustre file system. The path can be an S3 bucket or prefix in the
|
1080
|
+
# format `s3://myBucket/myPrefix` (where `myPrefix` is optional).
|
1081
|
+
#
|
1082
|
+
# * For release tasks, the list contains directory or file paths on
|
1083
|
+
# the FSx for Lustre file system from which to release archived
|
1084
|
+
# files. If a directory is specified, files within the directory are
|
1085
|
+
# released. If a file path is specified, only that file is released.
|
1086
|
+
# To release all archived files in the file system, specify a
|
1087
|
+
# forward slash (/) as the path.
|
1088
|
+
#
|
1089
|
+
# <note markdown="1"> A file must also meet the last accessed time criteria specified in
|
1090
|
+
# for the file to be released.
|
1091
|
+
#
|
1092
|
+
# </note>
|
1031
1093
|
# @return [Array<String>]
|
1032
1094
|
#
|
1033
1095
|
# @!attribute [rw] file_system_id
|
@@ -1066,6 +1128,12 @@ module Aws::FSx
|
|
1066
1128
|
# from the cache.
|
1067
1129
|
# @return [Integer]
|
1068
1130
|
#
|
1131
|
+
# @!attribute [rw] release_configuration
|
1132
|
+
# The configuration that specifies the last accessed time criteria for
|
1133
|
+
# files that will be released from an Amazon FSx for Lustre file
|
1134
|
+
# system.
|
1135
|
+
# @return [Types::ReleaseConfiguration]
|
1136
|
+
#
|
1069
1137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateDataRepositoryTaskRequest AWS API Documentation
|
1070
1138
|
#
|
1071
1139
|
class CreateDataRepositoryTaskRequest < Struct.new(
|
@@ -1075,7 +1143,8 @@ module Aws::FSx
|
|
1075
1143
|
:report,
|
1076
1144
|
:client_request_token,
|
1077
1145
|
:tags,
|
1078
|
-
:capacity_to_release
|
1146
|
+
:capacity_to_release,
|
1147
|
+
:release_configuration)
|
1079
1148
|
SENSITIVE = []
|
1080
1149
|
include Aws::Structure
|
1081
1150
|
end
|
@@ -1857,8 +1926,13 @@ module Aws::FSx
|
|
1857
1926
|
# Zone in an Amazon Web Services Region . Valid values are the
|
1858
1927
|
# following:
|
1859
1928
|
#
|
1929
|
+
# * `MULTI_AZ_1`- Creates file systems with high availability that are
|
1930
|
+
# configured for Multi-AZ redundancy to tolerate temporary
|
1931
|
+
# unavailability in Availability Zones (AZs). `Multi_AZ_1` is
|
1932
|
+
# available in the following Amazon Web Services Regions:
|
1933
|
+
#
|
1860
1934
|
# * `SINGLE_AZ_1`- (Default) Creates file systems with throughput
|
1861
|
-
# capacities of 64 - 4,096
|
1935
|
+
# capacities of 64 - 4,096 MB/s. `Single_AZ_1` is available in all
|
1862
1936
|
# Amazon Web Services Regions where Amazon FSx for OpenZFS is
|
1863
1937
|
# available.
|
1864
1938
|
#
|
@@ -1910,12 +1984,12 @@ module Aws::FSx
|
|
1910
1984
|
#
|
1911
1985
|
# @!attribute [rw] disk_iops_configuration
|
1912
1986
|
# The SSD IOPS (input/output operations per second) configuration for
|
1913
|
-
# an Amazon FSx for NetApp ONTAP
|
1914
|
-
#
|
1915
|
-
# storage capacity. You can provision
|
1916
|
-
# storage. The configuration consists of the
|
1917
|
-
# provisioned SSD IOPS and how it is was provisioned,
|
1918
|
-
# the customer or by Amazon FSx).
|
1987
|
+
# an Amazon FSx for NetApp ONTAP, Amazon FSx for Windows File Server,
|
1988
|
+
# or FSx for OpenZFS file system. By default, Amazon FSx automatically
|
1989
|
+
# provisions 3 IOPS per GB of storage capacity. You can provision
|
1990
|
+
# additional IOPS per GB of storage. The configuration consists of the
|
1991
|
+
# total number of provisioned SSD IOPS and how it is was provisioned,
|
1992
|
+
# or the mode (by the customer or by Amazon FSx).
|
1919
1993
|
# @return [Types::DiskIopsConfiguration]
|
1920
1994
|
#
|
1921
1995
|
# @!attribute [rw] root_volume_configuration
|
@@ -1924,6 +1998,29 @@ module Aws::FSx
|
|
1924
1998
|
# the root volume.
|
1925
1999
|
# @return [Types::OpenZFSCreateRootVolumeConfiguration]
|
1926
2000
|
#
|
2001
|
+
# @!attribute [rw] preferred_subnet_id
|
2002
|
+
# Required when `DeploymentType` is set to `MULTI_AZ_1`. This
|
2003
|
+
# specifies the subnet in which you want the preferred file server to
|
2004
|
+
# be located.
|
2005
|
+
# @return [String]
|
2006
|
+
#
|
2007
|
+
# @!attribute [rw] endpoint_ip_address_range
|
2008
|
+
# (Multi-AZ only) Specifies the IP address range in which the
|
2009
|
+
# endpoints to access your file system will be created. By default in
|
2010
|
+
# the Amazon FSx API and Amazon FSx console, Amazon FSx selects an
|
2011
|
+
# available /28 IP address range for you from one of the VPC's CIDR
|
2012
|
+
# ranges. You can have overlapping endpoint IP addresses for file
|
2013
|
+
# systems deployed in the same VPC/route tables.
|
2014
|
+
# @return [String]
|
2015
|
+
#
|
2016
|
+
# @!attribute [rw] route_table_ids
|
2017
|
+
# (Multi-AZ only) Specifies the virtual private cloud (VPC) route
|
2018
|
+
# tables in which your file system's endpoints will be created. You
|
2019
|
+
# should specify all VPC route tables associated with the subnets in
|
2020
|
+
# which your clients are located. By default, Amazon FSx selects your
|
2021
|
+
# VPC's default route table.
|
2022
|
+
# @return [Array<String>]
|
2023
|
+
#
|
1927
2024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemOpenZFSConfiguration AWS API Documentation
|
1928
2025
|
#
|
1929
2026
|
class CreateFileSystemOpenZFSConfiguration < Struct.new(
|
@@ -1935,7 +2032,10 @@ module Aws::FSx
|
|
1935
2032
|
:throughput_capacity,
|
1936
2033
|
:weekly_maintenance_start_time,
|
1937
2034
|
:disk_iops_configuration,
|
1938
|
-
:root_volume_configuration
|
2035
|
+
:root_volume_configuration,
|
2036
|
+
:preferred_subnet_id,
|
2037
|
+
:endpoint_ip_address_range,
|
2038
|
+
:route_table_ids)
|
1939
2039
|
SENSITIVE = []
|
1940
2040
|
include Aws::Structure
|
1941
2041
|
end
|
@@ -2295,6 +2395,14 @@ module Aws::FSx
|
|
2295
2395
|
# the Amazon FSx for Windows File Server file system.
|
2296
2396
|
# @return [Types::WindowsAuditLogCreateConfiguration]
|
2297
2397
|
#
|
2398
|
+
# @!attribute [rw] disk_iops_configuration
|
2399
|
+
# The SSD IOPS (input/output operations per second) configuration for
|
2400
|
+
# an Amazon FSx for Windows file system. By default, Amazon FSx
|
2401
|
+
# automatically provisions 3 IOPS per GiB of storage capacity. You can
|
2402
|
+
# provision additional IOPS per GiB of storage, up to the maximum
|
2403
|
+
# limit associated with your chosen throughput capacity.
|
2404
|
+
# @return [Types::DiskIopsConfiguration]
|
2405
|
+
#
|
2298
2406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemWindowsConfiguration AWS API Documentation
|
2299
2407
|
#
|
2300
2408
|
class CreateFileSystemWindowsConfiguration < Struct.new(
|
@@ -2308,7 +2416,8 @@ module Aws::FSx
|
|
2308
2416
|
:automatic_backup_retention_days,
|
2309
2417
|
:copy_tags_to_backups,
|
2310
2418
|
:aliases,
|
2311
|
-
:audit_log_configuration
|
2419
|
+
:audit_log_configuration,
|
2420
|
+
:disk_iops_configuration)
|
2312
2421
|
SENSITIVE = []
|
2313
2422
|
include Aws::Structure
|
2314
2423
|
end
|
@@ -2670,7 +2779,7 @@ module Aws::FSx
|
|
2670
2779
|
#
|
2671
2780
|
#
|
2672
2781
|
#
|
2673
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/
|
2782
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-enterprise.html#privileged-delete
|
2674
2783
|
# @return [String]
|
2675
2784
|
#
|
2676
2785
|
# @!attribute [rw] retention_period
|
@@ -2698,7 +2807,7 @@ module Aws::FSx
|
|
2698
2807
|
#
|
2699
2808
|
#
|
2700
2809
|
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-compliance.html
|
2701
|
-
# [2]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/
|
2810
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-enterprise.html
|
2702
2811
|
# @return [String]
|
2703
2812
|
#
|
2704
2813
|
# @!attribute [rw] volume_append_mode_enabled
|
@@ -3347,10 +3456,24 @@ module Aws::FSx
|
|
3347
3456
|
include Aws::Structure
|
3348
3457
|
end
|
3349
3458
|
|
3350
|
-
# A description of the data repository task.
|
3351
|
-
#
|
3352
|
-
#
|
3353
|
-
#
|
3459
|
+
# A description of the data repository task.
|
3460
|
+
#
|
3461
|
+
# * You use import and export data repository tasks to perform bulk
|
3462
|
+
# transfer operations between an Amazon FSx for Lustre file system and
|
3463
|
+
# a linked data repository.
|
3464
|
+
#
|
3465
|
+
# * You use release data repository tasks to release archived files from
|
3466
|
+
# your Amazon FSx for Lustre file system.
|
3467
|
+
#
|
3468
|
+
# * An Amazon File Cache resource uses a task to automatically release
|
3469
|
+
# files from the cache.
|
3470
|
+
#
|
3471
|
+
# To learn more about data repository tasks, see [Data Repository
|
3472
|
+
# Tasks][1].
|
3473
|
+
#
|
3474
|
+
#
|
3475
|
+
#
|
3476
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-repository-tasks.html
|
3354
3477
|
#
|
3355
3478
|
# @!attribute [rw] task_id
|
3356
3479
|
# The system-generated, unique 17-digit ID of the data repository
|
@@ -3395,10 +3518,12 @@ module Aws::FSx
|
|
3395
3518
|
# * `IMPORT_METADATA_FROM_REPOSITORY` tasks import metadata changes
|
3396
3519
|
# from a linked S3 bucket to your Amazon FSx for Lustre file system.
|
3397
3520
|
#
|
3521
|
+
# * `RELEASE_DATA_FROM_FILESYSTEM` tasks release files in your Amazon
|
3522
|
+
# FSx for Lustre file system that are archived and that meet your
|
3523
|
+
# specified release criteria.
|
3524
|
+
#
|
3398
3525
|
# * `AUTO_RELEASE_DATA` tasks automatically release files from an
|
3399
3526
|
# Amazon File Cache resource.
|
3400
|
-
#
|
3401
|
-
# * `RELEASE_DATA_FROM_FILESYSTEM` tasks are not supported.
|
3402
3527
|
# @return [String]
|
3403
3528
|
#
|
3404
3529
|
# @!attribute [rw] creation_time
|
@@ -3473,6 +3598,12 @@ module Aws::FSx
|
|
3473
3598
|
# The system-generated, unique ID of the cache.
|
3474
3599
|
# @return [String]
|
3475
3600
|
#
|
3601
|
+
# @!attribute [rw] release_configuration
|
3602
|
+
# The configuration that specifies the last accessed time criteria for
|
3603
|
+
# files that will be released from an Amazon FSx for Lustre file
|
3604
|
+
# system.
|
3605
|
+
# @return [Types::ReleaseConfiguration]
|
3606
|
+
#
|
3476
3607
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DataRepositoryTask AWS API Documentation
|
3477
3608
|
#
|
3478
3609
|
class DataRepositoryTask < Struct.new(
|
@@ -3490,7 +3621,8 @@ module Aws::FSx
|
|
3490
3621
|
:status,
|
3491
3622
|
:report,
|
3492
3623
|
:capacity_to_release,
|
3493
|
-
:file_cache_id
|
3624
|
+
:file_cache_id,
|
3625
|
+
:release_configuration)
|
3494
3626
|
SENSITIVE = []
|
3495
3627
|
include Aws::Structure
|
3496
3628
|
end
|
@@ -4103,11 +4235,11 @@ module Aws::FSx
|
|
4103
4235
|
# SnapLock Enterprise volumes with unexpired WORM files. The default
|
4104
4236
|
# value is `false`.
|
4105
4237
|
#
|
4106
|
-
# For more information, see [ Deleting a SnapLock volume
|
4238
|
+
# For more information, see [ Deleting a SnapLock volume][1].
|
4107
4239
|
#
|
4108
4240
|
#
|
4109
4241
|
#
|
4110
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/
|
4242
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-delete-volume.html
|
4111
4243
|
# @return [Boolean]
|
4112
4244
|
#
|
4113
4245
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteVolumeOntapConfiguration AWS API Documentation
|
@@ -4756,12 +4888,12 @@ module Aws::FSx
|
|
4756
4888
|
end
|
4757
4889
|
|
4758
4890
|
# The SSD IOPS (input/output operations per second) configuration for an
|
4759
|
-
# Amazon FSx for NetApp ONTAP
|
4760
|
-
#
|
4761
|
-
#
|
4762
|
-
#
|
4763
|
-
#
|
4764
|
-
# FSx).
|
4891
|
+
# Amazon FSx for NetApp ONTAP, Amazon FSx for Windows File Server, or
|
4892
|
+
# FSx for OpenZFS file system. By default, Amazon FSx automatically
|
4893
|
+
# provisions 3 IOPS per GB of storage capacity. You can provision
|
4894
|
+
# additional IOPS per GB of storage. The configuration consists of the
|
4895
|
+
# total number of provisioned SSD IOPS and how it is was provisioned, or
|
4896
|
+
# the mode (by the customer or by Amazon FSx).
|
4765
4897
|
#
|
4766
4898
|
# @!attribute [rw] mode
|
4767
4899
|
# Specifies whether the file system is using the `AUTOMATIC` setting
|
@@ -4782,6 +4914,41 @@ module Aws::FSx
|
|
4782
4914
|
include Aws::Structure
|
4783
4915
|
end
|
4784
4916
|
|
4917
|
+
# Defines the minimum amount of time since last access for a file to be
|
4918
|
+
# eligible for release. Only archived files that were last accessed or
|
4919
|
+
# modified before this point-in-time are eligible to be released from
|
4920
|
+
# the Amazon FSx for Lustre file system.
|
4921
|
+
#
|
4922
|
+
# @!attribute [rw] unit
|
4923
|
+
# The unit of time used by the `Value` parameter to determine if a
|
4924
|
+
# file can be released, based on when it was last accessed. `DAYS` is
|
4925
|
+
# the only supported value. This is a required parameter.
|
4926
|
+
# @return [String]
|
4927
|
+
#
|
4928
|
+
# @!attribute [rw] value
|
4929
|
+
# An integer that represents the minimum amount of time (in days)
|
4930
|
+
# since a file was last accessed in the file system. Only archived
|
4931
|
+
# files with a `MAX(atime, ctime, mtime)` timestamp that is more than
|
4932
|
+
# this amount of time in the past (relative to the task create time)
|
4933
|
+
# will be released. The default of `Value` is `0`. This is a required
|
4934
|
+
# parameter.
|
4935
|
+
#
|
4936
|
+
# <note markdown="1"> If an archived file meets the last accessed time criteria, its file
|
4937
|
+
# or directory path must also be specified in the `Paths` parameter of
|
4938
|
+
# the operation in order for the file to be released.
|
4939
|
+
#
|
4940
|
+
# </note>
|
4941
|
+
# @return [Integer]
|
4942
|
+
#
|
4943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DurationSinceLastAccess AWS API Documentation
|
4944
|
+
#
|
4945
|
+
class DurationSinceLastAccess < Struct.new(
|
4946
|
+
:unit,
|
4947
|
+
:value)
|
4948
|
+
SENSITIVE = []
|
4949
|
+
include Aws::Structure
|
4950
|
+
end
|
4951
|
+
|
4785
4952
|
# A description of a specific Amazon File Cache resource, which is a
|
4786
4953
|
# response object from the `DescribeFileCaches` operation.
|
4787
4954
|
#
|
@@ -6591,7 +6758,7 @@ module Aws::FSx
|
|
6591
6758
|
#
|
6592
6759
|
# @!attribute [rw] deployment_type
|
6593
6760
|
# Specifies the file-system deployment type. Amazon FSx for OpenZFS
|
6594
|
-
# supports
`SINGLE_AZ_1
|
6761
|
+
# supports
`MULTI_AZ_1`, `SINGLE_AZ_1`, and `SINGLE_AZ_2`.
|
6595
6762
|
# @return [String]
|
6596
6763
|
#
|
6597
6764
|
# @!attribute [rw] throughput_capacity
|
@@ -6618,18 +6785,43 @@ module Aws::FSx
|
|
6618
6785
|
#
|
6619
6786
|
# @!attribute [rw] disk_iops_configuration
|
6620
6787
|
# The SSD IOPS (input/output operations per second) configuration for
|
6621
|
-
# an Amazon FSx for NetApp ONTAP
|
6622
|
-
#
|
6623
|
-
# storage capacity. You can provision
|
6624
|
-
# storage. The configuration consists of the
|
6625
|
-
# provisioned SSD IOPS and how it is was provisioned,
|
6626
|
-
# the customer or by Amazon FSx).
|
6788
|
+
# an Amazon FSx for NetApp ONTAP, Amazon FSx for Windows File Server,
|
6789
|
+
# or FSx for OpenZFS file system. By default, Amazon FSx automatically
|
6790
|
+
# provisions 3 IOPS per GB of storage capacity. You can provision
|
6791
|
+
# additional IOPS per GB of storage. The configuration consists of the
|
6792
|
+
# total number of provisioned SSD IOPS and how it is was provisioned,
|
6793
|
+
# or the mode (by the customer or by Amazon FSx).
|
6627
6794
|
# @return [Types::DiskIopsConfiguration]
|
6628
6795
|
#
|
6629
6796
|
# @!attribute [rw] root_volume_id
|
6630
6797
|
# The ID of the root volume of the OpenZFS file system.
|
6631
6798
|
# @return [String]
|
6632
6799
|
#
|
6800
|
+
# @!attribute [rw] preferred_subnet_id
|
6801
|
+
# Required when `DeploymentType` is set to `MULTI_AZ_1`. This
|
6802
|
+
# specifies the subnet in which you want the preferred file server to
|
6803
|
+
# be located.
|
6804
|
+
# @return [String]
|
6805
|
+
#
|
6806
|
+
# @!attribute [rw] endpoint_ip_address_range
|
6807
|
+
# (Multi-AZ only) Specifies the IP address range in which the
|
6808
|
+
# endpoints to access your file system will be created. By default in
|
6809
|
+
# the Amazon FSx API and Amazon FSx console, Amazon FSx selects an
|
6810
|
+
# available /28 IP address range for you from one of the VPC's CIDR
|
6811
|
+
# ranges. You can have overlapping endpoint IP addresses for file
|
6812
|
+
# systems deployed in the same VPC/route tables.
|
6813
|
+
# @return [String]
|
6814
|
+
#
|
6815
|
+
# @!attribute [rw] route_table_ids
|
6816
|
+
# (Multi-AZ only) The VPC route tables in which your file system's
|
6817
|
+
# endpoints are created.
|
6818
|
+
# @return [Array<String>]
|
6819
|
+
#
|
6820
|
+
# @!attribute [rw] endpoint_ip_address
|
6821
|
+
# The IP address of the endpoint that is used to access data or to
|
6822
|
+
# manage the file system.
|
6823
|
+
# @return [String]
|
6824
|
+
#
|
6633
6825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/OpenZFSFileSystemConfiguration AWS API Documentation
|
6634
6826
|
#
|
6635
6827
|
class OpenZFSFileSystemConfiguration < Struct.new(
|
@@ -6641,7 +6833,11 @@ module Aws::FSx
|
|
6641
6833
|
:throughput_capacity,
|
6642
6834
|
:weekly_maintenance_start_time,
|
6643
6835
|
:disk_iops_configuration,
|
6644
|
-
:root_volume_id
|
6836
|
+
:root_volume_id,
|
6837
|
+
:preferred_subnet_id,
|
6838
|
+
:endpoint_ip_address_range,
|
6839
|
+
:route_table_ids,
|
6840
|
+
:endpoint_ip_address)
|
6645
6841
|
SENSITIVE = []
|
6646
6842
|
include Aws::Structure
|
6647
6843
|
end
|
@@ -6839,6 +7035,42 @@ module Aws::FSx
|
|
6839
7035
|
include Aws::Structure
|
6840
7036
|
end
|
6841
7037
|
|
7038
|
+
# The configuration that specifies a minimum amount of time since last
|
7039
|
+
# access for an archived file to be eligible for release from an Amazon
|
7040
|
+
# FSx for Lustre file system. Only files that were last accessed before
|
7041
|
+
# this point-in-time can be released. For example, if you specify a last
|
7042
|
+
# accessed time criteria of 9 days, only files that were last accessed
|
7043
|
+
# 9.00001 or more days ago can be released.
|
7044
|
+
#
|
7045
|
+
# Only file data that has been archived can be released. Files that have
|
7046
|
+
# not yet been archived, such as new or changed files that have not been
|
7047
|
+
# exported, are not eligible for release. When files are released, their
|
7048
|
+
# metadata stays on the file system, so they can still be accessed
|
7049
|
+
# later. Users and applications can access a released file by reading
|
7050
|
+
# the file again, which restores data from Amazon S3 to the FSx for
|
7051
|
+
# Lustre file system.
|
7052
|
+
#
|
7053
|
+
# <note markdown="1"> If a file meets the last accessed time criteria, its file or directory
|
7054
|
+
# path must also be specified with the `Paths` parameter of the
|
7055
|
+
# operation in order for the file to be released.
|
7056
|
+
#
|
7057
|
+
# </note>
|
7058
|
+
#
|
7059
|
+
# @!attribute [rw] duration_since_last_access
|
7060
|
+
# Defines the point-in-time since an archived file was last accessed,
|
7061
|
+
# in order for that file to be eligible for release. Only files that
|
7062
|
+
# were last accessed before this point-in-time are eligible to be
|
7063
|
+
# released from the file system.
|
7064
|
+
# @return [Types::DurationSinceLastAccess]
|
7065
|
+
#
|
7066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/ReleaseConfiguration AWS API Documentation
|
7067
|
+
#
|
7068
|
+
class ReleaseConfiguration < Struct.new(
|
7069
|
+
:duration_since_last_access)
|
7070
|
+
SENSITIVE = []
|
7071
|
+
include Aws::Structure
|
7072
|
+
end
|
7073
|
+
|
6842
7074
|
# @!attribute [rw] file_system_id
|
6843
7075
|
# The globally unique ID of the file system, assigned by Amazon FSx.
|
6844
7076
|
# @return [String]
|
@@ -7291,7 +7523,7 @@ module Aws::FSx
|
|
7291
7523
|
#
|
7292
7524
|
#
|
7293
7525
|
#
|
7294
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/
|
7526
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-enterprise.html#privileged-delete
|
7295
7527
|
# @return [String]
|
7296
7528
|
#
|
7297
7529
|
# @!attribute [rw] retention_period
|
@@ -7319,7 +7551,7 @@ module Aws::FSx
|
|
7319
7551
|
#
|
7320
7552
|
#
|
7321
7553
|
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-compliance.html
|
7322
|
-
# [2]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/
|
7554
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-enterprise.html
|
7323
7555
|
# @return [String]
|
7324
7556
|
#
|
7325
7557
|
# @!attribute [rw] volume_append_mode_enabled
|
@@ -8275,14 +8507,27 @@ module Aws::FSx
|
|
8275
8507
|
#
|
8276
8508
|
# @!attribute [rw] disk_iops_configuration
|
8277
8509
|
# The SSD IOPS (input/output operations per second) configuration for
|
8278
|
-
# an Amazon FSx for NetApp ONTAP
|
8279
|
-
#
|
8280
|
-
# storage capacity. You can provision
|
8281
|
-
# storage. The configuration consists of the
|
8282
|
-
# provisioned SSD IOPS and how it is was provisioned,
|
8283
|
-
# the customer or by Amazon FSx).
|
8510
|
+
# an Amazon FSx for NetApp ONTAP, Amazon FSx for Windows File Server,
|
8511
|
+
# or FSx for OpenZFS file system. By default, Amazon FSx automatically
|
8512
|
+
# provisions 3 IOPS per GB of storage capacity. You can provision
|
8513
|
+
# additional IOPS per GB of storage. The configuration consists of the
|
8514
|
+
# total number of provisioned SSD IOPS and how it is was provisioned,
|
8515
|
+
# or the mode (by the customer or by Amazon FSx).
|
8284
8516
|
# @return [Types::DiskIopsConfiguration]
|
8285
8517
|
#
|
8518
|
+
# @!attribute [rw] add_route_table_ids
|
8519
|
+
# (Multi-AZ only) A list of IDs of new virtual private cloud (VPC)
|
8520
|
+
# route tables to associate (add) with your Amazon FSx for OpenZFS
|
8521
|
+
# file system.
|
8522
|
+
# @return [Array<String>]
|
8523
|
+
#
|
8524
|
+
# @!attribute [rw] remove_route_table_ids
|
8525
|
+
# (Multi-AZ only) A list of IDs of existing virtual private cloud
|
8526
|
+
# (VPC) route tables to disassociate (remove) from your Amazon FSx for
|
8527
|
+
# OpenZFS file system. You can use the API operation to retrieve the
|
8528
|
+
# list of VPC route table IDs for a file system.
|
8529
|
+
# @return [Array<String>]
|
8530
|
+
#
|
8286
8531
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemOpenZFSConfiguration AWS API Documentation
|
8287
8532
|
#
|
8288
8533
|
class UpdateFileSystemOpenZFSConfiguration < Struct.new(
|
@@ -8292,7 +8537,9 @@ module Aws::FSx
|
|
8292
8537
|
:daily_automatic_backup_start_time,
|
8293
8538
|
:throughput_capacity,
|
8294
8539
|
:weekly_maintenance_start_time,
|
8295
|
-
:disk_iops_configuration
|
8540
|
+
:disk_iops_configuration,
|
8541
|
+
:add_route_table_ids,
|
8542
|
+
:remove_route_table_ids)
|
8296
8543
|
SENSITIVE = []
|
8297
8544
|
include Aws::Structure
|
8298
8545
|
end
|
@@ -8387,6 +8634,10 @@ module Aws::FSx
|
|
8387
8634
|
# The configuration updates for an FSx for OpenZFS file system.
|
8388
8635
|
# @return [Types::UpdateFileSystemOpenZFSConfiguration]
|
8389
8636
|
#
|
8637
|
+
# @!attribute [rw] storage_type
|
8638
|
+
# Specifies the file system's storage type.
|
8639
|
+
# @return [String]
|
8640
|
+
#
|
8390
8641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemRequest AWS API Documentation
|
8391
8642
|
#
|
8392
8643
|
class UpdateFileSystemRequest < Struct.new(
|
@@ -8396,7 +8647,8 @@ module Aws::FSx
|
|
8396
8647
|
:windows_configuration,
|
8397
8648
|
:lustre_configuration,
|
8398
8649
|
:ontap_configuration,
|
8399
|
-
:open_zfs_configuration
|
8650
|
+
:open_zfs_configuration,
|
8651
|
+
:storage_type)
|
8400
8652
|
SENSITIVE = []
|
8401
8653
|
include Aws::Structure
|
8402
8654
|
end
|
@@ -8467,6 +8719,14 @@ module Aws::FSx
|
|
8467
8719
|
# the Amazon FSx for Windows File Server file system..
|
8468
8720
|
# @return [Types::WindowsAuditLogCreateConfiguration]
|
8469
8721
|
#
|
8722
|
+
# @!attribute [rw] disk_iops_configuration
|
8723
|
+
# The SSD IOPS (input/output operations per second) configuration for
|
8724
|
+
# an Amazon FSx for Windows file system. By default, Amazon FSx
|
8725
|
+
# automatically provisions 3 IOPS per GiB of storage capacity. You can
|
8726
|
+
# provision additional IOPS per GiB of storage, up to the maximum
|
8727
|
+
# limit associated with your chosen throughput capacity.
|
8728
|
+
# @return [Types::DiskIopsConfiguration]
|
8729
|
+
#
|
8470
8730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemWindowsConfiguration AWS API Documentation
|
8471
8731
|
#
|
8472
8732
|
class UpdateFileSystemWindowsConfiguration < Struct.new(
|
@@ -8475,7 +8735,8 @@ module Aws::FSx
|
|
8475
8735
|
:automatic_backup_retention_days,
|
8476
8736
|
:throughput_capacity,
|
8477
8737
|
:self_managed_active_directory_configuration,
|
8478
|
-
:audit_log_configuration
|
8738
|
+
:audit_log_configuration,
|
8739
|
+
:disk_iops_configuration)
|
8479
8740
|
SENSITIVE = []
|
8480
8741
|
include Aws::Structure
|
8481
8742
|
end
|
@@ -8679,7 +8940,7 @@ module Aws::FSx
|
|
8679
8940
|
#
|
8680
8941
|
#
|
8681
8942
|
#
|
8682
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/
|
8943
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/snaplock-enterprise.html#privileged-delete
|
8683
8944
|
# @return [String]
|
8684
8945
|
#
|
8685
8946
|
# @!attribute [rw] retention_period
|
@@ -9060,7 +9321,7 @@ module Aws::FSx
|
|
9060
9321
|
# ARN or Amazon Kinesis Data Firehose delivery stream ARN.
|
9061
9322
|
#
|
9062
9323
|
# The name of the Amazon CloudWatch Logs log group must begin with the
|
9063
|
-
# `/aws/fsx` prefix. The name of the Amazon Kinesis Data
|
9324
|
+
# `/aws/fsx` prefix. The name of the Amazon Kinesis Data Firehose
|
9064
9325
|
# delivery stream must begin with the `aws-fsx` prefix.
|
9065
9326
|
#
|
9066
9327
|
# The destination ARN (either CloudWatch Logs log group or Kinesis
|
@@ -9129,7 +9390,7 @@ module Aws::FSx
|
|
9129
9390
|
#
|
9130
9391
|
# * The name of the Amazon CloudWatch Logs log group must begin with
|
9131
9392
|
# the `/aws/fsx` prefix. The name of the Amazon Kinesis Data
|
9132
|
-
#
|
9393
|
+
# Firehose delivery stream must begin with the `aws-fsx` prefix.
|
9133
9394
|
#
|
9134
9395
|
# * If you do not provide a destination in `AuditLogDestination`,
|
9135
9396
|
# Amazon FSx will create and use a log stream in the CloudWatch Logs
|
@@ -9296,6 +9557,14 @@ module Aws::FSx
|
|
9296
9557
|
# the Amazon FSx for Windows File Server file system.
|
9297
9558
|
# @return [Types::WindowsAuditLogConfiguration]
|
9298
9559
|
#
|
9560
|
+
# @!attribute [rw] disk_iops_configuration
|
9561
|
+
# The SSD IOPS (input/output operations per second) configuration for
|
9562
|
+
# an Amazon FSx for Windows file system. By default, Amazon FSx
|
9563
|
+
# automatically provisions 3 IOPS per GiB of storage capacity. You can
|
9564
|
+
# provision additional IOPS per GiB of storage, up to the maximum
|
9565
|
+
# limit associated with your chosen throughput capacity.
|
9566
|
+
# @return [Types::DiskIopsConfiguration]
|
9567
|
+
#
|
9299
9568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/WindowsFileSystemConfiguration AWS API Documentation
|
9300
9569
|
#
|
9301
9570
|
class WindowsFileSystemConfiguration < Struct.new(
|
@@ -9312,7 +9581,8 @@ module Aws::FSx
|
|
9312
9581
|
:automatic_backup_retention_days,
|
9313
9582
|
:copy_tags_to_backups,
|
9314
9583
|
:aliases,
|
9315
|
-
:audit_log_configuration
|
9584
|
+
:audit_log_configuration,
|
9585
|
+
:disk_iops_configuration)
|
9316
9586
|
SENSITIVE = []
|
9317
9587
|
include Aws::Structure
|
9318
9588
|
end
|