aws-sdk-fsx 1.8.0 → 1.9.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 +91 -29
- data/lib/aws-sdk-fsx/client_api.rb +47 -0
- data/lib/aws-sdk-fsx/errors.rb +16 -0
- data/lib/aws-sdk-fsx/types.rb +338 -54
- 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: 4c24b4e96c51576ae75e18e53b847a513ff8baa5
|
4
|
+
data.tar.gz: 6bc4e1c00402c1027628a2278862ab07b0f7b126
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02220445b761bf050adf916a953c82ee0eb430ba926c9653ab7f5f4556baa10f98d76df968b11fcd7d5db694ac0822726a9b939e0b8a75e73a7b303e2905045a
|
7
|
+
data.tar.gz: 383c58d1bf0b7203c1f2d15d62dd11d9896777aec6b88c41b08fd8ddd6f8575a91a8ffc5e8e6cc29c9cbb9bab800d715a00569be7483c9ae44419f814f72230a
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
@@ -392,7 +392,7 @@ module Aws::FSx
|
|
392
392
|
# resp.backup.file_system.creation_time #=> Time
|
393
393
|
# resp.backup.file_system.file_system_id #=> String
|
394
394
|
# resp.backup.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE"
|
395
|
-
# resp.backup.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING"
|
395
|
+
# resp.backup.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
396
396
|
# resp.backup.file_system.failure_details.message #=> String
|
397
397
|
# resp.backup.file_system.storage_capacity #=> Integer
|
398
398
|
# resp.backup.file_system.vpc_id #=> String
|
@@ -407,6 +407,12 @@ module Aws::FSx
|
|
407
407
|
# resp.backup.file_system.tags[0].key #=> String
|
408
408
|
# resp.backup.file_system.tags[0].value #=> String
|
409
409
|
# resp.backup.file_system.windows_configuration.active_directory_id #=> String
|
410
|
+
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.domain_name #=> String
|
411
|
+
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.organizational_unit_distinguished_name #=> String
|
412
|
+
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.file_system_administrators_group #=> String
|
413
|
+
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
414
|
+
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
415
|
+
# resp.backup.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
410
416
|
# resp.backup.file_system.windows_configuration.throughput_capacity #=> Integer
|
411
417
|
# resp.backup.file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
412
418
|
# resp.backup.file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
@@ -418,6 +424,8 @@ module Aws::FSx
|
|
418
424
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
419
425
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
420
426
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
427
|
+
# resp.backup.directory_information.domain_name #=> String
|
428
|
+
# resp.backup.directory_information.active_directory_id #=> String
|
421
429
|
#
|
422
430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateBackup AWS API Documentation
|
423
431
|
#
|
@@ -472,10 +480,10 @@ module Aws::FSx
|
|
472
480
|
# not need to pass this option.**
|
473
481
|
#
|
474
482
|
# @option params [required, String] :file_system_type
|
475
|
-
# The type of file system.
|
483
|
+
# The type of Amazon FSx file system to create.
|
476
484
|
#
|
477
485
|
# @option params [required, Integer] :storage_capacity
|
478
|
-
# The storage capacity of the file system.
|
486
|
+
# The storage capacity of the file system being created.
|
479
487
|
#
|
480
488
|
# For Windows file systems, the storage capacity has a minimum of 300
|
481
489
|
# GiB, and a maximum of 65,536 GiB.
|
@@ -484,20 +492,18 @@ module Aws::FSx
|
|
484
492
|
# GiB. Storage capacity is provisioned in increments of 3,600 GiB.
|
485
493
|
#
|
486
494
|
# @option params [required, Array<String>] :subnet_ids
|
487
|
-
#
|
488
|
-
#
|
489
|
-
#
|
495
|
+
# The IDs of the subnets that the file system will be accessible from.
|
496
|
+
# File systems support only one subnet. The file server is also launched
|
497
|
+
# in that subnet's Availability Zone.
|
490
498
|
#
|
491
499
|
# @option params [Array<String>] :security_group_ids
|
492
|
-
# A list of IDs
|
493
|
-
#
|
494
|
-
#
|
495
|
-
# in later describe requests.
|
500
|
+
# A list of IDs specifying the security groups to apply to all network
|
501
|
+
# interfaces created for file system access. This list isn't returned
|
502
|
+
# in later requests to describe the file system.
|
496
503
|
#
|
497
504
|
# @option params [Array<Types::Tag>] :tags
|
498
|
-
# The tags to
|
499
|
-
#
|
500
|
-
# name.
|
505
|
+
# The tags to apply to the file system being created. The key value of
|
506
|
+
# the `Name` tag appears in the console as the file system name.
|
501
507
|
#
|
502
508
|
# @option params [String] :kms_key_id
|
503
509
|
# The ID of your AWS Key Management Service (AWS KMS) key. This ID is
|
@@ -510,11 +516,12 @@ module Aws::FSx
|
|
510
516
|
# [1]: https://docs.aws.amazon.com/kms/latest/APIReference/API_Encrypt.html
|
511
517
|
#
|
512
518
|
# @option params [Types::CreateFileSystemWindowsConfiguration] :windows_configuration
|
513
|
-
# The configuration for
|
519
|
+
# The Microsoft Windows configuration for the file system being created.
|
520
|
+
# This value is required if `FileSystemType` is set to `WINDOWS`.
|
514
521
|
#
|
515
522
|
# @option params [Types::CreateFileSystemLustreConfiguration] :lustre_configuration
|
516
|
-
# The configuration
|
517
|
-
# `
|
523
|
+
# The Lustre configuration for the file system being created. This value
|
524
|
+
# is required if `FileSystemType` is set to `LUSTRE`.
|
518
525
|
#
|
519
526
|
# @return [Types::CreateFileSystemResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
520
527
|
#
|
@@ -599,6 +606,14 @@ module Aws::FSx
|
|
599
606
|
# kms_key_id: "KmsKeyId",
|
600
607
|
# windows_configuration: {
|
601
608
|
# active_directory_id: "DirectoryId",
|
609
|
+
# self_managed_active_directory_configuration: {
|
610
|
+
# domain_name: "ActiveDirectoryFullyQualifiedName", # required
|
611
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
612
|
+
# file_system_administrators_group: "FileSystemAdministratorsGroupName",
|
613
|
+
# user_name: "DirectoryUserName", # required
|
614
|
+
# password: "DirectoryPassword", # required
|
615
|
+
# dns_ips: ["IpAddress"], # required
|
616
|
+
# },
|
602
617
|
# throughput_capacity: 1, # required
|
603
618
|
# weekly_maintenance_start_time: "WeeklyTime",
|
604
619
|
# daily_automatic_backup_start_time: "DailyTime",
|
@@ -619,7 +634,7 @@ module Aws::FSx
|
|
619
634
|
# resp.file_system.creation_time #=> Time
|
620
635
|
# resp.file_system.file_system_id #=> String
|
621
636
|
# resp.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE"
|
622
|
-
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING"
|
637
|
+
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
623
638
|
# resp.file_system.failure_details.message #=> String
|
624
639
|
# resp.file_system.storage_capacity #=> Integer
|
625
640
|
# resp.file_system.vpc_id #=> String
|
@@ -634,6 +649,12 @@ module Aws::FSx
|
|
634
649
|
# resp.file_system.tags[0].key #=> String
|
635
650
|
# resp.file_system.tags[0].value #=> String
|
636
651
|
# resp.file_system.windows_configuration.active_directory_id #=> String
|
652
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.domain_name #=> String
|
653
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.organizational_unit_distinguished_name #=> String
|
654
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.file_system_administrators_group #=> String
|
655
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
656
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
657
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
637
658
|
# resp.file_system.windows_configuration.throughput_capacity #=> Integer
|
638
659
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
639
660
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
@@ -659,9 +680,9 @@ module Aws::FSx
|
|
659
680
|
# Windows File Server backup.
|
660
681
|
#
|
661
682
|
# If a file system with the specified client request token exists and
|
662
|
-
# the parameters match, this
|
663
|
-
#
|
664
|
-
#
|
683
|
+
# the parameters match, this operation returns the description of the
|
684
|
+
# file system. If a client request token specified by the file system
|
685
|
+
# exists and the parameters don't match, this call returns
|
665
686
|
# `IncompatibleParameterError`. If a file system with the specified
|
666
687
|
# client request token doesn't exist, this operation does the
|
667
688
|
# following:
|
@@ -693,7 +714,8 @@ module Aws::FSx
|
|
693
714
|
# </note>
|
694
715
|
#
|
695
716
|
# @option params [required, String] :backup_id
|
696
|
-
# The ID of the backup.
|
717
|
+
# The ID of the backup. Specifies the backup to use if you're creating
|
718
|
+
# a file system from an existing backup.
|
697
719
|
#
|
698
720
|
# @option params [String] :client_request_token
|
699
721
|
# (Optional) A string of up to 64 ASCII characters that Amazon FSx uses
|
@@ -798,6 +820,14 @@ module Aws::FSx
|
|
798
820
|
# ],
|
799
821
|
# windows_configuration: {
|
800
822
|
# active_directory_id: "DirectoryId",
|
823
|
+
# self_managed_active_directory_configuration: {
|
824
|
+
# domain_name: "ActiveDirectoryFullyQualifiedName", # required
|
825
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
826
|
+
# file_system_administrators_group: "FileSystemAdministratorsGroupName",
|
827
|
+
# user_name: "DirectoryUserName", # required
|
828
|
+
# password: "DirectoryPassword", # required
|
829
|
+
# dns_ips: ["IpAddress"], # required
|
830
|
+
# },
|
801
831
|
# throughput_capacity: 1, # required
|
802
832
|
# weekly_maintenance_start_time: "WeeklyTime",
|
803
833
|
# daily_automatic_backup_start_time: "DailyTime",
|
@@ -812,7 +842,7 @@ module Aws::FSx
|
|
812
842
|
# resp.file_system.creation_time #=> Time
|
813
843
|
# resp.file_system.file_system_id #=> String
|
814
844
|
# resp.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE"
|
815
|
-
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING"
|
845
|
+
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
816
846
|
# resp.file_system.failure_details.message #=> String
|
817
847
|
# resp.file_system.storage_capacity #=> Integer
|
818
848
|
# resp.file_system.vpc_id #=> String
|
@@ -827,6 +857,12 @@ module Aws::FSx
|
|
827
857
|
# resp.file_system.tags[0].key #=> String
|
828
858
|
# resp.file_system.tags[0].value #=> String
|
829
859
|
# resp.file_system.windows_configuration.active_directory_id #=> String
|
860
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.domain_name #=> String
|
861
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.organizational_unit_distinguished_name #=> String
|
862
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.file_system_administrators_group #=> String
|
863
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
864
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
865
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
830
866
|
# resp.file_system.windows_configuration.throughput_capacity #=> Integer
|
831
867
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
832
868
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
@@ -984,7 +1020,7 @@ module Aws::FSx
|
|
984
1020
|
# @example Response structure
|
985
1021
|
#
|
986
1022
|
# resp.file_system_id #=> String
|
987
|
-
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING"
|
1023
|
+
# resp.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
988
1024
|
# resp.windows_response.final_backup_id #=> String
|
989
1025
|
# resp.windows_response.final_backup_tags #=> Array
|
990
1026
|
# resp.windows_response.final_backup_tags[0].key #=> String
|
@@ -1122,7 +1158,7 @@ module Aws::FSx
|
|
1122
1158
|
# resp.backups[0].file_system.creation_time #=> Time
|
1123
1159
|
# resp.backups[0].file_system.file_system_id #=> String
|
1124
1160
|
# resp.backups[0].file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE"
|
1125
|
-
# resp.backups[0].file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING"
|
1161
|
+
# resp.backups[0].file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
1126
1162
|
# resp.backups[0].file_system.failure_details.message #=> String
|
1127
1163
|
# resp.backups[0].file_system.storage_capacity #=> Integer
|
1128
1164
|
# resp.backups[0].file_system.vpc_id #=> String
|
@@ -1137,6 +1173,12 @@ module Aws::FSx
|
|
1137
1173
|
# resp.backups[0].file_system.tags[0].key #=> String
|
1138
1174
|
# resp.backups[0].file_system.tags[0].value #=> String
|
1139
1175
|
# resp.backups[0].file_system.windows_configuration.active_directory_id #=> String
|
1176
|
+
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.domain_name #=> String
|
1177
|
+
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.organizational_unit_distinguished_name #=> String
|
1178
|
+
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.file_system_administrators_group #=> String
|
1179
|
+
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
1180
|
+
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
1181
|
+
# resp.backups[0].file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
1140
1182
|
# resp.backups[0].file_system.windows_configuration.throughput_capacity #=> Integer
|
1141
1183
|
# resp.backups[0].file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
1142
1184
|
# resp.backups[0].file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
@@ -1148,6 +1190,8 @@ module Aws::FSx
|
|
1148
1190
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
1149
1191
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.export_path #=> String
|
1150
1192
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.imported_file_chunk_size #=> Integer
|
1193
|
+
# resp.backups[0].directory_information.domain_name #=> String
|
1194
|
+
# resp.backups[0].directory_information.active_directory_id #=> String
|
1151
1195
|
# resp.next_token #=> String
|
1152
1196
|
#
|
1153
1197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeBackups AWS API Documentation
|
@@ -1266,7 +1310,7 @@ module Aws::FSx
|
|
1266
1310
|
# resp.file_systems[0].creation_time #=> Time
|
1267
1311
|
# resp.file_systems[0].file_system_id #=> String
|
1268
1312
|
# resp.file_systems[0].file_system_type #=> String, one of "WINDOWS", "LUSTRE"
|
1269
|
-
# resp.file_systems[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING"
|
1313
|
+
# resp.file_systems[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
1270
1314
|
# resp.file_systems[0].failure_details.message #=> String
|
1271
1315
|
# resp.file_systems[0].storage_capacity #=> Integer
|
1272
1316
|
# resp.file_systems[0].vpc_id #=> String
|
@@ -1281,6 +1325,12 @@ module Aws::FSx
|
|
1281
1325
|
# resp.file_systems[0].tags[0].key #=> String
|
1282
1326
|
# resp.file_systems[0].tags[0].value #=> String
|
1283
1327
|
# resp.file_systems[0].windows_configuration.active_directory_id #=> String
|
1328
|
+
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.domain_name #=> String
|
1329
|
+
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.organizational_unit_distinguished_name #=> String
|
1330
|
+
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.file_system_administrators_group #=> String
|
1331
|
+
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
1332
|
+
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
1333
|
+
# resp.file_systems[0].windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
1284
1334
|
# resp.file_systems[0].windows_configuration.throughput_capacity #=> Integer
|
1285
1335
|
# resp.file_systems[0].windows_configuration.maintenance_operations_in_progress #=> Array
|
1286
1336
|
# resp.file_systems[0].windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
@@ -1492,8 +1542,9 @@ module Aws::FSx
|
|
1492
1542
|
# not need to pass this option.**
|
1493
1543
|
#
|
1494
1544
|
# @option params [Types::UpdateFileSystemWindowsConfiguration] :windows_configuration
|
1495
|
-
# The configuration for this Microsoft Windows file system. The
|
1496
|
-
# supported options are for backup and maintenance
|
1545
|
+
# The configuration update for this Microsoft Windows file system. The
|
1546
|
+
# only supported options are for backup and maintenance and for
|
1547
|
+
# self-managed Active Directory configuration.
|
1497
1548
|
#
|
1498
1549
|
# @option params [Types::UpdateFileSystemLustreConfiguration] :lustre_configuration
|
1499
1550
|
# The configuration object for Amazon FSx for Lustre file systems used
|
@@ -1556,6 +1607,11 @@ module Aws::FSx
|
|
1556
1607
|
# weekly_maintenance_start_time: "WeeklyTime",
|
1557
1608
|
# daily_automatic_backup_start_time: "DailyTime",
|
1558
1609
|
# automatic_backup_retention_days: 1,
|
1610
|
+
# self_managed_active_directory_configuration: {
|
1611
|
+
# user_name: "DirectoryUserName",
|
1612
|
+
# password: "DirectoryPassword",
|
1613
|
+
# dns_ips: ["IpAddress"],
|
1614
|
+
# },
|
1559
1615
|
# },
|
1560
1616
|
# lustre_configuration: {
|
1561
1617
|
# weekly_maintenance_start_time: "WeeklyTime",
|
@@ -1568,7 +1624,7 @@ module Aws::FSx
|
|
1568
1624
|
# resp.file_system.creation_time #=> Time
|
1569
1625
|
# resp.file_system.file_system_id #=> String
|
1570
1626
|
# resp.file_system.file_system_type #=> String, one of "WINDOWS", "LUSTRE"
|
1571
|
-
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING"
|
1627
|
+
# resp.file_system.lifecycle #=> String, one of "AVAILABLE", "CREATING", "FAILED", "DELETING", "MISCONFIGURED", "UPDATING"
|
1572
1628
|
# resp.file_system.failure_details.message #=> String
|
1573
1629
|
# resp.file_system.storage_capacity #=> Integer
|
1574
1630
|
# resp.file_system.vpc_id #=> String
|
@@ -1583,6 +1639,12 @@ module Aws::FSx
|
|
1583
1639
|
# resp.file_system.tags[0].key #=> String
|
1584
1640
|
# resp.file_system.tags[0].value #=> String
|
1585
1641
|
# resp.file_system.windows_configuration.active_directory_id #=> String
|
1642
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.domain_name #=> String
|
1643
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.organizational_unit_distinguished_name #=> String
|
1644
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.file_system_administrators_group #=> String
|
1645
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.user_name #=> String
|
1646
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips #=> Array
|
1647
|
+
# resp.file_system.windows_configuration.self_managed_active_directory_configuration.dns_ips[0] #=> String
|
1586
1648
|
# resp.file_system.windows_configuration.throughput_capacity #=> Integer
|
1587
1649
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress #=> Array
|
1588
1650
|
# resp.file_system.windows_configuration.maintenance_operations_in_progress[0] #=> String, one of "PATCHING", "BACKING_UP"
|
@@ -1617,7 +1679,7 @@ module Aws::FSx
|
|
1617
1679
|
params: params,
|
1618
1680
|
config: config)
|
1619
1681
|
context[:gem_name] = 'aws-sdk-fsx'
|
1620
|
-
context[:gem_version] = '1.
|
1682
|
+
context[:gem_version] = '1.9.0'
|
1621
1683
|
Seahorse::Client::Request.new(handlers, context)
|
1622
1684
|
end
|
1623
1685
|
|
@@ -12,8 +12,10 @@ module Aws::FSx
|
|
12
12
|
include Seahorse::Model
|
13
13
|
|
14
14
|
AWSAccountId = Shapes::StringShape.new(name: 'AWSAccountId')
|
15
|
+
ActiveDirectoryBackupAttributes = Shapes::StructureShape.new(name: 'ActiveDirectoryBackupAttributes')
|
15
16
|
ActiveDirectoryError = Shapes::StructureShape.new(name: 'ActiveDirectoryError')
|
16
17
|
ActiveDirectoryErrorType = Shapes::StringShape.new(name: 'ActiveDirectoryErrorType')
|
18
|
+
ActiveDirectoryFullyQualifiedName = Shapes::StringShape.new(name: 'ActiveDirectoryFullyQualifiedName')
|
17
19
|
ArchivePath = Shapes::StringShape.new(name: 'ArchivePath')
|
18
20
|
AutomaticBackupRetentionDays = Shapes::IntegerShape.new(name: 'AutomaticBackupRetentionDays')
|
19
21
|
Backup = Shapes::StructureShape.new(name: 'Backup')
|
@@ -51,8 +53,12 @@ module Aws::FSx
|
|
51
53
|
DescribeFileSystemsRequest = Shapes::StructureShape.new(name: 'DescribeFileSystemsRequest')
|
52
54
|
DescribeFileSystemsResponse = Shapes::StructureShape.new(name: 'DescribeFileSystemsResponse')
|
53
55
|
DirectoryId = Shapes::StringShape.new(name: 'DirectoryId')
|
56
|
+
DirectoryPassword = Shapes::StringShape.new(name: 'DirectoryPassword')
|
57
|
+
DirectoryUserName = Shapes::StringShape.new(name: 'DirectoryUserName')
|
58
|
+
DnsIps = Shapes::ListShape.new(name: 'DnsIps')
|
54
59
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
55
60
|
FileSystem = Shapes::StructureShape.new(name: 'FileSystem')
|
61
|
+
FileSystemAdministratorsGroupName = Shapes::StringShape.new(name: 'FileSystemAdministratorsGroupName')
|
56
62
|
FileSystemFailureDetails = Shapes::StructureShape.new(name: 'FileSystemFailureDetails')
|
57
63
|
FileSystemId = Shapes::StringShape.new(name: 'FileSystemId')
|
58
64
|
FileSystemIds = Shapes::ListShape.new(name: 'FileSystemIds')
|
@@ -73,6 +79,7 @@ module Aws::FSx
|
|
73
79
|
InvalidExportPath = Shapes::StructureShape.new(name: 'InvalidExportPath')
|
74
80
|
InvalidImportPath = Shapes::StructureShape.new(name: 'InvalidImportPath')
|
75
81
|
InvalidNetworkSettings = Shapes::StructureShape.new(name: 'InvalidNetworkSettings')
|
82
|
+
IpAddress = Shapes::StringShape.new(name: 'IpAddress')
|
76
83
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
77
84
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
78
85
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
@@ -85,6 +92,7 @@ module Aws::FSx
|
|
85
92
|
NetworkInterfaceIds = Shapes::ListShape.new(name: 'NetworkInterfaceIds')
|
86
93
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
87
94
|
NotServiceResourceError = Shapes::StructureShape.new(name: 'NotServiceResourceError')
|
95
|
+
OrganizationalUnitDistinguishedName = Shapes::StringShape.new(name: 'OrganizationalUnitDistinguishedName')
|
88
96
|
Parameter = Shapes::StringShape.new(name: 'Parameter')
|
89
97
|
ProgressPercent = Shapes::IntegerShape.new(name: 'ProgressPercent')
|
90
98
|
ResourceARN = Shapes::StringShape.new(name: 'ResourceARN')
|
@@ -92,6 +100,9 @@ module Aws::FSx
|
|
92
100
|
ResourceNotFound = Shapes::StructureShape.new(name: 'ResourceNotFound')
|
93
101
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
94
102
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
103
|
+
SelfManagedActiveDirectoryAttributes = Shapes::StructureShape.new(name: 'SelfManagedActiveDirectoryAttributes')
|
104
|
+
SelfManagedActiveDirectoryConfiguration = Shapes::StructureShape.new(name: 'SelfManagedActiveDirectoryConfiguration')
|
105
|
+
SelfManagedActiveDirectoryConfigurationUpdates = Shapes::StructureShape.new(name: 'SelfManagedActiveDirectoryConfigurationUpdates')
|
95
106
|
ServiceLimit = Shapes::StringShape.new(name: 'ServiceLimit')
|
96
107
|
ServiceLimitExceeded = Shapes::StructureShape.new(name: 'ServiceLimitExceeded')
|
97
108
|
StorageCapacity = Shapes::IntegerShape.new(name: 'StorageCapacity')
|
@@ -104,6 +115,7 @@ module Aws::FSx
|
|
104
115
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
105
116
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
106
117
|
Tags = Shapes::ListShape.new(name: 'Tags')
|
118
|
+
UnsupportedOperation = Shapes::StructureShape.new(name: 'UnsupportedOperation')
|
107
119
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
108
120
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
109
121
|
UpdateFileSystemLustreConfiguration = Shapes::StructureShape.new(name: 'UpdateFileSystemLustreConfiguration')
|
@@ -114,6 +126,10 @@ module Aws::FSx
|
|
114
126
|
WeeklyTime = Shapes::StringShape.new(name: 'WeeklyTime')
|
115
127
|
WindowsFileSystemConfiguration = Shapes::StructureShape.new(name: 'WindowsFileSystemConfiguration')
|
116
128
|
|
129
|
+
ActiveDirectoryBackupAttributes.add_member(:domain_name, Shapes::ShapeRef.new(shape: ActiveDirectoryFullyQualifiedName, location_name: "DomainName"))
|
130
|
+
ActiveDirectoryBackupAttributes.add_member(:active_directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "ActiveDirectoryId"))
|
131
|
+
ActiveDirectoryBackupAttributes.struct_class = Types::ActiveDirectoryBackupAttributes
|
132
|
+
|
117
133
|
ActiveDirectoryError.add_member(:active_directory_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "ActiveDirectoryId"))
|
118
134
|
ActiveDirectoryError.add_member(:type, Shapes::ShapeRef.new(shape: ActiveDirectoryErrorType, location_name: "Type"))
|
119
135
|
ActiveDirectoryError.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -129,6 +145,7 @@ module Aws::FSx
|
|
129
145
|
Backup.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, location_name: "ResourceARN"))
|
130
146
|
Backup.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
131
147
|
Backup.add_member(:file_system, Shapes::ShapeRef.new(shape: FileSystem, required: true, location_name: "FileSystem"))
|
148
|
+
Backup.add_member(:directory_information, Shapes::ShapeRef.new(shape: ActiveDirectoryBackupAttributes, location_name: "DirectoryInformation"))
|
132
149
|
Backup.struct_class = Types::Backup
|
133
150
|
|
134
151
|
BackupFailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -191,6 +208,7 @@ module Aws::FSx
|
|
191
208
|
CreateFileSystemResponse.struct_class = Types::CreateFileSystemResponse
|
192
209
|
|
193
210
|
CreateFileSystemWindowsConfiguration.add_member(:active_directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "ActiveDirectoryId"))
|
211
|
+
CreateFileSystemWindowsConfiguration.add_member(:self_managed_active_directory_configuration, Shapes::ShapeRef.new(shape: SelfManagedActiveDirectoryConfiguration, location_name: "SelfManagedActiveDirectoryConfiguration"))
|
194
212
|
CreateFileSystemWindowsConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: MegabytesPerSecond, required: true, location_name: "ThroughputCapacity"))
|
195
213
|
CreateFileSystemWindowsConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
196
214
|
CreateFileSystemWindowsConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
@@ -248,6 +266,8 @@ module Aws::FSx
|
|
248
266
|
DescribeFileSystemsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
249
267
|
DescribeFileSystemsResponse.struct_class = Types::DescribeFileSystemsResponse
|
250
268
|
|
269
|
+
DnsIps.member = Shapes::ShapeRef.new(shape: IpAddress)
|
270
|
+
|
251
271
|
FileSystem.add_member(:owner_id, Shapes::ShapeRef.new(shape: AWSAccountId, location_name: "OwnerId"))
|
252
272
|
FileSystem.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, location_name: "CreationTime"))
|
253
273
|
FileSystem.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "FileSystemId"))
|
@@ -336,6 +356,26 @@ module Aws::FSx
|
|
336
356
|
|
337
357
|
SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
338
358
|
|
359
|
+
SelfManagedActiveDirectoryAttributes.add_member(:domain_name, Shapes::ShapeRef.new(shape: ActiveDirectoryFullyQualifiedName, location_name: "DomainName"))
|
360
|
+
SelfManagedActiveDirectoryAttributes.add_member(:organizational_unit_distinguished_name, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedName, location_name: "OrganizationalUnitDistinguishedName"))
|
361
|
+
SelfManagedActiveDirectoryAttributes.add_member(:file_system_administrators_group, Shapes::ShapeRef.new(shape: FileSystemAdministratorsGroupName, location_name: "FileSystemAdministratorsGroup"))
|
362
|
+
SelfManagedActiveDirectoryAttributes.add_member(:user_name, Shapes::ShapeRef.new(shape: DirectoryUserName, location_name: "UserName"))
|
363
|
+
SelfManagedActiveDirectoryAttributes.add_member(:dns_ips, Shapes::ShapeRef.new(shape: DnsIps, location_name: "DnsIps"))
|
364
|
+
SelfManagedActiveDirectoryAttributes.struct_class = Types::SelfManagedActiveDirectoryAttributes
|
365
|
+
|
366
|
+
SelfManagedActiveDirectoryConfiguration.add_member(:domain_name, Shapes::ShapeRef.new(shape: ActiveDirectoryFullyQualifiedName, required: true, location_name: "DomainName"))
|
367
|
+
SelfManagedActiveDirectoryConfiguration.add_member(:organizational_unit_distinguished_name, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedName, location_name: "OrganizationalUnitDistinguishedName"))
|
368
|
+
SelfManagedActiveDirectoryConfiguration.add_member(:file_system_administrators_group, Shapes::ShapeRef.new(shape: FileSystemAdministratorsGroupName, location_name: "FileSystemAdministratorsGroup"))
|
369
|
+
SelfManagedActiveDirectoryConfiguration.add_member(:user_name, Shapes::ShapeRef.new(shape: DirectoryUserName, required: true, location_name: "UserName"))
|
370
|
+
SelfManagedActiveDirectoryConfiguration.add_member(:password, Shapes::ShapeRef.new(shape: DirectoryPassword, required: true, location_name: "Password"))
|
371
|
+
SelfManagedActiveDirectoryConfiguration.add_member(:dns_ips, Shapes::ShapeRef.new(shape: DnsIps, required: true, location_name: "DnsIps"))
|
372
|
+
SelfManagedActiveDirectoryConfiguration.struct_class = Types::SelfManagedActiveDirectoryConfiguration
|
373
|
+
|
374
|
+
SelfManagedActiveDirectoryConfigurationUpdates.add_member(:user_name, Shapes::ShapeRef.new(shape: DirectoryUserName, location_name: "UserName"))
|
375
|
+
SelfManagedActiveDirectoryConfigurationUpdates.add_member(:password, Shapes::ShapeRef.new(shape: DirectoryPassword, location_name: "Password"))
|
376
|
+
SelfManagedActiveDirectoryConfigurationUpdates.add_member(:dns_ips, Shapes::ShapeRef.new(shape: DnsIps, location_name: "DnsIps"))
|
377
|
+
SelfManagedActiveDirectoryConfigurationUpdates.struct_class = Types::SelfManagedActiveDirectoryConfigurationUpdates
|
378
|
+
|
339
379
|
ServiceLimitExceeded.add_member(:limit, Shapes::ShapeRef.new(shape: ServiceLimit, required: true, location_name: "Limit"))
|
340
380
|
ServiceLimitExceeded.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
341
381
|
ServiceLimitExceeded.struct_class = Types::ServiceLimitExceeded
|
@@ -356,6 +396,9 @@ module Aws::FSx
|
|
356
396
|
|
357
397
|
Tags.member = Shapes::ShapeRef.new(shape: Tag)
|
358
398
|
|
399
|
+
UnsupportedOperation.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
400
|
+
UnsupportedOperation.struct_class = Types::UnsupportedOperation
|
401
|
+
|
359
402
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceARN, required: true, location_name: "ResourceARN"))
|
360
403
|
UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeys, required: true, location_name: "TagKeys"))
|
361
404
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
@@ -377,9 +420,11 @@ module Aws::FSx
|
|
377
420
|
UpdateFileSystemWindowsConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
378
421
|
UpdateFileSystemWindowsConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
379
422
|
UpdateFileSystemWindowsConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
423
|
+
UpdateFileSystemWindowsConfiguration.add_member(:self_managed_active_directory_configuration, Shapes::ShapeRef.new(shape: SelfManagedActiveDirectoryConfigurationUpdates, location_name: "SelfManagedActiveDirectoryConfiguration"))
|
380
424
|
UpdateFileSystemWindowsConfiguration.struct_class = Types::UpdateFileSystemWindowsConfiguration
|
381
425
|
|
382
426
|
WindowsFileSystemConfiguration.add_member(:active_directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "ActiveDirectoryId"))
|
427
|
+
WindowsFileSystemConfiguration.add_member(:self_managed_active_directory_configuration, Shapes::ShapeRef.new(shape: SelfManagedActiveDirectoryAttributes, location_name: "SelfManagedActiveDirectoryConfiguration"))
|
383
428
|
WindowsFileSystemConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: MegabytesPerSecond, location_name: "ThroughputCapacity"))
|
384
429
|
WindowsFileSystemConfiguration.add_member(:maintenance_operations_in_progress, Shapes::ShapeRef.new(shape: FileSystemMaintenanceOperations, location_name: "MaintenanceOperationsInProgress"))
|
385
430
|
WindowsFileSystemConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
@@ -413,6 +458,7 @@ module Aws::FSx
|
|
413
458
|
o.input = Shapes::ShapeRef.new(shape: CreateBackupRequest)
|
414
459
|
o.output = Shapes::ShapeRef.new(shape: CreateBackupResponse)
|
415
460
|
o.errors << Shapes::ShapeRef.new(shape: BadRequest)
|
461
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperation)
|
416
462
|
o.errors << Shapes::ShapeRef.new(shape: FileSystemNotFound)
|
417
463
|
o.errors << Shapes::ShapeRef.new(shape: BackupInProgress)
|
418
464
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleParameterError)
|
@@ -561,6 +607,7 @@ module Aws::FSx
|
|
561
607
|
o.input = Shapes::ShapeRef.new(shape: UpdateFileSystemRequest)
|
562
608
|
o.output = Shapes::ShapeRef.new(shape: UpdateFileSystemResponse)
|
563
609
|
o.errors << Shapes::ShapeRef.new(shape: BadRequest)
|
610
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperation)
|
564
611
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleParameterError)
|
565
612
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
566
613
|
o.errors << Shapes::ShapeRef.new(shape: FileSystemNotFound)
|
data/lib/aws-sdk-fsx/errors.rb
CHANGED
@@ -316,5 +316,21 @@ module Aws::FSx
|
|
316
316
|
|
317
317
|
end
|
318
318
|
|
319
|
+
class UnsupportedOperation < ServiceError
|
320
|
+
|
321
|
+
# @param [Seahorse::Client::RequestContext] context
|
322
|
+
# @param [String] message
|
323
|
+
# @param [Aws::FSx::Types::UnsupportedOperation] data
|
324
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
325
|
+
super(context, message, data)
|
326
|
+
end
|
327
|
+
|
328
|
+
# @return [String]
|
329
|
+
def message
|
330
|
+
@message || @data[:message]
|
331
|
+
end
|
332
|
+
|
333
|
+
end
|
334
|
+
|
319
335
|
end
|
320
336
|
end
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -8,6 +8,26 @@
|
|
8
8
|
module Aws::FSx
|
9
9
|
module Types
|
10
10
|
|
11
|
+
# The Microsoft AD attributes of the Amazon FSx for Windows File Server
|
12
|
+
# file system.
|
13
|
+
#
|
14
|
+
# @!attribute [rw] domain_name
|
15
|
+
# The fully qualified domain name of the self-managed AD directory.
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @!attribute [rw] active_directory_id
|
19
|
+
# The ID of the AWS Managed Microsoft Active Directory instance to
|
20
|
+
# which the file system is joined.
|
21
|
+
# @return [String]
|
22
|
+
#
|
23
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/ActiveDirectoryBackupAttributes AWS API Documentation
|
24
|
+
#
|
25
|
+
class ActiveDirectoryBackupAttributes < Struct.new(
|
26
|
+
:domain_name,
|
27
|
+
:active_directory_id)
|
28
|
+
include Aws::Structure
|
29
|
+
end
|
30
|
+
|
11
31
|
# An Active Directory error.
|
12
32
|
#
|
13
33
|
# @!attribute [rw] active_directory_id
|
@@ -76,6 +96,11 @@ module Aws::FSx
|
|
76
96
|
# metadata is persisted even if the file system is deleted.
|
77
97
|
# @return [Types::FileSystem]
|
78
98
|
#
|
99
|
+
# @!attribute [rw] directory_information
|
100
|
+
# The configuration of the self-managed Microsoft Active Directory
|
101
|
+
# (AD) to which the Windows File Server instance is joined.
|
102
|
+
# @return [Types::ActiveDirectoryBackupAttributes]
|
103
|
+
#
|
79
104
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/Backup AWS API Documentation
|
80
105
|
#
|
81
106
|
class Backup < Struct.new(
|
@@ -88,7 +113,8 @@ module Aws::FSx
|
|
88
113
|
:kms_key_id,
|
89
114
|
:resource_arn,
|
90
115
|
:tags,
|
91
|
-
:file_system
|
116
|
+
:file_system,
|
117
|
+
:directory_information)
|
92
118
|
include Aws::Structure
|
93
119
|
end
|
94
120
|
|
@@ -240,6 +266,14 @@ module Aws::FSx
|
|
240
266
|
# ],
|
241
267
|
# windows_configuration: {
|
242
268
|
# active_directory_id: "DirectoryId",
|
269
|
+
# self_managed_active_directory_configuration: {
|
270
|
+
# domain_name: "ActiveDirectoryFullyQualifiedName", # required
|
271
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
272
|
+
# file_system_administrators_group: "FileSystemAdministratorsGroupName",
|
273
|
+
# user_name: "DirectoryUserName", # required
|
274
|
+
# password: "DirectoryPassword", # required
|
275
|
+
# dns_ips: ["IpAddress"], # required
|
276
|
+
# },
|
243
277
|
# throughput_capacity: 1, # required
|
244
278
|
# weekly_maintenance_start_time: "WeeklyTime",
|
245
279
|
# daily_automatic_backup_start_time: "DailyTime",
|
@@ -249,7 +283,8 @@ module Aws::FSx
|
|
249
283
|
# }
|
250
284
|
#
|
251
285
|
# @!attribute [rw] backup_id
|
252
|
-
# The ID of the backup.
|
286
|
+
# The ID of the backup. Specifies the backup to use if you're
|
287
|
+
# creating a file system from an existing backup.
|
253
288
|
# @return [String]
|
254
289
|
#
|
255
290
|
# @!attribute [rw] client_request_token
|
@@ -310,8 +345,8 @@ module Aws::FSx
|
|
310
345
|
include Aws::Structure
|
311
346
|
end
|
312
347
|
|
313
|
-
# The configuration
|
314
|
-
# `
|
348
|
+
# The Lustre configuration for the file system being created. This value
|
349
|
+
# is required if `FileSystemType` is set to `LUSTRE`.
|
315
350
|
#
|
316
351
|
# @note When making an API call, you may pass CreateFileSystemLustreConfiguration
|
317
352
|
# data as a hash:
|
@@ -382,7 +417,7 @@ module Aws::FSx
|
|
382
417
|
include Aws::Structure
|
383
418
|
end
|
384
419
|
|
385
|
-
# The request object
|
420
|
+
# The request object used to create a new Amazon FSx file system.
|
386
421
|
#
|
387
422
|
# @note When making an API call, you may pass CreateFileSystemRequest
|
388
423
|
# data as a hash:
|
@@ -402,6 +437,14 @@ module Aws::FSx
|
|
402
437
|
# kms_key_id: "KmsKeyId",
|
403
438
|
# windows_configuration: {
|
404
439
|
# active_directory_id: "DirectoryId",
|
440
|
+
# self_managed_active_directory_configuration: {
|
441
|
+
# domain_name: "ActiveDirectoryFullyQualifiedName", # required
|
442
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
443
|
+
# file_system_administrators_group: "FileSystemAdministratorsGroupName",
|
444
|
+
# user_name: "DirectoryUserName", # required
|
445
|
+
# password: "DirectoryPassword", # required
|
446
|
+
# dns_ips: ["IpAddress"], # required
|
447
|
+
# },
|
405
448
|
# throughput_capacity: 1, # required
|
406
449
|
# weekly_maintenance_start_time: "WeeklyTime",
|
407
450
|
# daily_automatic_backup_start_time: "DailyTime",
|
@@ -427,11 +470,11 @@ module Aws::FSx
|
|
427
470
|
# @return [String]
|
428
471
|
#
|
429
472
|
# @!attribute [rw] file_system_type
|
430
|
-
# The type of file system.
|
473
|
+
# The type of Amazon FSx file system to create.
|
431
474
|
# @return [String]
|
432
475
|
#
|
433
476
|
# @!attribute [rw] storage_capacity
|
434
|
-
# The storage capacity of the file system.
|
477
|
+
# The storage capacity of the file system being created.
|
435
478
|
#
|
436
479
|
# For Windows file systems, the storage capacity has a minimum of 300
|
437
480
|
# GiB, and a maximum of 65,536 GiB.
|
@@ -441,22 +484,20 @@ module Aws::FSx
|
|
441
484
|
# @return [Integer]
|
442
485
|
#
|
443
486
|
# @!attribute [rw] subnet_ids
|
444
|
-
#
|
445
|
-
#
|
446
|
-
#
|
487
|
+
# The IDs of the subnets that the file system will be accessible from.
|
488
|
+
# File systems support only one subnet. The file server is also
|
489
|
+
# launched in that subnet's Availability Zone.
|
447
490
|
# @return [Array<String>]
|
448
491
|
#
|
449
492
|
# @!attribute [rw] security_group_ids
|
450
|
-
# A list of IDs
|
451
|
-
#
|
452
|
-
#
|
453
|
-
# returned in later describe requests.
|
493
|
+
# A list of IDs specifying the security groups to apply to all network
|
494
|
+
# interfaces created for file system access. This list isn't returned
|
495
|
+
# in later requests to describe the file system.
|
454
496
|
# @return [Array<String>]
|
455
497
|
#
|
456
498
|
# @!attribute [rw] tags
|
457
|
-
# The tags to
|
458
|
-
#
|
459
|
-
# system name.
|
499
|
+
# The tags to apply to the file system being created. The key value of
|
500
|
+
# the `Name` tag appears in the console as the file system name.
|
460
501
|
# @return [Array<Types::Tag>]
|
461
502
|
#
|
462
503
|
# @!attribute [rw] kms_key_id
|
@@ -471,12 +512,14 @@ module Aws::FSx
|
|
471
512
|
# @return [String]
|
472
513
|
#
|
473
514
|
# @!attribute [rw] windows_configuration
|
474
|
-
# The configuration for
|
515
|
+
# The Microsoft Windows configuration for the file system being
|
516
|
+
# created. This value is required if `FileSystemType` is set to
|
517
|
+
# `WINDOWS`.
|
475
518
|
# @return [Types::CreateFileSystemWindowsConfiguration]
|
476
519
|
#
|
477
520
|
# @!attribute [rw] lustre_configuration
|
478
|
-
# The configuration
|
479
|
-
# `
|
521
|
+
# The Lustre configuration for the file system being created. This
|
522
|
+
# value is required if `FileSystemType` is set to `LUSTRE`.
|
480
523
|
# @return [Types::CreateFileSystemLustreConfiguration]
|
481
524
|
#
|
482
525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemRequest AWS API Documentation
|
@@ -494,10 +537,10 @@ module Aws::FSx
|
|
494
537
|
include Aws::Structure
|
495
538
|
end
|
496
539
|
|
497
|
-
# The response object
|
540
|
+
# The response object returned after the file system is created.
|
498
541
|
#
|
499
542
|
# @!attribute [rw] file_system
|
500
|
-
#
|
543
|
+
# The configuration of the file system that was created.
|
501
544
|
# @return [Types::FileSystem]
|
502
545
|
#
|
503
546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemResponse AWS API Documentation
|
@@ -515,6 +558,14 @@ module Aws::FSx
|
|
515
558
|
#
|
516
559
|
# {
|
517
560
|
# active_directory_id: "DirectoryId",
|
561
|
+
# self_managed_active_directory_configuration: {
|
562
|
+
# domain_name: "ActiveDirectoryFullyQualifiedName", # required
|
563
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
564
|
+
# file_system_administrators_group: "FileSystemAdministratorsGroupName",
|
565
|
+
# user_name: "DirectoryUserName", # required
|
566
|
+
# password: "DirectoryPassword", # required
|
567
|
+
# dns_ips: ["IpAddress"], # required
|
568
|
+
# },
|
518
569
|
# throughput_capacity: 1, # required
|
519
570
|
# weekly_maintenance_start_time: "WeeklyTime",
|
520
571
|
# daily_automatic_backup_start_time: "DailyTime",
|
@@ -523,23 +574,30 @@ module Aws::FSx
|
|
523
574
|
# }
|
524
575
|
#
|
525
576
|
# @!attribute [rw] active_directory_id
|
526
|
-
# The ID for an existing Microsoft Active Directory
|
527
|
-
# file system should join when it's created.
|
577
|
+
# The ID for an existing AWS Managed Microsoft Active Directory (AD)
|
578
|
+
# instance that the file system should join when it's created.
|
528
579
|
# @return [String]
|
529
580
|
#
|
581
|
+
# @!attribute [rw] self_managed_active_directory_configuration
|
582
|
+
# The configuration that Amazon FSx uses to join the Windows File
|
583
|
+
# Server instance to your self-managed (including on-premises)
|
584
|
+
# Microsoft Active Directory (AD) directory.
|
585
|
+
# @return [Types::SelfManagedActiveDirectoryConfiguration]
|
586
|
+
#
|
530
587
|
# @!attribute [rw] throughput_capacity
|
531
588
|
# The throughput of an Amazon FSx file system, measured in megabytes
|
532
|
-
# per second
|
589
|
+
# per second, in 2 to the *n*th increments, between 2^3 (8) and 2^11
|
590
|
+
# (2048).
|
533
591
|
# @return [Integer]
|
534
592
|
#
|
535
593
|
# @!attribute [rw] weekly_maintenance_start_time
|
536
|
-
# The preferred start time to perform weekly maintenance,
|
537
|
-
# time zone.
|
594
|
+
# The preferred start time to perform weekly maintenance, formatted
|
595
|
+
# d:HH:MM in the UTC time zone.
|
538
596
|
# @return [String]
|
539
597
|
#
|
540
598
|
# @!attribute [rw] daily_automatic_backup_start_time
|
541
|
-
# The preferred time to take daily automatic backups,
|
542
|
-
# zone.
|
599
|
+
# The preferred time to take daily automatic backups, formatted HH:MM
|
600
|
+
# in the UTC time zone.
|
543
601
|
# @return [String]
|
544
602
|
#
|
545
603
|
# @!attribute [rw] automatic_backup_retention_days
|
@@ -550,18 +608,19 @@ module Aws::FSx
|
|
550
608
|
# @return [Integer]
|
551
609
|
#
|
552
610
|
# @!attribute [rw] copy_tags_to_backups
|
553
|
-
# A boolean flag indicating whether tags
|
611
|
+
# A boolean flag indicating whether tags for the file system should be
|
554
612
|
# copied to backups. This value defaults to false. If it's set to
|
555
|
-
# true, all tags
|
556
|
-
#
|
557
|
-
#
|
558
|
-
# tags
|
613
|
+
# true, all tags for the file system are copied to all automatic and
|
614
|
+
# user-initiated backups where the user doesn't specify tags. If this
|
615
|
+
# value is true, and you specify one or more tags, only the specified
|
616
|
+
# tags are copied to backups.
|
559
617
|
# @return [Boolean]
|
560
618
|
#
|
561
619
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemWindowsConfiguration AWS API Documentation
|
562
620
|
#
|
563
621
|
class CreateFileSystemWindowsConfiguration < Struct.new(
|
564
622
|
:active_directory_id,
|
623
|
+
:self_managed_active_directory_configuration,
|
565
624
|
:throughput_capacity,
|
566
625
|
:weekly_maintenance_start_time,
|
567
626
|
:daily_automatic_backup_start_time,
|
@@ -917,8 +976,8 @@ module Aws::FSx
|
|
917
976
|
#
|
918
977
|
# @!attribute [rw] owner_id
|
919
978
|
# The AWS account that created the file system. If the file system was
|
920
|
-
# created by an
|
921
|
-
# belongs is the owner.
|
979
|
+
# created by an AWS Identity and Access Management (IAM) user, the AWS
|
980
|
+
# account to which the IAM user belongs is the owner.
|
922
981
|
# @return [String]
|
923
982
|
#
|
924
983
|
# @!attribute [rw] creation_time
|
@@ -927,25 +986,42 @@ module Aws::FSx
|
|
927
986
|
# @return [Time]
|
928
987
|
#
|
929
988
|
# @!attribute [rw] file_system_id
|
930
|
-
# The
|
931
|
-
# assigned by Amazon FSx.
|
989
|
+
# The system-generated, unique 17-digit ID of the file system.
|
932
990
|
# @return [String]
|
933
991
|
#
|
934
992
|
# @!attribute [rw] file_system_type
|
935
|
-
#
|
993
|
+
# The type of Amazon FSx file system, either `LUSTRE` or `WINDOWS`.
|
936
994
|
# @return [String]
|
937
995
|
#
|
938
996
|
# @!attribute [rw] lifecycle
|
939
|
-
# The lifecycle status of the file system
|
997
|
+
# The lifecycle status of the file system:
|
998
|
+
#
|
999
|
+
# * `AVAILABLE` indicates that the file system is reachable and
|
1000
|
+
# available for use.
|
1001
|
+
#
|
1002
|
+
# * `CREATING` indicates that Amazon FSx is in the process of creating
|
1003
|
+
# the new file system.
|
1004
|
+
#
|
1005
|
+
# * `DELETING` indicates that Amazon FSx is in the process of deleting
|
1006
|
+
# the file system.
|
1007
|
+
#
|
1008
|
+
# * `FAILED` indicates that Amazon FSx was not able to create the file
|
1009
|
+
# system.
|
1010
|
+
#
|
1011
|
+
# * `MISCONFIGURED` indicates that the file system is in a failed but
|
1012
|
+
# recoverable state.
|
1013
|
+
#
|
1014
|
+
# * `UPDATING` indicates that the file system is undergoing a customer
|
1015
|
+
# initiated update.
|
940
1016
|
# @return [String]
|
941
1017
|
#
|
942
1018
|
# @!attribute [rw] failure_details
|
943
|
-
#
|
944
|
-
# the file system has failed.
|
1019
|
+
# A structure providing details of any failures that occur when
|
1020
|
+
# creating the file system has failed.
|
945
1021
|
# @return [Types::FileSystemFailureDetails]
|
946
1022
|
#
|
947
1023
|
# @!attribute [rw] storage_capacity
|
948
|
-
# The storage capacity of the file system in gigabytes.
|
1024
|
+
# The storage capacity of the file system in gigabytes (GB).
|
949
1025
|
# @return [Integer]
|
950
1026
|
#
|
951
1027
|
# @!attribute [rw] vpc_id
|
@@ -953,7 +1029,7 @@ module Aws::FSx
|
|
953
1029
|
# @return [String]
|
954
1030
|
#
|
955
1031
|
# @!attribute [rw] subnet_ids
|
956
|
-
# The
|
1032
|
+
# The ID of the subnet to contain the endpoint for the file system.
|
957
1033
|
# One and only one is supported. The file system is launched in the
|
958
1034
|
# Availability Zone associated with this subnet.
|
959
1035
|
# @return [Array<String>]
|
@@ -966,7 +1042,7 @@ module Aws::FSx
|
|
966
1042
|
# *Amazon EC2 User Guide.*
|
967
1043
|
#
|
968
1044
|
# For an Amazon FSx for Windows File Server file system, you can have
|
969
|
-
# one network interface
|
1045
|
+
# one network interface ID. For an Amazon FSx for Lustre file system,
|
970
1046
|
# you can have more than one.
|
971
1047
|
#
|
972
1048
|
#
|
@@ -985,7 +1061,7 @@ module Aws::FSx
|
|
985
1061
|
# @return [String]
|
986
1062
|
#
|
987
1063
|
# @!attribute [rw] resource_arn
|
988
|
-
# The
|
1064
|
+
# The Amazon Resource Name (ARN) for the file system resource.
|
989
1065
|
# @return [String]
|
990
1066
|
#
|
991
1067
|
# @!attribute [rw] tags
|
@@ -1028,11 +1104,11 @@ module Aws::FSx
|
|
1028
1104
|
include Aws::Structure
|
1029
1105
|
end
|
1030
1106
|
|
1031
|
-
#
|
1107
|
+
# A structure providing details of any failures that occur when creating
|
1032
1108
|
# the file system has failed.
|
1033
1109
|
#
|
1034
1110
|
# @!attribute [rw] message
|
1035
|
-
#
|
1111
|
+
# A message describing any failures that occurred during file system
|
1036
1112
|
# creation.
|
1037
1113
|
# @return [String]
|
1038
1114
|
#
|
@@ -1334,6 +1410,176 @@ module Aws::FSx
|
|
1334
1410
|
include Aws::Structure
|
1335
1411
|
end
|
1336
1412
|
|
1413
|
+
# The configuration of the self-managed Microsoft Active Directory (AD)
|
1414
|
+
# directory to which the Windows File Server instance is joined.
|
1415
|
+
#
|
1416
|
+
# @!attribute [rw] domain_name
|
1417
|
+
# The fully qualified domain name of the self-managed AD directory.
|
1418
|
+
# @return [String]
|
1419
|
+
#
|
1420
|
+
# @!attribute [rw] organizational_unit_distinguished_name
|
1421
|
+
# The fully qualified distinguished name of the organizational unit
|
1422
|
+
# within the self-managed AD directory to which the Windows File
|
1423
|
+
# Server instance is joined.
|
1424
|
+
# @return [String]
|
1425
|
+
#
|
1426
|
+
# @!attribute [rw] file_system_administrators_group
|
1427
|
+
# The name of the domain group whose members have administrative
|
1428
|
+
# privileges for the FSx file system.
|
1429
|
+
# @return [String]
|
1430
|
+
#
|
1431
|
+
# @!attribute [rw] user_name
|
1432
|
+
# The user name for the service account on your self-managed AD domain
|
1433
|
+
# that FSx uses to join to your AD domain.
|
1434
|
+
# @return [String]
|
1435
|
+
#
|
1436
|
+
# @!attribute [rw] dns_ips
|
1437
|
+
# A list of up to two IP addresses of DNS servers or domain
|
1438
|
+
# controllers in the self-managed AD directory.
|
1439
|
+
# @return [Array<String>]
|
1440
|
+
#
|
1441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/SelfManagedActiveDirectoryAttributes AWS API Documentation
|
1442
|
+
#
|
1443
|
+
class SelfManagedActiveDirectoryAttributes < Struct.new(
|
1444
|
+
:domain_name,
|
1445
|
+
:organizational_unit_distinguished_name,
|
1446
|
+
:file_system_administrators_group,
|
1447
|
+
:user_name,
|
1448
|
+
:dns_ips)
|
1449
|
+
include Aws::Structure
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
# The configuration that Amazon FSx uses to join the Windows File Server
|
1453
|
+
# instance to your self-managed (including on-premises) Microsoft Active
|
1454
|
+
# Directory (AD) directory.
|
1455
|
+
#
|
1456
|
+
# @note When making an API call, you may pass SelfManagedActiveDirectoryConfiguration
|
1457
|
+
# data as a hash:
|
1458
|
+
#
|
1459
|
+
# {
|
1460
|
+
# domain_name: "ActiveDirectoryFullyQualifiedName", # required
|
1461
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
1462
|
+
# file_system_administrators_group: "FileSystemAdministratorsGroupName",
|
1463
|
+
# user_name: "DirectoryUserName", # required
|
1464
|
+
# password: "DirectoryPassword", # required
|
1465
|
+
# dns_ips: ["IpAddress"], # required
|
1466
|
+
# }
|
1467
|
+
#
|
1468
|
+
# @!attribute [rw] domain_name
|
1469
|
+
# The fully qualified domain name of the self-managed AD directory,
|
1470
|
+
# such as `corp.example.com`.
|
1471
|
+
# @return [String]
|
1472
|
+
#
|
1473
|
+
# @!attribute [rw] organizational_unit_distinguished_name
|
1474
|
+
# (Optional) The fully qualified distinguished name of the
|
1475
|
+
# organizational unit within your self-managed AD directory that the
|
1476
|
+
# Windows File Server instance will join. Amazon FSx only accepts OU
|
1477
|
+
# as the direct parent of the file system. An example is
|
1478
|
+
# `OU=FSx,DC=yourdomain,DC=corp,DC=com`. To learn more, see [RFC
|
1479
|
+
# 2253][1]. If none is provided, the FSx file system is created in the
|
1480
|
+
# default location of your self-managed AD directory.
|
1481
|
+
#
|
1482
|
+
# Only Organizational Unit (OU) objects can be the direct parent of
|
1483
|
+
# the file system that you're creating.
|
1484
|
+
#
|
1485
|
+
#
|
1486
|
+
#
|
1487
|
+
# [1]: https://tools.ietf.org/html/rfc2253
|
1488
|
+
# @return [String]
|
1489
|
+
#
|
1490
|
+
# @!attribute [rw] file_system_administrators_group
|
1491
|
+
# (Optional) The name of the domain group whose members are granted
|
1492
|
+
# administrative privileges for the file system. Administrative
|
1493
|
+
# privileges include taking ownership of files and folders, and
|
1494
|
+
# setting audit controls (audit ACLs) on files and folders. The group
|
1495
|
+
# that you specify must already exist in your domain. If you don't
|
1496
|
+
# provide one, your AD domain's Domain Admins group is used.
|
1497
|
+
# @return [String]
|
1498
|
+
#
|
1499
|
+
# @!attribute [rw] user_name
|
1500
|
+
# The user name for the service account on your self-managed AD domain
|
1501
|
+
# that Amazon FSx will use to join to your AD domain. This account
|
1502
|
+
# must have the permission to join computers to the domain in the
|
1503
|
+
# organizational unit provided in
|
1504
|
+
# `OrganizationalUnitDistinguishedName`, or in the default location of
|
1505
|
+
# your AD domain.
|
1506
|
+
# @return [String]
|
1507
|
+
#
|
1508
|
+
# @!attribute [rw] password
|
1509
|
+
# The password for the service account on your self-managed AD domain
|
1510
|
+
# that Amazon FSx will use to join to your AD domain.
|
1511
|
+
# @return [String]
|
1512
|
+
#
|
1513
|
+
# @!attribute [rw] dns_ips
|
1514
|
+
# A list of up to two IP addresses of DNS servers or domain
|
1515
|
+
# controllers in the self-managed AD directory. The IP addresses need
|
1516
|
+
# to be either in the same VPC CIDR range as the one in which your
|
1517
|
+
# Amazon FSx file system is being created, or in the private IP
|
1518
|
+
# version 4 (Iv4) address ranges, as specified in [RFC 1918][1]\:
|
1519
|
+
#
|
1520
|
+
# * 10\.0.0.0 - 10.255.255.255 (10/8 prefix)
|
1521
|
+
#
|
1522
|
+
# * 172\.16.0.0 - 172.31.255.255 (172.16/12 prefix)
|
1523
|
+
#
|
1524
|
+
# * 192\.168.0.0 - 192.168.255.255 (192.168/16 prefix)
|
1525
|
+
#
|
1526
|
+
#
|
1527
|
+
#
|
1528
|
+
# [1]: http://www.faqs.org/rfcs/rfc1918.html
|
1529
|
+
# @return [Array<String>]
|
1530
|
+
#
|
1531
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/SelfManagedActiveDirectoryConfiguration AWS API Documentation
|
1532
|
+
#
|
1533
|
+
class SelfManagedActiveDirectoryConfiguration < Struct.new(
|
1534
|
+
:domain_name,
|
1535
|
+
:organizational_unit_distinguished_name,
|
1536
|
+
:file_system_administrators_group,
|
1537
|
+
:user_name,
|
1538
|
+
:password,
|
1539
|
+
:dns_ips)
|
1540
|
+
include Aws::Structure
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
# The configuration that Amazon FSx uses to join the Windows File Server
|
1544
|
+
# instance to the self-managed Microsoft Active Directory (AD)
|
1545
|
+
# directory.
|
1546
|
+
#
|
1547
|
+
# @note When making an API call, you may pass SelfManagedActiveDirectoryConfigurationUpdates
|
1548
|
+
# data as a hash:
|
1549
|
+
#
|
1550
|
+
# {
|
1551
|
+
# user_name: "DirectoryUserName",
|
1552
|
+
# password: "DirectoryPassword",
|
1553
|
+
# dns_ips: ["IpAddress"],
|
1554
|
+
# }
|
1555
|
+
#
|
1556
|
+
# @!attribute [rw] user_name
|
1557
|
+
# The user name for the service account on your self-managed AD domain
|
1558
|
+
# that Amazon FSx will use to join to your AD domain. This account
|
1559
|
+
# must have the permission to join computers to the domain in the
|
1560
|
+
# organizational unit provided in
|
1561
|
+
# `OrganizationalUnitDistinguishedName`.
|
1562
|
+
# @return [String]
|
1563
|
+
#
|
1564
|
+
# @!attribute [rw] password
|
1565
|
+
# The password for the service account on your self-managed AD domain
|
1566
|
+
# that Amazon FSx will use to join to your AD domain.
|
1567
|
+
# @return [String]
|
1568
|
+
#
|
1569
|
+
# @!attribute [rw] dns_ips
|
1570
|
+
# A list of up to two IP addresses of DNS servers or domain
|
1571
|
+
# controllers in the self-managed AD directory.
|
1572
|
+
# @return [Array<String>]
|
1573
|
+
#
|
1574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/SelfManagedActiveDirectoryConfigurationUpdates AWS API Documentation
|
1575
|
+
#
|
1576
|
+
class SelfManagedActiveDirectoryConfigurationUpdates < Struct.new(
|
1577
|
+
:user_name,
|
1578
|
+
:password,
|
1579
|
+
:dns_ips)
|
1580
|
+
include Aws::Structure
|
1581
|
+
end
|
1582
|
+
|
1337
1583
|
# An error indicating that a particular service limit was exceeded. You
|
1338
1584
|
# can increase some service limits by contacting AWS Support.
|
1339
1585
|
#
|
@@ -1423,6 +1669,19 @@ module Aws::FSx
|
|
1423
1669
|
#
|
1424
1670
|
class TagResourceResponse < Aws::EmptyStructure; end
|
1425
1671
|
|
1672
|
+
# An error occured.
|
1673
|
+
#
|
1674
|
+
# @!attribute [rw] message
|
1675
|
+
# A detailed error message.
|
1676
|
+
# @return [String]
|
1677
|
+
#
|
1678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UnsupportedOperation AWS API Documentation
|
1679
|
+
#
|
1680
|
+
class UnsupportedOperation < Struct.new(
|
1681
|
+
:message)
|
1682
|
+
include Aws::Structure
|
1683
|
+
end
|
1684
|
+
|
1426
1685
|
# The request object for `UntagResource` action.
|
1427
1686
|
#
|
1428
1687
|
# @note When making an API call, you may pass UntagResourceRequest
|
@@ -1490,6 +1749,11 @@ module Aws::FSx
|
|
1490
1749
|
# weekly_maintenance_start_time: "WeeklyTime",
|
1491
1750
|
# daily_automatic_backup_start_time: "DailyTime",
|
1492
1751
|
# automatic_backup_retention_days: 1,
|
1752
|
+
# self_managed_active_directory_configuration: {
|
1753
|
+
# user_name: "DirectoryUserName",
|
1754
|
+
# password: "DirectoryPassword",
|
1755
|
+
# dns_ips: ["IpAddress"],
|
1756
|
+
# },
|
1493
1757
|
# },
|
1494
1758
|
# lustre_configuration: {
|
1495
1759
|
# weekly_maintenance_start_time: "WeeklyTime",
|
@@ -1511,8 +1775,9 @@ module Aws::FSx
|
|
1511
1775
|
# @return [String]
|
1512
1776
|
#
|
1513
1777
|
# @!attribute [rw] windows_configuration
|
1514
|
-
# The configuration for this Microsoft Windows file system. The
|
1515
|
-
# supported options are for backup and maintenance
|
1778
|
+
# The configuration update for this Microsoft Windows file system. The
|
1779
|
+
# only supported options are for backup and maintenance and for
|
1780
|
+
# self-managed Active Directory configuration.
|
1516
1781
|
# @return [Types::UpdateFileSystemWindowsConfiguration]
|
1517
1782
|
#
|
1518
1783
|
# @!attribute [rw] lustre_configuration
|
@@ -1533,7 +1798,7 @@ module Aws::FSx
|
|
1533
1798
|
# The response object for the `UpdateFileSystem` operation.
|
1534
1799
|
#
|
1535
1800
|
# @!attribute [rw] file_system
|
1536
|
-
# A description of the file system.
|
1801
|
+
# A description of the file system that was updated.
|
1537
1802
|
# @return [Types::FileSystem]
|
1538
1803
|
#
|
1539
1804
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemResponse AWS API Documentation
|
@@ -1543,8 +1808,10 @@ module Aws::FSx
|
|
1543
1808
|
include Aws::Structure
|
1544
1809
|
end
|
1545
1810
|
|
1546
|
-
#
|
1547
|
-
#
|
1811
|
+
# Updates the Microsoft Windows configuration for an existing Amazon FSx
|
1812
|
+
# for Windows File Server file system. Amazon FSx overwrites existing
|
1813
|
+
# properties with non-null values provided in the request. If you don't
|
1814
|
+
# specify a non-null value for a property, that property is not updated.
|
1548
1815
|
#
|
1549
1816
|
# @note When making an API call, you may pass UpdateFileSystemWindowsConfiguration
|
1550
1817
|
# data as a hash:
|
@@ -1553,6 +1820,11 @@ module Aws::FSx
|
|
1553
1820
|
# weekly_maintenance_start_time: "WeeklyTime",
|
1554
1821
|
# daily_automatic_backup_start_time: "DailyTime",
|
1555
1822
|
# automatic_backup_retention_days: 1,
|
1823
|
+
# self_managed_active_directory_configuration: {
|
1824
|
+
# user_name: "DirectoryUserName",
|
1825
|
+
# password: "DirectoryPassword",
|
1826
|
+
# dns_ips: ["IpAddress"],
|
1827
|
+
# },
|
1556
1828
|
# }
|
1557
1829
|
#
|
1558
1830
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -1571,12 +1843,18 @@ module Aws::FSx
|
|
1571
1843
|
# maximum of 35 days.
|
1572
1844
|
# @return [Integer]
|
1573
1845
|
#
|
1846
|
+
# @!attribute [rw] self_managed_active_directory_configuration
|
1847
|
+
# The configuration Amazon FSx uses to join the Windows File Server
|
1848
|
+
# instance to the self-managed Microsoft AD directory.
|
1849
|
+
# @return [Types::SelfManagedActiveDirectoryConfigurationUpdates]
|
1850
|
+
#
|
1574
1851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemWindowsConfiguration AWS API Documentation
|
1575
1852
|
#
|
1576
1853
|
class UpdateFileSystemWindowsConfiguration < Struct.new(
|
1577
1854
|
:weekly_maintenance_start_time,
|
1578
1855
|
:daily_automatic_backup_start_time,
|
1579
|
-
:automatic_backup_retention_days
|
1856
|
+
:automatic_backup_retention_days,
|
1857
|
+
:self_managed_active_directory_configuration)
|
1580
1858
|
include Aws::Structure
|
1581
1859
|
end
|
1582
1860
|
|
@@ -1587,6 +1865,11 @@ module Aws::FSx
|
|
1587
1865
|
# file system should join when it's created.
|
1588
1866
|
# @return [String]
|
1589
1867
|
#
|
1868
|
+
# @!attribute [rw] self_managed_active_directory_configuration
|
1869
|
+
# The configuration of the self-managed Microsoft Active Directory
|
1870
|
+
# (AD) directory to which the Windows File Server instance is joined.
|
1871
|
+
# @return [Types::SelfManagedActiveDirectoryAttributes]
|
1872
|
+
#
|
1590
1873
|
# @!attribute [rw] throughput_capacity
|
1591
1874
|
# The throughput of an Amazon FSx file system, measured in megabytes
|
1592
1875
|
# per second.
|
@@ -1625,6 +1908,7 @@ module Aws::FSx
|
|
1625
1908
|
#
|
1626
1909
|
class WindowsFileSystemConfiguration < Struct.new(
|
1627
1910
|
:active_directory_id,
|
1911
|
+
:self_managed_active_directory_configuration,
|
1628
1912
|
:throughput_capacity,
|
1629
1913
|
:maintenance_operations_in_progress,
|
1630
1914
|
: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.9.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-06-
|
11
|
+
date: 2019-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|