aws-sdk-fsx 1.18.0 → 1.23.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 +3 -1
- data/lib/aws-sdk-fsx/client.rb +223 -81
- data/lib/aws-sdk-fsx/client_api.rb +47 -0
- data/lib/aws-sdk-fsx/errors.rb +2 -0
- data/lib/aws-sdk-fsx/resource.rb +2 -0
- data/lib/aws-sdk-fsx/types.rb +505 -89
- metadata +4 -4
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -16,6 +18,10 @@ module Aws::FSx
|
|
16
18
|
ActiveDirectoryError = Shapes::StructureShape.new(name: 'ActiveDirectoryError')
|
17
19
|
ActiveDirectoryErrorType = Shapes::StringShape.new(name: 'ActiveDirectoryErrorType')
|
18
20
|
ActiveDirectoryFullyQualifiedName = Shapes::StringShape.new(name: 'ActiveDirectoryFullyQualifiedName')
|
21
|
+
AdministrativeAction = Shapes::StructureShape.new(name: 'AdministrativeAction')
|
22
|
+
AdministrativeActionFailureDetails = Shapes::StructureShape.new(name: 'AdministrativeActionFailureDetails')
|
23
|
+
AdministrativeActionType = Shapes::StringShape.new(name: 'AdministrativeActionType')
|
24
|
+
AdministrativeActions = Shapes::ListShape.new(name: 'AdministrativeActions')
|
19
25
|
ArchivePath = Shapes::StringShape.new(name: 'ArchivePath')
|
20
26
|
AutomaticBackupRetentionDays = Shapes::IntegerShape.new(name: 'AutomaticBackupRetentionDays')
|
21
27
|
Backup = Shapes::StructureShape.new(name: 'Backup')
|
@@ -65,6 +71,8 @@ module Aws::FSx
|
|
65
71
|
DataRepositoryTasks = Shapes::ListShape.new(name: 'DataRepositoryTasks')
|
66
72
|
DeleteBackupRequest = Shapes::StructureShape.new(name: 'DeleteBackupRequest')
|
67
73
|
DeleteBackupResponse = Shapes::StructureShape.new(name: 'DeleteBackupResponse')
|
74
|
+
DeleteFileSystemLustreConfiguration = Shapes::StructureShape.new(name: 'DeleteFileSystemLustreConfiguration')
|
75
|
+
DeleteFileSystemLustreResponse = Shapes::StructureShape.new(name: 'DeleteFileSystemLustreResponse')
|
68
76
|
DeleteFileSystemRequest = Shapes::StructureShape.new(name: 'DeleteFileSystemRequest')
|
69
77
|
DeleteFileSystemResponse = Shapes::StructureShape.new(name: 'DeleteFileSystemResponse')
|
70
78
|
DeleteFileSystemWindowsConfiguration = Shapes::StructureShape.new(name: 'DeleteFileSystemWindowsConfiguration')
|
@@ -127,6 +135,7 @@ module Aws::FSx
|
|
127
135
|
ProgressPercent = Shapes::IntegerShape.new(name: 'ProgressPercent')
|
128
136
|
ReportFormat = Shapes::StringShape.new(name: 'ReportFormat')
|
129
137
|
ReportScope = Shapes::StringShape.new(name: 'ReportScope')
|
138
|
+
RequestTime = Shapes::TimestampShape.new(name: 'RequestTime')
|
130
139
|
ResourceARN = Shapes::StringShape.new(name: 'ResourceARN')
|
131
140
|
ResourceDoesNotSupportTagging = Shapes::StructureShape.new(name: 'ResourceDoesNotSupportTagging')
|
132
141
|
ResourceNotFound = Shapes::StructureShape.new(name: 'ResourceNotFound')
|
@@ -138,6 +147,7 @@ module Aws::FSx
|
|
138
147
|
ServiceLimit = Shapes::StringShape.new(name: 'ServiceLimit')
|
139
148
|
ServiceLimitExceeded = Shapes::StructureShape.new(name: 'ServiceLimitExceeded')
|
140
149
|
StartTime = Shapes::TimestampShape.new(name: 'StartTime')
|
150
|
+
Status = Shapes::StringShape.new(name: 'Status')
|
141
151
|
StorageCapacity = Shapes::IntegerShape.new(name: 'StorageCapacity')
|
142
152
|
StorageType = Shapes::StringShape.new(name: 'StorageType')
|
143
153
|
SubnetId = Shapes::StringShape.new(name: 'SubnetId')
|
@@ -174,6 +184,19 @@ module Aws::FSx
|
|
174
184
|
ActiveDirectoryError.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
175
185
|
ActiveDirectoryError.struct_class = Types::ActiveDirectoryError
|
176
186
|
|
187
|
+
AdministrativeAction.add_member(:administrative_action_type, Shapes::ShapeRef.new(shape: AdministrativeActionType, location_name: "AdministrativeActionType"))
|
188
|
+
AdministrativeAction.add_member(:progress_percent, Shapes::ShapeRef.new(shape: ProgressPercent, location_name: "ProgressPercent"))
|
189
|
+
AdministrativeAction.add_member(:request_time, Shapes::ShapeRef.new(shape: RequestTime, location_name: "RequestTime"))
|
190
|
+
AdministrativeAction.add_member(:status, Shapes::ShapeRef.new(shape: Status, location_name: "Status"))
|
191
|
+
AdministrativeAction.add_member(:target_file_system_values, Shapes::ShapeRef.new(shape: FileSystem, location_name: "TargetFileSystemValues"))
|
192
|
+
AdministrativeAction.add_member(:failure_details, Shapes::ShapeRef.new(shape: AdministrativeActionFailureDetails, location_name: "FailureDetails"))
|
193
|
+
AdministrativeAction.struct_class = Types::AdministrativeAction
|
194
|
+
|
195
|
+
AdministrativeActionFailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
196
|
+
AdministrativeActionFailureDetails.struct_class = Types::AdministrativeActionFailureDetails
|
197
|
+
|
198
|
+
AdministrativeActions.member = Shapes::ShapeRef.new(shape: AdministrativeAction)
|
199
|
+
|
177
200
|
Backup.add_member(:backup_id, Shapes::ShapeRef.new(shape: BackupId, required: true, location_name: "BackupId"))
|
178
201
|
Backup.add_member(:lifecycle, Shapes::ShapeRef.new(shape: BackupLifecycle, required: true, location_name: "Lifecycle"))
|
179
202
|
Backup.add_member(:failure_details, Shapes::ShapeRef.new(shape: BackupFailureDetails, location_name: "FailureDetails"))
|
@@ -245,6 +268,7 @@ module Aws::FSx
|
|
245
268
|
CreateFileSystemFromBackupRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
246
269
|
CreateFileSystemFromBackupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
247
270
|
CreateFileSystemFromBackupRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
|
271
|
+
CreateFileSystemFromBackupRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
|
248
272
|
CreateFileSystemFromBackupRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
|
249
273
|
CreateFileSystemFromBackupRequest.struct_class = Types::CreateFileSystemFromBackupRequest
|
250
274
|
|
@@ -257,6 +281,9 @@ module Aws::FSx
|
|
257
281
|
CreateFileSystemLustreConfiguration.add_member(:imported_file_chunk_size, Shapes::ShapeRef.new(shape: Megabytes, location_name: "ImportedFileChunkSize"))
|
258
282
|
CreateFileSystemLustreConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: LustreDeploymentType, location_name: "DeploymentType"))
|
259
283
|
CreateFileSystemLustreConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
284
|
+
CreateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
285
|
+
CreateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
286
|
+
CreateFileSystemLustreConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
260
287
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
261
288
|
|
262
289
|
CreateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
@@ -343,14 +370,24 @@ module Aws::FSx
|
|
343
370
|
DeleteBackupResponse.add_member(:lifecycle, Shapes::ShapeRef.new(shape: BackupLifecycle, location_name: "Lifecycle"))
|
344
371
|
DeleteBackupResponse.struct_class = Types::DeleteBackupResponse
|
345
372
|
|
373
|
+
DeleteFileSystemLustreConfiguration.add_member(:skip_final_backup, Shapes::ShapeRef.new(shape: Flag, location_name: "SkipFinalBackup"))
|
374
|
+
DeleteFileSystemLustreConfiguration.add_member(:final_backup_tags, Shapes::ShapeRef.new(shape: Tags, location_name: "FinalBackupTags"))
|
375
|
+
DeleteFileSystemLustreConfiguration.struct_class = Types::DeleteFileSystemLustreConfiguration
|
376
|
+
|
377
|
+
DeleteFileSystemLustreResponse.add_member(:final_backup_id, Shapes::ShapeRef.new(shape: BackupId, location_name: "FinalBackupId"))
|
378
|
+
DeleteFileSystemLustreResponse.add_member(:final_backup_tags, Shapes::ShapeRef.new(shape: Tags, location_name: "FinalBackupTags"))
|
379
|
+
DeleteFileSystemLustreResponse.struct_class = Types::DeleteFileSystemLustreResponse
|
380
|
+
|
346
381
|
DeleteFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
347
382
|
DeleteFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
348
383
|
DeleteFileSystemRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: DeleteFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
|
384
|
+
DeleteFileSystemRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: DeleteFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
|
349
385
|
DeleteFileSystemRequest.struct_class = Types::DeleteFileSystemRequest
|
350
386
|
|
351
387
|
DeleteFileSystemResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "FileSystemId"))
|
352
388
|
DeleteFileSystemResponse.add_member(:lifecycle, Shapes::ShapeRef.new(shape: FileSystemLifecycle, location_name: "Lifecycle"))
|
353
389
|
DeleteFileSystemResponse.add_member(:windows_response, Shapes::ShapeRef.new(shape: DeleteFileSystemWindowsResponse, location_name: "WindowsResponse"))
|
390
|
+
DeleteFileSystemResponse.add_member(:lustre_response, Shapes::ShapeRef.new(shape: DeleteFileSystemLustreResponse, location_name: "LustreResponse"))
|
354
391
|
DeleteFileSystemResponse.struct_class = Types::DeleteFileSystemResponse
|
355
392
|
|
356
393
|
DeleteFileSystemWindowsConfiguration.add_member(:skip_final_backup, Shapes::ShapeRef.new(shape: Flag, location_name: "SkipFinalBackup"))
|
@@ -409,6 +446,7 @@ module Aws::FSx
|
|
409
446
|
FileSystem.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
410
447
|
FileSystem.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: WindowsFileSystemConfiguration, location_name: "WindowsConfiguration"))
|
411
448
|
FileSystem.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: LustreFileSystemConfiguration, location_name: "LustreConfiguration"))
|
449
|
+
FileSystem.add_member(:administrative_actions, Shapes::ShapeRef.new(shape: AdministrativeActions, location_name: "AdministrativeActions"))
|
412
450
|
FileSystem.struct_class = Types::FileSystem
|
413
451
|
|
414
452
|
FileSystemFailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -466,6 +504,9 @@ module Aws::FSx
|
|
466
504
|
LustreFileSystemConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: LustreDeploymentType, location_name: "DeploymentType"))
|
467
505
|
LustreFileSystemConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
468
506
|
LustreFileSystemConfiguration.add_member(:mount_name, Shapes::ShapeRef.new(shape: LustreFileSystemMountName, location_name: "MountName"))
|
507
|
+
LustreFileSystemConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
508
|
+
LustreFileSystemConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
509
|
+
LustreFileSystemConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
469
510
|
LustreFileSystemConfiguration.struct_class = Types::LustreFileSystemConfiguration
|
470
511
|
|
471
512
|
MissingFileSystemConfiguration.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -539,10 +580,13 @@ module Aws::FSx
|
|
539
580
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
540
581
|
|
541
582
|
UpdateFileSystemLustreConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
583
|
+
UpdateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
584
|
+
UpdateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
542
585
|
UpdateFileSystemLustreConfiguration.struct_class = Types::UpdateFileSystemLustreConfiguration
|
543
586
|
|
544
587
|
UpdateFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
545
588
|
UpdateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
589
|
+
UpdateFileSystemRequest.add_member(:storage_capacity, Shapes::ShapeRef.new(shape: StorageCapacity, location_name: "StorageCapacity"))
|
546
590
|
UpdateFileSystemRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: UpdateFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
|
547
591
|
UpdateFileSystemRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: UpdateFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
|
548
592
|
UpdateFileSystemRequest.struct_class = Types::UpdateFileSystemRequest
|
@@ -553,6 +597,7 @@ module Aws::FSx
|
|
553
597
|
UpdateFileSystemWindowsConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
554
598
|
UpdateFileSystemWindowsConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
555
599
|
UpdateFileSystemWindowsConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
600
|
+
UpdateFileSystemWindowsConfiguration.add_member(:throughput_capacity, Shapes::ShapeRef.new(shape: MegabytesPerSecond, location_name: "ThroughputCapacity"))
|
556
601
|
UpdateFileSystemWindowsConfiguration.add_member(:self_managed_active_directory_configuration, Shapes::ShapeRef.new(shape: SelfManagedActiveDirectoryConfigurationUpdates, location_name: "SelfManagedActiveDirectoryConfiguration"))
|
557
602
|
UpdateFileSystemWindowsConfiguration.struct_class = Types::UpdateFileSystemWindowsConfiguration
|
558
603
|
|
@@ -660,6 +705,7 @@ module Aws::FSx
|
|
660
705
|
o.errors << Shapes::ShapeRef.new(shape: ActiveDirectoryError)
|
661
706
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleParameterError)
|
662
707
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNetworkSettings)
|
708
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidPerUnitStorageThroughput)
|
663
709
|
o.errors << Shapes::ShapeRef.new(shape: ServiceLimitExceeded)
|
664
710
|
o.errors << Shapes::ShapeRef.new(shape: BackupNotFound)
|
665
711
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
@@ -797,6 +843,7 @@ module Aws::FSx
|
|
797
843
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
798
844
|
o.errors << Shapes::ShapeRef.new(shape: FileSystemNotFound)
|
799
845
|
o.errors << Shapes::ShapeRef.new(shape: MissingFileSystemConfiguration)
|
846
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceLimitExceeded)
|
800
847
|
end)
|
801
848
|
end
|
802
849
|
|
data/lib/aws-sdk-fsx/errors.rb
CHANGED
data/lib/aws-sdk-fsx/resource.rb
CHANGED
data/lib/aws-sdk-fsx/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -25,6 +27,7 @@ module Aws::FSx
|
|
25
27
|
class ActiveDirectoryBackupAttributes < Struct.new(
|
26
28
|
:domain_name,
|
27
29
|
:active_directory_id)
|
30
|
+
SENSITIVE = []
|
28
31
|
include Aws::Structure
|
29
32
|
end
|
30
33
|
|
@@ -48,11 +51,107 @@ module Aws::FSx
|
|
48
51
|
:active_directory_id,
|
49
52
|
:type,
|
50
53
|
:message)
|
54
|
+
SENSITIVE = []
|
51
55
|
include Aws::Structure
|
52
56
|
end
|
53
57
|
|
54
|
-
#
|
55
|
-
#
|
58
|
+
# Describes a specific Amazon FSx Administrative Action for the current
|
59
|
+
# Windows file system.
|
60
|
+
#
|
61
|
+
# @!attribute [rw] administrative_action_type
|
62
|
+
# Describes the type of administrative action, as follows:
|
63
|
+
#
|
64
|
+
# * `FILE_SYSTEM_UPDATE` - A file system update administrative action
|
65
|
+
# initiated by the user from the Amazon FSx console, API
|
66
|
+
# (UpdateFileSystem), or CLI (update-file-system). A
|
67
|
+
#
|
68
|
+
# * `STORAGE_OPTIMIZATION` - Once the `FILE_SYSTEM_UPDATE` task to
|
69
|
+
# increase a file system's storage capacity completes successfully,
|
70
|
+
# a `STORAGE_OPTIMIZATION` task starts. Storage optimization is the
|
71
|
+
# process of migrating the file system data to the new, larger
|
72
|
+
# disks. You can track the storage migration progress using the
|
73
|
+
# `ProgressPercent` property. When `STORAGE_OPTIMIZATION` completes
|
74
|
+
# successfully, the parent `FILE_SYSTEM_UPDATE` action status
|
75
|
+
# changes to `COMPLETED`. For more information, see [Managing
|
76
|
+
# Storage Capacity][1].
|
77
|
+
#
|
78
|
+
#
|
79
|
+
#
|
80
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
81
|
+
# @return [String]
|
82
|
+
#
|
83
|
+
# @!attribute [rw] progress_percent
|
84
|
+
# Provides the percent complete of a `STORAGE_OPTIMIZATION`
|
85
|
+
# administrative action.
|
86
|
+
# @return [Integer]
|
87
|
+
#
|
88
|
+
# @!attribute [rw] request_time
|
89
|
+
# Time that the administrative action request was received.
|
90
|
+
# @return [Time]
|
91
|
+
#
|
92
|
+
# @!attribute [rw] status
|
93
|
+
# Describes the status of the administrative action, as follows:
|
94
|
+
#
|
95
|
+
# * `FAILED` - Amazon FSx failed to process the administrative action
|
96
|
+
# successfully.
|
97
|
+
#
|
98
|
+
# * `IN_PROGRESS` - Amazon FSx is processing the administrative
|
99
|
+
# action.
|
100
|
+
#
|
101
|
+
# * `PENDING` - Amazon FSx is waiting to process the administrative
|
102
|
+
# action.
|
103
|
+
#
|
104
|
+
# * `COMPLETED` - Amazon FSx has finished processing the
|
105
|
+
# administrative task.
|
106
|
+
#
|
107
|
+
# * `UPDATED_OPTIMIZING` - For a storage capacity increase update,
|
108
|
+
# Amazon FSx has updated the file system with the new storage
|
109
|
+
# capacity, and is now performing the storage optimization process.
|
110
|
+
# For more information, see [Managing Storage Capacity][1].
|
111
|
+
#
|
112
|
+
#
|
113
|
+
#
|
114
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
115
|
+
# @return [String]
|
116
|
+
#
|
117
|
+
# @!attribute [rw] target_file_system_values
|
118
|
+
# Describes the target `StorageCapacity` or `ThroughputCapacity` value
|
119
|
+
# provided in the `UpdateFileSystem` operation. Returned for
|
120
|
+
# `FILE_SYSTEM_UPDATE` administrative actions.
|
121
|
+
# @return [Types::FileSystem]
|
122
|
+
#
|
123
|
+
# @!attribute [rw] failure_details
|
124
|
+
# Provides information about a failed administrative action.
|
125
|
+
# @return [Types::AdministrativeActionFailureDetails]
|
126
|
+
#
|
127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/AdministrativeAction AWS API Documentation
|
128
|
+
#
|
129
|
+
class AdministrativeAction < Struct.new(
|
130
|
+
:administrative_action_type,
|
131
|
+
:progress_percent,
|
132
|
+
:request_time,
|
133
|
+
:status,
|
134
|
+
:target_file_system_values,
|
135
|
+
:failure_details)
|
136
|
+
SENSITIVE = []
|
137
|
+
include Aws::Structure
|
138
|
+
end
|
139
|
+
|
140
|
+
# Provides information about a failed administrative action.
|
141
|
+
#
|
142
|
+
# @!attribute [rw] message
|
143
|
+
# Error message providing details about the failure.
|
144
|
+
# @return [String]
|
145
|
+
#
|
146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/AdministrativeActionFailureDetails AWS API Documentation
|
147
|
+
#
|
148
|
+
class AdministrativeActionFailureDetails < Struct.new(
|
149
|
+
:message)
|
150
|
+
SENSITIVE = []
|
151
|
+
include Aws::Structure
|
152
|
+
end
|
153
|
+
|
154
|
+
# A backup of an Amazon FSx for file system.
|
56
155
|
#
|
57
156
|
# @!attribute [rw] backup_id
|
58
157
|
# The ID of the backup.
|
@@ -116,6 +215,7 @@ module Aws::FSx
|
|
116
215
|
:tags,
|
117
216
|
:file_system,
|
118
217
|
:directory_information)
|
218
|
+
SENSITIVE = []
|
119
219
|
include Aws::Structure
|
120
220
|
end
|
121
221
|
|
@@ -130,6 +230,7 @@ module Aws::FSx
|
|
130
230
|
#
|
131
231
|
class BackupFailureDetails < Struct.new(
|
132
232
|
:message)
|
233
|
+
SENSITIVE = []
|
133
234
|
include Aws::Structure
|
134
235
|
end
|
135
236
|
|
@@ -144,6 +245,7 @@ module Aws::FSx
|
|
144
245
|
#
|
145
246
|
class BackupInProgress < Struct.new(
|
146
247
|
:message)
|
248
|
+
SENSITIVE = []
|
147
249
|
include Aws::Structure
|
148
250
|
end
|
149
251
|
|
@@ -157,6 +259,7 @@ module Aws::FSx
|
|
157
259
|
#
|
158
260
|
class BackupNotFound < Struct.new(
|
159
261
|
:message)
|
262
|
+
SENSITIVE = []
|
160
263
|
include Aws::Structure
|
161
264
|
end
|
162
265
|
|
@@ -176,6 +279,7 @@ module Aws::FSx
|
|
176
279
|
class BackupRestoring < Struct.new(
|
177
280
|
:message,
|
178
281
|
:file_system_id)
|
282
|
+
SENSITIVE = []
|
179
283
|
include Aws::Structure
|
180
284
|
end
|
181
285
|
|
@@ -189,6 +293,7 @@ module Aws::FSx
|
|
189
293
|
#
|
190
294
|
class BadRequest < Struct.new(
|
191
295
|
:message)
|
296
|
+
SENSITIVE = []
|
192
297
|
include Aws::Structure
|
193
298
|
end
|
194
299
|
|
@@ -209,6 +314,7 @@ module Aws::FSx
|
|
209
314
|
#
|
210
315
|
class CancelDataRepositoryTaskRequest < Struct.new(
|
211
316
|
:task_id)
|
317
|
+
SENSITIVE = []
|
212
318
|
include Aws::Structure
|
213
319
|
end
|
214
320
|
|
@@ -240,6 +346,7 @@ module Aws::FSx
|
|
240
346
|
class CancelDataRepositoryTaskResponse < Struct.new(
|
241
347
|
:lifecycle,
|
242
348
|
:task_id)
|
349
|
+
SENSITIVE = []
|
243
350
|
include Aws::Structure
|
244
351
|
end
|
245
352
|
|
@@ -302,6 +409,7 @@ module Aws::FSx
|
|
302
409
|
:path,
|
303
410
|
:format,
|
304
411
|
:scope)
|
412
|
+
SENSITIVE = []
|
305
413
|
include Aws::Structure
|
306
414
|
end
|
307
415
|
|
@@ -326,10 +434,10 @@ module Aws::FSx
|
|
326
434
|
# @return [String]
|
327
435
|
#
|
328
436
|
# @!attribute [rw] client_request_token
|
329
|
-
#
|
330
|
-
#
|
331
|
-
#
|
332
|
-
#
|
437
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
438
|
+
# idempotent creation. This string is automatically filled on your
|
439
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
440
|
+
# AWS SDK.
|
333
441
|
#
|
334
442
|
# **A suitable default value is auto-generated.** You should normally
|
335
443
|
# not need to pass this option.
|
@@ -337,7 +445,10 @@ module Aws::FSx
|
|
337
445
|
#
|
338
446
|
# @!attribute [rw] tags
|
339
447
|
# The tags to apply to the backup at backup creation. The key value of
|
340
|
-
# the `Name` tag appears in the console as the backup name.
|
448
|
+
# the `Name` tag appears in the console as the backup name. If you
|
449
|
+
# have set `CopyTagsToBackups` to true, and you specify one or more
|
450
|
+
# tags using the `CreateBackup` action, no existing tags on the file
|
451
|
+
# system are copied from the file system to the backup.
|
341
452
|
# @return [Array<Types::Tag>]
|
342
453
|
#
|
343
454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateBackupRequest AWS API Documentation
|
@@ -346,6 +457,7 @@ module Aws::FSx
|
|
346
457
|
:file_system_id,
|
347
458
|
:client_request_token,
|
348
459
|
:tags)
|
460
|
+
SENSITIVE = []
|
349
461
|
include Aws::Structure
|
350
462
|
end
|
351
463
|
|
@@ -359,6 +471,7 @@ module Aws::FSx
|
|
359
471
|
#
|
360
472
|
class CreateBackupResponse < Struct.new(
|
361
473
|
:backup)
|
474
|
+
SENSITIVE = []
|
362
475
|
include Aws::Structure
|
363
476
|
end
|
364
477
|
|
@@ -437,6 +550,7 @@ module Aws::FSx
|
|
437
550
|
:report,
|
438
551
|
:client_request_token,
|
439
552
|
:tags)
|
553
|
+
SENSITIVE = []
|
440
554
|
include Aws::Structure
|
441
555
|
end
|
442
556
|
|
@@ -448,6 +562,7 @@ module Aws::FSx
|
|
448
562
|
#
|
449
563
|
class CreateDataRepositoryTaskResponse < Struct.new(
|
450
564
|
:data_repository_task)
|
565
|
+
SENSITIVE = []
|
451
566
|
include Aws::Structure
|
452
567
|
end
|
453
568
|
|
@@ -485,6 +600,17 @@ module Aws::FSx
|
|
485
600
|
# automatic_backup_retention_days: 1,
|
486
601
|
# copy_tags_to_backups: false,
|
487
602
|
# },
|
603
|
+
# lustre_configuration: {
|
604
|
+
# weekly_maintenance_start_time: "WeeklyTime",
|
605
|
+
# import_path: "ArchivePath",
|
606
|
+
# export_path: "ArchivePath",
|
607
|
+
# imported_file_chunk_size: 1,
|
608
|
+
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
609
|
+
# per_unit_storage_throughput: 1,
|
610
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
611
|
+
# automatic_backup_retention_days: 1,
|
612
|
+
# copy_tags_to_backups: false,
|
613
|
+
# },
|
488
614
|
# storage_type: "SSD", # accepts SSD, HDD
|
489
615
|
# }
|
490
616
|
#
|
@@ -494,10 +620,10 @@ module Aws::FSx
|
|
494
620
|
# @return [String]
|
495
621
|
#
|
496
622
|
# @!attribute [rw] client_request_token
|
497
|
-
#
|
498
|
-
#
|
499
|
-
#
|
500
|
-
#
|
623
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
624
|
+
# idempotent creation. This string is automatically filled on your
|
625
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
626
|
+
# AWS SDK.
|
501
627
|
#
|
502
628
|
# **A suitable default value is auto-generated.** You should normally
|
503
629
|
# not need to pass this option.
|
@@ -533,6 +659,10 @@ module Aws::FSx
|
|
533
659
|
# The configuration for this Microsoft Windows file system.
|
534
660
|
# @return [Types::CreateFileSystemWindowsConfiguration]
|
535
661
|
#
|
662
|
+
# @!attribute [rw] lustre_configuration
|
663
|
+
# The Lustre configuration for the file system being created.
|
664
|
+
# @return [Types::CreateFileSystemLustreConfiguration]
|
665
|
+
#
|
536
666
|
# @!attribute [rw] storage_type
|
537
667
|
# Sets the storage type for the Windows file system you're creating
|
538
668
|
# from a backup. Valid values are `SSD` and `HDD`.
|
@@ -565,7 +695,9 @@ module Aws::FSx
|
|
565
695
|
:security_group_ids,
|
566
696
|
:tags,
|
567
697
|
:windows_configuration,
|
698
|
+
:lustre_configuration,
|
568
699
|
:storage_type)
|
700
|
+
SENSITIVE = []
|
569
701
|
include Aws::Structure
|
570
702
|
end
|
571
703
|
|
@@ -579,6 +711,7 @@ module Aws::FSx
|
|
579
711
|
#
|
580
712
|
class CreateFileSystemFromBackupResponse < Struct.new(
|
581
713
|
:file_system)
|
714
|
+
SENSITIVE = []
|
582
715
|
include Aws::Structure
|
583
716
|
end
|
584
717
|
|
@@ -594,11 +727,15 @@ module Aws::FSx
|
|
594
727
|
# imported_file_chunk_size: 1,
|
595
728
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
596
729
|
# per_unit_storage_throughput: 1,
|
730
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
731
|
+
# automatic_backup_retention_days: 1,
|
732
|
+
# copy_tags_to_backups: false,
|
597
733
|
# }
|
598
734
|
#
|
599
735
|
# @!attribute [rw] weekly_maintenance_start_time
|
600
|
-
# The preferred time to perform weekly maintenance,
|
601
|
-
# zone
|
736
|
+
# The preferred start time to perform weekly maintenance, formatted
|
737
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
738
|
+
# through 7, beginning with Monday and ending with Sunday.
|
602
739
|
# @return [String]
|
603
740
|
#
|
604
741
|
# @!attribute [rw] import_path
|
@@ -646,11 +783,15 @@ module Aws::FSx
|
|
646
783
|
# @return [Integer]
|
647
784
|
#
|
648
785
|
# @!attribute [rw] deployment_type
|
649
|
-
#
|
650
|
-
#
|
786
|
+
# Choose `SCRATCH_1` and `SCRATCH_2` deployment types when you need
|
787
|
+
# temporary storage and shorter-term processing of data. The
|
651
788
|
# `SCRATCH_2` deployment type provides in-transit encryption of data
|
652
789
|
# and higher burst throughput capacity than `SCRATCH_1`.
|
653
790
|
#
|
791
|
+
# <note markdown="1"> This option can only be set for for PERSISTENT\_1 deployments types.
|
792
|
+
#
|
793
|
+
# </note>
|
794
|
+
#
|
654
795
|
# Choose `PERSISTENT_1` deployment type for longer-term storage and
|
655
796
|
# workloads and encryption of data in transit. To learn more about
|
656
797
|
# deployment types, see [ FSx for Lustre Deployment Options][1].
|
@@ -684,6 +825,29 @@ module Aws::FSx
|
|
684
825
|
# Valid values are 50, 100, 200.
|
685
826
|
# @return [Integer]
|
686
827
|
#
|
828
|
+
# @!attribute [rw] daily_automatic_backup_start_time
|
829
|
+
# A recurring daily time, in the format `HH:MM`. `HH` is the
|
830
|
+
# zero-padded hour of the day (0-23), and `MM` is the zero-padded
|
831
|
+
# minute of the hour. For example, `05:00` specifies 5 AM daily.
|
832
|
+
# @return [String]
|
833
|
+
#
|
834
|
+
# @!attribute [rw] automatic_backup_retention_days
|
835
|
+
# The number of days to retain automatic backups. Setting this to 0
|
836
|
+
# disables automatic backups. You can retain automatic backups for a
|
837
|
+
# maximum of 35 days. The default is 0.
|
838
|
+
# @return [Integer]
|
839
|
+
#
|
840
|
+
# @!attribute [rw] copy_tags_to_backups
|
841
|
+
# A boolean flag indicating whether tags for the file system should be
|
842
|
+
# copied to backups. This value defaults to false. If it's set to
|
843
|
+
# true, all tags for the file system are copied to all automatic and
|
844
|
+
# user-initiated backups where the user doesn't specify tags. If this
|
845
|
+
# value is true, and you specify one or more tags, only the specified
|
846
|
+
# tags are copied to backups. If you specify one or more tags when
|
847
|
+
# creating a user-initiated backup, no tags are copied from the file
|
848
|
+
# system, regardless of this value.
|
849
|
+
# @return [Boolean]
|
850
|
+
#
|
687
851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
688
852
|
#
|
689
853
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
@@ -692,7 +856,11 @@ module Aws::FSx
|
|
692
856
|
:export_path,
|
693
857
|
:imported_file_chunk_size,
|
694
858
|
:deployment_type,
|
695
|
-
:per_unit_storage_throughput
|
859
|
+
:per_unit_storage_throughput,
|
860
|
+
:daily_automatic_backup_start_time,
|
861
|
+
:automatic_backup_retention_days,
|
862
|
+
:copy_tags_to_backups)
|
863
|
+
SENSITIVE = []
|
696
864
|
include Aws::Structure
|
697
865
|
end
|
698
866
|
|
@@ -740,14 +908,17 @@ module Aws::FSx
|
|
740
908
|
# imported_file_chunk_size: 1,
|
741
909
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
742
910
|
# per_unit_storage_throughput: 1,
|
911
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
912
|
+
# automatic_backup_retention_days: 1,
|
913
|
+
# copy_tags_to_backups: false,
|
743
914
|
# },
|
744
915
|
# }
|
745
916
|
#
|
746
917
|
# @!attribute [rw] client_request_token
|
747
|
-
#
|
748
|
-
#
|
749
|
-
#
|
750
|
-
#
|
918
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
919
|
+
# idempotent creation. This string is automatically filled on your
|
920
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
921
|
+
# AWS SDK.
|
751
922
|
#
|
752
923
|
# **A suitable default value is auto-generated.** You should normally
|
753
924
|
# not need to pass this option.
|
@@ -794,7 +965,7 @@ module Aws::FSx
|
|
794
965
|
#
|
795
966
|
#
|
796
967
|
#
|
797
|
-
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-
|
968
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/optimize-fsx-costs.html#storage-type-options
|
798
969
|
# @return [String]
|
799
970
|
#
|
800
971
|
# @!attribute [rw] subnet_ids
|
@@ -858,6 +1029,7 @@ module Aws::FSx
|
|
858
1029
|
:kms_key_id,
|
859
1030
|
:windows_configuration,
|
860
1031
|
:lustre_configuration)
|
1032
|
+
SENSITIVE = []
|
861
1033
|
include Aws::Structure
|
862
1034
|
end
|
863
1035
|
|
@@ -871,6 +1043,7 @@ module Aws::FSx
|
|
871
1043
|
#
|
872
1044
|
class CreateFileSystemResponse < Struct.new(
|
873
1045
|
:file_system)
|
1046
|
+
SENSITIVE = []
|
874
1047
|
include Aws::Structure
|
875
1048
|
end
|
876
1049
|
|
@@ -952,7 +1125,8 @@ module Aws::FSx
|
|
952
1125
|
#
|
953
1126
|
# @!attribute [rw] weekly_maintenance_start_time
|
954
1127
|
# The preferred start time to perform weekly maintenance, formatted
|
955
|
-
# d:HH:MM in the UTC time zone
|
1128
|
+
# d:HH:MM in the UTC time zone, where d is the weekday number, from 1
|
1129
|
+
# through 7, beginning with Monday and ending with Sunday.
|
956
1130
|
# @return [String]
|
957
1131
|
#
|
958
1132
|
# @!attribute [rw] daily_automatic_backup_start_time
|
@@ -990,6 +1164,7 @@ module Aws::FSx
|
|
990
1164
|
:daily_automatic_backup_start_time,
|
991
1165
|
:automatic_backup_retention_days,
|
992
1166
|
:copy_tags_to_backups)
|
1167
|
+
SENSITIVE = []
|
993
1168
|
include Aws::Structure
|
994
1169
|
end
|
995
1170
|
|
@@ -1027,6 +1202,7 @@ module Aws::FSx
|
|
1027
1202
|
:import_path,
|
1028
1203
|
:export_path,
|
1029
1204
|
:imported_file_chunk_size)
|
1205
|
+
SENSITIVE = []
|
1030
1206
|
include Aws::Structure
|
1031
1207
|
end
|
1032
1208
|
|
@@ -1152,6 +1328,7 @@ module Aws::FSx
|
|
1152
1328
|
:failure_details,
|
1153
1329
|
:status,
|
1154
1330
|
:report)
|
1331
|
+
SENSITIVE = []
|
1155
1332
|
include Aws::Structure
|
1156
1333
|
end
|
1157
1334
|
|
@@ -1166,6 +1343,7 @@ module Aws::FSx
|
|
1166
1343
|
#
|
1167
1344
|
class DataRepositoryTaskEnded < Struct.new(
|
1168
1345
|
:message)
|
1346
|
+
SENSITIVE = []
|
1169
1347
|
include Aws::Structure
|
1170
1348
|
end
|
1171
1349
|
|
@@ -1181,6 +1359,7 @@ module Aws::FSx
|
|
1181
1359
|
#
|
1182
1360
|
class DataRepositoryTaskExecuting < Struct.new(
|
1183
1361
|
:message)
|
1362
|
+
SENSITIVE = []
|
1184
1363
|
include Aws::Structure
|
1185
1364
|
end
|
1186
1365
|
|
@@ -1195,6 +1374,7 @@ module Aws::FSx
|
|
1195
1374
|
#
|
1196
1375
|
class DataRepositoryTaskFailureDetails < Struct.new(
|
1197
1376
|
:message)
|
1377
|
+
SENSITIVE = []
|
1198
1378
|
include Aws::Structure
|
1199
1379
|
end
|
1200
1380
|
|
@@ -1234,6 +1414,7 @@ module Aws::FSx
|
|
1234
1414
|
class DataRepositoryTaskFilter < Struct.new(
|
1235
1415
|
:name,
|
1236
1416
|
:values)
|
1417
|
+
SENSITIVE = []
|
1237
1418
|
include Aws::Structure
|
1238
1419
|
end
|
1239
1420
|
|
@@ -1247,6 +1428,7 @@ module Aws::FSx
|
|
1247
1428
|
#
|
1248
1429
|
class DataRepositoryTaskNotFound < Struct.new(
|
1249
1430
|
:message)
|
1431
|
+
SENSITIVE = []
|
1250
1432
|
include Aws::Structure
|
1251
1433
|
end
|
1252
1434
|
|
@@ -1282,6 +1464,7 @@ module Aws::FSx
|
|
1282
1464
|
:succeeded_count,
|
1283
1465
|
:failed_count,
|
1284
1466
|
:last_updated_time)
|
1467
|
+
SENSITIVE = []
|
1285
1468
|
include Aws::Structure
|
1286
1469
|
end
|
1287
1470
|
|
@@ -1300,9 +1483,9 @@ module Aws::FSx
|
|
1300
1483
|
# @return [String]
|
1301
1484
|
#
|
1302
1485
|
# @!attribute [rw] client_request_token
|
1303
|
-
#
|
1304
|
-
#
|
1305
|
-
#
|
1486
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1487
|
+
# idempotent deletion. This is automatically filled on your behalf
|
1488
|
+
# when using the AWS CLI or SDK.
|
1306
1489
|
#
|
1307
1490
|
# **A suitable default value is auto-generated.** You should normally
|
1308
1491
|
# not need to pass this option.
|
@@ -1313,6 +1496,7 @@ module Aws::FSx
|
|
1313
1496
|
class DeleteBackupRequest < Struct.new(
|
1314
1497
|
:backup_id,
|
1315
1498
|
:client_request_token)
|
1499
|
+
SENSITIVE = []
|
1316
1500
|
include Aws::Structure
|
1317
1501
|
end
|
1318
1502
|
|
@@ -1331,6 +1515,67 @@ module Aws::FSx
|
|
1331
1515
|
class DeleteBackupResponse < Struct.new(
|
1332
1516
|
:backup_id,
|
1333
1517
|
:lifecycle)
|
1518
|
+
SENSITIVE = []
|
1519
|
+
include Aws::Structure
|
1520
|
+
end
|
1521
|
+
|
1522
|
+
# The configuration object for the Amazon FSx for Lustre file system
|
1523
|
+
# being deleted in the `DeleteFileSystem` operation.
|
1524
|
+
#
|
1525
|
+
# @note When making an API call, you may pass DeleteFileSystemLustreConfiguration
|
1526
|
+
# data as a hash:
|
1527
|
+
#
|
1528
|
+
# {
|
1529
|
+
# skip_final_backup: false,
|
1530
|
+
# final_backup_tags: [
|
1531
|
+
# {
|
1532
|
+
# key: "TagKey",
|
1533
|
+
# value: "TagValue",
|
1534
|
+
# },
|
1535
|
+
# ],
|
1536
|
+
# }
|
1537
|
+
#
|
1538
|
+
# @!attribute [rw] skip_final_backup
|
1539
|
+
# Set `SkipFinalBackup` to false if you want to take a final backup of
|
1540
|
+
# the file system you are deleting. By default, Amazon FSx will not
|
1541
|
+
# take a final backup on your behalf when the `DeleteFileSystem`
|
1542
|
+
# operation is invoked. (Default = true)
|
1543
|
+
# @return [Boolean]
|
1544
|
+
#
|
1545
|
+
# @!attribute [rw] final_backup_tags
|
1546
|
+
# Use if `SkipFinalBackup` is set to `false`, and you want to apply an
|
1547
|
+
# array of tags to the final backup. If you have set the file system
|
1548
|
+
# property `CopyTagsToBackups` to true, and you specify one or more
|
1549
|
+
# `FinalBackupTags` when deleting a file system, Amazon FSx will not
|
1550
|
+
# copy any existing file system tags to the backup.
|
1551
|
+
# @return [Array<Types::Tag>]
|
1552
|
+
#
|
1553
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemLustreConfiguration AWS API Documentation
|
1554
|
+
#
|
1555
|
+
class DeleteFileSystemLustreConfiguration < Struct.new(
|
1556
|
+
:skip_final_backup,
|
1557
|
+
:final_backup_tags)
|
1558
|
+
SENSITIVE = []
|
1559
|
+
include Aws::Structure
|
1560
|
+
end
|
1561
|
+
|
1562
|
+
# The response object for the Amazon FSx for Lustre file system being
|
1563
|
+
# deleted in the `DeleteFileSystem` operation.
|
1564
|
+
#
|
1565
|
+
# @!attribute [rw] final_backup_id
|
1566
|
+
# The ID of the final backup for this file system.
|
1567
|
+
# @return [String]
|
1568
|
+
#
|
1569
|
+
# @!attribute [rw] final_backup_tags
|
1570
|
+
# The set of tags applied to the final backup.
|
1571
|
+
# @return [Array<Types::Tag>]
|
1572
|
+
#
|
1573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemLustreResponse AWS API Documentation
|
1574
|
+
#
|
1575
|
+
class DeleteFileSystemLustreResponse < Struct.new(
|
1576
|
+
:final_backup_id,
|
1577
|
+
:final_backup_tags)
|
1578
|
+
SENSITIVE = []
|
1334
1579
|
include Aws::Structure
|
1335
1580
|
end
|
1336
1581
|
|
@@ -1351,6 +1596,15 @@ module Aws::FSx
|
|
1351
1596
|
# },
|
1352
1597
|
# ],
|
1353
1598
|
# },
|
1599
|
+
# lustre_configuration: {
|
1600
|
+
# skip_final_backup: false,
|
1601
|
+
# final_backup_tags: [
|
1602
|
+
# {
|
1603
|
+
# key: "TagKey",
|
1604
|
+
# value: "TagValue",
|
1605
|
+
# },
|
1606
|
+
# ],
|
1607
|
+
# },
|
1354
1608
|
# }
|
1355
1609
|
#
|
1356
1610
|
# @!attribute [rw] file_system_id
|
@@ -1358,9 +1612,9 @@ module Aws::FSx
|
|
1358
1612
|
# @return [String]
|
1359
1613
|
#
|
1360
1614
|
# @!attribute [rw] client_request_token
|
1361
|
-
#
|
1362
|
-
#
|
1363
|
-
#
|
1615
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1616
|
+
# idempotent deletion. This is automatically filled on your behalf
|
1617
|
+
# when using the AWS CLI or SDK.
|
1364
1618
|
#
|
1365
1619
|
# **A suitable default value is auto-generated.** You should normally
|
1366
1620
|
# not need to pass this option.
|
@@ -1371,12 +1625,19 @@ module Aws::FSx
|
|
1371
1625
|
# in the `DeleteFileSystem` operation.
|
1372
1626
|
# @return [Types::DeleteFileSystemWindowsConfiguration]
|
1373
1627
|
#
|
1628
|
+
# @!attribute [rw] lustre_configuration
|
1629
|
+
# The configuration object for the Amazon FSx for Lustre file system
|
1630
|
+
# being deleted in the `DeleteFileSystem` operation.
|
1631
|
+
# @return [Types::DeleteFileSystemLustreConfiguration]
|
1632
|
+
#
|
1374
1633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemRequest AWS API Documentation
|
1375
1634
|
#
|
1376
1635
|
class DeleteFileSystemRequest < Struct.new(
|
1377
1636
|
:file_system_id,
|
1378
1637
|
:client_request_token,
|
1379
|
-
:windows_configuration
|
1638
|
+
:windows_configuration,
|
1639
|
+
:lustre_configuration)
|
1640
|
+
SENSITIVE = []
|
1380
1641
|
include Aws::Structure
|
1381
1642
|
end
|
1382
1643
|
|
@@ -1396,12 +1657,19 @@ module Aws::FSx
|
|
1396
1657
|
# the `DeleteFileSystem` operation.
|
1397
1658
|
# @return [Types::DeleteFileSystemWindowsResponse]
|
1398
1659
|
#
|
1660
|
+
# @!attribute [rw] lustre_response
|
1661
|
+
# The response object for the Amazon FSx for Lustre file system being
|
1662
|
+
# deleted in the `DeleteFileSystem` operation.
|
1663
|
+
# @return [Types::DeleteFileSystemLustreResponse]
|
1664
|
+
#
|
1399
1665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemResponse AWS API Documentation
|
1400
1666
|
#
|
1401
1667
|
class DeleteFileSystemResponse < Struct.new(
|
1402
1668
|
:file_system_id,
|
1403
1669
|
:lifecycle,
|
1404
|
-
:windows_response
|
1670
|
+
:windows_response,
|
1671
|
+
:lustre_response)
|
1672
|
+
SENSITIVE = []
|
1405
1673
|
include Aws::Structure
|
1406
1674
|
end
|
1407
1675
|
|
@@ -1438,6 +1706,7 @@ module Aws::FSx
|
|
1438
1706
|
class DeleteFileSystemWindowsConfiguration < Struct.new(
|
1439
1707
|
:skip_final_backup,
|
1440
1708
|
:final_backup_tags)
|
1709
|
+
SENSITIVE = []
|
1441
1710
|
include Aws::Structure
|
1442
1711
|
end
|
1443
1712
|
|
@@ -1457,6 +1726,7 @@ module Aws::FSx
|
|
1457
1726
|
class DeleteFileSystemWindowsResponse < Struct.new(
|
1458
1727
|
:final_backup_id,
|
1459
1728
|
:final_backup_tags)
|
1729
|
+
SENSITIVE = []
|
1460
1730
|
include Aws::Structure
|
1461
1731
|
end
|
1462
1732
|
|
@@ -1469,7 +1739,7 @@ module Aws::FSx
|
|
1469
1739
|
# backup_ids: ["BackupId"],
|
1470
1740
|
# filters: [
|
1471
1741
|
# {
|
1472
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
1742
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
1473
1743
|
# values: ["FilterValue"],
|
1474
1744
|
# },
|
1475
1745
|
# ],
|
@@ -1478,28 +1748,27 @@ module Aws::FSx
|
|
1478
1748
|
# }
|
1479
1749
|
#
|
1480
1750
|
# @!attribute [rw] backup_ids
|
1481
|
-
#
|
1482
|
-
#
|
1483
|
-
# be thrown.
|
1751
|
+
# IDs of the backups you want to retrieve (String). This overrides any
|
1752
|
+
# filters. If any IDs are not found, BackupNotFound will be thrown.
|
1484
1753
|
# @return [Array<String>]
|
1485
1754
|
#
|
1486
1755
|
# @!attribute [rw] filters
|
1487
|
-
#
|
1756
|
+
# Filters structure. Supported names are file-system-id and
|
1488
1757
|
# backup-type.
|
1489
1758
|
# @return [Array<Types::Filter>]
|
1490
1759
|
#
|
1491
1760
|
# @!attribute [rw] max_results
|
1492
|
-
#
|
1493
|
-
#
|
1494
|
-
#
|
1495
|
-
#
|
1496
|
-
#
|
1761
|
+
# Maximum number of backups to return in the response (integer). This
|
1762
|
+
# parameter value must be greater than 0. The number of items that
|
1763
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1764
|
+
# specified in the request and the service's internal maximum number
|
1765
|
+
# of items per page.
|
1497
1766
|
# @return [Integer]
|
1498
1767
|
#
|
1499
1768
|
# @!attribute [rw] next_token
|
1500
|
-
#
|
1501
|
-
#
|
1502
|
-
#
|
1769
|
+
# Opaque pagination token returned from a previous `DescribeBackups`
|
1770
|
+
# operation (String). If a token present, the action continues the
|
1771
|
+
# list from where the returning call left off.
|
1503
1772
|
# @return [String]
|
1504
1773
|
#
|
1505
1774
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeBackupsRequest AWS API Documentation
|
@@ -1509,6 +1778,7 @@ module Aws::FSx
|
|
1509
1778
|
:filters,
|
1510
1779
|
:max_results,
|
1511
1780
|
:next_token)
|
1781
|
+
SENSITIVE = []
|
1512
1782
|
include Aws::Structure
|
1513
1783
|
end
|
1514
1784
|
|
@@ -1529,6 +1799,7 @@ module Aws::FSx
|
|
1529
1799
|
class DescribeBackupsResponse < Struct.new(
|
1530
1800
|
:backups,
|
1531
1801
|
:next_token)
|
1802
|
+
SENSITIVE = []
|
1532
1803
|
include Aws::Structure
|
1533
1804
|
end
|
1534
1805
|
|
@@ -1577,6 +1848,7 @@ module Aws::FSx
|
|
1577
1848
|
:filters,
|
1578
1849
|
:max_results,
|
1579
1850
|
:next_token)
|
1851
|
+
SENSITIVE = []
|
1580
1852
|
include Aws::Structure
|
1581
1853
|
end
|
1582
1854
|
|
@@ -1596,6 +1868,7 @@ module Aws::FSx
|
|
1596
1868
|
class DescribeDataRepositoryTasksResponse < Struct.new(
|
1597
1869
|
:data_repository_tasks,
|
1598
1870
|
:next_token)
|
1871
|
+
SENSITIVE = []
|
1599
1872
|
include Aws::Structure
|
1600
1873
|
end
|
1601
1874
|
|
@@ -1611,20 +1884,20 @@ module Aws::FSx
|
|
1611
1884
|
# }
|
1612
1885
|
#
|
1613
1886
|
# @!attribute [rw] file_system_ids
|
1614
|
-
#
|
1615
|
-
#
|
1887
|
+
# IDs of the file systems whose descriptions you want to retrieve
|
1888
|
+
# (String).
|
1616
1889
|
# @return [Array<String>]
|
1617
1890
|
#
|
1618
1891
|
# @!attribute [rw] max_results
|
1619
|
-
#
|
1620
|
-
#
|
1621
|
-
#
|
1622
|
-
#
|
1623
|
-
#
|
1892
|
+
# Maximum number of file systems to return in the response (integer).
|
1893
|
+
# This parameter value must be greater than 0. The number of items
|
1894
|
+
# that Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1895
|
+
# specified in the request and the service's internal maximum number
|
1896
|
+
# of items per page.
|
1624
1897
|
# @return [Integer]
|
1625
1898
|
#
|
1626
1899
|
# @!attribute [rw] next_token
|
1627
|
-
#
|
1900
|
+
# Opaque pagination token returned from a previous
|
1628
1901
|
# `DescribeFileSystems` operation (String). If a token present, the
|
1629
1902
|
# action continues the list from where the returning call left off.
|
1630
1903
|
# @return [String]
|
@@ -1635,6 +1908,7 @@ module Aws::FSx
|
|
1635
1908
|
:file_system_ids,
|
1636
1909
|
:max_results,
|
1637
1910
|
:next_token)
|
1911
|
+
SENSITIVE = []
|
1638
1912
|
include Aws::Structure
|
1639
1913
|
end
|
1640
1914
|
|
@@ -1655,6 +1929,7 @@ module Aws::FSx
|
|
1655
1929
|
class DescribeFileSystemsResponse < Struct.new(
|
1656
1930
|
:file_systems,
|
1657
1931
|
:next_token)
|
1932
|
+
SENSITIVE = []
|
1658
1933
|
include Aws::Structure
|
1659
1934
|
end
|
1660
1935
|
|
@@ -1792,6 +2067,13 @@ module Aws::FSx
|
|
1792
2067
|
# The configuration for the Amazon FSx for Lustre file system.
|
1793
2068
|
# @return [Types::LustreFileSystemConfiguration]
|
1794
2069
|
#
|
2070
|
+
# @!attribute [rw] administrative_actions
|
2071
|
+
# A list of administrative actions for the file system that are in
|
2072
|
+
# process or waiting to be processed. Administrative actions describe
|
2073
|
+
# changes to the Windows file system that you have initiated using the
|
2074
|
+
# `UpdateFileSystem` action.
|
2075
|
+
# @return [Array<Types::AdministrativeAction>]
|
2076
|
+
#
|
1795
2077
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/FileSystem AWS API Documentation
|
1796
2078
|
#
|
1797
2079
|
class FileSystem < Struct.new(
|
@@ -1811,7 +2093,9 @@ module Aws::FSx
|
|
1811
2093
|
:resource_arn,
|
1812
2094
|
:tags,
|
1813
2095
|
:windows_configuration,
|
1814
|
-
:lustre_configuration
|
2096
|
+
:lustre_configuration,
|
2097
|
+
:administrative_actions)
|
2098
|
+
SENSITIVE = []
|
1815
2099
|
include Aws::Structure
|
1816
2100
|
end
|
1817
2101
|
|
@@ -1827,6 +2111,7 @@ module Aws::FSx
|
|
1827
2111
|
#
|
1828
2112
|
class FileSystemFailureDetails < Struct.new(
|
1829
2113
|
:message)
|
2114
|
+
SENSITIVE = []
|
1830
2115
|
include Aws::Structure
|
1831
2116
|
end
|
1832
2117
|
|
@@ -1840,6 +2125,7 @@ module Aws::FSx
|
|
1840
2125
|
#
|
1841
2126
|
class FileSystemNotFound < Struct.new(
|
1842
2127
|
:message)
|
2128
|
+
SENSITIVE = []
|
1843
2129
|
include Aws::Structure
|
1844
2130
|
end
|
1845
2131
|
|
@@ -1851,7 +2137,7 @@ module Aws::FSx
|
|
1851
2137
|
# data as a hash:
|
1852
2138
|
#
|
1853
2139
|
# {
|
1854
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
2140
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
1855
2141
|
# values: ["FilterValue"],
|
1856
2142
|
# }
|
1857
2143
|
#
|
@@ -1869,6 +2155,7 @@ module Aws::FSx
|
|
1869
2155
|
class Filter < Struct.new(
|
1870
2156
|
:name,
|
1871
2157
|
:values)
|
2158
|
+
SENSITIVE = []
|
1872
2159
|
include Aws::Structure
|
1873
2160
|
end
|
1874
2161
|
|
@@ -1889,6 +2176,7 @@ module Aws::FSx
|
|
1889
2176
|
class IncompatibleParameterError < Struct.new(
|
1890
2177
|
:parameter,
|
1891
2178
|
:message)
|
2179
|
+
SENSITIVE = []
|
1892
2180
|
include Aws::Structure
|
1893
2181
|
end
|
1894
2182
|
|
@@ -1902,6 +2190,7 @@ module Aws::FSx
|
|
1902
2190
|
#
|
1903
2191
|
class InternalServerError < Struct.new(
|
1904
2192
|
:message)
|
2193
|
+
SENSITIVE = []
|
1905
2194
|
include Aws::Structure
|
1906
2195
|
end
|
1907
2196
|
|
@@ -1915,6 +2204,7 @@ module Aws::FSx
|
|
1915
2204
|
#
|
1916
2205
|
class InvalidExportPath < Struct.new(
|
1917
2206
|
:message)
|
2207
|
+
SENSITIVE = []
|
1918
2208
|
include Aws::Structure
|
1919
2209
|
end
|
1920
2210
|
|
@@ -1928,6 +2218,7 @@ module Aws::FSx
|
|
1928
2218
|
#
|
1929
2219
|
class InvalidImportPath < Struct.new(
|
1930
2220
|
:message)
|
2221
|
+
SENSITIVE = []
|
1931
2222
|
include Aws::Structure
|
1932
2223
|
end
|
1933
2224
|
|
@@ -1970,6 +2261,7 @@ module Aws::FSx
|
|
1970
2261
|
:message,
|
1971
2262
|
:invalid_subnet_id,
|
1972
2263
|
:invalid_security_group_id)
|
2264
|
+
SENSITIVE = []
|
1973
2265
|
include Aws::Structure
|
1974
2266
|
end
|
1975
2267
|
|
@@ -1984,6 +2276,7 @@ module Aws::FSx
|
|
1984
2276
|
#
|
1985
2277
|
class InvalidPerUnitStorageThroughput < Struct.new(
|
1986
2278
|
:message)
|
2279
|
+
SENSITIVE = []
|
1987
2280
|
include Aws::Structure
|
1988
2281
|
end
|
1989
2282
|
|
@@ -2003,15 +2296,15 @@ module Aws::FSx
|
|
2003
2296
|
# @return [String]
|
2004
2297
|
#
|
2005
2298
|
# @!attribute [rw] max_results
|
2006
|
-
#
|
2007
|
-
#
|
2008
|
-
#
|
2009
|
-
#
|
2010
|
-
#
|
2299
|
+
# Maximum number of tags to return in the response (integer). This
|
2300
|
+
# parameter value must be greater than 0. The number of items that
|
2301
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
2302
|
+
# specified in the request and the service's internal maximum number
|
2303
|
+
# of items per page.
|
2011
2304
|
# @return [Integer]
|
2012
2305
|
#
|
2013
2306
|
# @!attribute [rw] next_token
|
2014
|
-
#
|
2307
|
+
# Opaque pagination token returned from a previous
|
2015
2308
|
# `ListTagsForResource` operation (String). If a token present, the
|
2016
2309
|
# action continues the list from where the returning call left off.
|
2017
2310
|
# @return [String]
|
@@ -2022,6 +2315,7 @@ module Aws::FSx
|
|
2022
2315
|
:resource_arn,
|
2023
2316
|
:max_results,
|
2024
2317
|
:next_token)
|
2318
|
+
SENSITIVE = []
|
2025
2319
|
include Aws::Structure
|
2026
2320
|
end
|
2027
2321
|
|
@@ -2042,13 +2336,16 @@ module Aws::FSx
|
|
2042
2336
|
class ListTagsForResourceResponse < Struct.new(
|
2043
2337
|
:tags,
|
2044
2338
|
:next_token)
|
2339
|
+
SENSITIVE = []
|
2045
2340
|
include Aws::Structure
|
2046
2341
|
end
|
2047
2342
|
|
2048
2343
|
# The configuration for the Amazon FSx for Lustre file system.
|
2049
2344
|
#
|
2050
2345
|
# @!attribute [rw] weekly_maintenance_start_time
|
2051
|
-
# The
|
2346
|
+
# The preferred start time to perform weekly maintenance, formatted
|
2347
|
+
# d:HH:MM in the UTC time zone. d is the weekday number, from 1
|
2348
|
+
# through 7, beginning with Monday and ending with Sunday.
|
2052
2349
|
# @return [String]
|
2053
2350
|
#
|
2054
2351
|
# @!attribute [rw] data_repository_configuration
|
@@ -2057,7 +2354,23 @@ module Aws::FSx
|
|
2057
2354
|
# @return [Types::DataRepositoryConfiguration]
|
2058
2355
|
#
|
2059
2356
|
# @!attribute [rw] deployment_type
|
2060
|
-
# The deployment type of the FSX for Lustre file system.
|
2357
|
+
# The deployment type of the FSX for Lustre file system. *Scratch
|
2358
|
+
# deployment type* is designed for temporary storage and shorter-term
|
2359
|
+
# processing of data.
|
2360
|
+
#
|
2361
|
+
# `SCRATCH_1` and `SCRATCH_2` deployment types are best suited for
|
2362
|
+
# when you need temporary storage and shorter-term processing of data.
|
2363
|
+
# The `SCRATCH_2` deployment type provides in-transit encryption of
|
2364
|
+
# data and higher burst throughput capacity than `SCRATCH_1`.
|
2365
|
+
#
|
2366
|
+
# The `PERSISTENT_1` deployment type is used for longer-term storage
|
2367
|
+
# and workloads and encryption of data in transit. To learn more about
|
2368
|
+
# deployment types, see [ FSx for Lustre Deployment Options][1].
|
2369
|
+
# (Default = `SCRATCH_1`)
|
2370
|
+
#
|
2371
|
+
#
|
2372
|
+
#
|
2373
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-deployment-types.html
|
2061
2374
|
# @return [String]
|
2062
2375
|
#
|
2063
2376
|
# @!attribute [rw] per_unit_storage_throughput
|
@@ -2076,6 +2389,29 @@ module Aws::FSx
|
|
2076
2389
|
# string that is unique within an AWS Region.
|
2077
2390
|
# @return [String]
|
2078
2391
|
#
|
2392
|
+
# @!attribute [rw] daily_automatic_backup_start_time
|
2393
|
+
# A recurring daily time, in the format `HH:MM`. `HH` is the
|
2394
|
+
# zero-padded hour of the day (0-23), and `MM` is the zero-padded
|
2395
|
+
# minute of the hour. For example, `05:00` specifies 5 AM daily.
|
2396
|
+
# @return [String]
|
2397
|
+
#
|
2398
|
+
# @!attribute [rw] automatic_backup_retention_days
|
2399
|
+
# The number of days to retain automatic backups. Setting this to 0
|
2400
|
+
# disables automatic backups. You can retain automatic backups for a
|
2401
|
+
# maximum of 35 days. The default is 0.
|
2402
|
+
# @return [Integer]
|
2403
|
+
#
|
2404
|
+
# @!attribute [rw] copy_tags_to_backups
|
2405
|
+
# A boolean flag indicating whether tags on the file system should be
|
2406
|
+
# copied to backups. If it's set to true, all tags on the file system
|
2407
|
+
# are copied to all automatic backups and any user-initiated backups
|
2408
|
+
# where the user doesn't specify any tags. If this value is true, and
|
2409
|
+
# you specify one or more tags, only the specified tags are copied to
|
2410
|
+
# backups. If you specify one or more tags when creating a
|
2411
|
+
# user-initiated backup, no tags are copied from the file system,
|
2412
|
+
# regardless of this value. (Default = false)
|
2413
|
+
# @return [Boolean]
|
2414
|
+
#
|
2079
2415
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
2080
2416
|
#
|
2081
2417
|
class LustreFileSystemConfiguration < Struct.new(
|
@@ -2083,7 +2419,11 @@ module Aws::FSx
|
|
2083
2419
|
:data_repository_configuration,
|
2084
2420
|
:deployment_type,
|
2085
2421
|
:per_unit_storage_throughput,
|
2086
|
-
:mount_name
|
2422
|
+
:mount_name,
|
2423
|
+
:daily_automatic_backup_start_time,
|
2424
|
+
:automatic_backup_retention_days,
|
2425
|
+
:copy_tags_to_backups)
|
2426
|
+
SENSITIVE = []
|
2087
2427
|
include Aws::Structure
|
2088
2428
|
end
|
2089
2429
|
|
@@ -2097,6 +2437,7 @@ module Aws::FSx
|
|
2097
2437
|
#
|
2098
2438
|
class MissingFileSystemConfiguration < Struct.new(
|
2099
2439
|
:message)
|
2440
|
+
SENSITIVE = []
|
2100
2441
|
include Aws::Structure
|
2101
2442
|
end
|
2102
2443
|
|
@@ -2117,6 +2458,7 @@ module Aws::FSx
|
|
2117
2458
|
class NotServiceResourceError < Struct.new(
|
2118
2459
|
:resource_arn,
|
2119
2460
|
:message)
|
2461
|
+
SENSITIVE = []
|
2120
2462
|
include Aws::Structure
|
2121
2463
|
end
|
2122
2464
|
|
@@ -2136,6 +2478,7 @@ module Aws::FSx
|
|
2136
2478
|
class ResourceDoesNotSupportTagging < Struct.new(
|
2137
2479
|
:resource_arn,
|
2138
2480
|
:message)
|
2481
|
+
SENSITIVE = []
|
2139
2482
|
include Aws::Structure
|
2140
2483
|
end
|
2141
2484
|
|
@@ -2155,6 +2498,7 @@ module Aws::FSx
|
|
2155
2498
|
class ResourceNotFound < Struct.new(
|
2156
2499
|
:resource_arn,
|
2157
2500
|
:message)
|
2501
|
+
SENSITIVE = []
|
2158
2502
|
include Aws::Structure
|
2159
2503
|
end
|
2160
2504
|
|
@@ -2194,6 +2538,7 @@ module Aws::FSx
|
|
2194
2538
|
:file_system_administrators_group,
|
2195
2539
|
:user_name,
|
2196
2540
|
:dns_ips)
|
2541
|
+
SENSITIVE = []
|
2197
2542
|
include Aws::Structure
|
2198
2543
|
end
|
2199
2544
|
|
@@ -2286,12 +2631,12 @@ module Aws::FSx
|
|
2286
2631
|
:user_name,
|
2287
2632
|
:password,
|
2288
2633
|
:dns_ips)
|
2634
|
+
SENSITIVE = [:password]
|
2289
2635
|
include Aws::Structure
|
2290
2636
|
end
|
2291
2637
|
|
2292
2638
|
# The configuration that Amazon FSx uses to join the Windows File Server
|
2293
|
-
# instance to
|
2294
|
-
# directory.
|
2639
|
+
# instance to a self-managed Microsoft Active Directory (AD) directory.
|
2295
2640
|
#
|
2296
2641
|
# @note When making an API call, you may pass SelfManagedActiveDirectoryConfigurationUpdates
|
2297
2642
|
# data as a hash:
|
@@ -2326,6 +2671,7 @@ module Aws::FSx
|
|
2326
2671
|
:user_name,
|
2327
2672
|
:password,
|
2328
2673
|
:dns_ips)
|
2674
|
+
SENSITIVE = [:password]
|
2329
2675
|
include Aws::Structure
|
2330
2676
|
end
|
2331
2677
|
|
@@ -2345,6 +2691,7 @@ module Aws::FSx
|
|
2345
2691
|
class ServiceLimitExceeded < Struct.new(
|
2346
2692
|
:limit,
|
2347
2693
|
:message)
|
2694
|
+
SENSITIVE = []
|
2348
2695
|
include Aws::Structure
|
2349
2696
|
end
|
2350
2697
|
|
@@ -2375,6 +2722,7 @@ module Aws::FSx
|
|
2375
2722
|
class Tag < Struct.new(
|
2376
2723
|
:key,
|
2377
2724
|
:value)
|
2725
|
+
SENSITIVE = []
|
2378
2726
|
include Aws::Structure
|
2379
2727
|
end
|
2380
2728
|
|
@@ -2409,6 +2757,7 @@ module Aws::FSx
|
|
2409
2757
|
class TagResourceRequest < Struct.new(
|
2410
2758
|
:resource_arn,
|
2411
2759
|
:tags)
|
2760
|
+
SENSITIVE = []
|
2412
2761
|
include Aws::Structure
|
2413
2762
|
end
|
2414
2763
|
|
@@ -2428,6 +2777,7 @@ module Aws::FSx
|
|
2428
2777
|
#
|
2429
2778
|
class UnsupportedOperation < Struct.new(
|
2430
2779
|
:message)
|
2780
|
+
SENSITIVE = []
|
2431
2781
|
include Aws::Structure
|
2432
2782
|
end
|
2433
2783
|
|
@@ -2455,6 +2805,7 @@ module Aws::FSx
|
|
2455
2805
|
class UntagResourceRequest < Struct.new(
|
2456
2806
|
:resource_arn,
|
2457
2807
|
:tag_keys)
|
2808
|
+
SENSITIVE = []
|
2458
2809
|
include Aws::Structure
|
2459
2810
|
end
|
2460
2811
|
|
@@ -2472,17 +2823,35 @@ module Aws::FSx
|
|
2472
2823
|
#
|
2473
2824
|
# {
|
2474
2825
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2826
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
2827
|
+
# automatic_backup_retention_days: 1,
|
2475
2828
|
# }
|
2476
2829
|
#
|
2477
2830
|
# @!attribute [rw] weekly_maintenance_start_time
|
2478
|
-
# The preferred time to perform weekly maintenance,
|
2479
|
-
# zone.
|
2831
|
+
# The preferred start time to perform weekly maintenance, formatted
|
2832
|
+
# d:HH:MM in the UTC time zone. d is the weekday number, from 1
|
2833
|
+
# through 7, beginning with Monday and ending with Sunday.
|
2834
|
+
# @return [String]
|
2835
|
+
#
|
2836
|
+
# @!attribute [rw] daily_automatic_backup_start_time
|
2837
|
+
# A recurring daily time, in the format `HH:MM`. `HH` is the
|
2838
|
+
# zero-padded hour of the day (0-23), and `MM` is the zero-padded
|
2839
|
+
# minute of the hour. For example, `05:00` specifies 5 AM daily.
|
2480
2840
|
# @return [String]
|
2481
2841
|
#
|
2842
|
+
# @!attribute [rw] automatic_backup_retention_days
|
2843
|
+
# The number of days to retain automatic backups. Setting this to 0
|
2844
|
+
# disables automatic backups. You can retain automatic backups for a
|
2845
|
+
# maximum of 35 days. The default is 0.
|
2846
|
+
# @return [Integer]
|
2847
|
+
#
|
2482
2848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
2483
2849
|
#
|
2484
2850
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
2485
|
-
:weekly_maintenance_start_time
|
2851
|
+
:weekly_maintenance_start_time,
|
2852
|
+
:daily_automatic_backup_start_time,
|
2853
|
+
:automatic_backup_retention_days)
|
2854
|
+
SENSITIVE = []
|
2486
2855
|
include Aws::Structure
|
2487
2856
|
end
|
2488
2857
|
|
@@ -2494,10 +2863,12 @@ module Aws::FSx
|
|
2494
2863
|
# {
|
2495
2864
|
# file_system_id: "FileSystemId", # required
|
2496
2865
|
# client_request_token: "ClientRequestToken",
|
2866
|
+
# storage_capacity: 1,
|
2497
2867
|
# windows_configuration: {
|
2498
2868
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2499
2869
|
# daily_automatic_backup_start_time: "DailyTime",
|
2500
2870
|
# automatic_backup_retention_days: 1,
|
2871
|
+
# throughput_capacity: 1,
|
2501
2872
|
# self_managed_active_directory_configuration: {
|
2502
2873
|
# user_name: "DirectoryUserName",
|
2503
2874
|
# password: "DirectoryPassword",
|
@@ -2506,27 +2877,44 @@ module Aws::FSx
|
|
2506
2877
|
# },
|
2507
2878
|
# lustre_configuration: {
|
2508
2879
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2880
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
2881
|
+
# automatic_backup_retention_days: 1,
|
2509
2882
|
# },
|
2510
2883
|
# }
|
2511
2884
|
#
|
2512
2885
|
# @!attribute [rw] file_system_id
|
2513
|
-
#
|
2886
|
+
# Identifies the file system that you are updating.
|
2514
2887
|
# @return [String]
|
2515
2888
|
#
|
2516
2889
|
# @!attribute [rw] client_request_token
|
2517
|
-
#
|
2518
|
-
#
|
2519
|
-
#
|
2520
|
-
#
|
2890
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
2891
|
+
# idempotent updates. This string is automatically filled on your
|
2892
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
2893
|
+
# AWS SDK.
|
2521
2894
|
#
|
2522
2895
|
# **A suitable default value is auto-generated.** You should normally
|
2523
2896
|
# not need to pass this option.
|
2524
2897
|
# @return [String]
|
2525
2898
|
#
|
2899
|
+
# @!attribute [rw] storage_capacity
|
2900
|
+
# Use this parameter to increase the storage capacity of an Amazon FSx
|
2901
|
+
# for Windows File Server file system. Specifies the storage capacity
|
2902
|
+
# target value, GiB, for the file system you're updating. The storage
|
2903
|
+
# capacity target value must be at least 10 percent (%) greater than
|
2904
|
+
# the current storage capacity value. In order to increase storage
|
2905
|
+
# capacity, the file system needs to have at least 16 MB/s of
|
2906
|
+
# throughput capacity. You cannot make a storage capacity increase
|
2907
|
+
# request if there is an existing storage capacity increase request in
|
2908
|
+
# progress. For more information, see [Managing Storage Capacity][1].
|
2909
|
+
#
|
2910
|
+
#
|
2911
|
+
#
|
2912
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-storage-capacity.html
|
2913
|
+
# @return [Integer]
|
2914
|
+
#
|
2526
2915
|
# @!attribute [rw] windows_configuration
|
2527
|
-
# The configuration
|
2528
|
-
#
|
2529
|
-
# self-managed Active Directory configuration.
|
2916
|
+
# The configuration updates for an Amazon FSx for Windows File Server
|
2917
|
+
# file system.
|
2530
2918
|
# @return [Types::UpdateFileSystemWindowsConfiguration]
|
2531
2919
|
#
|
2532
2920
|
# @!attribute [rw] lustre_configuration
|
@@ -2539,8 +2927,10 @@ module Aws::FSx
|
|
2539
2927
|
class UpdateFileSystemRequest < Struct.new(
|
2540
2928
|
:file_system_id,
|
2541
2929
|
:client_request_token,
|
2930
|
+
:storage_capacity,
|
2542
2931
|
:windows_configuration,
|
2543
2932
|
:lustre_configuration)
|
2933
|
+
SENSITIVE = []
|
2544
2934
|
include Aws::Structure
|
2545
2935
|
end
|
2546
2936
|
|
@@ -2554,13 +2944,13 @@ module Aws::FSx
|
|
2554
2944
|
#
|
2555
2945
|
class UpdateFileSystemResponse < Struct.new(
|
2556
2946
|
:file_system)
|
2947
|
+
SENSITIVE = []
|
2557
2948
|
include Aws::Structure
|
2558
2949
|
end
|
2559
2950
|
|
2560
|
-
# Updates the
|
2561
|
-
#
|
2562
|
-
#
|
2563
|
-
# specify a non-null value for a property, that property is not updated.
|
2951
|
+
# Updates the configuration for an existing Amazon FSx for Windows File
|
2952
|
+
# Server file system. Amazon FSx only overwrites existing properties
|
2953
|
+
# with non-null values provided in the request.
|
2564
2954
|
#
|
2565
2955
|
# @note When making an API call, you may pass UpdateFileSystemWindowsConfiguration
|
2566
2956
|
# data as a hash:
|
@@ -2569,6 +2959,7 @@ module Aws::FSx
|
|
2569
2959
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2570
2960
|
# daily_automatic_backup_start_time: "DailyTime",
|
2571
2961
|
# automatic_backup_retention_days: 1,
|
2962
|
+
# throughput_capacity: 1,
|
2572
2963
|
# self_managed_active_directory_configuration: {
|
2573
2964
|
# user_name: "DirectoryUserName",
|
2574
2965
|
# password: "DirectoryPassword",
|
@@ -2577,24 +2968,45 @@ module Aws::FSx
|
|
2577
2968
|
# }
|
2578
2969
|
#
|
2579
2970
|
# @!attribute [rw] weekly_maintenance_start_time
|
2580
|
-
# The preferred time to perform weekly maintenance,
|
2581
|
-
# zone.
|
2971
|
+
# The preferred start time to perform weekly maintenance, formatted
|
2972
|
+
# d:HH:MM in the UTC time zone. Where d is the weekday number, from 1
|
2973
|
+
# through 7, with 1 = Monday and 7 = Sunday.
|
2582
2974
|
# @return [String]
|
2583
2975
|
#
|
2584
2976
|
# @!attribute [rw] daily_automatic_backup_start_time
|
2585
|
-
# The preferred time to
|
2586
|
-
# zone
|
2977
|
+
# The preferred time to start the daily automatic backup, in the UTC
|
2978
|
+
# time zone, for example, `02:00`
|
2587
2979
|
# @return [String]
|
2588
2980
|
#
|
2589
2981
|
# @!attribute [rw] automatic_backup_retention_days
|
2590
|
-
# The number of days to retain automatic backups. Setting this
|
2591
|
-
# disables automatic backups. You can retain
|
2592
|
-
# maximum of 35 days.
|
2982
|
+
# The number of days to retain automatic daily backups. Setting this
|
2983
|
+
# to zero (0) disables automatic daily backups. You can retain
|
2984
|
+
# automatic daily backups for a maximum of 35 days. For more
|
2985
|
+
# information, see [Working with Automatic Daily Backups][1].
|
2986
|
+
#
|
2987
|
+
#
|
2988
|
+
#
|
2989
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/using-backups.html#automatic-backups
|
2990
|
+
# @return [Integer]
|
2991
|
+
#
|
2992
|
+
# @!attribute [rw] throughput_capacity
|
2993
|
+
# Sets the target value for a file system's throughput capacity, in
|
2994
|
+
# MB/s, that you are updating the file system to. Valid values are 8,
|
2995
|
+
# 16, 32, 64, 128, 256, 512, 1024, 2048. You cannot make a throughput
|
2996
|
+
# capacity update request if there is an existing throughput capacity
|
2997
|
+
# update request in progress. For more information, see [Managing
|
2998
|
+
# Throughput Capacity][1].
|
2999
|
+
#
|
3000
|
+
#
|
3001
|
+
#
|
3002
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/WindowsGuide/managing-throughput-capacity.html
|
2593
3003
|
# @return [Integer]
|
2594
3004
|
#
|
2595
3005
|
# @!attribute [rw] self_managed_active_directory_configuration
|
2596
3006
|
# The configuration Amazon FSx uses to join the Windows File Server
|
2597
|
-
# instance to the self-managed Microsoft AD directory.
|
3007
|
+
# instance to the self-managed Microsoft AD directory. You cannot make
|
3008
|
+
# a self-managed Microsoft AD update request if there is an existing
|
3009
|
+
# self-managed Microsoft AD update request in progress.
|
2598
3010
|
# @return [Types::SelfManagedActiveDirectoryConfigurationUpdates]
|
2599
3011
|
#
|
2600
3012
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemWindowsConfiguration AWS API Documentation
|
@@ -2603,7 +3015,9 @@ module Aws::FSx
|
|
2603
3015
|
:weekly_maintenance_start_time,
|
2604
3016
|
:daily_automatic_backup_start_time,
|
2605
3017
|
:automatic_backup_retention_days,
|
3018
|
+
:throughput_capacity,
|
2606
3019
|
:self_managed_active_directory_configuration)
|
3020
|
+
SENSITIVE = []
|
2607
3021
|
include Aws::Structure
|
2608
3022
|
end
|
2609
3023
|
|
@@ -2699,8 +3113,9 @@ module Aws::FSx
|
|
2699
3113
|
# @return [Array<String>]
|
2700
3114
|
#
|
2701
3115
|
# @!attribute [rw] weekly_maintenance_start_time
|
2702
|
-
# The preferred time to perform weekly maintenance,
|
2703
|
-
# zone.
|
3116
|
+
# The preferred start time to perform weekly maintenance, formatted
|
3117
|
+
# d:HH:MM in the UTC time zone. d is the weekday number, from 1
|
3118
|
+
# through 7, beginning with Monday and ending with Sunday.
|
2704
3119
|
# @return [String]
|
2705
3120
|
#
|
2706
3121
|
# @!attribute [rw] daily_automatic_backup_start_time
|
@@ -2740,6 +3155,7 @@ module Aws::FSx
|
|
2740
3155
|
:daily_automatic_backup_start_time,
|
2741
3156
|
:automatic_backup_retention_days,
|
2742
3157
|
:copy_tags_to_backups)
|
3158
|
+
SENSITIVE = []
|
2743
3159
|
include Aws::Structure
|
2744
3160
|
end
|
2745
3161
|
|