aws-sdk-fsx 1.12.0 → 1.13.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 +42 -8
- data/lib/aws-sdk-fsx/client_api.rb +7 -0
- data/lib/aws-sdk-fsx/types.rb +122 -19
- 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: 84313b0f75557ba9a7297c618d914460b4e9281b
|
|
4
|
+
data.tar.gz: 4b215458437967bde47b63f9a7b9d3d870aca8dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b24eeb05ce073460b0e009c924699e312ee0bbc80c5acac07d8a504a5fc241a5fe42023b5ff67341e94107c6cdd2c15139bf6a1caca275c760fa134ce907ac9a
|
|
7
|
+
data.tar.gz: fe189ff583fbbfbff364305fb92795fe91bcdb0e8b81e1f1350d0f08759b06df2288ac7d87904ad0b74c5629243c6b83e6d3ff6c255308718d0b9d39f8499c17
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
|
@@ -413,6 +413,10 @@ module Aws::FSx
|
|
|
413
413
|
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
|
414
414
|
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
|
415
415
|
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
|
416
|
+
# resp.backup.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
|
417
|
+
# resp.backup.file_system.windows_configuration.remote_administration_endpoint #=> String
|
|
418
|
+
# resp.backup.file_system.windows_configuration.preferred_subnet_id #=> String
|
|
419
|
+
# resp.backup.file_system.windows_configuration.preferred_file_server_ip #=> String
|
|
416
420
|
# resp.backup.file_system.windows_configuration.throughput_capacity #=> Integer
|
|
417
421
|
# resp.backup.file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
|
418
422
|
# resp.backup.file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
|
@@ -485,16 +489,22 @@ module Aws::FSx
|
|
|
485
489
|
# @option params [required, Integer] :storage_capacity
|
|
486
490
|
# The storage capacity of the file system being created.
|
|
487
491
|
#
|
|
488
|
-
# For Windows file systems,
|
|
489
|
-
# GiB, and a maximum of 65,536 GiB.
|
|
492
|
+
# For Windows file systems, valid values are 32 GiB - 65,536 GiB.
|
|
490
493
|
#
|
|
491
|
-
# For Lustre file systems,
|
|
492
|
-
#
|
|
494
|
+
# For Lustre file systems, valid values are 1,200, 2,400, 3,600, then
|
|
495
|
+
# continuing in increments of 3600 GiB.
|
|
493
496
|
#
|
|
494
497
|
# @option params [required, Array<String>] :subnet_ids
|
|
495
|
-
#
|
|
496
|
-
#
|
|
497
|
-
#
|
|
498
|
+
# Specifies the IDs of the subnets that the file system will be
|
|
499
|
+
# accessible from. For Windows `MULTI_AZ_1` file system deployment
|
|
500
|
+
# types, provide exactly two subnet IDs, one for the preferred file
|
|
501
|
+
# server and one for the standy file server. You specify one of these
|
|
502
|
+
# subnets as the preferred subnet using the `WindowsConfiguration >
|
|
503
|
+
# PreferredSubnetID` property.
|
|
504
|
+
#
|
|
505
|
+
# For Windows `SINGLE_AZ_1` file system deployment types and Lustre file
|
|
506
|
+
# systems, provide exactly one subnet ID. The file server is launched in
|
|
507
|
+
# that subnet's Availability Zone.
|
|
498
508
|
#
|
|
499
509
|
# @option params [Array<String>] :security_group_ids
|
|
500
510
|
# A list of IDs specifying the security groups to apply to all network
|
|
@@ -614,6 +624,8 @@ module Aws::FSx
|
|
|
614
624
|
# password: "DirectoryPassword", # required
|
|
615
625
|
# dns_ips: ["IpAddress"], # required
|
|
616
626
|
# },
|
|
627
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
|
628
|
+
# preferred_subnet_id: "SubnetId",
|
|
617
629
|
# throughput_capacity: 1, # required
|
|
618
630
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
619
631
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
@@ -655,6 +667,10 @@ module Aws::FSx
|
|
|
655
667
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
|
656
668
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
|
657
669
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
|
670
|
+
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
|
671
|
+
# resp.file_system.windows_configuration.remote_administration_endpoint #=> String
|
|
672
|
+
# resp.file_system.windows_configuration.preferred_subnet_id #=> String
|
|
673
|
+
# resp.file_system.windows_configuration.preferred_file_server_ip #=> String
|
|
658
674
|
# resp.file_system.windows_configuration.throughput_capacity #=> Integer
|
|
659
675
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
|
660
676
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
|
@@ -828,6 +844,8 @@ module Aws::FSx
|
|
|
828
844
|
# password: "DirectoryPassword", # required
|
|
829
845
|
# dns_ips: ["IpAddress"], # required
|
|
830
846
|
# },
|
|
847
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
|
848
|
+
# preferred_subnet_id: "SubnetId",
|
|
831
849
|
# throughput_capacity: 1, # required
|
|
832
850
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
833
851
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
@@ -863,6 +881,10 @@ module Aws::FSx
|
|
|
863
881
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
|
864
882
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
|
865
883
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
|
884
|
+
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
|
885
|
+
# resp.file_system.windows_configuration.remote_administration_endpoint #=> String
|
|
886
|
+
# resp.file_system.windows_configuration.preferred_subnet_id #=> String
|
|
887
|
+
# resp.file_system.windows_configuration.preferred_file_server_ip #=> String
|
|
866
888
|
# resp.file_system.windows_configuration.throughput_capacity #=> Integer
|
|
867
889
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
|
868
890
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
|
@@ -1179,6 +1201,10 @@ module Aws::FSx
|
|
|
1179
1201
|
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
|
1180
1202
|
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
|
1181
1203
|
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
|
1204
|
+
# resp.backups[0].file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
|
1205
|
+
# resp.backups[0].file_system.windows_configuration.remote_administration_endpoint #=> String
|
|
1206
|
+
# resp.backups[0].file_system.windows_configuration.preferred_subnet_id #=> String
|
|
1207
|
+
# resp.backups[0].file_system.windows_configuration.preferred_file_server_ip #=> String
|
|
1182
1208
|
# resp.backups[0].file_system.windows_configuration.throughput_capacity #=> Integer
|
|
1183
1209
|
# resp.backups[0].file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
|
1184
1210
|
# resp.backups[0].file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
|
@@ -1331,6 +1357,10 @@ module Aws::FSx
|
|
|
1331
1357
|
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
|
1332
1358
|
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
|
1333
1359
|
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
|
1360
|
+
# resp.file_systems[0].windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
|
1361
|
+
# resp.file_systems[0].windows_configuration.remote_administration_endpoint #=> String
|
|
1362
|
+
# resp.file_systems[0].windows_configuration.preferred_subnet_id #=> String
|
|
1363
|
+
# resp.file_systems[0].windows_configuration.preferred_file_server_ip #=> String
|
|
1334
1364
|
# resp.file_systems[0].windows_configuration.throughput_capacity #=> Integer
|
|
1335
1365
|
# resp.file_systems[0].windows_configuration.maintenance_operations_in_progress #=> Array
|
|
1336
1366
|
# resp.file_systems[0].windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
|
@@ -1645,6 +1675,10 @@ module Aws::FSx
|
|
|
1645
1675
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
|
1646
1676
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
|
1647
1677
|
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
|
1678
|
+
# resp.file_system.windows_configuration.deployment_type #=> String, one of "MULTI_AZ_1", "SINGLE_AZ_1"
|
|
1679
|
+
# resp.file_system.windows_configuration.remote_administration_endpoint #=> String
|
|
1680
|
+
# resp.file_system.windows_configuration.preferred_subnet_id #=> String
|
|
1681
|
+
# resp.file_system.windows_configuration.preferred_file_server_ip #=> String
|
|
1648
1682
|
# resp.file_system.windows_configuration.throughput_capacity #=> Integer
|
|
1649
1683
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
|
1650
1684
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
|
@@ -1679,7 +1713,7 @@ module Aws::FSx
|
|
|
1679
1713
|
params: params,
|
|
1680
1714
|
config: config)
|
|
1681
1715
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
1682
|
-
context[:gem_version] = '1.
|
|
1716
|
+
context[:gem_version] = '1.13.0'
|
|
1683
1717
|
Seahorse::Client::Request.new(handlers, context)
|
|
1684
1718
|
end
|
|
1685
1719
|
|
|
@@ -124,6 +124,7 @@ module Aws::FSx
|
|
|
124
124
|
UpdateFileSystemWindowsConfiguration = Shapes::StructureShape.new(name: 'UpdateFileSystemWindowsConfiguration')
|
|
125
125
|
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
126
126
|
WeeklyTime = Shapes::StringShape.new(name: 'WeeklyTime')
|
|
127
|
+
WindowsDeploymentType = Shapes::StringShape.new(name: 'WindowsDeploymentType')
|
|
127
128
|
WindowsFileSystemConfiguration = Shapes::StructureShape.new(name: 'WindowsFileSystemConfiguration')
|
|
128
129
|
|
|
129
130
|
ActiveDirectoryBackupAttributes.add_member(:domain_name, Shapes::ShapeRef.new(shape: ActiveDirectoryFullyQualifiedName, location_name: "DomainName"))
|
|
@@ -209,6 +210,8 @@ module Aws::FSx
|
|
|
209
210
|
|
|
210
211
|
CreateFileSystemWindowsConfiguration.add_member(:active_directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "ActiveDirectoryId"))
|
|
211
212
|
CreateFileSystemWindowsConfiguration.add_member(:self_managed_active_directory_configuration, Shapes::ShapeRef.new(shape: SelfManagedActiveDirectoryConfiguration, location_name: "SelfManagedActiveDirectoryConfiguration"))
|
|
213
|
+
CreateFileSystemWindowsConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: WindowsDeploymentType, location_name: "DeploymentType"))
|
|
214
|
+
CreateFileSystemWindowsConfiguration.add_member(:preferred_subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "PreferredSubnetId"))
|
|
212
215
|
CreateFileSystemWindowsConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: MegabytesPerSecond, required: true, location_name: "ThroughputCapacity"))
|
|
213
216
|
CreateFileSystemWindowsConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
|
214
217
|
CreateFileSystemWindowsConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
|
@@ -425,6 +428,10 @@ module Aws::FSx
|
|
|
425
428
|
|
|
426
429
|
WindowsFileSystemConfiguration.add_member(:active_directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "ActiveDirectoryId"))
|
|
427
430
|
WindowsFileSystemConfiguration.add_member(:self_managed_active_directory_configuration, Shapes::ShapeRef.new(shape: SelfManagedActiveDirectoryAttributes, location_name: "SelfManagedActiveDirectoryConfiguration"))
|
|
431
|
+
WindowsFileSystemConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: WindowsDeploymentType, location_name: "DeploymentType"))
|
|
432
|
+
WindowsFileSystemConfiguration.add_member(:remote_administration_endpoint, Shapes::ShapeRef.new(shape: DNSName, location_name: "RemoteAdministrationEndpoint"))
|
|
433
|
+
WindowsFileSystemConfiguration.add_member(:preferred_subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "PreferredSubnetId"))
|
|
434
|
+
WindowsFileSystemConfiguration.add_member(:preferred_file_server_ip, Shapes::ShapeRef.new(shape: IpAddress, location_name: "PreferredFileServerIp"))
|
|
428
435
|
WindowsFileSystemConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: MegabytesPerSecond, location_name: "ThroughputCapacity"))
|
|
429
436
|
WindowsFileSystemConfiguration.add_member(:maintenance_operations_in_progress, Shapes::ShapeRef.new(shape: FileSystemMaintenanceOperations, location_name: "MaintenanceOperationsInProgress"))
|
|
430
437
|
WindowsFileSystemConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
|
@@ -274,6 +274,8 @@ module Aws::FSx
|
|
|
274
274
|
# password: "DirectoryPassword", # required
|
|
275
275
|
# dns_ips: ["IpAddress"], # required
|
|
276
276
|
# },
|
|
277
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
|
278
|
+
# preferred_subnet_id: "SubnetId",
|
|
277
279
|
# throughput_capacity: 1, # required
|
|
278
280
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
279
281
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
@@ -445,6 +447,8 @@ module Aws::FSx
|
|
|
445
447
|
# password: "DirectoryPassword", # required
|
|
446
448
|
# dns_ips: ["IpAddress"], # required
|
|
447
449
|
# },
|
|
450
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
|
451
|
+
# preferred_subnet_id: "SubnetId",
|
|
448
452
|
# throughput_capacity: 1, # required
|
|
449
453
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
450
454
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
@@ -476,16 +480,22 @@ module Aws::FSx
|
|
|
476
480
|
# @!attribute [rw] storage_capacity
|
|
477
481
|
# The storage capacity of the file system being created.
|
|
478
482
|
#
|
|
479
|
-
# For Windows file systems,
|
|
480
|
-
# GiB, and a maximum of 65,536 GiB.
|
|
483
|
+
# For Windows file systems, valid values are 32 GiB - 65,536 GiB.
|
|
481
484
|
#
|
|
482
|
-
# For Lustre file systems,
|
|
483
|
-
#
|
|
485
|
+
# For Lustre file systems, valid values are 1,200, 2,400, 3,600, then
|
|
486
|
+
# continuing in increments of 3600 GiB.
|
|
484
487
|
# @return [Integer]
|
|
485
488
|
#
|
|
486
489
|
# @!attribute [rw] subnet_ids
|
|
487
|
-
#
|
|
488
|
-
#
|
|
490
|
+
# Specifies the IDs of the subnets that the file system will be
|
|
491
|
+
# accessible from. For Windows `MULTI_AZ_1` file system deployment
|
|
492
|
+
# types, provide exactly two subnet IDs, one for the preferred file
|
|
493
|
+
# server and one for the standy file server. You specify one of these
|
|
494
|
+
# subnets as the preferred subnet using the `WindowsConfiguration >
|
|
495
|
+
# PreferredSubnetID` property.
|
|
496
|
+
#
|
|
497
|
+
# For Windows `SINGLE_AZ_1` file system deployment types and Lustre
|
|
498
|
+
# file systems, provide exactly one subnet ID. The file server is
|
|
489
499
|
# launched in that subnet's Availability Zone.
|
|
490
500
|
# @return [Array<String>]
|
|
491
501
|
#
|
|
@@ -566,6 +576,8 @@ module Aws::FSx
|
|
|
566
576
|
# password: "DirectoryPassword", # required
|
|
567
577
|
# dns_ips: ["IpAddress"], # required
|
|
568
578
|
# },
|
|
579
|
+
# deployment_type: "MULTI_AZ_1", # accepts MULTI_AZ_1, SINGLE_AZ_1
|
|
580
|
+
# preferred_subnet_id: "SubnetId",
|
|
569
581
|
# throughput_capacity: 1, # required
|
|
570
582
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
571
583
|
# daily_automatic_backup_start_time: "DailyTime",
|
|
@@ -584,6 +596,36 @@ module Aws::FSx
|
|
|
584
596
|
# Microsoft Active Directory (AD) directory.
|
|
585
597
|
# @return [Types::SelfManagedActiveDirectoryConfiguration]
|
|
586
598
|
#
|
|
599
|
+
# @!attribute [rw] deployment_type
|
|
600
|
+
# Specifies the file system deployment type, valid values are the
|
|
601
|
+
# following:
|
|
602
|
+
#
|
|
603
|
+
# * MULTI\_AZ\_1 - Deploys a high availability file system that is
|
|
604
|
+
# configured for Multi-AZ redundancy to tolerate temporary
|
|
605
|
+
# Availability Zone (AZ) unavailability. You can only deploy a
|
|
606
|
+
# Multi-AZ file system in AWS Regions that have a minimum of three
|
|
607
|
+
# Availability Zones.
|
|
608
|
+
#
|
|
609
|
+
# * SINGLE\_AZ\_1 - (Default) Choose to deploy a file system that is
|
|
610
|
+
# configured for single AZ redundancy.
|
|
611
|
+
#
|
|
612
|
+
# To learn more about high availability Multi-AZ file systems, see [
|
|
613
|
+
# High Availability for Amazon FSx for Windows File Server][1].
|
|
614
|
+
#
|
|
615
|
+
#
|
|
616
|
+
#
|
|
617
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/high-availability-multiAZ.html
|
|
618
|
+
# @return [String]
|
|
619
|
+
#
|
|
620
|
+
# @!attribute [rw] preferred_subnet_id
|
|
621
|
+
# Required when `DeploymentType` is set to `MULTI_AZ_1`. This
|
|
622
|
+
# specifies the subnet in which you want the preferred file server to
|
|
623
|
+
# be located. For in-AWS applications, we recommend that you launch
|
|
624
|
+
# your clients in the same Availability Zone (AZ) as your preferred
|
|
625
|
+
# file server to reduce cross-AZ data transfer costs and minimize
|
|
626
|
+
# latency.
|
|
627
|
+
# @return [String]
|
|
628
|
+
#
|
|
587
629
|
# @!attribute [rw] throughput_capacity
|
|
588
630
|
# The throughput of an Amazon FSx file system, measured in megabytes
|
|
589
631
|
# per second, in 2 to the *n*th increments, between 2^3 (8) and 2^11
|
|
@@ -621,6 +663,8 @@ module Aws::FSx
|
|
|
621
663
|
class CreateFileSystemWindowsConfiguration < Struct.new(
|
|
622
664
|
:active_directory_id,
|
|
623
665
|
:self_managed_active_directory_configuration,
|
|
666
|
+
:deployment_type,
|
|
667
|
+
:preferred_subnet_id,
|
|
624
668
|
:throughput_capacity,
|
|
625
669
|
:weekly_maintenance_start_time,
|
|
626
670
|
:daily_automatic_backup_start_time,
|
|
@@ -994,19 +1038,19 @@ module Aws::FSx
|
|
|
994
1038
|
# @return [String]
|
|
995
1039
|
#
|
|
996
1040
|
# @!attribute [rw] lifecycle
|
|
997
|
-
# The lifecycle status of the file system
|
|
1041
|
+
# The lifecycle status of the file system, following are the possible
|
|
1042
|
+
# values and what they mean:
|
|
998
1043
|
#
|
|
999
|
-
# * `AVAILABLE`
|
|
1000
|
-
# available for use.
|
|
1044
|
+
# * `AVAILABLE` - The file system is in a healthy state, and is
|
|
1045
|
+
# reachable and available for use.
|
|
1001
1046
|
#
|
|
1002
|
-
# * `CREATING`
|
|
1003
|
-
# the new file system.
|
|
1047
|
+
# * `CREATING` - Amazon FSx is creating the new file system.
|
|
1004
1048
|
#
|
|
1005
|
-
# * `DELETING`
|
|
1006
|
-
# the file system.
|
|
1049
|
+
# * `DELETING` - Amazon FSx is deleting an existing file system.
|
|
1007
1050
|
#
|
|
1008
|
-
# * `FAILED`
|
|
1009
|
-
# system
|
|
1051
|
+
# * `FAILED` - An existing file system has experienced an
|
|
1052
|
+
# unrecoverable failure. When creating a new file system, Amazon FSx
|
|
1053
|
+
# was unable to create the file system.
|
|
1010
1054
|
#
|
|
1011
1055
|
# * `MISCONFIGURED` indicates that the file system is in a failed but
|
|
1012
1056
|
# recoverable state.
|
|
@@ -1490,10 +1534,11 @@ module Aws::FSx
|
|
|
1490
1534
|
# @!attribute [rw] file_system_administrators_group
|
|
1491
1535
|
# (Optional) The name of the domain group whose members are granted
|
|
1492
1536
|
# administrative privileges for the file system. Administrative
|
|
1493
|
-
# privileges include taking ownership of files and folders,
|
|
1494
|
-
#
|
|
1495
|
-
#
|
|
1496
|
-
#
|
|
1537
|
+
# privileges include taking ownership of files and folders, setting
|
|
1538
|
+
# audit controls (audit ACLs) on files and folders, and administering
|
|
1539
|
+
# the file system remotely by using the FSx Remote PowerShell. The
|
|
1540
|
+
# group that you specify must already exist in your domain. If you
|
|
1541
|
+
# don't provide one, your AD domain's Domain Admins group is used.
|
|
1497
1542
|
# @return [String]
|
|
1498
1543
|
#
|
|
1499
1544
|
# @!attribute [rw] user_name
|
|
@@ -1870,6 +1915,60 @@ module Aws::FSx
|
|
|
1870
1915
|
# (AD) directory to which the Windows File Server instance is joined.
|
|
1871
1916
|
# @return [Types::SelfManagedActiveDirectoryAttributes]
|
|
1872
1917
|
#
|
|
1918
|
+
# @!attribute [rw] deployment_type
|
|
1919
|
+
# Specifies the file system deployment type, valid values are the
|
|
1920
|
+
# following:
|
|
1921
|
+
#
|
|
1922
|
+
# * `MULTI_AZ_1` - Specifies a high availability file system that is
|
|
1923
|
+
# configured for Multi-AZ redundancy to tolerate temporary
|
|
1924
|
+
# Availability Zone (AZ) unavailability.
|
|
1925
|
+
#
|
|
1926
|
+
# * `SINGLE_AZ_1` - (Default) Specifies a file system that is
|
|
1927
|
+
# configured for single AZ redundancy.
|
|
1928
|
+
# @return [String]
|
|
1929
|
+
#
|
|
1930
|
+
# @!attribute [rw] remote_administration_endpoint
|
|
1931
|
+
# For `MULTI_AZ_1` deployment types, use this endpoint when performing
|
|
1932
|
+
# administrative tasks on the file system using Amazon FSx Remote
|
|
1933
|
+
# PowerShell.
|
|
1934
|
+
#
|
|
1935
|
+
# For `SINGLE_AZ_1` deployment types, this is the DNS name of the file
|
|
1936
|
+
# system.
|
|
1937
|
+
#
|
|
1938
|
+
# This endpoint is temporarily unavailable when the file system is
|
|
1939
|
+
# undergoing maintenance.
|
|
1940
|
+
# @return [String]
|
|
1941
|
+
#
|
|
1942
|
+
# @!attribute [rw] preferred_subnet_id
|
|
1943
|
+
# For `MULTI_AZ_1` deployment types, it specifies the ID of the subnet
|
|
1944
|
+
# where the preferred file server is located. Must be one of the two
|
|
1945
|
+
# subnet IDs specified in `SubnetIds` property. Amazon FSx serves
|
|
1946
|
+
# traffic from this subnet except in the event of a failover to the
|
|
1947
|
+
# secondary file server.
|
|
1948
|
+
#
|
|
1949
|
+
# For `SINGLE_AZ_1` deployment types, this value is the same as that
|
|
1950
|
+
# for `SubnetIDs`.
|
|
1951
|
+
# @return [String]
|
|
1952
|
+
#
|
|
1953
|
+
# @!attribute [rw] preferred_file_server_ip
|
|
1954
|
+
# For `MULTI_AZ_1` deployment types, the IP address of the primary, or
|
|
1955
|
+
# preferred, file server.
|
|
1956
|
+
#
|
|
1957
|
+
# Use this IP address when mounting the file system on Linux SMB
|
|
1958
|
+
# clients or Windows SMB clients that are not joined to a Microsoft
|
|
1959
|
+
# Active Directory. Applicable for both `SINGLE_AZ_1` and `MULTI_AZ_1`
|
|
1960
|
+
# deployment types. This IP address is temporarily unavailable when
|
|
1961
|
+
# the file system is undergoing maintenance. For Linux and Windows SMB
|
|
1962
|
+
# clients that are joined to an Active Directory, use the file
|
|
1963
|
+
# system's DNSName instead. For more information and instruction on
|
|
1964
|
+
# mapping and mounting file shares, see
|
|
1965
|
+
# [https://docs.aws.amazon.com/fsx/latest/WindowsGuide/accessing-file-shares.html][1].
|
|
1966
|
+
#
|
|
1967
|
+
#
|
|
1968
|
+
#
|
|
1969
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/accessing-file-shares.html
|
|
1970
|
+
# @return [String]
|
|
1971
|
+
#
|
|
1873
1972
|
# @!attribute [rw] throughput_capacity
|
|
1874
1973
|
# The throughput of an Amazon FSx file system, measured in megabytes
|
|
1875
1974
|
# per second.
|
|
@@ -1909,6 +2008,10 @@ module Aws::FSx
|
|
|
1909
2008
|
class WindowsFileSystemConfiguration < Struct.new(
|
|
1910
2009
|
:active_directory_id,
|
|
1911
2010
|
:self_managed_active_directory_configuration,
|
|
2011
|
+
:deployment_type,
|
|
2012
|
+
:remote_administration_endpoint,
|
|
2013
|
+
:preferred_subnet_id,
|
|
2014
|
+
:preferred_file_server_ip,
|
|
1912
2015
|
:throughput_capacity,
|
|
1913
2016
|
:maintenance_operations_in_progress,
|
|
1914
2017
|
:weekly_maintenance_start_time,
|
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.13.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: 2019-
|
|
11
|
+
date: 2019-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|