aws-sdk-mgn 1.15.0 → 1.17.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 +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mgn/client.rb +1318 -34
- data/lib/aws-sdk-mgn/client_api.rb +631 -6
- data/lib/aws-sdk-mgn/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-mgn/endpoints.rb +308 -0
- data/lib/aws-sdk-mgn/plugins/endpoints.rb +44 -0
- data/lib/aws-sdk-mgn/types.rb +1236 -535
- data/lib/aws-sdk-mgn.rb +2 -2
- metadata +2 -2
data/lib/aws-sdk-mgn/types.rb
CHANGED
@@ -27,6 +27,158 @@ module Aws::Mgn
|
|
27
27
|
include Aws::Structure
|
28
28
|
end
|
29
29
|
|
30
|
+
# @!attribute [rw] application_aggregated_status
|
31
|
+
# Application aggregated status.
|
32
|
+
# @return [Types::ApplicationAggregatedStatus]
|
33
|
+
#
|
34
|
+
# @!attribute [rw] application_id
|
35
|
+
# Application ID.
|
36
|
+
# @return [String]
|
37
|
+
#
|
38
|
+
# @!attribute [rw] arn
|
39
|
+
# Application ARN.
|
40
|
+
# @return [String]
|
41
|
+
#
|
42
|
+
# @!attribute [rw] creation_date_time
|
43
|
+
# Application creation dateTime.
|
44
|
+
# @return [String]
|
45
|
+
#
|
46
|
+
# @!attribute [rw] description
|
47
|
+
# Application description.
|
48
|
+
# @return [String]
|
49
|
+
#
|
50
|
+
# @!attribute [rw] is_archived
|
51
|
+
# Application archival status.
|
52
|
+
# @return [Boolean]
|
53
|
+
#
|
54
|
+
# @!attribute [rw] last_modified_date_time
|
55
|
+
# Application last modified dateTime.
|
56
|
+
# @return [String]
|
57
|
+
#
|
58
|
+
# @!attribute [rw] name
|
59
|
+
# Application name.
|
60
|
+
# @return [String]
|
61
|
+
#
|
62
|
+
# @!attribute [rw] tags
|
63
|
+
# Application tags.
|
64
|
+
# @return [Hash<String,String>]
|
65
|
+
#
|
66
|
+
# @!attribute [rw] wave_id
|
67
|
+
# Application wave ID.
|
68
|
+
# @return [String]
|
69
|
+
#
|
70
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/Application AWS API Documentation
|
71
|
+
#
|
72
|
+
class Application < Struct.new(
|
73
|
+
:application_aggregated_status,
|
74
|
+
:application_id,
|
75
|
+
:arn,
|
76
|
+
:creation_date_time,
|
77
|
+
:description,
|
78
|
+
:is_archived,
|
79
|
+
:last_modified_date_time,
|
80
|
+
:name,
|
81
|
+
:tags,
|
82
|
+
:wave_id)
|
83
|
+
SENSITIVE = [:tags]
|
84
|
+
include Aws::Structure
|
85
|
+
end
|
86
|
+
|
87
|
+
# Application aggregated status.
|
88
|
+
#
|
89
|
+
# @!attribute [rw] health_status
|
90
|
+
# Application aggregated status health status.
|
91
|
+
# @return [String]
|
92
|
+
#
|
93
|
+
# @!attribute [rw] last_update_date_time
|
94
|
+
# Application aggregated status last update dateTime.
|
95
|
+
# @return [String]
|
96
|
+
#
|
97
|
+
# @!attribute [rw] progress_status
|
98
|
+
# Application aggregated status progress status.
|
99
|
+
# @return [String]
|
100
|
+
#
|
101
|
+
# @!attribute [rw] total_source_servers
|
102
|
+
# Application aggregated status total source servers amount.
|
103
|
+
# @return [Integer]
|
104
|
+
#
|
105
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ApplicationAggregatedStatus AWS API Documentation
|
106
|
+
#
|
107
|
+
class ApplicationAggregatedStatus < Struct.new(
|
108
|
+
:health_status,
|
109
|
+
:last_update_date_time,
|
110
|
+
:progress_status,
|
111
|
+
:total_source_servers)
|
112
|
+
SENSITIVE = []
|
113
|
+
include Aws::Structure
|
114
|
+
end
|
115
|
+
|
116
|
+
# @!attribute [rw] application_id
|
117
|
+
# Application ID.
|
118
|
+
# @return [String]
|
119
|
+
#
|
120
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ArchiveApplicationRequest AWS API Documentation
|
121
|
+
#
|
122
|
+
class ArchiveApplicationRequest < Struct.new(
|
123
|
+
:application_id)
|
124
|
+
SENSITIVE = []
|
125
|
+
include Aws::Structure
|
126
|
+
end
|
127
|
+
|
128
|
+
# @!attribute [rw] wave_id
|
129
|
+
# Wave ID.
|
130
|
+
# @return [String]
|
131
|
+
#
|
132
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ArchiveWaveRequest AWS API Documentation
|
133
|
+
#
|
134
|
+
class ArchiveWaveRequest < Struct.new(
|
135
|
+
:wave_id)
|
136
|
+
SENSITIVE = []
|
137
|
+
include Aws::Structure
|
138
|
+
end
|
139
|
+
|
140
|
+
# @!attribute [rw] application_i_ds
|
141
|
+
# Application IDs list.
|
142
|
+
# @return [Array<String>]
|
143
|
+
#
|
144
|
+
# @!attribute [rw] wave_id
|
145
|
+
# Wave ID.
|
146
|
+
# @return [String]
|
147
|
+
#
|
148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateApplicationsRequest AWS API Documentation
|
149
|
+
#
|
150
|
+
class AssociateApplicationsRequest < Struct.new(
|
151
|
+
:application_i_ds,
|
152
|
+
:wave_id)
|
153
|
+
SENSITIVE = []
|
154
|
+
include Aws::Structure
|
155
|
+
end
|
156
|
+
|
157
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateApplicationsResponse AWS API Documentation
|
158
|
+
#
|
159
|
+
class AssociateApplicationsResponse < Aws::EmptyStructure; end
|
160
|
+
|
161
|
+
# @!attribute [rw] application_id
|
162
|
+
# Application ID.
|
163
|
+
# @return [String]
|
164
|
+
#
|
165
|
+
# @!attribute [rw] source_server_i_ds
|
166
|
+
# Source server IDs list.
|
167
|
+
# @return [Array<String>]
|
168
|
+
#
|
169
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateSourceServersRequest AWS API Documentation
|
170
|
+
#
|
171
|
+
class AssociateSourceServersRequest < Struct.new(
|
172
|
+
:application_id,
|
173
|
+
:source_server_i_ds)
|
174
|
+
SENSITIVE = []
|
175
|
+
include Aws::Structure
|
176
|
+
end
|
177
|
+
|
178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateSourceServersResponse AWS API Documentation
|
179
|
+
#
|
180
|
+
class AssociateSourceServersResponse < Aws::EmptyStructure; end
|
181
|
+
|
30
182
|
# Source server CPU information.
|
31
183
|
#
|
32
184
|
# @!attribute [rw] cores
|
@@ -46,16 +198,6 @@ module Aws::Mgn
|
|
46
198
|
include Aws::Structure
|
47
199
|
end
|
48
200
|
|
49
|
-
# @note When making an API call, you may pass ChangeServerLifeCycleStateRequest
|
50
|
-
# data as a hash:
|
51
|
-
#
|
52
|
-
# {
|
53
|
-
# life_cycle: { # required
|
54
|
-
# state: "READY_FOR_TEST", # required, accepts READY_FOR_TEST, READY_FOR_CUTOVER, CUTOVER
|
55
|
-
# },
|
56
|
-
# source_server_id: "SourceServerID", # required
|
57
|
-
# }
|
58
|
-
#
|
59
201
|
# @!attribute [rw] life_cycle
|
60
202
|
# The request to change the source server migration lifecycle state.
|
61
203
|
# @return [Types::ChangeServerLifeCycleStateSourceServerLifecycle]
|
@@ -76,13 +218,6 @@ module Aws::Mgn
|
|
76
218
|
|
77
219
|
# The request to change the source server migration lifecycle state.
|
78
220
|
#
|
79
|
-
# @note When making an API call, you may pass ChangeServerLifeCycleStateSourceServerLifecycle
|
80
|
-
# data as a hash:
|
81
|
-
#
|
82
|
-
# {
|
83
|
-
# state: "READY_FOR_TEST", # required, accepts READY_FOR_TEST, READY_FOR_CUTOVER, CUTOVER
|
84
|
-
# }
|
85
|
-
#
|
86
221
|
# @!attribute [rw] state
|
87
222
|
# The request to change the source server migration lifecycle state.
|
88
223
|
# @return [String]
|
@@ -128,79 +263,106 @@ module Aws::Mgn
|
|
128
263
|
include Aws::Structure
|
129
264
|
end
|
130
265
|
|
131
|
-
#
|
132
|
-
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
#
|
139
|
-
#
|
140
|
-
#
|
141
|
-
#
|
142
|
-
#
|
143
|
-
#
|
144
|
-
#
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
#
|
154
|
-
#
|
155
|
-
#
|
156
|
-
#
|
157
|
-
#
|
158
|
-
#
|
159
|
-
#
|
160
|
-
#
|
266
|
+
# @!attribute [rw] description
|
267
|
+
# Application description.
|
268
|
+
# @return [String]
|
269
|
+
#
|
270
|
+
# @!attribute [rw] name
|
271
|
+
# Application name.
|
272
|
+
# @return [String]
|
273
|
+
#
|
274
|
+
# @!attribute [rw] tags
|
275
|
+
# Application tags.
|
276
|
+
# @return [Hash<String,String>]
|
277
|
+
#
|
278
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateApplicationRequest AWS API Documentation
|
279
|
+
#
|
280
|
+
class CreateApplicationRequest < Struct.new(
|
281
|
+
:description,
|
282
|
+
:name,
|
283
|
+
:tags)
|
284
|
+
SENSITIVE = [:tags]
|
285
|
+
include Aws::Structure
|
286
|
+
end
|
287
|
+
|
288
|
+
# @!attribute [rw] associate_public_ip_address
|
289
|
+
# Associate public Ip address.
|
290
|
+
# @return [Boolean]
|
291
|
+
#
|
292
|
+
# @!attribute [rw] boot_mode
|
293
|
+
# Launch configuration template boot mode.
|
294
|
+
# @return [String]
|
295
|
+
#
|
296
|
+
# @!attribute [rw] copy_private_ip
|
297
|
+
# Copy private Ip.
|
298
|
+
# @return [Boolean]
|
299
|
+
#
|
300
|
+
# @!attribute [rw] copy_tags
|
301
|
+
# Copy tags.
|
302
|
+
# @return [Boolean]
|
303
|
+
#
|
304
|
+
# @!attribute [rw] enable_map_auto_tagging
|
305
|
+
# Enable map auto tagging.
|
306
|
+
# @return [Boolean]
|
307
|
+
#
|
308
|
+
# @!attribute [rw] large_volume_conf
|
309
|
+
# Large volume config.
|
310
|
+
# @return [Types::LaunchTemplateDiskConf]
|
311
|
+
#
|
312
|
+
# @!attribute [rw] launch_disposition
|
313
|
+
# Launch disposition.
|
314
|
+
# @return [String]
|
315
|
+
#
|
316
|
+
# @!attribute [rw] licensing
|
317
|
+
# Configure Licensing.
|
318
|
+
# @return [Types::Licensing]
|
319
|
+
#
|
320
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
321
|
+
# Launch configuration template map auto tagging MPE ID.
|
322
|
+
# @return [String]
|
161
323
|
#
|
162
324
|
# @!attribute [rw] post_launch_actions
|
163
|
-
#
|
164
|
-
# Security group with the Replication Settings template.
|
325
|
+
# Launch configuration template post launch actions.
|
165
326
|
# @return [Types::PostLaunchActions]
|
166
327
|
#
|
328
|
+
# @!attribute [rw] small_volume_conf
|
329
|
+
# Small volume config.
|
330
|
+
# @return [Types::LaunchTemplateDiskConf]
|
331
|
+
#
|
332
|
+
# @!attribute [rw] small_volume_max_size
|
333
|
+
# Small volume maximum size.
|
334
|
+
# @return [Integer]
|
335
|
+
#
|
167
336
|
# @!attribute [rw] tags
|
168
|
-
# Request to associate
|
169
|
-
#
|
337
|
+
# Request to associate tags during creation of a Launch Configuration
|
338
|
+
# Template.
|
170
339
|
# @return [Hash<String,String>]
|
171
340
|
#
|
341
|
+
# @!attribute [rw] target_instance_type_right_sizing_method
|
342
|
+
# Target instance type right-sizing method.
|
343
|
+
# @return [String]
|
344
|
+
#
|
172
345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateLaunchConfigurationTemplateRequest AWS API Documentation
|
173
346
|
#
|
174
347
|
class CreateLaunchConfigurationTemplateRequest < Struct.new(
|
348
|
+
:associate_public_ip_address,
|
349
|
+
:boot_mode,
|
350
|
+
:copy_private_ip,
|
351
|
+
:copy_tags,
|
352
|
+
:enable_map_auto_tagging,
|
353
|
+
:large_volume_conf,
|
354
|
+
:launch_disposition,
|
355
|
+
:licensing,
|
356
|
+
:map_auto_tagging_mpe_id,
|
175
357
|
:post_launch_actions,
|
176
|
-
:
|
358
|
+
:small_volume_conf,
|
359
|
+
:small_volume_max_size,
|
360
|
+
:tags,
|
361
|
+
:target_instance_type_right_sizing_method)
|
177
362
|
SENSITIVE = [:tags]
|
178
363
|
include Aws::Structure
|
179
364
|
end
|
180
365
|
|
181
|
-
# @note When making an API call, you may pass CreateReplicationConfigurationTemplateRequest
|
182
|
-
# data as a hash:
|
183
|
-
#
|
184
|
-
# {
|
185
|
-
# associate_default_security_group: false, # required
|
186
|
-
# bandwidth_throttling: 1, # required
|
187
|
-
# create_public_ip: false, # required
|
188
|
-
# data_plane_routing: "PRIVATE_IP", # required, accepts PRIVATE_IP, PUBLIC_IP
|
189
|
-
# default_large_staging_disk_type: "GP2", # required, accepts GP2, ST1, GP3
|
190
|
-
# ebs_encryption: "DEFAULT", # required, accepts DEFAULT, CUSTOM
|
191
|
-
# ebs_encryption_key_arn: "ARN",
|
192
|
-
# replication_server_instance_type: "EC2InstanceType", # required
|
193
|
-
# replication_servers_security_groups_i_ds: ["SecurityGroupID"], # required
|
194
|
-
# staging_area_subnet_id: "SubnetID", # required
|
195
|
-
# staging_area_tags: { # required
|
196
|
-
# "TagKey" => "TagValue",
|
197
|
-
# },
|
198
|
-
# tags: {
|
199
|
-
# "TagKey" => "TagValue",
|
200
|
-
# },
|
201
|
-
# use_dedicated_replication_server: false, # required
|
202
|
-
# }
|
203
|
-
#
|
204
366
|
# @!attribute [rw] associate_default_security_group
|
205
367
|
# Request to associate the default Application Migration Service
|
206
368
|
# Security group with the Replication Settings template.
|
@@ -286,6 +448,28 @@ module Aws::Mgn
|
|
286
448
|
include Aws::Structure
|
287
449
|
end
|
288
450
|
|
451
|
+
# @!attribute [rw] description
|
452
|
+
# Wave description.
|
453
|
+
# @return [String]
|
454
|
+
#
|
455
|
+
# @!attribute [rw] name
|
456
|
+
# Wave name.
|
457
|
+
# @return [String]
|
458
|
+
#
|
459
|
+
# @!attribute [rw] tags
|
460
|
+
# Wave tags.
|
461
|
+
# @return [Hash<String,String>]
|
462
|
+
#
|
463
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateWaveRequest AWS API Documentation
|
464
|
+
#
|
465
|
+
class CreateWaveRequest < Struct.new(
|
466
|
+
:description,
|
467
|
+
:name,
|
468
|
+
:tags)
|
469
|
+
SENSITIVE = [:tags]
|
470
|
+
include Aws::Structure
|
471
|
+
end
|
472
|
+
|
289
473
|
# Error in data replication.
|
290
474
|
#
|
291
475
|
# @!attribute [rw] error
|
@@ -426,13 +610,22 @@ module Aws::Mgn
|
|
426
610
|
include Aws::Structure
|
427
611
|
end
|
428
612
|
|
429
|
-
#
|
430
|
-
#
|
613
|
+
# @!attribute [rw] application_id
|
614
|
+
# Application ID.
|
615
|
+
# @return [String]
|
616
|
+
#
|
617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteApplicationRequest AWS API Documentation
|
431
618
|
#
|
432
|
-
|
433
|
-
|
434
|
-
|
619
|
+
class DeleteApplicationRequest < Struct.new(
|
620
|
+
:application_id)
|
621
|
+
SENSITIVE = []
|
622
|
+
include Aws::Structure
|
623
|
+
end
|
624
|
+
|
625
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteApplicationResponse AWS API Documentation
|
435
626
|
#
|
627
|
+
class DeleteApplicationResponse < Aws::EmptyStructure; end
|
628
|
+
|
436
629
|
# @!attribute [rw] job_id
|
437
630
|
# Request to delete Job from service by Job ID.
|
438
631
|
# @return [String]
|
@@ -449,13 +642,6 @@ module Aws::Mgn
|
|
449
642
|
#
|
450
643
|
class DeleteJobResponse < Aws::EmptyStructure; end
|
451
644
|
|
452
|
-
# @note When making an API call, you may pass DeleteLaunchConfigurationTemplateRequest
|
453
|
-
# data as a hash:
|
454
|
-
#
|
455
|
-
# {
|
456
|
-
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
457
|
-
# }
|
458
|
-
#
|
459
645
|
# @!attribute [rw] launch_configuration_template_id
|
460
646
|
# ID of resource to be deleted.
|
461
647
|
# @return [String]
|
@@ -472,13 +658,6 @@ module Aws::Mgn
|
|
472
658
|
#
|
473
659
|
class DeleteLaunchConfigurationTemplateResponse < Aws::EmptyStructure; end
|
474
660
|
|
475
|
-
# @note When making an API call, you may pass DeleteReplicationConfigurationTemplateRequest
|
476
|
-
# data as a hash:
|
477
|
-
#
|
478
|
-
# {
|
479
|
-
# replication_configuration_template_id: "ReplicationConfigurationTemplateID", # required
|
480
|
-
# }
|
481
|
-
#
|
482
661
|
# @!attribute [rw] replication_configuration_template_id
|
483
662
|
# Request to delete Replication Configuration Template from service by
|
484
663
|
# Replication Configuration Template ID.
|
@@ -496,13 +675,6 @@ module Aws::Mgn
|
|
496
675
|
#
|
497
676
|
class DeleteReplicationConfigurationTemplateResponse < Aws::EmptyStructure; end
|
498
677
|
|
499
|
-
# @note When making an API call, you may pass DeleteSourceServerRequest
|
500
|
-
# data as a hash:
|
501
|
-
#
|
502
|
-
# {
|
503
|
-
# source_server_id: "SourceServerID", # required
|
504
|
-
# }
|
505
|
-
#
|
506
678
|
# @!attribute [rw] source_server_id
|
507
679
|
# Request to delete Source Server from service by Server ID.
|
508
680
|
# @return [String]
|
@@ -519,13 +691,6 @@ module Aws::Mgn
|
|
519
691
|
#
|
520
692
|
class DeleteSourceServerResponse < Aws::EmptyStructure; end
|
521
693
|
|
522
|
-
# @note When making an API call, you may pass DeleteVcenterClientRequest
|
523
|
-
# data as a hash:
|
524
|
-
#
|
525
|
-
# {
|
526
|
-
# vcenter_client_id: "VcenterClientID", # required
|
527
|
-
# }
|
528
|
-
#
|
529
694
|
# @!attribute [rw] vcenter_client_id
|
530
695
|
# ID of resource to be deleted.
|
531
696
|
# @return [String]
|
@@ -538,15 +703,22 @@ module Aws::Mgn
|
|
538
703
|
include Aws::Structure
|
539
704
|
end
|
540
705
|
|
541
|
-
#
|
542
|
-
#
|
706
|
+
# @!attribute [rw] wave_id
|
707
|
+
# Wave ID.
|
708
|
+
# @return [String]
|
543
709
|
#
|
544
|
-
#
|
545
|
-
# job_id: "JobID", # required
|
546
|
-
# max_results: 1,
|
547
|
-
# next_token: "PaginationToken",
|
548
|
-
# }
|
710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteWaveRequest AWS API Documentation
|
549
711
|
#
|
712
|
+
class DeleteWaveRequest < Struct.new(
|
713
|
+
:wave_id)
|
714
|
+
SENSITIVE = []
|
715
|
+
include Aws::Structure
|
716
|
+
end
|
717
|
+
|
718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteWaveResponse AWS API Documentation
|
719
|
+
#
|
720
|
+
class DeleteWaveResponse < Aws::EmptyStructure; end
|
721
|
+
|
550
722
|
# @!attribute [rw] job_id
|
551
723
|
# Request to describe Job log job ID.
|
552
724
|
# @return [String]
|
@@ -586,19 +758,6 @@ module Aws::Mgn
|
|
586
758
|
include Aws::Structure
|
587
759
|
end
|
588
760
|
|
589
|
-
# @note When making an API call, you may pass DescribeJobsRequest
|
590
|
-
# data as a hash:
|
591
|
-
#
|
592
|
-
# {
|
593
|
-
# filters: {
|
594
|
-
# from_date: "ISO8601DatetimeString",
|
595
|
-
# job_i_ds: ["JobID"],
|
596
|
-
# to_date: "ISO8601DatetimeString",
|
597
|
-
# },
|
598
|
-
# max_results: 1,
|
599
|
-
# next_token: "PaginationToken",
|
600
|
-
# }
|
601
|
-
#
|
602
761
|
# @!attribute [rw] filters
|
603
762
|
# Request to describe Job log filters.
|
604
763
|
# @return [Types::DescribeJobsRequestFilters]
|
@@ -623,15 +782,6 @@ module Aws::Mgn
|
|
623
782
|
|
624
783
|
# Request to describe Job log filters.
|
625
784
|
#
|
626
|
-
# @note When making an API call, you may pass DescribeJobsRequestFilters
|
627
|
-
# data as a hash:
|
628
|
-
#
|
629
|
-
# {
|
630
|
-
# from_date: "ISO8601DatetimeString",
|
631
|
-
# job_i_ds: ["JobID"],
|
632
|
-
# to_date: "ISO8601DatetimeString",
|
633
|
-
# }
|
634
|
-
#
|
635
785
|
# @!attribute [rw] from_date
|
636
786
|
# Request to describe Job log filters by date.
|
637
787
|
# @return [String]
|
@@ -671,25 +821,19 @@ module Aws::Mgn
|
|
671
821
|
include Aws::Structure
|
672
822
|
end
|
673
823
|
|
674
|
-
# @note When making an API call, you may pass DescribeLaunchConfigurationTemplatesRequest
|
675
|
-
# data as a hash:
|
676
|
-
#
|
677
|
-
# {
|
678
|
-
# launch_configuration_template_i_ds: ["LaunchConfigurationTemplateID"],
|
679
|
-
# max_results: 1,
|
680
|
-
# next_token: "PaginationToken",
|
681
|
-
# }
|
682
|
-
#
|
683
824
|
# @!attribute [rw] launch_configuration_template_i_ds
|
684
|
-
# Request to
|
825
|
+
# Request to filter Launch Configuration Templates list by Launch
|
826
|
+
# Configuration Template ID.
|
685
827
|
# @return [Array<String>]
|
686
828
|
#
|
687
829
|
# @!attribute [rw] max_results
|
688
|
-
#
|
830
|
+
# Maximum results to be returned in
|
831
|
+
# DescribeLaunchConfigurationTemplates.
|
689
832
|
# @return [Integer]
|
690
833
|
#
|
691
834
|
# @!attribute [rw] next_token
|
692
|
-
#
|
835
|
+
# Next pagination token returned from
|
836
|
+
# DescribeLaunchConfigurationTemplates.
|
693
837
|
# @return [String]
|
694
838
|
#
|
695
839
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeLaunchConfigurationTemplatesRequest AWS API Documentation
|
@@ -703,11 +847,12 @@ module Aws::Mgn
|
|
703
847
|
end
|
704
848
|
|
705
849
|
# @!attribute [rw] items
|
706
|
-
#
|
850
|
+
# List of items returned by DescribeLaunchConfigurationTemplates.
|
707
851
|
# @return [Array<Types::LaunchConfigurationTemplate>]
|
708
852
|
#
|
709
853
|
# @!attribute [rw] next_token
|
710
|
-
#
|
854
|
+
# Next pagination token returned from
|
855
|
+
# DescribeLaunchConfigurationTemplates.
|
711
856
|
# @return [String]
|
712
857
|
#
|
713
858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeLaunchConfigurationTemplatesResponse AWS API Documentation
|
@@ -719,15 +864,6 @@ module Aws::Mgn
|
|
719
864
|
include Aws::Structure
|
720
865
|
end
|
721
866
|
|
722
|
-
# @note When making an API call, you may pass DescribeReplicationConfigurationTemplatesRequest
|
723
|
-
# data as a hash:
|
724
|
-
#
|
725
|
-
# {
|
726
|
-
# max_results: 1,
|
727
|
-
# next_token: "PaginationToken",
|
728
|
-
# replication_configuration_template_i_ds: ["ReplicationConfigurationTemplateID"],
|
729
|
-
# }
|
730
|
-
#
|
731
867
|
# @!attribute [rw] max_results
|
732
868
|
# Request to describe Replication Configuration template by max
|
733
869
|
# results.
|
@@ -771,20 +907,6 @@ module Aws::Mgn
|
|
771
907
|
include Aws::Structure
|
772
908
|
end
|
773
909
|
|
774
|
-
# @note When making an API call, you may pass DescribeSourceServersRequest
|
775
|
-
# data as a hash:
|
776
|
-
#
|
777
|
-
# {
|
778
|
-
# filters: {
|
779
|
-
# is_archived: false,
|
780
|
-
# life_cycle_states: ["STOPPED"], # accepts STOPPED, NOT_READY, READY_FOR_TEST, TESTING, READY_FOR_CUTOVER, CUTTING_OVER, CUTOVER, DISCONNECTED, DISCOVERED
|
781
|
-
# replication_types: ["AGENT_BASED"], # accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
782
|
-
# source_server_i_ds: ["SourceServerID"],
|
783
|
-
# },
|
784
|
-
# max_results: 1,
|
785
|
-
# next_token: "PaginationToken",
|
786
|
-
# }
|
787
|
-
#
|
788
910
|
# @!attribute [rw] filters
|
789
911
|
# Request to filter Source Servers list.
|
790
912
|
# @return [Types::DescribeSourceServersRequestFilters]
|
@@ -809,15 +931,9 @@ module Aws::Mgn
|
|
809
931
|
|
810
932
|
# Request to filter Source Servers list.
|
811
933
|
#
|
812
|
-
#
|
813
|
-
#
|
814
|
-
#
|
815
|
-
# {
|
816
|
-
# is_archived: false,
|
817
|
-
# life_cycle_states: ["STOPPED"], # accepts STOPPED, NOT_READY, READY_FOR_TEST, TESTING, READY_FOR_CUTOVER, CUTTING_OVER, CUTOVER, DISCONNECTED, DISCOVERED
|
818
|
-
# replication_types: ["AGENT_BASED"], # accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
819
|
-
# source_server_i_ds: ["SourceServerID"],
|
820
|
-
# }
|
934
|
+
# @!attribute [rw] application_i_ds
|
935
|
+
# Request to filter Source Servers list by application IDs.
|
936
|
+
# @return [Array<String>]
|
821
937
|
#
|
822
938
|
# @!attribute [rw] is_archived
|
823
939
|
# Request to filter Source Servers list by archived.
|
@@ -838,6 +954,7 @@ module Aws::Mgn
|
|
838
954
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeSourceServersRequestFilters AWS API Documentation
|
839
955
|
#
|
840
956
|
class DescribeSourceServersRequestFilters < Struct.new(
|
957
|
+
:application_i_ds,
|
841
958
|
:is_archived,
|
842
959
|
:life_cycle_states,
|
843
960
|
:replication_types,
|
@@ -863,14 +980,6 @@ module Aws::Mgn
|
|
863
980
|
include Aws::Structure
|
864
981
|
end
|
865
982
|
|
866
|
-
# @note When making an API call, you may pass DescribeVcenterClientsRequest
|
867
|
-
# data as a hash:
|
868
|
-
#
|
869
|
-
# {
|
870
|
-
# max_results: 1,
|
871
|
-
# next_token: "PaginationToken",
|
872
|
-
# }
|
873
|
-
#
|
874
983
|
# @!attribute [rw] max_results
|
875
984
|
# Maximum results to be returned in DescribeVcenterClients.
|
876
985
|
# @return [Integer]
|
@@ -905,13 +1014,48 @@ module Aws::Mgn
|
|
905
1014
|
include Aws::Structure
|
906
1015
|
end
|
907
1016
|
|
908
|
-
#
|
909
|
-
#
|
1017
|
+
# @!attribute [rw] application_i_ds
|
1018
|
+
# Application IDs list.
|
1019
|
+
# @return [Array<String>]
|
1020
|
+
#
|
1021
|
+
# @!attribute [rw] wave_id
|
1022
|
+
# Wave ID.
|
1023
|
+
# @return [String]
|
1024
|
+
#
|
1025
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateApplicationsRequest AWS API Documentation
|
1026
|
+
#
|
1027
|
+
class DisassociateApplicationsRequest < Struct.new(
|
1028
|
+
:application_i_ds,
|
1029
|
+
:wave_id)
|
1030
|
+
SENSITIVE = []
|
1031
|
+
include Aws::Structure
|
1032
|
+
end
|
1033
|
+
|
1034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateApplicationsResponse AWS API Documentation
|
1035
|
+
#
|
1036
|
+
class DisassociateApplicationsResponse < Aws::EmptyStructure; end
|
1037
|
+
|
1038
|
+
# @!attribute [rw] application_id
|
1039
|
+
# Application ID.
|
1040
|
+
# @return [String]
|
1041
|
+
#
|
1042
|
+
# @!attribute [rw] source_server_i_ds
|
1043
|
+
# Source server IDs list.
|
1044
|
+
# @return [Array<String>]
|
910
1045
|
#
|
911
|
-
#
|
912
|
-
# source_server_id: "SourceServerID", # required
|
913
|
-
# }
|
1046
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateSourceServersRequest AWS API Documentation
|
914
1047
|
#
|
1048
|
+
class DisassociateSourceServersRequest < Struct.new(
|
1049
|
+
:application_id,
|
1050
|
+
:source_server_i_ds)
|
1051
|
+
SENSITIVE = []
|
1052
|
+
include Aws::Structure
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateSourceServersResponse AWS API Documentation
|
1056
|
+
#
|
1057
|
+
class DisassociateSourceServersResponse < Aws::EmptyStructure; end
|
1058
|
+
|
915
1059
|
# @!attribute [rw] source_server_id
|
916
1060
|
# Request to disconnect Source Server from service by Server ID.
|
917
1061
|
# @return [String]
|
@@ -972,13 +1116,6 @@ module Aws::Mgn
|
|
972
1116
|
include Aws::Structure
|
973
1117
|
end
|
974
1118
|
|
975
|
-
# @note When making an API call, you may pass FinalizeCutoverRequest
|
976
|
-
# data as a hash:
|
977
|
-
#
|
978
|
-
# {
|
979
|
-
# source_server_id: "SourceServerID", # required
|
980
|
-
# }
|
981
|
-
#
|
982
1119
|
# @!attribute [rw] source_server_id
|
983
1120
|
# Request to finalize Cutover by Source Server ID.
|
984
1121
|
# @return [String]
|
@@ -991,13 +1128,6 @@ module Aws::Mgn
|
|
991
1128
|
include Aws::Structure
|
992
1129
|
end
|
993
1130
|
|
994
|
-
# @note When making an API call, you may pass GetLaunchConfigurationRequest
|
995
|
-
# data as a hash:
|
996
|
-
#
|
997
|
-
# {
|
998
|
-
# source_server_id: "SourceServerID", # required
|
999
|
-
# }
|
1000
|
-
#
|
1001
1131
|
# @!attribute [rw] source_server_id
|
1002
1132
|
# Request to get Launch Configuration information by Source Server ID.
|
1003
1133
|
# @return [String]
|
@@ -1010,13 +1140,6 @@ module Aws::Mgn
|
|
1010
1140
|
include Aws::Structure
|
1011
1141
|
end
|
1012
1142
|
|
1013
|
-
# @note When making an API call, you may pass GetReplicationConfigurationRequest
|
1014
|
-
# data as a hash:
|
1015
|
-
#
|
1016
|
-
# {
|
1017
|
-
# source_server_id: "SourceServerID", # required
|
1018
|
-
# }
|
1019
|
-
#
|
1020
1143
|
# @!attribute [rw] source_server_id
|
1021
1144
|
# Request to get Replication Configuration by Source Server ID.
|
1022
1145
|
# @return [String]
|
@@ -1201,26 +1324,28 @@ module Aws::Mgn
|
|
1201
1324
|
include Aws::Structure
|
1202
1325
|
end
|
1203
1326
|
|
1204
|
-
# Job
|
1327
|
+
# Launch Status of the Job Post Launch Actions.
|
1205
1328
|
#
|
1206
1329
|
# @!attribute [rw] execution_id
|
1207
|
-
# Job
|
1330
|
+
# AWS Systems Manager Document's execution ID of the of the Job Post
|
1331
|
+
# Launch Actions.
|
1208
1332
|
# @return [String]
|
1209
1333
|
#
|
1210
1334
|
# @!attribute [rw] execution_status
|
1211
|
-
#
|
1335
|
+
# AWS Systems Manager Document's execution status.
|
1212
1336
|
# @return [String]
|
1213
1337
|
#
|
1214
1338
|
# @!attribute [rw] failure_reason
|
1215
|
-
#
|
1339
|
+
# AWS Systems Manager Document's failure reason.
|
1216
1340
|
# @return [String]
|
1217
1341
|
#
|
1218
1342
|
# @!attribute [rw] ssm_document
|
1219
|
-
# Job
|
1343
|
+
# AWS Systems Manager's Document of the of the Job Post Launch
|
1344
|
+
# Actions.
|
1220
1345
|
# @return [Types::SsmDocument]
|
1221
1346
|
#
|
1222
1347
|
# @!attribute [rw] ssm_document_type
|
1223
|
-
#
|
1348
|
+
# AWS Systems Manager Document type.
|
1224
1349
|
# @return [String]
|
1225
1350
|
#
|
1226
1351
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/JobPostLaunchActionsLaunchStatus AWS API Documentation
|
@@ -1251,6 +1376,10 @@ module Aws::Mgn
|
|
1251
1376
|
# Launch configuration EC2 Launch template ID.
|
1252
1377
|
# @return [String]
|
1253
1378
|
#
|
1379
|
+
# @!attribute [rw] enable_map_auto_tagging
|
1380
|
+
# Enable map auto tagging.
|
1381
|
+
# @return [Boolean]
|
1382
|
+
#
|
1254
1383
|
# @!attribute [rw] launch_disposition
|
1255
1384
|
# Launch disposition for launch configuration.
|
1256
1385
|
# @return [String]
|
@@ -1259,12 +1388,16 @@ module Aws::Mgn
|
|
1259
1388
|
# Launch configuration OS licensing.
|
1260
1389
|
# @return [Types::Licensing]
|
1261
1390
|
#
|
1391
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
1392
|
+
# Map auto tagging MPE ID.
|
1393
|
+
# @return [String]
|
1394
|
+
#
|
1262
1395
|
# @!attribute [rw] name
|
1263
1396
|
# Launch configuration name.
|
1264
1397
|
# @return [String]
|
1265
1398
|
#
|
1266
1399
|
# @!attribute [rw] post_launch_actions
|
1267
|
-
#
|
1400
|
+
# Post Launch Actions to executed on the Test or Cutover instance.
|
1268
1401
|
# @return [Types::PostLaunchActions]
|
1269
1402
|
#
|
1270
1403
|
# @!attribute [rw] source_server_id
|
@@ -1282,8 +1415,10 @@ module Aws::Mgn
|
|
1282
1415
|
:copy_private_ip,
|
1283
1416
|
:copy_tags,
|
1284
1417
|
:ec2_launch_template_id,
|
1418
|
+
:enable_map_auto_tagging,
|
1285
1419
|
:launch_disposition,
|
1286
1420
|
:licensing,
|
1421
|
+
:map_auto_tagging_mpe_id,
|
1287
1422
|
:name,
|
1288
1423
|
:post_launch_actions,
|
1289
1424
|
:source_server_id,
|
@@ -1293,32 +1428,121 @@ module Aws::Mgn
|
|
1293
1428
|
end
|
1294
1429
|
|
1295
1430
|
# @!attribute [rw] arn
|
1296
|
-
#
|
1431
|
+
# ARN of the Launch Configuration Template.
|
1297
1432
|
# @return [String]
|
1298
1433
|
#
|
1299
|
-
# @!attribute [rw]
|
1300
|
-
#
|
1301
|
-
# @return [
|
1434
|
+
# @!attribute [rw] associate_public_ip_address
|
1435
|
+
# Associate public Ip address.
|
1436
|
+
# @return [Boolean]
|
1302
1437
|
#
|
1303
|
-
# @!attribute [rw]
|
1304
|
-
#
|
1305
|
-
# @return [
|
1438
|
+
# @!attribute [rw] boot_mode
|
1439
|
+
# Launch configuration template boot mode.
|
1440
|
+
# @return [String]
|
1306
1441
|
#
|
1307
|
-
# @!attribute [rw]
|
1308
|
-
# Copy
|
1309
|
-
# @return [
|
1442
|
+
# @!attribute [rw] copy_private_ip
|
1443
|
+
# Copy private Ip.
|
1444
|
+
# @return [Boolean]
|
1310
1445
|
#
|
1311
|
-
#
|
1446
|
+
# @!attribute [rw] copy_tags
|
1447
|
+
# Copy tags.
|
1448
|
+
# @return [Boolean]
|
1449
|
+
#
|
1450
|
+
# @!attribute [rw] ec2_launch_template_id
|
1451
|
+
# EC2 launch template ID.
|
1452
|
+
# @return [String]
|
1453
|
+
#
|
1454
|
+
# @!attribute [rw] enable_map_auto_tagging
|
1455
|
+
# Enable map auto tagging.
|
1456
|
+
# @return [Boolean]
|
1457
|
+
#
|
1458
|
+
# @!attribute [rw] large_volume_conf
|
1459
|
+
# Large volume config.
|
1460
|
+
# @return [Types::LaunchTemplateDiskConf]
|
1461
|
+
#
|
1462
|
+
# @!attribute [rw] launch_configuration_template_id
|
1463
|
+
# ID of the Launch Configuration Template.
|
1464
|
+
# @return [String]
|
1465
|
+
#
|
1466
|
+
# @!attribute [rw] launch_disposition
|
1467
|
+
# Launch disposition.
|
1468
|
+
# @return [String]
|
1469
|
+
#
|
1470
|
+
# @!attribute [rw] licensing
|
1471
|
+
# Configure Licensing.
|
1472
|
+
# @return [Types::Licensing]
|
1473
|
+
#
|
1474
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
1475
|
+
# Launch configuration template map auto tagging MPE ID.
|
1476
|
+
# @return [String]
|
1477
|
+
#
|
1478
|
+
# @!attribute [rw] post_launch_actions
|
1479
|
+
# Post Launch Actions of the Launch Configuration Template.
|
1480
|
+
# @return [Types::PostLaunchActions]
|
1481
|
+
#
|
1482
|
+
# @!attribute [rw] small_volume_conf
|
1483
|
+
# Small volume config.
|
1484
|
+
# @return [Types::LaunchTemplateDiskConf]
|
1485
|
+
#
|
1486
|
+
# @!attribute [rw] small_volume_max_size
|
1487
|
+
# Small volume maximum size.
|
1488
|
+
# @return [Integer]
|
1489
|
+
#
|
1490
|
+
# @!attribute [rw] tags
|
1491
|
+
# Tags of the Launch Configuration Template.
|
1492
|
+
# @return [Hash<String,String>]
|
1493
|
+
#
|
1494
|
+
# @!attribute [rw] target_instance_type_right_sizing_method
|
1495
|
+
# Target instance type right-sizing method.
|
1496
|
+
# @return [String]
|
1497
|
+
#
|
1498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchConfigurationTemplate AWS API Documentation
|
1312
1499
|
#
|
1313
1500
|
class LaunchConfigurationTemplate < Struct.new(
|
1314
1501
|
:arn,
|
1502
|
+
:associate_public_ip_address,
|
1503
|
+
:boot_mode,
|
1504
|
+
:copy_private_ip,
|
1505
|
+
:copy_tags,
|
1506
|
+
:ec2_launch_template_id,
|
1507
|
+
:enable_map_auto_tagging,
|
1508
|
+
:large_volume_conf,
|
1315
1509
|
:launch_configuration_template_id,
|
1510
|
+
:launch_disposition,
|
1511
|
+
:licensing,
|
1512
|
+
:map_auto_tagging_mpe_id,
|
1316
1513
|
:post_launch_actions,
|
1317
|
-
:
|
1514
|
+
:small_volume_conf,
|
1515
|
+
:small_volume_max_size,
|
1516
|
+
:tags,
|
1517
|
+
:target_instance_type_right_sizing_method)
|
1318
1518
|
SENSITIVE = [:tags]
|
1319
1519
|
include Aws::Structure
|
1320
1520
|
end
|
1321
1521
|
|
1522
|
+
# Launch template disk configuration.
|
1523
|
+
#
|
1524
|
+
# @!attribute [rw] iops
|
1525
|
+
# Launch template disk iops configuration.
|
1526
|
+
# @return [Integer]
|
1527
|
+
#
|
1528
|
+
# @!attribute [rw] throughput
|
1529
|
+
# Launch template disk throughput configuration.
|
1530
|
+
# @return [Integer]
|
1531
|
+
#
|
1532
|
+
# @!attribute [rw] volume_type
|
1533
|
+
# Launch template disk volume type configuration.
|
1534
|
+
# @return [String]
|
1535
|
+
#
|
1536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchTemplateDiskConf AWS API Documentation
|
1537
|
+
#
|
1538
|
+
class LaunchTemplateDiskConf < Struct.new(
|
1539
|
+
:iops,
|
1540
|
+
:throughput,
|
1541
|
+
:volume_type)
|
1542
|
+
SENSITIVE = []
|
1543
|
+
include Aws::Structure
|
1544
|
+
end
|
1545
|
+
|
1322
1546
|
# Launched instance.
|
1323
1547
|
#
|
1324
1548
|
# @!attribute [rw] ec2_instance_id
|
@@ -1345,13 +1569,6 @@ module Aws::Mgn
|
|
1345
1569
|
|
1346
1570
|
# Configure Licensing.
|
1347
1571
|
#
|
1348
|
-
# @note When making an API call, you may pass Licensing
|
1349
|
-
# data as a hash:
|
1350
|
-
#
|
1351
|
-
# {
|
1352
|
-
# os_byol: false,
|
1353
|
-
# }
|
1354
|
-
#
|
1355
1572
|
# @!attribute [rw] os_byol
|
1356
1573
|
# Configure BYOL OS licensing.
|
1357
1574
|
# @return [Boolean]
|
@@ -1549,13 +1766,117 @@ module Aws::Mgn
|
|
1549
1766
|
include Aws::Structure
|
1550
1767
|
end
|
1551
1768
|
|
1552
|
-
#
|
1553
|
-
#
|
1769
|
+
# @!attribute [rw] filters
|
1770
|
+
# Applications list filters.
|
1771
|
+
# @return [Types::ListApplicationsRequestFilters]
|
1772
|
+
#
|
1773
|
+
# @!attribute [rw] max_results
|
1774
|
+
# Maximum results to return when listing applications.
|
1775
|
+
# @return [Integer]
|
1776
|
+
#
|
1777
|
+
# @!attribute [rw] next_token
|
1778
|
+
# Request next token.
|
1779
|
+
# @return [String]
|
1780
|
+
#
|
1781
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListApplicationsRequest AWS API Documentation
|
1782
|
+
#
|
1783
|
+
class ListApplicationsRequest < Struct.new(
|
1784
|
+
:filters,
|
1785
|
+
:max_results,
|
1786
|
+
:next_token)
|
1787
|
+
SENSITIVE = []
|
1788
|
+
include Aws::Structure
|
1789
|
+
end
|
1790
|
+
|
1791
|
+
# Applications list filters.
|
1554
1792
|
#
|
1555
|
-
#
|
1556
|
-
#
|
1557
|
-
#
|
1793
|
+
# @!attribute [rw] application_i_ds
|
1794
|
+
# Filter applications list by application ID.
|
1795
|
+
# @return [Array<String>]
|
1558
1796
|
#
|
1797
|
+
# @!attribute [rw] is_archived
|
1798
|
+
# Filter applications list by archival status.
|
1799
|
+
# @return [Boolean]
|
1800
|
+
#
|
1801
|
+
# @!attribute [rw] wave_i_ds
|
1802
|
+
# Filter applications list by wave ID.
|
1803
|
+
# @return [Array<String>]
|
1804
|
+
#
|
1805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListApplicationsRequestFilters AWS API Documentation
|
1806
|
+
#
|
1807
|
+
class ListApplicationsRequestFilters < Struct.new(
|
1808
|
+
:application_i_ds,
|
1809
|
+
:is_archived,
|
1810
|
+
:wave_i_ds)
|
1811
|
+
SENSITIVE = []
|
1812
|
+
include Aws::Structure
|
1813
|
+
end
|
1814
|
+
|
1815
|
+
# @!attribute [rw] items
|
1816
|
+
# Applications list.
|
1817
|
+
# @return [Array<Types::Application>]
|
1818
|
+
#
|
1819
|
+
# @!attribute [rw] next_token
|
1820
|
+
# Response next token.
|
1821
|
+
# @return [String]
|
1822
|
+
#
|
1823
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListApplicationsResponse AWS API Documentation
|
1824
|
+
#
|
1825
|
+
class ListApplicationsResponse < Struct.new(
|
1826
|
+
:items,
|
1827
|
+
:next_token)
|
1828
|
+
SENSITIVE = []
|
1829
|
+
include Aws::Structure
|
1830
|
+
end
|
1831
|
+
|
1832
|
+
# @!attribute [rw] filters
|
1833
|
+
# Filters to apply when listing source server post migration custom
|
1834
|
+
# actions.
|
1835
|
+
# @return [Types::SourceServerActionsRequestFilters]
|
1836
|
+
#
|
1837
|
+
# @!attribute [rw] max_results
|
1838
|
+
# Maximum amount of items to return when listing source server post
|
1839
|
+
# migration custom actions.
|
1840
|
+
# @return [Integer]
|
1841
|
+
#
|
1842
|
+
# @!attribute [rw] next_token
|
1843
|
+
# Next token to use when listing source server post migration custom
|
1844
|
+
# actions.
|
1845
|
+
# @return [String]
|
1846
|
+
#
|
1847
|
+
# @!attribute [rw] source_server_id
|
1848
|
+
# Source server ID.
|
1849
|
+
# @return [String]
|
1850
|
+
#
|
1851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListSourceServerActionsRequest AWS API Documentation
|
1852
|
+
#
|
1853
|
+
class ListSourceServerActionsRequest < Struct.new(
|
1854
|
+
:filters,
|
1855
|
+
:max_results,
|
1856
|
+
:next_token,
|
1857
|
+
:source_server_id)
|
1858
|
+
SENSITIVE = []
|
1859
|
+
include Aws::Structure
|
1860
|
+
end
|
1861
|
+
|
1862
|
+
# @!attribute [rw] items
|
1863
|
+
# List of source server post migration custom actions.
|
1864
|
+
# @return [Array<Types::SourceServerActionDocument>]
|
1865
|
+
#
|
1866
|
+
# @!attribute [rw] next_token
|
1867
|
+
# Next token returned when listing source server post migration custom
|
1868
|
+
# actions.
|
1869
|
+
# @return [String]
|
1870
|
+
#
|
1871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListSourceServerActionsResponse AWS API Documentation
|
1872
|
+
#
|
1873
|
+
class ListSourceServerActionsResponse < Struct.new(
|
1874
|
+
:items,
|
1875
|
+
:next_token)
|
1876
|
+
SENSITIVE = []
|
1877
|
+
include Aws::Structure
|
1878
|
+
end
|
1879
|
+
|
1559
1880
|
# @!attribute [rw] resource_arn
|
1560
1881
|
# List tags for resource request by ARN.
|
1561
1882
|
# @return [String]
|
@@ -1580,13 +1901,112 @@ module Aws::Mgn
|
|
1580
1901
|
include Aws::Structure
|
1581
1902
|
end
|
1582
1903
|
|
1583
|
-
#
|
1584
|
-
#
|
1904
|
+
# @!attribute [rw] filters
|
1905
|
+
# Filters to apply when listing template post migration custom
|
1906
|
+
# actions.
|
1907
|
+
# @return [Types::TemplateActionsRequestFilters]
|
1908
|
+
#
|
1909
|
+
# @!attribute [rw] launch_configuration_template_id
|
1910
|
+
# Launch configuration template ID.
|
1911
|
+
# @return [String]
|
1912
|
+
#
|
1913
|
+
# @!attribute [rw] max_results
|
1914
|
+
# Maximum amount of items to return when listing template post
|
1915
|
+
# migration custom actions.
|
1916
|
+
# @return [Integer]
|
1917
|
+
#
|
1918
|
+
# @!attribute [rw] next_token
|
1919
|
+
# Next token to use when listing template post migration custom
|
1920
|
+
# actions.
|
1921
|
+
# @return [String]
|
1922
|
+
#
|
1923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListTemplateActionsRequest AWS API Documentation
|
1924
|
+
#
|
1925
|
+
class ListTemplateActionsRequest < Struct.new(
|
1926
|
+
:filters,
|
1927
|
+
:launch_configuration_template_id,
|
1928
|
+
:max_results,
|
1929
|
+
:next_token)
|
1930
|
+
SENSITIVE = []
|
1931
|
+
include Aws::Structure
|
1932
|
+
end
|
1933
|
+
|
1934
|
+
# @!attribute [rw] items
|
1935
|
+
# List of template post migration custom actions.
|
1936
|
+
# @return [Array<Types::TemplateActionDocument>]
|
1937
|
+
#
|
1938
|
+
# @!attribute [rw] next_token
|
1939
|
+
# Next token returned when listing template post migration custom
|
1940
|
+
# actions.
|
1941
|
+
# @return [String]
|
1942
|
+
#
|
1943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListTemplateActionsResponse AWS API Documentation
|
1944
|
+
#
|
1945
|
+
class ListTemplateActionsResponse < Struct.new(
|
1946
|
+
:items,
|
1947
|
+
:next_token)
|
1948
|
+
SENSITIVE = []
|
1949
|
+
include Aws::Structure
|
1950
|
+
end
|
1951
|
+
|
1952
|
+
# @!attribute [rw] filters
|
1953
|
+
# Waves list filters.
|
1954
|
+
# @return [Types::ListWavesRequestFilters]
|
1955
|
+
#
|
1956
|
+
# @!attribute [rw] max_results
|
1957
|
+
# Maximum results to return when listing waves.
|
1958
|
+
# @return [Integer]
|
1959
|
+
#
|
1960
|
+
# @!attribute [rw] next_token
|
1961
|
+
# Request next token.
|
1962
|
+
# @return [String]
|
1963
|
+
#
|
1964
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListWavesRequest AWS API Documentation
|
1965
|
+
#
|
1966
|
+
class ListWavesRequest < Struct.new(
|
1967
|
+
:filters,
|
1968
|
+
:max_results,
|
1969
|
+
:next_token)
|
1970
|
+
SENSITIVE = []
|
1971
|
+
include Aws::Structure
|
1972
|
+
end
|
1973
|
+
|
1974
|
+
# Waves list filters.
|
1585
1975
|
#
|
1586
|
-
#
|
1587
|
-
#
|
1588
|
-
#
|
1976
|
+
# @!attribute [rw] is_archived
|
1977
|
+
# Filter waves list by archival status.
|
1978
|
+
# @return [Boolean]
|
1979
|
+
#
|
1980
|
+
# @!attribute [rw] wave_i_ds
|
1981
|
+
# Filter waves list by wave ID.
|
1982
|
+
# @return [Array<String>]
|
1983
|
+
#
|
1984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListWavesRequestFilters AWS API Documentation
|
1589
1985
|
#
|
1986
|
+
class ListWavesRequestFilters < Struct.new(
|
1987
|
+
:is_archived,
|
1988
|
+
:wave_i_ds)
|
1989
|
+
SENSITIVE = []
|
1990
|
+
include Aws::Structure
|
1991
|
+
end
|
1992
|
+
|
1993
|
+
# @!attribute [rw] items
|
1994
|
+
# Waves list.
|
1995
|
+
# @return [Array<Types::Wave>]
|
1996
|
+
#
|
1997
|
+
# @!attribute [rw] next_token
|
1998
|
+
# Response next token.
|
1999
|
+
# @return [String]
|
2000
|
+
#
|
2001
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListWavesResponse AWS API Documentation
|
2002
|
+
#
|
2003
|
+
class ListWavesResponse < Struct.new(
|
2004
|
+
:items,
|
2005
|
+
:next_token)
|
2006
|
+
SENSITIVE = []
|
2007
|
+
include Aws::Structure
|
2008
|
+
end
|
2009
|
+
|
1590
2010
|
# @!attribute [rw] source_server_id
|
1591
2011
|
# Mark as archived by Source Server ID.
|
1592
2012
|
# @return [String]
|
@@ -1644,11 +2064,11 @@ module Aws::Mgn
|
|
1644
2064
|
# @return [String]
|
1645
2065
|
#
|
1646
2066
|
# @!attribute [rw] launched_ec2_instance_id
|
1647
|
-
# Participating server
|
2067
|
+
# Participating server's launched ec2 instance ID.
|
1648
2068
|
# @return [String]
|
1649
2069
|
#
|
1650
2070
|
# @!attribute [rw] post_launch_actions_status
|
1651
|
-
# Participating server
|
2071
|
+
# Participating server's Post Launch Actions Status.
|
1652
2072
|
# @return [Types::PostLaunchActionsStatus]
|
1653
2073
|
#
|
1654
2074
|
# @!attribute [rw] source_server_id
|
@@ -1666,52 +2086,27 @@ module Aws::Mgn
|
|
1666
2086
|
include Aws::Structure
|
1667
2087
|
end
|
1668
2088
|
|
1669
|
-
#
|
1670
|
-
#
|
1671
|
-
# @note When making an API call, you may pass PostLaunchActions
|
1672
|
-
# data as a hash:
|
1673
|
-
#
|
1674
|
-
# {
|
1675
|
-
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
1676
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
1677
|
-
# s3_log_bucket: "S3LogBucketName",
|
1678
|
-
# s3_output_key_prefix: "BoundedString",
|
1679
|
-
# ssm_documents: [
|
1680
|
-
# {
|
1681
|
-
# action_name: "BoundedString", # required
|
1682
|
-
# must_succeed_for_cutover: false,
|
1683
|
-
# parameters: {
|
1684
|
-
# "SsmDocumentParameterName" => [
|
1685
|
-
# {
|
1686
|
-
# parameter_name: "SsmParameterStoreParameterName", # required
|
1687
|
-
# parameter_type: "STRING", # required, accepts STRING
|
1688
|
-
# },
|
1689
|
-
# ],
|
1690
|
-
# },
|
1691
|
-
# ssm_document_name: "SsmDocumentName", # required
|
1692
|
-
# timeout_seconds: 1,
|
1693
|
-
# },
|
1694
|
-
# ],
|
1695
|
-
# }
|
2089
|
+
# Post Launch Actions to executed on the Test or Cutover instance.
|
1696
2090
|
#
|
1697
2091
|
# @!attribute [rw] cloud_watch_log_group_name
|
1698
|
-
#
|
2092
|
+
# AWS Systems Manager Command's CloudWatch log group name.
|
1699
2093
|
# @return [String]
|
1700
2094
|
#
|
1701
2095
|
# @!attribute [rw] deployment
|
1702
|
-
#
|
2096
|
+
# Deployment type in which AWS Systems Manager Documents will be
|
2097
|
+
# executed.
|
1703
2098
|
# @return [String]
|
1704
2099
|
#
|
1705
2100
|
# @!attribute [rw] s3_log_bucket
|
1706
|
-
#
|
2101
|
+
# AWS Systems Manager Command's logs S3 log bucket.
|
1707
2102
|
# @return [String]
|
1708
2103
|
#
|
1709
2104
|
# @!attribute [rw] s3_output_key_prefix
|
1710
|
-
#
|
2105
|
+
# AWS Systems Manager Command's logs S3 output key prefix.
|
1711
2106
|
# @return [String]
|
1712
2107
|
#
|
1713
2108
|
# @!attribute [rw] ssm_documents
|
1714
|
-
#
|
2109
|
+
# AWS Systems Manager Documents.
|
1715
2110
|
# @return [Array<Types::SsmDocument>]
|
1716
2111
|
#
|
1717
2112
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PostLaunchActions AWS API Documentation
|
@@ -1726,25 +2121,190 @@ module Aws::Mgn
|
|
1726
2121
|
include Aws::Structure
|
1727
2122
|
end
|
1728
2123
|
|
1729
|
-
#
|
2124
|
+
# Status of the Post Launch Actions running on the Test or Cutover
|
2125
|
+
# instance.
|
2126
|
+
#
|
2127
|
+
# @!attribute [rw] post_launch_actions_launch_status_list
|
2128
|
+
# List of Post Launch Action status.
|
2129
|
+
# @return [Array<Types::JobPostLaunchActionsLaunchStatus>]
|
2130
|
+
#
|
2131
|
+
# @!attribute [rw] ssm_agent_discovery_datetime
|
2132
|
+
# Time where the AWS Systems Manager was detected as running on the
|
2133
|
+
# Test or Cutover instance.
|
2134
|
+
# @return [String]
|
2135
|
+
#
|
2136
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PostLaunchActionsStatus AWS API Documentation
|
2137
|
+
#
|
2138
|
+
class PostLaunchActionsStatus < Struct.new(
|
2139
|
+
:post_launch_actions_launch_status_list,
|
2140
|
+
:ssm_agent_discovery_datetime)
|
2141
|
+
SENSITIVE = []
|
2142
|
+
include Aws::Structure
|
2143
|
+
end
|
2144
|
+
|
2145
|
+
# @!attribute [rw] action_id
|
2146
|
+
# Source server post migration custom action ID.
|
2147
|
+
# @return [String]
|
2148
|
+
#
|
2149
|
+
# @!attribute [rw] action_name
|
2150
|
+
# Source server post migration custom action name.
|
2151
|
+
# @return [String]
|
2152
|
+
#
|
2153
|
+
# @!attribute [rw] active
|
2154
|
+
# Source server post migration custom action active status.
|
2155
|
+
# @return [Boolean]
|
2156
|
+
#
|
2157
|
+
# @!attribute [rw] document_identifier
|
2158
|
+
# Source server post migration custom action document identifier.
|
2159
|
+
# @return [String]
|
2160
|
+
#
|
2161
|
+
# @!attribute [rw] document_version
|
2162
|
+
# Source server post migration custom action document version.
|
2163
|
+
# @return [String]
|
2164
|
+
#
|
2165
|
+
# @!attribute [rw] must_succeed_for_cutover
|
2166
|
+
# Source server post migration custom action must succeed for cutover.
|
2167
|
+
# @return [Boolean]
|
2168
|
+
#
|
2169
|
+
# @!attribute [rw] order
|
2170
|
+
# Source server post migration custom action order.
|
2171
|
+
# @return [Integer]
|
2172
|
+
#
|
2173
|
+
# @!attribute [rw] parameters
|
2174
|
+
# Source server post migration custom action parameters.
|
2175
|
+
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
2176
|
+
#
|
2177
|
+
# @!attribute [rw] source_server_id
|
2178
|
+
# Source server ID.
|
2179
|
+
# @return [String]
|
2180
|
+
#
|
2181
|
+
# @!attribute [rw] timeout_seconds
|
2182
|
+
# Source server post migration custom action timeout in seconds.
|
2183
|
+
# @return [Integer]
|
2184
|
+
#
|
2185
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PutSourceServerActionRequest AWS API Documentation
|
2186
|
+
#
|
2187
|
+
class PutSourceServerActionRequest < Struct.new(
|
2188
|
+
:action_id,
|
2189
|
+
:action_name,
|
2190
|
+
:active,
|
2191
|
+
:document_identifier,
|
2192
|
+
:document_version,
|
2193
|
+
:must_succeed_for_cutover,
|
2194
|
+
:order,
|
2195
|
+
:parameters,
|
2196
|
+
:source_server_id,
|
2197
|
+
:timeout_seconds)
|
2198
|
+
SENSITIVE = []
|
2199
|
+
include Aws::Structure
|
2200
|
+
end
|
2201
|
+
|
2202
|
+
# @!attribute [rw] action_id
|
2203
|
+
# Template post migration custom action ID.
|
2204
|
+
# @return [String]
|
2205
|
+
#
|
2206
|
+
# @!attribute [rw] action_name
|
2207
|
+
# Template post migration custom action name.
|
2208
|
+
# @return [String]
|
2209
|
+
#
|
2210
|
+
# @!attribute [rw] active
|
2211
|
+
# Template post migration custom action active status.
|
2212
|
+
# @return [Boolean]
|
2213
|
+
#
|
2214
|
+
# @!attribute [rw] document_identifier
|
2215
|
+
# Template post migration custom action document identifier.
|
2216
|
+
# @return [String]
|
2217
|
+
#
|
2218
|
+
# @!attribute [rw] document_version
|
2219
|
+
# Template post migration custom action document version.
|
2220
|
+
# @return [String]
|
2221
|
+
#
|
2222
|
+
# @!attribute [rw] launch_configuration_template_id
|
2223
|
+
# Launch configuration template ID.
|
2224
|
+
# @return [String]
|
2225
|
+
#
|
2226
|
+
# @!attribute [rw] must_succeed_for_cutover
|
2227
|
+
# Template post migration custom action must succeed for cutover.
|
2228
|
+
# @return [Boolean]
|
2229
|
+
#
|
2230
|
+
# @!attribute [rw] operating_system
|
2231
|
+
# Operating system eligible for this template post migration custom
|
2232
|
+
# action.
|
2233
|
+
# @return [String]
|
2234
|
+
#
|
2235
|
+
# @!attribute [rw] order
|
2236
|
+
# Template post migration custom action order.
|
2237
|
+
# @return [Integer]
|
2238
|
+
#
|
2239
|
+
# @!attribute [rw] parameters
|
2240
|
+
# Template post migration custom action parameters.
|
2241
|
+
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
2242
|
+
#
|
2243
|
+
# @!attribute [rw] timeout_seconds
|
2244
|
+
# Template post migration custom action timeout in seconds.
|
2245
|
+
# @return [Integer]
|
2246
|
+
#
|
2247
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PutTemplateActionRequest AWS API Documentation
|
2248
|
+
#
|
2249
|
+
class PutTemplateActionRequest < Struct.new(
|
2250
|
+
:action_id,
|
2251
|
+
:action_name,
|
2252
|
+
:active,
|
2253
|
+
:document_identifier,
|
2254
|
+
:document_version,
|
2255
|
+
:launch_configuration_template_id,
|
2256
|
+
:must_succeed_for_cutover,
|
2257
|
+
:operating_system,
|
2258
|
+
:order,
|
2259
|
+
:parameters,
|
2260
|
+
:timeout_seconds)
|
2261
|
+
SENSITIVE = []
|
2262
|
+
include Aws::Structure
|
2263
|
+
end
|
2264
|
+
|
2265
|
+
# @!attribute [rw] action_id
|
2266
|
+
# Source server post migration custom action ID to remove.
|
2267
|
+
# @return [String]
|
2268
|
+
#
|
2269
|
+
# @!attribute [rw] source_server_id
|
2270
|
+
# Source server ID of the post migration custom action to remove.
|
2271
|
+
# @return [String]
|
2272
|
+
#
|
2273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RemoveSourceServerActionRequest AWS API Documentation
|
2274
|
+
#
|
2275
|
+
class RemoveSourceServerActionRequest < Struct.new(
|
2276
|
+
:action_id,
|
2277
|
+
:source_server_id)
|
2278
|
+
SENSITIVE = []
|
2279
|
+
include Aws::Structure
|
2280
|
+
end
|
2281
|
+
|
2282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RemoveSourceServerActionResponse AWS API Documentation
|
1730
2283
|
#
|
1731
|
-
|
1732
|
-
|
1733
|
-
#
|
2284
|
+
class RemoveSourceServerActionResponse < Aws::EmptyStructure; end
|
2285
|
+
|
2286
|
+
# @!attribute [rw] action_id
|
2287
|
+
# Template post migration custom action ID to remove.
|
2288
|
+
# @return [String]
|
1734
2289
|
#
|
1735
|
-
# @!attribute [rw]
|
1736
|
-
#
|
2290
|
+
# @!attribute [rw] launch_configuration_template_id
|
2291
|
+
# Launch configuration template ID of the post migration custom action
|
2292
|
+
# to remove.
|
1737
2293
|
# @return [String]
|
1738
2294
|
#
|
1739
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/
|
2295
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RemoveTemplateActionRequest AWS API Documentation
|
1740
2296
|
#
|
1741
|
-
class
|
1742
|
-
:
|
1743
|
-
:
|
2297
|
+
class RemoveTemplateActionRequest < Struct.new(
|
2298
|
+
:action_id,
|
2299
|
+
:launch_configuration_template_id)
|
1744
2300
|
SENSITIVE = []
|
1745
2301
|
include Aws::Structure
|
1746
2302
|
end
|
1747
2303
|
|
2304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RemoveTemplateActionResponse AWS API Documentation
|
2305
|
+
#
|
2306
|
+
class RemoveTemplateActionResponse < Aws::EmptyStructure; end
|
2307
|
+
|
1748
2308
|
# @!attribute [rw] associate_default_security_group
|
1749
2309
|
# Replication Configuration associate default Application Migration
|
1750
2310
|
# Service Security Group.
|
@@ -1830,17 +2390,6 @@ module Aws::Mgn
|
|
1830
2390
|
|
1831
2391
|
# Replication Configuration replicated disk.
|
1832
2392
|
#
|
1833
|
-
# @note When making an API call, you may pass ReplicationConfigurationReplicatedDisk
|
1834
|
-
# data as a hash:
|
1835
|
-
#
|
1836
|
-
# {
|
1837
|
-
# device_name: "BoundedString",
|
1838
|
-
# iops: 1,
|
1839
|
-
# is_boot_disk: false,
|
1840
|
-
# staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD, GP3, IO2
|
1841
|
-
# throughput: 1,
|
1842
|
-
# }
|
1843
|
-
#
|
1844
2393
|
# @!attribute [rw] device_name
|
1845
2394
|
# Replication Configuration replicated disk device name.
|
1846
2395
|
# @return [String]
|
@@ -1984,13 +2533,6 @@ module Aws::Mgn
|
|
1984
2533
|
include Aws::Structure
|
1985
2534
|
end
|
1986
2535
|
|
1987
|
-
# @note When making an API call, you may pass RetryDataReplicationRequest
|
1988
|
-
# data as a hash:
|
1989
|
-
#
|
1990
|
-
# {
|
1991
|
-
# source_server_id: "SourceServerID", # required
|
1992
|
-
# }
|
1993
|
-
#
|
1994
2536
|
# @!attribute [rw] source_server_id
|
1995
2537
|
# Retry data replication for Source Server ID.
|
1996
2538
|
# @return [String]
|
@@ -2095,6 +2637,10 @@ module Aws::Mgn
|
|
2095
2637
|
include Aws::Structure
|
2096
2638
|
end
|
2097
2639
|
|
2640
|
+
# @!attribute [rw] application_id
|
2641
|
+
# Source server application ID.
|
2642
|
+
# @return [String]
|
2643
|
+
#
|
2098
2644
|
# @!attribute [rw] arn
|
2099
2645
|
# Source server ARN.
|
2100
2646
|
# @return [String]
|
@@ -2138,6 +2684,7 @@ module Aws::Mgn
|
|
2138
2684
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SourceServer AWS API Documentation
|
2139
2685
|
#
|
2140
2686
|
class SourceServer < Struct.new(
|
2687
|
+
:application_id,
|
2141
2688
|
:arn,
|
2142
2689
|
:data_replication_info,
|
2143
2690
|
:is_archived,
|
@@ -2152,44 +2699,92 @@ module Aws::Mgn
|
|
2152
2699
|
include Aws::Structure
|
2153
2700
|
end
|
2154
2701
|
|
2155
|
-
#
|
2702
|
+
# @!attribute [rw] action_id
|
2703
|
+
# Source server post migration custom action ID.
|
2704
|
+
# @return [String]
|
2705
|
+
#
|
2706
|
+
# @!attribute [rw] action_name
|
2707
|
+
# Source server post migration custom action name.
|
2708
|
+
# @return [String]
|
2709
|
+
#
|
2710
|
+
# @!attribute [rw] active
|
2711
|
+
# Source server post migration custom action active status.
|
2712
|
+
# @return [Boolean]
|
2713
|
+
#
|
2714
|
+
# @!attribute [rw] document_identifier
|
2715
|
+
# Source server post migration custom action document identifier.
|
2716
|
+
# @return [String]
|
2717
|
+
#
|
2718
|
+
# @!attribute [rw] document_version
|
2719
|
+
# Source server post migration custom action document version.
|
2720
|
+
# @return [String]
|
2721
|
+
#
|
2722
|
+
# @!attribute [rw] must_succeed_for_cutover
|
2723
|
+
# Source server post migration custom action must succeed for cutover.
|
2724
|
+
# @return [Boolean]
|
2725
|
+
#
|
2726
|
+
# @!attribute [rw] order
|
2727
|
+
# Source server post migration custom action order.
|
2728
|
+
# @return [Integer]
|
2729
|
+
#
|
2730
|
+
# @!attribute [rw] parameters
|
2731
|
+
# Source server post migration custom action parameters.
|
2732
|
+
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
2733
|
+
#
|
2734
|
+
# @!attribute [rw] timeout_seconds
|
2735
|
+
# Source server post migration custom action timeout in seconds.
|
2736
|
+
# @return [Integer]
|
2737
|
+
#
|
2738
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SourceServerActionDocument AWS API Documentation
|
2739
|
+
#
|
2740
|
+
class SourceServerActionDocument < Struct.new(
|
2741
|
+
:action_id,
|
2742
|
+
:action_name,
|
2743
|
+
:active,
|
2744
|
+
:document_identifier,
|
2745
|
+
:document_version,
|
2746
|
+
:must_succeed_for_cutover,
|
2747
|
+
:order,
|
2748
|
+
:parameters,
|
2749
|
+
:timeout_seconds)
|
2750
|
+
SENSITIVE = []
|
2751
|
+
include Aws::Structure
|
2752
|
+
end
|
2753
|
+
|
2754
|
+
# Source server post migration custom action filters.
|
2755
|
+
#
|
2756
|
+
# @!attribute [rw] action_i_ds
|
2757
|
+
# Action IDs to filter source server post migration custom actions by.
|
2758
|
+
# @return [Array<String>]
|
2156
2759
|
#
|
2157
|
-
# @
|
2158
|
-
# data as a hash:
|
2760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SourceServerActionsRequestFilters AWS API Documentation
|
2159
2761
|
#
|
2160
|
-
|
2161
|
-
|
2162
|
-
|
2163
|
-
|
2164
|
-
|
2165
|
-
|
2166
|
-
#
|
2167
|
-
# parameter_type: "STRING", # required, accepts STRING
|
2168
|
-
# },
|
2169
|
-
# ],
|
2170
|
-
# },
|
2171
|
-
# ssm_document_name: "SsmDocumentName", # required
|
2172
|
-
# timeout_seconds: 1,
|
2173
|
-
# }
|
2762
|
+
class SourceServerActionsRequestFilters < Struct.new(
|
2763
|
+
:action_i_ds)
|
2764
|
+
SENSITIVE = []
|
2765
|
+
include Aws::Structure
|
2766
|
+
end
|
2767
|
+
|
2768
|
+
# AWS Systems Manager Document.
|
2174
2769
|
#
|
2175
2770
|
# @!attribute [rw] action_name
|
2176
|
-
#
|
2771
|
+
# User-friendly name for the AWS Systems Manager Document.
|
2177
2772
|
# @return [String]
|
2178
2773
|
#
|
2179
2774
|
# @!attribute [rw] must_succeed_for_cutover
|
2180
|
-
#
|
2775
|
+
# If true, Cutover will not be enabled if the document has failed.
|
2181
2776
|
# @return [Boolean]
|
2182
2777
|
#
|
2183
2778
|
# @!attribute [rw] parameters
|
2184
|
-
#
|
2779
|
+
# AWS Systems Manager Document parameters.
|
2185
2780
|
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
2186
2781
|
#
|
2187
2782
|
# @!attribute [rw] ssm_document_name
|
2188
|
-
#
|
2783
|
+
# AWS Systems Manager Document name or full ARN.
|
2189
2784
|
# @return [String]
|
2190
2785
|
#
|
2191
2786
|
# @!attribute [rw] timeout_seconds
|
2192
|
-
#
|
2787
|
+
# AWS Systems Manager Document timeout seconds.
|
2193
2788
|
# @return [Integer]
|
2194
2789
|
#
|
2195
2790
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmDocument AWS API Documentation
|
@@ -2204,22 +2799,14 @@ module Aws::Mgn
|
|
2204
2799
|
include Aws::Structure
|
2205
2800
|
end
|
2206
2801
|
|
2207
|
-
#
|
2208
|
-
#
|
2209
|
-
# @note When making an API call, you may pass SsmParameterStoreParameter
|
2210
|
-
# data as a hash:
|
2211
|
-
#
|
2212
|
-
# {
|
2213
|
-
# parameter_name: "SsmParameterStoreParameterName", # required
|
2214
|
-
# parameter_type: "STRING", # required, accepts STRING
|
2215
|
-
# }
|
2802
|
+
# AWS Systems Manager Parameter Store parameter.
|
2216
2803
|
#
|
2217
2804
|
# @!attribute [rw] parameter_name
|
2218
|
-
#
|
2805
|
+
# AWS Systems Manager Parameter Store parameter name.
|
2219
2806
|
# @return [String]
|
2220
2807
|
#
|
2221
2808
|
# @!attribute [rw] parameter_type
|
2222
|
-
#
|
2809
|
+
# AWS Systems Manager Parameter Store parameter type.
|
2223
2810
|
# @return [String]
|
2224
2811
|
#
|
2225
2812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmParameterStoreParameter AWS API Documentation
|
@@ -2231,16 +2818,6 @@ module Aws::Mgn
|
|
2231
2818
|
include Aws::Structure
|
2232
2819
|
end
|
2233
2820
|
|
2234
|
-
# @note When making an API call, you may pass StartCutoverRequest
|
2235
|
-
# data as a hash:
|
2236
|
-
#
|
2237
|
-
# {
|
2238
|
-
# source_server_i_ds: ["SourceServerID"], # required
|
2239
|
-
# tags: {
|
2240
|
-
# "TagKey" => "TagValue",
|
2241
|
-
# },
|
2242
|
-
# }
|
2243
|
-
#
|
2244
2821
|
# @!attribute [rw] source_server_i_ds
|
2245
2822
|
# Start Cutover by Source Server IDs.
|
2246
2823
|
# @return [Array<String>]
|
@@ -2270,13 +2847,6 @@ module Aws::Mgn
|
|
2270
2847
|
include Aws::Structure
|
2271
2848
|
end
|
2272
2849
|
|
2273
|
-
# @note When making an API call, you may pass StartReplicationRequest
|
2274
|
-
# data as a hash:
|
2275
|
-
#
|
2276
|
-
# {
|
2277
|
-
# source_server_id: "SourceServerID", # required
|
2278
|
-
# }
|
2279
|
-
#
|
2280
2850
|
# @!attribute [rw] source_server_id
|
2281
2851
|
# ID of source server on which to start replication.
|
2282
2852
|
# @return [String]
|
@@ -2289,16 +2859,6 @@ module Aws::Mgn
|
|
2289
2859
|
include Aws::Structure
|
2290
2860
|
end
|
2291
2861
|
|
2292
|
-
# @note When making an API call, you may pass StartTestRequest
|
2293
|
-
# data as a hash:
|
2294
|
-
#
|
2295
|
-
# {
|
2296
|
-
# source_server_i_ds: ["SourceServerID"], # required
|
2297
|
-
# tags: {
|
2298
|
-
# "TagKey" => "TagValue",
|
2299
|
-
# },
|
2300
|
-
# }
|
2301
|
-
#
|
2302
2862
|
# @!attribute [rw] source_server_i_ds
|
2303
2863
|
# Start Test for Source Server IDs.
|
2304
2864
|
# @return [Array<String>]
|
@@ -2328,16 +2888,6 @@ module Aws::Mgn
|
|
2328
2888
|
include Aws::Structure
|
2329
2889
|
end
|
2330
2890
|
|
2331
|
-
# @note When making an API call, you may pass TagResourceRequest
|
2332
|
-
# data as a hash:
|
2333
|
-
#
|
2334
|
-
# {
|
2335
|
-
# resource_arn: "ARN", # required
|
2336
|
-
# tags: { # required
|
2337
|
-
# "TagKey" => "TagValue",
|
2338
|
-
# },
|
2339
|
-
# }
|
2340
|
-
#
|
2341
2891
|
# @!attribute [rw] resource_arn
|
2342
2892
|
# Tag resource by ARN.
|
2343
2893
|
# @return [String]
|
@@ -2355,16 +2905,78 @@ module Aws::Mgn
|
|
2355
2905
|
include Aws::Structure
|
2356
2906
|
end
|
2357
2907
|
|
2358
|
-
#
|
2359
|
-
#
|
2908
|
+
# @!attribute [rw] action_id
|
2909
|
+
# Template post migration custom action ID.
|
2910
|
+
# @return [String]
|
2911
|
+
#
|
2912
|
+
# @!attribute [rw] action_name
|
2913
|
+
# Template post migration custom action name.
|
2914
|
+
# @return [String]
|
2915
|
+
#
|
2916
|
+
# @!attribute [rw] active
|
2917
|
+
# Template post migration custom action active status.
|
2918
|
+
# @return [Boolean]
|
2919
|
+
#
|
2920
|
+
# @!attribute [rw] document_identifier
|
2921
|
+
# Template post migration custom action document identifier.
|
2922
|
+
# @return [String]
|
2923
|
+
#
|
2924
|
+
# @!attribute [rw] document_version
|
2925
|
+
# Template post migration custom action document version.
|
2926
|
+
# @return [String]
|
2927
|
+
#
|
2928
|
+
# @!attribute [rw] must_succeed_for_cutover
|
2929
|
+
# Template post migration custom action must succeed for cutover.
|
2930
|
+
# @return [Boolean]
|
2931
|
+
#
|
2932
|
+
# @!attribute [rw] operating_system
|
2933
|
+
# Operating system eligible for this template post migration custom
|
2934
|
+
# action.
|
2935
|
+
# @return [String]
|
2936
|
+
#
|
2937
|
+
# @!attribute [rw] order
|
2938
|
+
# Template post migration custom action order.
|
2939
|
+
# @return [Integer]
|
2940
|
+
#
|
2941
|
+
# @!attribute [rw] parameters
|
2942
|
+
# Template post migration custom action parameters.
|
2943
|
+
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
2944
|
+
#
|
2945
|
+
# @!attribute [rw] timeout_seconds
|
2946
|
+
# Template post migration custom action timeout in seconds.
|
2947
|
+
# @return [Integer]
|
2948
|
+
#
|
2949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/TemplateActionDocument AWS API Documentation
|
2950
|
+
#
|
2951
|
+
class TemplateActionDocument < Struct.new(
|
2952
|
+
:action_id,
|
2953
|
+
:action_name,
|
2954
|
+
:active,
|
2955
|
+
:document_identifier,
|
2956
|
+
:document_version,
|
2957
|
+
:must_succeed_for_cutover,
|
2958
|
+
:operating_system,
|
2959
|
+
:order,
|
2960
|
+
:parameters,
|
2961
|
+
:timeout_seconds)
|
2962
|
+
SENSITIVE = []
|
2963
|
+
include Aws::Structure
|
2964
|
+
end
|
2965
|
+
|
2966
|
+
# Template post migration custom action filters.
|
2967
|
+
#
|
2968
|
+
# @!attribute [rw] action_i_ds
|
2969
|
+
# Action IDs to filter template post migration custom actions by.
|
2970
|
+
# @return [Array<String>]
|
2360
2971
|
#
|
2361
|
-
#
|
2362
|
-
# source_server_i_ds: ["SourceServerID"], # required
|
2363
|
-
# tags: {
|
2364
|
-
# "TagKey" => "TagValue",
|
2365
|
-
# },
|
2366
|
-
# }
|
2972
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/TemplateActionsRequestFilters AWS API Documentation
|
2367
2973
|
#
|
2974
|
+
class TemplateActionsRequestFilters < Struct.new(
|
2975
|
+
:action_i_ds)
|
2976
|
+
SENSITIVE = []
|
2977
|
+
include Aws::Structure
|
2978
|
+
end
|
2979
|
+
|
2368
2980
|
# @!attribute [rw] source_server_i_ds
|
2369
2981
|
# Terminate Target instance by Source Server IDs.
|
2370
2982
|
# @return [Array<String>]
|
@@ -2422,6 +3034,30 @@ module Aws::Mgn
|
|
2422
3034
|
include Aws::Structure
|
2423
3035
|
end
|
2424
3036
|
|
3037
|
+
# @!attribute [rw] application_id
|
3038
|
+
# Application ID.
|
3039
|
+
# @return [String]
|
3040
|
+
#
|
3041
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UnarchiveApplicationRequest AWS API Documentation
|
3042
|
+
#
|
3043
|
+
class UnarchiveApplicationRequest < Struct.new(
|
3044
|
+
:application_id)
|
3045
|
+
SENSITIVE = []
|
3046
|
+
include Aws::Structure
|
3047
|
+
end
|
3048
|
+
|
3049
|
+
# @!attribute [rw] wave_id
|
3050
|
+
# Wave ID.
|
3051
|
+
# @return [String]
|
3052
|
+
#
|
3053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UnarchiveWaveRequest AWS API Documentation
|
3054
|
+
#
|
3055
|
+
class UnarchiveWaveRequest < Struct.new(
|
3056
|
+
:wave_id)
|
3057
|
+
SENSITIVE = []
|
3058
|
+
include Aws::Structure
|
3059
|
+
end
|
3060
|
+
|
2425
3061
|
# Uninitialized account exception.
|
2426
3062
|
#
|
2427
3063
|
# @!attribute [rw] code
|
@@ -2439,14 +3075,6 @@ module Aws::Mgn
|
|
2439
3075
|
include Aws::Structure
|
2440
3076
|
end
|
2441
3077
|
|
2442
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
2443
|
-
# data as a hash:
|
2444
|
-
#
|
2445
|
-
# {
|
2446
|
-
# resource_arn: "ARN", # required
|
2447
|
-
# tag_keys: ["TagKey"], # required
|
2448
|
-
# }
|
2449
|
-
#
|
2450
3078
|
# @!attribute [rw] resource_arn
|
2451
3079
|
# Untag resource by ARN.
|
2452
3080
|
# @return [String]
|
@@ -2464,44 +3092,28 @@ module Aws::Mgn
|
|
2464
3092
|
include Aws::Structure
|
2465
3093
|
end
|
2466
3094
|
|
2467
|
-
#
|
2468
|
-
#
|
2469
|
-
#
|
2470
|
-
# {
|
2471
|
-
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
2472
|
-
# copy_private_ip: false,
|
2473
|
-
# copy_tags: false,
|
2474
|
-
# launch_disposition: "STOPPED", # accepts STOPPED, STARTED
|
2475
|
-
# licensing: {
|
2476
|
-
# os_byol: false,
|
2477
|
-
# },
|
2478
|
-
# name: "SmallBoundedString",
|
2479
|
-
# post_launch_actions: {
|
2480
|
-
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
2481
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
2482
|
-
# s3_log_bucket: "S3LogBucketName",
|
2483
|
-
# s3_output_key_prefix: "BoundedString",
|
2484
|
-
# ssm_documents: [
|
2485
|
-
# {
|
2486
|
-
# action_name: "BoundedString", # required
|
2487
|
-
# must_succeed_for_cutover: false,
|
2488
|
-
# parameters: {
|
2489
|
-
# "SsmDocumentParameterName" => [
|
2490
|
-
# {
|
2491
|
-
# parameter_name: "SsmParameterStoreParameterName", # required
|
2492
|
-
# parameter_type: "STRING", # required, accepts STRING
|
2493
|
-
# },
|
2494
|
-
# ],
|
2495
|
-
# },
|
2496
|
-
# ssm_document_name: "SsmDocumentName", # required
|
2497
|
-
# timeout_seconds: 1,
|
2498
|
-
# },
|
2499
|
-
# ],
|
2500
|
-
# },
|
2501
|
-
# source_server_id: "SourceServerID", # required
|
2502
|
-
# target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
|
2503
|
-
# }
|
3095
|
+
# @!attribute [rw] application_id
|
3096
|
+
# Application ID.
|
3097
|
+
# @return [String]
|
2504
3098
|
#
|
3099
|
+
# @!attribute [rw] description
|
3100
|
+
# Application description.
|
3101
|
+
# @return [String]
|
3102
|
+
#
|
3103
|
+
# @!attribute [rw] name
|
3104
|
+
# Application name.
|
3105
|
+
# @return [String]
|
3106
|
+
#
|
3107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateApplicationRequest AWS API Documentation
|
3108
|
+
#
|
3109
|
+
class UpdateApplicationRequest < Struct.new(
|
3110
|
+
:application_id,
|
3111
|
+
:description,
|
3112
|
+
:name)
|
3113
|
+
SENSITIVE = []
|
3114
|
+
include Aws::Structure
|
3115
|
+
end
|
3116
|
+
|
2505
3117
|
# @!attribute [rw] boot_mode
|
2506
3118
|
# Update Launch configuration boot mode request.
|
2507
3119
|
# @return [String]
|
@@ -2514,6 +3126,10 @@ module Aws::Mgn
|
|
2514
3126
|
# Update Launch configuration copy Tags request.
|
2515
3127
|
# @return [Boolean]
|
2516
3128
|
#
|
3129
|
+
# @!attribute [rw] enable_map_auto_tagging
|
3130
|
+
# Enable map auto tagging.
|
3131
|
+
# @return [Boolean]
|
3132
|
+
#
|
2517
3133
|
# @!attribute [rw] launch_disposition
|
2518
3134
|
# Update Launch configuration launch disposition request.
|
2519
3135
|
# @return [String]
|
@@ -2522,12 +3138,16 @@ module Aws::Mgn
|
|
2522
3138
|
# Update Launch configuration licensing request.
|
2523
3139
|
# @return [Types::Licensing]
|
2524
3140
|
#
|
3141
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
3142
|
+
# Launch configuration map auto tagging MPE ID.
|
3143
|
+
# @return [String]
|
3144
|
+
#
|
2525
3145
|
# @!attribute [rw] name
|
2526
3146
|
# Update Launch configuration name request.
|
2527
3147
|
# @return [String]
|
2528
3148
|
#
|
2529
3149
|
# @!attribute [rw] post_launch_actions
|
2530
|
-
#
|
3150
|
+
# Post Launch Actions to executed on the Test or Cutover instance.
|
2531
3151
|
# @return [Types::PostLaunchActions]
|
2532
3152
|
#
|
2533
3153
|
# @!attribute [rw] source_server_id
|
@@ -2544,8 +3164,10 @@ module Aws::Mgn
|
|
2544
3164
|
:boot_mode,
|
2545
3165
|
:copy_private_ip,
|
2546
3166
|
:copy_tags,
|
3167
|
+
:enable_map_auto_tagging,
|
2547
3168
|
:launch_disposition,
|
2548
3169
|
:licensing,
|
3170
|
+
:map_auto_tagging_mpe_id,
|
2549
3171
|
:name,
|
2550
3172
|
:post_launch_actions,
|
2551
3173
|
:source_server_id,
|
@@ -2554,83 +3176,83 @@ module Aws::Mgn
|
|
2554
3176
|
include Aws::Structure
|
2555
3177
|
end
|
2556
3178
|
|
2557
|
-
#
|
2558
|
-
#
|
2559
|
-
#
|
2560
|
-
#
|
2561
|
-
#
|
2562
|
-
#
|
2563
|
-
#
|
2564
|
-
#
|
2565
|
-
#
|
2566
|
-
#
|
2567
|
-
#
|
2568
|
-
#
|
2569
|
-
#
|
2570
|
-
#
|
2571
|
-
#
|
2572
|
-
#
|
2573
|
-
#
|
2574
|
-
#
|
2575
|
-
#
|
2576
|
-
#
|
2577
|
-
#
|
2578
|
-
#
|
2579
|
-
#
|
2580
|
-
# timeout_seconds: 1,
|
2581
|
-
# },
|
2582
|
-
# ],
|
2583
|
-
# },
|
2584
|
-
# }
|
3179
|
+
# @!attribute [rw] associate_public_ip_address
|
3180
|
+
# Associate public Ip address.
|
3181
|
+
# @return [Boolean]
|
3182
|
+
#
|
3183
|
+
# @!attribute [rw] boot_mode
|
3184
|
+
# Launch configuration template boot mode.
|
3185
|
+
# @return [String]
|
3186
|
+
#
|
3187
|
+
# @!attribute [rw] copy_private_ip
|
3188
|
+
# Copy private Ip.
|
3189
|
+
# @return [Boolean]
|
3190
|
+
#
|
3191
|
+
# @!attribute [rw] copy_tags
|
3192
|
+
# Copy tags.
|
3193
|
+
# @return [Boolean]
|
3194
|
+
#
|
3195
|
+
# @!attribute [rw] enable_map_auto_tagging
|
3196
|
+
# Enable map auto tagging.
|
3197
|
+
# @return [Boolean]
|
3198
|
+
#
|
3199
|
+
# @!attribute [rw] large_volume_conf
|
3200
|
+
# Large volume config.
|
3201
|
+
# @return [Types::LaunchTemplateDiskConf]
|
2585
3202
|
#
|
2586
3203
|
# @!attribute [rw] launch_configuration_template_id
|
2587
|
-
#
|
3204
|
+
# Launch Configuration Template ID.
|
3205
|
+
# @return [String]
|
3206
|
+
#
|
3207
|
+
# @!attribute [rw] launch_disposition
|
3208
|
+
# Launch disposition.
|
3209
|
+
# @return [String]
|
3210
|
+
#
|
3211
|
+
# @!attribute [rw] licensing
|
3212
|
+
# Configure Licensing.
|
3213
|
+
# @return [Types::Licensing]
|
3214
|
+
#
|
3215
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
3216
|
+
# Launch configuration template map auto tagging MPE ID.
|
2588
3217
|
# @return [String]
|
2589
3218
|
#
|
2590
3219
|
# @!attribute [rw] post_launch_actions
|
2591
|
-
#
|
3220
|
+
# Post Launch Action to execute on the Test or Cutover instance.
|
2592
3221
|
# @return [Types::PostLaunchActions]
|
2593
3222
|
#
|
3223
|
+
# @!attribute [rw] small_volume_conf
|
3224
|
+
# Small volume config.
|
3225
|
+
# @return [Types::LaunchTemplateDiskConf]
|
3226
|
+
#
|
3227
|
+
# @!attribute [rw] small_volume_max_size
|
3228
|
+
# Small volume maximum size.
|
3229
|
+
# @return [Integer]
|
3230
|
+
#
|
3231
|
+
# @!attribute [rw] target_instance_type_right_sizing_method
|
3232
|
+
# Target instance type right-sizing method.
|
3233
|
+
# @return [String]
|
3234
|
+
#
|
2594
3235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateLaunchConfigurationTemplateRequest AWS API Documentation
|
2595
3236
|
#
|
2596
3237
|
class UpdateLaunchConfigurationTemplateRequest < Struct.new(
|
3238
|
+
:associate_public_ip_address,
|
3239
|
+
:boot_mode,
|
3240
|
+
:copy_private_ip,
|
3241
|
+
:copy_tags,
|
3242
|
+
:enable_map_auto_tagging,
|
3243
|
+
:large_volume_conf,
|
2597
3244
|
:launch_configuration_template_id,
|
2598
|
-
:
|
2599
|
-
|
2600
|
-
|
2601
|
-
|
2602
|
-
|
2603
|
-
|
2604
|
-
|
2605
|
-
|
2606
|
-
|
2607
|
-
|
2608
|
-
|
2609
|
-
# create_public_ip: false,
|
2610
|
-
# data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
|
2611
|
-
# default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
|
2612
|
-
# ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
|
2613
|
-
# ebs_encryption_key_arn: "ARN",
|
2614
|
-
# name: "SmallBoundedString",
|
2615
|
-
# replicated_disks: [
|
2616
|
-
# {
|
2617
|
-
# device_name: "BoundedString",
|
2618
|
-
# iops: 1,
|
2619
|
-
# is_boot_disk: false,
|
2620
|
-
# staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD, GP3, IO2
|
2621
|
-
# throughput: 1,
|
2622
|
-
# },
|
2623
|
-
# ],
|
2624
|
-
# replication_server_instance_type: "EC2InstanceType",
|
2625
|
-
# replication_servers_security_groups_i_ds: ["SecurityGroupID"],
|
2626
|
-
# source_server_id: "SourceServerID", # required
|
2627
|
-
# staging_area_subnet_id: "SubnetID",
|
2628
|
-
# staging_area_tags: {
|
2629
|
-
# "TagKey" => "TagValue",
|
2630
|
-
# },
|
2631
|
-
# use_dedicated_replication_server: false,
|
2632
|
-
# }
|
2633
|
-
#
|
3245
|
+
:launch_disposition,
|
3246
|
+
:licensing,
|
3247
|
+
:map_auto_tagging_mpe_id,
|
3248
|
+
:post_launch_actions,
|
3249
|
+
:small_volume_conf,
|
3250
|
+
:small_volume_max_size,
|
3251
|
+
:target_instance_type_right_sizing_method)
|
3252
|
+
SENSITIVE = []
|
3253
|
+
include Aws::Structure
|
3254
|
+
end
|
3255
|
+
|
2634
3256
|
# @!attribute [rw] associate_default_security_group
|
2635
3257
|
# Update replication configuration associate default Application
|
2636
3258
|
# Migration Service Security group request.
|
@@ -2718,28 +3340,6 @@ module Aws::Mgn
|
|
2718
3340
|
include Aws::Structure
|
2719
3341
|
end
|
2720
3342
|
|
2721
|
-
# @note When making an API call, you may pass UpdateReplicationConfigurationTemplateRequest
|
2722
|
-
# data as a hash:
|
2723
|
-
#
|
2724
|
-
# {
|
2725
|
-
# arn: "ARN",
|
2726
|
-
# associate_default_security_group: false,
|
2727
|
-
# bandwidth_throttling: 1,
|
2728
|
-
# create_public_ip: false,
|
2729
|
-
# data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
|
2730
|
-
# default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
|
2731
|
-
# ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
|
2732
|
-
# ebs_encryption_key_arn: "ARN",
|
2733
|
-
# replication_configuration_template_id: "ReplicationConfigurationTemplateID", # required
|
2734
|
-
# replication_server_instance_type: "EC2InstanceType",
|
2735
|
-
# replication_servers_security_groups_i_ds: ["SecurityGroupID"],
|
2736
|
-
# staging_area_subnet_id: "SubnetID",
|
2737
|
-
# staging_area_tags: {
|
2738
|
-
# "TagKey" => "TagValue",
|
2739
|
-
# },
|
2740
|
-
# use_dedicated_replication_server: false,
|
2741
|
-
# }
|
2742
|
-
#
|
2743
3343
|
# @!attribute [rw] arn
|
2744
3344
|
# Update replication configuration template ARN request.
|
2745
3345
|
# @return [String]
|
@@ -2826,14 +3426,6 @@ module Aws::Mgn
|
|
2826
3426
|
include Aws::Structure
|
2827
3427
|
end
|
2828
3428
|
|
2829
|
-
# @note When making an API call, you may pass UpdateSourceServerReplicationTypeRequest
|
2830
|
-
# data as a hash:
|
2831
|
-
#
|
2832
|
-
# {
|
2833
|
-
# replication_type: "AGENT_BASED", # required, accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
2834
|
-
# source_server_id: "SourceServerID", # required
|
2835
|
-
# }
|
2836
|
-
#
|
2837
3429
|
# @!attribute [rw] replication_type
|
2838
3430
|
# Replication type to which to update source server.
|
2839
3431
|
# @return [String]
|
@@ -2851,6 +3443,28 @@ module Aws::Mgn
|
|
2851
3443
|
include Aws::Structure
|
2852
3444
|
end
|
2853
3445
|
|
3446
|
+
# @!attribute [rw] description
|
3447
|
+
# Wave description.
|
3448
|
+
# @return [String]
|
3449
|
+
#
|
3450
|
+
# @!attribute [rw] name
|
3451
|
+
# Wave name.
|
3452
|
+
# @return [String]
|
3453
|
+
#
|
3454
|
+
# @!attribute [rw] wave_id
|
3455
|
+
# Wave ID.
|
3456
|
+
# @return [String]
|
3457
|
+
#
|
3458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateWaveRequest AWS API Documentation
|
3459
|
+
#
|
3460
|
+
class UpdateWaveRequest < Struct.new(
|
3461
|
+
:description,
|
3462
|
+
:name,
|
3463
|
+
:wave_id)
|
3464
|
+
SENSITIVE = []
|
3465
|
+
include Aws::Structure
|
3466
|
+
end
|
3467
|
+
|
2854
3468
|
# Validate exception.
|
2855
3469
|
#
|
2856
3470
|
# @!attribute [rw] code
|
@@ -2946,5 +3560,92 @@ module Aws::Mgn
|
|
2946
3560
|
include Aws::Structure
|
2947
3561
|
end
|
2948
3562
|
|
3563
|
+
# @!attribute [rw] arn
|
3564
|
+
# Wave ARN.
|
3565
|
+
# @return [String]
|
3566
|
+
#
|
3567
|
+
# @!attribute [rw] creation_date_time
|
3568
|
+
# Wave creation dateTime.
|
3569
|
+
# @return [String]
|
3570
|
+
#
|
3571
|
+
# @!attribute [rw] description
|
3572
|
+
# Wave description.
|
3573
|
+
# @return [String]
|
3574
|
+
#
|
3575
|
+
# @!attribute [rw] is_archived
|
3576
|
+
# Wave archival status.
|
3577
|
+
# @return [Boolean]
|
3578
|
+
#
|
3579
|
+
# @!attribute [rw] last_modified_date_time
|
3580
|
+
# Wave last modified dateTime.
|
3581
|
+
# @return [String]
|
3582
|
+
#
|
3583
|
+
# @!attribute [rw] name
|
3584
|
+
# Wave name.
|
3585
|
+
# @return [String]
|
3586
|
+
#
|
3587
|
+
# @!attribute [rw] tags
|
3588
|
+
# Wave tags.
|
3589
|
+
# @return [Hash<String,String>]
|
3590
|
+
#
|
3591
|
+
# @!attribute [rw] wave_aggregated_status
|
3592
|
+
# Wave aggregated status.
|
3593
|
+
# @return [Types::WaveAggregatedStatus]
|
3594
|
+
#
|
3595
|
+
# @!attribute [rw] wave_id
|
3596
|
+
# Wave ID.
|
3597
|
+
# @return [String]
|
3598
|
+
#
|
3599
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/Wave AWS API Documentation
|
3600
|
+
#
|
3601
|
+
class Wave < Struct.new(
|
3602
|
+
:arn,
|
3603
|
+
:creation_date_time,
|
3604
|
+
:description,
|
3605
|
+
:is_archived,
|
3606
|
+
:last_modified_date_time,
|
3607
|
+
:name,
|
3608
|
+
:tags,
|
3609
|
+
:wave_aggregated_status,
|
3610
|
+
:wave_id)
|
3611
|
+
SENSITIVE = [:tags]
|
3612
|
+
include Aws::Structure
|
3613
|
+
end
|
3614
|
+
|
3615
|
+
# Wave aggregated status.
|
3616
|
+
#
|
3617
|
+
# @!attribute [rw] health_status
|
3618
|
+
# Wave aggregated status health status.
|
3619
|
+
# @return [String]
|
3620
|
+
#
|
3621
|
+
# @!attribute [rw] last_update_date_time
|
3622
|
+
# Wave aggregated status last update dateTime.
|
3623
|
+
# @return [String]
|
3624
|
+
#
|
3625
|
+
# @!attribute [rw] progress_status
|
3626
|
+
# Wave aggregated status progress status.
|
3627
|
+
# @return [String]
|
3628
|
+
#
|
3629
|
+
# @!attribute [rw] replication_started_date_time
|
3630
|
+
# DateTime marking when the first source server in the wave started
|
3631
|
+
# replication.
|
3632
|
+
# @return [String]
|
3633
|
+
#
|
3634
|
+
# @!attribute [rw] total_applications
|
3635
|
+
# Wave aggregated status total applications amount.
|
3636
|
+
# @return [Integer]
|
3637
|
+
#
|
3638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/WaveAggregatedStatus AWS API Documentation
|
3639
|
+
#
|
3640
|
+
class WaveAggregatedStatus < Struct.new(
|
3641
|
+
:health_status,
|
3642
|
+
:last_update_date_time,
|
3643
|
+
:progress_status,
|
3644
|
+
:replication_started_date_time,
|
3645
|
+
:total_applications)
|
3646
|
+
SENSITIVE = []
|
3647
|
+
include Aws::Structure
|
3648
|
+
end
|
3649
|
+
|
2949
3650
|
end
|
2950
3651
|
end
|