aws-sdk-fsx 1.14.0 → 1.15.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/lib/aws-sdk-fsx.rb +1 -1
- data/lib/aws-sdk-fsx/client.rb +35 -9
- data/lib/aws-sdk-fsx/client_api.rb +13 -0
- data/lib/aws-sdk-fsx/errors.rb +16 -0
- data/lib/aws-sdk-fsx/types.rb +116 -16
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d65127593453505228eb4ab9b59682baa219fed
|
4
|
+
data.tar.gz: 2f87a84ed601fbd98f151fa7722a171a0ced2058
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04bc0f9a48aabc9f7e246ef86604d8cd4ffbb1b8209bf85e8e6371da38a8f226be6aa60da20e80cae3a5de7b18102fb5c35b0f4d605567dd8b9ff9164452dffe
|
7
|
+
data.tar.gz: 1d4d4c2de67e5dbc7415a077fc548b043ccd73d42676814aa6896eecfbde16bd7c4c64182df2f983fa4e041266e34a5de56fcb1f6a78c5498d563e9dbd86a5fe
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -467,6 +467,9 @@ module Aws::FSx
|
|
467
467
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
468
468
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
469
469
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
470
|
+
# resp.backup.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
471
|
+
# resp.backup.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
472
|
+
# resp.backup.file_system.lustre_configuration.mount_name #=> String
|
470
473
|
# resp.backup.directory_information.domain_name #=> String
|
471
474
|
# resp.backup.directory_information.active_directory_id #=> String
|
472
475
|
#
|
@@ -628,21 +631,24 @@ module Aws::FSx
|
|
628
631
|
# not need to pass this option.**
|
629
632
|
#
|
630
633
|
# @option params [required, String] :file_system_type
|
631
|
-
# The type of Amazon FSx file system to create
|
634
|
+
# The type of Amazon FSx file system to create, either `WINDOWS` or
|
635
|
+
# `LUSTRE`.
|
632
636
|
#
|
633
637
|
# @option params [required, Integer] :storage_capacity
|
634
638
|
# The storage capacity of the file system being created.
|
635
639
|
#
|
636
640
|
# For Windows file systems, valid values are 32 GiB - 65,536 GiB.
|
637
641
|
#
|
638
|
-
# For Lustre file systems, valid values are 1,200, 2,400,
|
639
|
-
# continuing in increments of 3600 GiB.
|
642
|
+
# For `SCRATCH_1` Lustre file systems, valid values are 1,200, 2,400,
|
643
|
+
# 3,600, then continuing in increments of 3600 GiB. For `SCRATCH_2` and
|
644
|
+
# `PERSISTENT_1` file systems, valid values are 1200, 2400, then
|
645
|
+
# continuing in increments of 2400 GiB.
|
640
646
|
#
|
641
647
|
# @option params [required, Array<String>] :subnet_ids
|
642
648
|
# Specifies the IDs of the subnets that the file system will be
|
643
649
|
# accessible from. For Windows `MULTI_AZ_1` file system deployment
|
644
650
|
# types, provide exactly two subnet IDs, one for the preferred file
|
645
|
-
# server and one for the
|
651
|
+
# server and one for the standby file server. You specify one of these
|
646
652
|
# subnets as the preferred subnet using the `WindowsConfiguration >
|
647
653
|
# PreferredSubnetID` property.
|
648
654
|
#
|
@@ -661,10 +667,13 @@ module Aws::FSx
|
|
661
667
|
#
|
662
668
|
# @option params [String] :kms_key_id
|
663
669
|
# The ID of the AWS Key Management Service (AWS KMS) key used to encrypt
|
664
|
-
# the file system's data for
|
665
|
-
#
|
666
|
-
#
|
667
|
-
#
|
670
|
+
# the file system's data for Amazon FSx for Windows File Server file
|
671
|
+
# systems and Amazon FSx for Lustre `PERSISTENT_1` file systems at rest.
|
672
|
+
# In either case, if not specified, the Amazon FSx managed key is used.
|
673
|
+
# The Amazon FSx for Lustre `SCRATCH_1` and `SCRATCH_2` file systems are
|
674
|
+
# always encrypted at rest using Amazon FSx managed keys. For more
|
675
|
+
# information, see [Encrypt][1] in the *AWS Key Management Service API
|
676
|
+
# Reference*.
|
668
677
|
#
|
669
678
|
#
|
670
679
|
#
|
@@ -782,6 +791,8 @@ module Aws::FSx
|
|
782
791
|
# import_path: "ArchivePath",
|
783
792
|
# export_path: "ArchivePath",
|
784
793
|
# imported_file_chunk_size: 1,
|
794
|
+
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
795
|
+
# per_unit_storage_throughput: 1,
|
785
796
|
# },
|
786
797
|
# })
|
787
798
|
#
|
@@ -827,6 +838,9 @@ module Aws::FSx
|
|
827
838
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
828
839
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
829
840
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
841
|
+
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
842
|
+
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
843
|
+
# resp.file_system.lustre_configuration.mount_name #=> String
|
830
844
|
#
|
831
845
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystem AWS API Documentation
|
832
846
|
#
|
@@ -1041,6 +1055,9 @@ module Aws::FSx
|
|
1041
1055
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
1042
1056
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
1043
1057
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1058
|
+
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1059
|
+
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1060
|
+
# resp.file_system.lustre_configuration.mount_name #=> String
|
1044
1061
|
#
|
1045
1062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemFromBackup AWS API Documentation
|
1046
1063
|
#
|
@@ -1367,6 +1384,9 @@ module Aws::FSx
|
|
1367
1384
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
1368
1385
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
1369
1386
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1387
|
+
# resp.backups[0].file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1388
|
+
# resp.backups[0].file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1389
|
+
# resp.backups[0].file_system.lustre_configuration.mount_name #=> String
|
1370
1390
|
# resp.backups[0].directory_information.domain_name #=> String
|
1371
1391
|
# resp.backups[0].directory_information.active_directory_id #=> String
|
1372
1392
|
# resp.next_token #=> String
|
@@ -1612,6 +1632,9 @@ module Aws::FSx
|
|
1612
1632
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.import_path #=> String
|
1613
1633
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.export_path #=> String
|
1614
1634
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1635
|
+
# resp.file_systems[0].lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1636
|
+
# resp.file_systems[0].lustre_configuration.per_unit_storage_throughput #=> Integer
|
1637
|
+
# resp.file_systems[0].lustre_configuration.mount_name #=> String
|
1615
1638
|
# resp.next_token #=> String
|
1616
1639
|
#
|
1617
1640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeFileSystems AWS API Documentation
|
@@ -1930,6 +1953,9 @@ module Aws::FSx
|
|
1930
1953
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
1931
1954
|
# resp.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
1932
1955
|
# resp.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1956
|
+
# resp.file_system.lustre_configuration.deployment_type #=> String, one of "SCRATCH_1", "SCRATCH_2", "PERSISTENT_1"
|
1957
|
+
# resp.file_system.lustre_configuration.per_unit_storage_throughput #=> Integer
|
1958
|
+
# resp.file_system.lustre_configuration.mount_name #=> String
|
1933
1959
|
#
|
1934
1960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystem AWS API Documentation
|
1935
1961
|
#
|
@@ -1953,7 +1979,7 @@ module Aws::FSx
|
|
1953
1979
|
params: params,
|
1954
1980
|
config: config)
|
1955
1981
|
context[:gem_name] = 'aws-sdk-fsx'
|
1956
|
-
context[:gem_version] = '1.
|
1982
|
+
context[:gem_version] = '1.15.0'
|
1957
1983
|
Seahorse::Client::Request.new(handlers, context)
|
1958
1984
|
end
|
1959
1985
|
|
@@ -104,12 +104,15 @@ module Aws::FSx
|
|
104
104
|
InvalidExportPath = Shapes::StructureShape.new(name: 'InvalidExportPath')
|
105
105
|
InvalidImportPath = Shapes::StructureShape.new(name: 'InvalidImportPath')
|
106
106
|
InvalidNetworkSettings = Shapes::StructureShape.new(name: 'InvalidNetworkSettings')
|
107
|
+
InvalidPerUnitStorageThroughput = Shapes::StructureShape.new(name: 'InvalidPerUnitStorageThroughput')
|
107
108
|
IpAddress = Shapes::StringShape.new(name: 'IpAddress')
|
108
109
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
109
110
|
LastUpdatedTime = Shapes::TimestampShape.new(name: 'LastUpdatedTime')
|
110
111
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
111
112
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
113
|
+
LustreDeploymentType = Shapes::StringShape.new(name: 'LustreDeploymentType')
|
112
114
|
LustreFileSystemConfiguration = Shapes::StructureShape.new(name: 'LustreFileSystemConfiguration')
|
115
|
+
LustreFileSystemMountName = Shapes::StringShape.new(name: 'LustreFileSystemMountName')
|
113
116
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
114
117
|
Megabytes = Shapes::IntegerShape.new(name: 'Megabytes')
|
115
118
|
MegabytesPerSecond = Shapes::IntegerShape.new(name: 'MegabytesPerSecond')
|
@@ -120,6 +123,7 @@ module Aws::FSx
|
|
120
123
|
NotServiceResourceError = Shapes::StructureShape.new(name: 'NotServiceResourceError')
|
121
124
|
OrganizationalUnitDistinguishedName = Shapes::StringShape.new(name: 'OrganizationalUnitDistinguishedName')
|
122
125
|
Parameter = Shapes::StringShape.new(name: 'Parameter')
|
126
|
+
PerUnitStorageThroughput = Shapes::IntegerShape.new(name: 'PerUnitStorageThroughput')
|
123
127
|
ProgressPercent = Shapes::IntegerShape.new(name: 'ProgressPercent')
|
124
128
|
ReportFormat = Shapes::StringShape.new(name: 'ReportFormat')
|
125
129
|
ReportScope = Shapes::StringShape.new(name: 'ReportScope')
|
@@ -249,6 +253,8 @@ module Aws::FSx
|
|
249
253
|
CreateFileSystemLustreConfiguration.add_member(:import_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ImportPath"))
|
250
254
|
CreateFileSystemLustreConfiguration.add_member(:export_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ExportPath"))
|
251
255
|
CreateFileSystemLustreConfiguration.add_member(:imported_file_chunk_size, Shapes::ShapeRef.new(shape: Megabytes, location_name: "ImportedFileChunkSize"))
|
256
|
+
CreateFileSystemLustreConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: LustreDeploymentType, location_name: "DeploymentType"))
|
257
|
+
CreateFileSystemLustreConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
252
258
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
253
259
|
|
254
260
|
CreateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
@@ -439,6 +445,9 @@ module Aws::FSx
|
|
439
445
|
InvalidNetworkSettings.add_member(:invalid_security_group_id, Shapes::ShapeRef.new(shape: SecurityGroupId, location_name: "InvalidSecurityGroupId"))
|
440
446
|
InvalidNetworkSettings.struct_class = Types::InvalidNetworkSettings
|
441
447
|
|
448
|
+
InvalidPerUnitStorageThroughput.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
449
|
+
InvalidPerUnitStorageThroughput.struct_class = Types::InvalidPerUnitStorageThroughput
|
450
|
+
|
442
451
|
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN"))
|
443
452
|
ListTagsForResourceRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
444
453
|
ListTagsForResourceRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
@@ -450,6 +459,9 @@ module Aws::FSx
|
|
450
459
|
|
451
460
|
LustreFileSystemConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
452
461
|
LustreFileSystemConfiguration.add_member(:data_repository_configuration, Shapes::ShapeRef.new(shape: DataRepositoryConfiguration, location_name: "DataRepositoryConfiguration"))
|
462
|
+
LustreFileSystemConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: LustreDeploymentType, location_name: "DeploymentType"))
|
463
|
+
LustreFileSystemConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
464
|
+
LustreFileSystemConfiguration.add_member(:mount_name, Shapes::ShapeRef.new(shape: LustreFileSystemMountName, location_name: "MountName"))
|
453
465
|
LustreFileSystemConfiguration.struct_class = Types::LustreFileSystemConfiguration
|
454
466
|
|
455
467
|
MissingFileSystemConfiguration.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -627,6 +639,7 @@ module Aws::FSx
|
|
627
639
|
o.errors << Shapes::ShapeRef.new(shape: InvalidImportPath)
|
628
640
|
o.errors << Shapes::ShapeRef.new(shape: InvalidExportPath)
|
629
641
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNetworkSettings)
|
642
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidPerUnitStorageThroughput)
|
630
643
|
o.errors << Shapes::ShapeRef.new(shape: ServiceLimitExceeded)
|
631
644
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
632
645
|
o.errors << Shapes::ShapeRef.new(shape: MissingFileSystemConfiguration)
|
data/lib/aws-sdk-fsx/errors.rb
CHANGED
@@ -264,6 +264,22 @@ module Aws::FSx
|
|
264
264
|
|
265
265
|
end
|
266
266
|
|
267
|
+
class InvalidPerUnitStorageThroughput < ServiceError
|
268
|
+
|
269
|
+
# @param [Seahorse::Client::RequestContext] context
|
270
|
+
# @param [String] message
|
271
|
+
# @param [Aws::FSx::Types::InvalidPerUnitStorageThroughput] data
|
272
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
273
|
+
super(context, message, data)
|
274
|
+
end
|
275
|
+
|
276
|
+
# @return [String]
|
277
|
+
def message
|
278
|
+
@message || @data[:message]
|
279
|
+
end
|
280
|
+
|
281
|
+
end
|
282
|
+
|
267
283
|
class MissingFileSystemConfiguration < ServiceError
|
268
284
|
|
269
285
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -552,6 +552,8 @@ module Aws::FSx
|
|
552
552
|
# import_path: "ArchivePath",
|
553
553
|
# export_path: "ArchivePath",
|
554
554
|
# imported_file_chunk_size: 1,
|
555
|
+
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
556
|
+
# per_unit_storage_throughput: 1,
|
555
557
|
# }
|
556
558
|
#
|
557
559
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -598,18 +600,59 @@ module Aws::FSx
|
|
598
600
|
# that a single file can be striped across is limited by the total
|
599
601
|
# number of disks that make up the file system.
|
600
602
|
#
|
601
|
-
# The chunk size
|
603
|
+
# The default chunk size is 1,024 MiB (1 GiB) and can go as high as
|
602
604
|
# 512,000 MiB (500 GiB). Amazon S3 objects have a maximum size of 5
|
603
605
|
# TB.
|
604
606
|
# @return [Integer]
|
605
607
|
#
|
608
|
+
# @!attribute [rw] deployment_type
|
609
|
+
# (Optional) Choose `SCRATCH_1` and `SCRATCH_2` deployment types when
|
610
|
+
# you need temporary storage and shorter-term processing of data. The
|
611
|
+
# `SCRATCH_2` deployment type provides in-transit encryption of data
|
612
|
+
# and higher burst throughput capacity than `SCRATCH_1`.
|
613
|
+
#
|
614
|
+
# Choose `PERSISTENT_1` deployment type for longer-term storage and
|
615
|
+
# workloads and encryption of data in transit. To learn more about
|
616
|
+
# deployment types, see [ FSx for Lustre Deployment Options][1].
|
617
|
+
#
|
618
|
+
# Encryption of data in-transit is automatically enabled when you
|
619
|
+
# access a `SCRATCH_2` or `PERSISTENT_1` file system from Amazon EC2
|
620
|
+
# instances that [support this feature][2]. (Default = `SCRATCH_1`)
|
621
|
+
#
|
622
|
+
# Encryption of data in-transit for `SCRATCH_2` and `PERSISTENT_1`
|
623
|
+
# deployment types is supported when accessed from supported instance
|
624
|
+
# types in supported AWS Regions. To learn more, [Encrypting Data in
|
625
|
+
# Transit][3].
|
626
|
+
#
|
627
|
+
#
|
628
|
+
#
|
629
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-deployment-types.html
|
630
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/data- protection.html
|
631
|
+
# [3]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/encryption-in-transit-fsxl.html
|
632
|
+
# @return [String]
|
633
|
+
#
|
634
|
+
# @!attribute [rw] per_unit_storage_throughput
|
635
|
+
# (Optional) For the `PERSISTENT_1` deployment type, describes the
|
636
|
+
# amount of read and write throughput for each 1 tebibyte of storage,
|
637
|
+
# in MB/s/TiB. File system throughput capacity is calculated by
|
638
|
+
# multiplying file system storage capacity (TiB) by the
|
639
|
+
# PerUnitStorageThroughput (MB/s/TiB). For a 2.4 TiB file system,
|
640
|
+
# provisioning 50 MB/s/TiB of PerUnitStorageThroughput yields 120 MB/s
|
641
|
+
# of file system throughput. You pay for the amount of throughput that
|
642
|
+
# you provision. (Default = 200 MB/s/TiB)
|
643
|
+
#
|
644
|
+
# Valid values are 50, 100, 200.
|
645
|
+
# @return [Integer]
|
646
|
+
#
|
606
647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
607
648
|
#
|
608
649
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
609
650
|
:weekly_maintenance_start_time,
|
610
651
|
:import_path,
|
611
652
|
:export_path,
|
612
|
-
:imported_file_chunk_size
|
653
|
+
:imported_file_chunk_size,
|
654
|
+
:deployment_type,
|
655
|
+
:per_unit_storage_throughput)
|
613
656
|
include Aws::Structure
|
614
657
|
end
|
615
658
|
|
@@ -654,6 +697,8 @@ module Aws::FSx
|
|
654
697
|
# import_path: "ArchivePath",
|
655
698
|
# export_path: "ArchivePath",
|
656
699
|
# imported_file_chunk_size: 1,
|
700
|
+
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
701
|
+
# per_unit_storage_throughput: 1,
|
657
702
|
# },
|
658
703
|
# }
|
659
704
|
#
|
@@ -668,7 +713,8 @@ module Aws::FSx
|
|
668
713
|
# @return [String]
|
669
714
|
#
|
670
715
|
# @!attribute [rw] file_system_type
|
671
|
-
# The type of Amazon FSx file system to create
|
716
|
+
# The type of Amazon FSx file system to create, either `WINDOWS` or
|
717
|
+
# `LUSTRE`.
|
672
718
|
# @return [String]
|
673
719
|
#
|
674
720
|
# @!attribute [rw] storage_capacity
|
@@ -676,15 +722,17 @@ module Aws::FSx
|
|
676
722
|
#
|
677
723
|
# For Windows file systems, valid values are 32 GiB - 65,536 GiB.
|
678
724
|
#
|
679
|
-
# For Lustre file systems, valid values are 1,200, 2,400,
|
680
|
-
# continuing in increments of 3600 GiB.
|
725
|
+
# For `SCRATCH_1` Lustre file systems, valid values are 1,200, 2,400,
|
726
|
+
# 3,600, then continuing in increments of 3600 GiB. For `SCRATCH_2`
|
727
|
+
# and `PERSISTENT_1` file systems, valid values are 1200, 2400, then
|
728
|
+
# continuing in increments of 2400 GiB.
|
681
729
|
# @return [Integer]
|
682
730
|
#
|
683
731
|
# @!attribute [rw] subnet_ids
|
684
732
|
# Specifies the IDs of the subnets that the file system will be
|
685
733
|
# accessible from. For Windows `MULTI_AZ_1` file system deployment
|
686
734
|
# types, provide exactly two subnet IDs, one for the preferred file
|
687
|
-
# server and one for the
|
735
|
+
# server and one for the standby file server. You specify one of these
|
688
736
|
# subnets as the preferred subnet using the `WindowsConfiguration >
|
689
737
|
# PreferredSubnetID` property.
|
690
738
|
#
|
@@ -706,9 +754,12 @@ module Aws::FSx
|
|
706
754
|
#
|
707
755
|
# @!attribute [rw] kms_key_id
|
708
756
|
# The ID of the AWS Key Management Service (AWS KMS) key used to
|
709
|
-
# encrypt the file system's data for
|
710
|
-
# Server file
|
711
|
-
#
|
757
|
+
# encrypt the file system's data for Amazon FSx for Windows File
|
758
|
+
# Server file systems and Amazon FSx for Lustre `PERSISTENT_1` file
|
759
|
+
# systems at rest. In either case, if not specified, the Amazon FSx
|
760
|
+
# managed key is used. The Amazon FSx for Lustre `SCRATCH_1` and
|
761
|
+
# `SCRATCH_2` file systems are always encrypted at rest using Amazon
|
762
|
+
# FSx managed keys. For more information, see [Encrypt][1] in the *AWS
|
712
763
|
# Key Management Service API Reference*.
|
713
764
|
#
|
714
765
|
#
|
@@ -850,7 +901,9 @@ module Aws::FSx
|
|
850
901
|
# true, all tags for the file system are copied to all automatic and
|
851
902
|
# user-initiated backups where the user doesn't specify tags. If this
|
852
903
|
# value is true, and you specify one or more tags, only the specified
|
853
|
-
# tags are copied to backups.
|
904
|
+
# tags are copied to backups. If you specify one or more tags when
|
905
|
+
# creating a user-initiated backup, no tags are copied from the file
|
906
|
+
# system, regardless of this value.
|
854
907
|
# @return [Boolean]
|
855
908
|
#
|
856
909
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemWindowsConfiguration AWS API Documentation
|
@@ -1617,9 +1670,17 @@ module Aws::FSx
|
|
1617
1670
|
#
|
1618
1671
|
# @!attribute [rw] kms_key_id
|
1619
1672
|
# The ID of the AWS Key Management Service (AWS KMS) key used to
|
1620
|
-
# encrypt the file system's data for
|
1621
|
-
# Server file
|
1622
|
-
#
|
1673
|
+
# encrypt the file system's data for Amazon FSx for Windows File
|
1674
|
+
# Server file systems and persistent Amazon FSx for Lustre file
|
1675
|
+
# systems at rest. In either case, if not specified, the Amazon FSx
|
1676
|
+
# managed key is used. The scratch Amazon FSx for Lustre file systems
|
1677
|
+
# are always encrypted at rest using Amazon FSx managed keys. For more
|
1678
|
+
# information, see [Encrypt][1] in the *AWS Key Management Service API
|
1679
|
+
# Reference*.
|
1680
|
+
#
|
1681
|
+
#
|
1682
|
+
#
|
1683
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html
|
1623
1684
|
# @return [String]
|
1624
1685
|
#
|
1625
1686
|
# @!attribute [rw] resource_arn
|
@@ -1824,6 +1885,20 @@ module Aws::FSx
|
|
1824
1885
|
include Aws::Structure
|
1825
1886
|
end
|
1826
1887
|
|
1888
|
+
# An invalid value for `PerUnitStorageThroughput` was provided. Please
|
1889
|
+
# create your file system again, using a valid value.
|
1890
|
+
#
|
1891
|
+
# @!attribute [rw] message
|
1892
|
+
# A detailed error message.
|
1893
|
+
# @return [String]
|
1894
|
+
#
|
1895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/InvalidPerUnitStorageThroughput AWS API Documentation
|
1896
|
+
#
|
1897
|
+
class InvalidPerUnitStorageThroughput < Struct.new(
|
1898
|
+
:message)
|
1899
|
+
include Aws::Structure
|
1900
|
+
end
|
1901
|
+
|
1827
1902
|
# The request object for `ListTagsForResource` operation.
|
1828
1903
|
#
|
1829
1904
|
# @note When making an API call, you may pass ListTagsForResourceRequest
|
@@ -1893,15 +1968,38 @@ module Aws::FSx
|
|
1893
1968
|
# returned in the response of the `CreateFileSystem` operation.
|
1894
1969
|
# @return [Types::DataRepositoryConfiguration]
|
1895
1970
|
#
|
1971
|
+
# @!attribute [rw] deployment_type
|
1972
|
+
# The deployment type of the FSX for Lustre file system.
|
1973
|
+
# @return [String]
|
1974
|
+
#
|
1975
|
+
# @!attribute [rw] per_unit_storage_throughput
|
1976
|
+
# Per unit storage throughput represents the megabytes per second of
|
1977
|
+
# read or write throughput per 1 tebibyte of storage provisioned. File
|
1978
|
+
# system throughput capacity is equal to Storage capacity (TiB) *
|
1979
|
+
# PerUnitStorageThroughput (MB/s/TiB). This option is only valid for
|
1980
|
+
# `PERSISTENT_1` deployment types. Valid values are 50, 100, 200.
|
1981
|
+
# @return [Integer]
|
1982
|
+
#
|
1983
|
+
# @!attribute [rw] mount_name
|
1984
|
+
# You use the `MountName` value when mounting the file system.
|
1985
|
+
#
|
1986
|
+
# For the `SCRATCH_1` deployment type, this value is always "`fsx`".
|
1987
|
+
# For `SCRATCH_2` and `PERSISTENT_1` deployment types, this value is a
|
1988
|
+
# string that is unique within an AWS Region.
|
1989
|
+
# @return [String]
|
1990
|
+
#
|
1896
1991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
1897
1992
|
#
|
1898
1993
|
class LustreFileSystemConfiguration < Struct.new(
|
1899
1994
|
:weekly_maintenance_start_time,
|
1900
|
-
:data_repository_configuration
|
1995
|
+
:data_repository_configuration,
|
1996
|
+
:deployment_type,
|
1997
|
+
:per_unit_storage_throughput,
|
1998
|
+
:mount_name)
|
1901
1999
|
include Aws::Structure
|
1902
2000
|
end
|
1903
2001
|
|
1904
|
-
#
|
2002
|
+
# A file system configuration is required for this operation.
|
1905
2003
|
#
|
1906
2004
|
# @!attribute [rw] message
|
1907
2005
|
# A detailed error message.
|
@@ -2518,7 +2616,9 @@ module Aws::FSx
|
|
2518
2616
|
# true, all tags on the file system are copied to all automatic
|
2519
2617
|
# backups and any user-initiated backups where the user doesn't
|
2520
2618
|
# specify any tags. If this value is true, and you specify one or more
|
2521
|
-
# tags, only the specified tags are copied to backups.
|
2619
|
+
# tags, only the specified tags are copied to backups. If you specify
|
2620
|
+
# one or more tags when creating a user-initiated backup, no tags are
|
2621
|
+
# copied from the file system, regardless of this value.
|
2522
2622
|
# @return [Boolean]
|
2523
2623
|
#
|
2524
2624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/WindowsFileSystemConfiguration AWS API Documentation
|
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.15.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:
|
11
|
+
date: 2020-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|