aws-sdk-mgn 1.29.0 → 1.30.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-mgn/client.rb +1 -1
- data/lib/aws-sdk-mgn/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-mgn.rb +1 -1
- data/sig/client.rbs +1484 -0
- data/sig/errors.rbs +62 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1427 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1427 @@
|
|
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::Mgn
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor code: ::String
|
13
|
+
attr_accessor message: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class Application
|
18
|
+
attr_accessor application_aggregated_status: Types::ApplicationAggregatedStatus
|
19
|
+
attr_accessor application_id: ::String
|
20
|
+
attr_accessor arn: ::String
|
21
|
+
attr_accessor creation_date_time: ::String
|
22
|
+
attr_accessor description: ::String
|
23
|
+
attr_accessor is_archived: bool
|
24
|
+
attr_accessor last_modified_date_time: ::String
|
25
|
+
attr_accessor name: ::String
|
26
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
27
|
+
attr_accessor wave_id: ::String
|
28
|
+
SENSITIVE: [:tags]
|
29
|
+
end
|
30
|
+
|
31
|
+
class ApplicationAggregatedStatus
|
32
|
+
attr_accessor health_status: ("HEALTHY" | "LAGGING" | "ERROR")
|
33
|
+
attr_accessor last_update_date_time: ::String
|
34
|
+
attr_accessor progress_status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETED")
|
35
|
+
attr_accessor total_source_servers: ::Integer
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
39
|
+
class ArchiveApplicationRequest
|
40
|
+
attr_accessor account_id: ::String
|
41
|
+
attr_accessor application_id: ::String
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class ArchiveWaveRequest
|
46
|
+
attr_accessor account_id: ::String
|
47
|
+
attr_accessor wave_id: ::String
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
51
|
+
class AssociateApplicationsRequest
|
52
|
+
attr_accessor account_id: ::String
|
53
|
+
attr_accessor application_i_ds: ::Array[::String]
|
54
|
+
attr_accessor wave_id: ::String
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class AssociateApplicationsResponse < Aws::EmptyStructure
|
59
|
+
end
|
60
|
+
|
61
|
+
class AssociateSourceServersRequest
|
62
|
+
attr_accessor account_id: ::String
|
63
|
+
attr_accessor application_id: ::String
|
64
|
+
attr_accessor source_server_i_ds: ::Array[::String]
|
65
|
+
SENSITIVE: []
|
66
|
+
end
|
67
|
+
|
68
|
+
class AssociateSourceServersResponse < Aws::EmptyStructure
|
69
|
+
end
|
70
|
+
|
71
|
+
class CPU
|
72
|
+
attr_accessor cores: ::Integer
|
73
|
+
attr_accessor model_name: ::String
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class ChangeServerLifeCycleStateRequest
|
78
|
+
attr_accessor account_id: ::String
|
79
|
+
attr_accessor life_cycle: Types::ChangeServerLifeCycleStateSourceServerLifecycle
|
80
|
+
attr_accessor source_server_id: ::String
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class ChangeServerLifeCycleStateSourceServerLifecycle
|
85
|
+
attr_accessor state: ("READY_FOR_TEST" | "READY_FOR_CUTOVER" | "CUTOVER")
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class ConflictException
|
90
|
+
attr_accessor code: ::String
|
91
|
+
attr_accessor errors: ::Array[Types::ErrorDetails]
|
92
|
+
attr_accessor message: ::String
|
93
|
+
attr_accessor resource_id: ::String
|
94
|
+
attr_accessor resource_type: ::String
|
95
|
+
SENSITIVE: []
|
96
|
+
end
|
97
|
+
|
98
|
+
class Connector
|
99
|
+
attr_accessor arn: ::String
|
100
|
+
attr_accessor connector_id: ::String
|
101
|
+
attr_accessor name: ::String
|
102
|
+
attr_accessor ssm_command_config: Types::ConnectorSsmCommandConfig
|
103
|
+
attr_accessor ssm_instance_id: ::String
|
104
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
105
|
+
SENSITIVE: [:tags]
|
106
|
+
end
|
107
|
+
|
108
|
+
class ConnectorSsmCommandConfig
|
109
|
+
attr_accessor cloud_watch_log_group_name: ::String
|
110
|
+
attr_accessor cloud_watch_output_enabled: bool
|
111
|
+
attr_accessor output_s3_bucket_name: ::String
|
112
|
+
attr_accessor s3_output_enabled: bool
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class CreateApplicationRequest
|
117
|
+
attr_accessor account_id: ::String
|
118
|
+
attr_accessor description: ::String
|
119
|
+
attr_accessor name: ::String
|
120
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
121
|
+
SENSITIVE: [:tags]
|
122
|
+
end
|
123
|
+
|
124
|
+
class CreateConnectorRequest
|
125
|
+
attr_accessor name: ::String
|
126
|
+
attr_accessor ssm_command_config: Types::ConnectorSsmCommandConfig
|
127
|
+
attr_accessor ssm_instance_id: ::String
|
128
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
129
|
+
SENSITIVE: [:tags]
|
130
|
+
end
|
131
|
+
|
132
|
+
class CreateLaunchConfigurationTemplateRequest
|
133
|
+
attr_accessor associate_public_ip_address: bool
|
134
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
135
|
+
attr_accessor copy_private_ip: bool
|
136
|
+
attr_accessor copy_tags: bool
|
137
|
+
attr_accessor enable_map_auto_tagging: bool
|
138
|
+
attr_accessor large_volume_conf: Types::LaunchTemplateDiskConf
|
139
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
140
|
+
attr_accessor licensing: Types::Licensing
|
141
|
+
attr_accessor map_auto_tagging_mpe_id: ::String
|
142
|
+
attr_accessor post_launch_actions: Types::PostLaunchActions
|
143
|
+
attr_accessor small_volume_conf: Types::LaunchTemplateDiskConf
|
144
|
+
attr_accessor small_volume_max_size: ::Integer
|
145
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
146
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC")
|
147
|
+
SENSITIVE: [:tags]
|
148
|
+
end
|
149
|
+
|
150
|
+
class CreateReplicationConfigurationTemplateRequest
|
151
|
+
attr_accessor associate_default_security_group: bool
|
152
|
+
attr_accessor bandwidth_throttling: ::Integer
|
153
|
+
attr_accessor create_public_ip: bool
|
154
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
155
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "ST1" | "GP3")
|
156
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM")
|
157
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
158
|
+
attr_accessor replication_server_instance_type: ::String
|
159
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
160
|
+
attr_accessor staging_area_subnet_id: ::String
|
161
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
162
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
163
|
+
attr_accessor use_dedicated_replication_server: bool
|
164
|
+
attr_accessor use_fips_endpoint: bool
|
165
|
+
SENSITIVE: [:staging_area_tags, :tags]
|
166
|
+
end
|
167
|
+
|
168
|
+
class CreateWaveRequest
|
169
|
+
attr_accessor account_id: ::String
|
170
|
+
attr_accessor description: ::String
|
171
|
+
attr_accessor name: ::String
|
172
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
173
|
+
SENSITIVE: [:tags]
|
174
|
+
end
|
175
|
+
|
176
|
+
class DataReplicationError
|
177
|
+
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" | "UNSUPPORTED_VM_CONFIGURATION" | "LAST_SNAPSHOT_JOB_FAILED")
|
178
|
+
attr_accessor raw_error: ::String
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class DataReplicationInfo
|
183
|
+
attr_accessor data_replication_error: Types::DataReplicationError
|
184
|
+
attr_accessor data_replication_initiation: Types::DataReplicationInitiation
|
185
|
+
attr_accessor data_replication_state: ("STOPPED" | "INITIATING" | "INITIAL_SYNC" | "BACKLOG" | "CREATING_SNAPSHOT" | "CONTINUOUS" | "PAUSED" | "RESCAN" | "STALLED" | "DISCONNECTED" | "PENDING_SNAPSHOT_SHIPPING" | "SHIPPING_SNAPSHOT")
|
186
|
+
attr_accessor eta_date_time: ::String
|
187
|
+
attr_accessor lag_duration: ::String
|
188
|
+
attr_accessor last_snapshot_date_time: ::String
|
189
|
+
attr_accessor replicated_disks: ::Array[Types::DataReplicationInfoReplicatedDisk]
|
190
|
+
SENSITIVE: []
|
191
|
+
end
|
192
|
+
|
193
|
+
class DataReplicationInfoReplicatedDisk
|
194
|
+
attr_accessor backlogged_storage_bytes: ::Integer
|
195
|
+
attr_accessor device_name: ::String
|
196
|
+
attr_accessor replicated_storage_bytes: ::Integer
|
197
|
+
attr_accessor rescanned_storage_bytes: ::Integer
|
198
|
+
attr_accessor total_storage_bytes: ::Integer
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class DataReplicationInitiation
|
203
|
+
attr_accessor next_attempt_date_time: ::String
|
204
|
+
attr_accessor start_date_time: ::String
|
205
|
+
attr_accessor steps: ::Array[Types::DataReplicationInitiationStep]
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class DataReplicationInitiationStep
|
210
|
+
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")
|
211
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "SUCCEEDED" | "FAILED" | "SKIPPED")
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class DeleteApplicationRequest
|
216
|
+
attr_accessor account_id: ::String
|
217
|
+
attr_accessor application_id: ::String
|
218
|
+
SENSITIVE: []
|
219
|
+
end
|
220
|
+
|
221
|
+
class DeleteApplicationResponse < Aws::EmptyStructure
|
222
|
+
end
|
223
|
+
|
224
|
+
class DeleteConnectorRequest
|
225
|
+
attr_accessor connector_id: ::String
|
226
|
+
SENSITIVE: []
|
227
|
+
end
|
228
|
+
|
229
|
+
class DeleteJobRequest
|
230
|
+
attr_accessor account_id: ::String
|
231
|
+
attr_accessor job_id: ::String
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class DeleteJobResponse < Aws::EmptyStructure
|
236
|
+
end
|
237
|
+
|
238
|
+
class DeleteLaunchConfigurationTemplateRequest
|
239
|
+
attr_accessor launch_configuration_template_id: ::String
|
240
|
+
SENSITIVE: []
|
241
|
+
end
|
242
|
+
|
243
|
+
class DeleteLaunchConfigurationTemplateResponse < Aws::EmptyStructure
|
244
|
+
end
|
245
|
+
|
246
|
+
class DeleteReplicationConfigurationTemplateRequest
|
247
|
+
attr_accessor replication_configuration_template_id: ::String
|
248
|
+
SENSITIVE: []
|
249
|
+
end
|
250
|
+
|
251
|
+
class DeleteReplicationConfigurationTemplateResponse < Aws::EmptyStructure
|
252
|
+
end
|
253
|
+
|
254
|
+
class DeleteSourceServerRequest
|
255
|
+
attr_accessor account_id: ::String
|
256
|
+
attr_accessor source_server_id: ::String
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class DeleteSourceServerResponse < Aws::EmptyStructure
|
261
|
+
end
|
262
|
+
|
263
|
+
class DeleteVcenterClientRequest
|
264
|
+
attr_accessor vcenter_client_id: ::String
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class DeleteWaveRequest
|
269
|
+
attr_accessor account_id: ::String
|
270
|
+
attr_accessor wave_id: ::String
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class DeleteWaveResponse < Aws::EmptyStructure
|
275
|
+
end
|
276
|
+
|
277
|
+
class DescribeJobLogItemsRequest
|
278
|
+
attr_accessor account_id: ::String
|
279
|
+
attr_accessor job_id: ::String
|
280
|
+
attr_accessor max_results: ::Integer
|
281
|
+
attr_accessor next_token: ::String
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class DescribeJobLogItemsResponse
|
286
|
+
attr_accessor items: ::Array[Types::JobLog]
|
287
|
+
attr_accessor next_token: ::String
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class DescribeJobsRequest
|
292
|
+
attr_accessor account_id: ::String
|
293
|
+
attr_accessor filters: Types::DescribeJobsRequestFilters
|
294
|
+
attr_accessor max_results: ::Integer
|
295
|
+
attr_accessor next_token: ::String
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class DescribeJobsRequestFilters
|
300
|
+
attr_accessor from_date: ::String
|
301
|
+
attr_accessor job_i_ds: ::Array[::String]
|
302
|
+
attr_accessor to_date: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class DescribeJobsResponse
|
307
|
+
attr_accessor items: ::Array[Types::Job]
|
308
|
+
attr_accessor next_token: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class DescribeLaunchConfigurationTemplatesRequest
|
313
|
+
attr_accessor launch_configuration_template_i_ds: ::Array[::String]
|
314
|
+
attr_accessor max_results: ::Integer
|
315
|
+
attr_accessor next_token: ::String
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class DescribeLaunchConfigurationTemplatesResponse
|
320
|
+
attr_accessor items: ::Array[Types::LaunchConfigurationTemplate]
|
321
|
+
attr_accessor next_token: ::String
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class DescribeReplicationConfigurationTemplatesRequest
|
326
|
+
attr_accessor max_results: ::Integer
|
327
|
+
attr_accessor next_token: ::String
|
328
|
+
attr_accessor replication_configuration_template_i_ds: ::Array[::String]
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
332
|
+
class DescribeReplicationConfigurationTemplatesResponse
|
333
|
+
attr_accessor items: ::Array[Types::ReplicationConfigurationTemplate]
|
334
|
+
attr_accessor next_token: ::String
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class DescribeSourceServersRequest
|
339
|
+
attr_accessor account_id: ::String
|
340
|
+
attr_accessor filters: Types::DescribeSourceServersRequestFilters
|
341
|
+
attr_accessor max_results: ::Integer
|
342
|
+
attr_accessor next_token: ::String
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class DescribeSourceServersRequestFilters
|
347
|
+
attr_accessor application_i_ds: ::Array[::String]
|
348
|
+
attr_accessor is_archived: bool
|
349
|
+
attr_accessor life_cycle_states: ::Array[("STOPPED" | "NOT_READY" | "READY_FOR_TEST" | "TESTING" | "READY_FOR_CUTOVER" | "CUTTING_OVER" | "CUTOVER" | "DISCONNECTED" | "DISCOVERED" | "PENDING_INSTALLATION")]
|
350
|
+
attr_accessor replication_types: ::Array[("AGENT_BASED" | "SNAPSHOT_SHIPPING")]
|
351
|
+
attr_accessor source_server_i_ds: ::Array[::String]
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class DescribeSourceServersResponse
|
356
|
+
attr_accessor items: ::Array[Types::SourceServer]
|
357
|
+
attr_accessor next_token: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class DescribeVcenterClientsRequest
|
362
|
+
attr_accessor max_results: ::Integer
|
363
|
+
attr_accessor next_token: ::String
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class DescribeVcenterClientsResponse
|
368
|
+
attr_accessor items: ::Array[Types::VcenterClient]
|
369
|
+
attr_accessor next_token: ::String
|
370
|
+
SENSITIVE: []
|
371
|
+
end
|
372
|
+
|
373
|
+
class DisassociateApplicationsRequest
|
374
|
+
attr_accessor account_id: ::String
|
375
|
+
attr_accessor application_i_ds: ::Array[::String]
|
376
|
+
attr_accessor wave_id: ::String
|
377
|
+
SENSITIVE: []
|
378
|
+
end
|
379
|
+
|
380
|
+
class DisassociateApplicationsResponse < Aws::EmptyStructure
|
381
|
+
end
|
382
|
+
|
383
|
+
class DisassociateSourceServersRequest
|
384
|
+
attr_accessor account_id: ::String
|
385
|
+
attr_accessor application_id: ::String
|
386
|
+
attr_accessor source_server_i_ds: ::Array[::String]
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
390
|
+
class DisassociateSourceServersResponse < Aws::EmptyStructure
|
391
|
+
end
|
392
|
+
|
393
|
+
class DisconnectFromServiceRequest
|
394
|
+
attr_accessor account_id: ::String
|
395
|
+
attr_accessor source_server_id: ::String
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class Disk
|
400
|
+
attr_accessor bytes: ::Integer
|
401
|
+
attr_accessor device_name: ::String
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class ErrorDetails
|
406
|
+
attr_accessor code: ::String
|
407
|
+
attr_accessor message: ::String
|
408
|
+
attr_accessor resource_id: ::String
|
409
|
+
attr_accessor resource_type: ::String
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class ExportErrorData
|
414
|
+
attr_accessor raw_error: ::String
|
415
|
+
SENSITIVE: []
|
416
|
+
end
|
417
|
+
|
418
|
+
class ExportTask
|
419
|
+
attr_accessor creation_date_time: ::String
|
420
|
+
attr_accessor end_date_time: ::String
|
421
|
+
attr_accessor export_id: ::String
|
422
|
+
attr_accessor progress_percentage: ::Float
|
423
|
+
attr_accessor s3_bucket: ::String
|
424
|
+
attr_accessor s3_bucket_owner: ::String
|
425
|
+
attr_accessor s3_key: ::String
|
426
|
+
attr_accessor status: ("PENDING" | "STARTED" | "FAILED" | "SUCCEEDED")
|
427
|
+
attr_accessor summary: Types::ExportTaskSummary
|
428
|
+
SENSITIVE: []
|
429
|
+
end
|
430
|
+
|
431
|
+
class ExportTaskError
|
432
|
+
attr_accessor error_data: Types::ExportErrorData
|
433
|
+
attr_accessor error_date_time: ::String
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class ExportTaskSummary
|
438
|
+
attr_accessor applications_count: ::Integer
|
439
|
+
attr_accessor servers_count: ::Integer
|
440
|
+
attr_accessor waves_count: ::Integer
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class FinalizeCutoverRequest
|
445
|
+
attr_accessor account_id: ::String
|
446
|
+
attr_accessor source_server_id: ::String
|
447
|
+
SENSITIVE: []
|
448
|
+
end
|
449
|
+
|
450
|
+
class GetLaunchConfigurationRequest
|
451
|
+
attr_accessor account_id: ::String
|
452
|
+
attr_accessor source_server_id: ::String
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
456
|
+
class GetReplicationConfigurationRequest
|
457
|
+
attr_accessor account_id: ::String
|
458
|
+
attr_accessor source_server_id: ::String
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class IdentificationHints
|
463
|
+
attr_accessor aws_instance_id: ::String
|
464
|
+
attr_accessor fqdn: ::String
|
465
|
+
attr_accessor hostname: ::String
|
466
|
+
attr_accessor vm_path: ::String
|
467
|
+
attr_accessor vm_ware_uuid: ::String
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class ImportErrorData
|
472
|
+
attr_accessor account_id: ::String
|
473
|
+
attr_accessor application_id: ::String
|
474
|
+
attr_accessor ec2_launch_template_id: ::String
|
475
|
+
attr_accessor raw_error: ::String
|
476
|
+
attr_accessor row_number: ::Integer
|
477
|
+
attr_accessor source_server_id: ::String
|
478
|
+
attr_accessor wave_id: ::String
|
479
|
+
SENSITIVE: []
|
480
|
+
end
|
481
|
+
|
482
|
+
class ImportTask
|
483
|
+
attr_accessor creation_date_time: ::String
|
484
|
+
attr_accessor end_date_time: ::String
|
485
|
+
attr_accessor import_id: ::String
|
486
|
+
attr_accessor progress_percentage: ::Float
|
487
|
+
attr_accessor s3_bucket_source: Types::S3BucketSource
|
488
|
+
attr_accessor status: ("PENDING" | "STARTED" | "FAILED" | "SUCCEEDED")
|
489
|
+
attr_accessor summary: Types::ImportTaskSummary
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class ImportTaskError
|
494
|
+
attr_accessor error_data: Types::ImportErrorData
|
495
|
+
attr_accessor error_date_time: ::String
|
496
|
+
attr_accessor error_type: ("VALIDATION_ERROR" | "PROCESSING_ERROR")
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class ImportTaskSummary
|
501
|
+
attr_accessor applications: Types::ImportTaskSummaryApplications
|
502
|
+
attr_accessor servers: Types::ImportTaskSummaryServers
|
503
|
+
attr_accessor waves: Types::ImportTaskSummaryWaves
|
504
|
+
SENSITIVE: []
|
505
|
+
end
|
506
|
+
|
507
|
+
class ImportTaskSummaryApplications
|
508
|
+
attr_accessor created_count: ::Integer
|
509
|
+
attr_accessor modified_count: ::Integer
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class ImportTaskSummaryServers
|
514
|
+
attr_accessor created_count: ::Integer
|
515
|
+
attr_accessor modified_count: ::Integer
|
516
|
+
SENSITIVE: []
|
517
|
+
end
|
518
|
+
|
519
|
+
class ImportTaskSummaryWaves
|
520
|
+
attr_accessor created_count: ::Integer
|
521
|
+
attr_accessor modified_count: ::Integer
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class InitializeServiceRequest < Aws::EmptyStructure
|
526
|
+
end
|
527
|
+
|
528
|
+
class InitializeServiceResponse < Aws::EmptyStructure
|
529
|
+
end
|
530
|
+
|
531
|
+
class InternalServerException
|
532
|
+
attr_accessor message: ::String
|
533
|
+
attr_accessor retry_after_seconds: ::Integer
|
534
|
+
SENSITIVE: []
|
535
|
+
end
|
536
|
+
|
537
|
+
class Job
|
538
|
+
attr_accessor arn: ::String
|
539
|
+
attr_accessor creation_date_time: ::String
|
540
|
+
attr_accessor end_date_time: ::String
|
541
|
+
attr_accessor initiated_by: ("START_TEST" | "START_CUTOVER" | "DIAGNOSTIC" | "TERMINATE")
|
542
|
+
attr_accessor job_id: ::String
|
543
|
+
attr_accessor participating_servers: ::Array[Types::ParticipatingServer]
|
544
|
+
attr_accessor status: ("PENDING" | "STARTED" | "COMPLETED")
|
545
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
546
|
+
attr_accessor type: ("LAUNCH" | "TERMINATE")
|
547
|
+
SENSITIVE: [:tags]
|
548
|
+
end
|
549
|
+
|
550
|
+
class JobLog
|
551
|
+
attr_accessor event: ("JOB_START" | "SERVER_SKIPPED" | "CLEANUP_START" | "CLEANUP_END" | "CLEANUP_FAIL" | "SNAPSHOT_START" | "SNAPSHOT_END" | "SNAPSHOT_FAIL" | "USING_PREVIOUS_SNAPSHOT" | "CONVERSION_START" | "CONVERSION_END" | "CONVERSION_FAIL" | "LAUNCH_START" | "LAUNCH_FAILED" | "JOB_CANCEL" | "JOB_END")
|
552
|
+
attr_accessor event_data: Types::JobLogEventData
|
553
|
+
attr_accessor log_date_time: ::String
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class JobLogEventData
|
558
|
+
attr_accessor conversion_server_id: ::String
|
559
|
+
attr_accessor raw_error: ::String
|
560
|
+
attr_accessor source_server_id: ::String
|
561
|
+
attr_accessor target_instance_id: ::String
|
562
|
+
SENSITIVE: []
|
563
|
+
end
|
564
|
+
|
565
|
+
class JobPostLaunchActionsLaunchStatus
|
566
|
+
attr_accessor execution_id: ::String
|
567
|
+
attr_accessor execution_status: ("IN_PROGRESS" | "SUCCESS" | "FAILED")
|
568
|
+
attr_accessor failure_reason: ::String
|
569
|
+
attr_accessor ssm_document: Types::SsmDocument
|
570
|
+
attr_accessor ssm_document_type: ("AUTOMATION" | "COMMAND")
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class LaunchConfiguration
|
575
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
576
|
+
attr_accessor copy_private_ip: bool
|
577
|
+
attr_accessor copy_tags: bool
|
578
|
+
attr_accessor ec2_launch_template_id: ::String
|
579
|
+
attr_accessor enable_map_auto_tagging: bool
|
580
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
581
|
+
attr_accessor licensing: Types::Licensing
|
582
|
+
attr_accessor map_auto_tagging_mpe_id: ::String
|
583
|
+
attr_accessor name: ::String
|
584
|
+
attr_accessor post_launch_actions: Types::PostLaunchActions
|
585
|
+
attr_accessor source_server_id: ::String
|
586
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC")
|
587
|
+
SENSITIVE: []
|
588
|
+
end
|
589
|
+
|
590
|
+
class LaunchConfigurationTemplate
|
591
|
+
attr_accessor arn: ::String
|
592
|
+
attr_accessor associate_public_ip_address: bool
|
593
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
594
|
+
attr_accessor copy_private_ip: bool
|
595
|
+
attr_accessor copy_tags: bool
|
596
|
+
attr_accessor ec2_launch_template_id: ::String
|
597
|
+
attr_accessor enable_map_auto_tagging: bool
|
598
|
+
attr_accessor large_volume_conf: Types::LaunchTemplateDiskConf
|
599
|
+
attr_accessor launch_configuration_template_id: ::String
|
600
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
601
|
+
attr_accessor licensing: Types::Licensing
|
602
|
+
attr_accessor map_auto_tagging_mpe_id: ::String
|
603
|
+
attr_accessor post_launch_actions: Types::PostLaunchActions
|
604
|
+
attr_accessor small_volume_conf: Types::LaunchTemplateDiskConf
|
605
|
+
attr_accessor small_volume_max_size: ::Integer
|
606
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
607
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC")
|
608
|
+
SENSITIVE: [:tags]
|
609
|
+
end
|
610
|
+
|
611
|
+
class LaunchTemplateDiskConf
|
612
|
+
attr_accessor iops: ::Integer
|
613
|
+
attr_accessor throughput: ::Integer
|
614
|
+
attr_accessor volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class LaunchedInstance
|
619
|
+
attr_accessor ec2_instance_id: ::String
|
620
|
+
attr_accessor first_boot: ("WAITING" | "SUCCEEDED" | "UNKNOWN" | "STOPPED")
|
621
|
+
attr_accessor job_id: ::String
|
622
|
+
SENSITIVE: []
|
623
|
+
end
|
624
|
+
|
625
|
+
class Licensing
|
626
|
+
attr_accessor os_byol: bool
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class LifeCycle
|
631
|
+
attr_accessor added_to_service_date_time: ::String
|
632
|
+
attr_accessor elapsed_replication_duration: ::String
|
633
|
+
attr_accessor first_byte_date_time: ::String
|
634
|
+
attr_accessor last_cutover: Types::LifeCycleLastCutover
|
635
|
+
attr_accessor last_seen_by_service_date_time: ::String
|
636
|
+
attr_accessor last_test: Types::LifeCycleLastTest
|
637
|
+
attr_accessor state: ("STOPPED" | "NOT_READY" | "READY_FOR_TEST" | "TESTING" | "READY_FOR_CUTOVER" | "CUTTING_OVER" | "CUTOVER" | "DISCONNECTED" | "DISCOVERED" | "PENDING_INSTALLATION")
|
638
|
+
SENSITIVE: []
|
639
|
+
end
|
640
|
+
|
641
|
+
class LifeCycleLastCutover
|
642
|
+
attr_accessor finalized: Types::LifeCycleLastCutoverFinalized
|
643
|
+
attr_accessor initiated: Types::LifeCycleLastCutoverInitiated
|
644
|
+
attr_accessor reverted: Types::LifeCycleLastCutoverReverted
|
645
|
+
SENSITIVE: []
|
646
|
+
end
|
647
|
+
|
648
|
+
class LifeCycleLastCutoverFinalized
|
649
|
+
attr_accessor api_call_date_time: ::String
|
650
|
+
SENSITIVE: []
|
651
|
+
end
|
652
|
+
|
653
|
+
class LifeCycleLastCutoverInitiated
|
654
|
+
attr_accessor api_call_date_time: ::String
|
655
|
+
attr_accessor job_id: ::String
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class LifeCycleLastCutoverReverted
|
660
|
+
attr_accessor api_call_date_time: ::String
|
661
|
+
SENSITIVE: []
|
662
|
+
end
|
663
|
+
|
664
|
+
class LifeCycleLastTest
|
665
|
+
attr_accessor finalized: Types::LifeCycleLastTestFinalized
|
666
|
+
attr_accessor initiated: Types::LifeCycleLastTestInitiated
|
667
|
+
attr_accessor reverted: Types::LifeCycleLastTestReverted
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class LifeCycleLastTestFinalized
|
672
|
+
attr_accessor api_call_date_time: ::String
|
673
|
+
SENSITIVE: []
|
674
|
+
end
|
675
|
+
|
676
|
+
class LifeCycleLastTestInitiated
|
677
|
+
attr_accessor api_call_date_time: ::String
|
678
|
+
attr_accessor job_id: ::String
|
679
|
+
SENSITIVE: []
|
680
|
+
end
|
681
|
+
|
682
|
+
class LifeCycleLastTestReverted
|
683
|
+
attr_accessor api_call_date_time: ::String
|
684
|
+
SENSITIVE: []
|
685
|
+
end
|
686
|
+
|
687
|
+
class ListApplicationsRequest
|
688
|
+
attr_accessor account_id: ::String
|
689
|
+
attr_accessor filters: Types::ListApplicationsRequestFilters
|
690
|
+
attr_accessor max_results: ::Integer
|
691
|
+
attr_accessor next_token: ::String
|
692
|
+
SENSITIVE: []
|
693
|
+
end
|
694
|
+
|
695
|
+
class ListApplicationsRequestFilters
|
696
|
+
attr_accessor application_i_ds: ::Array[::String]
|
697
|
+
attr_accessor is_archived: bool
|
698
|
+
attr_accessor wave_i_ds: ::Array[::String]
|
699
|
+
SENSITIVE: []
|
700
|
+
end
|
701
|
+
|
702
|
+
class ListApplicationsResponse
|
703
|
+
attr_accessor items: ::Array[Types::Application]
|
704
|
+
attr_accessor next_token: ::String
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class ListConnectorsRequest
|
709
|
+
attr_accessor filters: Types::ListConnectorsRequestFilters
|
710
|
+
attr_accessor max_results: ::Integer
|
711
|
+
attr_accessor next_token: ::String
|
712
|
+
SENSITIVE: []
|
713
|
+
end
|
714
|
+
|
715
|
+
class ListConnectorsRequestFilters
|
716
|
+
attr_accessor connector_i_ds: ::Array[::String]
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class ListConnectorsResponse
|
721
|
+
attr_accessor items: ::Array[Types::Connector]
|
722
|
+
attr_accessor next_token: ::String
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class ListExportErrorsRequest
|
727
|
+
attr_accessor export_id: ::String
|
728
|
+
attr_accessor max_results: ::Integer
|
729
|
+
attr_accessor next_token: ::String
|
730
|
+
SENSITIVE: []
|
731
|
+
end
|
732
|
+
|
733
|
+
class ListExportErrorsResponse
|
734
|
+
attr_accessor items: ::Array[Types::ExportTaskError]
|
735
|
+
attr_accessor next_token: ::String
|
736
|
+
SENSITIVE: []
|
737
|
+
end
|
738
|
+
|
739
|
+
class ListExportsRequest
|
740
|
+
attr_accessor filters: Types::ListExportsRequestFilters
|
741
|
+
attr_accessor max_results: ::Integer
|
742
|
+
attr_accessor next_token: ::String
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class ListExportsRequestFilters
|
747
|
+
attr_accessor export_i_ds: ::Array[::String]
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class ListExportsResponse
|
752
|
+
attr_accessor items: ::Array[Types::ExportTask]
|
753
|
+
attr_accessor next_token: ::String
|
754
|
+
SENSITIVE: []
|
755
|
+
end
|
756
|
+
|
757
|
+
class ListImportErrorsRequest
|
758
|
+
attr_accessor import_id: ::String
|
759
|
+
attr_accessor max_results: ::Integer
|
760
|
+
attr_accessor next_token: ::String
|
761
|
+
SENSITIVE: []
|
762
|
+
end
|
763
|
+
|
764
|
+
class ListImportErrorsResponse
|
765
|
+
attr_accessor items: ::Array[Types::ImportTaskError]
|
766
|
+
attr_accessor next_token: ::String
|
767
|
+
SENSITIVE: []
|
768
|
+
end
|
769
|
+
|
770
|
+
class ListImportsRequest
|
771
|
+
attr_accessor filters: Types::ListImportsRequestFilters
|
772
|
+
attr_accessor max_results: ::Integer
|
773
|
+
attr_accessor next_token: ::String
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class ListImportsRequestFilters
|
778
|
+
attr_accessor import_i_ds: ::Array[::String]
|
779
|
+
SENSITIVE: []
|
780
|
+
end
|
781
|
+
|
782
|
+
class ListImportsResponse
|
783
|
+
attr_accessor items: ::Array[Types::ImportTask]
|
784
|
+
attr_accessor next_token: ::String
|
785
|
+
SENSITIVE: []
|
786
|
+
end
|
787
|
+
|
788
|
+
class ListManagedAccountsRequest
|
789
|
+
attr_accessor max_results: ::Integer
|
790
|
+
attr_accessor next_token: ::String
|
791
|
+
SENSITIVE: []
|
792
|
+
end
|
793
|
+
|
794
|
+
class ListManagedAccountsResponse
|
795
|
+
attr_accessor items: ::Array[Types::ManagedAccount]
|
796
|
+
attr_accessor next_token: ::String
|
797
|
+
SENSITIVE: []
|
798
|
+
end
|
799
|
+
|
800
|
+
class ListSourceServerActionsRequest
|
801
|
+
attr_accessor account_id: ::String
|
802
|
+
attr_accessor filters: Types::SourceServerActionsRequestFilters
|
803
|
+
attr_accessor max_results: ::Integer
|
804
|
+
attr_accessor next_token: ::String
|
805
|
+
attr_accessor source_server_id: ::String
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class ListSourceServerActionsResponse
|
810
|
+
attr_accessor items: ::Array[Types::SourceServerActionDocument]
|
811
|
+
attr_accessor next_token: ::String
|
812
|
+
SENSITIVE: []
|
813
|
+
end
|
814
|
+
|
815
|
+
class ListTagsForResourceRequest
|
816
|
+
attr_accessor resource_arn: ::String
|
817
|
+
SENSITIVE: []
|
818
|
+
end
|
819
|
+
|
820
|
+
class ListTagsForResourceResponse
|
821
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
822
|
+
SENSITIVE: [:tags]
|
823
|
+
end
|
824
|
+
|
825
|
+
class ListTemplateActionsRequest
|
826
|
+
attr_accessor filters: Types::TemplateActionsRequestFilters
|
827
|
+
attr_accessor launch_configuration_template_id: ::String
|
828
|
+
attr_accessor max_results: ::Integer
|
829
|
+
attr_accessor next_token: ::String
|
830
|
+
SENSITIVE: []
|
831
|
+
end
|
832
|
+
|
833
|
+
class ListTemplateActionsResponse
|
834
|
+
attr_accessor items: ::Array[Types::TemplateActionDocument]
|
835
|
+
attr_accessor next_token: ::String
|
836
|
+
SENSITIVE: []
|
837
|
+
end
|
838
|
+
|
839
|
+
class ListWavesRequest
|
840
|
+
attr_accessor account_id: ::String
|
841
|
+
attr_accessor filters: Types::ListWavesRequestFilters
|
842
|
+
attr_accessor max_results: ::Integer
|
843
|
+
attr_accessor next_token: ::String
|
844
|
+
SENSITIVE: []
|
845
|
+
end
|
846
|
+
|
847
|
+
class ListWavesRequestFilters
|
848
|
+
attr_accessor is_archived: bool
|
849
|
+
attr_accessor wave_i_ds: ::Array[::String]
|
850
|
+
SENSITIVE: []
|
851
|
+
end
|
852
|
+
|
853
|
+
class ListWavesResponse
|
854
|
+
attr_accessor items: ::Array[Types::Wave]
|
855
|
+
attr_accessor next_token: ::String
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
859
|
+
class ManagedAccount
|
860
|
+
attr_accessor account_id: ::String
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class MarkAsArchivedRequest
|
865
|
+
attr_accessor account_id: ::String
|
866
|
+
attr_accessor source_server_id: ::String
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class NetworkInterface
|
871
|
+
attr_accessor ips: ::Array[::String]
|
872
|
+
attr_accessor is_primary: bool
|
873
|
+
attr_accessor mac_address: ::String
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
877
|
+
class OS
|
878
|
+
attr_accessor full_string: ::String
|
879
|
+
SENSITIVE: []
|
880
|
+
end
|
881
|
+
|
882
|
+
class ParticipatingServer
|
883
|
+
attr_accessor launch_status: ("PENDING" | "IN_PROGRESS" | "LAUNCHED" | "FAILED" | "TERMINATED")
|
884
|
+
attr_accessor launched_ec2_instance_id: ::String
|
885
|
+
attr_accessor post_launch_actions_status: Types::PostLaunchActionsStatus
|
886
|
+
attr_accessor source_server_id: ::String
|
887
|
+
SENSITIVE: []
|
888
|
+
end
|
889
|
+
|
890
|
+
class PauseReplicationRequest
|
891
|
+
attr_accessor account_id: ::String
|
892
|
+
attr_accessor source_server_id: ::String
|
893
|
+
SENSITIVE: []
|
894
|
+
end
|
895
|
+
|
896
|
+
class PostLaunchActions
|
897
|
+
attr_accessor cloud_watch_log_group_name: ::String
|
898
|
+
attr_accessor deployment: ("TEST_AND_CUTOVER" | "CUTOVER_ONLY" | "TEST_ONLY")
|
899
|
+
attr_accessor s3_log_bucket: ::String
|
900
|
+
attr_accessor s3_output_key_prefix: ::String
|
901
|
+
attr_accessor ssm_documents: ::Array[Types::SsmDocument]
|
902
|
+
SENSITIVE: []
|
903
|
+
end
|
904
|
+
|
905
|
+
class PostLaunchActionsStatus
|
906
|
+
attr_accessor post_launch_actions_launch_status_list: ::Array[Types::JobPostLaunchActionsLaunchStatus]
|
907
|
+
attr_accessor ssm_agent_discovery_datetime: ::String
|
908
|
+
SENSITIVE: []
|
909
|
+
end
|
910
|
+
|
911
|
+
class PutSourceServerActionRequest
|
912
|
+
attr_accessor account_id: ::String
|
913
|
+
attr_accessor action_id: ::String
|
914
|
+
attr_accessor action_name: ::String
|
915
|
+
attr_accessor active: bool
|
916
|
+
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
917
|
+
attr_accessor description: ::String
|
918
|
+
attr_accessor document_identifier: ::String
|
919
|
+
attr_accessor document_version: ::String
|
920
|
+
attr_accessor external_parameters: ::Hash[::String, Types::SsmExternalParameter]
|
921
|
+
attr_accessor must_succeed_for_cutover: bool
|
922
|
+
attr_accessor order: ::Integer
|
923
|
+
attr_accessor parameters: ::Hash[::String, ::Array[Types::SsmParameterStoreParameter]]
|
924
|
+
attr_accessor source_server_id: ::String
|
925
|
+
attr_accessor timeout_seconds: ::Integer
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
|
929
|
+
class PutTemplateActionRequest
|
930
|
+
attr_accessor action_id: ::String
|
931
|
+
attr_accessor action_name: ::String
|
932
|
+
attr_accessor active: bool
|
933
|
+
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
934
|
+
attr_accessor description: ::String
|
935
|
+
attr_accessor document_identifier: ::String
|
936
|
+
attr_accessor document_version: ::String
|
937
|
+
attr_accessor external_parameters: ::Hash[::String, Types::SsmExternalParameter]
|
938
|
+
attr_accessor launch_configuration_template_id: ::String
|
939
|
+
attr_accessor must_succeed_for_cutover: bool
|
940
|
+
attr_accessor operating_system: ::String
|
941
|
+
attr_accessor order: ::Integer
|
942
|
+
attr_accessor parameters: ::Hash[::String, ::Array[Types::SsmParameterStoreParameter]]
|
943
|
+
attr_accessor timeout_seconds: ::Integer
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class RemoveSourceServerActionRequest
|
948
|
+
attr_accessor account_id: ::String
|
949
|
+
attr_accessor action_id: ::String
|
950
|
+
attr_accessor source_server_id: ::String
|
951
|
+
SENSITIVE: []
|
952
|
+
end
|
953
|
+
|
954
|
+
class RemoveSourceServerActionResponse < Aws::EmptyStructure
|
955
|
+
end
|
956
|
+
|
957
|
+
class RemoveTemplateActionRequest
|
958
|
+
attr_accessor action_id: ::String
|
959
|
+
attr_accessor launch_configuration_template_id: ::String
|
960
|
+
SENSITIVE: []
|
961
|
+
end
|
962
|
+
|
963
|
+
class RemoveTemplateActionResponse < Aws::EmptyStructure
|
964
|
+
end
|
965
|
+
|
966
|
+
class ReplicationConfiguration
|
967
|
+
attr_accessor associate_default_security_group: bool
|
968
|
+
attr_accessor bandwidth_throttling: ::Integer
|
969
|
+
attr_accessor create_public_ip: bool
|
970
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
971
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "ST1" | "GP3")
|
972
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM")
|
973
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
974
|
+
attr_accessor name: ::String
|
975
|
+
attr_accessor replicated_disks: ::Array[Types::ReplicationConfigurationReplicatedDisk]
|
976
|
+
attr_accessor replication_server_instance_type: ::String
|
977
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
978
|
+
attr_accessor source_server_id: ::String
|
979
|
+
attr_accessor staging_area_subnet_id: ::String
|
980
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
981
|
+
attr_accessor use_dedicated_replication_server: bool
|
982
|
+
attr_accessor use_fips_endpoint: bool
|
983
|
+
SENSITIVE: [:staging_area_tags]
|
984
|
+
end
|
985
|
+
|
986
|
+
class ReplicationConfigurationReplicatedDisk
|
987
|
+
attr_accessor device_name: ::String
|
988
|
+
attr_accessor iops: ::Integer
|
989
|
+
attr_accessor is_boot_disk: bool
|
990
|
+
attr_accessor staging_disk_type: ("AUTO" | "GP2" | "IO1" | "SC1" | "ST1" | "STANDARD" | "GP3" | "IO2")
|
991
|
+
attr_accessor throughput: ::Integer
|
992
|
+
SENSITIVE: []
|
993
|
+
end
|
994
|
+
|
995
|
+
class ReplicationConfigurationTemplate
|
996
|
+
attr_accessor arn: ::String
|
997
|
+
attr_accessor associate_default_security_group: bool
|
998
|
+
attr_accessor bandwidth_throttling: ::Integer
|
999
|
+
attr_accessor create_public_ip: bool
|
1000
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
1001
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "ST1" | "GP3")
|
1002
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM")
|
1003
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
1004
|
+
attr_accessor replication_configuration_template_id: ::String
|
1005
|
+
attr_accessor replication_server_instance_type: ::String
|
1006
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
1007
|
+
attr_accessor staging_area_subnet_id: ::String
|
1008
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
1009
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1010
|
+
attr_accessor use_dedicated_replication_server: bool
|
1011
|
+
attr_accessor use_fips_endpoint: bool
|
1012
|
+
SENSITIVE: [:staging_area_tags, :tags]
|
1013
|
+
end
|
1014
|
+
|
1015
|
+
class ResourceNotFoundException
|
1016
|
+
attr_accessor code: ::String
|
1017
|
+
attr_accessor message: ::String
|
1018
|
+
attr_accessor resource_id: ::String
|
1019
|
+
attr_accessor resource_type: ::String
|
1020
|
+
SENSITIVE: []
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class ResumeReplicationRequest
|
1024
|
+
attr_accessor account_id: ::String
|
1025
|
+
attr_accessor source_server_id: ::String
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class RetryDataReplicationRequest
|
1030
|
+
attr_accessor account_id: ::String
|
1031
|
+
attr_accessor source_server_id: ::String
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class S3BucketSource
|
1036
|
+
attr_accessor s3_bucket: ::String
|
1037
|
+
attr_accessor s3_bucket_owner: ::String
|
1038
|
+
attr_accessor s3_key: ::String
|
1039
|
+
SENSITIVE: []
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
class ServiceQuotaExceededException
|
1043
|
+
attr_accessor code: ::String
|
1044
|
+
attr_accessor message: ::String
|
1045
|
+
attr_accessor quota_code: ::String
|
1046
|
+
attr_accessor quota_value: ::Integer
|
1047
|
+
attr_accessor resource_id: ::String
|
1048
|
+
attr_accessor resource_type: ::String
|
1049
|
+
attr_accessor service_code: ::String
|
1050
|
+
SENSITIVE: []
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
class SourceProperties
|
1054
|
+
attr_accessor cpus: ::Array[Types::CPU]
|
1055
|
+
attr_accessor disks: ::Array[Types::Disk]
|
1056
|
+
attr_accessor identification_hints: Types::IdentificationHints
|
1057
|
+
attr_accessor last_updated_date_time: ::String
|
1058
|
+
attr_accessor network_interfaces: ::Array[Types::NetworkInterface]
|
1059
|
+
attr_accessor os: Types::OS
|
1060
|
+
attr_accessor ram_bytes: ::Integer
|
1061
|
+
attr_accessor recommended_instance_type: ::String
|
1062
|
+
SENSITIVE: []
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
class SourceServer
|
1066
|
+
attr_accessor application_id: ::String
|
1067
|
+
attr_accessor arn: ::String
|
1068
|
+
attr_accessor connector_action: Types::SourceServerConnectorAction
|
1069
|
+
attr_accessor data_replication_info: Types::DataReplicationInfo
|
1070
|
+
attr_accessor fqdn_for_action_framework: ::String
|
1071
|
+
attr_accessor is_archived: bool
|
1072
|
+
attr_accessor launched_instance: Types::LaunchedInstance
|
1073
|
+
attr_accessor life_cycle: Types::LifeCycle
|
1074
|
+
attr_accessor replication_type: ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
|
1075
|
+
attr_accessor source_properties: Types::SourceProperties
|
1076
|
+
attr_accessor source_server_id: ::String
|
1077
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1078
|
+
attr_accessor user_provided_id: ::String
|
1079
|
+
attr_accessor vcenter_client_id: ::String
|
1080
|
+
SENSITIVE: [:tags]
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
class SourceServerActionDocument
|
1084
|
+
attr_accessor action_id: ::String
|
1085
|
+
attr_accessor action_name: ::String
|
1086
|
+
attr_accessor active: bool
|
1087
|
+
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
1088
|
+
attr_accessor description: ::String
|
1089
|
+
attr_accessor document_identifier: ::String
|
1090
|
+
attr_accessor document_version: ::String
|
1091
|
+
attr_accessor external_parameters: ::Hash[::String, Types::SsmExternalParameter]
|
1092
|
+
attr_accessor must_succeed_for_cutover: bool
|
1093
|
+
attr_accessor order: ::Integer
|
1094
|
+
attr_accessor parameters: ::Hash[::String, ::Array[Types::SsmParameterStoreParameter]]
|
1095
|
+
attr_accessor timeout_seconds: ::Integer
|
1096
|
+
SENSITIVE: []
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
class SourceServerActionsRequestFilters
|
1100
|
+
attr_accessor action_i_ds: ::Array[::String]
|
1101
|
+
SENSITIVE: []
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class SourceServerConnectorAction
|
1105
|
+
attr_accessor connector_arn: ::String
|
1106
|
+
attr_accessor credentials_secret_arn: ::String
|
1107
|
+
SENSITIVE: []
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class SsmDocument
|
1111
|
+
attr_accessor action_name: ::String
|
1112
|
+
attr_accessor external_parameters: ::Hash[::String, Types::SsmExternalParameter]
|
1113
|
+
attr_accessor must_succeed_for_cutover: bool
|
1114
|
+
attr_accessor parameters: ::Hash[::String, ::Array[Types::SsmParameterStoreParameter]]
|
1115
|
+
attr_accessor ssm_document_name: ::String
|
1116
|
+
attr_accessor timeout_seconds: ::Integer
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class SsmExternalParameter
|
1121
|
+
attr_accessor dynamic_path: ::String
|
1122
|
+
attr_accessor unknown: untyped
|
1123
|
+
SENSITIVE: []
|
1124
|
+
|
1125
|
+
class DynamicPath < SsmExternalParameter
|
1126
|
+
end
|
1127
|
+
class Unknown < SsmExternalParameter
|
1128
|
+
end
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
class SsmParameterStoreParameter
|
1132
|
+
attr_accessor parameter_name: ::String
|
1133
|
+
attr_accessor parameter_type: ("STRING")
|
1134
|
+
SENSITIVE: []
|
1135
|
+
end
|
1136
|
+
|
1137
|
+
class StartCutoverRequest
|
1138
|
+
attr_accessor account_id: ::String
|
1139
|
+
attr_accessor source_server_i_ds: ::Array[::String]
|
1140
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1141
|
+
SENSITIVE: [:tags]
|
1142
|
+
end
|
1143
|
+
|
1144
|
+
class StartCutoverResponse
|
1145
|
+
attr_accessor job: Types::Job
|
1146
|
+
SENSITIVE: []
|
1147
|
+
end
|
1148
|
+
|
1149
|
+
class StartExportRequest
|
1150
|
+
attr_accessor s3_bucket: ::String
|
1151
|
+
attr_accessor s3_bucket_owner: ::String
|
1152
|
+
attr_accessor s3_key: ::String
|
1153
|
+
SENSITIVE: []
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class StartExportResponse
|
1157
|
+
attr_accessor export_task: Types::ExportTask
|
1158
|
+
SENSITIVE: []
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class StartImportRequest
|
1162
|
+
attr_accessor client_token: ::String
|
1163
|
+
attr_accessor s3_bucket_source: Types::S3BucketSource
|
1164
|
+
SENSITIVE: []
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
class StartImportResponse
|
1168
|
+
attr_accessor import_task: Types::ImportTask
|
1169
|
+
SENSITIVE: []
|
1170
|
+
end
|
1171
|
+
|
1172
|
+
class StartReplicationRequest
|
1173
|
+
attr_accessor account_id: ::String
|
1174
|
+
attr_accessor source_server_id: ::String
|
1175
|
+
SENSITIVE: []
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
class StartTestRequest
|
1179
|
+
attr_accessor account_id: ::String
|
1180
|
+
attr_accessor source_server_i_ds: ::Array[::String]
|
1181
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1182
|
+
SENSITIVE: [:tags]
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
class StartTestResponse
|
1186
|
+
attr_accessor job: Types::Job
|
1187
|
+
SENSITIVE: []
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
class StopReplicationRequest
|
1191
|
+
attr_accessor account_id: ::String
|
1192
|
+
attr_accessor source_server_id: ::String
|
1193
|
+
SENSITIVE: []
|
1194
|
+
end
|
1195
|
+
|
1196
|
+
class TagResourceRequest
|
1197
|
+
attr_accessor resource_arn: ::String
|
1198
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1199
|
+
SENSITIVE: [:tags]
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
class TemplateActionDocument
|
1203
|
+
attr_accessor action_id: ::String
|
1204
|
+
attr_accessor action_name: ::String
|
1205
|
+
attr_accessor active: bool
|
1206
|
+
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
1207
|
+
attr_accessor description: ::String
|
1208
|
+
attr_accessor document_identifier: ::String
|
1209
|
+
attr_accessor document_version: ::String
|
1210
|
+
attr_accessor external_parameters: ::Hash[::String, Types::SsmExternalParameter]
|
1211
|
+
attr_accessor must_succeed_for_cutover: bool
|
1212
|
+
attr_accessor operating_system: ::String
|
1213
|
+
attr_accessor order: ::Integer
|
1214
|
+
attr_accessor parameters: ::Hash[::String, ::Array[Types::SsmParameterStoreParameter]]
|
1215
|
+
attr_accessor timeout_seconds: ::Integer
|
1216
|
+
SENSITIVE: []
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
class TemplateActionsRequestFilters
|
1220
|
+
attr_accessor action_i_ds: ::Array[::String]
|
1221
|
+
SENSITIVE: []
|
1222
|
+
end
|
1223
|
+
|
1224
|
+
class TerminateTargetInstancesRequest
|
1225
|
+
attr_accessor account_id: ::String
|
1226
|
+
attr_accessor source_server_i_ds: ::Array[::String]
|
1227
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1228
|
+
SENSITIVE: [:tags]
|
1229
|
+
end
|
1230
|
+
|
1231
|
+
class TerminateTargetInstancesResponse
|
1232
|
+
attr_accessor job: Types::Job
|
1233
|
+
SENSITIVE: []
|
1234
|
+
end
|
1235
|
+
|
1236
|
+
class ThrottlingException
|
1237
|
+
attr_accessor message: ::String
|
1238
|
+
attr_accessor quota_code: ::String
|
1239
|
+
attr_accessor retry_after_seconds: ::String
|
1240
|
+
attr_accessor service_code: ::String
|
1241
|
+
SENSITIVE: []
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class UnarchiveApplicationRequest
|
1245
|
+
attr_accessor account_id: ::String
|
1246
|
+
attr_accessor application_id: ::String
|
1247
|
+
SENSITIVE: []
|
1248
|
+
end
|
1249
|
+
|
1250
|
+
class UnarchiveWaveRequest
|
1251
|
+
attr_accessor account_id: ::String
|
1252
|
+
attr_accessor wave_id: ::String
|
1253
|
+
SENSITIVE: []
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
class UninitializedAccountException
|
1257
|
+
attr_accessor code: ::String
|
1258
|
+
attr_accessor message: ::String
|
1259
|
+
SENSITIVE: []
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
class UntagResourceRequest
|
1263
|
+
attr_accessor resource_arn: ::String
|
1264
|
+
attr_accessor tag_keys: ::Array[::String]
|
1265
|
+
SENSITIVE: [:tag_keys]
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
class UpdateApplicationRequest
|
1269
|
+
attr_accessor account_id: ::String
|
1270
|
+
attr_accessor application_id: ::String
|
1271
|
+
attr_accessor description: ::String
|
1272
|
+
attr_accessor name: ::String
|
1273
|
+
SENSITIVE: []
|
1274
|
+
end
|
1275
|
+
|
1276
|
+
class UpdateConnectorRequest
|
1277
|
+
attr_accessor connector_id: ::String
|
1278
|
+
attr_accessor name: ::String
|
1279
|
+
attr_accessor ssm_command_config: Types::ConnectorSsmCommandConfig
|
1280
|
+
SENSITIVE: []
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
class UpdateLaunchConfigurationRequest
|
1284
|
+
attr_accessor account_id: ::String
|
1285
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
1286
|
+
attr_accessor copy_private_ip: bool
|
1287
|
+
attr_accessor copy_tags: bool
|
1288
|
+
attr_accessor enable_map_auto_tagging: bool
|
1289
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
1290
|
+
attr_accessor licensing: Types::Licensing
|
1291
|
+
attr_accessor map_auto_tagging_mpe_id: ::String
|
1292
|
+
attr_accessor name: ::String
|
1293
|
+
attr_accessor post_launch_actions: Types::PostLaunchActions
|
1294
|
+
attr_accessor source_server_id: ::String
|
1295
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC")
|
1296
|
+
SENSITIVE: []
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
class UpdateLaunchConfigurationTemplateRequest
|
1300
|
+
attr_accessor associate_public_ip_address: bool
|
1301
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
1302
|
+
attr_accessor copy_private_ip: bool
|
1303
|
+
attr_accessor copy_tags: bool
|
1304
|
+
attr_accessor enable_map_auto_tagging: bool
|
1305
|
+
attr_accessor large_volume_conf: Types::LaunchTemplateDiskConf
|
1306
|
+
attr_accessor launch_configuration_template_id: ::String
|
1307
|
+
attr_accessor launch_disposition: ("STOPPED" | "STARTED")
|
1308
|
+
attr_accessor licensing: Types::Licensing
|
1309
|
+
attr_accessor map_auto_tagging_mpe_id: ::String
|
1310
|
+
attr_accessor post_launch_actions: Types::PostLaunchActions
|
1311
|
+
attr_accessor small_volume_conf: Types::LaunchTemplateDiskConf
|
1312
|
+
attr_accessor small_volume_max_size: ::Integer
|
1313
|
+
attr_accessor target_instance_type_right_sizing_method: ("NONE" | "BASIC")
|
1314
|
+
SENSITIVE: []
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
class UpdateReplicationConfigurationRequest
|
1318
|
+
attr_accessor account_id: ::String
|
1319
|
+
attr_accessor associate_default_security_group: bool
|
1320
|
+
attr_accessor bandwidth_throttling: ::Integer
|
1321
|
+
attr_accessor create_public_ip: bool
|
1322
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
1323
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "ST1" | "GP3")
|
1324
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM")
|
1325
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
1326
|
+
attr_accessor name: ::String
|
1327
|
+
attr_accessor replicated_disks: ::Array[Types::ReplicationConfigurationReplicatedDisk]
|
1328
|
+
attr_accessor replication_server_instance_type: ::String
|
1329
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
1330
|
+
attr_accessor source_server_id: ::String
|
1331
|
+
attr_accessor staging_area_subnet_id: ::String
|
1332
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
1333
|
+
attr_accessor use_dedicated_replication_server: bool
|
1334
|
+
attr_accessor use_fips_endpoint: bool
|
1335
|
+
SENSITIVE: [:staging_area_tags]
|
1336
|
+
end
|
1337
|
+
|
1338
|
+
class UpdateReplicationConfigurationTemplateRequest
|
1339
|
+
attr_accessor arn: ::String
|
1340
|
+
attr_accessor associate_default_security_group: bool
|
1341
|
+
attr_accessor bandwidth_throttling: ::Integer
|
1342
|
+
attr_accessor create_public_ip: bool
|
1343
|
+
attr_accessor data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP")
|
1344
|
+
attr_accessor default_large_staging_disk_type: ("GP2" | "ST1" | "GP3")
|
1345
|
+
attr_accessor ebs_encryption: ("DEFAULT" | "CUSTOM")
|
1346
|
+
attr_accessor ebs_encryption_key_arn: ::String
|
1347
|
+
attr_accessor replication_configuration_template_id: ::String
|
1348
|
+
attr_accessor replication_server_instance_type: ::String
|
1349
|
+
attr_accessor replication_servers_security_groups_i_ds: ::Array[::String]
|
1350
|
+
attr_accessor staging_area_subnet_id: ::String
|
1351
|
+
attr_accessor staging_area_tags: ::Hash[::String, ::String]
|
1352
|
+
attr_accessor use_dedicated_replication_server: bool
|
1353
|
+
attr_accessor use_fips_endpoint: bool
|
1354
|
+
SENSITIVE: [:staging_area_tags]
|
1355
|
+
end
|
1356
|
+
|
1357
|
+
class UpdateSourceServerReplicationTypeRequest
|
1358
|
+
attr_accessor account_id: ::String
|
1359
|
+
attr_accessor replication_type: ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
|
1360
|
+
attr_accessor source_server_id: ::String
|
1361
|
+
SENSITIVE: []
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
class UpdateSourceServerRequest
|
1365
|
+
attr_accessor account_id: ::String
|
1366
|
+
attr_accessor connector_action: Types::SourceServerConnectorAction
|
1367
|
+
attr_accessor source_server_id: ::String
|
1368
|
+
SENSITIVE: []
|
1369
|
+
end
|
1370
|
+
|
1371
|
+
class UpdateWaveRequest
|
1372
|
+
attr_accessor account_id: ::String
|
1373
|
+
attr_accessor description: ::String
|
1374
|
+
attr_accessor name: ::String
|
1375
|
+
attr_accessor wave_id: ::String
|
1376
|
+
SENSITIVE: []
|
1377
|
+
end
|
1378
|
+
|
1379
|
+
class ValidationException
|
1380
|
+
attr_accessor code: ::String
|
1381
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
1382
|
+
attr_accessor message: ::String
|
1383
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
1384
|
+
SENSITIVE: []
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
class ValidationExceptionField
|
1388
|
+
attr_accessor message: ::String
|
1389
|
+
attr_accessor name: ::String
|
1390
|
+
SENSITIVE: []
|
1391
|
+
end
|
1392
|
+
|
1393
|
+
class VcenterClient
|
1394
|
+
attr_accessor arn: ::String
|
1395
|
+
attr_accessor datacenter_name: ::String
|
1396
|
+
attr_accessor hostname: ::String
|
1397
|
+
attr_accessor last_seen_datetime: ::String
|
1398
|
+
attr_accessor source_server_tags: ::Hash[::String, ::String]
|
1399
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1400
|
+
attr_accessor vcenter_client_id: ::String
|
1401
|
+
attr_accessor vcenter_uuid: ::String
|
1402
|
+
SENSITIVE: [:source_server_tags, :tags]
|
1403
|
+
end
|
1404
|
+
|
1405
|
+
class Wave
|
1406
|
+
attr_accessor arn: ::String
|
1407
|
+
attr_accessor creation_date_time: ::String
|
1408
|
+
attr_accessor description: ::String
|
1409
|
+
attr_accessor is_archived: bool
|
1410
|
+
attr_accessor last_modified_date_time: ::String
|
1411
|
+
attr_accessor name: ::String
|
1412
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1413
|
+
attr_accessor wave_aggregated_status: Types::WaveAggregatedStatus
|
1414
|
+
attr_accessor wave_id: ::String
|
1415
|
+
SENSITIVE: [:tags]
|
1416
|
+
end
|
1417
|
+
|
1418
|
+
class WaveAggregatedStatus
|
1419
|
+
attr_accessor health_status: ("HEALTHY" | "LAGGING" | "ERROR")
|
1420
|
+
attr_accessor last_update_date_time: ::String
|
1421
|
+
attr_accessor progress_status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETED")
|
1422
|
+
attr_accessor replication_started_date_time: ::String
|
1423
|
+
attr_accessor total_applications: ::Integer
|
1424
|
+
SENSITIVE: []
|
1425
|
+
end
|
1426
|
+
end
|
1427
|
+
end
|