aws-sdk-drs 1.27.0 → 1.28.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-drs/client.rb +1 -1
- data/lib/aws-sdk-drs/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-drs.rb +1 -1
- data/sig/client.rbs +871 -0
- data/sig/errors.rbs +60 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1175 -0
- data/sig/waiters.rbs +13 -0
- metadata +9 -4
data/sig/types.rbs
ADDED
@@ -0,0 +1,1175 @@
|
|
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::Drs
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor code: ::String
|
13
|
+
attr_accessor message: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class Account
|
18
|
+
attr_accessor account_id: ::String
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class AssociateSourceNetworkStackRequest
|
23
|
+
attr_accessor cfn_stack_name: ::String
|
24
|
+
attr_accessor source_network_id: ::String
|
25
|
+
SENSITIVE: [:cfn_stack_name]
|
26
|
+
end
|
27
|
+
|
28
|
+
class AssociateSourceNetworkStackResponse
|
29
|
+
attr_accessor job: Types::Job
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class CPU
|
34
|
+
attr_accessor cores: ::Integer
|
35
|
+
attr_accessor model_name: ::String
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
39
|
+
class ConflictException
|
40
|
+
attr_accessor code: ::String
|
41
|
+
attr_accessor message: ::String
|
42
|
+
attr_accessor resource_id: ::String
|
43
|
+
attr_accessor resource_type: ::String
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class ConversionProperties
|
48
|
+
attr_accessor data_timestamp: ::String
|
49
|
+
attr_accessor force_uefi: bool
|
50
|
+
attr_accessor root_volume_name: ::String
|
51
|
+
attr_accessor volume_to_conversion_map: ::Hash[::String, ::Hash[::String, ::String]]
|
52
|
+
attr_accessor volume_to_volume_size: ::Hash[::String, ::Integer]
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class CreateExtendedSourceServerRequest
|
57
|
+
attr_accessor source_server_arn: ::String
|
58
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
59
|
+
SENSITIVE: [:tags]
|
60
|
+
end
|
61
|
+
|
62
|
+
class CreateExtendedSourceServerResponse
|
63
|
+
attr_accessor source_server: Types::SourceServer
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class CreateLaunchConfigurationTemplateRequest
|
68
|
+
attr_accessor copy_private_ip: bool
|
69
|
+
attr_accessor copy_tags: bool
|
70
|
+
attr_accessor export_bucket_arn: ::String
|
71
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
72
|
+
attr_accessor launch_into_source_instance: bool
|
73
|
+
attr_accessor licensing: Types::Licensing
|
74
|
+
attr_accessor post_launch_enabled: bool
|
75
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
76
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC" | "IN_AWS")
|
77
|
+
SENSITIVE: [:tags]
|
78
|
+
end
|
79
|
+
|
80
|
+
class CreateLaunchConfigurationTemplateResponse
|
81
|
+
attr_accessor launch_configuration_template: Types::LaunchConfigurationTemplate
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
85
|
+
class CreateReplicationConfigurationTemplateRequest
|
86
|
+
attr_accessor associate_default_security_group: bool
|
87
|
+
attr_accessor auto_replicate_new_disks: bool
|
88
|
+
attr_accessor bandwidth_throttling: ::Integer
|
89
|
+
attr_accessor create_public_ip: bool
|
90
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
91
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "GP3" | "ST1" | "AUTO")
|
92
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM" | "NONE")
|
93
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
94
|
+
attr_accessor pit_policy: ::Array[Types::PITPolicyRule]
|
95
|
+
attr_accessor replication_server_instance_type: ::String
|
96
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
97
|
+
attr_accessor staging_area_subnet_id: ::String
|
98
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
99
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
100
|
+
attr_accessor use_dedicated_replication_server: bool
|
101
|
+
SENSITIVE: [:staging_area_tags, :tags]
|
102
|
+
end
|
103
|
+
|
104
|
+
class CreateSourceNetworkRequest
|
105
|
+
attr_accessor origin_account_id: ::String
|
106
|
+
attr_accessor origin_region: ::String
|
107
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
108
|
+
attr_accessor vpc_id: ::String
|
109
|
+
SENSITIVE: [:tags]
|
110
|
+
end
|
111
|
+
|
112
|
+
class CreateSourceNetworkResponse
|
113
|
+
attr_accessor source_network_id: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class DataReplicationError
|
118
|
+
attr_accessor error: ("AGENT_NOT_SEEN" | "SNAPSHOTS_FAILURE" | "NOT_CONVERGING" | "UNSTABLE_NETWORK" | "FAILED_TO_CREATE_SECURITY_GROUP" | "FAILED_TO_LAUNCH_REPLICATION_SERVER" | "FAILED_TO_BOOT_REPLICATION_SERVER" | "FAILED_TO_AUTHENTICATE_WITH_SERVICE" | "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE" | "FAILED_TO_CREATE_STAGING_DISKS" | "FAILED_TO_ATTACH_STAGING_DISKS" | "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT" | "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER" | "FAILED_TO_START_DATA_TRANSFER")
|
119
|
+
attr_accessor raw_error: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class DataReplicationInfo
|
124
|
+
attr_accessor data_replication_error: Types::DataReplicationError
|
125
|
+
attr_accessor data_replication_initiation: Types::DataReplicationInitiation
|
126
|
+
attr_accessor data_replication_state: ("STOPPED" | "INITIATING" | "INITIAL_SYNC" | "BACKLOG" | "CREATING_SNAPSHOT" | "CONTINUOUS" | "PAUSED" | "RESCAN" | "STALLED" | "DISCONNECTED")
|
127
|
+
attr_accessor eta_date_time: ::String
|
128
|
+
attr_accessor lag_duration: ::String
|
129
|
+
attr_accessor replicated_disks: ::Array[Types::DataReplicationInfoReplicatedDisk]
|
130
|
+
attr_accessor staging_availability_zone: ::String
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class DataReplicationInfoReplicatedDisk
|
135
|
+
attr_accessor backlogged_storage_bytes: ::Integer
|
136
|
+
attr_accessor device_name: ::String
|
137
|
+
attr_accessor replicated_storage_bytes: ::Integer
|
138
|
+
attr_accessor rescanned_storage_bytes: ::Integer
|
139
|
+
attr_accessor total_storage_bytes: ::Integer
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class DataReplicationInitiation
|
144
|
+
attr_accessor next_attempt_date_time: ::String
|
145
|
+
attr_accessor start_date_time: ::String
|
146
|
+
attr_accessor steps: ::Array[Types::DataReplicationInitiationStep]
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class DataReplicationInitiationStep
|
151
|
+
attr_accessor name: ("WAIT" | "CREATE_SECURITY_GROUP" | "LAUNCH_REPLICATION_SERVER" | "BOOT_REPLICATION_SERVER" | "AUTHENTICATE_WITH_SERVICE" | "DOWNLOAD_REPLICATION_SOFTWARE" | "CREATE_STAGING_DISKS" | "ATTACH_STAGING_DISKS" | "PAIR_REPLICATION_SERVER_WITH_AGENT" | "CONNECT_AGENT_TO_REPLICATION_SERVER" | "START_DATA_TRANSFER")
|
152
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED" | "SKIPPED")
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class DeleteJobRequest
|
157
|
+
attr_accessor job_id: ::String
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class DeleteJobResponse < Aws::EmptyStructure
|
162
|
+
end
|
163
|
+
|
164
|
+
class DeleteLaunchActionRequest
|
165
|
+
attr_accessor action_id: ::String
|
166
|
+
attr_accessor resource_id: ::String
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class DeleteLaunchActionResponse < Aws::EmptyStructure
|
171
|
+
end
|
172
|
+
|
173
|
+
class DeleteLaunchConfigurationTemplateRequest
|
174
|
+
attr_accessor launch_configuration_template_id: ::String
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class DeleteLaunchConfigurationTemplateResponse < Aws::EmptyStructure
|
179
|
+
end
|
180
|
+
|
181
|
+
class DeleteRecoveryInstanceRequest
|
182
|
+
attr_accessor recovery_instance_id: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class DeleteReplicationConfigurationTemplateRequest
|
187
|
+
attr_accessor replication_configuration_template_id: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class DeleteReplicationConfigurationTemplateResponse < Aws::EmptyStructure
|
192
|
+
end
|
193
|
+
|
194
|
+
class DeleteSourceNetworkRequest
|
195
|
+
attr_accessor source_network_id: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class DeleteSourceNetworkResponse < Aws::EmptyStructure
|
200
|
+
end
|
201
|
+
|
202
|
+
class DeleteSourceServerRequest
|
203
|
+
attr_accessor source_server_id: ::String
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class DeleteSourceServerResponse < Aws::EmptyStructure
|
208
|
+
end
|
209
|
+
|
210
|
+
class DescribeJobLogItemsRequest
|
211
|
+
attr_accessor job_id: ::String
|
212
|
+
attr_accessor max_results: ::Integer
|
213
|
+
attr_accessor next_token: ::String
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class DescribeJobLogItemsResponse
|
218
|
+
attr_accessor items: ::Array[Types::JobLog]
|
219
|
+
attr_accessor next_token: ::String
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class DescribeJobsRequest
|
224
|
+
attr_accessor filters: Types::DescribeJobsRequestFilters
|
225
|
+
attr_accessor max_results: ::Integer
|
226
|
+
attr_accessor next_token: ::String
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class DescribeJobsRequestFilters
|
231
|
+
attr_accessor from_date: ::String
|
232
|
+
attr_accessor job_i_ds: ::Array[::String]
|
233
|
+
attr_accessor to_date: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class DescribeJobsResponse
|
238
|
+
attr_accessor items: ::Array[Types::Job]
|
239
|
+
attr_accessor next_token: ::String
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class DescribeLaunchConfigurationTemplatesRequest
|
244
|
+
attr_accessor launch_configuration_template_i_ds: ::Array[::String]
|
245
|
+
attr_accessor max_results: ::Integer
|
246
|
+
attr_accessor next_token: ::String
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class DescribeLaunchConfigurationTemplatesResponse
|
251
|
+
attr_accessor items: ::Array[Types::LaunchConfigurationTemplate]
|
252
|
+
attr_accessor next_token: ::String
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
256
|
+
class DescribeRecoveryInstancesRequest
|
257
|
+
attr_accessor filters: Types::DescribeRecoveryInstancesRequestFilters
|
258
|
+
attr_accessor max_results: ::Integer
|
259
|
+
attr_accessor next_token: ::String
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class DescribeRecoveryInstancesRequestFilters
|
264
|
+
attr_accessor recovery_instance_i_ds: ::Array[::String]
|
265
|
+
attr_accessor source_server_i_ds: ::Array[::String]
|
266
|
+
SENSITIVE: []
|
267
|
+
end
|
268
|
+
|
269
|
+
class DescribeRecoveryInstancesResponse
|
270
|
+
attr_accessor items: ::Array[Types::RecoveryInstance]
|
271
|
+
attr_accessor next_token: ::String
|
272
|
+
SENSITIVE: []
|
273
|
+
end
|
274
|
+
|
275
|
+
class DescribeRecoverySnapshotsRequest
|
276
|
+
attr_accessor filters: Types::DescribeRecoverySnapshotsRequestFilters
|
277
|
+
attr_accessor max_results: ::Integer
|
278
|
+
attr_accessor next_token: ::String
|
279
|
+
attr_accessor order: ("ASC" | "DESC")
|
280
|
+
attr_accessor source_server_id: ::String
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class DescribeRecoverySnapshotsRequestFilters
|
285
|
+
attr_accessor from_date_time: ::String
|
286
|
+
attr_accessor to_date_time: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class DescribeRecoverySnapshotsResponse
|
291
|
+
attr_accessor items: ::Array[Types::RecoverySnapshot]
|
292
|
+
attr_accessor next_token: ::String
|
293
|
+
SENSITIVE: []
|
294
|
+
end
|
295
|
+
|
296
|
+
class DescribeReplicationConfigurationTemplatesRequest
|
297
|
+
attr_accessor max_results: ::Integer
|
298
|
+
attr_accessor next_token: ::String
|
299
|
+
attr_accessor replication_configuration_template_i_ds: ::Array[::String]
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
|
303
|
+
class DescribeReplicationConfigurationTemplatesResponse
|
304
|
+
attr_accessor items: ::Array[Types::ReplicationConfigurationTemplate]
|
305
|
+
attr_accessor next_token: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class DescribeSourceNetworksRequest
|
310
|
+
attr_accessor filters: Types::DescribeSourceNetworksRequestFilters
|
311
|
+
attr_accessor max_results: ::Integer
|
312
|
+
attr_accessor next_token: ::String
|
313
|
+
SENSITIVE: []
|
314
|
+
end
|
315
|
+
|
316
|
+
class DescribeSourceNetworksRequestFilters
|
317
|
+
attr_accessor origin_account_id: ::String
|
318
|
+
attr_accessor origin_region: ::String
|
319
|
+
attr_accessor source_network_i_ds: ::Array[::String]
|
320
|
+
SENSITIVE: []
|
321
|
+
end
|
322
|
+
|
323
|
+
class DescribeSourceNetworksResponse
|
324
|
+
attr_accessor items: ::Array[Types::SourceNetwork]
|
325
|
+
attr_accessor next_token: ::String
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class DescribeSourceServersRequest
|
330
|
+
attr_accessor filters: Types::DescribeSourceServersRequestFilters
|
331
|
+
attr_accessor max_results: ::Integer
|
332
|
+
attr_accessor next_token: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class DescribeSourceServersRequestFilters
|
337
|
+
attr_accessor hardware_id: ::String
|
338
|
+
attr_accessor source_server_i_ds: ::Array[::String]
|
339
|
+
attr_accessor staging_account_i_ds: ::Array[::String]
|
340
|
+
SENSITIVE: []
|
341
|
+
end
|
342
|
+
|
343
|
+
class DescribeSourceServersResponse
|
344
|
+
attr_accessor items: ::Array[Types::SourceServer]
|
345
|
+
attr_accessor next_token: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class DisconnectRecoveryInstanceRequest
|
350
|
+
attr_accessor recovery_instance_id: ::String
|
351
|
+
SENSITIVE: []
|
352
|
+
end
|
353
|
+
|
354
|
+
class DisconnectSourceServerRequest
|
355
|
+
attr_accessor source_server_id: ::String
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
359
|
+
class Disk
|
360
|
+
attr_accessor bytes: ::Integer
|
361
|
+
attr_accessor device_name: ::String
|
362
|
+
SENSITIVE: []
|
363
|
+
end
|
364
|
+
|
365
|
+
class EventResourceData
|
366
|
+
attr_accessor source_network_data: Types::SourceNetworkData
|
367
|
+
attr_accessor unknown: untyped
|
368
|
+
SENSITIVE: []
|
369
|
+
|
370
|
+
class SourceNetworkData < EventResourceData
|
371
|
+
end
|
372
|
+
class Unknown < EventResourceData
|
373
|
+
end
|
374
|
+
end
|
375
|
+
|
376
|
+
class ExportSourceNetworkCfnTemplateRequest
|
377
|
+
attr_accessor source_network_id: ::String
|
378
|
+
SENSITIVE: []
|
379
|
+
end
|
380
|
+
|
381
|
+
class ExportSourceNetworkCfnTemplateResponse
|
382
|
+
attr_accessor s3_destination_url: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class GetFailbackReplicationConfigurationRequest
|
387
|
+
attr_accessor recovery_instance_id: ::String
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class GetFailbackReplicationConfigurationResponse
|
392
|
+
attr_accessor bandwidth_throttling: ::Integer
|
393
|
+
attr_accessor name: ::String
|
394
|
+
attr_accessor recovery_instance_id: ::String
|
395
|
+
attr_accessor use_private_ip: bool
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class GetLaunchConfigurationRequest
|
400
|
+
attr_accessor source_server_id: ::String
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class GetReplicationConfigurationRequest
|
405
|
+
attr_accessor source_server_id: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class IdentificationHints
|
410
|
+
attr_accessor aws_instance_id: ::String
|
411
|
+
attr_accessor fqdn: ::String
|
412
|
+
attr_accessor hostname: ::String
|
413
|
+
attr_accessor vm_ware_uuid: ::String
|
414
|
+
SENSITIVE: []
|
415
|
+
end
|
416
|
+
|
417
|
+
class InitializeServiceRequest < Aws::EmptyStructure
|
418
|
+
end
|
419
|
+
|
420
|
+
class InitializeServiceResponse < Aws::EmptyStructure
|
421
|
+
end
|
422
|
+
|
423
|
+
class InternalServerException
|
424
|
+
attr_accessor message: ::String
|
425
|
+
attr_accessor retry_after_seconds: ::Integer
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class Job
|
430
|
+
attr_accessor arn: ::String
|
431
|
+
attr_accessor creation_date_time: ::String
|
432
|
+
attr_accessor end_date_time: ::String
|
433
|
+
attr_accessor initiated_by: ("START_RECOVERY" | "START_DRILL" | "FAILBACK" | "DIAGNOSTIC" | "TERMINATE_RECOVERY_INSTANCES" | "TARGET_ACCOUNT" | "CREATE_NETWORK_RECOVERY" | "UPDATE_NETWORK_RECOVERY" | "ASSOCIATE_NETWORK_RECOVERY")
|
434
|
+
attr_accessor job_id: ::String
|
435
|
+
attr_accessor participating_resources: ::Array[Types::ParticipatingResource]
|
436
|
+
attr_accessor participating_servers: ::Array[Types::ParticipatingServer]
|
437
|
+
attr_accessor status: ("PENDING" | "STARTED" | "COMPLETED")
|
438
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
439
|
+
attr_accessor type: ("LAUNCH" | "TERMINATE" | "CREATE_CONVERTED_SNAPSHOT")
|
440
|
+
SENSITIVE: [:tags]
|
441
|
+
end
|
442
|
+
|
443
|
+
class JobLog
|
444
|
+
attr_accessor event: ("JOB_START" | "SERVER_SKIPPED" | "CLEANUP_START" | "CLEANUP_END" | "CLEANUP_FAIL" | "SNAPSHOT_START" | "SNAPSHOT_END" | "SNAPSHOT_FAIL" | "USING_PREVIOUS_SNAPSHOT" | "USING_PREVIOUS_SNAPSHOT_FAILED" | "CONVERSION_START" | "CONVERSION_END" | "CONVERSION_FAIL" | "LAUNCH_START" | "LAUNCH_FAILED" | "JOB_CANCEL" | "JOB_END" | "DEPLOY_NETWORK_CONFIGURATION_START" | "DEPLOY_NETWORK_CONFIGURATION_END" | "DEPLOY_NETWORK_CONFIGURATION_FAILED" | "UPDATE_NETWORK_CONFIGURATION_START" | "UPDATE_NETWORK_CONFIGURATION_END" | "UPDATE_NETWORK_CONFIGURATION_FAILED" | "UPDATE_LAUNCH_TEMPLATE_START" | "UPDATE_LAUNCH_TEMPLATE_END" | "UPDATE_LAUNCH_TEMPLATE_FAILED" | "NETWORK_RECOVERY_FAIL")
|
445
|
+
attr_accessor event_data: Types::JobLogEventData
|
446
|
+
attr_accessor log_date_time: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class JobLogEventData
|
451
|
+
attr_accessor conversion_properties: Types::ConversionProperties
|
452
|
+
attr_accessor conversion_server_id: ::String
|
453
|
+
attr_accessor event_resource_data: Types::EventResourceData
|
454
|
+
attr_accessor raw_error: ::String
|
455
|
+
attr_accessor source_server_id: ::String
|
456
|
+
attr_accessor target_instance_id: ::String
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class LaunchAction
|
461
|
+
attr_accessor action_code: ::String
|
462
|
+
attr_accessor action_id: ::String
|
463
|
+
attr_accessor action_version: ::String
|
464
|
+
attr_accessor active: bool
|
465
|
+
attr_accessor category: ("MONITORING" | "VALIDATION" | "CONFIGURATION" | "SECURITY" | "OTHER")
|
466
|
+
attr_accessor description: ::String
|
467
|
+
attr_accessor name: ::String
|
468
|
+
attr_accessor optional: bool
|
469
|
+
attr_accessor order: ::Integer
|
470
|
+
attr_accessor parameters: ::Hash[::String, Types::LaunchActionParameter]
|
471
|
+
attr_accessor type: ("SSM_AUTOMATION" | "SSM_COMMAND")
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class LaunchActionParameter
|
476
|
+
attr_accessor type: ("SSM_STORE" | "DYNAMIC")
|
477
|
+
attr_accessor value: ::String
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class LaunchActionRun
|
482
|
+
attr_accessor action: Types::LaunchAction
|
483
|
+
attr_accessor failure_reason: ::String
|
484
|
+
attr_accessor run_id: ::String
|
485
|
+
attr_accessor status: ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
|
486
|
+
SENSITIVE: []
|
487
|
+
end
|
488
|
+
|
489
|
+
class LaunchActionsRequestFilters
|
490
|
+
attr_accessor action_ids: ::Array[::String]
|
491
|
+
SENSITIVE: []
|
492
|
+
end
|
493
|
+
|
494
|
+
class LaunchActionsStatus
|
495
|
+
attr_accessor runs: ::Array[Types::LaunchActionRun]
|
496
|
+
attr_accessor ssm_agent_discovery_datetime: ::String
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class LaunchConfiguration
|
501
|
+
attr_accessor copy_private_ip: bool
|
502
|
+
attr_accessor copy_tags: bool
|
503
|
+
attr_accessor ec2_launch_template_id: ::String
|
504
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
505
|
+
attr_accessor launch_into_instance_properties: Types::LaunchIntoInstanceProperties
|
506
|
+
attr_accessor licensing: Types::Licensing
|
507
|
+
attr_accessor name: ::String
|
508
|
+
attr_accessor post_launch_enabled: bool
|
509
|
+
attr_accessor source_server_id: ::String
|
510
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC" | "IN_AWS")
|
511
|
+
SENSITIVE: []
|
512
|
+
end
|
513
|
+
|
514
|
+
class LaunchConfigurationTemplate
|
515
|
+
attr_accessor arn: ::String
|
516
|
+
attr_accessor copy_private_ip: bool
|
517
|
+
attr_accessor copy_tags: bool
|
518
|
+
attr_accessor export_bucket_arn: ::String
|
519
|
+
attr_accessor launch_configuration_template_id: ::String
|
520
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
521
|
+
attr_accessor launch_into_source_instance: bool
|
522
|
+
attr_accessor licensing: Types::Licensing
|
523
|
+
attr_accessor post_launch_enabled: bool
|
524
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
525
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC" | "IN_AWS")
|
526
|
+
SENSITIVE: [:tags]
|
527
|
+
end
|
528
|
+
|
529
|
+
class LaunchIntoInstanceProperties
|
530
|
+
attr_accessor launch_into_ec2_instance_id: ::String
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class Licensing
|
535
|
+
attr_accessor os_byol: bool
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class LifeCycle
|
540
|
+
attr_accessor added_to_service_date_time: ::String
|
541
|
+
attr_accessor elapsed_replication_duration: ::String
|
542
|
+
attr_accessor first_byte_date_time: ::String
|
543
|
+
attr_accessor last_launch: Types::LifeCycleLastLaunch
|
544
|
+
attr_accessor last_seen_by_service_date_time: ::String
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class LifeCycleLastLaunch
|
549
|
+
attr_accessor initiated: Types::LifeCycleLastLaunchInitiated
|
550
|
+
attr_accessor status: ("PENDING" | "IN_PROGRESS" | "LAUNCHED" | "FAILED" | "TERMINATED")
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class LifeCycleLastLaunchInitiated
|
555
|
+
attr_accessor api_call_date_time: ::String
|
556
|
+
attr_accessor job_id: ::String
|
557
|
+
attr_accessor type: ("RECOVERY" | "DRILL")
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class ListExtensibleSourceServersRequest
|
562
|
+
attr_accessor max_results: ::Integer
|
563
|
+
attr_accessor next_token: ::String
|
564
|
+
attr_accessor staging_account_id: ::String
|
565
|
+
SENSITIVE: []
|
566
|
+
end
|
567
|
+
|
568
|
+
class ListExtensibleSourceServersResponse
|
569
|
+
attr_accessor items: ::Array[Types::StagingSourceServer]
|
570
|
+
attr_accessor next_token: ::String
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class ListLaunchActionsRequest
|
575
|
+
attr_accessor filters: Types::LaunchActionsRequestFilters
|
576
|
+
attr_accessor max_results: ::Integer
|
577
|
+
attr_accessor next_token: ::String
|
578
|
+
attr_accessor resource_id: ::String
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class ListLaunchActionsResponse
|
583
|
+
attr_accessor items: ::Array[Types::LaunchAction]
|
584
|
+
attr_accessor next_token: ::String
|
585
|
+
SENSITIVE: []
|
586
|
+
end
|
587
|
+
|
588
|
+
class ListStagingAccountsRequest
|
589
|
+
attr_accessor max_results: ::Integer
|
590
|
+
attr_accessor next_token: ::String
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class ListStagingAccountsResponse
|
595
|
+
attr_accessor accounts: ::Array[Types::Account]
|
596
|
+
attr_accessor next_token: ::String
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class ListTagsForResourceRequest
|
601
|
+
attr_accessor resource_arn: ::String
|
602
|
+
SENSITIVE: []
|
603
|
+
end
|
604
|
+
|
605
|
+
class ListTagsForResourceResponse
|
606
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
607
|
+
SENSITIVE: [:tags]
|
608
|
+
end
|
609
|
+
|
610
|
+
class NetworkInterface
|
611
|
+
attr_accessor ips: ::Array[::String]
|
612
|
+
attr_accessor is_primary: bool
|
613
|
+
attr_accessor mac_address: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class OS
|
618
|
+
attr_accessor full_string: ::String
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class PITPolicyRule
|
623
|
+
attr_accessor enabled: bool
|
624
|
+
attr_accessor interval: ::Integer
|
625
|
+
attr_accessor retention_duration: ::Integer
|
626
|
+
attr_accessor rule_id: ::Integer
|
627
|
+
attr_accessor units: ("MINUTE" | "HOUR" | "DAY")
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class ParticipatingResource
|
632
|
+
attr_accessor launch_status: ("PENDING" | "IN_PROGRESS" | "LAUNCHED" | "FAILED" | "TERMINATED")
|
633
|
+
attr_accessor participating_resource_id: Types::ParticipatingResourceID
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class ParticipatingResourceID
|
638
|
+
attr_accessor source_network_id: ::String
|
639
|
+
attr_accessor unknown: untyped
|
640
|
+
SENSITIVE: []
|
641
|
+
|
642
|
+
class SourceNetworkId < ParticipatingResourceID
|
643
|
+
end
|
644
|
+
class Unknown < ParticipatingResourceID
|
645
|
+
end
|
646
|
+
end
|
647
|
+
|
648
|
+
class ParticipatingServer
|
649
|
+
attr_accessor launch_actions_status: Types::LaunchActionsStatus
|
650
|
+
attr_accessor launch_status: ("PENDING" | "IN_PROGRESS" | "LAUNCHED" | "FAILED" | "TERMINATED")
|
651
|
+
attr_accessor recovery_instance_id: ::String
|
652
|
+
attr_accessor source_server_id: ::String
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class PutLaunchActionRequest
|
657
|
+
attr_accessor action_code: ::String
|
658
|
+
attr_accessor action_id: ::String
|
659
|
+
attr_accessor action_version: ::String
|
660
|
+
attr_accessor active: bool
|
661
|
+
attr_accessor category: ("MONITORING" | "VALIDATION" | "CONFIGURATION" | "SECURITY" | "OTHER")
|
662
|
+
attr_accessor description: ::String
|
663
|
+
attr_accessor name: ::String
|
664
|
+
attr_accessor optional: bool
|
665
|
+
attr_accessor order: ::Integer
|
666
|
+
attr_accessor parameters: ::Hash[::String, Types::LaunchActionParameter]
|
667
|
+
attr_accessor resource_id: ::String
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class PutLaunchActionResponse
|
672
|
+
attr_accessor action_code: ::String
|
673
|
+
attr_accessor action_id: ::String
|
674
|
+
attr_accessor action_version: ::String
|
675
|
+
attr_accessor active: bool
|
676
|
+
attr_accessor category: ("MONITORING" | "VALIDATION" | "CONFIGURATION" | "SECURITY" | "OTHER")
|
677
|
+
attr_accessor description: ::String
|
678
|
+
attr_accessor name: ::String
|
679
|
+
attr_accessor optional: bool
|
680
|
+
attr_accessor order: ::Integer
|
681
|
+
attr_accessor parameters: ::Hash[::String, Types::LaunchActionParameter]
|
682
|
+
attr_accessor resource_id: ::String
|
683
|
+
attr_accessor type: ("SSM_AUTOMATION" | "SSM_COMMAND")
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class RecoveryInstance
|
688
|
+
attr_accessor agent_version: ::String
|
689
|
+
attr_accessor arn: ::String
|
690
|
+
attr_accessor data_replication_info: Types::RecoveryInstanceDataReplicationInfo
|
691
|
+
attr_accessor ec2_instance_id: ::String
|
692
|
+
attr_accessor ec2_instance_state: ("PENDING" | "RUNNING" | "STOPPING" | "STOPPED" | "SHUTTING-DOWN" | "TERMINATED" | "NOT_FOUND")
|
693
|
+
attr_accessor failback: Types::RecoveryInstanceFailback
|
694
|
+
attr_accessor is_drill: bool
|
695
|
+
attr_accessor job_id: ::String
|
696
|
+
attr_accessor origin_availability_zone: ::String
|
697
|
+
attr_accessor origin_environment: ("ON_PREMISES" | "AWS")
|
698
|
+
attr_accessor point_in_time_snapshot_date_time: ::String
|
699
|
+
attr_accessor recovery_instance_id: ::String
|
700
|
+
attr_accessor recovery_instance_properties: Types::RecoveryInstanceProperties
|
701
|
+
attr_accessor source_server_id: ::String
|
702
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
703
|
+
SENSITIVE: [:tags]
|
704
|
+
end
|
705
|
+
|
706
|
+
class RecoveryInstanceDataReplicationError
|
707
|
+
attr_accessor error: ("AGENT_NOT_SEEN" | "FAILBACK_CLIENT_NOT_SEEN" | "NOT_CONVERGING" | "UNSTABLE_NETWORK" | "FAILED_TO_ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION" | "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT" | "FAILED_TO_CONFIGURE_REPLICATION_SOFTWARE" | "FAILED_TO_PAIR_AGENT_WITH_REPLICATION_SOFTWARE" | "FAILED_TO_ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION" | "FAILED_GETTING_REPLICATION_STATE" | "SNAPSHOTS_FAILURE" | "FAILED_TO_CREATE_SECURITY_GROUP" | "FAILED_TO_LAUNCH_REPLICATION_SERVER" | "FAILED_TO_BOOT_REPLICATION_SERVER" | "FAILED_TO_AUTHENTICATE_WITH_SERVICE" | "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE" | "FAILED_TO_CREATE_STAGING_DISKS" | "FAILED_TO_ATTACH_STAGING_DISKS" | "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT" | "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER" | "FAILED_TO_START_DATA_TRANSFER")
|
708
|
+
attr_accessor raw_error: ::String
|
709
|
+
SENSITIVE: []
|
710
|
+
end
|
711
|
+
|
712
|
+
class RecoveryInstanceDataReplicationInfo
|
713
|
+
attr_accessor data_replication_error: Types::RecoveryInstanceDataReplicationError
|
714
|
+
attr_accessor data_replication_initiation: Types::RecoveryInstanceDataReplicationInitiation
|
715
|
+
attr_accessor data_replication_state: ("STOPPED" | "INITIATING" | "INITIAL_SYNC" | "BACKLOG" | "CREATING_SNAPSHOT" | "CONTINUOUS" | "PAUSED" | "RESCAN" | "STALLED" | "DISCONNECTED" | "REPLICATION_STATE_NOT_AVAILABLE" | "NOT_STARTED")
|
716
|
+
attr_accessor eta_date_time: ::String
|
717
|
+
attr_accessor lag_duration: ::String
|
718
|
+
attr_accessor replicated_disks: ::Array[Types::RecoveryInstanceDataReplicationInfoReplicatedDisk]
|
719
|
+
attr_accessor staging_availability_zone: ::String
|
720
|
+
SENSITIVE: []
|
721
|
+
end
|
722
|
+
|
723
|
+
class RecoveryInstanceDataReplicationInfoReplicatedDisk
|
724
|
+
attr_accessor backlogged_storage_bytes: ::Integer
|
725
|
+
attr_accessor device_name: ::String
|
726
|
+
attr_accessor replicated_storage_bytes: ::Integer
|
727
|
+
attr_accessor rescanned_storage_bytes: ::Integer
|
728
|
+
attr_accessor total_storage_bytes: ::Integer
|
729
|
+
SENSITIVE: []
|
730
|
+
end
|
731
|
+
|
732
|
+
class RecoveryInstanceDataReplicationInitiation
|
733
|
+
attr_accessor start_date_time: ::String
|
734
|
+
attr_accessor steps: ::Array[Types::RecoveryInstanceDataReplicationInitiationStep]
|
735
|
+
SENSITIVE: []
|
736
|
+
end
|
737
|
+
|
738
|
+
class RecoveryInstanceDataReplicationInitiationStep
|
739
|
+
attr_accessor name: ("LINK_FAILBACK_CLIENT_WITH_RECOVERY_INSTANCE" | "COMPLETE_VOLUME_MAPPING" | "ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION" | "DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT" | "CONFIGURE_REPLICATION_SOFTWARE" | "PAIR_AGENT_WITH_REPLICATION_SOFTWARE" | "ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION" | "WAIT" | "CREATE_SECURITY_GROUP" | "LAUNCH_REPLICATION_SERVER" | "BOOT_REPLICATION_SERVER" | "AUTHENTICATE_WITH_SERVICE" | "DOWNLOAD_REPLICATION_SOFTWARE" | "CREATE_STAGING_DISKS" | "ATTACH_STAGING_DISKS" | "PAIR_REPLICATION_SERVER_WITH_AGENT" | "CONNECT_AGENT_TO_REPLICATION_SERVER" | "START_DATA_TRANSFER")
|
740
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED" | "SKIPPED")
|
741
|
+
SENSITIVE: []
|
742
|
+
end
|
743
|
+
|
744
|
+
class RecoveryInstanceDisk
|
745
|
+
attr_accessor bytes: ::Integer
|
746
|
+
attr_accessor ebs_volume_id: ::String
|
747
|
+
attr_accessor internal_device_name: ::String
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class RecoveryInstanceFailback
|
752
|
+
attr_accessor agent_last_seen_by_service_date_time: ::String
|
753
|
+
attr_accessor elapsed_replication_duration: ::String
|
754
|
+
attr_accessor failback_client_id: ::String
|
755
|
+
attr_accessor failback_client_last_seen_by_service_date_time: ::String
|
756
|
+
attr_accessor failback_initiation_time: ::String
|
757
|
+
attr_accessor failback_job_id: ::String
|
758
|
+
attr_accessor failback_launch_type: ("RECOVERY" | "DRILL")
|
759
|
+
attr_accessor failback_to_original_server: bool
|
760
|
+
attr_accessor first_byte_date_time: ::String
|
761
|
+
attr_accessor state: ("FAILBACK_NOT_STARTED" | "FAILBACK_IN_PROGRESS" | "FAILBACK_READY_FOR_LAUNCH" | "FAILBACK_COMPLETED" | "FAILBACK_ERROR" | "FAILBACK_NOT_READY_FOR_LAUNCH" | "FAILBACK_LAUNCH_STATE_NOT_AVAILABLE")
|
762
|
+
SENSITIVE: []
|
763
|
+
end
|
764
|
+
|
765
|
+
class RecoveryInstanceProperties
|
766
|
+
attr_accessor cpus: ::Array[Types::CPU]
|
767
|
+
attr_accessor disks: ::Array[Types::RecoveryInstanceDisk]
|
768
|
+
attr_accessor identification_hints: Types::IdentificationHints
|
769
|
+
attr_accessor last_updated_date_time: ::String
|
770
|
+
attr_accessor network_interfaces: ::Array[Types::NetworkInterface]
|
771
|
+
attr_accessor os: Types::OS
|
772
|
+
attr_accessor ram_bytes: ::Integer
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class RecoveryLifeCycle
|
777
|
+
attr_accessor api_call_date_time: ::Time
|
778
|
+
attr_accessor job_id: ::String
|
779
|
+
attr_accessor last_recovery_result: ("NOT_STARTED" | "IN_PROGRESS" | "SUCCESS" | "FAIL" | "PARTIAL_SUCCESS" | "ASSOCIATE_SUCCESS" | "ASSOCIATE_FAIL")
|
780
|
+
SENSITIVE: []
|
781
|
+
end
|
782
|
+
|
783
|
+
class RecoverySnapshot
|
784
|
+
attr_accessor ebs_snapshots: ::Array[::String]
|
785
|
+
attr_accessor expected_timestamp: ::String
|
786
|
+
attr_accessor snapshot_id: ::String
|
787
|
+
attr_accessor source_server_id: ::String
|
788
|
+
attr_accessor timestamp: ::String
|
789
|
+
SENSITIVE: []
|
790
|
+
end
|
791
|
+
|
792
|
+
class ReplicationConfiguration
|
793
|
+
attr_accessor associate_default_security_group: bool
|
794
|
+
attr_accessor auto_replicate_new_disks: bool
|
795
|
+
attr_accessor bandwidth_throttling: ::Integer
|
796
|
+
attr_accessor create_public_ip: bool
|
797
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
798
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "GP3" | "ST1" | "AUTO")
|
799
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM" | "NONE")
|
800
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
801
|
+
attr_accessor name: ::String
|
802
|
+
attr_accessor pit_policy: ::Array[Types::PITPolicyRule]
|
803
|
+
attr_accessor replicated_disks: ::Array[Types::ReplicationConfigurationReplicatedDisk]
|
804
|
+
attr_accessor replication_server_instance_type: ::String
|
805
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
806
|
+
attr_accessor source_server_id: ::String
|
807
|
+
attr_accessor staging_area_subnet_id: ::String
|
808
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
809
|
+
attr_accessor use_dedicated_replication_server: bool
|
810
|
+
SENSITIVE: [:staging_area_tags]
|
811
|
+
end
|
812
|
+
|
813
|
+
class ReplicationConfigurationReplicatedDisk
|
814
|
+
attr_accessor device_name: ::String
|
815
|
+
attr_accessor iops: ::Integer
|
816
|
+
attr_accessor is_boot_disk: bool
|
817
|
+
attr_accessor optimized_staging_disk_type: ("AUTO" | "GP2" | "GP3" | "IO1" | "SC1" | "ST1" | "STANDARD")
|
818
|
+
attr_accessor staging_disk_type: ("AUTO" | "GP2" | "GP3" | "IO1" | "SC1" | "ST1" | "STANDARD")
|
819
|
+
attr_accessor throughput: ::Integer
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class ReplicationConfigurationTemplate
|
824
|
+
attr_accessor arn: ::String
|
825
|
+
attr_accessor associate_default_security_group: bool
|
826
|
+
attr_accessor auto_replicate_new_disks: bool
|
827
|
+
attr_accessor bandwidth_throttling: ::Integer
|
828
|
+
attr_accessor create_public_ip: bool
|
829
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
830
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "GP3" | "ST1" | "AUTO")
|
831
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM" | "NONE")
|
832
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
833
|
+
attr_accessor pit_policy: ::Array[Types::PITPolicyRule]
|
834
|
+
attr_accessor replication_configuration_template_id: ::String
|
835
|
+
attr_accessor replication_server_instance_type: ::String
|
836
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
837
|
+
attr_accessor staging_area_subnet_id: ::String
|
838
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
839
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
840
|
+
attr_accessor use_dedicated_replication_server: bool
|
841
|
+
SENSITIVE: [:staging_area_tags, :tags]
|
842
|
+
end
|
843
|
+
|
844
|
+
class ResourceNotFoundException
|
845
|
+
attr_accessor code: ::String
|
846
|
+
attr_accessor message: ::String
|
847
|
+
attr_accessor resource_id: ::String
|
848
|
+
attr_accessor resource_type: ::String
|
849
|
+
SENSITIVE: []
|
850
|
+
end
|
851
|
+
|
852
|
+
class RetryDataReplicationRequest
|
853
|
+
attr_accessor source_server_id: ::String
|
854
|
+
SENSITIVE: []
|
855
|
+
end
|
856
|
+
|
857
|
+
class ReverseReplicationRequest
|
858
|
+
attr_accessor recovery_instance_id: ::String
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class ReverseReplicationResponse
|
863
|
+
attr_accessor reversed_direction_source_server_arn: ::String
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class ServiceQuotaExceededException
|
868
|
+
attr_accessor code: ::String
|
869
|
+
attr_accessor message: ::String
|
870
|
+
attr_accessor quota_code: ::String
|
871
|
+
attr_accessor resource_id: ::String
|
872
|
+
attr_accessor resource_type: ::String
|
873
|
+
attr_accessor service_code: ::String
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
877
|
+
class SourceCloudProperties
|
878
|
+
attr_accessor origin_account_id: ::String
|
879
|
+
attr_accessor origin_availability_zone: ::String
|
880
|
+
attr_accessor origin_region: ::String
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class SourceNetwork
|
885
|
+
attr_accessor arn: ::String
|
886
|
+
attr_accessor cfn_stack_name: ::String
|
887
|
+
attr_accessor last_recovery: Types::RecoveryLifeCycle
|
888
|
+
attr_accessor launched_vpc_id: ::String
|
889
|
+
attr_accessor replication_status: ("STOPPED" | "IN_PROGRESS" | "PROTECTED" | "ERROR")
|
890
|
+
attr_accessor replication_status_details: ::String
|
891
|
+
attr_accessor source_account_id: ::String
|
892
|
+
attr_accessor source_network_id: ::String
|
893
|
+
attr_accessor source_region: ::String
|
894
|
+
attr_accessor source_vpc_id: ::String
|
895
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
896
|
+
SENSITIVE: [:cfn_stack_name, :replication_status_details, :tags]
|
897
|
+
end
|
898
|
+
|
899
|
+
class SourceNetworkData
|
900
|
+
attr_accessor source_network_id: ::String
|
901
|
+
attr_accessor source_vpc: ::String
|
902
|
+
attr_accessor stack_name: ::String
|
903
|
+
attr_accessor target_vpc: ::String
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class SourceProperties
|
908
|
+
attr_accessor cpus: ::Array[Types::CPU]
|
909
|
+
attr_accessor disks: ::Array[Types::Disk]
|
910
|
+
attr_accessor identification_hints: Types::IdentificationHints
|
911
|
+
attr_accessor last_updated_date_time: ::String
|
912
|
+
attr_accessor network_interfaces: ::Array[Types::NetworkInterface]
|
913
|
+
attr_accessor os: Types::OS
|
914
|
+
attr_accessor ram_bytes: ::Integer
|
915
|
+
attr_accessor recommended_instance_type: ::String
|
916
|
+
attr_accessor supports_nitro_instances: bool
|
917
|
+
SENSITIVE: []
|
918
|
+
end
|
919
|
+
|
920
|
+
class SourceServer
|
921
|
+
attr_accessor agent_version: ::String
|
922
|
+
attr_accessor arn: ::String
|
923
|
+
attr_accessor data_replication_info: Types::DataReplicationInfo
|
924
|
+
attr_accessor last_launch_result: ("NOT_STARTED" | "PENDING" | "SUCCEEDED" | "FAILED")
|
925
|
+
attr_accessor life_cycle: Types::LifeCycle
|
926
|
+
attr_accessor recovery_instance_id: ::String
|
927
|
+
attr_accessor replication_direction: ("FAILOVER" | "FAILBACK")
|
928
|
+
attr_accessor reversed_direction_source_server_arn: ::String
|
929
|
+
attr_accessor source_cloud_properties: Types::SourceCloudProperties
|
930
|
+
attr_accessor source_network_id: ::String
|
931
|
+
attr_accessor source_properties: Types::SourceProperties
|
932
|
+
attr_accessor source_server_id: ::String
|
933
|
+
attr_accessor staging_area: Types::StagingArea
|
934
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
935
|
+
SENSITIVE: [:tags]
|
936
|
+
end
|
937
|
+
|
938
|
+
class StagingArea
|
939
|
+
attr_accessor error_message: ::String
|
940
|
+
attr_accessor staging_account_id: ::String
|
941
|
+
attr_accessor staging_source_server_arn: ::String
|
942
|
+
attr_accessor status: ("EXTENDED" | "EXTENSION_ERROR" | "NOT_EXTENDED")
|
943
|
+
SENSITIVE: []
|
944
|
+
end
|
945
|
+
|
946
|
+
class StagingSourceServer
|
947
|
+
attr_accessor arn: ::String
|
948
|
+
attr_accessor hostname: ::String
|
949
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
950
|
+
SENSITIVE: [:tags]
|
951
|
+
end
|
952
|
+
|
953
|
+
class StartFailbackLaunchRequest
|
954
|
+
attr_accessor recovery_instance_i_ds: ::Array[::String]
|
955
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
956
|
+
SENSITIVE: [:tags]
|
957
|
+
end
|
958
|
+
|
959
|
+
class StartFailbackLaunchResponse
|
960
|
+
attr_accessor job: Types::Job
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class StartRecoveryRequest
|
965
|
+
attr_accessor is_drill: bool
|
966
|
+
attr_accessor source_servers: ::Array[Types::StartRecoveryRequestSourceServer]
|
967
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
968
|
+
SENSITIVE: [:tags]
|
969
|
+
end
|
970
|
+
|
971
|
+
class StartRecoveryRequestSourceServer
|
972
|
+
attr_accessor recovery_snapshot_id: ::String
|
973
|
+
attr_accessor source_server_id: ::String
|
974
|
+
SENSITIVE: []
|
975
|
+
end
|
976
|
+
|
977
|
+
class StartRecoveryResponse
|
978
|
+
attr_accessor job: Types::Job
|
979
|
+
SENSITIVE: []
|
980
|
+
end
|
981
|
+
|
982
|
+
class StartReplicationRequest
|
983
|
+
attr_accessor source_server_id: ::String
|
984
|
+
SENSITIVE: []
|
985
|
+
end
|
986
|
+
|
987
|
+
class StartReplicationResponse
|
988
|
+
attr_accessor source_server: Types::SourceServer
|
989
|
+
SENSITIVE: []
|
990
|
+
end
|
991
|
+
|
992
|
+
class StartSourceNetworkRecoveryRequest
|
993
|
+
attr_accessor deploy_as_new: bool
|
994
|
+
attr_accessor source_networks: ::Array[Types::StartSourceNetworkRecoveryRequestNetworkEntry]
|
995
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
996
|
+
SENSITIVE: [:tags]
|
997
|
+
end
|
998
|
+
|
999
|
+
class StartSourceNetworkRecoveryRequestNetworkEntry
|
1000
|
+
attr_accessor cfn_stack_name: ::String
|
1001
|
+
attr_accessor source_network_id: ::String
|
1002
|
+
SENSITIVE: [:cfn_stack_name]
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
class StartSourceNetworkRecoveryResponse
|
1006
|
+
attr_accessor job: Types::Job
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class StartSourceNetworkReplicationRequest
|
1011
|
+
attr_accessor source_network_id: ::String
|
1012
|
+
SENSITIVE: []
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
class StartSourceNetworkReplicationResponse
|
1016
|
+
attr_accessor source_network: Types::SourceNetwork
|
1017
|
+
SENSITIVE: []
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
class StopFailbackRequest
|
1021
|
+
attr_accessor recovery_instance_id: ::String
|
1022
|
+
SENSITIVE: []
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
class StopReplicationRequest
|
1026
|
+
attr_accessor source_server_id: ::String
|
1027
|
+
SENSITIVE: []
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
class StopReplicationResponse
|
1031
|
+
attr_accessor source_server: Types::SourceServer
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class StopSourceNetworkReplicationRequest
|
1036
|
+
attr_accessor source_network_id: ::String
|
1037
|
+
SENSITIVE: []
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
class StopSourceNetworkReplicationResponse
|
1041
|
+
attr_accessor source_network: Types::SourceNetwork
|
1042
|
+
SENSITIVE: []
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
class TagResourceRequest
|
1046
|
+
attr_accessor resource_arn: ::String
|
1047
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1048
|
+
SENSITIVE: [:tags]
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
class TerminateRecoveryInstancesRequest
|
1052
|
+
attr_accessor recovery_instance_i_ds: ::Array[::String]
|
1053
|
+
SENSITIVE: []
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
class TerminateRecoveryInstancesResponse
|
1057
|
+
attr_accessor job: Types::Job
|
1058
|
+
SENSITIVE: []
|
1059
|
+
end
|
1060
|
+
|
1061
|
+
class ThrottlingException
|
1062
|
+
attr_accessor message: ::String
|
1063
|
+
attr_accessor quota_code: ::String
|
1064
|
+
attr_accessor retry_after_seconds: ::String
|
1065
|
+
attr_accessor service_code: ::String
|
1066
|
+
SENSITIVE: []
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
class UninitializedAccountException
|
1070
|
+
attr_accessor code: ::String
|
1071
|
+
attr_accessor message: ::String
|
1072
|
+
SENSITIVE: []
|
1073
|
+
end
|
1074
|
+
|
1075
|
+
class UntagResourceRequest
|
1076
|
+
attr_accessor resource_arn: ::String
|
1077
|
+
attr_accessor tag_keys: ::Array[::String]
|
1078
|
+
SENSITIVE: [:tag_keys]
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class UpdateFailbackReplicationConfigurationRequest
|
1082
|
+
attr_accessor bandwidth_throttling: ::Integer
|
1083
|
+
attr_accessor name: ::String
|
1084
|
+
attr_accessor recovery_instance_id: ::String
|
1085
|
+
attr_accessor use_private_ip: bool
|
1086
|
+
SENSITIVE: []
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
class UpdateLaunchConfigurationRequest
|
1090
|
+
attr_accessor copy_private_ip: bool
|
1091
|
+
attr_accessor copy_tags: bool
|
1092
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
1093
|
+
attr_accessor launch_into_instance_properties: Types::LaunchIntoInstanceProperties
|
1094
|
+
attr_accessor licensing: Types::Licensing
|
1095
|
+
attr_accessor name: ::String
|
1096
|
+
attr_accessor post_launch_enabled: bool
|
1097
|
+
attr_accessor source_server_id: ::String
|
1098
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC" | "IN_AWS")
|
1099
|
+
SENSITIVE: []
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class UpdateLaunchConfigurationTemplateRequest
|
1103
|
+
attr_accessor copy_private_ip: bool
|
1104
|
+
attr_accessor copy_tags: bool
|
1105
|
+
attr_accessor export_bucket_arn: ::String
|
1106
|
+
attr_accessor launch_configuration_template_id: ::String
|
1107
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
1108
|
+
attr_accessor launch_into_source_instance: bool
|
1109
|
+
attr_accessor licensing: Types::Licensing
|
1110
|
+
attr_accessor post_launch_enabled: bool
|
1111
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC" | "IN_AWS")
|
1112
|
+
SENSITIVE: []
|
1113
|
+
end
|
1114
|
+
|
1115
|
+
class UpdateLaunchConfigurationTemplateResponse
|
1116
|
+
attr_accessor launch_configuration_template: Types::LaunchConfigurationTemplate
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class UpdateReplicationConfigurationRequest
|
1121
|
+
attr_accessor associate_default_security_group: bool
|
1122
|
+
attr_accessor auto_replicate_new_disks: bool
|
1123
|
+
attr_accessor bandwidth_throttling: ::Integer
|
1124
|
+
attr_accessor create_public_ip: bool
|
1125
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
1126
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "GP3" | "ST1" | "AUTO")
|
1127
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM" | "NONE")
|
1128
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
1129
|
+
attr_accessor name: ::String
|
1130
|
+
attr_accessor pit_policy: ::Array[Types::PITPolicyRule]
|
1131
|
+
attr_accessor replicated_disks: ::Array[Types::ReplicationConfigurationReplicatedDisk]
|
1132
|
+
attr_accessor replication_server_instance_type: ::String
|
1133
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
1134
|
+
attr_accessor source_server_id: ::String
|
1135
|
+
attr_accessor staging_area_subnet_id: ::String
|
1136
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
1137
|
+
attr_accessor use_dedicated_replication_server: bool
|
1138
|
+
SENSITIVE: [:staging_area_tags]
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
class UpdateReplicationConfigurationTemplateRequest
|
1142
|
+
attr_accessor arn: ::String
|
1143
|
+
attr_accessor associate_default_security_group: bool
|
1144
|
+
attr_accessor auto_replicate_new_disks: bool
|
1145
|
+
attr_accessor bandwidth_throttling: ::Integer
|
1146
|
+
attr_accessor create_public_ip: bool
|
1147
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
1148
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "GP3" | "ST1" | "AUTO")
|
1149
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM" | "NONE")
|
1150
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
1151
|
+
attr_accessor pit_policy: ::Array[Types::PITPolicyRule]
|
1152
|
+
attr_accessor replication_configuration_template_id: ::String
|
1153
|
+
attr_accessor replication_server_instance_type: ::String
|
1154
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
1155
|
+
attr_accessor staging_area_subnet_id: ::String
|
1156
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
1157
|
+
attr_accessor use_dedicated_replication_server: bool
|
1158
|
+
SENSITIVE: [:staging_area_tags]
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class ValidationException
|
1162
|
+
attr_accessor code: ::String
|
1163
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1164
|
+
attr_accessor message: ::String
|
1165
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
1166
|
+
SENSITIVE: []
|
1167
|
+
end
|
1168
|
+
|
1169
|
+
class ValidationExceptionField
|
1170
|
+
attr_accessor message: ::String
|
1171
|
+
attr_accessor name: ::String
|
1172
|
+
SENSITIVE: []
|
1173
|
+
end
|
1174
|
+
end
|
1175
|
+
end
|