aws-sdk-fsx 1.118.0 → 1.120.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 +146 -35
- data/lib/aws-sdk-fsx/client_api.rb +11 -0
- data/lib/aws-sdk-fsx/types.rb +89 -16
- data/lib/aws-sdk-fsx.rb +1 -1
- data/sig/client.rbs +10 -4
- data/sig/types.rbs +10 -1
- metadata +1 -1
@@ -264,6 +264,7 @@ module Aws::FSx
|
|
264
264
|
Iops = Shapes::IntegerShape.new(name: 'Iops')
|
265
265
|
IpAddress = Shapes::StringShape.new(name: 'IpAddress')
|
266
266
|
IpAddressRange = Shapes::StringShape.new(name: 'IpAddressRange')
|
267
|
+
Ipv6AddressRange = Shapes::StringShape.new(name: 'Ipv6AddressRange')
|
267
268
|
JunctionPath = Shapes::StringShape.new(name: 'JunctionPath')
|
268
269
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
269
270
|
LastUpdatedTime = Shapes::TimestampShape.new(name: 'LastUpdatedTime')
|
@@ -297,6 +298,7 @@ module Aws::FSx
|
|
297
298
|
NetBiosAlias = Shapes::StringShape.new(name: 'NetBiosAlias')
|
298
299
|
NetworkInterfaceId = Shapes::StringShape.new(name: 'NetworkInterfaceId')
|
299
300
|
NetworkInterfaceIds = Shapes::ListShape.new(name: 'NetworkInterfaceIds')
|
301
|
+
NetworkType = Shapes::StringShape.new(name: 'NetworkType')
|
300
302
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
301
303
|
NfsVersion = Shapes::StringShape.new(name: 'NfsVersion')
|
302
304
|
NotServiceResourceError = Shapes::StructureShape.new(name: 'NotServiceResourceError')
|
@@ -526,6 +528,7 @@ module Aws::FSx
|
|
526
528
|
AdministrativeAction.add_member(:target_snapshot_values, Shapes::ShapeRef.new(shape: Snapshot, location_name: "TargetSnapshotValues"))
|
527
529
|
AdministrativeAction.add_member(:total_transfer_bytes, Shapes::ShapeRef.new(shape: TotalTransferBytes, location_name: "TotalTransferBytes"))
|
528
530
|
AdministrativeAction.add_member(:remaining_transfer_bytes, Shapes::ShapeRef.new(shape: RemainingTransferBytes, location_name: "RemainingTransferBytes"))
|
531
|
+
AdministrativeAction.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
529
532
|
AdministrativeAction.struct_class = Types::AdministrativeAction
|
530
533
|
|
531
534
|
AdministrativeActionFailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -737,6 +740,7 @@ module Aws::FSx
|
|
737
740
|
CreateFileSystemFromBackupRequest.add_member(:file_system_type_version, Shapes::ShapeRef.new(shape: FileSystemTypeVersion, location_name: "FileSystemTypeVersion"))
|
738
741
|
CreateFileSystemFromBackupRequest.add_member(:open_zfs_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemOpenZFSConfiguration, location_name: "OpenZFSConfiguration"))
|
739
742
|
CreateFileSystemFromBackupRequest.add_member(:storage_capacity, Shapes::ShapeRef.new(shape: StorageCapacity, location_name: "StorageCapacity"))
|
743
|
+
CreateFileSystemFromBackupRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
740
744
|
CreateFileSystemFromBackupRequest.struct_class = Types::CreateFileSystemFromBackupRequest
|
741
745
|
|
742
746
|
CreateFileSystemFromBackupResponse.add_member(:file_system, Shapes::ShapeRef.new(shape: FileSystem, location_name: "FileSystem"))
|
@@ -791,6 +795,7 @@ module Aws::FSx
|
|
791
795
|
CreateFileSystemOpenZFSConfiguration.add_member(:root_volume_configuration, Shapes::ShapeRef.new(shape: OpenZFSCreateRootVolumeConfiguration, location_name: "RootVolumeConfiguration"))
|
792
796
|
CreateFileSystemOpenZFSConfiguration.add_member(:preferred_subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "PreferredSubnetId"))
|
793
797
|
CreateFileSystemOpenZFSConfiguration.add_member(:endpoint_ip_address_range, Shapes::ShapeRef.new(shape: IpAddressRange, location_name: "EndpointIpAddressRange"))
|
798
|
+
CreateFileSystemOpenZFSConfiguration.add_member(:endpoint_ipv_6_address_range, Shapes::ShapeRef.new(shape: Ipv6AddressRange, location_name: "EndpointIpv6AddressRange"))
|
794
799
|
CreateFileSystemOpenZFSConfiguration.add_member(:route_table_ids, Shapes::ShapeRef.new(shape: RouteTableIds, location_name: "RouteTableIds"))
|
795
800
|
CreateFileSystemOpenZFSConfiguration.add_member(:read_cache_configuration, Shapes::ShapeRef.new(shape: OpenZFSReadCacheConfiguration, location_name: "ReadCacheConfiguration"))
|
796
801
|
CreateFileSystemOpenZFSConfiguration.struct_class = Types::CreateFileSystemOpenZFSConfiguration
|
@@ -808,6 +813,7 @@ module Aws::FSx
|
|
808
813
|
CreateFileSystemRequest.add_member(:ontap_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemOntapConfiguration, location_name: "OntapConfiguration"))
|
809
814
|
CreateFileSystemRequest.add_member(:file_system_type_version, Shapes::ShapeRef.new(shape: FileSystemTypeVersion, location_name: "FileSystemTypeVersion"))
|
810
815
|
CreateFileSystemRequest.add_member(:open_zfs_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemOpenZFSConfiguration, location_name: "OpenZFSConfiguration"))
|
816
|
+
CreateFileSystemRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
811
817
|
CreateFileSystemRequest.struct_class = Types::CreateFileSystemRequest
|
812
818
|
|
813
819
|
CreateFileSystemResponse.add_member(:file_system, Shapes::ShapeRef.new(shape: FileSystem, location_name: "FileSystem"))
|
@@ -1327,6 +1333,7 @@ module Aws::FSx
|
|
1327
1333
|
FileSystem.add_member(:ontap_configuration, Shapes::ShapeRef.new(shape: OntapFileSystemConfiguration, location_name: "OntapConfiguration"))
|
1328
1334
|
FileSystem.add_member(:file_system_type_version, Shapes::ShapeRef.new(shape: FileSystemTypeVersion, location_name: "FileSystemTypeVersion"))
|
1329
1335
|
FileSystem.add_member(:open_zfs_configuration, Shapes::ShapeRef.new(shape: OpenZFSFileSystemConfiguration, location_name: "OpenZFSConfiguration"))
|
1336
|
+
FileSystem.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
1330
1337
|
FileSystem.struct_class = Types::FileSystem
|
1331
1338
|
|
1332
1339
|
FileSystemEndpoint.add_member(:dns_name, Shapes::ShapeRef.new(shape: DNSName, location_name: "DNSName"))
|
@@ -1536,8 +1543,10 @@ module Aws::FSx
|
|
1536
1543
|
OpenZFSFileSystemConfiguration.add_member(:root_volume_id, Shapes::ShapeRef.new(shape: VolumeId, location_name: "RootVolumeId"))
|
1537
1544
|
OpenZFSFileSystemConfiguration.add_member(:preferred_subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "PreferredSubnetId"))
|
1538
1545
|
OpenZFSFileSystemConfiguration.add_member(:endpoint_ip_address_range, Shapes::ShapeRef.new(shape: IpAddressRange, location_name: "EndpointIpAddressRange"))
|
1546
|
+
OpenZFSFileSystemConfiguration.add_member(:endpoint_ipv_6_address_range, Shapes::ShapeRef.new(shape: Ipv6AddressRange, location_name: "EndpointIpv6AddressRange"))
|
1539
1547
|
OpenZFSFileSystemConfiguration.add_member(:route_table_ids, Shapes::ShapeRef.new(shape: RouteTableIds, location_name: "RouteTableIds"))
|
1540
1548
|
OpenZFSFileSystemConfiguration.add_member(:endpoint_ip_address, Shapes::ShapeRef.new(shape: IpAddress, location_name: "EndpointIpAddress"))
|
1549
|
+
OpenZFSFileSystemConfiguration.add_member(:endpoint_ipv_6_address, Shapes::ShapeRef.new(shape: IpAddress, location_name: "EndpointIpv6Address"))
|
1541
1550
|
OpenZFSFileSystemConfiguration.add_member(:read_cache_configuration, Shapes::ShapeRef.new(shape: OpenZFSReadCacheConfiguration, location_name: "ReadCacheConfiguration"))
|
1542
1551
|
OpenZFSFileSystemConfiguration.struct_class = Types::OpenZFSFileSystemConfiguration
|
1543
1552
|
|
@@ -1890,6 +1899,7 @@ module Aws::FSx
|
|
1890
1899
|
UpdateFileSystemOpenZFSConfiguration.add_member(:add_route_table_ids, Shapes::ShapeRef.new(shape: RouteTableIds, location_name: "AddRouteTableIds"))
|
1891
1900
|
UpdateFileSystemOpenZFSConfiguration.add_member(:remove_route_table_ids, Shapes::ShapeRef.new(shape: RouteTableIds, location_name: "RemoveRouteTableIds"))
|
1892
1901
|
UpdateFileSystemOpenZFSConfiguration.add_member(:read_cache_configuration, Shapes::ShapeRef.new(shape: OpenZFSReadCacheConfiguration, location_name: "ReadCacheConfiguration"))
|
1902
|
+
UpdateFileSystemOpenZFSConfiguration.add_member(:endpoint_ipv_6_address_range, Shapes::ShapeRef.new(shape: Ipv6AddressRange, location_name: "EndpointIpv6AddressRange"))
|
1893
1903
|
UpdateFileSystemOpenZFSConfiguration.struct_class = Types::UpdateFileSystemOpenZFSConfiguration
|
1894
1904
|
|
1895
1905
|
UpdateFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
@@ -1901,6 +1911,7 @@ module Aws::FSx
|
|
1901
1911
|
UpdateFileSystemRequest.add_member(:open_zfs_configuration, Shapes::ShapeRef.new(shape: UpdateFileSystemOpenZFSConfiguration, location_name: "OpenZFSConfiguration"))
|
1902
1912
|
UpdateFileSystemRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
|
1903
1913
|
UpdateFileSystemRequest.add_member(:file_system_type_version, Shapes::ShapeRef.new(shape: FileSystemTypeVersion, location_name: "FileSystemTypeVersion"))
|
1914
|
+
UpdateFileSystemRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
1904
1915
|
UpdateFileSystemRequest.struct_class = Types::UpdateFileSystemRequest
|
1905
1916
|
|
1906
1917
|
UpdateFileSystemResponse.add_member(:file_system, Shapes::ShapeRef.new(shape: FileSystem, location_name: "FileSystem"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -277,6 +277,10 @@ module Aws::FSx
|
|
277
277
|
# that you're copying.
|
278
278
|
# @return [Integer]
|
279
279
|
#
|
280
|
+
# @!attribute [rw] message
|
281
|
+
# A detailed error message.
|
282
|
+
# @return [String]
|
283
|
+
#
|
280
284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/AdministrativeAction AWS API Documentation
|
281
285
|
#
|
282
286
|
class AdministrativeAction < Struct.new(
|
@@ -289,7 +293,8 @@ module Aws::FSx
|
|
289
293
|
:target_volume_values,
|
290
294
|
:target_snapshot_values,
|
291
295
|
:total_transfer_bytes,
|
292
|
-
:remaining_transfer_bytes
|
296
|
+
:remaining_transfer_bytes,
|
297
|
+
:message)
|
293
298
|
SENSITIVE = []
|
294
299
|
include Aws::Structure
|
295
300
|
end
|
@@ -1802,6 +1807,11 @@ module Aws::FSx
|
|
1802
1807
|
# code 400 Bad Request.
|
1803
1808
|
# @return [Integer]
|
1804
1809
|
#
|
1810
|
+
# @!attribute [rw] network_type
|
1811
|
+
# Sets the network type for the Amazon FSx for OpenZFS file system
|
1812
|
+
# that you're creating from a backup.
|
1813
|
+
# @return [String]
|
1814
|
+
#
|
1805
1815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemFromBackupRequest AWS API Documentation
|
1806
1816
|
#
|
1807
1817
|
class CreateFileSystemFromBackupRequest < Struct.new(
|
@@ -1816,7 +1826,8 @@ module Aws::FSx
|
|
1816
1826
|
:kms_key_id,
|
1817
1827
|
:file_system_type_version,
|
1818
1828
|
:open_zfs_configuration,
|
1819
|
-
:storage_capacity
|
1829
|
+
:storage_capacity,
|
1830
|
+
:network_type)
|
1820
1831
|
SENSITIVE = []
|
1821
1832
|
include Aws::Structure
|
1822
1833
|
end
|
@@ -2524,6 +2535,16 @@ module Aws::FSx
|
|
2524
2535
|
# don't overlap with any subnet.
|
2525
2536
|
# @return [String]
|
2526
2537
|
#
|
2538
|
+
# @!attribute [rw] endpoint_ipv_6_address_range
|
2539
|
+
# (Multi-AZ only) Specifies the IP address range in which the
|
2540
|
+
# endpoints to access your file system will be created. By default in
|
2541
|
+
# the Amazon FSx API and Amazon FSx console, Amazon FSx selects an
|
2542
|
+
# available /118 IP address range for you from one of the VPC's CIDR
|
2543
|
+
# ranges. You can have overlapping endpoint IP addresses for file
|
2544
|
+
# systems deployed in the same VPC/route tables, as long as they
|
2545
|
+
# don't overlap with any subnet.
|
2546
|
+
# @return [String]
|
2547
|
+
#
|
2527
2548
|
# @!attribute [rw] route_table_ids
|
2528
2549
|
# (Multi-AZ only) Specifies the route tables in which Amazon FSx
|
2529
2550
|
# creates the rules for routing traffic to the correct file server.
|
@@ -2551,6 +2572,7 @@ module Aws::FSx
|
|
2551
2572
|
:root_volume_configuration,
|
2552
2573
|
:preferred_subnet_id,
|
2553
2574
|
:endpoint_ip_address_range,
|
2575
|
+
:endpoint_ipv_6_address_range,
|
2554
2576
|
:route_table_ids,
|
2555
2577
|
:read_cache_configuration)
|
2556
2578
|
SENSITIVE = []
|
@@ -2757,6 +2779,14 @@ module Aws::FSx
|
|
2757
2779
|
# The OpenZFS configuration for the file system that's being created.
|
2758
2780
|
# @return [Types::CreateFileSystemOpenZFSConfiguration]
|
2759
2781
|
#
|
2782
|
+
# @!attribute [rw] network_type
|
2783
|
+
# The network type of the Amazon FSx file system that you are
|
2784
|
+
# creating. Valid values are `IPV4` (which supports IPv4 only) and
|
2785
|
+
# `DUAL` (for dual-stack mode, which supports both IPv4 and IPv6). The
|
2786
|
+
# default is `IPV4`. Supported only for Amazon FSx for OpenZFS file
|
2787
|
+
# systems.
|
2788
|
+
# @return [String]
|
2789
|
+
#
|
2760
2790
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemRequest AWS API Documentation
|
2761
2791
|
#
|
2762
2792
|
class CreateFileSystemRequest < Struct.new(
|
@@ -2772,7 +2802,8 @@ module Aws::FSx
|
|
2772
2802
|
:lustre_configuration,
|
2773
2803
|
:ontap_configuration,
|
2774
2804
|
:file_system_type_version,
|
2775
|
-
:open_zfs_configuration
|
2805
|
+
:open_zfs_configuration,
|
2806
|
+
:network_type)
|
2776
2807
|
SENSITIVE = []
|
2777
2808
|
include Aws::Structure
|
2778
2809
|
end
|
@@ -6311,6 +6342,10 @@ module Aws::FSx
|
|
6311
6342
|
# The configuration for this Amazon FSx for OpenZFS file system.
|
6312
6343
|
# @return [Types::OpenZFSFileSystemConfiguration]
|
6313
6344
|
#
|
6345
|
+
# @!attribute [rw] network_type
|
6346
|
+
# The network type of the file system.
|
6347
|
+
# @return [String]
|
6348
|
+
#
|
6314
6349
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/FileSystem AWS API Documentation
|
6315
6350
|
#
|
6316
6351
|
class FileSystem < Struct.new(
|
@@ -6334,7 +6369,8 @@ module Aws::FSx
|
|
6334
6369
|
:administrative_actions,
|
6335
6370
|
:ontap_configuration,
|
6336
6371
|
:file_system_type_version,
|
6337
|
-
:open_zfs_configuration
|
6372
|
+
:open_zfs_configuration,
|
6373
|
+
:network_type)
|
6338
6374
|
SENSITIVE = []
|
6339
6375
|
include Aws::Structure
|
6340
6376
|
end
|
@@ -7739,6 +7775,16 @@ module Aws::FSx
|
|
7739
7775
|
# systems deployed in the same VPC/route tables.
|
7740
7776
|
# @return [String]
|
7741
7777
|
#
|
7778
|
+
# @!attribute [rw] endpoint_ipv_6_address_range
|
7779
|
+
# (Multi-AZ only) Specifies the IP address range in which the
|
7780
|
+
# endpoints to access your file system will be created. By default in
|
7781
|
+
# the Amazon FSx API and Amazon FSx console, Amazon FSx selects an
|
7782
|
+
# available /118 IP address range for you from one of the VPC's CIDR
|
7783
|
+
# ranges. You can have overlapping endpoint IP addresses for file
|
7784
|
+
# systems deployed in the same VPC/route tables, as long as they
|
7785
|
+
# don't overlap with any subnet.
|
7786
|
+
# @return [String]
|
7787
|
+
#
|
7742
7788
|
# @!attribute [rw] route_table_ids
|
7743
7789
|
# (Multi-AZ only) The VPC route tables in which your file system's
|
7744
7790
|
# endpoints are created.
|
@@ -7749,6 +7795,11 @@ module Aws::FSx
|
|
7749
7795
|
# manage the file system.
|
7750
7796
|
# @return [String]
|
7751
7797
|
#
|
7798
|
+
# @!attribute [rw] endpoint_ipv_6_address
|
7799
|
+
# The IPv6 address of the endpoint that is used to access data or to
|
7800
|
+
# manage the file system.
|
7801
|
+
# @return [String]
|
7802
|
+
#
|
7752
7803
|
# @!attribute [rw] read_cache_configuration
|
7753
7804
|
# Required when `StorageType` is set to `INTELLIGENT_TIERING`.
|
7754
7805
|
# Specifies the optional provisioned SSD read cache.
|
@@ -7768,8 +7819,10 @@ module Aws::FSx
|
|
7768
7819
|
:root_volume_id,
|
7769
7820
|
:preferred_subnet_id,
|
7770
7821
|
:endpoint_ip_address_range,
|
7822
|
+
:endpoint_ipv_6_address_range,
|
7771
7823
|
:route_table_ids,
|
7772
7824
|
:endpoint_ip_address,
|
7825
|
+
:endpoint_ipv_6_address,
|
7773
7826
|
:read_cache_configuration)
|
7774
7827
|
SENSITIVE = []
|
7775
7828
|
include Aws::Structure
|
@@ -9779,12 +9832,12 @@ module Aws::FSx
|
|
9779
9832
|
# per GB of storage. The configuration consists of an IOPS mode
|
9780
9833
|
# (`AUTOMATIC` or `USER_PROVISIONED`), and in the case of
|
9781
9834
|
# `USER_PROVISIONED` IOPS, the total number of SSD IOPS provisioned.
|
9782
|
-
# For more information, see [
|
9835
|
+
# For more information, see [File system storage capacity and
|
9783
9836
|
# IOPS][1].
|
9784
9837
|
#
|
9785
9838
|
#
|
9786
9839
|
#
|
9787
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/
|
9840
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/storage-capacity-and-IOPS.html
|
9788
9841
|
# @return [Types::DiskIopsConfiguration]
|
9789
9842
|
#
|
9790
9843
|
# @!attribute [rw] throughput_capacity
|
@@ -9968,6 +10021,16 @@ module Aws::FSx
|
|
9968
10021
|
# file systems that use the Intelligent-Tiering storage class.
|
9969
10022
|
# @return [Types::OpenZFSReadCacheConfiguration]
|
9970
10023
|
#
|
10024
|
+
# @!attribute [rw] endpoint_ipv_6_address_range
|
10025
|
+
# (Multi-AZ only) Specifies the IP address range in which the
|
10026
|
+
# endpoints to access your file system will be created. By default in
|
10027
|
+
# the Amazon FSx API and Amazon FSx console, Amazon FSx selects an
|
10028
|
+
# available /118 IP address range for you from one of the VPC's CIDR
|
10029
|
+
# ranges. You can have overlapping endpoint IP addresses for file
|
10030
|
+
# systems deployed in the same VPC/route tables, as long as they
|
10031
|
+
# don't overlap with any subnet.
|
10032
|
+
# @return [String]
|
10033
|
+
#
|
9971
10034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemOpenZFSConfiguration AWS API Documentation
|
9972
10035
|
#
|
9973
10036
|
class UpdateFileSystemOpenZFSConfiguration < Struct.new(
|
@@ -9980,7 +10043,8 @@ module Aws::FSx
|
|
9980
10043
|
:disk_iops_configuration,
|
9981
10044
|
:add_route_table_ids,
|
9982
10045
|
:remove_route_table_ids,
|
9983
|
-
:read_cache_configuration
|
10046
|
+
:read_cache_configuration,
|
10047
|
+
:endpoint_ipv_6_address_range)
|
9984
10048
|
SENSITIVE = []
|
9985
10049
|
include Aws::Structure
|
9986
10050
|
end
|
@@ -10004,9 +10068,10 @@ module Aws::FSx
|
|
10004
10068
|
# @!attribute [rw] storage_capacity
|
10005
10069
|
# Use this parameter to increase the storage capacity of an FSx for
|
10006
10070
|
# Windows File Server, FSx for Lustre, FSx for OpenZFS, or FSx for
|
10007
|
-
# ONTAP file system.
|
10008
|
-
#
|
10009
|
-
# you're
|
10071
|
+
# ONTAP file system. For second-generation FSx for ONTAP file systems,
|
10072
|
+
# you can also decrease the storage capacity. Specifies the storage
|
10073
|
+
# capacity target value, in GiB, for the file system that you're
|
10074
|
+
# updating.
|
10010
10075
|
#
|
10011
10076
|
# <note markdown="1"> You can't make a storage capacity increase request if there is an
|
10012
10077
|
# existing storage capacity increase request in progress.
|
@@ -10043,17 +10108,20 @@ module Aws::FSx
|
|
10043
10108
|
# storage capacity][3] in the *Amazon FSxfor Windows File Server User
|
10044
10109
|
# Guide*.
|
10045
10110
|
#
|
10046
|
-
# For ONTAP file systems,
|
10047
|
-
#
|
10048
|
-
#
|
10049
|
-
#
|
10111
|
+
# For ONTAP file systems, when increasing storage capacity, the
|
10112
|
+
# storage capacity target value must be at least 10 percent greater
|
10113
|
+
# than the current storage capacity value. When decreasing storage
|
10114
|
+
# capacity on second-generation file systems, the target value must be
|
10115
|
+
# at least 9 percent smaller than the current SSD storage capacity.
|
10116
|
+
# For more information, see [File system storage capacity and IOPS][4]
|
10117
|
+
# in the Amazon FSx for NetApp ONTAP User Guide.
|
10050
10118
|
#
|
10051
10119
|
#
|
10052
10120
|
#
|
10053
10121
|
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/managing-storage-capacity.html
|
10054
10122
|
# [2]: https://docs.aws.amazon.com/fsx/latest/OpenZFSGuide/managing-storage-capacity.html
|
10055
10123
|
# [3]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
10056
|
-
# [4]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/
|
10124
|
+
# [4]: https://docs.aws.amazon.com/fsx/latest/ONTAPGuide/storage-capacity-and-IOPS.html
|
10057
10125
|
# @return [Integer]
|
10058
10126
|
#
|
10059
10127
|
# @!attribute [rw] windows_configuration
|
@@ -10085,6 +10153,10 @@ module Aws::FSx
|
|
10085
10153
|
# newer than the file system's current Lustre version.
|
10086
10154
|
# @return [String]
|
10087
10155
|
#
|
10156
|
+
# @!attribute [rw] network_type
|
10157
|
+
# Changes the network type of an FSx for OpenZFS file system.
|
10158
|
+
# @return [String]
|
10159
|
+
#
|
10088
10160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemRequest AWS API Documentation
|
10089
10161
|
#
|
10090
10162
|
class UpdateFileSystemRequest < Struct.new(
|
@@ -10096,7 +10168,8 @@ module Aws::FSx
|
|
10096
10168
|
:ontap_configuration,
|
10097
10169
|
:open_zfs_configuration,
|
10098
10170
|
:storage_type,
|
10099
|
-
:file_system_type_version
|
10171
|
+
:file_system_type_version,
|
10172
|
+
:network_type)
|
10100
10173
|
SENSITIVE = []
|
10101
10174
|
include Aws::Structure
|
10102
10175
|
end
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -422,12 +422,14 @@ module Aws
|
|
422
422
|
}?,
|
423
423
|
preferred_subnet_id: ::String?,
|
424
424
|
endpoint_ip_address_range: ::String?,
|
425
|
+
endpoint_ipv_6_address_range: ::String?,
|
425
426
|
route_table_ids: Array[::String]?,
|
426
427
|
read_cache_configuration: {
|
427
428
|
sizing_mode: ("NO_CACHE" | "USER_PROVISIONED" | "PROPORTIONAL_TO_THROUGHPUT_CAPACITY")?,
|
428
429
|
size_gi_b: ::Integer?
|
429
430
|
}?
|
430
|
-
}
|
431
|
+
},
|
432
|
+
?network_type: ("IPV4" | "DUAL")
|
431
433
|
) -> _CreateFileSystemResponseSuccess
|
432
434
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFileSystemResponseSuccess
|
433
435
|
|
@@ -547,13 +549,15 @@ module Aws
|
|
547
549
|
}?,
|
548
550
|
preferred_subnet_id: ::String?,
|
549
551
|
endpoint_ip_address_range: ::String?,
|
552
|
+
endpoint_ipv_6_address_range: ::String?,
|
550
553
|
route_table_ids: Array[::String]?,
|
551
554
|
read_cache_configuration: {
|
552
555
|
sizing_mode: ("NO_CACHE" | "USER_PROVISIONED" | "PROPORTIONAL_TO_THROUGHPUT_CAPACITY")?,
|
553
556
|
size_gi_b: ::Integer?
|
554
557
|
}?
|
555
558
|
},
|
556
|
-
?storage_capacity: ::Integer
|
559
|
+
?storage_capacity: ::Integer,
|
560
|
+
?network_type: ("IPV4" | "DUAL")
|
557
561
|
) -> _CreateFileSystemFromBackupResponseSuccess
|
558
562
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFileSystemFromBackupResponseSuccess
|
559
563
|
|
@@ -1295,10 +1299,12 @@ module Aws
|
|
1295
1299
|
read_cache_configuration: {
|
1296
1300
|
sizing_mode: ("NO_CACHE" | "USER_PROVISIONED" | "PROPORTIONAL_TO_THROUGHPUT_CAPACITY")?,
|
1297
1301
|
size_gi_b: ::Integer?
|
1298
|
-
}
|
1302
|
+
}?,
|
1303
|
+
endpoint_ipv_6_address_range: ::String?
|
1299
1304
|
},
|
1300
1305
|
?storage_type: ("SSD" | "HDD" | "INTELLIGENT_TIERING"),
|
1301
|
-
?file_system_type_version: ::String
|
1306
|
+
?file_system_type_version: ::String,
|
1307
|
+
?network_type: ("IPV4" | "DUAL")
|
1302
1308
|
) -> _UpdateFileSystemResponseSuccess
|
1303
1309
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFileSystemResponseSuccess
|
1304
1310
|
|
data/sig/types.rbs
CHANGED
@@ -32,13 +32,14 @@ module Aws::FSx
|
|
32
32
|
attr_accessor administrative_action_type: ("FILE_SYSTEM_UPDATE" | "STORAGE_OPTIMIZATION" | "FILE_SYSTEM_ALIAS_ASSOCIATION" | "FILE_SYSTEM_ALIAS_DISASSOCIATION" | "VOLUME_UPDATE" | "SNAPSHOT_UPDATE" | "RELEASE_NFS_V3_LOCKS" | "VOLUME_RESTORE" | "THROUGHPUT_OPTIMIZATION" | "IOPS_OPTIMIZATION" | "STORAGE_TYPE_OPTIMIZATION" | "MISCONFIGURED_STATE_RECOVERY" | "VOLUME_UPDATE_WITH_SNAPSHOT" | "VOLUME_INITIALIZE_WITH_SNAPSHOT" | "DOWNLOAD_DATA_FROM_BACKUP")
|
33
33
|
attr_accessor progress_percent: ::Integer
|
34
34
|
attr_accessor request_time: ::Time
|
35
|
-
attr_accessor status: ("FAILED" | "IN_PROGRESS" | "PENDING" | "COMPLETED" | "UPDATED_OPTIMIZING" | "OPTIMIZING")
|
35
|
+
attr_accessor status: ("FAILED" | "IN_PROGRESS" | "PENDING" | "COMPLETED" | "UPDATED_OPTIMIZING" | "OPTIMIZING" | "PAUSED" | "CANCELLED")
|
36
36
|
attr_accessor target_file_system_values: Types::FileSystem
|
37
37
|
attr_accessor failure_details: Types::AdministrativeActionFailureDetails
|
38
38
|
attr_accessor target_volume_values: Types::Volume
|
39
39
|
attr_accessor target_snapshot_values: Types::Snapshot
|
40
40
|
attr_accessor total_transfer_bytes: ::Integer
|
41
41
|
attr_accessor remaining_transfer_bytes: ::Integer
|
42
|
+
attr_accessor message: ::String
|
42
43
|
SENSITIVE: []
|
43
44
|
end
|
44
45
|
|
@@ -310,6 +311,7 @@ module Aws::FSx
|
|
310
311
|
attr_accessor file_system_type_version: ::String
|
311
312
|
attr_accessor open_zfs_configuration: Types::CreateFileSystemOpenZFSConfiguration
|
312
313
|
attr_accessor storage_capacity: ::Integer
|
314
|
+
attr_accessor network_type: ("IPV4" | "DUAL")
|
313
315
|
SENSITIVE: []
|
314
316
|
end
|
315
317
|
|
@@ -374,6 +376,7 @@ module Aws::FSx
|
|
374
376
|
attr_accessor root_volume_configuration: Types::OpenZFSCreateRootVolumeConfiguration
|
375
377
|
attr_accessor preferred_subnet_id: ::String
|
376
378
|
attr_accessor endpoint_ip_address_range: ::String
|
379
|
+
attr_accessor endpoint_ipv_6_address_range: ::String
|
377
380
|
attr_accessor route_table_ids: ::Array[::String]
|
378
381
|
attr_accessor read_cache_configuration: Types::OpenZFSReadCacheConfiguration
|
379
382
|
SENSITIVE: []
|
@@ -393,6 +396,7 @@ module Aws::FSx
|
|
393
396
|
attr_accessor ontap_configuration: Types::CreateFileSystemOntapConfiguration
|
394
397
|
attr_accessor file_system_type_version: ::String
|
395
398
|
attr_accessor open_zfs_configuration: Types::CreateFileSystemOpenZFSConfiguration
|
399
|
+
attr_accessor network_type: ("IPV4" | "DUAL")
|
396
400
|
SENSITIVE: []
|
397
401
|
end
|
398
402
|
|
@@ -1059,6 +1063,7 @@ module Aws::FSx
|
|
1059
1063
|
attr_accessor ontap_configuration: Types::OntapFileSystemConfiguration
|
1060
1064
|
attr_accessor file_system_type_version: ::String
|
1061
1065
|
attr_accessor open_zfs_configuration: Types::OpenZFSFileSystemConfiguration
|
1066
|
+
attr_accessor network_type: ("IPV4" | "DUAL")
|
1062
1067
|
SENSITIVE: []
|
1063
1068
|
end
|
1064
1069
|
|
@@ -1322,8 +1327,10 @@ module Aws::FSx
|
|
1322
1327
|
attr_accessor root_volume_id: ::String
|
1323
1328
|
attr_accessor preferred_subnet_id: ::String
|
1324
1329
|
attr_accessor endpoint_ip_address_range: ::String
|
1330
|
+
attr_accessor endpoint_ipv_6_address_range: ::String
|
1325
1331
|
attr_accessor route_table_ids: ::Array[::String]
|
1326
1332
|
attr_accessor endpoint_ip_address: ::String
|
1333
|
+
attr_accessor endpoint_ipv_6_address: ::String
|
1327
1334
|
attr_accessor read_cache_configuration: Types::OpenZFSReadCacheConfiguration
|
1328
1335
|
SENSITIVE: []
|
1329
1336
|
end
|
@@ -1740,6 +1747,7 @@ module Aws::FSx
|
|
1740
1747
|
attr_accessor add_route_table_ids: ::Array[::String]
|
1741
1748
|
attr_accessor remove_route_table_ids: ::Array[::String]
|
1742
1749
|
attr_accessor read_cache_configuration: Types::OpenZFSReadCacheConfiguration
|
1750
|
+
attr_accessor endpoint_ipv_6_address_range: ::String
|
1743
1751
|
SENSITIVE: []
|
1744
1752
|
end
|
1745
1753
|
|
@@ -1753,6 +1761,7 @@ module Aws::FSx
|
|
1753
1761
|
attr_accessor open_zfs_configuration: Types::UpdateFileSystemOpenZFSConfiguration
|
1754
1762
|
attr_accessor storage_type: ("SSD" | "HDD" | "INTELLIGENT_TIERING")
|
1755
1763
|
attr_accessor file_system_type_version: ::String
|
1764
|
+
attr_accessor network_type: ("IPV4" | "DUAL")
|
1756
1765
|
SENSITIVE: []
|
1757
1766
|
end
|
1758
1767
|
|