aws-sdk-fsx 1.16.0 → 1.17.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 +124 -47
- data/lib/aws-sdk-fsx/client_api.rb +5 -0
- data/lib/aws-sdk-fsx/resource.rb +1 -7
- data/lib/aws-sdk-fsx/types.rb +153 -49
- 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: 7cc3fa4a4f36012b69bdca46d1c8114ba472df52
|
4
|
+
data.tar.gz: 29a155da7db56ec8ce59fecf376617e7a141fc80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f60e4f996c58f47180cc214904fbe6f26571dcb5eff8f3ba8b056b7ef28d81371dee4250aef09de740e83584c2d004a90ab18599746afba6d330929f84a2a538
|
7
|
+
data.tar.gz: 54de2ef6e56422246871ee5ceec942384128050ef951190386fe88726a088f0d421d10c2a609b22e8f033c1c690ff7ae2b6b13b101359b387faeda72554dc540
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -32,11 +32,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:fsx)
|
|
32
32
|
module Aws::FSx
|
33
33
|
# An API client for FSx. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
34
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
35
|
+
# client = Aws::FSx::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
40
|
#
|
41
41
|
# For details on configuring region and credentials see
|
42
42
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -229,15 +229,19 @@ module Aws::FSx
|
|
229
229
|
#
|
230
230
|
# @option options [String] :retry_mode ("legacy")
|
231
231
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
232
|
+
#
|
233
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
234
|
+
# no retry mode is provided.
|
235
|
+
#
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
#
|
240
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
241
|
+
# functionality of `standard` mode along with automatic client side
|
242
|
+
# throttling. This is a provisional mode that may change behavior
|
243
|
+
# in the future.
|
244
|
+
#
|
241
245
|
#
|
242
246
|
# @option options [String] :secret_access_key
|
243
247
|
#
|
@@ -275,8 +279,7 @@ module Aws::FSx
|
|
275
279
|
#
|
276
280
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
281
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
282
|
+
# safely be set per-request on the session.
|
280
283
|
#
|
281
284
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
285
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +291,7 @@ module Aws::FSx
|
|
288
291
|
# request body. This option has no effect unless the request has
|
289
292
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
293
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
294
|
+
# request on the session.
|
292
295
|
#
|
293
296
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
297
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -485,6 +488,7 @@ module Aws::FSx
|
|
485
488
|
# resp.backup.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
486
489
|
# resp.backup.file_system.failure_details.message #=> String
|
487
490
|
# resp.backup.file_system.storage_capacity #=> Integer
|
491
|
+
# resp.backup.file_system.storage_type #=> String, one of "SSD", "HDD"
|
488
492
|
# resp.backup.file_system.vpc_id #=> String
|
489
493
|
# resp.backup.file_system.subnet_ids #=> Array
|
490
494
|
# resp.backup.file_system.subnet_ids[0] #=> String
|
@@ -503,7 +507,7 @@ module Aws::FSx
|
|
503
507
|
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
504
508
|
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
505
509
|
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
506
|
-
# resp.backup.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
510
|
+
# resp.backup.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1", "SINGLE_AZ_2"
|
507
511
|
# resp.backup.file_system.windows_configuration.remote_administration_endpoint #=> String
|
508
512
|
# resp.backup.file_system.windows_configuration.preferred_subnet_id #=> String
|
509
513
|
# resp.backup.file_system.windows_configuration.preferred_file_server_ip #=> String
|
@@ -542,13 +546,13 @@ module Aws::FSx
|
|
542
546
|
# `CreateDataRepositoryTask` operation will fail if a data repository is
|
543
547
|
# not linked to the FSx file system. To learn more about data repository
|
544
548
|
# tasks, see [Using Data Repository Tasks][1]. To learn more about
|
545
|
-
# linking a data repository to your file system, see [
|
546
|
-
#
|
549
|
+
# linking a data repository to your file system, see [Setting the Export
|
550
|
+
# Prefix][2].
|
547
551
|
#
|
548
552
|
#
|
549
553
|
#
|
550
554
|
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/data-repository-tasks.html
|
551
|
-
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/
|
555
|
+
# [2]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/export-data-repository.html#export-prefix
|
552
556
|
#
|
553
557
|
# @option params [required, String] :type
|
554
558
|
# Specifies the type of data repository task to create.
|
@@ -556,7 +560,11 @@ module Aws::FSx
|
|
556
560
|
# @option params [Array<String>] :paths
|
557
561
|
# (Optional) The path or paths on the Amazon FSx file system to use when
|
558
562
|
# the data repository task is processed. The default path is the file
|
559
|
-
# system root directory.
|
563
|
+
# system root directory. The paths you provide need to be relative to
|
564
|
+
# the mount point of the file system. If the mount point is `/mnt/fsx`
|
565
|
+
# and `/mnt/fsx/path1` is a directory or file on the file system you
|
566
|
+
# want to export, then the path to provide is `path1`. If a path that
|
567
|
+
# you provide isn't valid, the task fails.
|
560
568
|
#
|
561
569
|
# @option params [required, String] :file_system_id
|
562
570
|
# The globally unique ID of the file system, assigned by Amazon FSx.
|
@@ -565,7 +573,12 @@ module Aws::FSx
|
|
565
573
|
# Defines whether or not Amazon FSx provides a CompletionReport once the
|
566
574
|
# task has completed. A CompletionReport provides a detailed report on
|
567
575
|
# the files that Amazon FSx processed that meet the criteria specified
|
568
|
-
# by the `Scope` parameter.
|
576
|
+
# by the `Scope` parameter. For more information, see [Working with Task
|
577
|
+
# Completion Reports][1].
|
578
|
+
#
|
579
|
+
#
|
580
|
+
#
|
581
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/task-completion-report.html
|
569
582
|
#
|
570
583
|
# @option params [String] :client_request_token
|
571
584
|
# (Optional) An idempotency token for resource creation, in a string of
|
@@ -686,14 +699,39 @@ module Aws::FSx
|
|
686
699
|
# `LUSTRE`.
|
687
700
|
#
|
688
701
|
# @option params [required, Integer] :storage_capacity
|
689
|
-
#
|
702
|
+
# Sets the storage capacity of the file system that you're creating.
|
703
|
+
#
|
704
|
+
# For Lustre file systems:
|
705
|
+
#
|
706
|
+
# * For `SCRATCH_2` and `PERSISTENT_1` deployment types, valid values
|
707
|
+
# are 1.2, 2.4, and increments of 2.4 TiB.
|
708
|
+
#
|
709
|
+
# * For `SCRATCH_1` deployment type, valid values are 1.2, 2.4, and
|
710
|
+
# increments of 3.6 TiB.
|
711
|
+
#
|
712
|
+
# For Windows file systems:
|
713
|
+
#
|
714
|
+
# * If `StorageType=SSD`, valid values are 32 GiB - 65,536 GiB (64 TiB).
|
715
|
+
#
|
716
|
+
# * If `StorageType=HDD`, valid values are 2000 GiB - 65,536 GiB (64
|
717
|
+
# TiB).
|
718
|
+
#
|
719
|
+
# @option params [String] :storage_type
|
720
|
+
# Sets the storage type for the Amazon FSx for Windows file system
|
721
|
+
# you're creating. Valid values are `SSD` and `HDD`.
|
722
|
+
#
|
723
|
+
# * Set to `SSD` to use solid state drive storage. SSD is supported on
|
724
|
+
# all Windows deployment types.
|
725
|
+
#
|
726
|
+
# * Set to `HDD` to use hard disk drive storage. HDD is supported on
|
727
|
+
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment types.
|
728
|
+
#
|
729
|
+
# Default value is `SSD`. For more information, see [ Storage Type
|
730
|
+
# Options][1] in the *Amazon FSx for Windows User Guide*.
|
690
731
|
#
|
691
|
-
# For Windows file systems, valid values are 32 GiB - 65,536 GiB.
|
692
732
|
#
|
693
|
-
#
|
694
|
-
#
|
695
|
-
# `PERSISTENT_1` file systems, valid values are 1200, 2400, then
|
696
|
-
# continuing in increments of 2400 GiB.
|
733
|
+
#
|
734
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-tco.html#saz-maz-storage-type
|
697
735
|
#
|
698
736
|
# @option params [required, Array<String>] :subnet_ids
|
699
737
|
# Specifies the IDs of the subnets that the file system will be
|
@@ -703,9 +741,9 @@ module Aws::FSx
|
|
703
741
|
# subnets as the preferred subnet using the `WindowsConfiguration >
|
704
742
|
# PreferredSubnetID` property.
|
705
743
|
#
|
706
|
-
# For Windows `SINGLE_AZ_1` file system deployment
|
707
|
-
# systems, provide exactly one subnet ID. The file
|
708
|
-
# that subnet's Availability Zone.
|
744
|
+
# For Windows `SINGLE_AZ_1` and `SINGLE_AZ_2` file system deployment
|
745
|
+
# types and Lustre file systems, provide exactly one subnet ID. The file
|
746
|
+
# server is launched in that subnet's Availability Zone.
|
709
747
|
#
|
710
748
|
# @option params [Array<String>] :security_group_ids
|
711
749
|
# A list of IDs specifying the security groups to apply to all network
|
@@ -732,11 +770,9 @@ module Aws::FSx
|
|
732
770
|
#
|
733
771
|
# @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
|
734
772
|
# The Microsoft Windows configuration for the file system being created.
|
735
|
-
# This value is required if `FileSystemType` is set to `WINDOWS`.
|
736
773
|
#
|
737
774
|
# @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
|
738
|
-
# The Lustre configuration for the file system being created.
|
739
|
-
# is required if `FileSystemType` is set to `LUSTRE`.
|
775
|
+
# The Lustre configuration for the file system being created.
|
740
776
|
#
|
741
777
|
# @return [Types::CreateFileSystemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
742
778
|
#
|
@@ -810,6 +846,7 @@ module Aws::FSx
|
|
810
846
|
# client_request_token: "ClientRequestToken",
|
811
847
|
# file_system_type: "WINDOWS", # required, accepts WINDOWS, LUSTRE
|
812
848
|
# storage_capacity: 1, # required
|
849
|
+
# storage_type: "SSD", # accepts SSD, HDD
|
813
850
|
# subnet_ids: ["SubnetId"], # required
|
814
851
|
# security_group_ids: ["SecurityGroupId"],
|
815
852
|
# tags: [
|
@@ -829,7 +866,7 @@ module Aws::FSx
|
|
829
866
|
# password: "DirectoryPassword", # required
|
830
867
|
# dns_ips: ["IpAddress"], # required
|
831
868
|
# },
|
832
|
-
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
869
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1, SINGLE_AZ_2
|
833
870
|
# preferred_subnet_id: "SubnetId",
|
834
871
|
# throughput_capacity: 1, # required
|
835
872
|
# weekly_maintenance_start_time: "WeeklyTime",
|
@@ -856,6 +893,7 @@ module Aws::FSx
|
|
856
893
|
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
857
894
|
# resp.file_system.failure_details.message #=> String
|
858
895
|
# resp.file_system.storage_capacity #=> Integer
|
896
|
+
# resp.file_system.storage_type #=> String, one of "SSD", "HDD"
|
859
897
|
# resp.file_system.vpc_id #=> String
|
860
898
|
# resp.file_system.subnet_ids #=> Array
|
861
899
|
# resp.file_system.subnet_ids[0] #=> String
|
@@ -874,7 +912,7 @@ module Aws::FSx
|
|
874
912
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
875
913
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
876
914
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
877
|
-
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
915
|
+
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1", "SINGLE_AZ_2"
|
878
916
|
# resp.file_system.windows_configuration.remote_administration_endpoint #=> String
|
879
917
|
# resp.file_system.windows_configuration.preferred_subnet_id #=> String
|
880
918
|
# resp.file_system.windows_configuration.preferred_file_server_ip #=> String
|
@@ -953,15 +991,22 @@ module Aws::FSx
|
|
953
991
|
# not need to pass this option.**
|
954
992
|
#
|
955
993
|
# @option params [required, Array<String>] :subnet_ids
|
956
|
-
#
|
957
|
-
# from.
|
958
|
-
#
|
994
|
+
# Specifies the IDs of the subnets that the file system will be
|
995
|
+
# accessible from. For Windows `MULTI_AZ_1` file system deployment
|
996
|
+
# types, provide exactly two subnet IDs, one for the preferred file
|
997
|
+
# server and one for the standby file server. You specify one of these
|
998
|
+
# subnets as the preferred subnet using the `WindowsConfiguration >
|
999
|
+
# PreferredSubnetID` property.
|
1000
|
+
#
|
1001
|
+
# For Windows `SINGLE_AZ_1` and `SINGLE_AZ_2` deployment types and
|
1002
|
+
# Lustre file systems, provide exactly one subnet ID. The file server is
|
1003
|
+
# launched in that subnet's Availability Zone.
|
959
1004
|
#
|
960
1005
|
# @option params [Array<String>] :security_group_ids
|
961
1006
|
# A list of IDs for the security groups that apply to the specified
|
962
1007
|
# network interfaces created for file system access. These security
|
963
1008
|
# groups apply to all network interfaces. This value isn't returned in
|
964
|
-
# later
|
1009
|
+
# later DescribeFileSystem requests.
|
965
1010
|
#
|
966
1011
|
# @option params [Array<Types::Tag>] :tags
|
967
1012
|
# The tags to be applied to the file system at file system creation. The
|
@@ -971,6 +1016,27 @@ module Aws::FSx
|
|
971
1016
|
# @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
|
972
1017
|
# The configuration for this Microsoft Windows file system.
|
973
1018
|
#
|
1019
|
+
# @option params [String] :storage_type
|
1020
|
+
# Sets the storage type for the Windows file system you're creating
|
1021
|
+
# from a backup. Valid values are `SSD` and `HDD`.
|
1022
|
+
#
|
1023
|
+
# * Set to `SSD` to use solid state drive storage. Supported on all
|
1024
|
+
# Windows deployment types.
|
1025
|
+
#
|
1026
|
+
# * Set to `HDD` to use hard disk drive storage. Supported on
|
1027
|
+
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment types.
|
1028
|
+
#
|
1029
|
+
# Default value is `SSD`.
|
1030
|
+
#
|
1031
|
+
# <note markdown="1"> HDD and SSD storage types have different minimum storage capacity
|
1032
|
+
# requirements. A restored file system's storage capacity is tied to
|
1033
|
+
# the file system that was backed up. You can create a file system that
|
1034
|
+
# uses HDD storage from a backup of a file system that used SSD storage
|
1035
|
+
# only if the original SSD file system had a storage capacity of at
|
1036
|
+
# least 2000 GiB.
|
1037
|
+
#
|
1038
|
+
# </note>
|
1039
|
+
#
|
974
1040
|
# @return [Types::CreateFileSystemFromBackupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
975
1041
|
#
|
976
1042
|
# * {Types::CreateFileSystemFromBackupResponse#file_system #file_system} => Types::FileSystem
|
@@ -1054,7 +1120,7 @@ module Aws::FSx
|
|
1054
1120
|
# password: "DirectoryPassword", # required
|
1055
1121
|
# dns_ips: ["IpAddress"], # required
|
1056
1122
|
# },
|
1057
|
-
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
1123
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1, SINGLE_AZ_2
|
1058
1124
|
# preferred_subnet_id: "SubnetId",
|
1059
1125
|
# throughput_capacity: 1, # required
|
1060
1126
|
# weekly_maintenance_start_time: "WeeklyTime",
|
@@ -1062,6 +1128,7 @@ module Aws::FSx
|
|
1062
1128
|
# automatic_backup_retention_days: 1,
|
1063
1129
|
# copy_tags_to_backups: false,
|
1064
1130
|
# },
|
1131
|
+
# storage_type: "SSD", # accepts SSD, HDD
|
1065
1132
|
# })
|
1066
1133
|
#
|
1067
1134
|
# @example Response structure
|
@@ -1073,6 +1140,7 @@ module Aws::FSx
|
|
1073
1140
|
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
1074
1141
|
# resp.file_system.failure_details.message #=> String
|
1075
1142
|
# resp.file_system.storage_capacity #=> Integer
|
1143
|
+
# resp.file_system.storage_type #=> String, one of "SSD", "HDD"
|
1076
1144
|
# resp.file_system.vpc_id #=> String
|
1077
1145
|
# resp.file_system.subnet_ids #=> Array
|
1078
1146
|
# resp.file_system.subnet_ids[0] #=> String
|
@@ -1091,7 +1159,7 @@ module Aws::FSx
|
|
1091
1159
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
1092
1160
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
1093
1161
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
1094
|
-
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
1162
|
+
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1", "SINGLE_AZ_2"
|
1095
1163
|
# resp.file_system.windows_configuration.remote_administration_endpoint #=> String
|
1096
1164
|
# resp.file_system.windows_configuration.preferred_subnet_id #=> String
|
1097
1165
|
# resp.file_system.windows_configuration.preferred_file_server_ip #=> String
|
@@ -1329,6 +1397,8 @@ module Aws::FSx
|
|
1329
1397
|
# * {Types::DescribeBackupsResponse#backups #backups} => Array<Types::Backup>
|
1330
1398
|
# * {Types::DescribeBackupsResponse#next_token #next_token} => String
|
1331
1399
|
#
|
1400
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1401
|
+
#
|
1332
1402
|
#
|
1333
1403
|
# @example Example: To describe Amazon FSx backups
|
1334
1404
|
#
|
@@ -1402,6 +1472,7 @@ module Aws::FSx
|
|
1402
1472
|
# resp.backups[0].file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
1403
1473
|
# resp.backups[0].file_system.failure_details.message #=> String
|
1404
1474
|
# resp.backups[0].file_system.storage_capacity #=> Integer
|
1475
|
+
# resp.backups[0].file_system.storage_type #=> String, one of "SSD", "HDD"
|
1405
1476
|
# resp.backups[0].file_system.vpc_id #=> String
|
1406
1477
|
# resp.backups[0].file_system.subnet_ids #=> Array
|
1407
1478
|
# resp.backups[0].file_system.subnet_ids[0] #=> String
|
@@ -1420,7 +1491,7 @@ module Aws::FSx
|
|
1420
1491
|
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
1421
1492
|
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
1422
1493
|
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
1423
|
-
# resp.backups[0].file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
1494
|
+
# resp.backups[0].file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1", "SINGLE_AZ_2"
|
1424
1495
|
# resp.backups[0].file_system.windows_configuration.remote_administration_endpoint #=> String
|
1425
1496
|
# resp.backups[0].file_system.windows_configuration.preferred_subnet_id #=> String
|
1426
1497
|
# resp.backups[0].file_system.windows_configuration.preferred_file_server_ip #=> String
|
@@ -1490,6 +1561,8 @@ module Aws::FSx
|
|
1490
1561
|
# * {Types::DescribeDataRepositoryTasksResponse#data_repository_tasks #data_repository_tasks} => Array<Types::DataRepositoryTask>
|
1491
1562
|
# * {Types::DescribeDataRepositoryTasksResponse#next_token #next_token} => String
|
1492
1563
|
#
|
1564
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1565
|
+
#
|
1493
1566
|
# @example Request syntax with placeholder values
|
1494
1567
|
#
|
1495
1568
|
# resp = client.describe_data_repository_tasks({
|
@@ -1588,6 +1661,8 @@ module Aws::FSx
|
|
1588
1661
|
# * {Types::DescribeFileSystemsResponse#file_systems #file_systems} => Array<Types::FileSystem>
|
1589
1662
|
# * {Types::DescribeFileSystemsResponse#next_token #next_token} => String
|
1590
1663
|
#
|
1664
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1665
|
+
#
|
1591
1666
|
#
|
1592
1667
|
# @example Example: To describe an Amazon FSx file system
|
1593
1668
|
#
|
@@ -1650,6 +1725,7 @@ module Aws::FSx
|
|
1650
1725
|
# resp.file_systems[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
1651
1726
|
# resp.file_systems[0].failure_details.message #=> String
|
1652
1727
|
# resp.file_systems[0].storage_capacity #=> Integer
|
1728
|
+
# resp.file_systems[0].storage_type #=> String, one of "SSD", "HDD"
|
1653
1729
|
# resp.file_systems[0].vpc_id #=> String
|
1654
1730
|
# resp.file_systems[0].subnet_ids #=> Array
|
1655
1731
|
# resp.file_systems[0].subnet_ids[0] #=> String
|
@@ -1668,7 +1744,7 @@ module Aws::FSx
|
|
1668
1744
|
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
1669
1745
|
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
1670
1746
|
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
1671
|
-
# resp.file_systems[0].windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
1747
|
+
# resp.file_systems[0].windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1", "SINGLE_AZ_2"
|
1672
1748
|
# resp.file_systems[0].windows_configuration.remote_administration_endpoint #=> String
|
1673
1749
|
# resp.file_systems[0].windows_configuration.preferred_subnet_id #=> String
|
1674
1750
|
# resp.file_systems[0].windows_configuration.preferred_file_server_ip #=> String
|
@@ -1971,6 +2047,7 @@ module Aws::FSx
|
|
1971
2047
|
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
1972
2048
|
# resp.file_system.failure_details.message #=> String
|
1973
2049
|
# resp.file_system.storage_capacity #=> Integer
|
2050
|
+
# resp.file_system.storage_type #=> String, one of "SSD", "HDD"
|
1974
2051
|
# resp.file_system.vpc_id #=> String
|
1975
2052
|
# resp.file_system.subnet_ids #=> Array
|
1976
2053
|
# resp.file_system.subnet_ids[0] #=> String
|
@@ -1989,7 +2066,7 @@ module Aws::FSx
|
|
1989
2066
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
1990
2067
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
1991
2068
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
1992
|
-
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
2069
|
+
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1", "SINGLE_AZ_2"
|
1993
2070
|
# resp.file_system.windows_configuration.remote_administration_endpoint #=> String
|
1994
2071
|
# resp.file_system.windows_configuration.preferred_subnet_id #=> String
|
1995
2072
|
# resp.file_system.windows_configuration.preferred_file_server_ip #=> String
|
@@ -2030,7 +2107,7 @@ module Aws::FSx
|
|
2030
2107
|
params: params,
|
2031
2108
|
config: config)
|
2032
2109
|
context[:gem_name] = 'aws-sdk-fsx'
|
2033
|
-
context[:gem_version] = '1.
|
2110
|
+
context[:gem_version] = '1.17.0'
|
2034
2111
|
Seahorse::Client::Request.new(handlers, context)
|
2035
2112
|
end
|
2036
2113
|
|
@@ -139,6 +139,7 @@ module Aws::FSx
|
|
139
139
|
ServiceLimitExceeded = Shapes::StructureShape.new(name: 'ServiceLimitExceeded')
|
140
140
|
StartTime = Shapes::TimestampShape.new(name: 'StartTime')
|
141
141
|
StorageCapacity = Shapes::IntegerShape.new(name: 'StorageCapacity')
|
142
|
+
StorageType = Shapes::StringShape.new(name: 'StorageType')
|
142
143
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
143
144
|
SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
|
144
145
|
SucceededCount = Shapes::IntegerShape.new(name: 'SucceededCount')
|
@@ -244,6 +245,7 @@ module Aws::FSx
|
|
244
245
|
CreateFileSystemFromBackupRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
245
246
|
CreateFileSystemFromBackupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
246
247
|
CreateFileSystemFromBackupRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
|
248
|
+
CreateFileSystemFromBackupRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
|
247
249
|
CreateFileSystemFromBackupRequest.struct_class = Types::CreateFileSystemFromBackupRequest
|
248
250
|
|
249
251
|
CreateFileSystemFromBackupResponse.add_member(:file_system, Shapes::ShapeRef.new(shape: FileSystem, location_name: "FileSystem"))
|
@@ -260,6 +262,7 @@ module Aws::FSx
|
|
260
262
|
CreateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
261
263
|
CreateFileSystemRequest.add_member(:file_system_type, Shapes::ShapeRef.new(shape: FileSystemType, required: true, location_name: "FileSystemType"))
|
262
264
|
CreateFileSystemRequest.add_member(:storage_capacity, Shapes::ShapeRef.new(shape: StorageCapacity, required: true, location_name: "StorageCapacity"))
|
265
|
+
CreateFileSystemRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
|
263
266
|
CreateFileSystemRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, required: true, location_name: "SubnetIds"))
|
264
267
|
CreateFileSystemRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
265
268
|
CreateFileSystemRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
@@ -396,6 +399,7 @@ module Aws::FSx
|
|
396
399
|
FileSystem.add_member(:lifecycle, Shapes::ShapeRef.new(shape: FileSystemLifecycle, location_name: "Lifecycle"))
|
397
400
|
FileSystem.add_member(:failure_details, Shapes::ShapeRef.new(shape: FileSystemFailureDetails, location_name: "FailureDetails"))
|
398
401
|
FileSystem.add_member(:storage_capacity, Shapes::ShapeRef.new(shape: StorageCapacity, location_name: "StorageCapacity"))
|
402
|
+
FileSystem.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
|
399
403
|
FileSystem.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
|
400
404
|
FileSystem.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
|
401
405
|
FileSystem.add_member(:network_interface_ids, Shapes::ShapeRef.new(shape: NetworkInterfaceIds, location_name: "NetworkInterfaceIds"))
|
@@ -580,6 +584,7 @@ module Aws::FSx
|
|
580
584
|
"serviceFullName" => "Amazon FSx",
|
581
585
|
"serviceId" => "FSx",
|
582
586
|
"signatureVersion" => "v4",
|
587
|
+
"signingName" => "fsx",
|
583
588
|
"targetPrefix" => "AWSSimbaAPIService_v20180301",
|
584
589
|
"uid" => "fsx-2018-03-01",
|
585
590
|
}
|
data/lib/aws-sdk-fsx/resource.rb
CHANGED
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::FSx
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::FSx::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::FSx::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::FSx::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -391,7 +391,11 @@ module Aws::FSx
|
|
391
391
|
# @!attribute [rw] paths
|
392
392
|
# (Optional) The path or paths on the Amazon FSx file system to use
|
393
393
|
# when the data repository task is processed. The default path is the
|
394
|
-
# file system root directory.
|
394
|
+
# file system root directory. The paths you provide need to be
|
395
|
+
# relative to the mount point of the file system. If the mount point
|
396
|
+
# is `/mnt/fsx` and `/mnt/fsx/path1` is a directory or file on the
|
397
|
+
# file system you want to export, then the path to provide is `path1`.
|
398
|
+
# If a path that you provide isn't valid, the task fails.
|
395
399
|
# @return [Array<String>]
|
396
400
|
#
|
397
401
|
# @!attribute [rw] file_system_id
|
@@ -402,7 +406,12 @@ module Aws::FSx
|
|
402
406
|
# Defines whether or not Amazon FSx provides a CompletionReport once
|
403
407
|
# the task has completed. A CompletionReport provides a detailed
|
404
408
|
# report on the files that Amazon FSx processed that meet the criteria
|
405
|
-
# specified by the `Scope` parameter.
|
409
|
+
# specified by the `Scope` parameter. For more information, see
|
410
|
+
# [Working with Task Completion Reports][1].
|
411
|
+
#
|
412
|
+
#
|
413
|
+
#
|
414
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/task-completion-report.html
|
406
415
|
# @return [Types::CompletionReport]
|
407
416
|
#
|
408
417
|
# @!attribute [rw] client_request_token
|
@@ -468,7 +477,7 @@ module Aws::FSx
|
|
468
477
|
# password: "DirectoryPassword", # required
|
469
478
|
# dns_ips: ["IpAddress"], # required
|
470
479
|
# },
|
471
|
-
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
480
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1, SINGLE_AZ_2
|
472
481
|
# preferred_subnet_id: "SubnetId",
|
473
482
|
# throughput_capacity: 1, # required
|
474
483
|
# weekly_maintenance_start_time: "WeeklyTime",
|
@@ -476,6 +485,7 @@ module Aws::FSx
|
|
476
485
|
# automatic_backup_retention_days: 1,
|
477
486
|
# copy_tags_to_backups: false,
|
478
487
|
# },
|
488
|
+
# storage_type: "SSD", # accepts SSD, HDD
|
479
489
|
# }
|
480
490
|
#
|
481
491
|
# @!attribute [rw] backup_id
|
@@ -494,16 +504,23 @@ module Aws::FSx
|
|
494
504
|
# @return [String]
|
495
505
|
#
|
496
506
|
# @!attribute [rw] subnet_ids
|
497
|
-
#
|
498
|
-
# accessible from.
|
499
|
-
#
|
507
|
+
# Specifies the IDs of the subnets that the file system will be
|
508
|
+
# accessible from. For Windows `MULTI_AZ_1` file system deployment
|
509
|
+
# types, provide exactly two subnet IDs, one for the preferred file
|
510
|
+
# server and one for the standby file server. You specify one of these
|
511
|
+
# subnets as the preferred subnet using the `WindowsConfiguration >
|
512
|
+
# PreferredSubnetID` property.
|
513
|
+
#
|
514
|
+
# For Windows `SINGLE_AZ_1` and `SINGLE_AZ_2` deployment types and
|
515
|
+
# Lustre file systems, provide exactly one subnet ID. The file server
|
516
|
+
# is launched in that subnet's Availability Zone.
|
500
517
|
# @return [Array<String>]
|
501
518
|
#
|
502
519
|
# @!attribute [rw] security_group_ids
|
503
520
|
# A list of IDs for the security groups that apply to the specified
|
504
521
|
# network interfaces created for file system access. These security
|
505
522
|
# groups apply to all network interfaces. This value isn't returned
|
506
|
-
# in later
|
523
|
+
# in later DescribeFileSystem requests.
|
507
524
|
# @return [Array<String>]
|
508
525
|
#
|
509
526
|
# @!attribute [rw] tags
|
@@ -516,6 +533,29 @@ module Aws::FSx
|
|
516
533
|
# The configuration for this Microsoft Windows file system.
|
517
534
|
# @return [Types::CreateFileSystemWindowsConfiguration]
|
518
535
|
#
|
536
|
+
# @!attribute [rw] storage_type
|
537
|
+
# Sets the storage type for the Windows file system you're creating
|
538
|
+
# from a backup. Valid values are `SSD` and `HDD`.
|
539
|
+
#
|
540
|
+
# * Set to `SSD` to use solid state drive storage. Supported on all
|
541
|
+
# Windows deployment types.
|
542
|
+
#
|
543
|
+
# * Set to `HDD` to use hard disk drive storage. Supported on
|
544
|
+
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment
|
545
|
+
# types.
|
546
|
+
#
|
547
|
+
# Default value is `SSD`.
|
548
|
+
#
|
549
|
+
# <note markdown="1"> HDD and SSD storage types have different minimum storage capacity
|
550
|
+
# requirements. A restored file system's storage capacity is tied to
|
551
|
+
# the file system that was backed up. You can create a file system
|
552
|
+
# that uses HDD storage from a backup of a file system that used SSD
|
553
|
+
# storage only if the original SSD file system had a storage capacity
|
554
|
+
# of at least 2000 GiB.
|
555
|
+
#
|
556
|
+
# </note>
|
557
|
+
# @return [String]
|
558
|
+
#
|
519
559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemFromBackupRequest AWS API Documentation
|
520
560
|
#
|
521
561
|
class CreateFileSystemFromBackupRequest < Struct.new(
|
@@ -524,7 +564,8 @@ module Aws::FSx
|
|
524
564
|
:subnet_ids,
|
525
565
|
:security_group_ids,
|
526
566
|
:tags,
|
527
|
-
:windows_configuration
|
567
|
+
:windows_configuration,
|
568
|
+
:storage_type)
|
528
569
|
include Aws::Structure
|
529
570
|
end
|
530
571
|
|
@@ -541,8 +582,7 @@ module Aws::FSx
|
|
541
582
|
include Aws::Structure
|
542
583
|
end
|
543
584
|
|
544
|
-
# The Lustre configuration for the file system being created.
|
545
|
-
# is required if `FileSystemType` is set to `LUSTRE`.
|
585
|
+
# The Lustre configuration for the file system being created.
|
546
586
|
#
|
547
587
|
# @note When making an API call, you may pass CreateFileSystemLustreConfiguration
|
548
588
|
# data as a hash:
|
@@ -632,14 +672,14 @@ module Aws::FSx
|
|
632
672
|
# @return [String]
|
633
673
|
#
|
634
674
|
# @!attribute [rw] per_unit_storage_throughput
|
635
|
-
#
|
675
|
+
# Required for the `PERSISTENT_1` deployment type, describes the
|
636
676
|
# amount of read and write throughput for each 1 tebibyte of storage,
|
637
677
|
# in MB/s/TiB. File system throughput capacity is calculated by
|
638
678
|
# multiplying file system storage capacity (TiB) by the
|
639
679
|
# PerUnitStorageThroughput (MB/s/TiB). For a 2.4 TiB file system,
|
640
|
-
# provisioning 50 MB/s/TiB of PerUnitStorageThroughput yields
|
680
|
+
# provisioning 50 MB/s/TiB of PerUnitStorageThroughput yields 117 MB/s
|
641
681
|
# of file system throughput. You pay for the amount of throughput that
|
642
|
-
# you provision.
|
682
|
+
# you provision.
|
643
683
|
#
|
644
684
|
# Valid values are 50, 100, 200.
|
645
685
|
# @return [Integer]
|
@@ -665,6 +705,7 @@ module Aws::FSx
|
|
665
705
|
# client_request_token: "ClientRequestToken",
|
666
706
|
# file_system_type: "WINDOWS", # required, accepts WINDOWS, LUSTRE
|
667
707
|
# storage_capacity: 1, # required
|
708
|
+
# storage_type: "SSD", # accepts SSD, HDD
|
668
709
|
# subnet_ids: ["SubnetId"], # required
|
669
710
|
# security_group_ids: ["SecurityGroupId"],
|
670
711
|
# tags: [
|
@@ -684,7 +725,7 @@ module Aws::FSx
|
|
684
725
|
# password: "DirectoryPassword", # required
|
685
726
|
# dns_ips: ["IpAddress"], # required
|
686
727
|
# },
|
687
|
-
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
728
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1, SINGLE_AZ_2
|
688
729
|
# preferred_subnet_id: "SubnetId",
|
689
730
|
# throughput_capacity: 1, # required
|
690
731
|
# weekly_maintenance_start_time: "WeeklyTime",
|
@@ -718,16 +759,44 @@ module Aws::FSx
|
|
718
759
|
# @return [String]
|
719
760
|
#
|
720
761
|
# @!attribute [rw] storage_capacity
|
721
|
-
#
|
762
|
+
# Sets the storage capacity of the file system that you're creating.
|
763
|
+
#
|
764
|
+
# For Lustre file systems:
|
765
|
+
#
|
766
|
+
# * For `SCRATCH_2` and `PERSISTENT_1` deployment types, valid values
|
767
|
+
# are 1.2, 2.4, and increments of 2.4 TiB.
|
768
|
+
#
|
769
|
+
# * For `SCRATCH_1` deployment type, valid values are 1.2, 2.4, and
|
770
|
+
# increments of 3.6 TiB.
|
722
771
|
#
|
723
|
-
# For Windows file systems
|
772
|
+
# For Windows file systems:
|
724
773
|
#
|
725
|
-
#
|
726
|
-
#
|
727
|
-
#
|
728
|
-
#
|
774
|
+
# * If `StorageType=SSD`, valid values are 32 GiB - 65,536 GiB (64
|
775
|
+
# TiB).
|
776
|
+
#
|
777
|
+
# * If `StorageType=HDD`, valid values are 2000 GiB - 65,536 GiB (64
|
778
|
+
# TiB).
|
729
779
|
# @return [Integer]
|
730
780
|
#
|
781
|
+
# @!attribute [rw] storage_type
|
782
|
+
# Sets the storage type for the Amazon FSx for Windows file system
|
783
|
+
# you're creating. Valid values are `SSD` and `HDD`.
|
784
|
+
#
|
785
|
+
# * Set to `SSD` to use solid state drive storage. SSD is supported on
|
786
|
+
# all Windows deployment types.
|
787
|
+
#
|
788
|
+
# * Set to `HDD` to use hard disk drive storage. HDD is supported on
|
789
|
+
# `SINGLE_AZ_2` and `MULTI_AZ_1` Windows file system deployment
|
790
|
+
# types.
|
791
|
+
#
|
792
|
+
# Default value is `SSD`. For more information, see [ Storage Type
|
793
|
+
# Options][1] in the *Amazon FSx for Windows User Guide*.
|
794
|
+
#
|
795
|
+
#
|
796
|
+
#
|
797
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-tco.html#saz-maz-storage-type
|
798
|
+
# @return [String]
|
799
|
+
#
|
731
800
|
# @!attribute [rw] subnet_ids
|
732
801
|
# Specifies the IDs of the subnets that the file system will be
|
733
802
|
# accessible from. For Windows `MULTI_AZ_1` file system deployment
|
@@ -736,9 +805,9 @@ module Aws::FSx
|
|
736
805
|
# subnets as the preferred subnet using the `WindowsConfiguration >
|
737
806
|
# PreferredSubnetID` property.
|
738
807
|
#
|
739
|
-
# For Windows `SINGLE_AZ_1` file system deployment
|
740
|
-
# file systems, provide exactly one subnet ID. The
|
741
|
-
# launched in that subnet's Availability Zone.
|
808
|
+
# For Windows `SINGLE_AZ_1` and `SINGLE_AZ_2` file system deployment
|
809
|
+
# types and Lustre file systems, provide exactly one subnet ID. The
|
810
|
+
# file server is launched in that subnet's Availability Zone.
|
742
811
|
# @return [Array<String>]
|
743
812
|
#
|
744
813
|
# @!attribute [rw] security_group_ids
|
@@ -769,13 +838,11 @@ module Aws::FSx
|
|
769
838
|
#
|
770
839
|
# @!attribute [rw] windows_configuration
|
771
840
|
# The Microsoft Windows configuration for the file system being
|
772
|
-
# created.
|
773
|
-
# `WINDOWS`.
|
841
|
+
# created.
|
774
842
|
# @return [Types::CreateFileSystemWindowsConfiguration]
|
775
843
|
#
|
776
844
|
# @!attribute [rw] lustre_configuration
|
777
|
-
# The Lustre configuration for the file system being created.
|
778
|
-
# value is required if `FileSystemType` is set to `LUSTRE`.
|
845
|
+
# The Lustre configuration for the file system being created.
|
779
846
|
# @return [Types::CreateFileSystemLustreConfiguration]
|
780
847
|
#
|
781
848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemRequest AWS API Documentation
|
@@ -784,6 +851,7 @@ module Aws::FSx
|
|
784
851
|
:client_request_token,
|
785
852
|
:file_system_type,
|
786
853
|
:storage_capacity,
|
854
|
+
:storage_type,
|
787
855
|
:subnet_ids,
|
788
856
|
:security_group_ids,
|
789
857
|
:tags,
|
@@ -822,7 +890,7 @@ module Aws::FSx
|
|
822
890
|
# password: "DirectoryPassword", # required
|
823
891
|
# dns_ips: ["IpAddress"], # required
|
824
892
|
# },
|
825
|
-
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
893
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1, SINGLE_AZ_2
|
826
894
|
# preferred_subnet_id: "SubnetId",
|
827
895
|
# throughput_capacity: 1, # required
|
828
896
|
# weekly_maintenance_start_time: "WeeklyTime",
|
@@ -846,17 +914,21 @@ module Aws::FSx
|
|
846
914
|
# Specifies the file system deployment type, valid values are the
|
847
915
|
# following:
|
848
916
|
#
|
849
|
-
# *
|
917
|
+
# * `MULTI_AZ_1` - Deploys a high availability file system that is
|
850
918
|
# configured for Multi-AZ redundancy to tolerate temporary
|
851
919
|
# Availability Zone (AZ) unavailability. You can only deploy a
|
852
920
|
# Multi-AZ file system in AWS Regions that have a minimum of three
|
853
|
-
# Availability Zones.
|
921
|
+
# Availability Zones. Also supports HDD storage type
|
854
922
|
#
|
855
|
-
# *
|
923
|
+
# * `SINGLE_AZ_1` - (Default) Choose to deploy a file system that is
|
856
924
|
# configured for single AZ redundancy.
|
857
925
|
#
|
858
|
-
#
|
859
|
-
#
|
926
|
+
# * `SINGLE_AZ_2` - The latest generation Single AZ file system.
|
927
|
+
# Specifies a file system that is configured for single AZ
|
928
|
+
# redundancy and supports HDD storage type.
|
929
|
+
#
|
930
|
+
# For more information, see [ Availability and Durability: Single-AZ
|
931
|
+
# and Multi-AZ File Systems][1].
|
860
932
|
#
|
861
933
|
#
|
862
934
|
#
|
@@ -1638,14 +1710,29 @@ module Aws::FSx
|
|
1638
1710
|
# The storage capacity of the file system in gigabytes (GB).
|
1639
1711
|
# @return [Integer]
|
1640
1712
|
#
|
1713
|
+
# @!attribute [rw] storage_type
|
1714
|
+
# The storage type of the file system. Valid values are `SSD` and
|
1715
|
+
# `HDD`. If set to `SSD`, the file system uses solid state drive
|
1716
|
+
# storage. If set to `HDD`, the file system uses hard disk drive
|
1717
|
+
# storage.
|
1718
|
+
# @return [String]
|
1719
|
+
#
|
1641
1720
|
# @!attribute [rw] vpc_id
|
1642
1721
|
# The ID of the primary VPC for the file system.
|
1643
1722
|
# @return [String]
|
1644
1723
|
#
|
1645
1724
|
# @!attribute [rw] subnet_ids
|
1646
|
-
#
|
1647
|
-
#
|
1648
|
-
#
|
1725
|
+
# Specifies the IDs of the subnets that the file system is accessible
|
1726
|
+
# from. For Windows `MULTI_AZ_1` file system deployment type, there
|
1727
|
+
# are two subnet IDs, one for the preferred file server and one for
|
1728
|
+
# the standby file server. The preferred file server subnet identified
|
1729
|
+
# in the `PreferredSubnetID` property. All other file systems have
|
1730
|
+
# only one subnet ID.
|
1731
|
+
#
|
1732
|
+
# For Lustre file systems, and Single-AZ Windows file systems, this is
|
1733
|
+
# the ID of the subnet that contains the endpoint for the file system.
|
1734
|
+
# For `MULTI_AZ_1` Windows file systems, the endpoint for the file
|
1735
|
+
# system is available in the `PreferredSubnetID`.
|
1649
1736
|
# @return [Array<String>]
|
1650
1737
|
#
|
1651
1738
|
# @!attribute [rw] network_interface_ids
|
@@ -1715,6 +1802,7 @@ module Aws::FSx
|
|
1715
1802
|
:lifecycle,
|
1716
1803
|
:failure_details,
|
1717
1804
|
:storage_capacity,
|
1805
|
+
:storage_type,
|
1718
1806
|
:vpc_id,
|
1719
1807
|
:subnet_ids,
|
1720
1808
|
:network_interface_ids,
|
@@ -2537,10 +2625,21 @@ module Aws::FSx
|
|
2537
2625
|
#
|
2538
2626
|
# * `MULTI_AZ_1` - Specifies a high availability file system that is
|
2539
2627
|
# configured for Multi-AZ redundancy to tolerate temporary
|
2540
|
-
# Availability Zone (AZ) unavailability
|
2628
|
+
# Availability Zone (AZ) unavailability, and supports SSD and HDD
|
2629
|
+
# storage.
|
2541
2630
|
#
|
2542
2631
|
# * `SINGLE_AZ_1` - (Default) Specifies a file system that is
|
2543
|
-
# configured for single AZ redundancy.
|
2632
|
+
# configured for single AZ redundancy, only supports SSD storage.
|
2633
|
+
#
|
2634
|
+
# * `SINGLE_AZ_2` - Latest generation Single AZ file system. Specifies
|
2635
|
+
# a file system that is configured for single AZ redundancy and
|
2636
|
+
# supports SSD and HDD storage.
|
2637
|
+
#
|
2638
|
+
# For more information, see [Single-AZ and Multi-AZ File Systems][1].
|
2639
|
+
#
|
2640
|
+
#
|
2641
|
+
#
|
2642
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/high-availability-multiAZ.html
|
2544
2643
|
# @return [String]
|
2545
2644
|
#
|
2546
2645
|
# @!attribute [rw] remote_administration_endpoint
|
@@ -2548,8 +2647,8 @@ module Aws::FSx
|
|
2548
2647
|
# administrative tasks on the file system using Amazon FSx Remote
|
2549
2648
|
# PowerShell.
|
2550
2649
|
#
|
2551
|
-
# For `SINGLE_AZ_1` deployment types, this is the
|
2552
|
-
# system.
|
2650
|
+
# For `SINGLE_AZ_1` and `SINGLE_AZ_2` deployment types, this is the
|
2651
|
+
# DNS name of the file system.
|
2553
2652
|
#
|
2554
2653
|
# This endpoint is temporarily unavailable when the file system is
|
2555
2654
|
# undergoing maintenance.
|
@@ -2562,8 +2661,14 @@ module Aws::FSx
|
|
2562
2661
|
# traffic from this subnet except in the event of a failover to the
|
2563
2662
|
# secondary file server.
|
2564
2663
|
#
|
2565
|
-
# For `SINGLE_AZ_1` deployment types, this value is
|
2566
|
-
# for `SubnetIDs`.
|
2664
|
+
# For `SINGLE_AZ_1` and `SINGLE_AZ_2` deployment types, this value is
|
2665
|
+
# the same as that for `SubnetIDs`. For more information, see
|
2666
|
+
# [Availability and Durability: Single-AZ and Multi-AZ File
|
2667
|
+
# Systems][1]
|
2668
|
+
#
|
2669
|
+
#
|
2670
|
+
#
|
2671
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/high-availability-multiAZ.html#single-multi-az-resources
|
2567
2672
|
# @return [String]
|
2568
2673
|
#
|
2569
2674
|
# @!attribute [rw] preferred_file_server_ip
|
@@ -2572,13 +2677,12 @@ module Aws::FSx
|
|
2572
2677
|
#
|
2573
2678
|
# Use this IP address when mounting the file system on Linux SMB
|
2574
2679
|
# clients or Windows SMB clients that are not joined to a Microsoft
|
2575
|
-
# Active Directory. Applicable for
|
2576
|
-
#
|
2577
|
-
#
|
2578
|
-
#
|
2579
|
-
#
|
2580
|
-
#
|
2581
|
-
# [https://docs.aws.amazon.com/fsx/latest/WindowsGuide/accessing-file-shares.html][1].
|
2680
|
+
# Active Directory. Applicable for all Windows file system deployment
|
2681
|
+
# types. This IP address is temporarily unavailable when the file
|
2682
|
+
# system is undergoing maintenance. For Linux and Windows SMB clients
|
2683
|
+
# that are joined to an Active Directory, use the file system's
|
2684
|
+
# DNSName instead. For more information on mapping and mounting file
|
2685
|
+
# shares, see [Accessing File Shares][1].
|
2582
2686
|
#
|
2583
2687
|
#
|
2584
2688
|
#
|
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.17.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: 2020-03-
|
11
|
+
date: 2020-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|