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