aws-sdk-fsx 1.83.0 → 1.84.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-fsx/client.rb +1 -1
- data/lib/aws-sdk-fsx/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-fsx.rb +1 -1
- data/sig/client.rbs +1316 -0
- data/sig/errors.rbs +134 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1748 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1748 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::FSx
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class ActiveDirectoryBackupAttributes
|
12
|
+
attr_accessor domain_name: ::String
|
13
|
+
attr_accessor active_directory_id: ::String
|
14
|
+
attr_accessor resource_arn: ::String
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class ActiveDirectoryError
|
19
|
+
attr_accessor active_directory_id: ::String
|
20
|
+
attr_accessor type: ("DOMAIN_NOT_FOUND" | "INCOMPATIBLE_DOMAIN_MODE" | "WRONG_VPC" | "INVALID_DOMAIN_STAGE")
|
21
|
+
attr_accessor message: ::String
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
25
|
+
class AdministrativeAction
|
26
|
+
attr_accessor administrative_action_type: ("FILE_SYSTEM_UPDATE" | "STORAGE_OPTIMIZATION" | "FILE_SYSTEM_ALIAS_ASSOCIATION" | "FILE_SYSTEM_ALIAS_DISASSOCIATION" | "VOLUME_UPDATE" | "SNAPSHOT_UPDATE" | "RELEASE_NFS_V3_LOCKS" | "VOLUME_RESTORE" | "THROUGHPUT_OPTIMIZATION" | "IOPS_OPTIMIZATION" | "STORAGE_TYPE_OPTIMIZATION" | "MISCONFIGURED_STATE_RECOVERY" | "VOLUME_UPDATE_WITH_SNAPSHOT" | "VOLUME_INITIALIZE_WITH_SNAPSHOT")
|
27
|
+
attr_accessor progress_percent: ::Integer
|
28
|
+
attr_accessor request_time: ::Time
|
29
|
+
attr_accessor status: ("FAILED" | "IN_PROGRESS" | "PENDING" | "COMPLETED" | "UPDATED_OPTIMIZING")
|
30
|
+
attr_accessor target_file_system_values: Types::FileSystem
|
31
|
+
attr_accessor failure_details: Types::AdministrativeActionFailureDetails
|
32
|
+
attr_accessor target_volume_values: Types::Volume
|
33
|
+
attr_accessor target_snapshot_values: Types::Snapshot
|
34
|
+
attr_accessor total_transfer_bytes: ::Integer
|
35
|
+
attr_accessor remaining_transfer_bytes: ::Integer
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
39
|
+
class AdministrativeActionFailureDetails
|
40
|
+
attr_accessor message: ::String
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class AggregateConfiguration
|
45
|
+
attr_accessor aggregates: ::Array[::String]
|
46
|
+
attr_accessor total_constituents: ::Integer
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class Alias
|
51
|
+
attr_accessor name: ::String
|
52
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "CREATE_FAILED" | "DELETE_FAILED")
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class AssociateFileSystemAliasesRequest
|
57
|
+
attr_accessor client_request_token: ::String
|
58
|
+
attr_accessor file_system_id: ::String
|
59
|
+
attr_accessor aliases: ::Array[::String]
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class AssociateFileSystemAliasesResponse
|
64
|
+
attr_accessor aliases: ::Array[Types::Alias]
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class AutoExportPolicy
|
69
|
+
attr_accessor events: ::Array[("NEW" | "CHANGED" | "DELETED")]
|
70
|
+
SENSITIVE: []
|
71
|
+
end
|
72
|
+
|
73
|
+
class AutoImportPolicy
|
74
|
+
attr_accessor events: ::Array[("NEW" | "CHANGED" | "DELETED")]
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
78
|
+
class AutocommitPeriod
|
79
|
+
attr_accessor type: ("MINUTES" | "HOURS" | "DAYS" | "MONTHS" | "YEARS" | "NONE")
|
80
|
+
attr_accessor value: ::Integer
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class Backup
|
85
|
+
attr_accessor backup_id: ::String
|
86
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "TRANSFERRING" | "DELETED" | "FAILED" | "PENDING" | "COPYING")
|
87
|
+
attr_accessor failure_details: Types::BackupFailureDetails
|
88
|
+
attr_accessor type: ("AUTOMATIC" | "USER_INITIATED" | "AWS_BACKUP")
|
89
|
+
attr_accessor progress_percent: ::Integer
|
90
|
+
attr_accessor creation_time: ::Time
|
91
|
+
attr_accessor kms_key_id: ::String
|
92
|
+
attr_accessor resource_arn: ::String
|
93
|
+
attr_accessor tags: ::Array[Types::Tag]
|
94
|
+
attr_accessor file_system: Types::FileSystem
|
95
|
+
attr_accessor directory_information: Types::ActiveDirectoryBackupAttributes
|
96
|
+
attr_accessor owner_id: ::String
|
97
|
+
attr_accessor source_backup_id: ::String
|
98
|
+
attr_accessor source_backup_region: ::String
|
99
|
+
attr_accessor resource_type: ("FILE_SYSTEM" | "VOLUME")
|
100
|
+
attr_accessor volume: Types::Volume
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class BackupBeingCopied
|
105
|
+
attr_accessor message: ::String
|
106
|
+
attr_accessor backup_id: ::String
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class BackupFailureDetails
|
111
|
+
attr_accessor message: ::String
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class BackupInProgress
|
116
|
+
attr_accessor message: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class BackupNotFound
|
121
|
+
attr_accessor message: ::String
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class BackupRestoring
|
126
|
+
attr_accessor message: ::String
|
127
|
+
attr_accessor file_system_id: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class BadRequest
|
132
|
+
attr_accessor message: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class CancelDataRepositoryTaskRequest
|
137
|
+
attr_accessor task_id: ::String
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class CancelDataRepositoryTaskResponse
|
142
|
+
attr_accessor lifecycle: ("PENDING" | "EXECUTING" | "FAILED" | "SUCCEEDED" | "CANCELED" | "CANCELING")
|
143
|
+
attr_accessor task_id: ::String
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class CompletionReport
|
148
|
+
attr_accessor enabled: bool
|
149
|
+
attr_accessor path: ::String
|
150
|
+
attr_accessor format: ("REPORT_CSV_20191124")
|
151
|
+
attr_accessor scope: ("FAILED_FILES_ONLY")
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class CopyBackupRequest
|
156
|
+
attr_accessor client_request_token: ::String
|
157
|
+
attr_accessor source_backup_id: ::String
|
158
|
+
attr_accessor source_region: ::String
|
159
|
+
attr_accessor kms_key_id: ::String
|
160
|
+
attr_accessor copy_tags: bool
|
161
|
+
attr_accessor tags: ::Array[Types::Tag]
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class CopyBackupResponse
|
166
|
+
attr_accessor backup: Types::Backup
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class CopySnapshotAndUpdateVolumeRequest
|
171
|
+
attr_accessor client_request_token: ::String
|
172
|
+
attr_accessor volume_id: ::String
|
173
|
+
attr_accessor source_snapshot_arn: ::String
|
174
|
+
attr_accessor copy_strategy: ("CLONE" | "FULL_COPY" | "INCREMENTAL_COPY")
|
175
|
+
attr_accessor options: ::Array[("DELETE_INTERMEDIATE_SNAPSHOTS" | "DELETE_CLONED_VOLUMES" | "DELETE_INTERMEDIATE_DATA")]
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class CopySnapshotAndUpdateVolumeResponse
|
180
|
+
attr_accessor volume_id: ::String
|
181
|
+
attr_accessor lifecycle: ("CREATING" | "CREATED" | "DELETING" | "FAILED" | "MISCONFIGURED" | "PENDING" | "AVAILABLE")
|
182
|
+
attr_accessor administrative_actions: ::Array[Types::AdministrativeAction]
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class CreateAggregateConfiguration
|
187
|
+
attr_accessor aggregates: ::Array[::String]
|
188
|
+
attr_accessor constituents_per_aggregate: ::Integer
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
192
|
+
class CreateBackupRequest
|
193
|
+
attr_accessor file_system_id: ::String
|
194
|
+
attr_accessor client_request_token: ::String
|
195
|
+
attr_accessor tags: ::Array[Types::Tag]
|
196
|
+
attr_accessor volume_id: ::String
|
197
|
+
SENSITIVE: []
|
198
|
+
end
|
199
|
+
|
200
|
+
class CreateBackupResponse
|
201
|
+
attr_accessor backup: Types::Backup
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class CreateDataRepositoryAssociationRequest
|
206
|
+
attr_accessor file_system_id: ::String
|
207
|
+
attr_accessor file_system_path: ::String
|
208
|
+
attr_accessor data_repository_path: ::String
|
209
|
+
attr_accessor batch_import_meta_data_on_create: bool
|
210
|
+
attr_accessor imported_file_chunk_size: ::Integer
|
211
|
+
attr_accessor s3: Types::S3DataRepositoryConfiguration
|
212
|
+
attr_accessor client_request_token: ::String
|
213
|
+
attr_accessor tags: ::Array[Types::Tag]
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class CreateDataRepositoryAssociationResponse
|
218
|
+
attr_accessor association: Types::DataRepositoryAssociation
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class CreateDataRepositoryTaskRequest
|
223
|
+
attr_accessor type: ("EXPORT_TO_REPOSITORY" | "IMPORT_METADATA_FROM_REPOSITORY" | "RELEASE_DATA_FROM_FILESYSTEM" | "AUTO_RELEASE_DATA")
|
224
|
+
attr_accessor paths: ::Array[::String]
|
225
|
+
attr_accessor file_system_id: ::String
|
226
|
+
attr_accessor report: Types::CompletionReport
|
227
|
+
attr_accessor client_request_token: ::String
|
228
|
+
attr_accessor tags: ::Array[Types::Tag]
|
229
|
+
attr_accessor capacity_to_release: ::Integer
|
230
|
+
attr_accessor release_configuration: Types::ReleaseConfiguration
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class CreateDataRepositoryTaskResponse
|
235
|
+
attr_accessor data_repository_task: Types::DataRepositoryTask
|
236
|
+
SENSITIVE: []
|
237
|
+
end
|
238
|
+
|
239
|
+
class CreateFileCacheLustreConfiguration
|
240
|
+
attr_accessor per_unit_storage_throughput: ::Integer
|
241
|
+
attr_accessor deployment_type: ("CACHE_1")
|
242
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
243
|
+
attr_accessor metadata_configuration: Types::FileCacheLustreMetadataConfiguration
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class CreateFileCacheRequest
|
248
|
+
attr_accessor client_request_token: ::String
|
249
|
+
attr_accessor file_cache_type: ("LUSTRE")
|
250
|
+
attr_accessor file_cache_type_version: ::String
|
251
|
+
attr_accessor storage_capacity: ::Integer
|
252
|
+
attr_accessor subnet_ids: ::Array[::String]
|
253
|
+
attr_accessor security_group_ids: ::Array[::String]
|
254
|
+
attr_accessor tags: ::Array[Types::Tag]
|
255
|
+
attr_accessor copy_tags_to_data_repository_associations: bool
|
256
|
+
attr_accessor kms_key_id: ::String
|
257
|
+
attr_accessor lustre_configuration: Types::CreateFileCacheLustreConfiguration
|
258
|
+
attr_accessor data_repository_associations: ::Array[Types::FileCacheDataRepositoryAssociation]
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class CreateFileCacheResponse
|
263
|
+
attr_accessor file_cache: Types::FileCacheCreating
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class CreateFileSystemFromBackupRequest
|
268
|
+
attr_accessor backup_id: ::String
|
269
|
+
attr_accessor client_request_token: ::String
|
270
|
+
attr_accessor subnet_ids: ::Array[::String]
|
271
|
+
attr_accessor security_group_ids: ::Array[::String]
|
272
|
+
attr_accessor tags: ::Array[Types::Tag]
|
273
|
+
attr_accessor windows_configuration: Types::CreateFileSystemWindowsConfiguration
|
274
|
+
attr_accessor lustre_configuration: Types::CreateFileSystemLustreConfiguration
|
275
|
+
attr_accessor storage_type: ("SSD" | "HDD")
|
276
|
+
attr_accessor kms_key_id: ::String
|
277
|
+
attr_accessor file_system_type_version: ::String
|
278
|
+
attr_accessor open_zfs_configuration: Types::CreateFileSystemOpenZFSConfiguration
|
279
|
+
attr_accessor storage_capacity: ::Integer
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class CreateFileSystemFromBackupResponse
|
284
|
+
attr_accessor file_system: Types::FileSystem
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class CreateFileSystemLustreConfiguration
|
289
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
290
|
+
attr_accessor import_path: ::String
|
291
|
+
attr_accessor export_path: ::String
|
292
|
+
attr_accessor imported_file_chunk_size: ::Integer
|
293
|
+
attr_accessor deployment_type: ("SCRATCH_1" | "SCRATCH_2" | "PERSISTENT_1" | "PERSISTENT_2")
|
294
|
+
attr_accessor auto_import_policy: ("NONE" | "NEW" | "NEW_CHANGED" | "NEW_CHANGED_DELETED")
|
295
|
+
attr_accessor per_unit_storage_throughput: ::Integer
|
296
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
297
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
298
|
+
attr_accessor copy_tags_to_backups: bool
|
299
|
+
attr_accessor drive_cache_type: ("NONE" | "READ")
|
300
|
+
attr_accessor data_compression_type: ("NONE" | "LZ4")
|
301
|
+
attr_accessor log_configuration: Types::LustreLogCreateConfiguration
|
302
|
+
attr_accessor root_squash_configuration: Types::LustreRootSquashConfiguration
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class CreateFileSystemOntapConfiguration
|
307
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
308
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
309
|
+
attr_accessor deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2")
|
310
|
+
attr_accessor endpoint_ip_address_range: ::String
|
311
|
+
attr_accessor fsx_admin_password: ::String
|
312
|
+
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
313
|
+
attr_accessor preferred_subnet_id: ::String
|
314
|
+
attr_accessor route_table_ids: ::Array[::String]
|
315
|
+
attr_accessor throughput_capacity: ::Integer
|
316
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
317
|
+
attr_accessor ha_pairs: ::Integer
|
318
|
+
attr_accessor throughput_capacity_per_ha_pair: ::Integer
|
319
|
+
SENSITIVE: [:fsx_admin_password]
|
320
|
+
end
|
321
|
+
|
322
|
+
class CreateFileSystemOpenZFSConfiguration
|
323
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
324
|
+
attr_accessor copy_tags_to_backups: bool
|
325
|
+
attr_accessor copy_tags_to_volumes: bool
|
326
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
327
|
+
attr_accessor deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_1")
|
328
|
+
attr_accessor throughput_capacity: ::Integer
|
329
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
330
|
+
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
331
|
+
attr_accessor root_volume_configuration: Types::OpenZFSCreateRootVolumeConfiguration
|
332
|
+
attr_accessor preferred_subnet_id: ::String
|
333
|
+
attr_accessor endpoint_ip_address_range: ::String
|
334
|
+
attr_accessor route_table_ids: ::Array[::String]
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class CreateFileSystemRequest
|
339
|
+
attr_accessor client_request_token: ::String
|
340
|
+
attr_accessor file_system_type: ("WINDOWS" | "LUSTRE" | "ONTAP" | "OPENZFS")
|
341
|
+
attr_accessor storage_capacity: ::Integer
|
342
|
+
attr_accessor storage_type: ("SSD" | "HDD")
|
343
|
+
attr_accessor subnet_ids: ::Array[::String]
|
344
|
+
attr_accessor security_group_ids: ::Array[::String]
|
345
|
+
attr_accessor tags: ::Array[Types::Tag]
|
346
|
+
attr_accessor kms_key_id: ::String
|
347
|
+
attr_accessor windows_configuration: Types::CreateFileSystemWindowsConfiguration
|
348
|
+
attr_accessor lustre_configuration: Types::CreateFileSystemLustreConfiguration
|
349
|
+
attr_accessor ontap_configuration: Types::CreateFileSystemOntapConfiguration
|
350
|
+
attr_accessor file_system_type_version: ::String
|
351
|
+
attr_accessor open_zfs_configuration: Types::CreateFileSystemOpenZFSConfiguration
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class CreateFileSystemResponse
|
356
|
+
attr_accessor file_system: Types::FileSystem
|
357
|
+
SENSITIVE: []
|
358
|
+
end
|
359
|
+
|
360
|
+
class CreateFileSystemWindowsConfiguration
|
361
|
+
attr_accessor active_directory_id: ::String
|
362
|
+
attr_accessor self_managed_active_directory_configuration: Types::SelfManagedActiveDirectoryConfiguration
|
363
|
+
attr_accessor deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2")
|
364
|
+
attr_accessor preferred_subnet_id: ::String
|
365
|
+
attr_accessor throughput_capacity: ::Integer
|
366
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
367
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
368
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
369
|
+
attr_accessor copy_tags_to_backups: bool
|
370
|
+
attr_accessor aliases: ::Array[::String]
|
371
|
+
attr_accessor audit_log_configuration: Types::WindowsAuditLogCreateConfiguration
|
372
|
+
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
373
|
+
SENSITIVE: []
|
374
|
+
end
|
375
|
+
|
376
|
+
class CreateOntapVolumeConfiguration
|
377
|
+
attr_accessor junction_path: ::String
|
378
|
+
attr_accessor security_style: ("UNIX" | "NTFS" | "MIXED")
|
379
|
+
attr_accessor size_in_megabytes: ::Integer
|
380
|
+
attr_accessor storage_efficiency_enabled: bool
|
381
|
+
attr_accessor storage_virtual_machine_id: ::String
|
382
|
+
attr_accessor tiering_policy: Types::TieringPolicy
|
383
|
+
attr_accessor ontap_volume_type: ("RW" | "DP")
|
384
|
+
attr_accessor snapshot_policy: ::String
|
385
|
+
attr_accessor copy_tags_to_backups: bool
|
386
|
+
attr_accessor snaplock_configuration: Types::CreateSnaplockConfiguration
|
387
|
+
attr_accessor volume_style: ("FLEXVOL" | "FLEXGROUP")
|
388
|
+
attr_accessor aggregate_configuration: Types::CreateAggregateConfiguration
|
389
|
+
attr_accessor size_in_bytes: ::Integer
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
393
|
+
class CreateOpenZFSOriginSnapshotConfiguration
|
394
|
+
attr_accessor snapshot_arn: ::String
|
395
|
+
attr_accessor copy_strategy: ("CLONE" | "FULL_COPY" | "INCREMENTAL_COPY")
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class CreateOpenZFSVolumeConfiguration
|
400
|
+
attr_accessor parent_volume_id: ::String
|
401
|
+
attr_accessor storage_capacity_reservation_gi_b: ::Integer
|
402
|
+
attr_accessor storage_capacity_quota_gi_b: ::Integer
|
403
|
+
attr_accessor record_size_ki_b: ::Integer
|
404
|
+
attr_accessor data_compression_type: ("NONE" | "ZSTD" | "LZ4")
|
405
|
+
attr_accessor copy_tags_to_snapshots: bool
|
406
|
+
attr_accessor origin_snapshot: Types::CreateOpenZFSOriginSnapshotConfiguration
|
407
|
+
attr_accessor read_only: bool
|
408
|
+
attr_accessor nfs_exports: ::Array[Types::OpenZFSNfsExport]
|
409
|
+
attr_accessor user_and_group_quotas: ::Array[Types::OpenZFSUserOrGroupQuota]
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class CreateSnaplockConfiguration
|
414
|
+
attr_accessor audit_log_volume: bool
|
415
|
+
attr_accessor autocommit_period: Types::AutocommitPeriod
|
416
|
+
attr_accessor privileged_delete: ("DISABLED" | "ENABLED" | "PERMANENTLY_DISABLED")
|
417
|
+
attr_accessor retention_period: Types::SnaplockRetentionPeriod
|
418
|
+
attr_accessor snaplock_type: ("COMPLIANCE" | "ENTERPRISE")
|
419
|
+
attr_accessor volume_append_mode_enabled: bool
|
420
|
+
SENSITIVE: []
|
421
|
+
end
|
422
|
+
|
423
|
+
class CreateSnapshotRequest
|
424
|
+
attr_accessor client_request_token: ::String
|
425
|
+
attr_accessor name: ::String
|
426
|
+
attr_accessor volume_id: ::String
|
427
|
+
attr_accessor tags: ::Array[Types::Tag]
|
428
|
+
SENSITIVE: []
|
429
|
+
end
|
430
|
+
|
431
|
+
class CreateSnapshotResponse
|
432
|
+
attr_accessor snapshot: Types::Snapshot
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class CreateStorageVirtualMachineRequest
|
437
|
+
attr_accessor active_directory_configuration: Types::CreateSvmActiveDirectoryConfiguration
|
438
|
+
attr_accessor client_request_token: ::String
|
439
|
+
attr_accessor file_system_id: ::String
|
440
|
+
attr_accessor name: ::String
|
441
|
+
attr_accessor svm_admin_password: ::String
|
442
|
+
attr_accessor tags: ::Array[Types::Tag]
|
443
|
+
attr_accessor root_volume_security_style: ("UNIX" | "NTFS" | "MIXED")
|
444
|
+
SENSITIVE: [:svm_admin_password]
|
445
|
+
end
|
446
|
+
|
447
|
+
class CreateStorageVirtualMachineResponse
|
448
|
+
attr_accessor storage_virtual_machine: Types::StorageVirtualMachine
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class CreateSvmActiveDirectoryConfiguration
|
453
|
+
attr_accessor net_bios_name: ::String
|
454
|
+
attr_accessor self_managed_active_directory_configuration: Types::SelfManagedActiveDirectoryConfiguration
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class CreateVolumeFromBackupRequest
|
459
|
+
attr_accessor backup_id: ::String
|
460
|
+
attr_accessor client_request_token: ::String
|
461
|
+
attr_accessor name: ::String
|
462
|
+
attr_accessor ontap_configuration: Types::CreateOntapVolumeConfiguration
|
463
|
+
attr_accessor tags: ::Array[Types::Tag]
|
464
|
+
SENSITIVE: []
|
465
|
+
end
|
466
|
+
|
467
|
+
class CreateVolumeFromBackupResponse
|
468
|
+
attr_accessor volume: Types::Volume
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class CreateVolumeRequest
|
473
|
+
attr_accessor client_request_token: ::String
|
474
|
+
attr_accessor volume_type: ("ONTAP" | "OPENZFS")
|
475
|
+
attr_accessor name: ::String
|
476
|
+
attr_accessor ontap_configuration: Types::CreateOntapVolumeConfiguration
|
477
|
+
attr_accessor tags: ::Array[Types::Tag]
|
478
|
+
attr_accessor open_zfs_configuration: Types::CreateOpenZFSVolumeConfiguration
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class CreateVolumeResponse
|
483
|
+
attr_accessor volume: Types::Volume
|
484
|
+
SENSITIVE: []
|
485
|
+
end
|
486
|
+
|
487
|
+
class DataRepositoryAssociation
|
488
|
+
attr_accessor association_id: ::String
|
489
|
+
attr_accessor resource_arn: ::String
|
490
|
+
attr_accessor file_system_id: ::String
|
491
|
+
attr_accessor lifecycle: ("CREATING" | "AVAILABLE" | "MISCONFIGURED" | "UPDATING" | "DELETING" | "FAILED")
|
492
|
+
attr_accessor failure_details: Types::DataRepositoryFailureDetails
|
493
|
+
attr_accessor file_system_path: ::String
|
494
|
+
attr_accessor data_repository_path: ::String
|
495
|
+
attr_accessor batch_import_meta_data_on_create: bool
|
496
|
+
attr_accessor imported_file_chunk_size: ::Integer
|
497
|
+
attr_accessor s3: Types::S3DataRepositoryConfiguration
|
498
|
+
attr_accessor tags: ::Array[Types::Tag]
|
499
|
+
attr_accessor creation_time: ::Time
|
500
|
+
attr_accessor file_cache_id: ::String
|
501
|
+
attr_accessor file_cache_path: ::String
|
502
|
+
attr_accessor data_repository_subdirectories: ::Array[::String]
|
503
|
+
attr_accessor nfs: Types::NFSDataRepositoryConfiguration
|
504
|
+
SENSITIVE: []
|
505
|
+
end
|
506
|
+
|
507
|
+
class DataRepositoryAssociationNotFound
|
508
|
+
attr_accessor message: ::String
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class DataRepositoryConfiguration
|
513
|
+
attr_accessor lifecycle: ("CREATING" | "AVAILABLE" | "MISCONFIGURED" | "UPDATING" | "DELETING" | "FAILED")
|
514
|
+
attr_accessor import_path: ::String
|
515
|
+
attr_accessor export_path: ::String
|
516
|
+
attr_accessor imported_file_chunk_size: ::Integer
|
517
|
+
attr_accessor auto_import_policy: ("NONE" | "NEW" | "NEW_CHANGED" | "NEW_CHANGED_DELETED")
|
518
|
+
attr_accessor failure_details: Types::DataRepositoryFailureDetails
|
519
|
+
SENSITIVE: []
|
520
|
+
end
|
521
|
+
|
522
|
+
class DataRepositoryFailureDetails
|
523
|
+
attr_accessor message: ::String
|
524
|
+
SENSITIVE: []
|
525
|
+
end
|
526
|
+
|
527
|
+
class DataRepositoryTask
|
528
|
+
attr_accessor task_id: ::String
|
529
|
+
attr_accessor lifecycle: ("PENDING" | "EXECUTING" | "FAILED" | "SUCCEEDED" | "CANCELED" | "CANCELING")
|
530
|
+
attr_accessor type: ("EXPORT_TO_REPOSITORY" | "IMPORT_METADATA_FROM_REPOSITORY" | "RELEASE_DATA_FROM_FILESYSTEM" | "AUTO_RELEASE_DATA")
|
531
|
+
attr_accessor creation_time: ::Time
|
532
|
+
attr_accessor start_time: ::Time
|
533
|
+
attr_accessor end_time: ::Time
|
534
|
+
attr_accessor resource_arn: ::String
|
535
|
+
attr_accessor tags: ::Array[Types::Tag]
|
536
|
+
attr_accessor file_system_id: ::String
|
537
|
+
attr_accessor paths: ::Array[::String]
|
538
|
+
attr_accessor failure_details: Types::DataRepositoryTaskFailureDetails
|
539
|
+
attr_accessor status: Types::DataRepositoryTaskStatus
|
540
|
+
attr_accessor report: Types::CompletionReport
|
541
|
+
attr_accessor capacity_to_release: ::Integer
|
542
|
+
attr_accessor file_cache_id: ::String
|
543
|
+
attr_accessor release_configuration: Types::ReleaseConfiguration
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class DataRepositoryTaskEnded
|
548
|
+
attr_accessor message: ::String
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class DataRepositoryTaskExecuting
|
553
|
+
attr_accessor message: ::String
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class DataRepositoryTaskFailureDetails
|
558
|
+
attr_accessor message: ::String
|
559
|
+
SENSITIVE: []
|
560
|
+
end
|
561
|
+
|
562
|
+
class DataRepositoryTaskFilter
|
563
|
+
attr_accessor name: ("file-system-id" | "task-lifecycle" | "data-repository-association-id" | "file-cache-id")
|
564
|
+
attr_accessor values: ::Array[::String]
|
565
|
+
SENSITIVE: []
|
566
|
+
end
|
567
|
+
|
568
|
+
class DataRepositoryTaskNotFound
|
569
|
+
attr_accessor message: ::String
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class DataRepositoryTaskStatus
|
574
|
+
attr_accessor total_count: ::Integer
|
575
|
+
attr_accessor succeeded_count: ::Integer
|
576
|
+
attr_accessor failed_count: ::Integer
|
577
|
+
attr_accessor last_updated_time: ::Time
|
578
|
+
attr_accessor released_capacity: ::Integer
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class DeleteBackupRequest
|
583
|
+
attr_accessor backup_id: ::String
|
584
|
+
attr_accessor client_request_token: ::String
|
585
|
+
SENSITIVE: []
|
586
|
+
end
|
587
|
+
|
588
|
+
class DeleteBackupResponse
|
589
|
+
attr_accessor backup_id: ::String
|
590
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "TRANSFERRING" | "DELETED" | "FAILED" | "PENDING" | "COPYING")
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class DeleteDataRepositoryAssociationRequest
|
595
|
+
attr_accessor association_id: ::String
|
596
|
+
attr_accessor client_request_token: ::String
|
597
|
+
attr_accessor delete_data_in_file_system: bool
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class DeleteDataRepositoryAssociationResponse
|
602
|
+
attr_accessor association_id: ::String
|
603
|
+
attr_accessor lifecycle: ("CREATING" | "AVAILABLE" | "MISCONFIGURED" | "UPDATING" | "DELETING" | "FAILED")
|
604
|
+
attr_accessor delete_data_in_file_system: bool
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class DeleteFileCacheRequest
|
609
|
+
attr_accessor file_cache_id: ::String
|
610
|
+
attr_accessor client_request_token: ::String
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class DeleteFileCacheResponse
|
615
|
+
attr_accessor file_cache_id: ::String
|
616
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED")
|
617
|
+
SENSITIVE: []
|
618
|
+
end
|
619
|
+
|
620
|
+
class DeleteFileSystemLustreConfiguration
|
621
|
+
attr_accessor skip_final_backup: bool
|
622
|
+
attr_accessor final_backup_tags: ::Array[Types::Tag]
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class DeleteFileSystemLustreResponse
|
627
|
+
attr_accessor final_backup_id: ::String
|
628
|
+
attr_accessor final_backup_tags: ::Array[Types::Tag]
|
629
|
+
SENSITIVE: []
|
630
|
+
end
|
631
|
+
|
632
|
+
class DeleteFileSystemOpenZFSConfiguration
|
633
|
+
attr_accessor skip_final_backup: bool
|
634
|
+
attr_accessor final_backup_tags: ::Array[Types::Tag]
|
635
|
+
attr_accessor options: ::Array[("DELETE_CHILD_VOLUMES_AND_SNAPSHOTS")]
|
636
|
+
SENSITIVE: []
|
637
|
+
end
|
638
|
+
|
639
|
+
class DeleteFileSystemOpenZFSResponse
|
640
|
+
attr_accessor final_backup_id: ::String
|
641
|
+
attr_accessor final_backup_tags: ::Array[Types::Tag]
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class DeleteFileSystemRequest
|
646
|
+
attr_accessor file_system_id: ::String
|
647
|
+
attr_accessor client_request_token: ::String
|
648
|
+
attr_accessor windows_configuration: Types::DeleteFileSystemWindowsConfiguration
|
649
|
+
attr_accessor lustre_configuration: Types::DeleteFileSystemLustreConfiguration
|
650
|
+
attr_accessor open_zfs_configuration: Types::DeleteFileSystemOpenZFSConfiguration
|
651
|
+
SENSITIVE: []
|
652
|
+
end
|
653
|
+
|
654
|
+
class DeleteFileSystemResponse
|
655
|
+
attr_accessor file_system_id: ::String
|
656
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "FAILED" | "DELETING" | "MISCONFIGURED" | "UPDATING" | "MISCONFIGURED_UNAVAILABLE")
|
657
|
+
attr_accessor windows_response: Types::DeleteFileSystemWindowsResponse
|
658
|
+
attr_accessor lustre_response: Types::DeleteFileSystemLustreResponse
|
659
|
+
attr_accessor open_zfs_response: Types::DeleteFileSystemOpenZFSResponse
|
660
|
+
SENSITIVE: []
|
661
|
+
end
|
662
|
+
|
663
|
+
class DeleteFileSystemWindowsConfiguration
|
664
|
+
attr_accessor skip_final_backup: bool
|
665
|
+
attr_accessor final_backup_tags: ::Array[Types::Tag]
|
666
|
+
SENSITIVE: []
|
667
|
+
end
|
668
|
+
|
669
|
+
class DeleteFileSystemWindowsResponse
|
670
|
+
attr_accessor final_backup_id: ::String
|
671
|
+
attr_accessor final_backup_tags: ::Array[Types::Tag]
|
672
|
+
SENSITIVE: []
|
673
|
+
end
|
674
|
+
|
675
|
+
class DeleteSnapshotRequest
|
676
|
+
attr_accessor client_request_token: ::String
|
677
|
+
attr_accessor snapshot_id: ::String
|
678
|
+
SENSITIVE: []
|
679
|
+
end
|
680
|
+
|
681
|
+
class DeleteSnapshotResponse
|
682
|
+
attr_accessor snapshot_id: ::String
|
683
|
+
attr_accessor lifecycle: ("PENDING" | "CREATING" | "DELETING" | "AVAILABLE")
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class DeleteStorageVirtualMachineRequest
|
688
|
+
attr_accessor client_request_token: ::String
|
689
|
+
attr_accessor storage_virtual_machine_id: ::String
|
690
|
+
SENSITIVE: []
|
691
|
+
end
|
692
|
+
|
693
|
+
class DeleteStorageVirtualMachineResponse
|
694
|
+
attr_accessor storage_virtual_machine_id: ::String
|
695
|
+
attr_accessor lifecycle: ("CREATED" | "CREATING" | "DELETING" | "FAILED" | "MISCONFIGURED" | "PENDING")
|
696
|
+
SENSITIVE: []
|
697
|
+
end
|
698
|
+
|
699
|
+
class DeleteVolumeOntapConfiguration
|
700
|
+
attr_accessor skip_final_backup: bool
|
701
|
+
attr_accessor final_backup_tags: ::Array[Types::Tag]
|
702
|
+
attr_accessor bypass_snaplock_enterprise_retention: bool
|
703
|
+
SENSITIVE: []
|
704
|
+
end
|
705
|
+
|
706
|
+
class DeleteVolumeOntapResponse
|
707
|
+
attr_accessor final_backup_id: ::String
|
708
|
+
attr_accessor final_backup_tags: ::Array[Types::Tag]
|
709
|
+
SENSITIVE: []
|
710
|
+
end
|
711
|
+
|
712
|
+
class DeleteVolumeOpenZFSConfiguration
|
713
|
+
attr_accessor options: ::Array[("DELETE_CHILD_VOLUMES_AND_SNAPSHOTS")]
|
714
|
+
SENSITIVE: []
|
715
|
+
end
|
716
|
+
|
717
|
+
class DeleteVolumeRequest
|
718
|
+
attr_accessor client_request_token: ::String
|
719
|
+
attr_accessor volume_id: ::String
|
720
|
+
attr_accessor ontap_configuration: Types::DeleteVolumeOntapConfiguration
|
721
|
+
attr_accessor open_zfs_configuration: Types::DeleteVolumeOpenZFSConfiguration
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class DeleteVolumeResponse
|
726
|
+
attr_accessor volume_id: ::String
|
727
|
+
attr_accessor lifecycle: ("CREATING" | "CREATED" | "DELETING" | "FAILED" | "MISCONFIGURED" | "PENDING" | "AVAILABLE")
|
728
|
+
attr_accessor ontap_response: Types::DeleteVolumeOntapResponse
|
729
|
+
SENSITIVE: []
|
730
|
+
end
|
731
|
+
|
732
|
+
class DescribeBackupsRequest
|
733
|
+
attr_accessor backup_ids: ::Array[::String]
|
734
|
+
attr_accessor filters: ::Array[Types::Filter]
|
735
|
+
attr_accessor max_results: ::Integer
|
736
|
+
attr_accessor next_token: ::String
|
737
|
+
SENSITIVE: []
|
738
|
+
end
|
739
|
+
|
740
|
+
class DescribeBackupsResponse
|
741
|
+
attr_accessor backups: ::Array[Types::Backup]
|
742
|
+
attr_accessor next_token: ::String
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class DescribeDataRepositoryAssociationsRequest
|
747
|
+
attr_accessor association_ids: ::Array[::String]
|
748
|
+
attr_accessor filters: ::Array[Types::Filter]
|
749
|
+
attr_accessor max_results: ::Integer
|
750
|
+
attr_accessor next_token: ::String
|
751
|
+
SENSITIVE: []
|
752
|
+
end
|
753
|
+
|
754
|
+
class DescribeDataRepositoryAssociationsResponse
|
755
|
+
attr_accessor associations: ::Array[Types::DataRepositoryAssociation]
|
756
|
+
attr_accessor next_token: ::String
|
757
|
+
SENSITIVE: []
|
758
|
+
end
|
759
|
+
|
760
|
+
class DescribeDataRepositoryTasksRequest
|
761
|
+
attr_accessor task_ids: ::Array[::String]
|
762
|
+
attr_accessor filters: ::Array[Types::DataRepositoryTaskFilter]
|
763
|
+
attr_accessor max_results: ::Integer
|
764
|
+
attr_accessor next_token: ::String
|
765
|
+
SENSITIVE: []
|
766
|
+
end
|
767
|
+
|
768
|
+
class DescribeDataRepositoryTasksResponse
|
769
|
+
attr_accessor data_repository_tasks: ::Array[Types::DataRepositoryTask]
|
770
|
+
attr_accessor next_token: ::String
|
771
|
+
SENSITIVE: []
|
772
|
+
end
|
773
|
+
|
774
|
+
class DescribeFileCachesRequest
|
775
|
+
attr_accessor file_cache_ids: ::Array[::String]
|
776
|
+
attr_accessor max_results: ::Integer
|
777
|
+
attr_accessor next_token: ::String
|
778
|
+
SENSITIVE: []
|
779
|
+
end
|
780
|
+
|
781
|
+
class DescribeFileCachesResponse
|
782
|
+
attr_accessor file_caches: ::Array[Types::FileCache]
|
783
|
+
attr_accessor next_token: ::String
|
784
|
+
SENSITIVE: []
|
785
|
+
end
|
786
|
+
|
787
|
+
class DescribeFileSystemAliasesRequest
|
788
|
+
attr_accessor client_request_token: ::String
|
789
|
+
attr_accessor file_system_id: ::String
|
790
|
+
attr_accessor max_results: ::Integer
|
791
|
+
attr_accessor next_token: ::String
|
792
|
+
SENSITIVE: []
|
793
|
+
end
|
794
|
+
|
795
|
+
class DescribeFileSystemAliasesResponse
|
796
|
+
attr_accessor aliases: ::Array[Types::Alias]
|
797
|
+
attr_accessor next_token: ::String
|
798
|
+
SENSITIVE: []
|
799
|
+
end
|
800
|
+
|
801
|
+
class DescribeFileSystemsRequest
|
802
|
+
attr_accessor file_system_ids: ::Array[::String]
|
803
|
+
attr_accessor max_results: ::Integer
|
804
|
+
attr_accessor next_token: ::String
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class DescribeFileSystemsResponse
|
809
|
+
attr_accessor file_systems: ::Array[Types::FileSystem]
|
810
|
+
attr_accessor next_token: ::String
|
811
|
+
SENSITIVE: []
|
812
|
+
end
|
813
|
+
|
814
|
+
class DescribeSharedVpcConfigurationRequest < Aws::EmptyStructure
|
815
|
+
end
|
816
|
+
|
817
|
+
class DescribeSharedVpcConfigurationResponse
|
818
|
+
attr_accessor enable_fsx_route_table_updates_from_participant_accounts: ::String
|
819
|
+
SENSITIVE: []
|
820
|
+
end
|
821
|
+
|
822
|
+
class DescribeSnapshotsRequest
|
823
|
+
attr_accessor snapshot_ids: ::Array[::String]
|
824
|
+
attr_accessor filters: ::Array[Types::SnapshotFilter]
|
825
|
+
attr_accessor max_results: ::Integer
|
826
|
+
attr_accessor next_token: ::String
|
827
|
+
attr_accessor include_shared: bool
|
828
|
+
SENSITIVE: []
|
829
|
+
end
|
830
|
+
|
831
|
+
class DescribeSnapshotsResponse
|
832
|
+
attr_accessor snapshots: ::Array[Types::Snapshot]
|
833
|
+
attr_accessor next_token: ::String
|
834
|
+
SENSITIVE: []
|
835
|
+
end
|
836
|
+
|
837
|
+
class DescribeStorageVirtualMachinesRequest
|
838
|
+
attr_accessor storage_virtual_machine_ids: ::Array[::String]
|
839
|
+
attr_accessor filters: ::Array[Types::StorageVirtualMachineFilter]
|
840
|
+
attr_accessor max_results: ::Integer
|
841
|
+
attr_accessor next_token: ::String
|
842
|
+
SENSITIVE: []
|
843
|
+
end
|
844
|
+
|
845
|
+
class DescribeStorageVirtualMachinesResponse
|
846
|
+
attr_accessor storage_virtual_machines: ::Array[Types::StorageVirtualMachine]
|
847
|
+
attr_accessor next_token: ::String
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class DescribeVolumesRequest
|
852
|
+
attr_accessor volume_ids: ::Array[::String]
|
853
|
+
attr_accessor filters: ::Array[Types::VolumeFilter]
|
854
|
+
attr_accessor max_results: ::Integer
|
855
|
+
attr_accessor next_token: ::String
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
859
|
+
class DescribeVolumesResponse
|
860
|
+
attr_accessor volumes: ::Array[Types::Volume]
|
861
|
+
attr_accessor next_token: ::String
|
862
|
+
SENSITIVE: []
|
863
|
+
end
|
864
|
+
|
865
|
+
class DisassociateFileSystemAliasesRequest
|
866
|
+
attr_accessor client_request_token: ::String
|
867
|
+
attr_accessor file_system_id: ::String
|
868
|
+
attr_accessor aliases: ::Array[::String]
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class DisassociateFileSystemAliasesResponse
|
873
|
+
attr_accessor aliases: ::Array[Types::Alias]
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
877
|
+
class DiskIopsConfiguration
|
878
|
+
attr_accessor mode: ("AUTOMATIC" | "USER_PROVISIONED")
|
879
|
+
attr_accessor iops: ::Integer
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
883
|
+
class DurationSinceLastAccess
|
884
|
+
attr_accessor unit: ("DAYS")
|
885
|
+
attr_accessor value: ::Integer
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class FileCache
|
890
|
+
attr_accessor owner_id: ::String
|
891
|
+
attr_accessor creation_time: ::Time
|
892
|
+
attr_accessor file_cache_id: ::String
|
893
|
+
attr_accessor file_cache_type: ("LUSTRE")
|
894
|
+
attr_accessor file_cache_type_version: ::String
|
895
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED")
|
896
|
+
attr_accessor failure_details: Types::FileCacheFailureDetails
|
897
|
+
attr_accessor storage_capacity: ::Integer
|
898
|
+
attr_accessor vpc_id: ::String
|
899
|
+
attr_accessor subnet_ids: ::Array[::String]
|
900
|
+
attr_accessor network_interface_ids: ::Array[::String]
|
901
|
+
attr_accessor dns_name: ::String
|
902
|
+
attr_accessor kms_key_id: ::String
|
903
|
+
attr_accessor resource_arn: ::String
|
904
|
+
attr_accessor lustre_configuration: Types::FileCacheLustreConfiguration
|
905
|
+
attr_accessor data_repository_association_ids: ::Array[::String]
|
906
|
+
SENSITIVE: []
|
907
|
+
end
|
908
|
+
|
909
|
+
class FileCacheCreating
|
910
|
+
attr_accessor owner_id: ::String
|
911
|
+
attr_accessor creation_time: ::Time
|
912
|
+
attr_accessor file_cache_id: ::String
|
913
|
+
attr_accessor file_cache_type: ("LUSTRE")
|
914
|
+
attr_accessor file_cache_type_version: ::String
|
915
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "DELETING" | "UPDATING" | "FAILED")
|
916
|
+
attr_accessor failure_details: Types::FileCacheFailureDetails
|
917
|
+
attr_accessor storage_capacity: ::Integer
|
918
|
+
attr_accessor vpc_id: ::String
|
919
|
+
attr_accessor subnet_ids: ::Array[::String]
|
920
|
+
attr_accessor network_interface_ids: ::Array[::String]
|
921
|
+
attr_accessor dns_name: ::String
|
922
|
+
attr_accessor kms_key_id: ::String
|
923
|
+
attr_accessor resource_arn: ::String
|
924
|
+
attr_accessor tags: ::Array[Types::Tag]
|
925
|
+
attr_accessor copy_tags_to_data_repository_associations: bool
|
926
|
+
attr_accessor lustre_configuration: Types::FileCacheLustreConfiguration
|
927
|
+
attr_accessor data_repository_association_ids: ::Array[::String]
|
928
|
+
SENSITIVE: []
|
929
|
+
end
|
930
|
+
|
931
|
+
class FileCacheDataRepositoryAssociation
|
932
|
+
attr_accessor file_cache_path: ::String
|
933
|
+
attr_accessor data_repository_path: ::String
|
934
|
+
attr_accessor data_repository_subdirectories: ::Array[::String]
|
935
|
+
attr_accessor nfs: Types::FileCacheNFSConfiguration
|
936
|
+
SENSITIVE: []
|
937
|
+
end
|
938
|
+
|
939
|
+
class FileCacheFailureDetails
|
940
|
+
attr_accessor message: ::String
|
941
|
+
SENSITIVE: []
|
942
|
+
end
|
943
|
+
|
944
|
+
class FileCacheLustreConfiguration
|
945
|
+
attr_accessor per_unit_storage_throughput: ::Integer
|
946
|
+
attr_accessor deployment_type: ("CACHE_1")
|
947
|
+
attr_accessor mount_name: ::String
|
948
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
949
|
+
attr_accessor metadata_configuration: Types::FileCacheLustreMetadataConfiguration
|
950
|
+
attr_accessor log_configuration: Types::LustreLogConfiguration
|
951
|
+
SENSITIVE: []
|
952
|
+
end
|
953
|
+
|
954
|
+
class FileCacheLustreMetadataConfiguration
|
955
|
+
attr_accessor storage_capacity: ::Integer
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class FileCacheNFSConfiguration
|
960
|
+
attr_accessor version: ("NFS3")
|
961
|
+
attr_accessor dns_ips: ::Array[::String]
|
962
|
+
SENSITIVE: []
|
963
|
+
end
|
964
|
+
|
965
|
+
class FileCacheNotFound
|
966
|
+
attr_accessor message: ::String
|
967
|
+
SENSITIVE: []
|
968
|
+
end
|
969
|
+
|
970
|
+
class FileSystem
|
971
|
+
attr_accessor owner_id: ::String
|
972
|
+
attr_accessor creation_time: ::Time
|
973
|
+
attr_accessor file_system_id: ::String
|
974
|
+
attr_accessor file_system_type: ("WINDOWS" | "LUSTRE" | "ONTAP" | "OPENZFS")
|
975
|
+
attr_accessor lifecycle: ("AVAILABLE" | "CREATING" | "FAILED" | "DELETING" | "MISCONFIGURED" | "UPDATING" | "MISCONFIGURED_UNAVAILABLE")
|
976
|
+
attr_accessor failure_details: Types::FileSystemFailureDetails
|
977
|
+
attr_accessor storage_capacity: ::Integer
|
978
|
+
attr_accessor storage_type: ("SSD" | "HDD")
|
979
|
+
attr_accessor vpc_id: ::String
|
980
|
+
attr_accessor subnet_ids: ::Array[::String]
|
981
|
+
attr_accessor network_interface_ids: ::Array[::String]
|
982
|
+
attr_accessor dns_name: ::String
|
983
|
+
attr_accessor kms_key_id: ::String
|
984
|
+
attr_accessor resource_arn: ::String
|
985
|
+
attr_accessor tags: ::Array[Types::Tag]
|
986
|
+
attr_accessor windows_configuration: Types::WindowsFileSystemConfiguration
|
987
|
+
attr_accessor lustre_configuration: Types::LustreFileSystemConfiguration
|
988
|
+
attr_accessor administrative_actions: ::Array[Types::AdministrativeAction]
|
989
|
+
attr_accessor ontap_configuration: Types::OntapFileSystemConfiguration
|
990
|
+
attr_accessor file_system_type_version: ::String
|
991
|
+
attr_accessor open_zfs_configuration: Types::OpenZFSFileSystemConfiguration
|
992
|
+
SENSITIVE: []
|
993
|
+
end
|
994
|
+
|
995
|
+
class FileSystemEndpoint
|
996
|
+
attr_accessor dns_name: ::String
|
997
|
+
attr_accessor ip_addresses: ::Array[::String]
|
998
|
+
SENSITIVE: []
|
999
|
+
end
|
1000
|
+
|
1001
|
+
class FileSystemEndpoints
|
1002
|
+
attr_accessor intercluster: Types::FileSystemEndpoint
|
1003
|
+
attr_accessor management: Types::FileSystemEndpoint
|
1004
|
+
SENSITIVE: []
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
class FileSystemFailureDetails
|
1008
|
+
attr_accessor message: ::String
|
1009
|
+
SENSITIVE: []
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
class FileSystemNotFound
|
1013
|
+
attr_accessor message: ::String
|
1014
|
+
SENSITIVE: []
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
class Filter
|
1018
|
+
attr_accessor name: ("file-system-id" | "backup-type" | "file-system-type" | "volume-id" | "data-repository-type" | "file-cache-id" | "file-cache-type")
|
1019
|
+
attr_accessor values: ::Array[::String]
|
1020
|
+
SENSITIVE: []
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class IncompatibleParameterError
|
1024
|
+
attr_accessor parameter: ::String
|
1025
|
+
attr_accessor message: ::String
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class IncompatibleRegionForMultiAZ
|
1030
|
+
attr_accessor message: ::String
|
1031
|
+
SENSITIVE: []
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
class InternalServerError
|
1035
|
+
attr_accessor message: ::String
|
1036
|
+
SENSITIVE: []
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
class InvalidDataRepositoryType
|
1040
|
+
attr_accessor message: ::String
|
1041
|
+
SENSITIVE: []
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
class InvalidDestinationKmsKey
|
1045
|
+
attr_accessor message: ::String
|
1046
|
+
SENSITIVE: []
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
class InvalidExportPath
|
1050
|
+
attr_accessor message: ::String
|
1051
|
+
SENSITIVE: []
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
class InvalidImportPath
|
1055
|
+
attr_accessor message: ::String
|
1056
|
+
SENSITIVE: []
|
1057
|
+
end
|
1058
|
+
|
1059
|
+
class InvalidNetworkSettings
|
1060
|
+
attr_accessor message: ::String
|
1061
|
+
attr_accessor invalid_subnet_id: ::String
|
1062
|
+
attr_accessor invalid_security_group_id: ::String
|
1063
|
+
attr_accessor invalid_route_table_id: ::String
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class InvalidPerUnitStorageThroughput
|
1068
|
+
attr_accessor message: ::String
|
1069
|
+
SENSITIVE: []
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
class InvalidRegion
|
1073
|
+
attr_accessor message: ::String
|
1074
|
+
SENSITIVE: []
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
class InvalidSourceKmsKey
|
1078
|
+
attr_accessor message: ::String
|
1079
|
+
SENSITIVE: []
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
class LifecycleTransitionReason
|
1083
|
+
attr_accessor message: ::String
|
1084
|
+
SENSITIVE: []
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class ListTagsForResourceRequest
|
1088
|
+
attr_accessor resource_arn: ::String
|
1089
|
+
attr_accessor max_results: ::Integer
|
1090
|
+
attr_accessor next_token: ::String
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class ListTagsForResourceResponse
|
1095
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1096
|
+
attr_accessor next_token: ::String
|
1097
|
+
SENSITIVE: []
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
class LustreFileSystemConfiguration
|
1101
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
1102
|
+
attr_accessor data_repository_configuration: Types::DataRepositoryConfiguration
|
1103
|
+
attr_accessor deployment_type: ("SCRATCH_1" | "SCRATCH_2" | "PERSISTENT_1" | "PERSISTENT_2")
|
1104
|
+
attr_accessor per_unit_storage_throughput: ::Integer
|
1105
|
+
attr_accessor mount_name: ::String
|
1106
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
1107
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
1108
|
+
attr_accessor copy_tags_to_backups: bool
|
1109
|
+
attr_accessor drive_cache_type: ("NONE" | "READ")
|
1110
|
+
attr_accessor data_compression_type: ("NONE" | "LZ4")
|
1111
|
+
attr_accessor log_configuration: Types::LustreLogConfiguration
|
1112
|
+
attr_accessor root_squash_configuration: Types::LustreRootSquashConfiguration
|
1113
|
+
SENSITIVE: []
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
class LustreLogConfiguration
|
1117
|
+
attr_accessor level: ("DISABLED" | "WARN_ONLY" | "ERROR_ONLY" | "WARN_ERROR")
|
1118
|
+
attr_accessor destination: ::String
|
1119
|
+
SENSITIVE: []
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
class LustreLogCreateConfiguration
|
1123
|
+
attr_accessor level: ("DISABLED" | "WARN_ONLY" | "ERROR_ONLY" | "WARN_ERROR")
|
1124
|
+
attr_accessor destination: ::String
|
1125
|
+
SENSITIVE: []
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
class LustreRootSquashConfiguration
|
1129
|
+
attr_accessor root_squash: ::String
|
1130
|
+
attr_accessor no_squash_nids: ::Array[::String]
|
1131
|
+
SENSITIVE: []
|
1132
|
+
end
|
1133
|
+
|
1134
|
+
class MissingFileCacheConfiguration
|
1135
|
+
attr_accessor message: ::String
|
1136
|
+
SENSITIVE: []
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
class MissingFileSystemConfiguration
|
1140
|
+
attr_accessor message: ::String
|
1141
|
+
SENSITIVE: []
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
class MissingVolumeConfiguration
|
1145
|
+
attr_accessor message: ::String
|
1146
|
+
SENSITIVE: []
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
class NFSDataRepositoryConfiguration
|
1150
|
+
attr_accessor version: ("NFS3")
|
1151
|
+
attr_accessor dns_ips: ::Array[::String]
|
1152
|
+
attr_accessor auto_export_policy: Types::AutoExportPolicy
|
1153
|
+
SENSITIVE: []
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class NotServiceResourceError
|
1157
|
+
attr_accessor resource_arn: ::String
|
1158
|
+
attr_accessor message: ::String
|
1159
|
+
SENSITIVE: []
|
1160
|
+
end
|
1161
|
+
|
1162
|
+
class OntapFileSystemConfiguration
|
1163
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
1164
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
1165
|
+
attr_accessor deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2")
|
1166
|
+
attr_accessor endpoint_ip_address_range: ::String
|
1167
|
+
attr_accessor endpoints: Types::FileSystemEndpoints
|
1168
|
+
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
1169
|
+
attr_accessor preferred_subnet_id: ::String
|
1170
|
+
attr_accessor route_table_ids: ::Array[::String]
|
1171
|
+
attr_accessor throughput_capacity: ::Integer
|
1172
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
1173
|
+
attr_accessor fsx_admin_password: ::String
|
1174
|
+
attr_accessor ha_pairs: ::Integer
|
1175
|
+
attr_accessor throughput_capacity_per_ha_pair: ::Integer
|
1176
|
+
SENSITIVE: [:fsx_admin_password]
|
1177
|
+
end
|
1178
|
+
|
1179
|
+
class OntapVolumeConfiguration
|
1180
|
+
attr_accessor flex_cache_endpoint_type: ("NONE" | "ORIGIN" | "CACHE")
|
1181
|
+
attr_accessor junction_path: ::String
|
1182
|
+
attr_accessor security_style: ("UNIX" | "NTFS" | "MIXED")
|
1183
|
+
attr_accessor size_in_megabytes: ::Integer
|
1184
|
+
attr_accessor storage_efficiency_enabled: bool
|
1185
|
+
attr_accessor storage_virtual_machine_id: ::String
|
1186
|
+
attr_accessor storage_virtual_machine_root: bool
|
1187
|
+
attr_accessor tiering_policy: Types::TieringPolicy
|
1188
|
+
attr_accessor uuid: ::String
|
1189
|
+
attr_accessor ontap_volume_type: ("RW" | "DP" | "LS")
|
1190
|
+
attr_accessor snapshot_policy: ::String
|
1191
|
+
attr_accessor copy_tags_to_backups: bool
|
1192
|
+
attr_accessor snaplock_configuration: Types::SnaplockConfiguration
|
1193
|
+
attr_accessor volume_style: ("FLEXVOL" | "FLEXGROUP")
|
1194
|
+
attr_accessor aggregate_configuration: Types::AggregateConfiguration
|
1195
|
+
attr_accessor size_in_bytes: ::Integer
|
1196
|
+
SENSITIVE: []
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
class OpenZFSClientConfiguration
|
1200
|
+
attr_accessor clients: ::String
|
1201
|
+
attr_accessor options: ::Array[::String]
|
1202
|
+
SENSITIVE: []
|
1203
|
+
end
|
1204
|
+
|
1205
|
+
class OpenZFSCreateRootVolumeConfiguration
|
1206
|
+
attr_accessor record_size_ki_b: ::Integer
|
1207
|
+
attr_accessor data_compression_type: ("NONE" | "ZSTD" | "LZ4")
|
1208
|
+
attr_accessor nfs_exports: ::Array[Types::OpenZFSNfsExport]
|
1209
|
+
attr_accessor user_and_group_quotas: ::Array[Types::OpenZFSUserOrGroupQuota]
|
1210
|
+
attr_accessor copy_tags_to_snapshots: bool
|
1211
|
+
attr_accessor read_only: bool
|
1212
|
+
SENSITIVE: []
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
class OpenZFSFileSystemConfiguration
|
1216
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
1217
|
+
attr_accessor copy_tags_to_backups: bool
|
1218
|
+
attr_accessor copy_tags_to_volumes: bool
|
1219
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
1220
|
+
attr_accessor deployment_type: ("SINGLE_AZ_1" | "SINGLE_AZ_2" | "MULTI_AZ_1")
|
1221
|
+
attr_accessor throughput_capacity: ::Integer
|
1222
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
1223
|
+
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
1224
|
+
attr_accessor root_volume_id: ::String
|
1225
|
+
attr_accessor preferred_subnet_id: ::String
|
1226
|
+
attr_accessor endpoint_ip_address_range: ::String
|
1227
|
+
attr_accessor route_table_ids: ::Array[::String]
|
1228
|
+
attr_accessor endpoint_ip_address: ::String
|
1229
|
+
SENSITIVE: []
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class OpenZFSNfsExport
|
1233
|
+
attr_accessor client_configurations: ::Array[Types::OpenZFSClientConfiguration]
|
1234
|
+
SENSITIVE: []
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class OpenZFSOriginSnapshotConfiguration
|
1238
|
+
attr_accessor snapshot_arn: ::String
|
1239
|
+
attr_accessor copy_strategy: ("CLONE" | "FULL_COPY" | "INCREMENTAL_COPY")
|
1240
|
+
SENSITIVE: []
|
1241
|
+
end
|
1242
|
+
|
1243
|
+
class OpenZFSUserOrGroupQuota
|
1244
|
+
attr_accessor type: ("USER" | "GROUP")
|
1245
|
+
attr_accessor id: ::Integer
|
1246
|
+
attr_accessor storage_capacity_quota_gi_b: ::Integer
|
1247
|
+
SENSITIVE: []
|
1248
|
+
end
|
1249
|
+
|
1250
|
+
class OpenZFSVolumeConfiguration
|
1251
|
+
attr_accessor parent_volume_id: ::String
|
1252
|
+
attr_accessor volume_path: ::String
|
1253
|
+
attr_accessor storage_capacity_reservation_gi_b: ::Integer
|
1254
|
+
attr_accessor storage_capacity_quota_gi_b: ::Integer
|
1255
|
+
attr_accessor record_size_ki_b: ::Integer
|
1256
|
+
attr_accessor data_compression_type: ("NONE" | "ZSTD" | "LZ4")
|
1257
|
+
attr_accessor copy_tags_to_snapshots: bool
|
1258
|
+
attr_accessor origin_snapshot: Types::OpenZFSOriginSnapshotConfiguration
|
1259
|
+
attr_accessor read_only: bool
|
1260
|
+
attr_accessor nfs_exports: ::Array[Types::OpenZFSNfsExport]
|
1261
|
+
attr_accessor user_and_group_quotas: ::Array[Types::OpenZFSUserOrGroupQuota]
|
1262
|
+
attr_accessor restore_to_snapshot: ::String
|
1263
|
+
attr_accessor delete_intermediate_snaphots: bool
|
1264
|
+
attr_accessor delete_cloned_volumes: bool
|
1265
|
+
attr_accessor delete_intermediate_data: bool
|
1266
|
+
attr_accessor source_snapshot_arn: ::String
|
1267
|
+
attr_accessor destination_snapshot: ::String
|
1268
|
+
attr_accessor copy_strategy: ("CLONE" | "FULL_COPY" | "INCREMENTAL_COPY")
|
1269
|
+
SENSITIVE: []
|
1270
|
+
end
|
1271
|
+
|
1272
|
+
class ReleaseConfiguration
|
1273
|
+
attr_accessor duration_since_last_access: Types::DurationSinceLastAccess
|
1274
|
+
SENSITIVE: []
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
class ReleaseFileSystemNfsV3LocksRequest
|
1278
|
+
attr_accessor file_system_id: ::String
|
1279
|
+
attr_accessor client_request_token: ::String
|
1280
|
+
SENSITIVE: []
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
class ReleaseFileSystemNfsV3LocksResponse
|
1284
|
+
attr_accessor file_system: Types::FileSystem
|
1285
|
+
SENSITIVE: []
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
class ResourceDoesNotSupportTagging
|
1289
|
+
attr_accessor resource_arn: ::String
|
1290
|
+
attr_accessor message: ::String
|
1291
|
+
SENSITIVE: []
|
1292
|
+
end
|
1293
|
+
|
1294
|
+
class ResourceNotFound
|
1295
|
+
attr_accessor resource_arn: ::String
|
1296
|
+
attr_accessor message: ::String
|
1297
|
+
SENSITIVE: []
|
1298
|
+
end
|
1299
|
+
|
1300
|
+
class RestoreVolumeFromSnapshotRequest
|
1301
|
+
attr_accessor client_request_token: ::String
|
1302
|
+
attr_accessor volume_id: ::String
|
1303
|
+
attr_accessor snapshot_id: ::String
|
1304
|
+
attr_accessor options: ::Array[("DELETE_INTERMEDIATE_SNAPSHOTS" | "DELETE_CLONED_VOLUMES")]
|
1305
|
+
SENSITIVE: []
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
class RestoreVolumeFromSnapshotResponse
|
1309
|
+
attr_accessor volume_id: ::String
|
1310
|
+
attr_accessor lifecycle: ("CREATING" | "CREATED" | "DELETING" | "FAILED" | "MISCONFIGURED" | "PENDING" | "AVAILABLE")
|
1311
|
+
attr_accessor administrative_actions: ::Array[Types::AdministrativeAction]
|
1312
|
+
SENSITIVE: []
|
1313
|
+
end
|
1314
|
+
|
1315
|
+
class RetentionPeriod
|
1316
|
+
attr_accessor type: ("SECONDS" | "MINUTES" | "HOURS" | "DAYS" | "MONTHS" | "YEARS" | "INFINITE" | "UNSPECIFIED")
|
1317
|
+
attr_accessor value: ::Integer
|
1318
|
+
SENSITIVE: []
|
1319
|
+
end
|
1320
|
+
|
1321
|
+
class S3DataRepositoryConfiguration
|
1322
|
+
attr_accessor auto_import_policy: Types::AutoImportPolicy
|
1323
|
+
attr_accessor auto_export_policy: Types::AutoExportPolicy
|
1324
|
+
SENSITIVE: []
|
1325
|
+
end
|
1326
|
+
|
1327
|
+
class SelfManagedActiveDirectoryAttributes
|
1328
|
+
attr_accessor domain_name: ::String
|
1329
|
+
attr_accessor organizational_unit_distinguished_name: ::String
|
1330
|
+
attr_accessor file_system_administrators_group: ::String
|
1331
|
+
attr_accessor user_name: ::String
|
1332
|
+
attr_accessor dns_ips: ::Array[::String]
|
1333
|
+
SENSITIVE: []
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
class SelfManagedActiveDirectoryConfiguration
|
1337
|
+
attr_accessor domain_name: ::String
|
1338
|
+
attr_accessor organizational_unit_distinguished_name: ::String
|
1339
|
+
attr_accessor file_system_administrators_group: ::String
|
1340
|
+
attr_accessor user_name: ::String
|
1341
|
+
attr_accessor password: ::String
|
1342
|
+
attr_accessor dns_ips: ::Array[::String]
|
1343
|
+
SENSITIVE: [:password]
|
1344
|
+
end
|
1345
|
+
|
1346
|
+
class SelfManagedActiveDirectoryConfigurationUpdates
|
1347
|
+
attr_accessor user_name: ::String
|
1348
|
+
attr_accessor password: ::String
|
1349
|
+
attr_accessor dns_ips: ::Array[::String]
|
1350
|
+
attr_accessor domain_name: ::String
|
1351
|
+
attr_accessor organizational_unit_distinguished_name: ::String
|
1352
|
+
attr_accessor file_system_administrators_group: ::String
|
1353
|
+
SENSITIVE: [:password]
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
class ServiceLimitExceeded
|
1357
|
+
attr_accessor limit: ("FILE_SYSTEM_COUNT" | "TOTAL_THROUGHPUT_CAPACITY" | "TOTAL_STORAGE" | "TOTAL_USER_INITIATED_BACKUPS" | "TOTAL_USER_TAGS" | "TOTAL_IN_PROGRESS_COPY_BACKUPS" | "STORAGE_VIRTUAL_MACHINES_PER_FILE_SYSTEM" | "VOLUMES_PER_FILE_SYSTEM" | "TOTAL_SSD_IOPS" | "FILE_CACHE_COUNT")
|
1358
|
+
attr_accessor message: ::String
|
1359
|
+
SENSITIVE: []
|
1360
|
+
end
|
1361
|
+
|
1362
|
+
class SnaplockConfiguration
|
1363
|
+
attr_accessor audit_log_volume: bool
|
1364
|
+
attr_accessor autocommit_period: Types::AutocommitPeriod
|
1365
|
+
attr_accessor privileged_delete: ("DISABLED" | "ENABLED" | "PERMANENTLY_DISABLED")
|
1366
|
+
attr_accessor retention_period: Types::SnaplockRetentionPeriod
|
1367
|
+
attr_accessor snaplock_type: ("COMPLIANCE" | "ENTERPRISE")
|
1368
|
+
attr_accessor volume_append_mode_enabled: bool
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class SnaplockRetentionPeriod
|
1373
|
+
attr_accessor default_retention: Types::RetentionPeriod
|
1374
|
+
attr_accessor minimum_retention: Types::RetentionPeriod
|
1375
|
+
attr_accessor maximum_retention: Types::RetentionPeriod
|
1376
|
+
SENSITIVE: []
|
1377
|
+
end
|
1378
|
+
|
1379
|
+
class Snapshot
|
1380
|
+
attr_accessor resource_arn: ::String
|
1381
|
+
attr_accessor snapshot_id: ::String
|
1382
|
+
attr_accessor name: ::String
|
1383
|
+
attr_accessor volume_id: ::String
|
1384
|
+
attr_accessor creation_time: ::Time
|
1385
|
+
attr_accessor lifecycle: ("PENDING" | "CREATING" | "DELETING" | "AVAILABLE")
|
1386
|
+
attr_accessor lifecycle_transition_reason: Types::LifecycleTransitionReason
|
1387
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1388
|
+
attr_accessor administrative_actions: ::Array[Types::AdministrativeAction]
|
1389
|
+
SENSITIVE: []
|
1390
|
+
end
|
1391
|
+
|
1392
|
+
class SnapshotFilter
|
1393
|
+
attr_accessor name: ("file-system-id" | "volume-id")
|
1394
|
+
attr_accessor values: ::Array[::String]
|
1395
|
+
SENSITIVE: []
|
1396
|
+
end
|
1397
|
+
|
1398
|
+
class SnapshotNotFound
|
1399
|
+
attr_accessor message: ::String
|
1400
|
+
SENSITIVE: []
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
class SourceBackupUnavailable
|
1404
|
+
attr_accessor message: ::String
|
1405
|
+
attr_accessor backup_id: ::String
|
1406
|
+
SENSITIVE: []
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
class StartMisconfiguredStateRecoveryRequest
|
1410
|
+
attr_accessor client_request_token: ::String
|
1411
|
+
attr_accessor file_system_id: ::String
|
1412
|
+
SENSITIVE: []
|
1413
|
+
end
|
1414
|
+
|
1415
|
+
class StartMisconfiguredStateRecoveryResponse
|
1416
|
+
attr_accessor file_system: Types::FileSystem
|
1417
|
+
SENSITIVE: []
|
1418
|
+
end
|
1419
|
+
|
1420
|
+
class StorageVirtualMachine
|
1421
|
+
attr_accessor active_directory_configuration: Types::SvmActiveDirectoryConfiguration
|
1422
|
+
attr_accessor creation_time: ::Time
|
1423
|
+
attr_accessor endpoints: Types::SvmEndpoints
|
1424
|
+
attr_accessor file_system_id: ::String
|
1425
|
+
attr_accessor lifecycle: ("CREATED" | "CREATING" | "DELETING" | "FAILED" | "MISCONFIGURED" | "PENDING")
|
1426
|
+
attr_accessor name: ::String
|
1427
|
+
attr_accessor resource_arn: ::String
|
1428
|
+
attr_accessor storage_virtual_machine_id: ::String
|
1429
|
+
attr_accessor subtype: ("DEFAULT" | "DP_DESTINATION" | "SYNC_DESTINATION" | "SYNC_SOURCE")
|
1430
|
+
attr_accessor uuid: ::String
|
1431
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1432
|
+
attr_accessor lifecycle_transition_reason: Types::LifecycleTransitionReason
|
1433
|
+
attr_accessor root_volume_security_style: ("UNIX" | "NTFS" | "MIXED")
|
1434
|
+
SENSITIVE: []
|
1435
|
+
end
|
1436
|
+
|
1437
|
+
class StorageVirtualMachineFilter
|
1438
|
+
attr_accessor name: ("file-system-id")
|
1439
|
+
attr_accessor values: ::Array[::String]
|
1440
|
+
SENSITIVE: []
|
1441
|
+
end
|
1442
|
+
|
1443
|
+
class StorageVirtualMachineNotFound
|
1444
|
+
attr_accessor message: ::String
|
1445
|
+
SENSITIVE: []
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
class SvmActiveDirectoryConfiguration
|
1449
|
+
attr_accessor net_bios_name: ::String
|
1450
|
+
attr_accessor self_managed_active_directory_configuration: Types::SelfManagedActiveDirectoryAttributes
|
1451
|
+
SENSITIVE: []
|
1452
|
+
end
|
1453
|
+
|
1454
|
+
class SvmEndpoint
|
1455
|
+
attr_accessor dns_name: ::String
|
1456
|
+
attr_accessor ip_addresses: ::Array[::String]
|
1457
|
+
SENSITIVE: []
|
1458
|
+
end
|
1459
|
+
|
1460
|
+
class SvmEndpoints
|
1461
|
+
attr_accessor iscsi: Types::SvmEndpoint
|
1462
|
+
attr_accessor management: Types::SvmEndpoint
|
1463
|
+
attr_accessor nfs: Types::SvmEndpoint
|
1464
|
+
attr_accessor smb: Types::SvmEndpoint
|
1465
|
+
SENSITIVE: []
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
class Tag
|
1469
|
+
attr_accessor key: ::String
|
1470
|
+
attr_accessor value: ::String
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1474
|
+
class TagResourceRequest
|
1475
|
+
attr_accessor resource_arn: ::String
|
1476
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1477
|
+
SENSITIVE: []
|
1478
|
+
end
|
1479
|
+
|
1480
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1481
|
+
end
|
1482
|
+
|
1483
|
+
class TieringPolicy
|
1484
|
+
attr_accessor cooling_period: ::Integer
|
1485
|
+
attr_accessor name: ("SNAPSHOT_ONLY" | "AUTO" | "ALL" | "NONE")
|
1486
|
+
SENSITIVE: []
|
1487
|
+
end
|
1488
|
+
|
1489
|
+
class UnsupportedOperation
|
1490
|
+
attr_accessor message: ::String
|
1491
|
+
SENSITIVE: []
|
1492
|
+
end
|
1493
|
+
|
1494
|
+
class UntagResourceRequest
|
1495
|
+
attr_accessor resource_arn: ::String
|
1496
|
+
attr_accessor tag_keys: ::Array[::String]
|
1497
|
+
SENSITIVE: []
|
1498
|
+
end
|
1499
|
+
|
1500
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
1501
|
+
end
|
1502
|
+
|
1503
|
+
class UpdateDataRepositoryAssociationRequest
|
1504
|
+
attr_accessor association_id: ::String
|
1505
|
+
attr_accessor client_request_token: ::String
|
1506
|
+
attr_accessor imported_file_chunk_size: ::Integer
|
1507
|
+
attr_accessor s3: Types::S3DataRepositoryConfiguration
|
1508
|
+
SENSITIVE: []
|
1509
|
+
end
|
1510
|
+
|
1511
|
+
class UpdateDataRepositoryAssociationResponse
|
1512
|
+
attr_accessor association: Types::DataRepositoryAssociation
|
1513
|
+
SENSITIVE: []
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
class UpdateFileCacheLustreConfiguration
|
1517
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
1518
|
+
SENSITIVE: []
|
1519
|
+
end
|
1520
|
+
|
1521
|
+
class UpdateFileCacheRequest
|
1522
|
+
attr_accessor file_cache_id: ::String
|
1523
|
+
attr_accessor client_request_token: ::String
|
1524
|
+
attr_accessor lustre_configuration: Types::UpdateFileCacheLustreConfiguration
|
1525
|
+
SENSITIVE: []
|
1526
|
+
end
|
1527
|
+
|
1528
|
+
class UpdateFileCacheResponse
|
1529
|
+
attr_accessor file_cache: Types::FileCache
|
1530
|
+
SENSITIVE: []
|
1531
|
+
end
|
1532
|
+
|
1533
|
+
class UpdateFileSystemLustreConfiguration
|
1534
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
1535
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
1536
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
1537
|
+
attr_accessor auto_import_policy: ("NONE" | "NEW" | "NEW_CHANGED" | "NEW_CHANGED_DELETED")
|
1538
|
+
attr_accessor data_compression_type: ("NONE" | "LZ4")
|
1539
|
+
attr_accessor log_configuration: Types::LustreLogCreateConfiguration
|
1540
|
+
attr_accessor root_squash_configuration: Types::LustreRootSquashConfiguration
|
1541
|
+
attr_accessor per_unit_storage_throughput: ::Integer
|
1542
|
+
SENSITIVE: []
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
class UpdateFileSystemOntapConfiguration
|
1546
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
1547
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
1548
|
+
attr_accessor fsx_admin_password: ::String
|
1549
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
1550
|
+
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
1551
|
+
attr_accessor throughput_capacity: ::Integer
|
1552
|
+
attr_accessor add_route_table_ids: ::Array[::String]
|
1553
|
+
attr_accessor remove_route_table_ids: ::Array[::String]
|
1554
|
+
attr_accessor throughput_capacity_per_ha_pair: ::Integer
|
1555
|
+
SENSITIVE: [:fsx_admin_password]
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
class UpdateFileSystemOpenZFSConfiguration
|
1559
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
1560
|
+
attr_accessor copy_tags_to_backups: bool
|
1561
|
+
attr_accessor copy_tags_to_volumes: bool
|
1562
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
1563
|
+
attr_accessor throughput_capacity: ::Integer
|
1564
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
1565
|
+
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
1566
|
+
attr_accessor add_route_table_ids: ::Array[::String]
|
1567
|
+
attr_accessor remove_route_table_ids: ::Array[::String]
|
1568
|
+
SENSITIVE: []
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
class UpdateFileSystemRequest
|
1572
|
+
attr_accessor file_system_id: ::String
|
1573
|
+
attr_accessor client_request_token: ::String
|
1574
|
+
attr_accessor storage_capacity: ::Integer
|
1575
|
+
attr_accessor windows_configuration: Types::UpdateFileSystemWindowsConfiguration
|
1576
|
+
attr_accessor lustre_configuration: Types::UpdateFileSystemLustreConfiguration
|
1577
|
+
attr_accessor ontap_configuration: Types::UpdateFileSystemOntapConfiguration
|
1578
|
+
attr_accessor open_zfs_configuration: Types::UpdateFileSystemOpenZFSConfiguration
|
1579
|
+
attr_accessor storage_type: ("SSD" | "HDD")
|
1580
|
+
SENSITIVE: []
|
1581
|
+
end
|
1582
|
+
|
1583
|
+
class UpdateFileSystemResponse
|
1584
|
+
attr_accessor file_system: Types::FileSystem
|
1585
|
+
SENSITIVE: []
|
1586
|
+
end
|
1587
|
+
|
1588
|
+
class UpdateFileSystemWindowsConfiguration
|
1589
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
1590
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
1591
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
1592
|
+
attr_accessor throughput_capacity: ::Integer
|
1593
|
+
attr_accessor self_managed_active_directory_configuration: Types::SelfManagedActiveDirectoryConfigurationUpdates
|
1594
|
+
attr_accessor audit_log_configuration: Types::WindowsAuditLogCreateConfiguration
|
1595
|
+
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
1596
|
+
SENSITIVE: []
|
1597
|
+
end
|
1598
|
+
|
1599
|
+
class UpdateOntapVolumeConfiguration
|
1600
|
+
attr_accessor junction_path: ::String
|
1601
|
+
attr_accessor security_style: ("UNIX" | "NTFS" | "MIXED")
|
1602
|
+
attr_accessor size_in_megabytes: ::Integer
|
1603
|
+
attr_accessor storage_efficiency_enabled: bool
|
1604
|
+
attr_accessor tiering_policy: Types::TieringPolicy
|
1605
|
+
attr_accessor snapshot_policy: ::String
|
1606
|
+
attr_accessor copy_tags_to_backups: bool
|
1607
|
+
attr_accessor snaplock_configuration: Types::UpdateSnaplockConfiguration
|
1608
|
+
attr_accessor size_in_bytes: ::Integer
|
1609
|
+
SENSITIVE: []
|
1610
|
+
end
|
1611
|
+
|
1612
|
+
class UpdateOpenZFSVolumeConfiguration
|
1613
|
+
attr_accessor storage_capacity_reservation_gi_b: ::Integer
|
1614
|
+
attr_accessor storage_capacity_quota_gi_b: ::Integer
|
1615
|
+
attr_accessor record_size_ki_b: ::Integer
|
1616
|
+
attr_accessor data_compression_type: ("NONE" | "ZSTD" | "LZ4")
|
1617
|
+
attr_accessor nfs_exports: ::Array[Types::OpenZFSNfsExport]
|
1618
|
+
attr_accessor user_and_group_quotas: ::Array[Types::OpenZFSUserOrGroupQuota]
|
1619
|
+
attr_accessor read_only: bool
|
1620
|
+
SENSITIVE: []
|
1621
|
+
end
|
1622
|
+
|
1623
|
+
class UpdateSharedVpcConfigurationRequest
|
1624
|
+
attr_accessor enable_fsx_route_table_updates_from_participant_accounts: ::String
|
1625
|
+
attr_accessor client_request_token: ::String
|
1626
|
+
SENSITIVE: []
|
1627
|
+
end
|
1628
|
+
|
1629
|
+
class UpdateSharedVpcConfigurationResponse
|
1630
|
+
attr_accessor enable_fsx_route_table_updates_from_participant_accounts: ::String
|
1631
|
+
SENSITIVE: []
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
class UpdateSnaplockConfiguration
|
1635
|
+
attr_accessor audit_log_volume: bool
|
1636
|
+
attr_accessor autocommit_period: Types::AutocommitPeriod
|
1637
|
+
attr_accessor privileged_delete: ("DISABLED" | "ENABLED" | "PERMANENTLY_DISABLED")
|
1638
|
+
attr_accessor retention_period: Types::SnaplockRetentionPeriod
|
1639
|
+
attr_accessor volume_append_mode_enabled: bool
|
1640
|
+
SENSITIVE: []
|
1641
|
+
end
|
1642
|
+
|
1643
|
+
class UpdateSnapshotRequest
|
1644
|
+
attr_accessor client_request_token: ::String
|
1645
|
+
attr_accessor name: ::String
|
1646
|
+
attr_accessor snapshot_id: ::String
|
1647
|
+
SENSITIVE: []
|
1648
|
+
end
|
1649
|
+
|
1650
|
+
class UpdateSnapshotResponse
|
1651
|
+
attr_accessor snapshot: Types::Snapshot
|
1652
|
+
SENSITIVE: []
|
1653
|
+
end
|
1654
|
+
|
1655
|
+
class UpdateStorageVirtualMachineRequest
|
1656
|
+
attr_accessor active_directory_configuration: Types::UpdateSvmActiveDirectoryConfiguration
|
1657
|
+
attr_accessor client_request_token: ::String
|
1658
|
+
attr_accessor storage_virtual_machine_id: ::String
|
1659
|
+
attr_accessor svm_admin_password: ::String
|
1660
|
+
SENSITIVE: [:svm_admin_password]
|
1661
|
+
end
|
1662
|
+
|
1663
|
+
class UpdateStorageVirtualMachineResponse
|
1664
|
+
attr_accessor storage_virtual_machine: Types::StorageVirtualMachine
|
1665
|
+
SENSITIVE: []
|
1666
|
+
end
|
1667
|
+
|
1668
|
+
class UpdateSvmActiveDirectoryConfiguration
|
1669
|
+
attr_accessor self_managed_active_directory_configuration: Types::SelfManagedActiveDirectoryConfigurationUpdates
|
1670
|
+
attr_accessor net_bios_name: ::String
|
1671
|
+
SENSITIVE: []
|
1672
|
+
end
|
1673
|
+
|
1674
|
+
class UpdateVolumeRequest
|
1675
|
+
attr_accessor client_request_token: ::String
|
1676
|
+
attr_accessor volume_id: ::String
|
1677
|
+
attr_accessor ontap_configuration: Types::UpdateOntapVolumeConfiguration
|
1678
|
+
attr_accessor name: ::String
|
1679
|
+
attr_accessor open_zfs_configuration: Types::UpdateOpenZFSVolumeConfiguration
|
1680
|
+
SENSITIVE: []
|
1681
|
+
end
|
1682
|
+
|
1683
|
+
class UpdateVolumeResponse
|
1684
|
+
attr_accessor volume: Types::Volume
|
1685
|
+
SENSITIVE: []
|
1686
|
+
end
|
1687
|
+
|
1688
|
+
class Volume
|
1689
|
+
attr_accessor creation_time: ::Time
|
1690
|
+
attr_accessor file_system_id: ::String
|
1691
|
+
attr_accessor lifecycle: ("CREATING" | "CREATED" | "DELETING" | "FAILED" | "MISCONFIGURED" | "PENDING" | "AVAILABLE")
|
1692
|
+
attr_accessor name: ::String
|
1693
|
+
attr_accessor ontap_configuration: Types::OntapVolumeConfiguration
|
1694
|
+
attr_accessor resource_arn: ::String
|
1695
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1696
|
+
attr_accessor volume_id: ::String
|
1697
|
+
attr_accessor volume_type: ("ONTAP" | "OPENZFS")
|
1698
|
+
attr_accessor lifecycle_transition_reason: Types::LifecycleTransitionReason
|
1699
|
+
attr_accessor administrative_actions: ::Array[Types::AdministrativeAction]
|
1700
|
+
attr_accessor open_zfs_configuration: Types::OpenZFSVolumeConfiguration
|
1701
|
+
SENSITIVE: []
|
1702
|
+
end
|
1703
|
+
|
1704
|
+
class VolumeFilter
|
1705
|
+
attr_accessor name: ("file-system-id" | "storage-virtual-machine-id")
|
1706
|
+
attr_accessor values: ::Array[::String]
|
1707
|
+
SENSITIVE: []
|
1708
|
+
end
|
1709
|
+
|
1710
|
+
class VolumeNotFound
|
1711
|
+
attr_accessor message: ::String
|
1712
|
+
SENSITIVE: []
|
1713
|
+
end
|
1714
|
+
|
1715
|
+
class WindowsAuditLogConfiguration
|
1716
|
+
attr_accessor file_access_audit_log_level: ("DISABLED" | "SUCCESS_ONLY" | "FAILURE_ONLY" | "SUCCESS_AND_FAILURE")
|
1717
|
+
attr_accessor file_share_access_audit_log_level: ("DISABLED" | "SUCCESS_ONLY" | "FAILURE_ONLY" | "SUCCESS_AND_FAILURE")
|
1718
|
+
attr_accessor audit_log_destination: ::String
|
1719
|
+
SENSITIVE: []
|
1720
|
+
end
|
1721
|
+
|
1722
|
+
class WindowsAuditLogCreateConfiguration
|
1723
|
+
attr_accessor file_access_audit_log_level: ("DISABLED" | "SUCCESS_ONLY" | "FAILURE_ONLY" | "SUCCESS_AND_FAILURE")
|
1724
|
+
attr_accessor file_share_access_audit_log_level: ("DISABLED" | "SUCCESS_ONLY" | "FAILURE_ONLY" | "SUCCESS_AND_FAILURE")
|
1725
|
+
attr_accessor audit_log_destination: ::String
|
1726
|
+
SENSITIVE: []
|
1727
|
+
end
|
1728
|
+
|
1729
|
+
class WindowsFileSystemConfiguration
|
1730
|
+
attr_accessor active_directory_id: ::String
|
1731
|
+
attr_accessor self_managed_active_directory_configuration: Types::SelfManagedActiveDirectoryAttributes
|
1732
|
+
attr_accessor deployment_type: ("MULTI_AZ_1" | "SINGLE_AZ_1" | "SINGLE_AZ_2")
|
1733
|
+
attr_accessor remote_administration_endpoint: ::String
|
1734
|
+
attr_accessor preferred_subnet_id: ::String
|
1735
|
+
attr_accessor preferred_file_server_ip: ::String
|
1736
|
+
attr_accessor throughput_capacity: ::Integer
|
1737
|
+
attr_accessor maintenance_operations_in_progress: ::Array[("PATCHING" | "BACKING_UP")]
|
1738
|
+
attr_accessor weekly_maintenance_start_time: ::String
|
1739
|
+
attr_accessor daily_automatic_backup_start_time: ::String
|
1740
|
+
attr_accessor automatic_backup_retention_days: ::Integer
|
1741
|
+
attr_accessor copy_tags_to_backups: bool
|
1742
|
+
attr_accessor aliases: ::Array[Types::Alias]
|
1743
|
+
attr_accessor audit_log_configuration: Types::WindowsAuditLogConfiguration
|
1744
|
+
attr_accessor disk_iops_configuration: Types::DiskIopsConfiguration
|
1745
|
+
SENSITIVE: []
|
1746
|
+
end
|
1747
|
+
end
|
1748
|
+
end
|