aws-sdk-fsx 1.37.0 → 1.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx.rb +1 -1
- data/lib/aws-sdk-fsx/client.rb +39 -1
- data/lib/aws-sdk-fsx/client_api.rb +17 -0
- data/lib/aws-sdk-fsx/types.rb +197 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08f42978a93897f71d42153e280e4536ea91d81addf70f22e6accaccf5194397'
|
|
4
|
+
data.tar.gz: eab8451197ca6b2ef5f058ce3009699ff23d79b3f98dff2a8378745e3db89545
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c9a1af4f686c9f62bc950e4a85e9868d956feb389cd6336b3717cfb5f6326b470c4f502f15448092c017fb438afcd86d9c0cfe50418d7a8e5809eee4438df85
|
|
7
|
+
data.tar.gz: abc95507f464dcd66ce79756f5721fe6c38dfdda5ee54a2b5956e7a7e7210b265ead75a2df58e1b031bb27c511dce6eacd5f7ba10a9e972a0931fcc94c77a710
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.38.0 (2021-06-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for auditing end-user access to files, folders, and file shares using Windows event logs, enabling customers to meet their security and compliance needs.
|
|
8
|
+
|
|
4
9
|
1.37.0 (2021-05-27)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.38.0
|
data/lib/aws-sdk-fsx.rb
CHANGED
data/lib/aws-sdk-fsx/client.rb
CHANGED
|
@@ -651,6 +651,9 @@ module Aws::FSx
|
|
|
651
651
|
# resp.backup.file_system.windows_configuration.aliases #=> Array
|
|
652
652
|
# resp.backup.file_system.windows_configuration.aliases[0].name #=> String
|
|
653
653
|
# resp.backup.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
|
654
|
+
# resp.backup.file_system.windows_configuration.audit_log_configuration.file_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
655
|
+
# resp.backup.file_system.windows_configuration.audit_log_configuration.file_share_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
656
|
+
# resp.backup.file_system.windows_configuration.audit_log_configuration.audit_log_destination #=> String
|
|
654
657
|
# resp.backup.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
655
658
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
656
659
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
@@ -869,6 +872,9 @@ module Aws::FSx
|
|
|
869
872
|
# resp.backup.file_system.windows_configuration.aliases #=> Array
|
|
870
873
|
# resp.backup.file_system.windows_configuration.aliases[0].name #=> String
|
|
871
874
|
# resp.backup.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
|
875
|
+
# resp.backup.file_system.windows_configuration.audit_log_configuration.file_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
876
|
+
# resp.backup.file_system.windows_configuration.audit_log_configuration.file_share_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
877
|
+
# resp.backup.file_system.windows_configuration.audit_log_configuration.audit_log_destination #=> String
|
|
872
878
|
# resp.backup.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
873
879
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
874
880
|
# resp.backup.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
@@ -1267,6 +1273,11 @@ module Aws::FSx
|
|
|
1267
1273
|
# automatic_backup_retention_days: 1,
|
|
1268
1274
|
# copy_tags_to_backups: false,
|
|
1269
1275
|
# aliases: ["AlternateDNSName"],
|
|
1276
|
+
# audit_log_configuration: {
|
|
1277
|
+
# file_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
1278
|
+
# file_share_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
1279
|
+
# audit_log_destination: "GeneralARN",
|
|
1280
|
+
# },
|
|
1270
1281
|
# },
|
|
1271
1282
|
# lustre_configuration: {
|
|
1272
1283
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
@@ -1326,6 +1337,9 @@ module Aws::FSx
|
|
|
1326
1337
|
# resp.file_system.windows_configuration.aliases #=> Array
|
|
1327
1338
|
# resp.file_system.windows_configuration.aliases[0].name #=> String
|
|
1328
1339
|
# resp.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
|
1340
|
+
# resp.file_system.windows_configuration.audit_log_configuration.file_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
1341
|
+
# resp.file_system.windows_configuration.audit_log_configuration.file_share_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
1342
|
+
# resp.file_system.windows_configuration.audit_log_configuration.audit_log_destination #=> String
|
|
1329
1343
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
1330
1344
|
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
1331
1345
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
@@ -1562,6 +1576,11 @@ module Aws::FSx
|
|
|
1562
1576
|
# automatic_backup_retention_days: 1,
|
|
1563
1577
|
# copy_tags_to_backups: false,
|
|
1564
1578
|
# aliases: ["AlternateDNSName"],
|
|
1579
|
+
# audit_log_configuration: {
|
|
1580
|
+
# file_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
1581
|
+
# file_share_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
1582
|
+
# audit_log_destination: "GeneralARN",
|
|
1583
|
+
# },
|
|
1565
1584
|
# },
|
|
1566
1585
|
# lustre_configuration: {
|
|
1567
1586
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
@@ -1623,6 +1642,9 @@ module Aws::FSx
|
|
|
1623
1642
|
# resp.file_system.windows_configuration.aliases #=> Array
|
|
1624
1643
|
# resp.file_system.windows_configuration.aliases[0].name #=> String
|
|
1625
1644
|
# resp.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
|
1645
|
+
# resp.file_system.windows_configuration.audit_log_configuration.file_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
1646
|
+
# resp.file_system.windows_configuration.audit_log_configuration.file_share_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
1647
|
+
# resp.file_system.windows_configuration.audit_log_configuration.audit_log_destination #=> String
|
|
1626
1648
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
1627
1649
|
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
1628
1650
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
@@ -1988,6 +2010,9 @@ module Aws::FSx
|
|
|
1988
2010
|
# resp.backups[0].file_system.windows_configuration.aliases #=> Array
|
|
1989
2011
|
# resp.backups[0].file_system.windows_configuration.aliases[0].name #=> String
|
|
1990
2012
|
# resp.backups[0].file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
|
2013
|
+
# resp.backups[0].file_system.windows_configuration.audit_log_configuration.file_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
2014
|
+
# resp.backups[0].file_system.windows_configuration.audit_log_configuration.file_share_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
2015
|
+
# resp.backups[0].file_system.windows_configuration.audit_log_configuration.audit_log_destination #=> String
|
|
1991
2016
|
# resp.backups[0].file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
1992
2017
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
1993
2018
|
# resp.backups[0].file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
@@ -2327,6 +2352,9 @@ module Aws::FSx
|
|
|
2327
2352
|
# resp.file_systems[0].windows_configuration.aliases #=> Array
|
|
2328
2353
|
# resp.file_systems[0].windows_configuration.aliases[0].name #=> String
|
|
2329
2354
|
# resp.file_systems[0].windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
|
2355
|
+
# resp.file_systems[0].windows_configuration.audit_log_configuration.file_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
2356
|
+
# resp.file_systems[0].windows_configuration.audit_log_configuration.file_share_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
2357
|
+
# resp.file_systems[0].windows_configuration.audit_log_configuration.audit_log_destination #=> String
|
|
2330
2358
|
# resp.file_systems[0].lustre_configuration.weekly_maintenance_start_time #=> String
|
|
2331
2359
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
2332
2360
|
# resp.file_systems[0].lustre_configuration.data_repository_configuration.import_path #=> String
|
|
@@ -2599,6 +2627,8 @@ module Aws::FSx
|
|
|
2599
2627
|
# For Amazon FSx for Windows File Server file systems, you can update
|
|
2600
2628
|
# the following properties:
|
|
2601
2629
|
#
|
|
2630
|
+
# * AuditLogConfiguration
|
|
2631
|
+
#
|
|
2602
2632
|
# * AutomaticBackupRetentionDays
|
|
2603
2633
|
#
|
|
2604
2634
|
# * DailyAutomaticBackupStartTime
|
|
@@ -2745,6 +2775,11 @@ module Aws::FSx
|
|
|
2745
2775
|
# password: "DirectoryPassword",
|
|
2746
2776
|
# dns_ips: ["IpAddress"],
|
|
2747
2777
|
# },
|
|
2778
|
+
# audit_log_configuration: {
|
|
2779
|
+
# file_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
2780
|
+
# file_share_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
2781
|
+
# audit_log_destination: "GeneralARN",
|
|
2782
|
+
# },
|
|
2748
2783
|
# },
|
|
2749
2784
|
# lustre_configuration: {
|
|
2750
2785
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
@@ -2797,6 +2832,9 @@ module Aws::FSx
|
|
|
2797
2832
|
# resp.file_system.windows_configuration.aliases #=> Array
|
|
2798
2833
|
# resp.file_system.windows_configuration.aliases[0].name #=> String
|
|
2799
2834
|
# resp.file_system.windows_configuration.aliases[0].lifecycle #=> String, one of "AVAILABLE", "CREATING", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
|
|
2835
|
+
# resp.file_system.windows_configuration.audit_log_configuration.file_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
2836
|
+
# resp.file_system.windows_configuration.audit_log_configuration.file_share_access_audit_log_level #=> String, one of "DISABLED", "SUCCESS_ONLY", "FAILURE_ONLY", "SUCCESS_AND_FAILURE"
|
|
2837
|
+
# resp.file_system.windows_configuration.audit_log_configuration.audit_log_destination #=> String
|
|
2800
2838
|
# resp.file_system.lustre_configuration.weekly_maintenance_start_time #=> String
|
|
2801
2839
|
# resp.file_system.lustre_configuration.data_repository_configuration.lifecycle #=> String, one of "CREATING", "AVAILABLE", "MISCONFIGURED", "UPDATING", "DELETING"
|
|
2802
2840
|
# resp.file_system.lustre_configuration.data_repository_configuration.import_path #=> String
|
|
@@ -2842,7 +2880,7 @@ module Aws::FSx
|
|
|
2842
2880
|
params: params,
|
|
2843
2881
|
config: config)
|
|
2844
2882
|
context[:gem_name] = 'aws-sdk-fsx'
|
|
2845
|
-
context[:gem_version] = '1.
|
|
2883
|
+
context[:gem_version] = '1.38.0'
|
|
2846
2884
|
Seahorse::Client::Request.new(handlers, context)
|
|
2847
2885
|
end
|
|
2848
2886
|
|
|
@@ -126,6 +126,7 @@ module Aws::FSx
|
|
|
126
126
|
FilterValues = Shapes::ListShape.new(name: 'FilterValues')
|
|
127
127
|
Filters = Shapes::ListShape.new(name: 'Filters')
|
|
128
128
|
Flag = Shapes::BooleanShape.new(name: 'Flag')
|
|
129
|
+
GeneralARN = Shapes::StringShape.new(name: 'GeneralARN')
|
|
129
130
|
IncompatibleParameterError = Shapes::StructureShape.new(name: 'IncompatibleParameterError')
|
|
130
131
|
IncompatibleRegionForMultiAZ = Shapes::StructureShape.new(name: 'IncompatibleRegionForMultiAZ')
|
|
131
132
|
InternalServerError = Shapes::StructureShape.new(name: 'InternalServerError')
|
|
@@ -198,6 +199,9 @@ module Aws::FSx
|
|
|
198
199
|
UpdateFileSystemWindowsConfiguration = Shapes::StructureShape.new(name: 'UpdateFileSystemWindowsConfiguration')
|
|
199
200
|
VpcId = Shapes::StringShape.new(name: 'VpcId')
|
|
200
201
|
WeeklyTime = Shapes::StringShape.new(name: 'WeeklyTime')
|
|
202
|
+
WindowsAccessAuditLogLevel = Shapes::StringShape.new(name: 'WindowsAccessAuditLogLevel')
|
|
203
|
+
WindowsAuditLogConfiguration = Shapes::StructureShape.new(name: 'WindowsAuditLogConfiguration')
|
|
204
|
+
WindowsAuditLogCreateConfiguration = Shapes::StructureShape.new(name: 'WindowsAuditLogCreateConfiguration')
|
|
201
205
|
WindowsDeploymentType = Shapes::StringShape.new(name: 'WindowsDeploymentType')
|
|
202
206
|
WindowsFileSystemConfiguration = Shapes::StructureShape.new(name: 'WindowsFileSystemConfiguration')
|
|
203
207
|
|
|
@@ -376,6 +380,7 @@ module Aws::FSx
|
|
|
376
380
|
CreateFileSystemWindowsConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
|
377
381
|
CreateFileSystemWindowsConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
|
378
382
|
CreateFileSystemWindowsConfiguration.add_member(:aliases, Shapes::ShapeRef.new(shape: AlternateDNSNames, location_name: "Aliases"))
|
|
383
|
+
CreateFileSystemWindowsConfiguration.add_member(:audit_log_configuration, Shapes::ShapeRef.new(shape: WindowsAuditLogCreateConfiguration, location_name: "AuditLogConfiguration"))
|
|
379
384
|
CreateFileSystemWindowsConfiguration.struct_class = Types::CreateFileSystemWindowsConfiguration
|
|
380
385
|
|
|
381
386
|
DataRepositoryConfiguration.add_member(:lifecycle, Shapes::ShapeRef.new(shape: DataRepositoryLifecycle, location_name: "Lifecycle"))
|
|
@@ -709,8 +714,19 @@ module Aws::FSx
|
|
|
709
714
|
UpdateFileSystemWindowsConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
|
710
715
|
UpdateFileSystemWindowsConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: MegabytesPerSecond, location_name: "ThroughputCapacity"))
|
|
711
716
|
UpdateFileSystemWindowsConfiguration.add_member(:self_managed_active_directory_configuration, Shapes::ShapeRef.new(shape: SelfManagedActiveDirectoryConfigurationUpdates, location_name: "SelfManagedActiveDirectoryConfiguration"))
|
|
717
|
+
UpdateFileSystemWindowsConfiguration.add_member(:audit_log_configuration, Shapes::ShapeRef.new(shape: WindowsAuditLogCreateConfiguration, location_name: "AuditLogConfiguration"))
|
|
712
718
|
UpdateFileSystemWindowsConfiguration.struct_class = Types::UpdateFileSystemWindowsConfiguration
|
|
713
719
|
|
|
720
|
+
WindowsAuditLogConfiguration.add_member(:file_access_audit_log_level, Shapes::ShapeRef.new(shape: WindowsAccessAuditLogLevel, required: true, location_name: "FileAccessAuditLogLevel"))
|
|
721
|
+
WindowsAuditLogConfiguration.add_member(:file_share_access_audit_log_level, Shapes::ShapeRef.new(shape: WindowsAccessAuditLogLevel, required: true, location_name: "FileShareAccessAuditLogLevel"))
|
|
722
|
+
WindowsAuditLogConfiguration.add_member(:audit_log_destination, Shapes::ShapeRef.new(shape: GeneralARN, location_name: "AuditLogDestination"))
|
|
723
|
+
WindowsAuditLogConfiguration.struct_class = Types::WindowsAuditLogConfiguration
|
|
724
|
+
|
|
725
|
+
WindowsAuditLogCreateConfiguration.add_member(:file_access_audit_log_level, Shapes::ShapeRef.new(shape: WindowsAccessAuditLogLevel, required: true, location_name: "FileAccessAuditLogLevel"))
|
|
726
|
+
WindowsAuditLogCreateConfiguration.add_member(:file_share_access_audit_log_level, Shapes::ShapeRef.new(shape: WindowsAccessAuditLogLevel, required: true, location_name: "FileShareAccessAuditLogLevel"))
|
|
727
|
+
WindowsAuditLogCreateConfiguration.add_member(:audit_log_destination, Shapes::ShapeRef.new(shape: GeneralARN, location_name: "AuditLogDestination"))
|
|
728
|
+
WindowsAuditLogCreateConfiguration.struct_class = Types::WindowsAuditLogCreateConfiguration
|
|
729
|
+
|
|
714
730
|
WindowsFileSystemConfiguration.add_member(:active_directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "ActiveDirectoryId"))
|
|
715
731
|
WindowsFileSystemConfiguration.add_member(:self_managed_active_directory_configuration, Shapes::ShapeRef.new(shape: SelfManagedActiveDirectoryAttributes, location_name: "SelfManagedActiveDirectoryConfiguration"))
|
|
716
732
|
WindowsFileSystemConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: WindowsDeploymentType, location_name: "DeploymentType"))
|
|
@@ -724,6 +740,7 @@ module Aws::FSx
|
|
|
724
740
|
WindowsFileSystemConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
|
725
741
|
WindowsFileSystemConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
|
726
742
|
WindowsFileSystemConfiguration.add_member(:aliases, Shapes::ShapeRef.new(shape: Aliases, location_name: "Aliases"))
|
|
743
|
+
WindowsFileSystemConfiguration.add_member(:audit_log_configuration, Shapes::ShapeRef.new(shape: WindowsAuditLogConfiguration, location_name: "AuditLogConfiguration"))
|
|
727
744
|
WindowsFileSystemConfiguration.struct_class = Types::WindowsFileSystemConfiguration
|
|
728
745
|
|
|
729
746
|
|
data/lib/aws-sdk-fsx/types.rb
CHANGED
|
@@ -919,6 +919,11 @@ module Aws::FSx
|
|
|
919
919
|
# automatic_backup_retention_days: 1,
|
|
920
920
|
# copy_tags_to_backups: false,
|
|
921
921
|
# aliases: ["AlternateDNSName"],
|
|
922
|
+
# audit_log_configuration: {
|
|
923
|
+
# file_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
924
|
+
# file_share_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
925
|
+
# audit_log_destination: "GeneralARN",
|
|
926
|
+
# },
|
|
922
927
|
# },
|
|
923
928
|
# lustre_configuration: {
|
|
924
929
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
@@ -1307,6 +1312,11 @@ module Aws::FSx
|
|
|
1307
1312
|
# automatic_backup_retention_days: 1,
|
|
1308
1313
|
# copy_tags_to_backups: false,
|
|
1309
1314
|
# aliases: ["AlternateDNSName"],
|
|
1315
|
+
# audit_log_configuration: {
|
|
1316
|
+
# file_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
1317
|
+
# file_share_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
1318
|
+
# audit_log_destination: "GeneralARN",
|
|
1319
|
+
# },
|
|
1310
1320
|
# },
|
|
1311
1321
|
# lustre_configuration: {
|
|
1312
1322
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
@@ -1493,6 +1503,11 @@ module Aws::FSx
|
|
|
1493
1503
|
# automatic_backup_retention_days: 1,
|
|
1494
1504
|
# copy_tags_to_backups: false,
|
|
1495
1505
|
# aliases: ["AlternateDNSName"],
|
|
1506
|
+
# audit_log_configuration: {
|
|
1507
|
+
# file_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
1508
|
+
# file_share_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
1509
|
+
# audit_log_destination: "GeneralARN",
|
|
1510
|
+
# },
|
|
1496
1511
|
# }
|
|
1497
1512
|
#
|
|
1498
1513
|
# @!attribute [rw] active_directory_id
|
|
@@ -1620,6 +1635,12 @@ module Aws::FSx
|
|
|
1620
1635
|
# [2]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/walkthrough05-file-system-custom-CNAME.html
|
|
1621
1636
|
# @return [Array<String>]
|
|
1622
1637
|
#
|
|
1638
|
+
# @!attribute [rw] audit_log_configuration
|
|
1639
|
+
# The configuration that Amazon FSx for Windows File Server uses to
|
|
1640
|
+
# audit and log user accesses of files, folders, and file shares on
|
|
1641
|
+
# the Amazon FSx for Windows File Server file system.
|
|
1642
|
+
# @return [Types::WindowsAuditLogCreateConfiguration]
|
|
1643
|
+
#
|
|
1623
1644
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemWindowsConfiguration AWS API Documentation
|
|
1624
1645
|
#
|
|
1625
1646
|
class CreateFileSystemWindowsConfiguration < Struct.new(
|
|
@@ -1632,7 +1653,8 @@ module Aws::FSx
|
|
|
1632
1653
|
:daily_automatic_backup_start_time,
|
|
1633
1654
|
:automatic_backup_retention_days,
|
|
1634
1655
|
:copy_tags_to_backups,
|
|
1635
|
-
:aliases
|
|
1656
|
+
:aliases,
|
|
1657
|
+
:audit_log_configuration)
|
|
1636
1658
|
SENSITIVE = []
|
|
1637
1659
|
include Aws::Structure
|
|
1638
1660
|
end
|
|
@@ -3707,6 +3729,11 @@ module Aws::FSx
|
|
|
3707
3729
|
# password: "DirectoryPassword",
|
|
3708
3730
|
# dns_ips: ["IpAddress"],
|
|
3709
3731
|
# },
|
|
3732
|
+
# audit_log_configuration: {
|
|
3733
|
+
# file_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
3734
|
+
# file_share_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
3735
|
+
# audit_log_destination: "GeneralARN",
|
|
3736
|
+
# },
|
|
3710
3737
|
# },
|
|
3711
3738
|
# lustre_configuration: {
|
|
3712
3739
|
# weekly_maintenance_start_time: "WeeklyTime",
|
|
@@ -3822,6 +3849,11 @@ module Aws::FSx
|
|
|
3822
3849
|
# password: "DirectoryPassword",
|
|
3823
3850
|
# dns_ips: ["IpAddress"],
|
|
3824
3851
|
# },
|
|
3852
|
+
# audit_log_configuration: {
|
|
3853
|
+
# file_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
3854
|
+
# file_share_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
3855
|
+
# audit_log_destination: "GeneralARN",
|
|
3856
|
+
# },
|
|
3825
3857
|
# }
|
|
3826
3858
|
#
|
|
3827
3859
|
# @!attribute [rw] weekly_maintenance_start_time
|
|
@@ -3866,6 +3898,12 @@ module Aws::FSx
|
|
|
3866
3898
|
# self-managed Microsoft AD update request in progress.
|
|
3867
3899
|
# @return [Types::SelfManagedActiveDirectoryConfigurationUpdates]
|
|
3868
3900
|
#
|
|
3901
|
+
# @!attribute [rw] audit_log_configuration
|
|
3902
|
+
# The configuration that Amazon FSx for Windows File Server uses to
|
|
3903
|
+
# audit and log user accesses of files, folders, and file shares on
|
|
3904
|
+
# the Amazon FSx for Windows File Server file system..
|
|
3905
|
+
# @return [Types::WindowsAuditLogCreateConfiguration]
|
|
3906
|
+
#
|
|
3869
3907
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemWindowsConfiguration AWS API Documentation
|
|
3870
3908
|
#
|
|
3871
3909
|
class UpdateFileSystemWindowsConfiguration < Struct.new(
|
|
@@ -3873,7 +3911,156 @@ module Aws::FSx
|
|
|
3873
3911
|
:daily_automatic_backup_start_time,
|
|
3874
3912
|
:automatic_backup_retention_days,
|
|
3875
3913
|
:throughput_capacity,
|
|
3876
|
-
:self_managed_active_directory_configuration
|
|
3914
|
+
:self_managed_active_directory_configuration,
|
|
3915
|
+
:audit_log_configuration)
|
|
3916
|
+
SENSITIVE = []
|
|
3917
|
+
include Aws::Structure
|
|
3918
|
+
end
|
|
3919
|
+
|
|
3920
|
+
# The configuration that Amazon FSx for Windows File Server uses to
|
|
3921
|
+
# audit and log user accesses of files, folders, and file shares on the
|
|
3922
|
+
# Amazon FSx for Windows File Server file system. For more information,
|
|
3923
|
+
# see [ File access auditing][1].
|
|
3924
|
+
#
|
|
3925
|
+
#
|
|
3926
|
+
#
|
|
3927
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/file-access-auditing.html
|
|
3928
|
+
#
|
|
3929
|
+
# @!attribute [rw] file_access_audit_log_level
|
|
3930
|
+
# Sets which attempt type is logged by Amazon FSx for file and folder
|
|
3931
|
+
# accesses.
|
|
3932
|
+
#
|
|
3933
|
+
# * `SUCCESS_ONLY` - only successful attempts to access files or
|
|
3934
|
+
# folders are logged.
|
|
3935
|
+
#
|
|
3936
|
+
# * `FAILURE_ONLY` - only failed attempts to access files or folders
|
|
3937
|
+
# are logged.
|
|
3938
|
+
#
|
|
3939
|
+
# * `SUCCESS_AND_FAILURE` - both successful attempts and failed
|
|
3940
|
+
# attempts to access files or folders are logged.
|
|
3941
|
+
#
|
|
3942
|
+
# * `DISABLED` - access auditing of files and folders is turned off.
|
|
3943
|
+
# @return [String]
|
|
3944
|
+
#
|
|
3945
|
+
# @!attribute [rw] file_share_access_audit_log_level
|
|
3946
|
+
# Sets which attempt type is logged by Amazon FSx for file share
|
|
3947
|
+
# accesses.
|
|
3948
|
+
#
|
|
3949
|
+
# * `SUCCESS_ONLY` - only successful attempts to access file shares
|
|
3950
|
+
# are logged.
|
|
3951
|
+
#
|
|
3952
|
+
# * `FAILURE_ONLY` - only failed attempts to access file shares are
|
|
3953
|
+
# logged.
|
|
3954
|
+
#
|
|
3955
|
+
# * `SUCCESS_AND_FAILURE` - both successful attempts and failed
|
|
3956
|
+
# attempts to access file shares are logged.
|
|
3957
|
+
#
|
|
3958
|
+
# * `DISABLED` - access auditing of file shares is turned off.
|
|
3959
|
+
# @return [String]
|
|
3960
|
+
#
|
|
3961
|
+
# @!attribute [rw] audit_log_destination
|
|
3962
|
+
# The Amazon Resource Name (ARN) for the destination of the audit
|
|
3963
|
+
# logs. The destination can be any Amazon CloudWatch Logs log group
|
|
3964
|
+
# ARN or Amazon Kinesis Data Firehose delivery stream ARN.
|
|
3965
|
+
#
|
|
3966
|
+
# The name of the Amazon CloudWatch Logs log group must begin with the
|
|
3967
|
+
# `/aws/fsx` prefix. The name of the Amazon Kinesis Data Firehouse
|
|
3968
|
+
# delivery stream must begin with the `aws-fsx` prefix.
|
|
3969
|
+
#
|
|
3970
|
+
# The destination ARN (either CloudWatch Logs log group or Kinesis
|
|
3971
|
+
# Data Firehose delivery stream) must be in the same AWS partition,
|
|
3972
|
+
# AWS region, and AWS account as your Amazon FSx file system.
|
|
3973
|
+
# @return [String]
|
|
3974
|
+
#
|
|
3975
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/WindowsAuditLogConfiguration AWS API Documentation
|
|
3976
|
+
#
|
|
3977
|
+
class WindowsAuditLogConfiguration < Struct.new(
|
|
3978
|
+
:file_access_audit_log_level,
|
|
3979
|
+
:file_share_access_audit_log_level,
|
|
3980
|
+
:audit_log_destination)
|
|
3981
|
+
SENSITIVE = []
|
|
3982
|
+
include Aws::Structure
|
|
3983
|
+
end
|
|
3984
|
+
|
|
3985
|
+
# The Windows file access auditing configuration used when creating or
|
|
3986
|
+
# updating an Amazon FSx for Windows File Server file system.
|
|
3987
|
+
#
|
|
3988
|
+
# @note When making an API call, you may pass WindowsAuditLogCreateConfiguration
|
|
3989
|
+
# data as a hash:
|
|
3990
|
+
#
|
|
3991
|
+
# {
|
|
3992
|
+
# file_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
3993
|
+
# file_share_access_audit_log_level: "DISABLED", # required, accepts DISABLED, SUCCESS_ONLY, FAILURE_ONLY, SUCCESS_AND_FAILURE
|
|
3994
|
+
# audit_log_destination: "GeneralARN",
|
|
3995
|
+
# }
|
|
3996
|
+
#
|
|
3997
|
+
# @!attribute [rw] file_access_audit_log_level
|
|
3998
|
+
# Sets which attempt type is logged by Amazon FSx for file and folder
|
|
3999
|
+
# accesses.
|
|
4000
|
+
#
|
|
4001
|
+
# * `SUCCESS_ONLY` - only successful attempts to access files or
|
|
4002
|
+
# folders are logged.
|
|
4003
|
+
#
|
|
4004
|
+
# * `FAILURE_ONLY` - only failed attempts to access files or folders
|
|
4005
|
+
# are logged.
|
|
4006
|
+
#
|
|
4007
|
+
# * `SUCCESS_AND_FAILURE` - both successful attempts and failed
|
|
4008
|
+
# attempts to access files or folders are logged.
|
|
4009
|
+
#
|
|
4010
|
+
# * `DISABLED` - access auditing of files and folders is turned off.
|
|
4011
|
+
# @return [String]
|
|
4012
|
+
#
|
|
4013
|
+
# @!attribute [rw] file_share_access_audit_log_level
|
|
4014
|
+
# Sets which attempt type is logged by Amazon FSx for file share
|
|
4015
|
+
# accesses.
|
|
4016
|
+
#
|
|
4017
|
+
# * `SUCCESS_ONLY` - only successful attempts to access file shares
|
|
4018
|
+
# are logged.
|
|
4019
|
+
#
|
|
4020
|
+
# * `FAILURE_ONLY` - only failed attempts to access file shares are
|
|
4021
|
+
# logged.
|
|
4022
|
+
#
|
|
4023
|
+
# * `SUCCESS_AND_FAILURE` - both successful attempts and failed
|
|
4024
|
+
# attempts to access file shares are logged.
|
|
4025
|
+
#
|
|
4026
|
+
# * `DISABLED` - access auditing of file shares is turned off.
|
|
4027
|
+
# @return [String]
|
|
4028
|
+
#
|
|
4029
|
+
# @!attribute [rw] audit_log_destination
|
|
4030
|
+
# The Amazon Resource Name (ARN) that specifies the destination of the
|
|
4031
|
+
# audit logs.
|
|
4032
|
+
#
|
|
4033
|
+
# The destination can be any Amazon CloudWatch Logs log group ARN or
|
|
4034
|
+
# Amazon Kinesis Data Firehose delivery stream ARN, with the following
|
|
4035
|
+
# requirements:
|
|
4036
|
+
#
|
|
4037
|
+
# * The destination ARN that you provide (either CloudWatch Logs log
|
|
4038
|
+
# group or Kinesis Data Firehose delivery stream) must be in the
|
|
4039
|
+
# same AWS partition, AWS region, and AWS account as your Amazon FSx
|
|
4040
|
+
# file system.
|
|
4041
|
+
#
|
|
4042
|
+
# * The name of the Amazon CloudWatch Logs log group must begin with
|
|
4043
|
+
# the `/aws/fsx` prefix. The name of the Amazon Kinesis Data
|
|
4044
|
+
# Firehouse delivery stream must begin with the `aws-fsx` prefix.
|
|
4045
|
+
#
|
|
4046
|
+
# * If you do not provide a destination in `AuditLogDestination`,
|
|
4047
|
+
# Amazon FSx will create and use a log stream in the CloudWatch Logs
|
|
4048
|
+
# `/aws/fsx/windows` log group.
|
|
4049
|
+
#
|
|
4050
|
+
# * If `AuditLogDestination` is provided and the resource does not
|
|
4051
|
+
# exist, the request will fail with a `BadRequest` error.
|
|
4052
|
+
#
|
|
4053
|
+
# * If `FileAccessAuditLogLevel` and `FileShareAccessAuditLogLevel`
|
|
4054
|
+
# are both set to `DISABLED`, you cannot specify a destination in
|
|
4055
|
+
# `AuditLogDestination`.
|
|
4056
|
+
# @return [String]
|
|
4057
|
+
#
|
|
4058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/WindowsAuditLogCreateConfiguration AWS API Documentation
|
|
4059
|
+
#
|
|
4060
|
+
class WindowsAuditLogCreateConfiguration < Struct.new(
|
|
4061
|
+
:file_access_audit_log_level,
|
|
4062
|
+
:file_share_access_audit_log_level,
|
|
4063
|
+
:audit_log_destination)
|
|
3877
4064
|
SENSITIVE = []
|
|
3878
4065
|
include Aws::Structure
|
|
3879
4066
|
end
|
|
@@ -4014,6 +4201,12 @@ module Aws::FSx
|
|
|
4014
4201
|
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-dns-aliases.html
|
|
4015
4202
|
# @return [Array<Types::Alias>]
|
|
4016
4203
|
#
|
|
4204
|
+
# @!attribute [rw] audit_log_configuration
|
|
4205
|
+
# The configuration that Amazon FSx for Windows File Server uses to
|
|
4206
|
+
# audit and log user accesses of files, folders, and file shares on
|
|
4207
|
+
# the Amazon FSx for Windows File Server file system.
|
|
4208
|
+
# @return [Types::WindowsAuditLogConfiguration]
|
|
4209
|
+
#
|
|
4017
4210
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/WindowsFileSystemConfiguration AWS API Documentation
|
|
4018
4211
|
#
|
|
4019
4212
|
class WindowsFileSystemConfiguration < Struct.new(
|
|
@@ -4029,7 +4222,8 @@ module Aws::FSx
|
|
|
4029
4222
|
:daily_automatic_backup_start_time,
|
|
4030
4223
|
:automatic_backup_retention_days,
|
|
4031
4224
|
:copy_tags_to_backups,
|
|
4032
|
-
:aliases
|
|
4225
|
+
:aliases,
|
|
4226
|
+
:audit_log_configuration)
|
|
4033
4227
|
SENSITIVE = []
|
|
4034
4228
|
include Aws::Structure
|
|
4035
4229
|
end
|
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.38.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: 2021-
|
|
11
|
+
date: 2021-06-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|