aws-sdk-mgn 1.29.0 → 1.31.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,1484 @@
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
9
+ module Mgn
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _ArchiveApplicationResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::Application]
77
+ def application_aggregated_status: () -> Types::ApplicationAggregatedStatus
78
+ def application_id: () -> ::String
79
+ def arn: () -> ::String
80
+ def creation_date_time: () -> ::String
81
+ def description: () -> ::String
82
+ def is_archived: () -> bool
83
+ def last_modified_date_time: () -> ::String
84
+ def name: () -> ::String
85
+ def tags: () -> ::Hash[::String, ::String]
86
+ def wave_id: () -> ::String
87
+ end
88
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#archive_application-instance_method
89
+ def archive_application: (
90
+ ?account_id: ::String,
91
+ application_id: ::String
92
+ ) -> _ArchiveApplicationResponseSuccess
93
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ArchiveApplicationResponseSuccess
94
+
95
+ interface _ArchiveWaveResponseSuccess
96
+ include ::Seahorse::Client::_ResponseSuccess[Types::Wave]
97
+ def arn: () -> ::String
98
+ def creation_date_time: () -> ::String
99
+ def description: () -> ::String
100
+ def is_archived: () -> bool
101
+ def last_modified_date_time: () -> ::String
102
+ def name: () -> ::String
103
+ def tags: () -> ::Hash[::String, ::String]
104
+ def wave_aggregated_status: () -> Types::WaveAggregatedStatus
105
+ def wave_id: () -> ::String
106
+ end
107
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#archive_wave-instance_method
108
+ def archive_wave: (
109
+ ?account_id: ::String,
110
+ wave_id: ::String
111
+ ) -> _ArchiveWaveResponseSuccess
112
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ArchiveWaveResponseSuccess
113
+
114
+ interface _AssociateApplicationsResponseSuccess
115
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateApplicationsResponse]
116
+ end
117
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#associate_applications-instance_method
118
+ def associate_applications: (
119
+ ?account_id: ::String,
120
+ application_i_ds: Array[::String],
121
+ wave_id: ::String
122
+ ) -> _AssociateApplicationsResponseSuccess
123
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateApplicationsResponseSuccess
124
+
125
+ interface _AssociateSourceServersResponseSuccess
126
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateSourceServersResponse]
127
+ end
128
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#associate_source_servers-instance_method
129
+ def associate_source_servers: (
130
+ ?account_id: ::String,
131
+ application_id: ::String,
132
+ source_server_i_ds: Array[::String]
133
+ ) -> _AssociateSourceServersResponseSuccess
134
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateSourceServersResponseSuccess
135
+
136
+ interface _ChangeServerLifeCycleStateResponseSuccess
137
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
138
+ def application_id: () -> ::String
139
+ def arn: () -> ::String
140
+ def connector_action: () -> Types::SourceServerConnectorAction
141
+ def data_replication_info: () -> Types::DataReplicationInfo
142
+ def fqdn_for_action_framework: () -> ::String
143
+ def is_archived: () -> bool
144
+ def launched_instance: () -> Types::LaunchedInstance
145
+ def life_cycle: () -> Types::LifeCycle
146
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
147
+ def source_properties: () -> Types::SourceProperties
148
+ def source_server_id: () -> ::String
149
+ def tags: () -> ::Hash[::String, ::String]
150
+ def user_provided_id: () -> ::String
151
+ def vcenter_client_id: () -> ::String
152
+ end
153
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#change_server_life_cycle_state-instance_method
154
+ def change_server_life_cycle_state: (
155
+ ?account_id: ::String,
156
+ life_cycle: {
157
+ state: ("READY_FOR_TEST" | "READY_FOR_CUTOVER" | "CUTOVER")
158
+ },
159
+ source_server_id: ::String
160
+ ) -> _ChangeServerLifeCycleStateResponseSuccess
161
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ChangeServerLifeCycleStateResponseSuccess
162
+
163
+ interface _CreateApplicationResponseSuccess
164
+ include ::Seahorse::Client::_ResponseSuccess[Types::Application]
165
+ def application_aggregated_status: () -> Types::ApplicationAggregatedStatus
166
+ def application_id: () -> ::String
167
+ def arn: () -> ::String
168
+ def creation_date_time: () -> ::String
169
+ def description: () -> ::String
170
+ def is_archived: () -> bool
171
+ def last_modified_date_time: () -> ::String
172
+ def name: () -> ::String
173
+ def tags: () -> ::Hash[::String, ::String]
174
+ def wave_id: () -> ::String
175
+ end
176
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#create_application-instance_method
177
+ def create_application: (
178
+ ?account_id: ::String,
179
+ ?description: ::String,
180
+ name: ::String,
181
+ ?tags: Hash[::String, ::String]
182
+ ) -> _CreateApplicationResponseSuccess
183
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
184
+
185
+ interface _CreateConnectorResponseSuccess
186
+ include ::Seahorse::Client::_ResponseSuccess[Types::Connector]
187
+ def arn: () -> ::String
188
+ def connector_id: () -> ::String
189
+ def name: () -> ::String
190
+ def ssm_command_config: () -> Types::ConnectorSsmCommandConfig
191
+ def ssm_instance_id: () -> ::String
192
+ def tags: () -> ::Hash[::String, ::String]
193
+ end
194
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#create_connector-instance_method
195
+ def create_connector: (
196
+ name: ::String,
197
+ ?ssm_command_config: {
198
+ cloud_watch_log_group_name: ::String?,
199
+ cloud_watch_output_enabled: bool,
200
+ output_s3_bucket_name: ::String?,
201
+ s3_output_enabled: bool
202
+ },
203
+ ssm_instance_id: ::String,
204
+ ?tags: Hash[::String, ::String]
205
+ ) -> _CreateConnectorResponseSuccess
206
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectorResponseSuccess
207
+
208
+ interface _CreateLaunchConfigurationTemplateResponseSuccess
209
+ include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfigurationTemplate]
210
+ def arn: () -> ::String
211
+ def associate_public_ip_address: () -> bool
212
+ def boot_mode: () -> ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
213
+ def copy_private_ip: () -> bool
214
+ def copy_tags: () -> bool
215
+ def ec2_launch_template_id: () -> ::String
216
+ def enable_map_auto_tagging: () -> bool
217
+ def large_volume_conf: () -> Types::LaunchTemplateDiskConf
218
+ def launch_configuration_template_id: () -> ::String
219
+ def launch_disposition: () -> ("STOPPED" | "STARTED")
220
+ def licensing: () -> Types::Licensing
221
+ def map_auto_tagging_mpe_id: () -> ::String
222
+ def post_launch_actions: () -> Types::PostLaunchActions
223
+ def small_volume_conf: () -> Types::LaunchTemplateDiskConf
224
+ def small_volume_max_size: () -> ::Integer
225
+ def tags: () -> ::Hash[::String, ::String]
226
+ def target_instance_type_right_sizing_method: () -> ("NONE" | "BASIC")
227
+ end
228
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#create_launch_configuration_template-instance_method
229
+ def create_launch_configuration_template: (
230
+ ?associate_public_ip_address: bool,
231
+ ?boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE"),
232
+ ?copy_private_ip: bool,
233
+ ?copy_tags: bool,
234
+ ?enable_map_auto_tagging: bool,
235
+ ?large_volume_conf: {
236
+ iops: ::Integer?,
237
+ throughput: ::Integer?,
238
+ volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?
239
+ },
240
+ ?launch_disposition: ("STOPPED" | "STARTED"),
241
+ ?licensing: {
242
+ os_byol: bool?
243
+ },
244
+ ?map_auto_tagging_mpe_id: ::String,
245
+ ?post_launch_actions: {
246
+ cloud_watch_log_group_name: ::String?,
247
+ deployment: ("TEST_AND_CUTOVER" | "CUTOVER_ONLY" | "TEST_ONLY")?,
248
+ s3_log_bucket: ::String?,
249
+ s3_output_key_prefix: ::String?,
250
+ ssm_documents: Array[
251
+ {
252
+ action_name: ::String,
253
+ external_parameters: Hash[::String, {
254
+ dynamic_path: ::String?
255
+ }]?,
256
+ must_succeed_for_cutover: bool?,
257
+ parameters: Hash[::String, Array[
258
+ {
259
+ parameter_name: ::String,
260
+ parameter_type: ("STRING")
261
+ },
262
+ ]]?,
263
+ ssm_document_name: ::String,
264
+ timeout_seconds: ::Integer?
265
+ },
266
+ ]?
267
+ },
268
+ ?small_volume_conf: {
269
+ iops: ::Integer?,
270
+ throughput: ::Integer?,
271
+ volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?
272
+ },
273
+ ?small_volume_max_size: ::Integer,
274
+ ?tags: Hash[::String, ::String],
275
+ ?target_instance_type_right_sizing_method: ("NONE" | "BASIC")
276
+ ) -> _CreateLaunchConfigurationTemplateResponseSuccess
277
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLaunchConfigurationTemplateResponseSuccess
278
+
279
+ interface _CreateReplicationConfigurationTemplateResponseSuccess
280
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReplicationConfigurationTemplate]
281
+ def arn: () -> ::String
282
+ def associate_default_security_group: () -> bool
283
+ def bandwidth_throttling: () -> ::Integer
284
+ def create_public_ip: () -> bool
285
+ def data_plane_routing: () -> ("PRIVATE_IP" | "PUBLIC_IP")
286
+ def default_large_staging_disk_type: () -> ("GP2" | "ST1" | "GP3")
287
+ def ebs_encryption: () -> ("DEFAULT" | "CUSTOM")
288
+ def ebs_encryption_key_arn: () -> ::String
289
+ def replication_configuration_template_id: () -> ::String
290
+ def replication_server_instance_type: () -> ::String
291
+ def replication_servers_security_groups_i_ds: () -> ::Array[::String]
292
+ def staging_area_subnet_id: () -> ::String
293
+ def staging_area_tags: () -> ::Hash[::String, ::String]
294
+ def tags: () -> ::Hash[::String, ::String]
295
+ def use_dedicated_replication_server: () -> bool
296
+ def use_fips_endpoint: () -> bool
297
+ end
298
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#create_replication_configuration_template-instance_method
299
+ def create_replication_configuration_template: (
300
+ associate_default_security_group: bool,
301
+ bandwidth_throttling: ::Integer,
302
+ create_public_ip: bool,
303
+ data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP"),
304
+ default_large_staging_disk_type: ("GP2" | "ST1" | "GP3"),
305
+ ebs_encryption: ("DEFAULT" | "CUSTOM"),
306
+ ?ebs_encryption_key_arn: ::String,
307
+ replication_server_instance_type: ::String,
308
+ replication_servers_security_groups_i_ds: Array[::String],
309
+ staging_area_subnet_id: ::String,
310
+ staging_area_tags: Hash[::String, ::String],
311
+ ?tags: Hash[::String, ::String],
312
+ use_dedicated_replication_server: bool,
313
+ ?use_fips_endpoint: bool
314
+ ) -> _CreateReplicationConfigurationTemplateResponseSuccess
315
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateReplicationConfigurationTemplateResponseSuccess
316
+
317
+ interface _CreateWaveResponseSuccess
318
+ include ::Seahorse::Client::_ResponseSuccess[Types::Wave]
319
+ def arn: () -> ::String
320
+ def creation_date_time: () -> ::String
321
+ def description: () -> ::String
322
+ def is_archived: () -> bool
323
+ def last_modified_date_time: () -> ::String
324
+ def name: () -> ::String
325
+ def tags: () -> ::Hash[::String, ::String]
326
+ def wave_aggregated_status: () -> Types::WaveAggregatedStatus
327
+ def wave_id: () -> ::String
328
+ end
329
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#create_wave-instance_method
330
+ def create_wave: (
331
+ ?account_id: ::String,
332
+ ?description: ::String,
333
+ name: ::String,
334
+ ?tags: Hash[::String, ::String]
335
+ ) -> _CreateWaveResponseSuccess
336
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWaveResponseSuccess
337
+
338
+ interface _DeleteApplicationResponseSuccess
339
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationResponse]
340
+ end
341
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#delete_application-instance_method
342
+ def delete_application: (
343
+ ?account_id: ::String,
344
+ application_id: ::String
345
+ ) -> _DeleteApplicationResponseSuccess
346
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationResponseSuccess
347
+
348
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#delete_connector-instance_method
349
+ def delete_connector: (
350
+ connector_id: ::String
351
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
352
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
353
+
354
+ interface _DeleteJobResponseSuccess
355
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteJobResponse]
356
+ end
357
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#delete_job-instance_method
358
+ def delete_job: (
359
+ ?account_id: ::String,
360
+ job_id: ::String
361
+ ) -> _DeleteJobResponseSuccess
362
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteJobResponseSuccess
363
+
364
+ interface _DeleteLaunchConfigurationTemplateResponseSuccess
365
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLaunchConfigurationTemplateResponse]
366
+ end
367
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#delete_launch_configuration_template-instance_method
368
+ def delete_launch_configuration_template: (
369
+ launch_configuration_template_id: ::String
370
+ ) -> _DeleteLaunchConfigurationTemplateResponseSuccess
371
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLaunchConfigurationTemplateResponseSuccess
372
+
373
+ interface _DeleteReplicationConfigurationTemplateResponseSuccess
374
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReplicationConfigurationTemplateResponse]
375
+ end
376
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#delete_replication_configuration_template-instance_method
377
+ def delete_replication_configuration_template: (
378
+ replication_configuration_template_id: ::String
379
+ ) -> _DeleteReplicationConfigurationTemplateResponseSuccess
380
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteReplicationConfigurationTemplateResponseSuccess
381
+
382
+ interface _DeleteSourceServerResponseSuccess
383
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSourceServerResponse]
384
+ end
385
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#delete_source_server-instance_method
386
+ def delete_source_server: (
387
+ ?account_id: ::String,
388
+ source_server_id: ::String
389
+ ) -> _DeleteSourceServerResponseSuccess
390
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSourceServerResponseSuccess
391
+
392
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#delete_vcenter_client-instance_method
393
+ def delete_vcenter_client: (
394
+ vcenter_client_id: ::String
395
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
396
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
397
+
398
+ interface _DeleteWaveResponseSuccess
399
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteWaveResponse]
400
+ end
401
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#delete_wave-instance_method
402
+ def delete_wave: (
403
+ ?account_id: ::String,
404
+ wave_id: ::String
405
+ ) -> _DeleteWaveResponseSuccess
406
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWaveResponseSuccess
407
+
408
+ interface _DescribeJobLogItemsResponseSuccess
409
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeJobLogItemsResponse]
410
+ def items: () -> ::Array[Types::JobLog]
411
+ def next_token: () -> ::String
412
+ end
413
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#describe_job_log_items-instance_method
414
+ def describe_job_log_items: (
415
+ ?account_id: ::String,
416
+ job_id: ::String,
417
+ ?max_results: ::Integer,
418
+ ?next_token: ::String
419
+ ) -> _DescribeJobLogItemsResponseSuccess
420
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeJobLogItemsResponseSuccess
421
+
422
+ interface _DescribeJobsResponseSuccess
423
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeJobsResponse]
424
+ def items: () -> ::Array[Types::Job]
425
+ def next_token: () -> ::String
426
+ end
427
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#describe_jobs-instance_method
428
+ def describe_jobs: (
429
+ ?account_id: ::String,
430
+ ?filters: {
431
+ from_date: ::String?,
432
+ job_i_ds: Array[::String]?,
433
+ to_date: ::String?
434
+ },
435
+ ?max_results: ::Integer,
436
+ ?next_token: ::String
437
+ ) -> _DescribeJobsResponseSuccess
438
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeJobsResponseSuccess
439
+
440
+ interface _DescribeLaunchConfigurationTemplatesResponseSuccess
441
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeLaunchConfigurationTemplatesResponse]
442
+ def items: () -> ::Array[Types::LaunchConfigurationTemplate]
443
+ def next_token: () -> ::String
444
+ end
445
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#describe_launch_configuration_templates-instance_method
446
+ def describe_launch_configuration_templates: (
447
+ ?launch_configuration_template_i_ds: Array[::String],
448
+ ?max_results: ::Integer,
449
+ ?next_token: ::String
450
+ ) -> _DescribeLaunchConfigurationTemplatesResponseSuccess
451
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeLaunchConfigurationTemplatesResponseSuccess
452
+
453
+ interface _DescribeReplicationConfigurationTemplatesResponseSuccess
454
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeReplicationConfigurationTemplatesResponse]
455
+ def items: () -> ::Array[Types::ReplicationConfigurationTemplate]
456
+ def next_token: () -> ::String
457
+ end
458
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#describe_replication_configuration_templates-instance_method
459
+ def describe_replication_configuration_templates: (
460
+ ?max_results: ::Integer,
461
+ ?next_token: ::String,
462
+ ?replication_configuration_template_i_ds: Array[::String]
463
+ ) -> _DescribeReplicationConfigurationTemplatesResponseSuccess
464
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeReplicationConfigurationTemplatesResponseSuccess
465
+
466
+ interface _DescribeSourceServersResponseSuccess
467
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSourceServersResponse]
468
+ def items: () -> ::Array[Types::SourceServer]
469
+ def next_token: () -> ::String
470
+ end
471
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#describe_source_servers-instance_method
472
+ def describe_source_servers: (
473
+ ?account_id: ::String,
474
+ ?filters: {
475
+ application_i_ds: Array[::String]?,
476
+ is_archived: bool?,
477
+ life_cycle_states: Array[("STOPPED" | "NOT_READY" | "READY_FOR_TEST" | "TESTING" | "READY_FOR_CUTOVER" | "CUTTING_OVER" | "CUTOVER" | "DISCONNECTED" | "DISCOVERED" | "PENDING_INSTALLATION")]?,
478
+ replication_types: Array[("AGENT_BASED" | "SNAPSHOT_SHIPPING")]?,
479
+ source_server_i_ds: Array[::String]?
480
+ },
481
+ ?max_results: ::Integer,
482
+ ?next_token: ::String
483
+ ) -> _DescribeSourceServersResponseSuccess
484
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSourceServersResponseSuccess
485
+
486
+ interface _DescribeVcenterClientsResponseSuccess
487
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVcenterClientsResponse]
488
+ def items: () -> ::Array[Types::VcenterClient]
489
+ def next_token: () -> ::String
490
+ end
491
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#describe_vcenter_clients-instance_method
492
+ def describe_vcenter_clients: (
493
+ ?max_results: ::Integer,
494
+ ?next_token: ::String
495
+ ) -> _DescribeVcenterClientsResponseSuccess
496
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVcenterClientsResponseSuccess
497
+
498
+ interface _DisassociateApplicationsResponseSuccess
499
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateApplicationsResponse]
500
+ end
501
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#disassociate_applications-instance_method
502
+ def disassociate_applications: (
503
+ ?account_id: ::String,
504
+ application_i_ds: Array[::String],
505
+ wave_id: ::String
506
+ ) -> _DisassociateApplicationsResponseSuccess
507
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateApplicationsResponseSuccess
508
+
509
+ interface _DisassociateSourceServersResponseSuccess
510
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateSourceServersResponse]
511
+ end
512
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#disassociate_source_servers-instance_method
513
+ def disassociate_source_servers: (
514
+ ?account_id: ::String,
515
+ application_id: ::String,
516
+ source_server_i_ds: Array[::String]
517
+ ) -> _DisassociateSourceServersResponseSuccess
518
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateSourceServersResponseSuccess
519
+
520
+ interface _DisconnectFromServiceResponseSuccess
521
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
522
+ def application_id: () -> ::String
523
+ def arn: () -> ::String
524
+ def connector_action: () -> Types::SourceServerConnectorAction
525
+ def data_replication_info: () -> Types::DataReplicationInfo
526
+ def fqdn_for_action_framework: () -> ::String
527
+ def is_archived: () -> bool
528
+ def launched_instance: () -> Types::LaunchedInstance
529
+ def life_cycle: () -> Types::LifeCycle
530
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
531
+ def source_properties: () -> Types::SourceProperties
532
+ def source_server_id: () -> ::String
533
+ def tags: () -> ::Hash[::String, ::String]
534
+ def user_provided_id: () -> ::String
535
+ def vcenter_client_id: () -> ::String
536
+ end
537
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#disconnect_from_service-instance_method
538
+ def disconnect_from_service: (
539
+ ?account_id: ::String,
540
+ source_server_id: ::String
541
+ ) -> _DisconnectFromServiceResponseSuccess
542
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisconnectFromServiceResponseSuccess
543
+
544
+ interface _FinalizeCutoverResponseSuccess
545
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
546
+ def application_id: () -> ::String
547
+ def arn: () -> ::String
548
+ def connector_action: () -> Types::SourceServerConnectorAction
549
+ def data_replication_info: () -> Types::DataReplicationInfo
550
+ def fqdn_for_action_framework: () -> ::String
551
+ def is_archived: () -> bool
552
+ def launched_instance: () -> Types::LaunchedInstance
553
+ def life_cycle: () -> Types::LifeCycle
554
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
555
+ def source_properties: () -> Types::SourceProperties
556
+ def source_server_id: () -> ::String
557
+ def tags: () -> ::Hash[::String, ::String]
558
+ def user_provided_id: () -> ::String
559
+ def vcenter_client_id: () -> ::String
560
+ end
561
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#finalize_cutover-instance_method
562
+ def finalize_cutover: (
563
+ ?account_id: ::String,
564
+ source_server_id: ::String
565
+ ) -> _FinalizeCutoverResponseSuccess
566
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _FinalizeCutoverResponseSuccess
567
+
568
+ interface _GetLaunchConfigurationResponseSuccess
569
+ include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfiguration]
570
+ def boot_mode: () -> ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
571
+ def copy_private_ip: () -> bool
572
+ def copy_tags: () -> bool
573
+ def ec2_launch_template_id: () -> ::String
574
+ def enable_map_auto_tagging: () -> bool
575
+ def launch_disposition: () -> ("STOPPED" | "STARTED")
576
+ def licensing: () -> Types::Licensing
577
+ def map_auto_tagging_mpe_id: () -> ::String
578
+ def name: () -> ::String
579
+ def post_launch_actions: () -> Types::PostLaunchActions
580
+ def source_server_id: () -> ::String
581
+ def target_instance_type_right_sizing_method: () -> ("NONE" | "BASIC")
582
+ end
583
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#get_launch_configuration-instance_method
584
+ def get_launch_configuration: (
585
+ ?account_id: ::String,
586
+ source_server_id: ::String
587
+ ) -> _GetLaunchConfigurationResponseSuccess
588
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLaunchConfigurationResponseSuccess
589
+
590
+ interface _GetReplicationConfigurationResponseSuccess
591
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReplicationConfiguration]
592
+ def associate_default_security_group: () -> bool
593
+ def bandwidth_throttling: () -> ::Integer
594
+ def create_public_ip: () -> bool
595
+ def data_plane_routing: () -> ("PRIVATE_IP" | "PUBLIC_IP")
596
+ def default_large_staging_disk_type: () -> ("GP2" | "ST1" | "GP3")
597
+ def ebs_encryption: () -> ("DEFAULT" | "CUSTOM")
598
+ def ebs_encryption_key_arn: () -> ::String
599
+ def name: () -> ::String
600
+ def replicated_disks: () -> ::Array[Types::ReplicationConfigurationReplicatedDisk]
601
+ def replication_server_instance_type: () -> ::String
602
+ def replication_servers_security_groups_i_ds: () -> ::Array[::String]
603
+ def source_server_id: () -> ::String
604
+ def staging_area_subnet_id: () -> ::String
605
+ def staging_area_tags: () -> ::Hash[::String, ::String]
606
+ def use_dedicated_replication_server: () -> bool
607
+ def use_fips_endpoint: () -> bool
608
+ end
609
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#get_replication_configuration-instance_method
610
+ def get_replication_configuration: (
611
+ ?account_id: ::String,
612
+ source_server_id: ::String
613
+ ) -> _GetReplicationConfigurationResponseSuccess
614
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetReplicationConfigurationResponseSuccess
615
+
616
+ interface _InitializeServiceResponseSuccess
617
+ include ::Seahorse::Client::_ResponseSuccess[Types::InitializeServiceResponse]
618
+ end
619
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#initialize_service-instance_method
620
+ def initialize_service: (
621
+ ) -> _InitializeServiceResponseSuccess
622
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _InitializeServiceResponseSuccess
623
+
624
+ interface _ListApplicationsResponseSuccess
625
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationsResponse]
626
+ def items: () -> ::Array[Types::Application]
627
+ def next_token: () -> ::String
628
+ end
629
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_applications-instance_method
630
+ def list_applications: (
631
+ ?account_id: ::String,
632
+ ?filters: {
633
+ application_i_ds: Array[::String]?,
634
+ is_archived: bool?,
635
+ wave_i_ds: Array[::String]?
636
+ },
637
+ ?max_results: ::Integer,
638
+ ?next_token: ::String
639
+ ) -> _ListApplicationsResponseSuccess
640
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationsResponseSuccess
641
+
642
+ interface _ListConnectorsResponseSuccess
643
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectorsResponse]
644
+ def items: () -> ::Array[Types::Connector]
645
+ def next_token: () -> ::String
646
+ end
647
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_connectors-instance_method
648
+ def list_connectors: (
649
+ ?filters: {
650
+ connector_i_ds: Array[::String]?
651
+ },
652
+ ?max_results: ::Integer,
653
+ ?next_token: ::String
654
+ ) -> _ListConnectorsResponseSuccess
655
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectorsResponseSuccess
656
+
657
+ interface _ListExportErrorsResponseSuccess
658
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListExportErrorsResponse]
659
+ def items: () -> ::Array[Types::ExportTaskError]
660
+ def next_token: () -> ::String
661
+ end
662
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_export_errors-instance_method
663
+ def list_export_errors: (
664
+ export_id: ::String,
665
+ ?max_results: ::Integer,
666
+ ?next_token: ::String
667
+ ) -> _ListExportErrorsResponseSuccess
668
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExportErrorsResponseSuccess
669
+
670
+ interface _ListExportsResponseSuccess
671
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListExportsResponse]
672
+ def items: () -> ::Array[Types::ExportTask]
673
+ def next_token: () -> ::String
674
+ end
675
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_exports-instance_method
676
+ def list_exports: (
677
+ ?filters: {
678
+ export_i_ds: Array[::String]?
679
+ },
680
+ ?max_results: ::Integer,
681
+ ?next_token: ::String
682
+ ) -> _ListExportsResponseSuccess
683
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExportsResponseSuccess
684
+
685
+ interface _ListImportErrorsResponseSuccess
686
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListImportErrorsResponse]
687
+ def items: () -> ::Array[Types::ImportTaskError]
688
+ def next_token: () -> ::String
689
+ end
690
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_import_errors-instance_method
691
+ def list_import_errors: (
692
+ import_id: ::String,
693
+ ?max_results: ::Integer,
694
+ ?next_token: ::String
695
+ ) -> _ListImportErrorsResponseSuccess
696
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListImportErrorsResponseSuccess
697
+
698
+ interface _ListImportsResponseSuccess
699
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListImportsResponse]
700
+ def items: () -> ::Array[Types::ImportTask]
701
+ def next_token: () -> ::String
702
+ end
703
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_imports-instance_method
704
+ def list_imports: (
705
+ ?filters: {
706
+ import_i_ds: Array[::String]?
707
+ },
708
+ ?max_results: ::Integer,
709
+ ?next_token: ::String
710
+ ) -> _ListImportsResponseSuccess
711
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListImportsResponseSuccess
712
+
713
+ interface _ListManagedAccountsResponseSuccess
714
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListManagedAccountsResponse]
715
+ def items: () -> ::Array[Types::ManagedAccount]
716
+ def next_token: () -> ::String
717
+ end
718
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_managed_accounts-instance_method
719
+ def list_managed_accounts: (
720
+ ?max_results: ::Integer,
721
+ ?next_token: ::String
722
+ ) -> _ListManagedAccountsResponseSuccess
723
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListManagedAccountsResponseSuccess
724
+
725
+ interface _ListSourceServerActionsResponseSuccess
726
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSourceServerActionsResponse]
727
+ def items: () -> ::Array[Types::SourceServerActionDocument]
728
+ def next_token: () -> ::String
729
+ end
730
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_source_server_actions-instance_method
731
+ def list_source_server_actions: (
732
+ ?account_id: ::String,
733
+ ?filters: {
734
+ action_i_ds: Array[::String]?
735
+ },
736
+ ?max_results: ::Integer,
737
+ ?next_token: ::String,
738
+ source_server_id: ::String
739
+ ) -> _ListSourceServerActionsResponseSuccess
740
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSourceServerActionsResponseSuccess
741
+
742
+ interface _ListTagsForResourceResponseSuccess
743
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
744
+ def tags: () -> ::Hash[::String, ::String]
745
+ end
746
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_tags_for_resource-instance_method
747
+ def list_tags_for_resource: (
748
+ resource_arn: ::String
749
+ ) -> _ListTagsForResourceResponseSuccess
750
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
751
+
752
+ interface _ListTemplateActionsResponseSuccess
753
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTemplateActionsResponse]
754
+ def items: () -> ::Array[Types::TemplateActionDocument]
755
+ def next_token: () -> ::String
756
+ end
757
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_template_actions-instance_method
758
+ def list_template_actions: (
759
+ ?filters: {
760
+ action_i_ds: Array[::String]?
761
+ },
762
+ launch_configuration_template_id: ::String,
763
+ ?max_results: ::Integer,
764
+ ?next_token: ::String
765
+ ) -> _ListTemplateActionsResponseSuccess
766
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTemplateActionsResponseSuccess
767
+
768
+ interface _ListWavesResponseSuccess
769
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWavesResponse]
770
+ def items: () -> ::Array[Types::Wave]
771
+ def next_token: () -> ::String
772
+ end
773
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#list_waves-instance_method
774
+ def list_waves: (
775
+ ?account_id: ::String,
776
+ ?filters: {
777
+ is_archived: bool?,
778
+ wave_i_ds: Array[::String]?
779
+ },
780
+ ?max_results: ::Integer,
781
+ ?next_token: ::String
782
+ ) -> _ListWavesResponseSuccess
783
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWavesResponseSuccess
784
+
785
+ interface _MarkAsArchivedResponseSuccess
786
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
787
+ def application_id: () -> ::String
788
+ def arn: () -> ::String
789
+ def connector_action: () -> Types::SourceServerConnectorAction
790
+ def data_replication_info: () -> Types::DataReplicationInfo
791
+ def fqdn_for_action_framework: () -> ::String
792
+ def is_archived: () -> bool
793
+ def launched_instance: () -> Types::LaunchedInstance
794
+ def life_cycle: () -> Types::LifeCycle
795
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
796
+ def source_properties: () -> Types::SourceProperties
797
+ def source_server_id: () -> ::String
798
+ def tags: () -> ::Hash[::String, ::String]
799
+ def user_provided_id: () -> ::String
800
+ def vcenter_client_id: () -> ::String
801
+ end
802
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#mark_as_archived-instance_method
803
+ def mark_as_archived: (
804
+ ?account_id: ::String,
805
+ source_server_id: ::String
806
+ ) -> _MarkAsArchivedResponseSuccess
807
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _MarkAsArchivedResponseSuccess
808
+
809
+ interface _PauseReplicationResponseSuccess
810
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
811
+ def application_id: () -> ::String
812
+ def arn: () -> ::String
813
+ def connector_action: () -> Types::SourceServerConnectorAction
814
+ def data_replication_info: () -> Types::DataReplicationInfo
815
+ def fqdn_for_action_framework: () -> ::String
816
+ def is_archived: () -> bool
817
+ def launched_instance: () -> Types::LaunchedInstance
818
+ def life_cycle: () -> Types::LifeCycle
819
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
820
+ def source_properties: () -> Types::SourceProperties
821
+ def source_server_id: () -> ::String
822
+ def tags: () -> ::Hash[::String, ::String]
823
+ def user_provided_id: () -> ::String
824
+ def vcenter_client_id: () -> ::String
825
+ end
826
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#pause_replication-instance_method
827
+ def pause_replication: (
828
+ ?account_id: ::String,
829
+ source_server_id: ::String
830
+ ) -> _PauseReplicationResponseSuccess
831
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PauseReplicationResponseSuccess
832
+
833
+ interface _PutSourceServerActionResponseSuccess
834
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServerActionDocument]
835
+ def action_id: () -> ::String
836
+ def action_name: () -> ::String
837
+ def active: () -> bool
838
+ def category: () -> ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
839
+ def description: () -> ::String
840
+ def document_identifier: () -> ::String
841
+ def document_version: () -> ::String
842
+ def external_parameters: () -> ::Hash[::String, Types::SsmExternalParameter]
843
+ def must_succeed_for_cutover: () -> bool
844
+ def order: () -> ::Integer
845
+ def parameters: () -> ::Hash[::String, ::Array[Types::SsmParameterStoreParameter]]
846
+ def timeout_seconds: () -> ::Integer
847
+ end
848
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#put_source_server_action-instance_method
849
+ def put_source_server_action: (
850
+ ?account_id: ::String,
851
+ action_id: ::String,
852
+ action_name: ::String,
853
+ ?active: bool,
854
+ ?category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER"),
855
+ ?description: ::String,
856
+ document_identifier: ::String,
857
+ ?document_version: ::String,
858
+ ?external_parameters: Hash[::String, {
859
+ dynamic_path: ::String?
860
+ }],
861
+ ?must_succeed_for_cutover: bool,
862
+ order: ::Integer,
863
+ ?parameters: Hash[::String, Array[
864
+ {
865
+ parameter_name: ::String,
866
+ parameter_type: ("STRING")
867
+ },
868
+ ]],
869
+ source_server_id: ::String,
870
+ ?timeout_seconds: ::Integer
871
+ ) -> _PutSourceServerActionResponseSuccess
872
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutSourceServerActionResponseSuccess
873
+
874
+ interface _PutTemplateActionResponseSuccess
875
+ include ::Seahorse::Client::_ResponseSuccess[Types::TemplateActionDocument]
876
+ def action_id: () -> ::String
877
+ def action_name: () -> ::String
878
+ def active: () -> bool
879
+ def category: () -> ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
880
+ def description: () -> ::String
881
+ def document_identifier: () -> ::String
882
+ def document_version: () -> ::String
883
+ def external_parameters: () -> ::Hash[::String, Types::SsmExternalParameter]
884
+ def must_succeed_for_cutover: () -> bool
885
+ def operating_system: () -> ::String
886
+ def order: () -> ::Integer
887
+ def parameters: () -> ::Hash[::String, ::Array[Types::SsmParameterStoreParameter]]
888
+ def timeout_seconds: () -> ::Integer
889
+ end
890
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#put_template_action-instance_method
891
+ def put_template_action: (
892
+ action_id: ::String,
893
+ action_name: ::String,
894
+ ?active: bool,
895
+ ?category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER"),
896
+ ?description: ::String,
897
+ document_identifier: ::String,
898
+ ?document_version: ::String,
899
+ ?external_parameters: Hash[::String, {
900
+ dynamic_path: ::String?
901
+ }],
902
+ launch_configuration_template_id: ::String,
903
+ ?must_succeed_for_cutover: bool,
904
+ ?operating_system: ::String,
905
+ order: ::Integer,
906
+ ?parameters: Hash[::String, Array[
907
+ {
908
+ parameter_name: ::String,
909
+ parameter_type: ("STRING")
910
+ },
911
+ ]],
912
+ ?timeout_seconds: ::Integer
913
+ ) -> _PutTemplateActionResponseSuccess
914
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutTemplateActionResponseSuccess
915
+
916
+ interface _RemoveSourceServerActionResponseSuccess
917
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveSourceServerActionResponse]
918
+ end
919
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#remove_source_server_action-instance_method
920
+ def remove_source_server_action: (
921
+ ?account_id: ::String,
922
+ action_id: ::String,
923
+ source_server_id: ::String
924
+ ) -> _RemoveSourceServerActionResponseSuccess
925
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveSourceServerActionResponseSuccess
926
+
927
+ interface _RemoveTemplateActionResponseSuccess
928
+ include ::Seahorse::Client::_ResponseSuccess[Types::RemoveTemplateActionResponse]
929
+ end
930
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#remove_template_action-instance_method
931
+ def remove_template_action: (
932
+ action_id: ::String,
933
+ launch_configuration_template_id: ::String
934
+ ) -> _RemoveTemplateActionResponseSuccess
935
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RemoveTemplateActionResponseSuccess
936
+
937
+ interface _ResumeReplicationResponseSuccess
938
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
939
+ def application_id: () -> ::String
940
+ def arn: () -> ::String
941
+ def connector_action: () -> Types::SourceServerConnectorAction
942
+ def data_replication_info: () -> Types::DataReplicationInfo
943
+ def fqdn_for_action_framework: () -> ::String
944
+ def is_archived: () -> bool
945
+ def launched_instance: () -> Types::LaunchedInstance
946
+ def life_cycle: () -> Types::LifeCycle
947
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
948
+ def source_properties: () -> Types::SourceProperties
949
+ def source_server_id: () -> ::String
950
+ def tags: () -> ::Hash[::String, ::String]
951
+ def user_provided_id: () -> ::String
952
+ def vcenter_client_id: () -> ::String
953
+ end
954
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#resume_replication-instance_method
955
+ def resume_replication: (
956
+ ?account_id: ::String,
957
+ source_server_id: ::String
958
+ ) -> _ResumeReplicationResponseSuccess
959
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResumeReplicationResponseSuccess
960
+
961
+ interface _RetryDataReplicationResponseSuccess
962
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
963
+ def application_id: () -> ::String
964
+ def arn: () -> ::String
965
+ def connector_action: () -> Types::SourceServerConnectorAction
966
+ def data_replication_info: () -> Types::DataReplicationInfo
967
+ def fqdn_for_action_framework: () -> ::String
968
+ def is_archived: () -> bool
969
+ def launched_instance: () -> Types::LaunchedInstance
970
+ def life_cycle: () -> Types::LifeCycle
971
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
972
+ def source_properties: () -> Types::SourceProperties
973
+ def source_server_id: () -> ::String
974
+ def tags: () -> ::Hash[::String, ::String]
975
+ def user_provided_id: () -> ::String
976
+ def vcenter_client_id: () -> ::String
977
+ end
978
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#retry_data_replication-instance_method
979
+ def retry_data_replication: (
980
+ ?account_id: ::String,
981
+ source_server_id: ::String
982
+ ) -> _RetryDataReplicationResponseSuccess
983
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RetryDataReplicationResponseSuccess
984
+
985
+ interface _StartCutoverResponseSuccess
986
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartCutoverResponse]
987
+ def job: () -> Types::Job
988
+ end
989
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#start_cutover-instance_method
990
+ def start_cutover: (
991
+ ?account_id: ::String,
992
+ source_server_i_ds: Array[::String],
993
+ ?tags: Hash[::String, ::String]
994
+ ) -> _StartCutoverResponseSuccess
995
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartCutoverResponseSuccess
996
+
997
+ interface _StartExportResponseSuccess
998
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartExportResponse]
999
+ def export_task: () -> Types::ExportTask
1000
+ end
1001
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#start_export-instance_method
1002
+ def start_export: (
1003
+ s3_bucket: ::String,
1004
+ ?s3_bucket_owner: ::String,
1005
+ s3_key: ::String
1006
+ ) -> _StartExportResponseSuccess
1007
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartExportResponseSuccess
1008
+
1009
+ interface _StartImportResponseSuccess
1010
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartImportResponse]
1011
+ def import_task: () -> Types::ImportTask
1012
+ end
1013
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#start_import-instance_method
1014
+ def start_import: (
1015
+ ?client_token: ::String,
1016
+ s3_bucket_source: {
1017
+ s3_bucket: ::String,
1018
+ s3_bucket_owner: ::String?,
1019
+ s3_key: ::String
1020
+ }
1021
+ ) -> _StartImportResponseSuccess
1022
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartImportResponseSuccess
1023
+
1024
+ interface _StartReplicationResponseSuccess
1025
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
1026
+ def application_id: () -> ::String
1027
+ def arn: () -> ::String
1028
+ def connector_action: () -> Types::SourceServerConnectorAction
1029
+ def data_replication_info: () -> Types::DataReplicationInfo
1030
+ def fqdn_for_action_framework: () -> ::String
1031
+ def is_archived: () -> bool
1032
+ def launched_instance: () -> Types::LaunchedInstance
1033
+ def life_cycle: () -> Types::LifeCycle
1034
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
1035
+ def source_properties: () -> Types::SourceProperties
1036
+ def source_server_id: () -> ::String
1037
+ def tags: () -> ::Hash[::String, ::String]
1038
+ def user_provided_id: () -> ::String
1039
+ def vcenter_client_id: () -> ::String
1040
+ end
1041
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#start_replication-instance_method
1042
+ def start_replication: (
1043
+ ?account_id: ::String,
1044
+ source_server_id: ::String
1045
+ ) -> _StartReplicationResponseSuccess
1046
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartReplicationResponseSuccess
1047
+
1048
+ interface _StartTestResponseSuccess
1049
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartTestResponse]
1050
+ def job: () -> Types::Job
1051
+ end
1052
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#start_test-instance_method
1053
+ def start_test: (
1054
+ ?account_id: ::String,
1055
+ source_server_i_ds: Array[::String],
1056
+ ?tags: Hash[::String, ::String]
1057
+ ) -> _StartTestResponseSuccess
1058
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTestResponseSuccess
1059
+
1060
+ interface _StopReplicationResponseSuccess
1061
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
1062
+ def application_id: () -> ::String
1063
+ def arn: () -> ::String
1064
+ def connector_action: () -> Types::SourceServerConnectorAction
1065
+ def data_replication_info: () -> Types::DataReplicationInfo
1066
+ def fqdn_for_action_framework: () -> ::String
1067
+ def is_archived: () -> bool
1068
+ def launched_instance: () -> Types::LaunchedInstance
1069
+ def life_cycle: () -> Types::LifeCycle
1070
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
1071
+ def source_properties: () -> Types::SourceProperties
1072
+ def source_server_id: () -> ::String
1073
+ def tags: () -> ::Hash[::String, ::String]
1074
+ def user_provided_id: () -> ::String
1075
+ def vcenter_client_id: () -> ::String
1076
+ end
1077
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#stop_replication-instance_method
1078
+ def stop_replication: (
1079
+ ?account_id: ::String,
1080
+ source_server_id: ::String
1081
+ ) -> _StopReplicationResponseSuccess
1082
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopReplicationResponseSuccess
1083
+
1084
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#tag_resource-instance_method
1085
+ def tag_resource: (
1086
+ resource_arn: ::String,
1087
+ tags: Hash[::String, ::String]
1088
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1089
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1090
+
1091
+ interface _TerminateTargetInstancesResponseSuccess
1092
+ include ::Seahorse::Client::_ResponseSuccess[Types::TerminateTargetInstancesResponse]
1093
+ def job: () -> Types::Job
1094
+ end
1095
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#terminate_target_instances-instance_method
1096
+ def terminate_target_instances: (
1097
+ ?account_id: ::String,
1098
+ source_server_i_ds: Array[::String],
1099
+ ?tags: Hash[::String, ::String]
1100
+ ) -> _TerminateTargetInstancesResponseSuccess
1101
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TerminateTargetInstancesResponseSuccess
1102
+
1103
+ interface _UnarchiveApplicationResponseSuccess
1104
+ include ::Seahorse::Client::_ResponseSuccess[Types::Application]
1105
+ def application_aggregated_status: () -> Types::ApplicationAggregatedStatus
1106
+ def application_id: () -> ::String
1107
+ def arn: () -> ::String
1108
+ def creation_date_time: () -> ::String
1109
+ def description: () -> ::String
1110
+ def is_archived: () -> bool
1111
+ def last_modified_date_time: () -> ::String
1112
+ def name: () -> ::String
1113
+ def tags: () -> ::Hash[::String, ::String]
1114
+ def wave_id: () -> ::String
1115
+ end
1116
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#unarchive_application-instance_method
1117
+ def unarchive_application: (
1118
+ ?account_id: ::String,
1119
+ application_id: ::String
1120
+ ) -> _UnarchiveApplicationResponseSuccess
1121
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UnarchiveApplicationResponseSuccess
1122
+
1123
+ interface _UnarchiveWaveResponseSuccess
1124
+ include ::Seahorse::Client::_ResponseSuccess[Types::Wave]
1125
+ def arn: () -> ::String
1126
+ def creation_date_time: () -> ::String
1127
+ def description: () -> ::String
1128
+ def is_archived: () -> bool
1129
+ def last_modified_date_time: () -> ::String
1130
+ def name: () -> ::String
1131
+ def tags: () -> ::Hash[::String, ::String]
1132
+ def wave_aggregated_status: () -> Types::WaveAggregatedStatus
1133
+ def wave_id: () -> ::String
1134
+ end
1135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#unarchive_wave-instance_method
1136
+ def unarchive_wave: (
1137
+ ?account_id: ::String,
1138
+ wave_id: ::String
1139
+ ) -> _UnarchiveWaveResponseSuccess
1140
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UnarchiveWaveResponseSuccess
1141
+
1142
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#untag_resource-instance_method
1143
+ def untag_resource: (
1144
+ resource_arn: ::String,
1145
+ tag_keys: Array[::String]
1146
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1147
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1148
+
1149
+ interface _UpdateApplicationResponseSuccess
1150
+ include ::Seahorse::Client::_ResponseSuccess[Types::Application]
1151
+ def application_aggregated_status: () -> Types::ApplicationAggregatedStatus
1152
+ def application_id: () -> ::String
1153
+ def arn: () -> ::String
1154
+ def creation_date_time: () -> ::String
1155
+ def description: () -> ::String
1156
+ def is_archived: () -> bool
1157
+ def last_modified_date_time: () -> ::String
1158
+ def name: () -> ::String
1159
+ def tags: () -> ::Hash[::String, ::String]
1160
+ def wave_id: () -> ::String
1161
+ end
1162
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_application-instance_method
1163
+ def update_application: (
1164
+ ?account_id: ::String,
1165
+ application_id: ::String,
1166
+ ?description: ::String,
1167
+ ?name: ::String
1168
+ ) -> _UpdateApplicationResponseSuccess
1169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
1170
+
1171
+ interface _UpdateConnectorResponseSuccess
1172
+ include ::Seahorse::Client::_ResponseSuccess[Types::Connector]
1173
+ def arn: () -> ::String
1174
+ def connector_id: () -> ::String
1175
+ def name: () -> ::String
1176
+ def ssm_command_config: () -> Types::ConnectorSsmCommandConfig
1177
+ def ssm_instance_id: () -> ::String
1178
+ def tags: () -> ::Hash[::String, ::String]
1179
+ end
1180
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_connector-instance_method
1181
+ def update_connector: (
1182
+ connector_id: ::String,
1183
+ ?name: ::String,
1184
+ ?ssm_command_config: {
1185
+ cloud_watch_log_group_name: ::String?,
1186
+ cloud_watch_output_enabled: bool,
1187
+ output_s3_bucket_name: ::String?,
1188
+ s3_output_enabled: bool
1189
+ }
1190
+ ) -> _UpdateConnectorResponseSuccess
1191
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectorResponseSuccess
1192
+
1193
+ interface _UpdateLaunchConfigurationResponseSuccess
1194
+ include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfiguration]
1195
+ def boot_mode: () -> ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
1196
+ def copy_private_ip: () -> bool
1197
+ def copy_tags: () -> bool
1198
+ def ec2_launch_template_id: () -> ::String
1199
+ def enable_map_auto_tagging: () -> bool
1200
+ def launch_disposition: () -> ("STOPPED" | "STARTED")
1201
+ def licensing: () -> Types::Licensing
1202
+ def map_auto_tagging_mpe_id: () -> ::String
1203
+ def name: () -> ::String
1204
+ def post_launch_actions: () -> Types::PostLaunchActions
1205
+ def source_server_id: () -> ::String
1206
+ def target_instance_type_right_sizing_method: () -> ("NONE" | "BASIC")
1207
+ end
1208
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_launch_configuration-instance_method
1209
+ def update_launch_configuration: (
1210
+ ?account_id: ::String,
1211
+ ?boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE"),
1212
+ ?copy_private_ip: bool,
1213
+ ?copy_tags: bool,
1214
+ ?enable_map_auto_tagging: bool,
1215
+ ?launch_disposition: ("STOPPED" | "STARTED"),
1216
+ ?licensing: {
1217
+ os_byol: bool?
1218
+ },
1219
+ ?map_auto_tagging_mpe_id: ::String,
1220
+ ?name: ::String,
1221
+ ?post_launch_actions: {
1222
+ cloud_watch_log_group_name: ::String?,
1223
+ deployment: ("TEST_AND_CUTOVER" | "CUTOVER_ONLY" | "TEST_ONLY")?,
1224
+ s3_log_bucket: ::String?,
1225
+ s3_output_key_prefix: ::String?,
1226
+ ssm_documents: Array[
1227
+ {
1228
+ action_name: ::String,
1229
+ external_parameters: Hash[::String, {
1230
+ dynamic_path: ::String?
1231
+ }]?,
1232
+ must_succeed_for_cutover: bool?,
1233
+ parameters: Hash[::String, Array[
1234
+ {
1235
+ parameter_name: ::String,
1236
+ parameter_type: ("STRING")
1237
+ },
1238
+ ]]?,
1239
+ ssm_document_name: ::String,
1240
+ timeout_seconds: ::Integer?
1241
+ },
1242
+ ]?
1243
+ },
1244
+ source_server_id: ::String,
1245
+ ?target_instance_type_right_sizing_method: ("NONE" | "BASIC")
1246
+ ) -> _UpdateLaunchConfigurationResponseSuccess
1247
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLaunchConfigurationResponseSuccess
1248
+
1249
+ interface _UpdateLaunchConfigurationTemplateResponseSuccess
1250
+ include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfigurationTemplate]
1251
+ def arn: () -> ::String
1252
+ def associate_public_ip_address: () -> bool
1253
+ def boot_mode: () -> ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
1254
+ def copy_private_ip: () -> bool
1255
+ def copy_tags: () -> bool
1256
+ def ec2_launch_template_id: () -> ::String
1257
+ def enable_map_auto_tagging: () -> bool
1258
+ def large_volume_conf: () -> Types::LaunchTemplateDiskConf
1259
+ def launch_configuration_template_id: () -> ::String
1260
+ def launch_disposition: () -> ("STOPPED" | "STARTED")
1261
+ def licensing: () -> Types::Licensing
1262
+ def map_auto_tagging_mpe_id: () -> ::String
1263
+ def post_launch_actions: () -> Types::PostLaunchActions
1264
+ def small_volume_conf: () -> Types::LaunchTemplateDiskConf
1265
+ def small_volume_max_size: () -> ::Integer
1266
+ def tags: () -> ::Hash[::String, ::String]
1267
+ def target_instance_type_right_sizing_method: () -> ("NONE" | "BASIC")
1268
+ end
1269
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_launch_configuration_template-instance_method
1270
+ def update_launch_configuration_template: (
1271
+ ?associate_public_ip_address: bool,
1272
+ ?boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE"),
1273
+ ?copy_private_ip: bool,
1274
+ ?copy_tags: bool,
1275
+ ?enable_map_auto_tagging: bool,
1276
+ ?large_volume_conf: {
1277
+ iops: ::Integer?,
1278
+ throughput: ::Integer?,
1279
+ volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?
1280
+ },
1281
+ launch_configuration_template_id: ::String,
1282
+ ?launch_disposition: ("STOPPED" | "STARTED"),
1283
+ ?licensing: {
1284
+ os_byol: bool?
1285
+ },
1286
+ ?map_auto_tagging_mpe_id: ::String,
1287
+ ?post_launch_actions: {
1288
+ cloud_watch_log_group_name: ::String?,
1289
+ deployment: ("TEST_AND_CUTOVER" | "CUTOVER_ONLY" | "TEST_ONLY")?,
1290
+ s3_log_bucket: ::String?,
1291
+ s3_output_key_prefix: ::String?,
1292
+ ssm_documents: Array[
1293
+ {
1294
+ action_name: ::String,
1295
+ external_parameters: Hash[::String, {
1296
+ dynamic_path: ::String?
1297
+ }]?,
1298
+ must_succeed_for_cutover: bool?,
1299
+ parameters: Hash[::String, Array[
1300
+ {
1301
+ parameter_name: ::String,
1302
+ parameter_type: ("STRING")
1303
+ },
1304
+ ]]?,
1305
+ ssm_document_name: ::String,
1306
+ timeout_seconds: ::Integer?
1307
+ },
1308
+ ]?
1309
+ },
1310
+ ?small_volume_conf: {
1311
+ iops: ::Integer?,
1312
+ throughput: ::Integer?,
1313
+ volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?
1314
+ },
1315
+ ?small_volume_max_size: ::Integer,
1316
+ ?target_instance_type_right_sizing_method: ("NONE" | "BASIC")
1317
+ ) -> _UpdateLaunchConfigurationTemplateResponseSuccess
1318
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLaunchConfigurationTemplateResponseSuccess
1319
+
1320
+ interface _UpdateReplicationConfigurationResponseSuccess
1321
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReplicationConfiguration]
1322
+ def associate_default_security_group: () -> bool
1323
+ def bandwidth_throttling: () -> ::Integer
1324
+ def create_public_ip: () -> bool
1325
+ def data_plane_routing: () -> ("PRIVATE_IP" | "PUBLIC_IP")
1326
+ def default_large_staging_disk_type: () -> ("GP2" | "ST1" | "GP3")
1327
+ def ebs_encryption: () -> ("DEFAULT" | "CUSTOM")
1328
+ def ebs_encryption_key_arn: () -> ::String
1329
+ def name: () -> ::String
1330
+ def replicated_disks: () -> ::Array[Types::ReplicationConfigurationReplicatedDisk]
1331
+ def replication_server_instance_type: () -> ::String
1332
+ def replication_servers_security_groups_i_ds: () -> ::Array[::String]
1333
+ def source_server_id: () -> ::String
1334
+ def staging_area_subnet_id: () -> ::String
1335
+ def staging_area_tags: () -> ::Hash[::String, ::String]
1336
+ def use_dedicated_replication_server: () -> bool
1337
+ def use_fips_endpoint: () -> bool
1338
+ end
1339
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_replication_configuration-instance_method
1340
+ def update_replication_configuration: (
1341
+ ?account_id: ::String,
1342
+ ?associate_default_security_group: bool,
1343
+ ?bandwidth_throttling: ::Integer,
1344
+ ?create_public_ip: bool,
1345
+ ?data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP"),
1346
+ ?default_large_staging_disk_type: ("GP2" | "ST1" | "GP3"),
1347
+ ?ebs_encryption: ("DEFAULT" | "CUSTOM"),
1348
+ ?ebs_encryption_key_arn: ::String,
1349
+ ?name: ::String,
1350
+ ?replicated_disks: Array[
1351
+ {
1352
+ device_name: ::String?,
1353
+ iops: ::Integer?,
1354
+ is_boot_disk: bool?,
1355
+ staging_disk_type: ("AUTO" | "GP2" | "IO1" | "SC1" | "ST1" | "STANDARD" | "GP3" | "IO2")?,
1356
+ throughput: ::Integer?
1357
+ },
1358
+ ],
1359
+ ?replication_server_instance_type: ::String,
1360
+ ?replication_servers_security_groups_i_ds: Array[::String],
1361
+ source_server_id: ::String,
1362
+ ?staging_area_subnet_id: ::String,
1363
+ ?staging_area_tags: Hash[::String, ::String],
1364
+ ?use_dedicated_replication_server: bool,
1365
+ ?use_fips_endpoint: bool
1366
+ ) -> _UpdateReplicationConfigurationResponseSuccess
1367
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReplicationConfigurationResponseSuccess
1368
+
1369
+ interface _UpdateReplicationConfigurationTemplateResponseSuccess
1370
+ include ::Seahorse::Client::_ResponseSuccess[Types::ReplicationConfigurationTemplate]
1371
+ def arn: () -> ::String
1372
+ def associate_default_security_group: () -> bool
1373
+ def bandwidth_throttling: () -> ::Integer
1374
+ def create_public_ip: () -> bool
1375
+ def data_plane_routing: () -> ("PRIVATE_IP" | "PUBLIC_IP")
1376
+ def default_large_staging_disk_type: () -> ("GP2" | "ST1" | "GP3")
1377
+ def ebs_encryption: () -> ("DEFAULT" | "CUSTOM")
1378
+ def ebs_encryption_key_arn: () -> ::String
1379
+ def replication_configuration_template_id: () -> ::String
1380
+ def replication_server_instance_type: () -> ::String
1381
+ def replication_servers_security_groups_i_ds: () -> ::Array[::String]
1382
+ def staging_area_subnet_id: () -> ::String
1383
+ def staging_area_tags: () -> ::Hash[::String, ::String]
1384
+ def tags: () -> ::Hash[::String, ::String]
1385
+ def use_dedicated_replication_server: () -> bool
1386
+ def use_fips_endpoint: () -> bool
1387
+ end
1388
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_replication_configuration_template-instance_method
1389
+ def update_replication_configuration_template: (
1390
+ ?arn: ::String,
1391
+ ?associate_default_security_group: bool,
1392
+ ?bandwidth_throttling: ::Integer,
1393
+ ?create_public_ip: bool,
1394
+ ?data_plane_routing: ("PRIVATE_IP" | "PUBLIC_IP"),
1395
+ ?default_large_staging_disk_type: ("GP2" | "ST1" | "GP3"),
1396
+ ?ebs_encryption: ("DEFAULT" | "CUSTOM"),
1397
+ ?ebs_encryption_key_arn: ::String,
1398
+ replication_configuration_template_id: ::String,
1399
+ ?replication_server_instance_type: ::String,
1400
+ ?replication_servers_security_groups_i_ds: Array[::String],
1401
+ ?staging_area_subnet_id: ::String,
1402
+ ?staging_area_tags: Hash[::String, ::String],
1403
+ ?use_dedicated_replication_server: bool,
1404
+ ?use_fips_endpoint: bool
1405
+ ) -> _UpdateReplicationConfigurationTemplateResponseSuccess
1406
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateReplicationConfigurationTemplateResponseSuccess
1407
+
1408
+ interface _UpdateSourceServerResponseSuccess
1409
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
1410
+ def application_id: () -> ::String
1411
+ def arn: () -> ::String
1412
+ def connector_action: () -> Types::SourceServerConnectorAction
1413
+ def data_replication_info: () -> Types::DataReplicationInfo
1414
+ def fqdn_for_action_framework: () -> ::String
1415
+ def is_archived: () -> bool
1416
+ def launched_instance: () -> Types::LaunchedInstance
1417
+ def life_cycle: () -> Types::LifeCycle
1418
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
1419
+ def source_properties: () -> Types::SourceProperties
1420
+ def source_server_id: () -> ::String
1421
+ def tags: () -> ::Hash[::String, ::String]
1422
+ def user_provided_id: () -> ::String
1423
+ def vcenter_client_id: () -> ::String
1424
+ end
1425
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_source_server-instance_method
1426
+ def update_source_server: (
1427
+ ?account_id: ::String,
1428
+ ?connector_action: {
1429
+ connector_arn: ::String?,
1430
+ credentials_secret_arn: ::String?
1431
+ },
1432
+ source_server_id: ::String
1433
+ ) -> _UpdateSourceServerResponseSuccess
1434
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSourceServerResponseSuccess
1435
+
1436
+ interface _UpdateSourceServerReplicationTypeResponseSuccess
1437
+ include ::Seahorse::Client::_ResponseSuccess[Types::SourceServer]
1438
+ def application_id: () -> ::String
1439
+ def arn: () -> ::String
1440
+ def connector_action: () -> Types::SourceServerConnectorAction
1441
+ def data_replication_info: () -> Types::DataReplicationInfo
1442
+ def fqdn_for_action_framework: () -> ::String
1443
+ def is_archived: () -> bool
1444
+ def launched_instance: () -> Types::LaunchedInstance
1445
+ def life_cycle: () -> Types::LifeCycle
1446
+ def replication_type: () -> ("AGENT_BASED" | "SNAPSHOT_SHIPPING")
1447
+ def source_properties: () -> Types::SourceProperties
1448
+ def source_server_id: () -> ::String
1449
+ def tags: () -> ::Hash[::String, ::String]
1450
+ def user_provided_id: () -> ::String
1451
+ def vcenter_client_id: () -> ::String
1452
+ end
1453
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_source_server_replication_type-instance_method
1454
+ def update_source_server_replication_type: (
1455
+ ?account_id: ::String,
1456
+ replication_type: ("AGENT_BASED" | "SNAPSHOT_SHIPPING"),
1457
+ source_server_id: ::String
1458
+ ) -> _UpdateSourceServerReplicationTypeResponseSuccess
1459
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSourceServerReplicationTypeResponseSuccess
1460
+
1461
+ interface _UpdateWaveResponseSuccess
1462
+ include ::Seahorse::Client::_ResponseSuccess[Types::Wave]
1463
+ def arn: () -> ::String
1464
+ def creation_date_time: () -> ::String
1465
+ def description: () -> ::String
1466
+ def is_archived: () -> bool
1467
+ def last_modified_date_time: () -> ::String
1468
+ def name: () -> ::String
1469
+ def tags: () -> ::Hash[::String, ::String]
1470
+ def wave_aggregated_status: () -> Types::WaveAggregatedStatus
1471
+ def wave_id: () -> ::String
1472
+ end
1473
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_wave-instance_method
1474
+ def update_wave: (
1475
+ ?account_id: ::String,
1476
+ ?description: ::String,
1477
+ ?name: ::String,
1478
+ wave_id: ::String
1479
+ ) -> _UpdateWaveResponseSuccess
1480
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWaveResponseSuccess
1481
+ end
1482
+ end
1483
+ end
1484
+