aws-sdk-fsx 1.20.0 → 1.25.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 +190 -86
- data/lib/aws-sdk-fsx/client_api.rb +37 -2
- 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 +493 -75
- 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:
|
@@ -21,6 +23,7 @@ module Aws::FSx
|
|
21
23
|
AdministrativeActionType = Shapes::StringShape.new(name: 'AdministrativeActionType')
|
22
24
|
AdministrativeActions = Shapes::ListShape.new(name: 'AdministrativeActions')
|
23
25
|
ArchivePath = Shapes::StringShape.new(name: 'ArchivePath')
|
26
|
+
AutoImportPolicyType = Shapes::StringShape.new(name: 'AutoImportPolicyType')
|
24
27
|
AutomaticBackupRetentionDays = Shapes::IntegerShape.new(name: 'AutomaticBackupRetentionDays')
|
25
28
|
Backup = Shapes::StructureShape.new(name: 'Backup')
|
26
29
|
BackupFailureDetails = Shapes::StructureShape.new(name: 'BackupFailureDetails')
|
@@ -51,6 +54,8 @@ module Aws::FSx
|
|
51
54
|
DNSName = Shapes::StringShape.new(name: 'DNSName')
|
52
55
|
DailyTime = Shapes::StringShape.new(name: 'DailyTime')
|
53
56
|
DataRepositoryConfiguration = Shapes::StructureShape.new(name: 'DataRepositoryConfiguration')
|
57
|
+
DataRepositoryFailureDetails = Shapes::StructureShape.new(name: 'DataRepositoryFailureDetails')
|
58
|
+
DataRepositoryLifecycle = Shapes::StringShape.new(name: 'DataRepositoryLifecycle')
|
54
59
|
DataRepositoryTask = Shapes::StructureShape.new(name: 'DataRepositoryTask')
|
55
60
|
DataRepositoryTaskEnded = Shapes::StructureShape.new(name: 'DataRepositoryTaskEnded')
|
56
61
|
DataRepositoryTaskExecuting = Shapes::StructureShape.new(name: 'DataRepositoryTaskExecuting')
|
@@ -69,6 +74,8 @@ module Aws::FSx
|
|
69
74
|
DataRepositoryTasks = Shapes::ListShape.new(name: 'DataRepositoryTasks')
|
70
75
|
DeleteBackupRequest = Shapes::StructureShape.new(name: 'DeleteBackupRequest')
|
71
76
|
DeleteBackupResponse = Shapes::StructureShape.new(name: 'DeleteBackupResponse')
|
77
|
+
DeleteFileSystemLustreConfiguration = Shapes::StructureShape.new(name: 'DeleteFileSystemLustreConfiguration')
|
78
|
+
DeleteFileSystemLustreResponse = Shapes::StructureShape.new(name: 'DeleteFileSystemLustreResponse')
|
72
79
|
DeleteFileSystemRequest = Shapes::StructureShape.new(name: 'DeleteFileSystemRequest')
|
73
80
|
DeleteFileSystemResponse = Shapes::StructureShape.new(name: 'DeleteFileSystemResponse')
|
74
81
|
DeleteFileSystemWindowsConfiguration = Shapes::StructureShape.new(name: 'DeleteFileSystemWindowsConfiguration')
|
@@ -264,6 +271,7 @@ module Aws::FSx
|
|
264
271
|
CreateFileSystemFromBackupRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
|
265
272
|
CreateFileSystemFromBackupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
266
273
|
CreateFileSystemFromBackupRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
|
274
|
+
CreateFileSystemFromBackupRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: CreateFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
|
267
275
|
CreateFileSystemFromBackupRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "StorageType"))
|
268
276
|
CreateFileSystemFromBackupRequest.struct_class = Types::CreateFileSystemFromBackupRequest
|
269
277
|
|
@@ -275,7 +283,11 @@ module Aws::FSx
|
|
275
283
|
CreateFileSystemLustreConfiguration.add_member(:export_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ExportPath"))
|
276
284
|
CreateFileSystemLustreConfiguration.add_member(:imported_file_chunk_size, Shapes::ShapeRef.new(shape: Megabytes, location_name: "ImportedFileChunkSize"))
|
277
285
|
CreateFileSystemLustreConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: LustreDeploymentType, location_name: "DeploymentType"))
|
286
|
+
CreateFileSystemLustreConfiguration.add_member(:auto_import_policy, Shapes::ShapeRef.new(shape: AutoImportPolicyType, location_name: "AutoImportPolicy"))
|
278
287
|
CreateFileSystemLustreConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
288
|
+
CreateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
289
|
+
CreateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
290
|
+
CreateFileSystemLustreConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
279
291
|
CreateFileSystemLustreConfiguration.struct_class = Types::CreateFileSystemLustreConfiguration
|
280
292
|
|
281
293
|
CreateFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
@@ -304,11 +316,17 @@ module Aws::FSx
|
|
304
316
|
CreateFileSystemWindowsConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
305
317
|
CreateFileSystemWindowsConfiguration.struct_class = Types::CreateFileSystemWindowsConfiguration
|
306
318
|
|
319
|
+
DataRepositoryConfiguration.add_member(:lifecycle, Shapes::ShapeRef.new(shape: DataRepositoryLifecycle, location_name: "Lifecycle"))
|
307
320
|
DataRepositoryConfiguration.add_member(:import_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ImportPath"))
|
308
321
|
DataRepositoryConfiguration.add_member(:export_path, Shapes::ShapeRef.new(shape: ArchivePath, location_name: "ExportPath"))
|
309
322
|
DataRepositoryConfiguration.add_member(:imported_file_chunk_size, Shapes::ShapeRef.new(shape: Megabytes, location_name: "ImportedFileChunkSize"))
|
323
|
+
DataRepositoryConfiguration.add_member(:auto_import_policy, Shapes::ShapeRef.new(shape: AutoImportPolicyType, location_name: "AutoImportPolicy"))
|
324
|
+
DataRepositoryConfiguration.add_member(:failure_details, Shapes::ShapeRef.new(shape: DataRepositoryFailureDetails, location_name: "FailureDetails"))
|
310
325
|
DataRepositoryConfiguration.struct_class = Types::DataRepositoryConfiguration
|
311
326
|
|
327
|
+
DataRepositoryFailureDetails.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
328
|
+
DataRepositoryFailureDetails.struct_class = Types::DataRepositoryFailureDetails
|
329
|
+
|
312
330
|
DataRepositoryTask.add_member(:task_id, Shapes::ShapeRef.new(shape: TaskId, required: true, location_name: "TaskId"))
|
313
331
|
DataRepositoryTask.add_member(:lifecycle, Shapes::ShapeRef.new(shape: DataRepositoryTaskLifecycle, required: true, location_name: "Lifecycle"))
|
314
332
|
DataRepositoryTask.add_member(:type, Shapes::ShapeRef.new(shape: DataRepositoryTaskType, required: true, location_name: "Type"))
|
@@ -362,14 +380,24 @@ module Aws::FSx
|
|
362
380
|
DeleteBackupResponse.add_member(:lifecycle, Shapes::ShapeRef.new(shape: BackupLifecycle, location_name: "Lifecycle"))
|
363
381
|
DeleteBackupResponse.struct_class = Types::DeleteBackupResponse
|
364
382
|
|
383
|
+
DeleteFileSystemLustreConfiguration.add_member(:skip_final_backup, Shapes::ShapeRef.new(shape: Flag, location_name: "SkipFinalBackup"))
|
384
|
+
DeleteFileSystemLustreConfiguration.add_member(:final_backup_tags, Shapes::ShapeRef.new(shape: Tags, location_name: "FinalBackupTags"))
|
385
|
+
DeleteFileSystemLustreConfiguration.struct_class = Types::DeleteFileSystemLustreConfiguration
|
386
|
+
|
387
|
+
DeleteFileSystemLustreResponse.add_member(:final_backup_id, Shapes::ShapeRef.new(shape: BackupId, location_name: "FinalBackupId"))
|
388
|
+
DeleteFileSystemLustreResponse.add_member(:final_backup_tags, Shapes::ShapeRef.new(shape: Tags, location_name: "FinalBackupTags"))
|
389
|
+
DeleteFileSystemLustreResponse.struct_class = Types::DeleteFileSystemLustreResponse
|
390
|
+
|
365
391
|
DeleteFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
366
392
|
DeleteFileSystemRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
|
367
393
|
DeleteFileSystemRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: DeleteFileSystemWindowsConfiguration, location_name: "WindowsConfiguration"))
|
394
|
+
DeleteFileSystemRequest.add_member(:lustre_configuration, Shapes::ShapeRef.new(shape: DeleteFileSystemLustreConfiguration, location_name: "LustreConfiguration"))
|
368
395
|
DeleteFileSystemRequest.struct_class = Types::DeleteFileSystemRequest
|
369
396
|
|
370
397
|
DeleteFileSystemResponse.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, location_name: "FileSystemId"))
|
371
398
|
DeleteFileSystemResponse.add_member(:lifecycle, Shapes::ShapeRef.new(shape: FileSystemLifecycle, location_name: "Lifecycle"))
|
372
399
|
DeleteFileSystemResponse.add_member(:windows_response, Shapes::ShapeRef.new(shape: DeleteFileSystemWindowsResponse, location_name: "WindowsResponse"))
|
400
|
+
DeleteFileSystemResponse.add_member(:lustre_response, Shapes::ShapeRef.new(shape: DeleteFileSystemLustreResponse, location_name: "LustreResponse"))
|
373
401
|
DeleteFileSystemResponse.struct_class = Types::DeleteFileSystemResponse
|
374
402
|
|
375
403
|
DeleteFileSystemWindowsConfiguration.add_member(:skip_final_backup, Shapes::ShapeRef.new(shape: Flag, location_name: "SkipFinalBackup"))
|
@@ -486,6 +514,9 @@ module Aws::FSx
|
|
486
514
|
LustreFileSystemConfiguration.add_member(:deployment_type, Shapes::ShapeRef.new(shape: LustreDeploymentType, location_name: "DeploymentType"))
|
487
515
|
LustreFileSystemConfiguration.add_member(:per_unit_storage_throughput, Shapes::ShapeRef.new(shape: PerUnitStorageThroughput, location_name: "PerUnitStorageThroughput"))
|
488
516
|
LustreFileSystemConfiguration.add_member(:mount_name, Shapes::ShapeRef.new(shape: LustreFileSystemMountName, location_name: "MountName"))
|
517
|
+
LustreFileSystemConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
518
|
+
LustreFileSystemConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
519
|
+
LustreFileSystemConfiguration.add_member(:copy_tags_to_backups, Shapes::ShapeRef.new(shape: Flag, location_name: "CopyTagsToBackups"))
|
489
520
|
LustreFileSystemConfiguration.struct_class = Types::LustreFileSystemConfiguration
|
490
521
|
|
491
522
|
MissingFileSystemConfiguration.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
@@ -533,8 +564,8 @@ module Aws::FSx
|
|
533
564
|
|
534
565
|
SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
|
535
566
|
|
536
|
-
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, location_name: "Key"))
|
537
|
-
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, location_name: "Value"))
|
567
|
+
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
568
|
+
Tag.add_member(:value, Shapes::ShapeRef.new(shape: TagValue, required: true, location_name: "Value"))
|
538
569
|
Tag.struct_class = Types::Tag
|
539
570
|
|
540
571
|
TagKeys.member = Shapes::ShapeRef.new(shape: TagKey)
|
@@ -559,6 +590,9 @@ module Aws::FSx
|
|
559
590
|
UntagResourceResponse.struct_class = Types::UntagResourceResponse
|
560
591
|
|
561
592
|
UpdateFileSystemLustreConfiguration.add_member(:weekly_maintenance_start_time, Shapes::ShapeRef.new(shape: WeeklyTime, location_name: "WeeklyMaintenanceStartTime"))
|
593
|
+
UpdateFileSystemLustreConfiguration.add_member(:daily_automatic_backup_start_time, Shapes::ShapeRef.new(shape: DailyTime, location_name: "DailyAutomaticBackupStartTime"))
|
594
|
+
UpdateFileSystemLustreConfiguration.add_member(:automatic_backup_retention_days, Shapes::ShapeRef.new(shape: AutomaticBackupRetentionDays, location_name: "AutomaticBackupRetentionDays"))
|
595
|
+
UpdateFileSystemLustreConfiguration.add_member(:auto_import_policy, Shapes::ShapeRef.new(shape: AutoImportPolicyType, location_name: "AutoImportPolicy"))
|
562
596
|
UpdateFileSystemLustreConfiguration.struct_class = Types::UpdateFileSystemLustreConfiguration
|
563
597
|
|
564
598
|
UpdateFileSystemRequest.add_member(:file_system_id, Shapes::ShapeRef.new(shape: FileSystemId, required: true, location_name: "FileSystemId"))
|
@@ -682,6 +716,7 @@ module Aws::FSx
|
|
682
716
|
o.errors << Shapes::ShapeRef.new(shape: ActiveDirectoryError)
|
683
717
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleParameterError)
|
684
718
|
o.errors << Shapes::ShapeRef.new(shape: InvalidNetworkSettings)
|
719
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidPerUnitStorageThroughput)
|
685
720
|
o.errors << Shapes::ShapeRef.new(shape: ServiceLimitExceeded)
|
686
721
|
o.errors << Shapes::ShapeRef.new(shape: BackupNotFound)
|
687
722
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerError)
|
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,6 +51,7 @@ 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
|
|
@@ -129,6 +133,7 @@ module Aws::FSx
|
|
129
133
|
:status,
|
130
134
|
:target_file_system_values,
|
131
135
|
:failure_details)
|
136
|
+
SENSITIVE = []
|
132
137
|
include Aws::Structure
|
133
138
|
end
|
134
139
|
|
@@ -142,11 +147,11 @@ module Aws::FSx
|
|
142
147
|
#
|
143
148
|
class AdministrativeActionFailureDetails < Struct.new(
|
144
149
|
:message)
|
150
|
+
SENSITIVE = []
|
145
151
|
include Aws::Structure
|
146
152
|
end
|
147
153
|
|
148
|
-
# A backup of an Amazon FSx for
|
149
|
-
# create a new file system from a backup to protect against data loss.
|
154
|
+
# A backup of an Amazon FSx for file system.
|
150
155
|
#
|
151
156
|
# @!attribute [rw] backup_id
|
152
157
|
# The ID of the backup.
|
@@ -161,7 +166,7 @@ module Aws::FSx
|
|
161
166
|
# @return [Types::BackupFailureDetails]
|
162
167
|
#
|
163
168
|
# @!attribute [rw] type
|
164
|
-
# The type of the backup.
|
169
|
+
# The type of the file system backup.
|
165
170
|
# @return [String]
|
166
171
|
#
|
167
172
|
# @!attribute [rw] progress_percent
|
@@ -210,6 +215,7 @@ module Aws::FSx
|
|
210
215
|
:tags,
|
211
216
|
:file_system,
|
212
217
|
:directory_information)
|
218
|
+
SENSITIVE = []
|
213
219
|
include Aws::Structure
|
214
220
|
end
|
215
221
|
|
@@ -224,6 +230,7 @@ module Aws::FSx
|
|
224
230
|
#
|
225
231
|
class BackupFailureDetails < Struct.new(
|
226
232
|
:message)
|
233
|
+
SENSITIVE = []
|
227
234
|
include Aws::Structure
|
228
235
|
end
|
229
236
|
|
@@ -238,6 +245,7 @@ module Aws::FSx
|
|
238
245
|
#
|
239
246
|
class BackupInProgress < Struct.new(
|
240
247
|
:message)
|
248
|
+
SENSITIVE = []
|
241
249
|
include Aws::Structure
|
242
250
|
end
|
243
251
|
|
@@ -251,6 +259,7 @@ module Aws::FSx
|
|
251
259
|
#
|
252
260
|
class BackupNotFound < Struct.new(
|
253
261
|
:message)
|
262
|
+
SENSITIVE = []
|
254
263
|
include Aws::Structure
|
255
264
|
end
|
256
265
|
|
@@ -270,6 +279,7 @@ module Aws::FSx
|
|
270
279
|
class BackupRestoring < Struct.new(
|
271
280
|
:message,
|
272
281
|
:file_system_id)
|
282
|
+
SENSITIVE = []
|
273
283
|
include Aws::Structure
|
274
284
|
end
|
275
285
|
|
@@ -283,6 +293,7 @@ module Aws::FSx
|
|
283
293
|
#
|
284
294
|
class BadRequest < Struct.new(
|
285
295
|
:message)
|
296
|
+
SENSITIVE = []
|
286
297
|
include Aws::Structure
|
287
298
|
end
|
288
299
|
|
@@ -303,6 +314,7 @@ module Aws::FSx
|
|
303
314
|
#
|
304
315
|
class CancelDataRepositoryTaskRequest < Struct.new(
|
305
316
|
:task_id)
|
317
|
+
SENSITIVE = []
|
306
318
|
include Aws::Structure
|
307
319
|
end
|
308
320
|
|
@@ -334,6 +346,7 @@ module Aws::FSx
|
|
334
346
|
class CancelDataRepositoryTaskResponse < Struct.new(
|
335
347
|
:lifecycle,
|
336
348
|
:task_id)
|
349
|
+
SENSITIVE = []
|
337
350
|
include Aws::Structure
|
338
351
|
end
|
339
352
|
|
@@ -396,6 +409,7 @@ module Aws::FSx
|
|
396
409
|
:path,
|
397
410
|
:format,
|
398
411
|
:scope)
|
412
|
+
SENSITIVE = []
|
399
413
|
include Aws::Structure
|
400
414
|
end
|
401
415
|
|
@@ -409,8 +423,8 @@ module Aws::FSx
|
|
409
423
|
# client_request_token: "ClientRequestToken",
|
410
424
|
# tags: [
|
411
425
|
# {
|
412
|
-
# key: "TagKey",
|
413
|
-
# value: "TagValue",
|
426
|
+
# key: "TagKey", # required
|
427
|
+
# value: "TagValue", # required
|
414
428
|
# },
|
415
429
|
# ],
|
416
430
|
# }
|
@@ -420,10 +434,10 @@ module Aws::FSx
|
|
420
434
|
# @return [String]
|
421
435
|
#
|
422
436
|
# @!attribute [rw] client_request_token
|
423
|
-
#
|
424
|
-
#
|
425
|
-
#
|
426
|
-
#
|
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.
|
427
441
|
#
|
428
442
|
# **A suitable default value is auto-generated.** You should normally
|
429
443
|
# not need to pass this option.
|
@@ -431,7 +445,10 @@ module Aws::FSx
|
|
431
445
|
#
|
432
446
|
# @!attribute [rw] tags
|
433
447
|
# The tags to apply to the backup at backup creation. The key value of
|
434
|
-
# 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.
|
435
452
|
# @return [Array<Types::Tag>]
|
436
453
|
#
|
437
454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateBackupRequest AWS API Documentation
|
@@ -440,6 +457,7 @@ module Aws::FSx
|
|
440
457
|
:file_system_id,
|
441
458
|
:client_request_token,
|
442
459
|
:tags)
|
460
|
+
SENSITIVE = []
|
443
461
|
include Aws::Structure
|
444
462
|
end
|
445
463
|
|
@@ -453,6 +471,7 @@ module Aws::FSx
|
|
453
471
|
#
|
454
472
|
class CreateBackupResponse < Struct.new(
|
455
473
|
:backup)
|
474
|
+
SENSITIVE = []
|
456
475
|
include Aws::Structure
|
457
476
|
end
|
458
477
|
|
@@ -472,8 +491,8 @@ module Aws::FSx
|
|
472
491
|
# client_request_token: "ClientRequestToken",
|
473
492
|
# tags: [
|
474
493
|
# {
|
475
|
-
# key: "TagKey",
|
476
|
-
# value: "TagValue",
|
494
|
+
# key: "TagKey", # required
|
495
|
+
# value: "TagValue", # required
|
477
496
|
# },
|
478
497
|
# ],
|
479
498
|
# }
|
@@ -531,6 +550,7 @@ module Aws::FSx
|
|
531
550
|
:report,
|
532
551
|
:client_request_token,
|
533
552
|
:tags)
|
553
|
+
SENSITIVE = []
|
534
554
|
include Aws::Structure
|
535
555
|
end
|
536
556
|
|
@@ -542,6 +562,7 @@ module Aws::FSx
|
|
542
562
|
#
|
543
563
|
class CreateDataRepositoryTaskResponse < Struct.new(
|
544
564
|
:data_repository_task)
|
565
|
+
SENSITIVE = []
|
545
566
|
include Aws::Structure
|
546
567
|
end
|
547
568
|
|
@@ -557,8 +578,8 @@ module Aws::FSx
|
|
557
578
|
# security_group_ids: ["SecurityGroupId"],
|
558
579
|
# tags: [
|
559
580
|
# {
|
560
|
-
# key: "TagKey",
|
561
|
-
# value: "TagValue",
|
581
|
+
# key: "TagKey", # required
|
582
|
+
# value: "TagValue", # required
|
562
583
|
# },
|
563
584
|
# ],
|
564
585
|
# windows_configuration: {
|
@@ -579,6 +600,18 @@ module Aws::FSx
|
|
579
600
|
# automatic_backup_retention_days: 1,
|
580
601
|
# copy_tags_to_backups: false,
|
581
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
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
610
|
+
# per_unit_storage_throughput: 1,
|
611
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
612
|
+
# automatic_backup_retention_days: 1,
|
613
|
+
# copy_tags_to_backups: false,
|
614
|
+
# },
|
582
615
|
# storage_type: "SSD", # accepts SSD, HDD
|
583
616
|
# }
|
584
617
|
#
|
@@ -588,10 +621,10 @@ module Aws::FSx
|
|
588
621
|
# @return [String]
|
589
622
|
#
|
590
623
|
# @!attribute [rw] client_request_token
|
591
|
-
#
|
592
|
-
#
|
593
|
-
#
|
594
|
-
#
|
624
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
625
|
+
# idempotent creation. This string is automatically filled on your
|
626
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
627
|
+
# AWS SDK.
|
595
628
|
#
|
596
629
|
# **A suitable default value is auto-generated.** You should normally
|
597
630
|
# not need to pass this option.
|
@@ -627,6 +660,10 @@ module Aws::FSx
|
|
627
660
|
# The configuration for this Microsoft Windows file system.
|
628
661
|
# @return [Types::CreateFileSystemWindowsConfiguration]
|
629
662
|
#
|
663
|
+
# @!attribute [rw] lustre_configuration
|
664
|
+
# The Lustre configuration for the file system being created.
|
665
|
+
# @return [Types::CreateFileSystemLustreConfiguration]
|
666
|
+
#
|
630
667
|
# @!attribute [rw] storage_type
|
631
668
|
# Sets the storage type for the Windows file system you're creating
|
632
669
|
# from a backup. Valid values are `SSD` and `HDD`.
|
@@ -659,7 +696,9 @@ module Aws::FSx
|
|
659
696
|
:security_group_ids,
|
660
697
|
:tags,
|
661
698
|
:windows_configuration,
|
699
|
+
:lustre_configuration,
|
662
700
|
:storage_type)
|
701
|
+
SENSITIVE = []
|
663
702
|
include Aws::Structure
|
664
703
|
end
|
665
704
|
|
@@ -673,6 +712,7 @@ module Aws::FSx
|
|
673
712
|
#
|
674
713
|
class CreateFileSystemFromBackupResponse < Struct.new(
|
675
714
|
:file_system)
|
715
|
+
SENSITIVE = []
|
676
716
|
include Aws::Structure
|
677
717
|
end
|
678
718
|
|
@@ -687,7 +727,11 @@ module Aws::FSx
|
|
687
727
|
# export_path: "ArchivePath",
|
688
728
|
# imported_file_chunk_size: 1,
|
689
729
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
730
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
690
731
|
# per_unit_storage_throughput: 1,
|
732
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
733
|
+
# automatic_backup_retention_days: 1,
|
734
|
+
# copy_tags_to_backups: false,
|
691
735
|
# }
|
692
736
|
#
|
693
737
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -741,8 +785,8 @@ module Aws::FSx
|
|
741
785
|
# @return [Integer]
|
742
786
|
#
|
743
787
|
# @!attribute [rw] deployment_type
|
744
|
-
#
|
745
|
-
#
|
788
|
+
# Choose `SCRATCH_1` and `SCRATCH_2` deployment types when you need
|
789
|
+
# temporary storage and shorter-term processing of data. The
|
746
790
|
# `SCRATCH_2` deployment type provides in-transit encryption of data
|
747
791
|
# and higher burst throughput capacity than `SCRATCH_1`.
|
748
792
|
#
|
@@ -766,6 +810,37 @@ module Aws::FSx
|
|
766
810
|
# [3]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/encryption-in-transit-fsxl.html
|
767
811
|
# @return [String]
|
768
812
|
#
|
813
|
+
# @!attribute [rw] auto_import_policy
|
814
|
+
# (Optional) Use this property to configure the AutoImport feature on
|
815
|
+
# the file system's linked Amazon S3 data repository. You use
|
816
|
+
# AutoImport to update the contents of your FSx for Lustre file system
|
817
|
+
# automatically with changes that occur in the linked S3 data
|
818
|
+
# repository. `AutoImportPolicy` can have the following values:
|
819
|
+
#
|
820
|
+
# * `NONE` - (Default) AutoImport is off. Changes in the linked data
|
821
|
+
# repository are not reflected on the FSx file system.
|
822
|
+
#
|
823
|
+
# * `NEW` - AutoImport is on. New files in the linked data repository
|
824
|
+
# that do not currently exist in the FSx file system are
|
825
|
+
# automatically imported. Updates to existing FSx files are not
|
826
|
+
# imported to the FSx file system. Files deleted from the linked
|
827
|
+
# data repository are not deleted from the FSx file system.
|
828
|
+
#
|
829
|
+
# * `NEW_CHANGED` - AutoImport is on. New files in the linked S3 data
|
830
|
+
# repository that do not currently exist in the FSx file system are
|
831
|
+
# automatically imported. Changes to existing FSx files in the
|
832
|
+
# linked repository are also automatically imported to the FSx file
|
833
|
+
# system. Files deleted from the linked data repository are not
|
834
|
+
# deleted from the FSx file system.
|
835
|
+
#
|
836
|
+
# For more information, see [Automatically import updates from your S3
|
837
|
+
# bucket][1].
|
838
|
+
#
|
839
|
+
#
|
840
|
+
#
|
841
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/autoimport-data-repo.html
|
842
|
+
# @return [String]
|
843
|
+
#
|
769
844
|
# @!attribute [rw] per_unit_storage_throughput
|
770
845
|
# Required for the `PERSISTENT_1` deployment type, describes the
|
771
846
|
# amount of read and write throughput for each 1 tebibyte of storage,
|
@@ -779,6 +854,35 @@ module Aws::FSx
|
|
779
854
|
# Valid values are 50, 100, 200.
|
780
855
|
# @return [Integer]
|
781
856
|
#
|
857
|
+
# @!attribute [rw] daily_automatic_backup_start_time
|
858
|
+
# A recurring daily time, in the format `HH:MM`. `HH` is the
|
859
|
+
# zero-padded hour of the day (0-23), and `MM` is the zero-padded
|
860
|
+
# minute of the hour. For example, `05:00` specifies 5 AM daily.
|
861
|
+
# @return [String]
|
862
|
+
#
|
863
|
+
# @!attribute [rw] automatic_backup_retention_days
|
864
|
+
# The number of days to retain automatic backups. Setting this to 0
|
865
|
+
# disables automatic backups. You can retain automatic backups for a
|
866
|
+
# maximum of 35 days. The default is 0.
|
867
|
+
# @return [Integer]
|
868
|
+
#
|
869
|
+
# @!attribute [rw] copy_tags_to_backups
|
870
|
+
# A boolean flag indicating whether tags for the file system should be
|
871
|
+
# copied to backups. This value defaults to false. If it's set to
|
872
|
+
# true, all tags for the file system are copied to all automatic and
|
873
|
+
# user-initiated backups where the user doesn't specify tags. If this
|
874
|
+
# value is true, and you specify one or more tags, only the specified
|
875
|
+
# tags are copied to backups. If you specify one or more tags when
|
876
|
+
# creating a user-initiated backup, no tags are copied from the file
|
877
|
+
# system, regardless of this value.
|
878
|
+
#
|
879
|
+
# For more information, see [Working with backups][1].
|
880
|
+
#
|
881
|
+
#
|
882
|
+
#
|
883
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/using-backups-fsx.html
|
884
|
+
# @return [Boolean]
|
885
|
+
#
|
782
886
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/CreateFileSystemLustreConfiguration AWS API Documentation
|
783
887
|
#
|
784
888
|
class CreateFileSystemLustreConfiguration < Struct.new(
|
@@ -787,7 +891,12 @@ module Aws::FSx
|
|
787
891
|
:export_path,
|
788
892
|
:imported_file_chunk_size,
|
789
893
|
:deployment_type,
|
790
|
-
:
|
894
|
+
:auto_import_policy,
|
895
|
+
:per_unit_storage_throughput,
|
896
|
+
:daily_automatic_backup_start_time,
|
897
|
+
:automatic_backup_retention_days,
|
898
|
+
:copy_tags_to_backups)
|
899
|
+
SENSITIVE = []
|
791
900
|
include Aws::Structure
|
792
901
|
end
|
793
902
|
|
@@ -805,8 +914,8 @@ module Aws::FSx
|
|
805
914
|
# security_group_ids: ["SecurityGroupId"],
|
806
915
|
# tags: [
|
807
916
|
# {
|
808
|
-
# key: "TagKey",
|
809
|
-
# value: "TagValue",
|
917
|
+
# key: "TagKey", # required
|
918
|
+
# value: "TagValue", # required
|
810
919
|
# },
|
811
920
|
# ],
|
812
921
|
# kms_key_id: "KmsKeyId",
|
@@ -834,15 +943,19 @@ module Aws::FSx
|
|
834
943
|
# export_path: "ArchivePath",
|
835
944
|
# imported_file_chunk_size: 1,
|
836
945
|
# deployment_type: "SCRATCH_1", # accepts SCRATCH_1, SCRATCH_2, PERSISTENT_1
|
946
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
837
947
|
# per_unit_storage_throughput: 1,
|
948
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
949
|
+
# automatic_backup_retention_days: 1,
|
950
|
+
# copy_tags_to_backups: false,
|
838
951
|
# },
|
839
952
|
# }
|
840
953
|
#
|
841
954
|
# @!attribute [rw] client_request_token
|
842
|
-
#
|
843
|
-
#
|
844
|
-
#
|
845
|
-
#
|
955
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
956
|
+
# idempotent creation. This string is automatically filled on your
|
957
|
+
# behalf when you use the AWS Command Line Interface (AWS CLI) or an
|
958
|
+
# AWS SDK.
|
846
959
|
#
|
847
960
|
# **A suitable default value is auto-generated.** You should normally
|
848
961
|
# not need to pass this option.
|
@@ -953,6 +1066,7 @@ module Aws::FSx
|
|
953
1066
|
:kms_key_id,
|
954
1067
|
:windows_configuration,
|
955
1068
|
:lustre_configuration)
|
1069
|
+
SENSITIVE = []
|
956
1070
|
include Aws::Structure
|
957
1071
|
end
|
958
1072
|
|
@@ -966,6 +1080,7 @@ module Aws::FSx
|
|
966
1080
|
#
|
967
1081
|
class CreateFileSystemResponse < Struct.new(
|
968
1082
|
:file_system)
|
1083
|
+
SENSITIVE = []
|
969
1084
|
include Aws::Structure
|
970
1085
|
end
|
971
1086
|
|
@@ -1086,12 +1201,37 @@ module Aws::FSx
|
|
1086
1201
|
:daily_automatic_backup_start_time,
|
1087
1202
|
:automatic_backup_retention_days,
|
1088
1203
|
:copy_tags_to_backups)
|
1204
|
+
SENSITIVE = []
|
1089
1205
|
include Aws::Structure
|
1090
1206
|
end
|
1091
1207
|
|
1092
1208
|
# The data repository configuration object for Lustre file systems
|
1093
1209
|
# returned in the response of the `CreateFileSystem` operation.
|
1094
1210
|
#
|
1211
|
+
# @!attribute [rw] lifecycle
|
1212
|
+
# Describes the state of the file system's S3 durable data
|
1213
|
+
# repository, if it is configured with an S3 repository. The lifecycle
|
1214
|
+
# can have the following values:
|
1215
|
+
#
|
1216
|
+
# * `CREATING` - The data repository configuration between the FSx
|
1217
|
+
# file system and the linked S3 data repository is being created.
|
1218
|
+
# The data repository is unavailable.
|
1219
|
+
#
|
1220
|
+
# * `AVAILABLE` - The data repository is available for use.
|
1221
|
+
#
|
1222
|
+
# * `MISCONFIGURED` - Amazon FSx cannot automatically import updates
|
1223
|
+
# from the S3 bucket until the data repository configuration is
|
1224
|
+
# corrected. For more information, see [Troubleshooting a
|
1225
|
+
# Misconfigured linked S3 bucket][1].
|
1226
|
+
#
|
1227
|
+
# * `UPDATING` - The data repository is undergoing a customer
|
1228
|
+
# initiated update and availability may be impacted.
|
1229
|
+
#
|
1230
|
+
#
|
1231
|
+
#
|
1232
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/troubleshooting.html#troubleshooting-misconfigured-data-repository
|
1233
|
+
# @return [String]
|
1234
|
+
#
|
1095
1235
|
# @!attribute [rw] import_path
|
1096
1236
|
# The import path to the Amazon S3 bucket (and optional prefix) that
|
1097
1237
|
# you're using as the data repository for your FSx for Lustre file
|
@@ -1117,12 +1257,67 @@ module Aws::FSx
|
|
1117
1257
|
# TB.
|
1118
1258
|
# @return [Integer]
|
1119
1259
|
#
|
1260
|
+
# @!attribute [rw] auto_import_policy
|
1261
|
+
# Describes the file system's linked S3 data repository's
|
1262
|
+
# `AutoImportPolicy`. The AutoImportPolicy configures how your FSx for
|
1263
|
+
# Lustre file system automatically updates its contents with changes
|
1264
|
+
# that occur in the linked S3 data repository. `AutoImportPolicy` can
|
1265
|
+
# have the following values:
|
1266
|
+
#
|
1267
|
+
# * `NONE` - (Default) AutoImport is off. Changes in the linked data
|
1268
|
+
# repository are not reflected on the FSx file system.
|
1269
|
+
#
|
1270
|
+
# * `NEW` - AutoImport is on. New files in the linked data repository
|
1271
|
+
# that do not currently exist in the FSx file system are
|
1272
|
+
# automatically imported. Updates to existing FSx files are not
|
1273
|
+
# imported to the FSx file system. Files deleted from the linked
|
1274
|
+
# data repository are not deleted from the FSx file system.
|
1275
|
+
#
|
1276
|
+
# * `NEW_CHANGED` - AutoImport is on. New files in the linked S3 data
|
1277
|
+
# repository that do not currently exist in the FSx file system are
|
1278
|
+
# automatically imported. Changes to existing FSx files in the
|
1279
|
+
# linked repository are also automatically imported to the FSx file
|
1280
|
+
# system. Files deleted from the linked data repository are not
|
1281
|
+
# deleted from the FSx file system.
|
1282
|
+
#
|
1283
|
+
# For more information, see [Automatically import updates from your S3
|
1284
|
+
# bucket][1].
|
1285
|
+
#
|
1286
|
+
#
|
1287
|
+
#
|
1288
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/autoimport-data-repo.html
|
1289
|
+
# @return [String]
|
1290
|
+
#
|
1291
|
+
# @!attribute [rw] failure_details
|
1292
|
+
# Provides detailed information about the data respository if its
|
1293
|
+
# `Lifecycle` is set to `MISCONFIGURED`.
|
1294
|
+
# @return [Types::DataRepositoryFailureDetails]
|
1295
|
+
#
|
1120
1296
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DataRepositoryConfiguration AWS API Documentation
|
1121
1297
|
#
|
1122
1298
|
class DataRepositoryConfiguration < Struct.new(
|
1299
|
+
:lifecycle,
|
1123
1300
|
:import_path,
|
1124
1301
|
:export_path,
|
1125
|
-
:imported_file_chunk_size
|
1302
|
+
:imported_file_chunk_size,
|
1303
|
+
:auto_import_policy,
|
1304
|
+
:failure_details)
|
1305
|
+
SENSITIVE = []
|
1306
|
+
include Aws::Structure
|
1307
|
+
end
|
1308
|
+
|
1309
|
+
# Provides detailed information about the data respository if its
|
1310
|
+
# `Lifecycle` is set to `MISCONFIGURED`.
|
1311
|
+
#
|
1312
|
+
# @!attribute [rw] message
|
1313
|
+
# A detailed error message.
|
1314
|
+
# @return [String]
|
1315
|
+
#
|
1316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DataRepositoryFailureDetails AWS API Documentation
|
1317
|
+
#
|
1318
|
+
class DataRepositoryFailureDetails < Struct.new(
|
1319
|
+
:message)
|
1320
|
+
SENSITIVE = []
|
1126
1321
|
include Aws::Structure
|
1127
1322
|
end
|
1128
1323
|
|
@@ -1248,6 +1443,7 @@ module Aws::FSx
|
|
1248
1443
|
:failure_details,
|
1249
1444
|
:status,
|
1250
1445
|
:report)
|
1446
|
+
SENSITIVE = []
|
1251
1447
|
include Aws::Structure
|
1252
1448
|
end
|
1253
1449
|
|
@@ -1262,6 +1458,7 @@ module Aws::FSx
|
|
1262
1458
|
#
|
1263
1459
|
class DataRepositoryTaskEnded < Struct.new(
|
1264
1460
|
:message)
|
1461
|
+
SENSITIVE = []
|
1265
1462
|
include Aws::Structure
|
1266
1463
|
end
|
1267
1464
|
|
@@ -1277,6 +1474,7 @@ module Aws::FSx
|
|
1277
1474
|
#
|
1278
1475
|
class DataRepositoryTaskExecuting < Struct.new(
|
1279
1476
|
:message)
|
1477
|
+
SENSITIVE = []
|
1280
1478
|
include Aws::Structure
|
1281
1479
|
end
|
1282
1480
|
|
@@ -1291,6 +1489,7 @@ module Aws::FSx
|
|
1291
1489
|
#
|
1292
1490
|
class DataRepositoryTaskFailureDetails < Struct.new(
|
1293
1491
|
:message)
|
1492
|
+
SENSITIVE = []
|
1294
1493
|
include Aws::Structure
|
1295
1494
|
end
|
1296
1495
|
|
@@ -1330,6 +1529,7 @@ module Aws::FSx
|
|
1330
1529
|
class DataRepositoryTaskFilter < Struct.new(
|
1331
1530
|
:name,
|
1332
1531
|
:values)
|
1532
|
+
SENSITIVE = []
|
1333
1533
|
include Aws::Structure
|
1334
1534
|
end
|
1335
1535
|
|
@@ -1343,6 +1543,7 @@ module Aws::FSx
|
|
1343
1543
|
#
|
1344
1544
|
class DataRepositoryTaskNotFound < Struct.new(
|
1345
1545
|
:message)
|
1546
|
+
SENSITIVE = []
|
1346
1547
|
include Aws::Structure
|
1347
1548
|
end
|
1348
1549
|
|
@@ -1378,6 +1579,7 @@ module Aws::FSx
|
|
1378
1579
|
:succeeded_count,
|
1379
1580
|
:failed_count,
|
1380
1581
|
:last_updated_time)
|
1582
|
+
SENSITIVE = []
|
1381
1583
|
include Aws::Structure
|
1382
1584
|
end
|
1383
1585
|
|
@@ -1396,9 +1598,9 @@ module Aws::FSx
|
|
1396
1598
|
# @return [String]
|
1397
1599
|
#
|
1398
1600
|
# @!attribute [rw] client_request_token
|
1399
|
-
#
|
1400
|
-
#
|
1401
|
-
#
|
1601
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1602
|
+
# idempotent deletion. This is automatically filled on your behalf
|
1603
|
+
# when using the AWS CLI or SDK.
|
1402
1604
|
#
|
1403
1605
|
# **A suitable default value is auto-generated.** You should normally
|
1404
1606
|
# not need to pass this option.
|
@@ -1409,6 +1611,7 @@ module Aws::FSx
|
|
1409
1611
|
class DeleteBackupRequest < Struct.new(
|
1410
1612
|
:backup_id,
|
1411
1613
|
:client_request_token)
|
1614
|
+
SENSITIVE = []
|
1412
1615
|
include Aws::Structure
|
1413
1616
|
end
|
1414
1617
|
|
@@ -1427,6 +1630,67 @@ module Aws::FSx
|
|
1427
1630
|
class DeleteBackupResponse < Struct.new(
|
1428
1631
|
:backup_id,
|
1429
1632
|
:lifecycle)
|
1633
|
+
SENSITIVE = []
|
1634
|
+
include Aws::Structure
|
1635
|
+
end
|
1636
|
+
|
1637
|
+
# The configuration object for the Amazon FSx for Lustre file system
|
1638
|
+
# being deleted in the `DeleteFileSystem` operation.
|
1639
|
+
#
|
1640
|
+
# @note When making an API call, you may pass DeleteFileSystemLustreConfiguration
|
1641
|
+
# data as a hash:
|
1642
|
+
#
|
1643
|
+
# {
|
1644
|
+
# skip_final_backup: false,
|
1645
|
+
# final_backup_tags: [
|
1646
|
+
# {
|
1647
|
+
# key: "TagKey", # required
|
1648
|
+
# value: "TagValue", # required
|
1649
|
+
# },
|
1650
|
+
# ],
|
1651
|
+
# }
|
1652
|
+
#
|
1653
|
+
# @!attribute [rw] skip_final_backup
|
1654
|
+
# Set `SkipFinalBackup` to false if you want to take a final backup of
|
1655
|
+
# the file system you are deleting. By default, Amazon FSx will not
|
1656
|
+
# take a final backup on your behalf when the `DeleteFileSystem`
|
1657
|
+
# operation is invoked. (Default = true)
|
1658
|
+
# @return [Boolean]
|
1659
|
+
#
|
1660
|
+
# @!attribute [rw] final_backup_tags
|
1661
|
+
# Use if `SkipFinalBackup` is set to `false`, and you want to apply an
|
1662
|
+
# array of tags to the final backup. If you have set the file system
|
1663
|
+
# property `CopyTagsToBackups` to true, and you specify one or more
|
1664
|
+
# `FinalBackupTags` when deleting a file system, Amazon FSx will not
|
1665
|
+
# copy any existing file system tags to the backup.
|
1666
|
+
# @return [Array<Types::Tag>]
|
1667
|
+
#
|
1668
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemLustreConfiguration AWS API Documentation
|
1669
|
+
#
|
1670
|
+
class DeleteFileSystemLustreConfiguration < Struct.new(
|
1671
|
+
:skip_final_backup,
|
1672
|
+
:final_backup_tags)
|
1673
|
+
SENSITIVE = []
|
1674
|
+
include Aws::Structure
|
1675
|
+
end
|
1676
|
+
|
1677
|
+
# The response object for the Amazon FSx for Lustre file system being
|
1678
|
+
# deleted in the `DeleteFileSystem` operation.
|
1679
|
+
#
|
1680
|
+
# @!attribute [rw] final_backup_id
|
1681
|
+
# The ID of the final backup for this file system.
|
1682
|
+
# @return [String]
|
1683
|
+
#
|
1684
|
+
# @!attribute [rw] final_backup_tags
|
1685
|
+
# The set of tags applied to the final backup.
|
1686
|
+
# @return [Array<Types::Tag>]
|
1687
|
+
#
|
1688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemLustreResponse AWS API Documentation
|
1689
|
+
#
|
1690
|
+
class DeleteFileSystemLustreResponse < Struct.new(
|
1691
|
+
:final_backup_id,
|
1692
|
+
:final_backup_tags)
|
1693
|
+
SENSITIVE = []
|
1430
1694
|
include Aws::Structure
|
1431
1695
|
end
|
1432
1696
|
|
@@ -1442,8 +1706,17 @@ module Aws::FSx
|
|
1442
1706
|
# skip_final_backup: false,
|
1443
1707
|
# final_backup_tags: [
|
1444
1708
|
# {
|
1445
|
-
# key: "TagKey",
|
1446
|
-
# value: "TagValue",
|
1709
|
+
# key: "TagKey", # required
|
1710
|
+
# value: "TagValue", # required
|
1711
|
+
# },
|
1712
|
+
# ],
|
1713
|
+
# },
|
1714
|
+
# lustre_configuration: {
|
1715
|
+
# skip_final_backup: false,
|
1716
|
+
# final_backup_tags: [
|
1717
|
+
# {
|
1718
|
+
# key: "TagKey", # required
|
1719
|
+
# value: "TagValue", # required
|
1447
1720
|
# },
|
1448
1721
|
# ],
|
1449
1722
|
# },
|
@@ -1454,9 +1727,9 @@ module Aws::FSx
|
|
1454
1727
|
# @return [String]
|
1455
1728
|
#
|
1456
1729
|
# @!attribute [rw] client_request_token
|
1457
|
-
#
|
1458
|
-
#
|
1459
|
-
#
|
1730
|
+
# A string of up to 64 ASCII characters that Amazon FSx uses to ensure
|
1731
|
+
# idempotent deletion. This is automatically filled on your behalf
|
1732
|
+
# when using the AWS CLI or SDK.
|
1460
1733
|
#
|
1461
1734
|
# **A suitable default value is auto-generated.** You should normally
|
1462
1735
|
# not need to pass this option.
|
@@ -1467,12 +1740,19 @@ module Aws::FSx
|
|
1467
1740
|
# in the `DeleteFileSystem` operation.
|
1468
1741
|
# @return [Types::DeleteFileSystemWindowsConfiguration]
|
1469
1742
|
#
|
1743
|
+
# @!attribute [rw] lustre_configuration
|
1744
|
+
# The configuration object for the Amazon FSx for Lustre file system
|
1745
|
+
# being deleted in the `DeleteFileSystem` operation.
|
1746
|
+
# @return [Types::DeleteFileSystemLustreConfiguration]
|
1747
|
+
#
|
1470
1748
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemRequest AWS API Documentation
|
1471
1749
|
#
|
1472
1750
|
class DeleteFileSystemRequest < Struct.new(
|
1473
1751
|
:file_system_id,
|
1474
1752
|
:client_request_token,
|
1475
|
-
:windows_configuration
|
1753
|
+
:windows_configuration,
|
1754
|
+
:lustre_configuration)
|
1755
|
+
SENSITIVE = []
|
1476
1756
|
include Aws::Structure
|
1477
1757
|
end
|
1478
1758
|
|
@@ -1492,12 +1772,19 @@ module Aws::FSx
|
|
1492
1772
|
# the `DeleteFileSystem` operation.
|
1493
1773
|
# @return [Types::DeleteFileSystemWindowsResponse]
|
1494
1774
|
#
|
1775
|
+
# @!attribute [rw] lustre_response
|
1776
|
+
# The response object for the Amazon FSx for Lustre file system being
|
1777
|
+
# deleted in the `DeleteFileSystem` operation.
|
1778
|
+
# @return [Types::DeleteFileSystemLustreResponse]
|
1779
|
+
#
|
1495
1780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DeleteFileSystemResponse AWS API Documentation
|
1496
1781
|
#
|
1497
1782
|
class DeleteFileSystemResponse < Struct.new(
|
1498
1783
|
:file_system_id,
|
1499
1784
|
:lifecycle,
|
1500
|
-
:windows_response
|
1785
|
+
:windows_response,
|
1786
|
+
:lustre_response)
|
1787
|
+
SENSITIVE = []
|
1501
1788
|
include Aws::Structure
|
1502
1789
|
end
|
1503
1790
|
|
@@ -1511,8 +1798,8 @@ module Aws::FSx
|
|
1511
1798
|
# skip_final_backup: false,
|
1512
1799
|
# final_backup_tags: [
|
1513
1800
|
# {
|
1514
|
-
# key: "TagKey",
|
1515
|
-
# value: "TagValue",
|
1801
|
+
# key: "TagKey", # required
|
1802
|
+
# value: "TagValue", # required
|
1516
1803
|
# },
|
1517
1804
|
# ],
|
1518
1805
|
# }
|
@@ -1534,6 +1821,7 @@ module Aws::FSx
|
|
1534
1821
|
class DeleteFileSystemWindowsConfiguration < Struct.new(
|
1535
1822
|
:skip_final_backup,
|
1536
1823
|
:final_backup_tags)
|
1824
|
+
SENSITIVE = []
|
1537
1825
|
include Aws::Structure
|
1538
1826
|
end
|
1539
1827
|
|
@@ -1553,6 +1841,7 @@ module Aws::FSx
|
|
1553
1841
|
class DeleteFileSystemWindowsResponse < Struct.new(
|
1554
1842
|
:final_backup_id,
|
1555
1843
|
:final_backup_tags)
|
1844
|
+
SENSITIVE = []
|
1556
1845
|
include Aws::Structure
|
1557
1846
|
end
|
1558
1847
|
|
@@ -1565,7 +1854,7 @@ module Aws::FSx
|
|
1565
1854
|
# backup_ids: ["BackupId"],
|
1566
1855
|
# filters: [
|
1567
1856
|
# {
|
1568
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
1857
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
1569
1858
|
# values: ["FilterValue"],
|
1570
1859
|
# },
|
1571
1860
|
# ],
|
@@ -1574,28 +1863,27 @@ module Aws::FSx
|
|
1574
1863
|
# }
|
1575
1864
|
#
|
1576
1865
|
# @!attribute [rw] backup_ids
|
1577
|
-
#
|
1578
|
-
#
|
1579
|
-
# be thrown.
|
1866
|
+
# IDs of the backups you want to retrieve (String). This overrides any
|
1867
|
+
# filters. If any IDs are not found, BackupNotFound will be thrown.
|
1580
1868
|
# @return [Array<String>]
|
1581
1869
|
#
|
1582
1870
|
# @!attribute [rw] filters
|
1583
|
-
#
|
1871
|
+
# Filters structure. Supported names are file-system-id and
|
1584
1872
|
# backup-type.
|
1585
1873
|
# @return [Array<Types::Filter>]
|
1586
1874
|
#
|
1587
1875
|
# @!attribute [rw] max_results
|
1588
|
-
#
|
1589
|
-
#
|
1590
|
-
#
|
1591
|
-
#
|
1592
|
-
#
|
1876
|
+
# Maximum number of backups to return in the response (integer). This
|
1877
|
+
# parameter value must be greater than 0. The number of items that
|
1878
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
1879
|
+
# specified in the request and the service's internal maximum number
|
1880
|
+
# of items per page.
|
1593
1881
|
# @return [Integer]
|
1594
1882
|
#
|
1595
1883
|
# @!attribute [rw] next_token
|
1596
|
-
#
|
1597
|
-
#
|
1598
|
-
#
|
1884
|
+
# Opaque pagination token returned from a previous `DescribeBackups`
|
1885
|
+
# operation (String). If a token present, the action continues the
|
1886
|
+
# list from where the returning call left off.
|
1599
1887
|
# @return [String]
|
1600
1888
|
#
|
1601
1889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/DescribeBackupsRequest AWS API Documentation
|
@@ -1605,6 +1893,7 @@ module Aws::FSx
|
|
1605
1893
|
:filters,
|
1606
1894
|
:max_results,
|
1607
1895
|
:next_token)
|
1896
|
+
SENSITIVE = []
|
1608
1897
|
include Aws::Structure
|
1609
1898
|
end
|
1610
1899
|
|
@@ -1625,6 +1914,7 @@ module Aws::FSx
|
|
1625
1914
|
class DescribeBackupsResponse < Struct.new(
|
1626
1915
|
:backups,
|
1627
1916
|
:next_token)
|
1917
|
+
SENSITIVE = []
|
1628
1918
|
include Aws::Structure
|
1629
1919
|
end
|
1630
1920
|
|
@@ -1673,6 +1963,7 @@ module Aws::FSx
|
|
1673
1963
|
:filters,
|
1674
1964
|
:max_results,
|
1675
1965
|
:next_token)
|
1966
|
+
SENSITIVE = []
|
1676
1967
|
include Aws::Structure
|
1677
1968
|
end
|
1678
1969
|
|
@@ -1692,6 +1983,7 @@ module Aws::FSx
|
|
1692
1983
|
class DescribeDataRepositoryTasksResponse < Struct.new(
|
1693
1984
|
:data_repository_tasks,
|
1694
1985
|
:next_token)
|
1986
|
+
SENSITIVE = []
|
1695
1987
|
include Aws::Structure
|
1696
1988
|
end
|
1697
1989
|
|
@@ -1707,20 +1999,20 @@ module Aws::FSx
|
|
1707
1999
|
# }
|
1708
2000
|
#
|
1709
2001
|
# @!attribute [rw] file_system_ids
|
1710
|
-
#
|
1711
|
-
#
|
2002
|
+
# IDs of the file systems whose descriptions you want to retrieve
|
2003
|
+
# (String).
|
1712
2004
|
# @return [Array<String>]
|
1713
2005
|
#
|
1714
2006
|
# @!attribute [rw] max_results
|
1715
|
-
#
|
1716
|
-
#
|
1717
|
-
#
|
1718
|
-
#
|
1719
|
-
#
|
2007
|
+
# Maximum number of file systems to return in the response (integer).
|
2008
|
+
# This parameter value must be greater than 0. The number of items
|
2009
|
+
# that Amazon FSx returns is the minimum of the `MaxResults` parameter
|
2010
|
+
# specified in the request and the service's internal maximum number
|
2011
|
+
# of items per page.
|
1720
2012
|
# @return [Integer]
|
1721
2013
|
#
|
1722
2014
|
# @!attribute [rw] next_token
|
1723
|
-
#
|
2015
|
+
# Opaque pagination token returned from a previous
|
1724
2016
|
# `DescribeFileSystems` operation (String). If a token present, the
|
1725
2017
|
# action continues the list from where the returning call left off.
|
1726
2018
|
# @return [String]
|
@@ -1731,6 +2023,7 @@ module Aws::FSx
|
|
1731
2023
|
:file_system_ids,
|
1732
2024
|
:max_results,
|
1733
2025
|
:next_token)
|
2026
|
+
SENSITIVE = []
|
1734
2027
|
include Aws::Structure
|
1735
2028
|
end
|
1736
2029
|
|
@@ -1751,6 +2044,7 @@ module Aws::FSx
|
|
1751
2044
|
class DescribeFileSystemsResponse < Struct.new(
|
1752
2045
|
:file_systems,
|
1753
2046
|
:next_token)
|
2047
|
+
SENSITIVE = []
|
1754
2048
|
include Aws::Structure
|
1755
2049
|
end
|
1756
2050
|
|
@@ -1916,6 +2210,7 @@ module Aws::FSx
|
|
1916
2210
|
:windows_configuration,
|
1917
2211
|
:lustre_configuration,
|
1918
2212
|
:administrative_actions)
|
2213
|
+
SENSITIVE = []
|
1919
2214
|
include Aws::Structure
|
1920
2215
|
end
|
1921
2216
|
|
@@ -1931,6 +2226,7 @@ module Aws::FSx
|
|
1931
2226
|
#
|
1932
2227
|
class FileSystemFailureDetails < Struct.new(
|
1933
2228
|
:message)
|
2229
|
+
SENSITIVE = []
|
1934
2230
|
include Aws::Structure
|
1935
2231
|
end
|
1936
2232
|
|
@@ -1944,6 +2240,7 @@ module Aws::FSx
|
|
1944
2240
|
#
|
1945
2241
|
class FileSystemNotFound < Struct.new(
|
1946
2242
|
:message)
|
2243
|
+
SENSITIVE = []
|
1947
2244
|
include Aws::Structure
|
1948
2245
|
end
|
1949
2246
|
|
@@ -1955,7 +2252,7 @@ module Aws::FSx
|
|
1955
2252
|
# data as a hash:
|
1956
2253
|
#
|
1957
2254
|
# {
|
1958
|
-
# name: "file-system-id", # accepts file-system-id, backup-type
|
2255
|
+
# name: "file-system-id", # accepts file-system-id, backup-type, file-system-type
|
1959
2256
|
# values: ["FilterValue"],
|
1960
2257
|
# }
|
1961
2258
|
#
|
@@ -1973,6 +2270,7 @@ module Aws::FSx
|
|
1973
2270
|
class Filter < Struct.new(
|
1974
2271
|
:name,
|
1975
2272
|
:values)
|
2273
|
+
SENSITIVE = []
|
1976
2274
|
include Aws::Structure
|
1977
2275
|
end
|
1978
2276
|
|
@@ -1993,6 +2291,7 @@ module Aws::FSx
|
|
1993
2291
|
class IncompatibleParameterError < Struct.new(
|
1994
2292
|
:parameter,
|
1995
2293
|
:message)
|
2294
|
+
SENSITIVE = []
|
1996
2295
|
include Aws::Structure
|
1997
2296
|
end
|
1998
2297
|
|
@@ -2006,6 +2305,7 @@ module Aws::FSx
|
|
2006
2305
|
#
|
2007
2306
|
class InternalServerError < Struct.new(
|
2008
2307
|
:message)
|
2308
|
+
SENSITIVE = []
|
2009
2309
|
include Aws::Structure
|
2010
2310
|
end
|
2011
2311
|
|
@@ -2019,6 +2319,7 @@ module Aws::FSx
|
|
2019
2319
|
#
|
2020
2320
|
class InvalidExportPath < Struct.new(
|
2021
2321
|
:message)
|
2322
|
+
SENSITIVE = []
|
2022
2323
|
include Aws::Structure
|
2023
2324
|
end
|
2024
2325
|
|
@@ -2032,6 +2333,7 @@ module Aws::FSx
|
|
2032
2333
|
#
|
2033
2334
|
class InvalidImportPath < Struct.new(
|
2034
2335
|
:message)
|
2336
|
+
SENSITIVE = []
|
2035
2337
|
include Aws::Structure
|
2036
2338
|
end
|
2037
2339
|
|
@@ -2074,6 +2376,7 @@ module Aws::FSx
|
|
2074
2376
|
:message,
|
2075
2377
|
:invalid_subnet_id,
|
2076
2378
|
:invalid_security_group_id)
|
2379
|
+
SENSITIVE = []
|
2077
2380
|
include Aws::Structure
|
2078
2381
|
end
|
2079
2382
|
|
@@ -2088,6 +2391,7 @@ module Aws::FSx
|
|
2088
2391
|
#
|
2089
2392
|
class InvalidPerUnitStorageThroughput < Struct.new(
|
2090
2393
|
:message)
|
2394
|
+
SENSITIVE = []
|
2091
2395
|
include Aws::Structure
|
2092
2396
|
end
|
2093
2397
|
|
@@ -2107,15 +2411,15 @@ module Aws::FSx
|
|
2107
2411
|
# @return [String]
|
2108
2412
|
#
|
2109
2413
|
# @!attribute [rw] max_results
|
2110
|
-
#
|
2111
|
-
#
|
2112
|
-
#
|
2113
|
-
#
|
2114
|
-
#
|
2414
|
+
# Maximum number of tags to return in the response (integer). This
|
2415
|
+
# parameter value must be greater than 0. The number of items that
|
2416
|
+
# Amazon FSx returns is the minimum of the `MaxResults` parameter
|
2417
|
+
# specified in the request and the service's internal maximum number
|
2418
|
+
# of items per page.
|
2115
2419
|
# @return [Integer]
|
2116
2420
|
#
|
2117
2421
|
# @!attribute [rw] next_token
|
2118
|
-
#
|
2422
|
+
# Opaque pagination token returned from a previous
|
2119
2423
|
# `ListTagsForResource` operation (String). If a token present, the
|
2120
2424
|
# action continues the list from where the returning call left off.
|
2121
2425
|
# @return [String]
|
@@ -2126,6 +2430,7 @@ module Aws::FSx
|
|
2126
2430
|
:resource_arn,
|
2127
2431
|
:max_results,
|
2128
2432
|
:next_token)
|
2433
|
+
SENSITIVE = []
|
2129
2434
|
include Aws::Structure
|
2130
2435
|
end
|
2131
2436
|
|
@@ -2146,6 +2451,7 @@ module Aws::FSx
|
|
2146
2451
|
class ListTagsForResourceResponse < Struct.new(
|
2147
2452
|
:tags,
|
2148
2453
|
:next_token)
|
2454
|
+
SENSITIVE = []
|
2149
2455
|
include Aws::Structure
|
2150
2456
|
end
|
2151
2457
|
|
@@ -2163,7 +2469,23 @@ module Aws::FSx
|
|
2163
2469
|
# @return [Types::DataRepositoryConfiguration]
|
2164
2470
|
#
|
2165
2471
|
# @!attribute [rw] deployment_type
|
2166
|
-
# The deployment type of the FSX for Lustre file system.
|
2472
|
+
# The deployment type of the FSX for Lustre file system. *Scratch
|
2473
|
+
# deployment type* is designed for temporary storage and shorter-term
|
2474
|
+
# processing of data.
|
2475
|
+
#
|
2476
|
+
# `SCRATCH_1` and `SCRATCH_2` deployment types are best suited for
|
2477
|
+
# when you need temporary storage and shorter-term processing of data.
|
2478
|
+
# The `SCRATCH_2` deployment type provides in-transit encryption of
|
2479
|
+
# data and higher burst throughput capacity than `SCRATCH_1`.
|
2480
|
+
#
|
2481
|
+
# The `PERSISTENT_1` deployment type is used for longer-term storage
|
2482
|
+
# and workloads and encryption of data in transit. To learn more about
|
2483
|
+
# deployment types, see [ FSx for Lustre Deployment Options][1].
|
2484
|
+
# (Default = `SCRATCH_1`)
|
2485
|
+
#
|
2486
|
+
#
|
2487
|
+
#
|
2488
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/lustre-deployment-types.html
|
2167
2489
|
# @return [String]
|
2168
2490
|
#
|
2169
2491
|
# @!attribute [rw] per_unit_storage_throughput
|
@@ -2182,6 +2504,29 @@ module Aws::FSx
|
|
2182
2504
|
# string that is unique within an AWS Region.
|
2183
2505
|
# @return [String]
|
2184
2506
|
#
|
2507
|
+
# @!attribute [rw] daily_automatic_backup_start_time
|
2508
|
+
# A recurring daily time, in the format `HH:MM`. `HH` is the
|
2509
|
+
# zero-padded hour of the day (0-23), and `MM` is the zero-padded
|
2510
|
+
# minute of the hour. For example, `05:00` specifies 5 AM daily.
|
2511
|
+
# @return [String]
|
2512
|
+
#
|
2513
|
+
# @!attribute [rw] automatic_backup_retention_days
|
2514
|
+
# The number of days to retain automatic backups. Setting this to 0
|
2515
|
+
# disables automatic backups. You can retain automatic backups for a
|
2516
|
+
# maximum of 35 days. The default is 0.
|
2517
|
+
# @return [Integer]
|
2518
|
+
#
|
2519
|
+
# @!attribute [rw] copy_tags_to_backups
|
2520
|
+
# A boolean flag indicating whether tags on the file system should be
|
2521
|
+
# copied to backups. If it's set to true, all tags on the file system
|
2522
|
+
# are copied to all automatic backups and any user-initiated backups
|
2523
|
+
# where the user doesn't specify any tags. If this value is true, and
|
2524
|
+
# you specify one or more tags, only the specified tags are copied to
|
2525
|
+
# backups. If you specify one or more tags when creating a
|
2526
|
+
# user-initiated backup, no tags are copied from the file system,
|
2527
|
+
# regardless of this value. (Default = false)
|
2528
|
+
# @return [Boolean]
|
2529
|
+
#
|
2185
2530
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/LustreFileSystemConfiguration AWS API Documentation
|
2186
2531
|
#
|
2187
2532
|
class LustreFileSystemConfiguration < Struct.new(
|
@@ -2189,7 +2534,11 @@ module Aws::FSx
|
|
2189
2534
|
:data_repository_configuration,
|
2190
2535
|
:deployment_type,
|
2191
2536
|
:per_unit_storage_throughput,
|
2192
|
-
:mount_name
|
2537
|
+
:mount_name,
|
2538
|
+
:daily_automatic_backup_start_time,
|
2539
|
+
:automatic_backup_retention_days,
|
2540
|
+
:copy_tags_to_backups)
|
2541
|
+
SENSITIVE = []
|
2193
2542
|
include Aws::Structure
|
2194
2543
|
end
|
2195
2544
|
|
@@ -2203,6 +2552,7 @@ module Aws::FSx
|
|
2203
2552
|
#
|
2204
2553
|
class MissingFileSystemConfiguration < Struct.new(
|
2205
2554
|
:message)
|
2555
|
+
SENSITIVE = []
|
2206
2556
|
include Aws::Structure
|
2207
2557
|
end
|
2208
2558
|
|
@@ -2223,6 +2573,7 @@ module Aws::FSx
|
|
2223
2573
|
class NotServiceResourceError < Struct.new(
|
2224
2574
|
:resource_arn,
|
2225
2575
|
:message)
|
2576
|
+
SENSITIVE = []
|
2226
2577
|
include Aws::Structure
|
2227
2578
|
end
|
2228
2579
|
|
@@ -2242,6 +2593,7 @@ module Aws::FSx
|
|
2242
2593
|
class ResourceDoesNotSupportTagging < Struct.new(
|
2243
2594
|
:resource_arn,
|
2244
2595
|
:message)
|
2596
|
+
SENSITIVE = []
|
2245
2597
|
include Aws::Structure
|
2246
2598
|
end
|
2247
2599
|
|
@@ -2261,6 +2613,7 @@ module Aws::FSx
|
|
2261
2613
|
class ResourceNotFound < Struct.new(
|
2262
2614
|
:resource_arn,
|
2263
2615
|
:message)
|
2616
|
+
SENSITIVE = []
|
2264
2617
|
include Aws::Structure
|
2265
2618
|
end
|
2266
2619
|
|
@@ -2300,6 +2653,7 @@ module Aws::FSx
|
|
2300
2653
|
:file_system_administrators_group,
|
2301
2654
|
:user_name,
|
2302
2655
|
:dns_ips)
|
2656
|
+
SENSITIVE = []
|
2303
2657
|
include Aws::Structure
|
2304
2658
|
end
|
2305
2659
|
|
@@ -2392,6 +2746,7 @@ module Aws::FSx
|
|
2392
2746
|
:user_name,
|
2393
2747
|
:password,
|
2394
2748
|
:dns_ips)
|
2749
|
+
SENSITIVE = [:password]
|
2395
2750
|
include Aws::Structure
|
2396
2751
|
end
|
2397
2752
|
|
@@ -2431,6 +2786,7 @@ module Aws::FSx
|
|
2431
2786
|
:user_name,
|
2432
2787
|
:password,
|
2433
2788
|
:dns_ips)
|
2789
|
+
SENSITIVE = [:password]
|
2434
2790
|
include Aws::Structure
|
2435
2791
|
end
|
2436
2792
|
|
@@ -2450,6 +2806,7 @@ module Aws::FSx
|
|
2450
2806
|
class ServiceLimitExceeded < Struct.new(
|
2451
2807
|
:limit,
|
2452
2808
|
:message)
|
2809
|
+
SENSITIVE = []
|
2453
2810
|
include Aws::Structure
|
2454
2811
|
end
|
2455
2812
|
|
@@ -2459,8 +2816,8 @@ module Aws::FSx
|
|
2459
2816
|
# data as a hash:
|
2460
2817
|
#
|
2461
2818
|
# {
|
2462
|
-
# key: "TagKey",
|
2463
|
-
# value: "TagValue",
|
2819
|
+
# key: "TagKey", # required
|
2820
|
+
# value: "TagValue", # required
|
2464
2821
|
# }
|
2465
2822
|
#
|
2466
2823
|
# @!attribute [rw] key
|
@@ -2480,6 +2837,7 @@ module Aws::FSx
|
|
2480
2837
|
class Tag < Struct.new(
|
2481
2838
|
:key,
|
2482
2839
|
:value)
|
2840
|
+
SENSITIVE = []
|
2483
2841
|
include Aws::Structure
|
2484
2842
|
end
|
2485
2843
|
|
@@ -2492,8 +2850,8 @@ module Aws::FSx
|
|
2492
2850
|
# resource_arn: "ResourceARN", # required
|
2493
2851
|
# tags: [ # required
|
2494
2852
|
# {
|
2495
|
-
# key: "TagKey",
|
2496
|
-
# value: "TagValue",
|
2853
|
+
# key: "TagKey", # required
|
2854
|
+
# value: "TagValue", # required
|
2497
2855
|
# },
|
2498
2856
|
# ],
|
2499
2857
|
# }
|
@@ -2514,6 +2872,7 @@ module Aws::FSx
|
|
2514
2872
|
class TagResourceRequest < Struct.new(
|
2515
2873
|
:resource_arn,
|
2516
2874
|
:tags)
|
2875
|
+
SENSITIVE = []
|
2517
2876
|
include Aws::Structure
|
2518
2877
|
end
|
2519
2878
|
|
@@ -2533,6 +2892,7 @@ module Aws::FSx
|
|
2533
2892
|
#
|
2534
2893
|
class UnsupportedOperation < Struct.new(
|
2535
2894
|
:message)
|
2895
|
+
SENSITIVE = []
|
2536
2896
|
include Aws::Structure
|
2537
2897
|
end
|
2538
2898
|
|
@@ -2560,6 +2920,7 @@ module Aws::FSx
|
|
2560
2920
|
class UntagResourceRequest < Struct.new(
|
2561
2921
|
:resource_arn,
|
2562
2922
|
:tag_keys)
|
2923
|
+
SENSITIVE = []
|
2563
2924
|
include Aws::Structure
|
2564
2925
|
end
|
2565
2926
|
|
@@ -2577,6 +2938,9 @@ module Aws::FSx
|
|
2577
2938
|
#
|
2578
2939
|
# {
|
2579
2940
|
# weekly_maintenance_start_time: "WeeklyTime",
|
2941
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
2942
|
+
# automatic_backup_retention_days: 1,
|
2943
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
2580
2944
|
# }
|
2581
2945
|
#
|
2582
2946
|
# @!attribute [rw] weekly_maintenance_start_time
|
@@ -2585,10 +2949,57 @@ module Aws::FSx
|
|
2585
2949
|
# through 7, beginning with Monday and ending with Sunday.
|
2586
2950
|
# @return [String]
|
2587
2951
|
#
|
2952
|
+
# @!attribute [rw] daily_automatic_backup_start_time
|
2953
|
+
# A recurring daily time, in the format `HH:MM`. `HH` is the
|
2954
|
+
# zero-padded hour of the day (0-23), and `MM` is the zero-padded
|
2955
|
+
# minute of the hour. For example, `05:00` specifies 5 AM daily.
|
2956
|
+
# @return [String]
|
2957
|
+
#
|
2958
|
+
# @!attribute [rw] automatic_backup_retention_days
|
2959
|
+
# The number of days to retain automatic backups. Setting this to 0
|
2960
|
+
# disables automatic backups. You can retain automatic backups for a
|
2961
|
+
# maximum of 35 days. The default is 0.
|
2962
|
+
# @return [Integer]
|
2963
|
+
#
|
2964
|
+
# @!attribute [rw] auto_import_policy
|
2965
|
+
# (Optional) Use this property to configure the AutoImport feature on
|
2966
|
+
# the file system's linked Amazon S3 data repository. You use
|
2967
|
+
# AutoImport to update the contents of your FSx for Lustre file system
|
2968
|
+
# automatically with changes that occur in the linked S3 data
|
2969
|
+
# repository. `AutoImportPolicy` can have the following values:
|
2970
|
+
#
|
2971
|
+
# * `NONE` - (Default) AutoImport is off. Changes in the linked data
|
2972
|
+
# repository are not reflected on the FSx file system.
|
2973
|
+
#
|
2974
|
+
# * `NEW` - AutoImport is on. New files in the linked data repository
|
2975
|
+
# that do not currently exist in the FSx file system are
|
2976
|
+
# automatically imported. Updates to existing FSx files are not
|
2977
|
+
# imported to the FSx file system. Files deleted from the linked
|
2978
|
+
# data repository are not deleted from the FSx file system.
|
2979
|
+
#
|
2980
|
+
# * `NEW_CHANGED` - AutoImport is on. New files in the linked S3 data
|
2981
|
+
# repository that do not currently exist in the FSx file system are
|
2982
|
+
# automatically imported. Changes to existing FSx files in the
|
2983
|
+
# linked repository are also automatically imported to the FSx file
|
2984
|
+
# system. Files deleted from the linked data repository are not
|
2985
|
+
# deleted from the FSx file system.
|
2986
|
+
#
|
2987
|
+
# For more information, see [Automatically import updates from your S3
|
2988
|
+
# bucket][1].
|
2989
|
+
#
|
2990
|
+
#
|
2991
|
+
#
|
2992
|
+
# [1]: https://docs.aws.amazon.com/fsx/latest/LustreGuide/autoimport-data-repo.html
|
2993
|
+
# @return [String]
|
2994
|
+
#
|
2588
2995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/fsx-2018-03-01/UpdateFileSystemLustreConfiguration AWS API Documentation
|
2589
2996
|
#
|
2590
2997
|
class UpdateFileSystemLustreConfiguration < Struct.new(
|
2591
|
-
:weekly_maintenance_start_time
|
2998
|
+
:weekly_maintenance_start_time,
|
2999
|
+
:daily_automatic_backup_start_time,
|
3000
|
+
:automatic_backup_retention_days,
|
3001
|
+
:auto_import_policy)
|
3002
|
+
SENSITIVE = []
|
2592
3003
|
include Aws::Structure
|
2593
3004
|
end
|
2594
3005
|
|
@@ -2614,6 +3025,9 @@ module Aws::FSx
|
|
2614
3025
|
# },
|
2615
3026
|
# lustre_configuration: {
|
2616
3027
|
# weekly_maintenance_start_time: "WeeklyTime",
|
3028
|
+
# daily_automatic_backup_start_time: "DailyTime",
|
3029
|
+
# automatic_backup_retention_days: 1,
|
3030
|
+
# auto_import_policy: "NONE", # accepts NONE, NEW, NEW_CHANGED
|
2617
3031
|
# },
|
2618
3032
|
# }
|
2619
3033
|
#
|
@@ -2665,6 +3079,7 @@ module Aws::FSx
|
|
2665
3079
|
:storage_capacity,
|
2666
3080
|
:windows_configuration,
|
2667
3081
|
:lustre_configuration)
|
3082
|
+
SENSITIVE = []
|
2668
3083
|
include Aws::Structure
|
2669
3084
|
end
|
2670
3085
|
|
@@ -2678,6 +3093,7 @@ module Aws::FSx
|
|
2678
3093
|
#
|
2679
3094
|
class UpdateFileSystemResponse < Struct.new(
|
2680
3095
|
:file_system)
|
3096
|
+
SENSITIVE = []
|
2681
3097
|
include Aws::Structure
|
2682
3098
|
end
|
2683
3099
|
|
@@ -2750,6 +3166,7 @@ module Aws::FSx
|
|
2750
3166
|
:automatic_backup_retention_days,
|
2751
3167
|
:throughput_capacity,
|
2752
3168
|
:self_managed_active_directory_configuration)
|
3169
|
+
SENSITIVE = []
|
2753
3170
|
include Aws::Structure
|
2754
3171
|
end
|
2755
3172
|
|
@@ -2887,6 +3304,7 @@ module Aws::FSx
|
|
2887
3304
|
:daily_automatic_backup_start_time,
|
2888
3305
|
:automatic_backup_retention_days,
|
2889
3306
|
:copy_tags_to_backups)
|
3307
|
+
SENSITIVE = []
|
2890
3308
|
include Aws::Structure
|
2891
3309
|
end
|
2892
3310
|
|