aws-sdk-mgn 1.15.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mgn/client.rb +1318 -34
- data/lib/aws-sdk-mgn/client_api.rb +631 -6
- 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 +1568 -64
- data/lib/aws-sdk-mgn.rb +2 -2
- metadata +2 -2
data/lib/aws-sdk-mgn/types.rb
CHANGED
@@ -27,6 +27,188 @@ 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
|
+
# @note When making an API call, you may pass ArchiveApplicationRequest
|
117
|
+
# data as a hash:
|
118
|
+
#
|
119
|
+
# {
|
120
|
+
# application_id: "ApplicationID", # required
|
121
|
+
# }
|
122
|
+
#
|
123
|
+
# @!attribute [rw] application_id
|
124
|
+
# Application ID.
|
125
|
+
# @return [String]
|
126
|
+
#
|
127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ArchiveApplicationRequest AWS API Documentation
|
128
|
+
#
|
129
|
+
class ArchiveApplicationRequest < Struct.new(
|
130
|
+
:application_id)
|
131
|
+
SENSITIVE = []
|
132
|
+
include Aws::Structure
|
133
|
+
end
|
134
|
+
|
135
|
+
# @note When making an API call, you may pass ArchiveWaveRequest
|
136
|
+
# data as a hash:
|
137
|
+
#
|
138
|
+
# {
|
139
|
+
# wave_id: "WaveID", # required
|
140
|
+
# }
|
141
|
+
#
|
142
|
+
# @!attribute [rw] wave_id
|
143
|
+
# Wave ID.
|
144
|
+
# @return [String]
|
145
|
+
#
|
146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ArchiveWaveRequest AWS API Documentation
|
147
|
+
#
|
148
|
+
class ArchiveWaveRequest < Struct.new(
|
149
|
+
:wave_id)
|
150
|
+
SENSITIVE = []
|
151
|
+
include Aws::Structure
|
152
|
+
end
|
153
|
+
|
154
|
+
# @note When making an API call, you may pass AssociateApplicationsRequest
|
155
|
+
# data as a hash:
|
156
|
+
#
|
157
|
+
# {
|
158
|
+
# application_i_ds: ["ApplicationID"], # required
|
159
|
+
# wave_id: "WaveID", # required
|
160
|
+
# }
|
161
|
+
#
|
162
|
+
# @!attribute [rw] application_i_ds
|
163
|
+
# Application IDs list.
|
164
|
+
# @return [Array<String>]
|
165
|
+
#
|
166
|
+
# @!attribute [rw] wave_id
|
167
|
+
# Wave ID.
|
168
|
+
# @return [String]
|
169
|
+
#
|
170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateApplicationsRequest AWS API Documentation
|
171
|
+
#
|
172
|
+
class AssociateApplicationsRequest < Struct.new(
|
173
|
+
:application_i_ds,
|
174
|
+
:wave_id)
|
175
|
+
SENSITIVE = []
|
176
|
+
include Aws::Structure
|
177
|
+
end
|
178
|
+
|
179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateApplicationsResponse AWS API Documentation
|
180
|
+
#
|
181
|
+
class AssociateApplicationsResponse < Aws::EmptyStructure; end
|
182
|
+
|
183
|
+
# @note When making an API call, you may pass AssociateSourceServersRequest
|
184
|
+
# data as a hash:
|
185
|
+
#
|
186
|
+
# {
|
187
|
+
# application_id: "ApplicationID", # required
|
188
|
+
# source_server_i_ds: ["SourceServerID"], # required
|
189
|
+
# }
|
190
|
+
#
|
191
|
+
# @!attribute [rw] application_id
|
192
|
+
# Application ID.
|
193
|
+
# @return [String]
|
194
|
+
#
|
195
|
+
# @!attribute [rw] source_server_i_ds
|
196
|
+
# Source server IDs list.
|
197
|
+
# @return [Array<String>]
|
198
|
+
#
|
199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateSourceServersRequest AWS API Documentation
|
200
|
+
#
|
201
|
+
class AssociateSourceServersRequest < Struct.new(
|
202
|
+
:application_id,
|
203
|
+
:source_server_i_ds)
|
204
|
+
SENSITIVE = []
|
205
|
+
include Aws::Structure
|
206
|
+
end
|
207
|
+
|
208
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/AssociateSourceServersResponse AWS API Documentation
|
209
|
+
#
|
210
|
+
class AssociateSourceServersResponse < Aws::EmptyStructure; end
|
211
|
+
|
30
212
|
# Source server CPU information.
|
31
213
|
#
|
32
214
|
# @!attribute [rw] cores
|
@@ -128,13 +310,61 @@ module Aws::Mgn
|
|
128
310
|
include Aws::Structure
|
129
311
|
end
|
130
312
|
|
313
|
+
# @note When making an API call, you may pass CreateApplicationRequest
|
314
|
+
# data as a hash:
|
315
|
+
#
|
316
|
+
# {
|
317
|
+
# description: "ApplicationDescription",
|
318
|
+
# name: "ApplicationName", # required
|
319
|
+
# tags: {
|
320
|
+
# "TagKey" => "TagValue",
|
321
|
+
# },
|
322
|
+
# }
|
323
|
+
#
|
324
|
+
# @!attribute [rw] description
|
325
|
+
# Application description.
|
326
|
+
# @return [String]
|
327
|
+
#
|
328
|
+
# @!attribute [rw] name
|
329
|
+
# Application name.
|
330
|
+
# @return [String]
|
331
|
+
#
|
332
|
+
# @!attribute [rw] tags
|
333
|
+
# Application tags.
|
334
|
+
# @return [Hash<String,String>]
|
335
|
+
#
|
336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateApplicationRequest AWS API Documentation
|
337
|
+
#
|
338
|
+
class CreateApplicationRequest < Struct.new(
|
339
|
+
:description,
|
340
|
+
:name,
|
341
|
+
:tags)
|
342
|
+
SENSITIVE = [:tags]
|
343
|
+
include Aws::Structure
|
344
|
+
end
|
345
|
+
|
131
346
|
# @note When making an API call, you may pass CreateLaunchConfigurationTemplateRequest
|
132
347
|
# data as a hash:
|
133
348
|
#
|
134
349
|
# {
|
350
|
+
# associate_public_ip_address: false,
|
351
|
+
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
352
|
+
# copy_private_ip: false,
|
353
|
+
# copy_tags: false,
|
354
|
+
# enable_map_auto_tagging: false,
|
355
|
+
# large_volume_conf: {
|
356
|
+
# iops: 1,
|
357
|
+
# throughput: 1,
|
358
|
+
# volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
|
359
|
+
# },
|
360
|
+
# launch_disposition: "STOPPED", # accepts STOPPED, STARTED
|
361
|
+
# licensing: {
|
362
|
+
# os_byol: false,
|
363
|
+
# },
|
364
|
+
# map_auto_tagging_mpe_id: "TagValue",
|
135
365
|
# post_launch_actions: {
|
136
366
|
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
137
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
367
|
+
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY, TEST_ONLY
|
138
368
|
# s3_log_bucket: "S3LogBucketName",
|
139
369
|
# s3_output_key_prefix: "BoundedString",
|
140
370
|
# ssm_documents: [
|
@@ -154,26 +384,92 @@ module Aws::Mgn
|
|
154
384
|
# },
|
155
385
|
# ],
|
156
386
|
# },
|
387
|
+
# small_volume_conf: {
|
388
|
+
# iops: 1,
|
389
|
+
# throughput: 1,
|
390
|
+
# volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
|
391
|
+
# },
|
392
|
+
# small_volume_max_size: 1,
|
157
393
|
# tags: {
|
158
394
|
# "TagKey" => "TagValue",
|
159
395
|
# },
|
396
|
+
# target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
|
160
397
|
# }
|
161
398
|
#
|
399
|
+
# @!attribute [rw] associate_public_ip_address
|
400
|
+
# Associate public Ip address.
|
401
|
+
# @return [Boolean]
|
402
|
+
#
|
403
|
+
# @!attribute [rw] boot_mode
|
404
|
+
# Launch configuration template boot mode.
|
405
|
+
# @return [String]
|
406
|
+
#
|
407
|
+
# @!attribute [rw] copy_private_ip
|
408
|
+
# Copy private Ip.
|
409
|
+
# @return [Boolean]
|
410
|
+
#
|
411
|
+
# @!attribute [rw] copy_tags
|
412
|
+
# Copy tags.
|
413
|
+
# @return [Boolean]
|
414
|
+
#
|
415
|
+
# @!attribute [rw] enable_map_auto_tagging
|
416
|
+
# Enable map auto tagging.
|
417
|
+
# @return [Boolean]
|
418
|
+
#
|
419
|
+
# @!attribute [rw] large_volume_conf
|
420
|
+
# Large volume config.
|
421
|
+
# @return [Types::LaunchTemplateDiskConf]
|
422
|
+
#
|
423
|
+
# @!attribute [rw] launch_disposition
|
424
|
+
# Launch disposition.
|
425
|
+
# @return [String]
|
426
|
+
#
|
427
|
+
# @!attribute [rw] licensing
|
428
|
+
# Configure Licensing.
|
429
|
+
# @return [Types::Licensing]
|
430
|
+
#
|
431
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
432
|
+
# Launch configuration template map auto tagging MPE ID.
|
433
|
+
# @return [String]
|
434
|
+
#
|
162
435
|
# @!attribute [rw] post_launch_actions
|
163
|
-
#
|
164
|
-
# Security group with the Replication Settings template.
|
436
|
+
# Launch configuration template post launch actions.
|
165
437
|
# @return [Types::PostLaunchActions]
|
166
438
|
#
|
439
|
+
# @!attribute [rw] small_volume_conf
|
440
|
+
# Small volume config.
|
441
|
+
# @return [Types::LaunchTemplateDiskConf]
|
442
|
+
#
|
443
|
+
# @!attribute [rw] small_volume_max_size
|
444
|
+
# Small volume maximum size.
|
445
|
+
# @return [Integer]
|
446
|
+
#
|
167
447
|
# @!attribute [rw] tags
|
168
|
-
# Request to associate
|
169
|
-
#
|
448
|
+
# Request to associate tags during creation of a Launch Configuration
|
449
|
+
# Template.
|
170
450
|
# @return [Hash<String,String>]
|
171
451
|
#
|
452
|
+
# @!attribute [rw] target_instance_type_right_sizing_method
|
453
|
+
# Target instance type right-sizing method.
|
454
|
+
# @return [String]
|
455
|
+
#
|
172
456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateLaunchConfigurationTemplateRequest AWS API Documentation
|
173
457
|
#
|
174
458
|
class CreateLaunchConfigurationTemplateRequest < Struct.new(
|
459
|
+
:associate_public_ip_address,
|
460
|
+
:boot_mode,
|
461
|
+
:copy_private_ip,
|
462
|
+
:copy_tags,
|
463
|
+
:enable_map_auto_tagging,
|
464
|
+
:large_volume_conf,
|
465
|
+
:launch_disposition,
|
466
|
+
:licensing,
|
467
|
+
:map_auto_tagging_mpe_id,
|
175
468
|
:post_launch_actions,
|
176
|
-
:
|
469
|
+
:small_volume_conf,
|
470
|
+
:small_volume_max_size,
|
471
|
+
:tags,
|
472
|
+
:target_instance_type_right_sizing_method)
|
177
473
|
SENSITIVE = [:tags]
|
178
474
|
include Aws::Structure
|
179
475
|
end
|
@@ -286,6 +582,39 @@ module Aws::Mgn
|
|
286
582
|
include Aws::Structure
|
287
583
|
end
|
288
584
|
|
585
|
+
# @note When making an API call, you may pass CreateWaveRequest
|
586
|
+
# data as a hash:
|
587
|
+
#
|
588
|
+
# {
|
589
|
+
# description: "WaveDescription",
|
590
|
+
# name: "WaveName", # required
|
591
|
+
# tags: {
|
592
|
+
# "TagKey" => "TagValue",
|
593
|
+
# },
|
594
|
+
# }
|
595
|
+
#
|
596
|
+
# @!attribute [rw] description
|
597
|
+
# Wave description.
|
598
|
+
# @return [String]
|
599
|
+
#
|
600
|
+
# @!attribute [rw] name
|
601
|
+
# Wave name.
|
602
|
+
# @return [String]
|
603
|
+
#
|
604
|
+
# @!attribute [rw] tags
|
605
|
+
# Wave tags.
|
606
|
+
# @return [Hash<String,String>]
|
607
|
+
#
|
608
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateWaveRequest AWS API Documentation
|
609
|
+
#
|
610
|
+
class CreateWaveRequest < Struct.new(
|
611
|
+
:description,
|
612
|
+
:name,
|
613
|
+
:tags)
|
614
|
+
SENSITIVE = [:tags]
|
615
|
+
include Aws::Structure
|
616
|
+
end
|
617
|
+
|
289
618
|
# Error in data replication.
|
290
619
|
#
|
291
620
|
# @!attribute [rw] error
|
@@ -426,6 +755,29 @@ module Aws::Mgn
|
|
426
755
|
include Aws::Structure
|
427
756
|
end
|
428
757
|
|
758
|
+
# @note When making an API call, you may pass DeleteApplicationRequest
|
759
|
+
# data as a hash:
|
760
|
+
#
|
761
|
+
# {
|
762
|
+
# application_id: "ApplicationID", # required
|
763
|
+
# }
|
764
|
+
#
|
765
|
+
# @!attribute [rw] application_id
|
766
|
+
# Application ID.
|
767
|
+
# @return [String]
|
768
|
+
#
|
769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteApplicationRequest AWS API Documentation
|
770
|
+
#
|
771
|
+
class DeleteApplicationRequest < Struct.new(
|
772
|
+
:application_id)
|
773
|
+
SENSITIVE = []
|
774
|
+
include Aws::Structure
|
775
|
+
end
|
776
|
+
|
777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteApplicationResponse AWS API Documentation
|
778
|
+
#
|
779
|
+
class DeleteApplicationResponse < Aws::EmptyStructure; end
|
780
|
+
|
429
781
|
# @note When making an API call, you may pass DeleteJobRequest
|
430
782
|
# data as a hash:
|
431
783
|
#
|
@@ -538,6 +890,29 @@ module Aws::Mgn
|
|
538
890
|
include Aws::Structure
|
539
891
|
end
|
540
892
|
|
893
|
+
# @note When making an API call, you may pass DeleteWaveRequest
|
894
|
+
# data as a hash:
|
895
|
+
#
|
896
|
+
# {
|
897
|
+
# wave_id: "WaveID", # required
|
898
|
+
# }
|
899
|
+
#
|
900
|
+
# @!attribute [rw] wave_id
|
901
|
+
# Wave ID.
|
902
|
+
# @return [String]
|
903
|
+
#
|
904
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteWaveRequest AWS API Documentation
|
905
|
+
#
|
906
|
+
class DeleteWaveRequest < Struct.new(
|
907
|
+
:wave_id)
|
908
|
+
SENSITIVE = []
|
909
|
+
include Aws::Structure
|
910
|
+
end
|
911
|
+
|
912
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DeleteWaveResponse AWS API Documentation
|
913
|
+
#
|
914
|
+
class DeleteWaveResponse < Aws::EmptyStructure; end
|
915
|
+
|
541
916
|
# @note When making an API call, you may pass DescribeJobLogItemsRequest
|
542
917
|
# data as a hash:
|
543
918
|
#
|
@@ -681,15 +1056,18 @@ module Aws::Mgn
|
|
681
1056
|
# }
|
682
1057
|
#
|
683
1058
|
# @!attribute [rw] launch_configuration_template_i_ds
|
684
|
-
# Request to
|
1059
|
+
# Request to filter Launch Configuration Templates list by Launch
|
1060
|
+
# Configuration Template ID.
|
685
1061
|
# @return [Array<String>]
|
686
1062
|
#
|
687
1063
|
# @!attribute [rw] max_results
|
688
|
-
#
|
1064
|
+
# Maximum results to be returned in
|
1065
|
+
# DescribeLaunchConfigurationTemplates.
|
689
1066
|
# @return [Integer]
|
690
1067
|
#
|
691
1068
|
# @!attribute [rw] next_token
|
692
|
-
#
|
1069
|
+
# Next pagination token returned from
|
1070
|
+
# DescribeLaunchConfigurationTemplates.
|
693
1071
|
# @return [String]
|
694
1072
|
#
|
695
1073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeLaunchConfigurationTemplatesRequest AWS API Documentation
|
@@ -703,11 +1081,12 @@ module Aws::Mgn
|
|
703
1081
|
end
|
704
1082
|
|
705
1083
|
# @!attribute [rw] items
|
706
|
-
#
|
1084
|
+
# List of items returned by DescribeLaunchConfigurationTemplates.
|
707
1085
|
# @return [Array<Types::LaunchConfigurationTemplate>]
|
708
1086
|
#
|
709
1087
|
# @!attribute [rw] next_token
|
710
|
-
#
|
1088
|
+
# Next pagination token returned from
|
1089
|
+
# DescribeLaunchConfigurationTemplates.
|
711
1090
|
# @return [String]
|
712
1091
|
#
|
713
1092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeLaunchConfigurationTemplatesResponse AWS API Documentation
|
@@ -776,6 +1155,7 @@ module Aws::Mgn
|
|
776
1155
|
#
|
777
1156
|
# {
|
778
1157
|
# filters: {
|
1158
|
+
# application_i_ds: ["ApplicationID"],
|
779
1159
|
# is_archived: false,
|
780
1160
|
# life_cycle_states: ["STOPPED"], # accepts STOPPED, NOT_READY, READY_FOR_TEST, TESTING, READY_FOR_CUTOVER, CUTTING_OVER, CUTOVER, DISCONNECTED, DISCOVERED
|
781
1161
|
# replication_types: ["AGENT_BASED"], # accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
@@ -813,12 +1193,17 @@ module Aws::Mgn
|
|
813
1193
|
# data as a hash:
|
814
1194
|
#
|
815
1195
|
# {
|
1196
|
+
# application_i_ds: ["ApplicationID"],
|
816
1197
|
# is_archived: false,
|
817
1198
|
# life_cycle_states: ["STOPPED"], # accepts STOPPED, NOT_READY, READY_FOR_TEST, TESTING, READY_FOR_CUTOVER, CUTTING_OVER, CUTOVER, DISCONNECTED, DISCOVERED
|
818
1199
|
# replication_types: ["AGENT_BASED"], # accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
819
1200
|
# source_server_i_ds: ["SourceServerID"],
|
820
1201
|
# }
|
821
1202
|
#
|
1203
|
+
# @!attribute [rw] application_i_ds
|
1204
|
+
# Request to filter Source Servers list by application IDs.
|
1205
|
+
# @return [Array<String>]
|
1206
|
+
#
|
822
1207
|
# @!attribute [rw] is_archived
|
823
1208
|
# Request to filter Source Servers list by archived.
|
824
1209
|
# @return [Boolean]
|
@@ -838,6 +1223,7 @@ module Aws::Mgn
|
|
838
1223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeSourceServersRequestFilters AWS API Documentation
|
839
1224
|
#
|
840
1225
|
class DescribeSourceServersRequestFilters < Struct.new(
|
1226
|
+
:application_i_ds,
|
841
1227
|
:is_archived,
|
842
1228
|
:life_cycle_states,
|
843
1229
|
:replication_types,
|
@@ -905,34 +1291,92 @@ module Aws::Mgn
|
|
905
1291
|
include Aws::Structure
|
906
1292
|
end
|
907
1293
|
|
908
|
-
# @note When making an API call, you may pass
|
1294
|
+
# @note When making an API call, you may pass DisassociateApplicationsRequest
|
909
1295
|
# data as a hash:
|
910
1296
|
#
|
911
1297
|
# {
|
912
|
-
#
|
1298
|
+
# application_i_ds: ["ApplicationID"], # required
|
1299
|
+
# wave_id: "WaveID", # required
|
913
1300
|
# }
|
914
1301
|
#
|
915
|
-
# @!attribute [rw]
|
916
|
-
#
|
1302
|
+
# @!attribute [rw] application_i_ds
|
1303
|
+
# Application IDs list.
|
1304
|
+
# @return [Array<String>]
|
1305
|
+
#
|
1306
|
+
# @!attribute [rw] wave_id
|
1307
|
+
# Wave ID.
|
917
1308
|
# @return [String]
|
918
1309
|
#
|
919
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/
|
1310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateApplicationsRequest AWS API Documentation
|
920
1311
|
#
|
921
|
-
class
|
922
|
-
:
|
1312
|
+
class DisassociateApplicationsRequest < Struct.new(
|
1313
|
+
:application_i_ds,
|
1314
|
+
:wave_id)
|
923
1315
|
SENSITIVE = []
|
924
1316
|
include Aws::Structure
|
925
1317
|
end
|
926
1318
|
|
927
|
-
#
|
1319
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateApplicationsResponse AWS API Documentation
|
928
1320
|
#
|
929
|
-
|
930
|
-
|
931
|
-
#
|
1321
|
+
class DisassociateApplicationsResponse < Aws::EmptyStructure; end
|
1322
|
+
|
1323
|
+
# @note When making an API call, you may pass DisassociateSourceServersRequest
|
1324
|
+
# data as a hash:
|
932
1325
|
#
|
933
|
-
#
|
934
|
-
#
|
935
|
-
#
|
1326
|
+
# {
|
1327
|
+
# application_id: "ApplicationID", # required
|
1328
|
+
# source_server_i_ds: ["SourceServerID"], # required
|
1329
|
+
# }
|
1330
|
+
#
|
1331
|
+
# @!attribute [rw] application_id
|
1332
|
+
# Application ID.
|
1333
|
+
# @return [String]
|
1334
|
+
#
|
1335
|
+
# @!attribute [rw] source_server_i_ds
|
1336
|
+
# Source server IDs list.
|
1337
|
+
# @return [Array<String>]
|
1338
|
+
#
|
1339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateSourceServersRequest AWS API Documentation
|
1340
|
+
#
|
1341
|
+
class DisassociateSourceServersRequest < Struct.new(
|
1342
|
+
:application_id,
|
1343
|
+
:source_server_i_ds)
|
1344
|
+
SENSITIVE = []
|
1345
|
+
include Aws::Structure
|
1346
|
+
end
|
1347
|
+
|
1348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisassociateSourceServersResponse AWS API Documentation
|
1349
|
+
#
|
1350
|
+
class DisassociateSourceServersResponse < Aws::EmptyStructure; end
|
1351
|
+
|
1352
|
+
# @note When making an API call, you may pass DisconnectFromServiceRequest
|
1353
|
+
# data as a hash:
|
1354
|
+
#
|
1355
|
+
# {
|
1356
|
+
# source_server_id: "SourceServerID", # required
|
1357
|
+
# }
|
1358
|
+
#
|
1359
|
+
# @!attribute [rw] source_server_id
|
1360
|
+
# Request to disconnect Source Server from service by Server ID.
|
1361
|
+
# @return [String]
|
1362
|
+
#
|
1363
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisconnectFromServiceRequest AWS API Documentation
|
1364
|
+
#
|
1365
|
+
class DisconnectFromServiceRequest < Struct.new(
|
1366
|
+
:source_server_id)
|
1367
|
+
SENSITIVE = []
|
1368
|
+
include Aws::Structure
|
1369
|
+
end
|
1370
|
+
|
1371
|
+
# The disk identifier.
|
1372
|
+
#
|
1373
|
+
# @!attribute [rw] bytes
|
1374
|
+
# The amount of storage on the disk in bytes.
|
1375
|
+
# @return [Integer]
|
1376
|
+
#
|
1377
|
+
# @!attribute [rw] device_name
|
1378
|
+
# The disk or device name.
|
1379
|
+
# @return [String]
|
936
1380
|
#
|
937
1381
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/Disk AWS API Documentation
|
938
1382
|
#
|
@@ -1201,26 +1645,28 @@ module Aws::Mgn
|
|
1201
1645
|
include Aws::Structure
|
1202
1646
|
end
|
1203
1647
|
|
1204
|
-
# Job
|
1648
|
+
# Launch Status of the Job Post Launch Actions.
|
1205
1649
|
#
|
1206
1650
|
# @!attribute [rw] execution_id
|
1207
|
-
# Job
|
1651
|
+
# AWS Systems Manager Document's execution ID of the of the Job Post
|
1652
|
+
# Launch Actions.
|
1208
1653
|
# @return [String]
|
1209
1654
|
#
|
1210
1655
|
# @!attribute [rw] execution_status
|
1211
|
-
#
|
1656
|
+
# AWS Systems Manager Document's execution status.
|
1212
1657
|
# @return [String]
|
1213
1658
|
#
|
1214
1659
|
# @!attribute [rw] failure_reason
|
1215
|
-
#
|
1660
|
+
# AWS Systems Manager Document's failure reason.
|
1216
1661
|
# @return [String]
|
1217
1662
|
#
|
1218
1663
|
# @!attribute [rw] ssm_document
|
1219
|
-
# Job
|
1664
|
+
# AWS Systems Manager's Document of the of the Job Post Launch
|
1665
|
+
# Actions.
|
1220
1666
|
# @return [Types::SsmDocument]
|
1221
1667
|
#
|
1222
1668
|
# @!attribute [rw] ssm_document_type
|
1223
|
-
#
|
1669
|
+
# AWS Systems Manager Document type.
|
1224
1670
|
# @return [String]
|
1225
1671
|
#
|
1226
1672
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/JobPostLaunchActionsLaunchStatus AWS API Documentation
|
@@ -1251,6 +1697,10 @@ module Aws::Mgn
|
|
1251
1697
|
# Launch configuration EC2 Launch template ID.
|
1252
1698
|
# @return [String]
|
1253
1699
|
#
|
1700
|
+
# @!attribute [rw] enable_map_auto_tagging
|
1701
|
+
# Enable map auto tagging.
|
1702
|
+
# @return [Boolean]
|
1703
|
+
#
|
1254
1704
|
# @!attribute [rw] launch_disposition
|
1255
1705
|
# Launch disposition for launch configuration.
|
1256
1706
|
# @return [String]
|
@@ -1259,12 +1709,16 @@ module Aws::Mgn
|
|
1259
1709
|
# Launch configuration OS licensing.
|
1260
1710
|
# @return [Types::Licensing]
|
1261
1711
|
#
|
1712
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
1713
|
+
# Map auto tagging MPE ID.
|
1714
|
+
# @return [String]
|
1715
|
+
#
|
1262
1716
|
# @!attribute [rw] name
|
1263
1717
|
# Launch configuration name.
|
1264
1718
|
# @return [String]
|
1265
1719
|
#
|
1266
1720
|
# @!attribute [rw] post_launch_actions
|
1267
|
-
#
|
1721
|
+
# Post Launch Actions to executed on the Test or Cutover instance.
|
1268
1722
|
# @return [Types::PostLaunchActions]
|
1269
1723
|
#
|
1270
1724
|
# @!attribute [rw] source_server_id
|
@@ -1282,8 +1736,10 @@ module Aws::Mgn
|
|
1282
1736
|
:copy_private_ip,
|
1283
1737
|
:copy_tags,
|
1284
1738
|
:ec2_launch_template_id,
|
1739
|
+
:enable_map_auto_tagging,
|
1285
1740
|
:launch_disposition,
|
1286
1741
|
:licensing,
|
1742
|
+
:map_auto_tagging_mpe_id,
|
1287
1743
|
:name,
|
1288
1744
|
:post_launch_actions,
|
1289
1745
|
:source_server_id,
|
@@ -1293,32 +1749,130 @@ module Aws::Mgn
|
|
1293
1749
|
end
|
1294
1750
|
|
1295
1751
|
# @!attribute [rw] arn
|
1296
|
-
#
|
1752
|
+
# ARN of the Launch Configuration Template.
|
1753
|
+
# @return [String]
|
1754
|
+
#
|
1755
|
+
# @!attribute [rw] associate_public_ip_address
|
1756
|
+
# Associate public Ip address.
|
1757
|
+
# @return [Boolean]
|
1758
|
+
#
|
1759
|
+
# @!attribute [rw] boot_mode
|
1760
|
+
# Launch configuration template boot mode.
|
1297
1761
|
# @return [String]
|
1298
1762
|
#
|
1763
|
+
# @!attribute [rw] copy_private_ip
|
1764
|
+
# Copy private Ip.
|
1765
|
+
# @return [Boolean]
|
1766
|
+
#
|
1767
|
+
# @!attribute [rw] copy_tags
|
1768
|
+
# Copy tags.
|
1769
|
+
# @return [Boolean]
|
1770
|
+
#
|
1771
|
+
# @!attribute [rw] ec2_launch_template_id
|
1772
|
+
# EC2 launch template ID.
|
1773
|
+
# @return [String]
|
1774
|
+
#
|
1775
|
+
# @!attribute [rw] enable_map_auto_tagging
|
1776
|
+
# Enable map auto tagging.
|
1777
|
+
# @return [Boolean]
|
1778
|
+
#
|
1779
|
+
# @!attribute [rw] large_volume_conf
|
1780
|
+
# Large volume config.
|
1781
|
+
# @return [Types::LaunchTemplateDiskConf]
|
1782
|
+
#
|
1299
1783
|
# @!attribute [rw] launch_configuration_template_id
|
1300
|
-
#
|
1784
|
+
# ID of the Launch Configuration Template.
|
1785
|
+
# @return [String]
|
1786
|
+
#
|
1787
|
+
# @!attribute [rw] launch_disposition
|
1788
|
+
# Launch disposition.
|
1789
|
+
# @return [String]
|
1790
|
+
#
|
1791
|
+
# @!attribute [rw] licensing
|
1792
|
+
# Configure Licensing.
|
1793
|
+
# @return [Types::Licensing]
|
1794
|
+
#
|
1795
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
1796
|
+
# Launch configuration template map auto tagging MPE ID.
|
1301
1797
|
# @return [String]
|
1302
1798
|
#
|
1303
1799
|
# @!attribute [rw] post_launch_actions
|
1304
|
-
#
|
1800
|
+
# Post Launch Actions of the Launch Configuration Template.
|
1305
1801
|
# @return [Types::PostLaunchActions]
|
1306
1802
|
#
|
1803
|
+
# @!attribute [rw] small_volume_conf
|
1804
|
+
# Small volume config.
|
1805
|
+
# @return [Types::LaunchTemplateDiskConf]
|
1806
|
+
#
|
1807
|
+
# @!attribute [rw] small_volume_max_size
|
1808
|
+
# Small volume maximum size.
|
1809
|
+
# @return [Integer]
|
1810
|
+
#
|
1307
1811
|
# @!attribute [rw] tags
|
1308
|
-
#
|
1812
|
+
# Tags of the Launch Configuration Template.
|
1309
1813
|
# @return [Hash<String,String>]
|
1310
1814
|
#
|
1815
|
+
# @!attribute [rw] target_instance_type_right_sizing_method
|
1816
|
+
# Target instance type right-sizing method.
|
1817
|
+
# @return [String]
|
1818
|
+
#
|
1311
1819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchConfigurationTemplate AWS API Documentation
|
1312
1820
|
#
|
1313
1821
|
class LaunchConfigurationTemplate < Struct.new(
|
1314
1822
|
:arn,
|
1823
|
+
:associate_public_ip_address,
|
1824
|
+
:boot_mode,
|
1825
|
+
:copy_private_ip,
|
1826
|
+
:copy_tags,
|
1827
|
+
:ec2_launch_template_id,
|
1828
|
+
:enable_map_auto_tagging,
|
1829
|
+
:large_volume_conf,
|
1315
1830
|
:launch_configuration_template_id,
|
1831
|
+
:launch_disposition,
|
1832
|
+
:licensing,
|
1833
|
+
:map_auto_tagging_mpe_id,
|
1316
1834
|
:post_launch_actions,
|
1317
|
-
:
|
1835
|
+
:small_volume_conf,
|
1836
|
+
:small_volume_max_size,
|
1837
|
+
:tags,
|
1838
|
+
:target_instance_type_right_sizing_method)
|
1318
1839
|
SENSITIVE = [:tags]
|
1319
1840
|
include Aws::Structure
|
1320
1841
|
end
|
1321
1842
|
|
1843
|
+
# Launch template disk configuration.
|
1844
|
+
#
|
1845
|
+
# @note When making an API call, you may pass LaunchTemplateDiskConf
|
1846
|
+
# data as a hash:
|
1847
|
+
#
|
1848
|
+
# {
|
1849
|
+
# iops: 1,
|
1850
|
+
# throughput: 1,
|
1851
|
+
# volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
|
1852
|
+
# }
|
1853
|
+
#
|
1854
|
+
# @!attribute [rw] iops
|
1855
|
+
# Launch template disk iops configuration.
|
1856
|
+
# @return [Integer]
|
1857
|
+
#
|
1858
|
+
# @!attribute [rw] throughput
|
1859
|
+
# Launch template disk throughput configuration.
|
1860
|
+
# @return [Integer]
|
1861
|
+
#
|
1862
|
+
# @!attribute [rw] volume_type
|
1863
|
+
# Launch template disk volume type configuration.
|
1864
|
+
# @return [String]
|
1865
|
+
#
|
1866
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchTemplateDiskConf AWS API Documentation
|
1867
|
+
#
|
1868
|
+
class LaunchTemplateDiskConf < Struct.new(
|
1869
|
+
:iops,
|
1870
|
+
:throughput,
|
1871
|
+
:volume_type)
|
1872
|
+
SENSITIVE = []
|
1873
|
+
include Aws::Structure
|
1874
|
+
end
|
1875
|
+
|
1322
1876
|
# Launched instance.
|
1323
1877
|
#
|
1324
1878
|
# @!attribute [rw] ec2_instance_id
|
@@ -1549,6 +2103,151 @@ module Aws::Mgn
|
|
1549
2103
|
include Aws::Structure
|
1550
2104
|
end
|
1551
2105
|
|
2106
|
+
# @note When making an API call, you may pass ListApplicationsRequest
|
2107
|
+
# data as a hash:
|
2108
|
+
#
|
2109
|
+
# {
|
2110
|
+
# filters: {
|
2111
|
+
# application_i_ds: ["ApplicationID"],
|
2112
|
+
# is_archived: false,
|
2113
|
+
# wave_i_ds: ["WaveID"],
|
2114
|
+
# },
|
2115
|
+
# max_results: 1,
|
2116
|
+
# next_token: "PaginationToken",
|
2117
|
+
# }
|
2118
|
+
#
|
2119
|
+
# @!attribute [rw] filters
|
2120
|
+
# Applications list filters.
|
2121
|
+
# @return [Types::ListApplicationsRequestFilters]
|
2122
|
+
#
|
2123
|
+
# @!attribute [rw] max_results
|
2124
|
+
# Maximum results to return when listing applications.
|
2125
|
+
# @return [Integer]
|
2126
|
+
#
|
2127
|
+
# @!attribute [rw] next_token
|
2128
|
+
# Request next token.
|
2129
|
+
# @return [String]
|
2130
|
+
#
|
2131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListApplicationsRequest AWS API Documentation
|
2132
|
+
#
|
2133
|
+
class ListApplicationsRequest < Struct.new(
|
2134
|
+
:filters,
|
2135
|
+
:max_results,
|
2136
|
+
:next_token)
|
2137
|
+
SENSITIVE = []
|
2138
|
+
include Aws::Structure
|
2139
|
+
end
|
2140
|
+
|
2141
|
+
# Applications list filters.
|
2142
|
+
#
|
2143
|
+
# @note When making an API call, you may pass ListApplicationsRequestFilters
|
2144
|
+
# data as a hash:
|
2145
|
+
#
|
2146
|
+
# {
|
2147
|
+
# application_i_ds: ["ApplicationID"],
|
2148
|
+
# is_archived: false,
|
2149
|
+
# wave_i_ds: ["WaveID"],
|
2150
|
+
# }
|
2151
|
+
#
|
2152
|
+
# @!attribute [rw] application_i_ds
|
2153
|
+
# Filter applications list by application ID.
|
2154
|
+
# @return [Array<String>]
|
2155
|
+
#
|
2156
|
+
# @!attribute [rw] is_archived
|
2157
|
+
# Filter applications list by archival status.
|
2158
|
+
# @return [Boolean]
|
2159
|
+
#
|
2160
|
+
# @!attribute [rw] wave_i_ds
|
2161
|
+
# Filter applications list by wave ID.
|
2162
|
+
# @return [Array<String>]
|
2163
|
+
#
|
2164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListApplicationsRequestFilters AWS API Documentation
|
2165
|
+
#
|
2166
|
+
class ListApplicationsRequestFilters < Struct.new(
|
2167
|
+
:application_i_ds,
|
2168
|
+
:is_archived,
|
2169
|
+
:wave_i_ds)
|
2170
|
+
SENSITIVE = []
|
2171
|
+
include Aws::Structure
|
2172
|
+
end
|
2173
|
+
|
2174
|
+
# @!attribute [rw] items
|
2175
|
+
# Applications list.
|
2176
|
+
# @return [Array<Types::Application>]
|
2177
|
+
#
|
2178
|
+
# @!attribute [rw] next_token
|
2179
|
+
# Response next token.
|
2180
|
+
# @return [String]
|
2181
|
+
#
|
2182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListApplicationsResponse AWS API Documentation
|
2183
|
+
#
|
2184
|
+
class ListApplicationsResponse < Struct.new(
|
2185
|
+
:items,
|
2186
|
+
:next_token)
|
2187
|
+
SENSITIVE = []
|
2188
|
+
include Aws::Structure
|
2189
|
+
end
|
2190
|
+
|
2191
|
+
# @note When making an API call, you may pass ListSourceServerActionsRequest
|
2192
|
+
# data as a hash:
|
2193
|
+
#
|
2194
|
+
# {
|
2195
|
+
# filters: {
|
2196
|
+
# action_i_ds: ["ActionID"],
|
2197
|
+
# },
|
2198
|
+
# max_results: 1,
|
2199
|
+
# next_token: "PaginationToken",
|
2200
|
+
# source_server_id: "SourceServerID", # required
|
2201
|
+
# }
|
2202
|
+
#
|
2203
|
+
# @!attribute [rw] filters
|
2204
|
+
# Filters to apply when listing source server post migration custom
|
2205
|
+
# actions.
|
2206
|
+
# @return [Types::SourceServerActionsRequestFilters]
|
2207
|
+
#
|
2208
|
+
# @!attribute [rw] max_results
|
2209
|
+
# Maximum amount of items to return when listing source server post
|
2210
|
+
# migration custom actions.
|
2211
|
+
# @return [Integer]
|
2212
|
+
#
|
2213
|
+
# @!attribute [rw] next_token
|
2214
|
+
# Next token to use when listing source server post migration custom
|
2215
|
+
# actions.
|
2216
|
+
# @return [String]
|
2217
|
+
#
|
2218
|
+
# @!attribute [rw] source_server_id
|
2219
|
+
# Source server ID.
|
2220
|
+
# @return [String]
|
2221
|
+
#
|
2222
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListSourceServerActionsRequest AWS API Documentation
|
2223
|
+
#
|
2224
|
+
class ListSourceServerActionsRequest < Struct.new(
|
2225
|
+
:filters,
|
2226
|
+
:max_results,
|
2227
|
+
:next_token,
|
2228
|
+
:source_server_id)
|
2229
|
+
SENSITIVE = []
|
2230
|
+
include Aws::Structure
|
2231
|
+
end
|
2232
|
+
|
2233
|
+
# @!attribute [rw] items
|
2234
|
+
# List of source server post migration custom actions.
|
2235
|
+
# @return [Array<Types::SourceServerActionDocument>]
|
2236
|
+
#
|
2237
|
+
# @!attribute [rw] next_token
|
2238
|
+
# Next token returned when listing source server post migration custom
|
2239
|
+
# actions.
|
2240
|
+
# @return [String]
|
2241
|
+
#
|
2242
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListSourceServerActionsResponse AWS API Documentation
|
2243
|
+
#
|
2244
|
+
class ListSourceServerActionsResponse < Struct.new(
|
2245
|
+
:items,
|
2246
|
+
:next_token)
|
2247
|
+
SENSITIVE = []
|
2248
|
+
include Aws::Structure
|
2249
|
+
end
|
2250
|
+
|
1552
2251
|
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1553
2252
|
# data as a hash:
|
1554
2253
|
#
|
@@ -1580,6 +2279,144 @@ module Aws::Mgn
|
|
1580
2279
|
include Aws::Structure
|
1581
2280
|
end
|
1582
2281
|
|
2282
|
+
# @note When making an API call, you may pass ListTemplateActionsRequest
|
2283
|
+
# data as a hash:
|
2284
|
+
#
|
2285
|
+
# {
|
2286
|
+
# filters: {
|
2287
|
+
# action_i_ds: ["ActionID"],
|
2288
|
+
# },
|
2289
|
+
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
2290
|
+
# max_results: 1,
|
2291
|
+
# next_token: "PaginationToken",
|
2292
|
+
# }
|
2293
|
+
#
|
2294
|
+
# @!attribute [rw] filters
|
2295
|
+
# Filters to apply when listing template post migration custom
|
2296
|
+
# actions.
|
2297
|
+
# @return [Types::TemplateActionsRequestFilters]
|
2298
|
+
#
|
2299
|
+
# @!attribute [rw] launch_configuration_template_id
|
2300
|
+
# Launch configuration template ID.
|
2301
|
+
# @return [String]
|
2302
|
+
#
|
2303
|
+
# @!attribute [rw] max_results
|
2304
|
+
# Maximum amount of items to return when listing template post
|
2305
|
+
# migration custom actions.
|
2306
|
+
# @return [Integer]
|
2307
|
+
#
|
2308
|
+
# @!attribute [rw] next_token
|
2309
|
+
# Next token to use when listing template post migration custom
|
2310
|
+
# actions.
|
2311
|
+
# @return [String]
|
2312
|
+
#
|
2313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListTemplateActionsRequest AWS API Documentation
|
2314
|
+
#
|
2315
|
+
class ListTemplateActionsRequest < Struct.new(
|
2316
|
+
:filters,
|
2317
|
+
:launch_configuration_template_id,
|
2318
|
+
:max_results,
|
2319
|
+
:next_token)
|
2320
|
+
SENSITIVE = []
|
2321
|
+
include Aws::Structure
|
2322
|
+
end
|
2323
|
+
|
2324
|
+
# @!attribute [rw] items
|
2325
|
+
# List of template post migration custom actions.
|
2326
|
+
# @return [Array<Types::TemplateActionDocument>]
|
2327
|
+
#
|
2328
|
+
# @!attribute [rw] next_token
|
2329
|
+
# Next token returned when listing template post migration custom
|
2330
|
+
# actions.
|
2331
|
+
# @return [String]
|
2332
|
+
#
|
2333
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListTemplateActionsResponse AWS API Documentation
|
2334
|
+
#
|
2335
|
+
class ListTemplateActionsResponse < Struct.new(
|
2336
|
+
:items,
|
2337
|
+
:next_token)
|
2338
|
+
SENSITIVE = []
|
2339
|
+
include Aws::Structure
|
2340
|
+
end
|
2341
|
+
|
2342
|
+
# @note When making an API call, you may pass ListWavesRequest
|
2343
|
+
# data as a hash:
|
2344
|
+
#
|
2345
|
+
# {
|
2346
|
+
# filters: {
|
2347
|
+
# is_archived: false,
|
2348
|
+
# wave_i_ds: ["WaveID"],
|
2349
|
+
# },
|
2350
|
+
# max_results: 1,
|
2351
|
+
# next_token: "PaginationToken",
|
2352
|
+
# }
|
2353
|
+
#
|
2354
|
+
# @!attribute [rw] filters
|
2355
|
+
# Waves list filters.
|
2356
|
+
# @return [Types::ListWavesRequestFilters]
|
2357
|
+
#
|
2358
|
+
# @!attribute [rw] max_results
|
2359
|
+
# Maximum results to return when listing waves.
|
2360
|
+
# @return [Integer]
|
2361
|
+
#
|
2362
|
+
# @!attribute [rw] next_token
|
2363
|
+
# Request next token.
|
2364
|
+
# @return [String]
|
2365
|
+
#
|
2366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListWavesRequest AWS API Documentation
|
2367
|
+
#
|
2368
|
+
class ListWavesRequest < Struct.new(
|
2369
|
+
:filters,
|
2370
|
+
:max_results,
|
2371
|
+
:next_token)
|
2372
|
+
SENSITIVE = []
|
2373
|
+
include Aws::Structure
|
2374
|
+
end
|
2375
|
+
|
2376
|
+
# Waves list filters.
|
2377
|
+
#
|
2378
|
+
# @note When making an API call, you may pass ListWavesRequestFilters
|
2379
|
+
# data as a hash:
|
2380
|
+
#
|
2381
|
+
# {
|
2382
|
+
# is_archived: false,
|
2383
|
+
# wave_i_ds: ["WaveID"],
|
2384
|
+
# }
|
2385
|
+
#
|
2386
|
+
# @!attribute [rw] is_archived
|
2387
|
+
# Filter waves list by archival status.
|
2388
|
+
# @return [Boolean]
|
2389
|
+
#
|
2390
|
+
# @!attribute [rw] wave_i_ds
|
2391
|
+
# Filter waves list by wave ID.
|
2392
|
+
# @return [Array<String>]
|
2393
|
+
#
|
2394
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListWavesRequestFilters AWS API Documentation
|
2395
|
+
#
|
2396
|
+
class ListWavesRequestFilters < Struct.new(
|
2397
|
+
:is_archived,
|
2398
|
+
:wave_i_ds)
|
2399
|
+
SENSITIVE = []
|
2400
|
+
include Aws::Structure
|
2401
|
+
end
|
2402
|
+
|
2403
|
+
# @!attribute [rw] items
|
2404
|
+
# Waves list.
|
2405
|
+
# @return [Array<Types::Wave>]
|
2406
|
+
#
|
2407
|
+
# @!attribute [rw] next_token
|
2408
|
+
# Response next token.
|
2409
|
+
# @return [String]
|
2410
|
+
#
|
2411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListWavesResponse AWS API Documentation
|
2412
|
+
#
|
2413
|
+
class ListWavesResponse < Struct.new(
|
2414
|
+
:items,
|
2415
|
+
:next_token)
|
2416
|
+
SENSITIVE = []
|
2417
|
+
include Aws::Structure
|
2418
|
+
end
|
2419
|
+
|
1583
2420
|
# @note When making an API call, you may pass MarkAsArchivedRequest
|
1584
2421
|
# data as a hash:
|
1585
2422
|
#
|
@@ -1644,11 +2481,11 @@ module Aws::Mgn
|
|
1644
2481
|
# @return [String]
|
1645
2482
|
#
|
1646
2483
|
# @!attribute [rw] launched_ec2_instance_id
|
1647
|
-
# Participating server
|
2484
|
+
# Participating server's launched ec2 instance ID.
|
1648
2485
|
# @return [String]
|
1649
2486
|
#
|
1650
2487
|
# @!attribute [rw] post_launch_actions_status
|
1651
|
-
# Participating server
|
2488
|
+
# Participating server's Post Launch Actions Status.
|
1652
2489
|
# @return [Types::PostLaunchActionsStatus]
|
1653
2490
|
#
|
1654
2491
|
# @!attribute [rw] source_server_id
|
@@ -1666,14 +2503,14 @@ module Aws::Mgn
|
|
1666
2503
|
include Aws::Structure
|
1667
2504
|
end
|
1668
2505
|
|
1669
|
-
#
|
2506
|
+
# Post Launch Actions to executed on the Test or Cutover instance.
|
1670
2507
|
#
|
1671
2508
|
# @note When making an API call, you may pass PostLaunchActions
|
1672
2509
|
# data as a hash:
|
1673
2510
|
#
|
1674
2511
|
# {
|
1675
2512
|
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
1676
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
2513
|
+
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY, TEST_ONLY
|
1677
2514
|
# s3_log_bucket: "S3LogBucketName",
|
1678
2515
|
# s3_output_key_prefix: "BoundedString",
|
1679
2516
|
# ssm_documents: [
|
@@ -1695,23 +2532,24 @@ module Aws::Mgn
|
|
1695
2532
|
# }
|
1696
2533
|
#
|
1697
2534
|
# @!attribute [rw] cloud_watch_log_group_name
|
1698
|
-
#
|
2535
|
+
# AWS Systems Manager Command's CloudWatch log group name.
|
1699
2536
|
# @return [String]
|
1700
2537
|
#
|
1701
2538
|
# @!attribute [rw] deployment
|
1702
|
-
#
|
2539
|
+
# Deployment type in which AWS Systems Manager Documents will be
|
2540
|
+
# executed.
|
1703
2541
|
# @return [String]
|
1704
2542
|
#
|
1705
2543
|
# @!attribute [rw] s3_log_bucket
|
1706
|
-
#
|
2544
|
+
# AWS Systems Manager Command's logs S3 log bucket.
|
1707
2545
|
# @return [String]
|
1708
2546
|
#
|
1709
2547
|
# @!attribute [rw] s3_output_key_prefix
|
1710
|
-
#
|
2548
|
+
# AWS Systems Manager Command's logs S3 output key prefix.
|
1711
2549
|
# @return [String]
|
1712
2550
|
#
|
1713
2551
|
# @!attribute [rw] ssm_documents
|
1714
|
-
#
|
2552
|
+
# AWS Systems Manager Documents.
|
1715
2553
|
# @return [Array<Types::SsmDocument>]
|
1716
2554
|
#
|
1717
2555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PostLaunchActions AWS API Documentation
|
@@ -1726,14 +2564,16 @@ module Aws::Mgn
|
|
1726
2564
|
include Aws::Structure
|
1727
2565
|
end
|
1728
2566
|
|
1729
|
-
#
|
2567
|
+
# Status of the Post Launch Actions running on the Test or Cutover
|
2568
|
+
# instance.
|
1730
2569
|
#
|
1731
2570
|
# @!attribute [rw] post_launch_actions_launch_status_list
|
1732
|
-
#
|
2571
|
+
# List of Post Launch Action status.
|
1733
2572
|
# @return [Array<Types::JobPostLaunchActionsLaunchStatus>]
|
1734
2573
|
#
|
1735
2574
|
# @!attribute [rw] ssm_agent_discovery_datetime
|
1736
|
-
#
|
2575
|
+
# Time where the AWS Systems Manager was detected as running on the
|
2576
|
+
# Test or Cutover instance.
|
1737
2577
|
# @return [String]
|
1738
2578
|
#
|
1739
2579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PostLaunchActionsStatus AWS API Documentation
|
@@ -1745,6 +2585,232 @@ module Aws::Mgn
|
|
1745
2585
|
include Aws::Structure
|
1746
2586
|
end
|
1747
2587
|
|
2588
|
+
# @note When making an API call, you may pass PutSourceServerActionRequest
|
2589
|
+
# data as a hash:
|
2590
|
+
#
|
2591
|
+
# {
|
2592
|
+
# action_id: "ActionID", # required
|
2593
|
+
# action_name: "ActionName", # required
|
2594
|
+
# active: false,
|
2595
|
+
# document_identifier: "BoundedString", # required
|
2596
|
+
# document_version: "DocumentVersion",
|
2597
|
+
# must_succeed_for_cutover: false,
|
2598
|
+
# order: 1, # required
|
2599
|
+
# parameters: {
|
2600
|
+
# "SsmDocumentParameterName" => [
|
2601
|
+
# {
|
2602
|
+
# parameter_name: "SsmParameterStoreParameterName", # required
|
2603
|
+
# parameter_type: "STRING", # required, accepts STRING
|
2604
|
+
# },
|
2605
|
+
# ],
|
2606
|
+
# },
|
2607
|
+
# source_server_id: "SourceServerID", # required
|
2608
|
+
# timeout_seconds: 1,
|
2609
|
+
# }
|
2610
|
+
#
|
2611
|
+
# @!attribute [rw] action_id
|
2612
|
+
# Source server post migration custom action ID.
|
2613
|
+
# @return [String]
|
2614
|
+
#
|
2615
|
+
# @!attribute [rw] action_name
|
2616
|
+
# Source server post migration custom action name.
|
2617
|
+
# @return [String]
|
2618
|
+
#
|
2619
|
+
# @!attribute [rw] active
|
2620
|
+
# Source server post migration custom action active status.
|
2621
|
+
# @return [Boolean]
|
2622
|
+
#
|
2623
|
+
# @!attribute [rw] document_identifier
|
2624
|
+
# Source server post migration custom action document identifier.
|
2625
|
+
# @return [String]
|
2626
|
+
#
|
2627
|
+
# @!attribute [rw] document_version
|
2628
|
+
# Source server post migration custom action document version.
|
2629
|
+
# @return [String]
|
2630
|
+
#
|
2631
|
+
# @!attribute [rw] must_succeed_for_cutover
|
2632
|
+
# Source server post migration custom action must succeed for cutover.
|
2633
|
+
# @return [Boolean]
|
2634
|
+
#
|
2635
|
+
# @!attribute [rw] order
|
2636
|
+
# Source server post migration custom action order.
|
2637
|
+
# @return [Integer]
|
2638
|
+
#
|
2639
|
+
# @!attribute [rw] parameters
|
2640
|
+
# Source server post migration custom action parameters.
|
2641
|
+
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
2642
|
+
#
|
2643
|
+
# @!attribute [rw] source_server_id
|
2644
|
+
# Source server ID.
|
2645
|
+
# @return [String]
|
2646
|
+
#
|
2647
|
+
# @!attribute [rw] timeout_seconds
|
2648
|
+
# Source server post migration custom action timeout in seconds.
|
2649
|
+
# @return [Integer]
|
2650
|
+
#
|
2651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PutSourceServerActionRequest AWS API Documentation
|
2652
|
+
#
|
2653
|
+
class PutSourceServerActionRequest < Struct.new(
|
2654
|
+
:action_id,
|
2655
|
+
:action_name,
|
2656
|
+
:active,
|
2657
|
+
:document_identifier,
|
2658
|
+
:document_version,
|
2659
|
+
:must_succeed_for_cutover,
|
2660
|
+
:order,
|
2661
|
+
:parameters,
|
2662
|
+
:source_server_id,
|
2663
|
+
:timeout_seconds)
|
2664
|
+
SENSITIVE = []
|
2665
|
+
include Aws::Structure
|
2666
|
+
end
|
2667
|
+
|
2668
|
+
# @note When making an API call, you may pass PutTemplateActionRequest
|
2669
|
+
# data as a hash:
|
2670
|
+
#
|
2671
|
+
# {
|
2672
|
+
# action_id: "ActionID", # required
|
2673
|
+
# action_name: "BoundedString", # required
|
2674
|
+
# active: false,
|
2675
|
+
# document_identifier: "BoundedString", # required
|
2676
|
+
# document_version: "DocumentVersion",
|
2677
|
+
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
2678
|
+
# must_succeed_for_cutover: false,
|
2679
|
+
# operating_system: "OperatingSystemString",
|
2680
|
+
# order: 1, # required
|
2681
|
+
# parameters: {
|
2682
|
+
# "SsmDocumentParameterName" => [
|
2683
|
+
# {
|
2684
|
+
# parameter_name: "SsmParameterStoreParameterName", # required
|
2685
|
+
# parameter_type: "STRING", # required, accepts STRING
|
2686
|
+
# },
|
2687
|
+
# ],
|
2688
|
+
# },
|
2689
|
+
# timeout_seconds: 1,
|
2690
|
+
# }
|
2691
|
+
#
|
2692
|
+
# @!attribute [rw] action_id
|
2693
|
+
# Template post migration custom action ID.
|
2694
|
+
# @return [String]
|
2695
|
+
#
|
2696
|
+
# @!attribute [rw] action_name
|
2697
|
+
# Template post migration custom action name.
|
2698
|
+
# @return [String]
|
2699
|
+
#
|
2700
|
+
# @!attribute [rw] active
|
2701
|
+
# Template post migration custom action active status.
|
2702
|
+
# @return [Boolean]
|
2703
|
+
#
|
2704
|
+
# @!attribute [rw] document_identifier
|
2705
|
+
# Template post migration custom action document identifier.
|
2706
|
+
# @return [String]
|
2707
|
+
#
|
2708
|
+
# @!attribute [rw] document_version
|
2709
|
+
# Template post migration custom action document version.
|
2710
|
+
# @return [String]
|
2711
|
+
#
|
2712
|
+
# @!attribute [rw] launch_configuration_template_id
|
2713
|
+
# Launch configuration template ID.
|
2714
|
+
# @return [String]
|
2715
|
+
#
|
2716
|
+
# @!attribute [rw] must_succeed_for_cutover
|
2717
|
+
# Template post migration custom action must succeed for cutover.
|
2718
|
+
# @return [Boolean]
|
2719
|
+
#
|
2720
|
+
# @!attribute [rw] operating_system
|
2721
|
+
# Operating system eligible for this template post migration custom
|
2722
|
+
# action.
|
2723
|
+
# @return [String]
|
2724
|
+
#
|
2725
|
+
# @!attribute [rw] order
|
2726
|
+
# Template post migration custom action order.
|
2727
|
+
# @return [Integer]
|
2728
|
+
#
|
2729
|
+
# @!attribute [rw] parameters
|
2730
|
+
# Template post migration custom action parameters.
|
2731
|
+
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
2732
|
+
#
|
2733
|
+
# @!attribute [rw] timeout_seconds
|
2734
|
+
# Template post migration custom action timeout in seconds.
|
2735
|
+
# @return [Integer]
|
2736
|
+
#
|
2737
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PutTemplateActionRequest AWS API Documentation
|
2738
|
+
#
|
2739
|
+
class PutTemplateActionRequest < Struct.new(
|
2740
|
+
:action_id,
|
2741
|
+
:action_name,
|
2742
|
+
:active,
|
2743
|
+
:document_identifier,
|
2744
|
+
:document_version,
|
2745
|
+
:launch_configuration_template_id,
|
2746
|
+
:must_succeed_for_cutover,
|
2747
|
+
:operating_system,
|
2748
|
+
:order,
|
2749
|
+
:parameters,
|
2750
|
+
:timeout_seconds)
|
2751
|
+
SENSITIVE = []
|
2752
|
+
include Aws::Structure
|
2753
|
+
end
|
2754
|
+
|
2755
|
+
# @note When making an API call, you may pass RemoveSourceServerActionRequest
|
2756
|
+
# data as a hash:
|
2757
|
+
#
|
2758
|
+
# {
|
2759
|
+
# action_id: "ActionID", # required
|
2760
|
+
# source_server_id: "SourceServerID", # required
|
2761
|
+
# }
|
2762
|
+
#
|
2763
|
+
# @!attribute [rw] action_id
|
2764
|
+
# Source server post migration custom action ID to remove.
|
2765
|
+
# @return [String]
|
2766
|
+
#
|
2767
|
+
# @!attribute [rw] source_server_id
|
2768
|
+
# Source server ID of the post migration custom action to remove.
|
2769
|
+
# @return [String]
|
2770
|
+
#
|
2771
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RemoveSourceServerActionRequest AWS API Documentation
|
2772
|
+
#
|
2773
|
+
class RemoveSourceServerActionRequest < Struct.new(
|
2774
|
+
:action_id,
|
2775
|
+
:source_server_id)
|
2776
|
+
SENSITIVE = []
|
2777
|
+
include Aws::Structure
|
2778
|
+
end
|
2779
|
+
|
2780
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RemoveSourceServerActionResponse AWS API Documentation
|
2781
|
+
#
|
2782
|
+
class RemoveSourceServerActionResponse < Aws::EmptyStructure; end
|
2783
|
+
|
2784
|
+
# @note When making an API call, you may pass RemoveTemplateActionRequest
|
2785
|
+
# data as a hash:
|
2786
|
+
#
|
2787
|
+
# {
|
2788
|
+
# action_id: "ActionID", # required
|
2789
|
+
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
2790
|
+
# }
|
2791
|
+
#
|
2792
|
+
# @!attribute [rw] action_id
|
2793
|
+
# Template post migration custom action ID to remove.
|
2794
|
+
# @return [String]
|
2795
|
+
#
|
2796
|
+
# @!attribute [rw] launch_configuration_template_id
|
2797
|
+
# Launch configuration template ID of the post migration custom action
|
2798
|
+
# to remove.
|
2799
|
+
# @return [String]
|
2800
|
+
#
|
2801
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RemoveTemplateActionRequest AWS API Documentation
|
2802
|
+
#
|
2803
|
+
class RemoveTemplateActionRequest < Struct.new(
|
2804
|
+
:action_id,
|
2805
|
+
:launch_configuration_template_id)
|
2806
|
+
SENSITIVE = []
|
2807
|
+
include Aws::Structure
|
2808
|
+
end
|
2809
|
+
|
2810
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RemoveTemplateActionResponse AWS API Documentation
|
2811
|
+
#
|
2812
|
+
class RemoveTemplateActionResponse < Aws::EmptyStructure; end
|
2813
|
+
|
1748
2814
|
# @!attribute [rw] associate_default_security_group
|
1749
2815
|
# Replication Configuration associate default Application Migration
|
1750
2816
|
# Service Security Group.
|
@@ -2095,6 +3161,10 @@ module Aws::Mgn
|
|
2095
3161
|
include Aws::Structure
|
2096
3162
|
end
|
2097
3163
|
|
3164
|
+
# @!attribute [rw] application_id
|
3165
|
+
# Source server application ID.
|
3166
|
+
# @return [String]
|
3167
|
+
#
|
2098
3168
|
# @!attribute [rw] arn
|
2099
3169
|
# Source server ARN.
|
2100
3170
|
# @return [String]
|
@@ -2138,6 +3208,7 @@ module Aws::Mgn
|
|
2138
3208
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SourceServer AWS API Documentation
|
2139
3209
|
#
|
2140
3210
|
class SourceServer < Struct.new(
|
3211
|
+
:application_id,
|
2141
3212
|
:arn,
|
2142
3213
|
:data_replication_info,
|
2143
3214
|
:is_archived,
|
@@ -2152,7 +3223,80 @@ module Aws::Mgn
|
|
2152
3223
|
include Aws::Structure
|
2153
3224
|
end
|
2154
3225
|
|
2155
|
-
#
|
3226
|
+
# @!attribute [rw] action_id
|
3227
|
+
# Source server post migration custom action ID.
|
3228
|
+
# @return [String]
|
3229
|
+
#
|
3230
|
+
# @!attribute [rw] action_name
|
3231
|
+
# Source server post migration custom action name.
|
3232
|
+
# @return [String]
|
3233
|
+
#
|
3234
|
+
# @!attribute [rw] active
|
3235
|
+
# Source server post migration custom action active status.
|
3236
|
+
# @return [Boolean]
|
3237
|
+
#
|
3238
|
+
# @!attribute [rw] document_identifier
|
3239
|
+
# Source server post migration custom action document identifier.
|
3240
|
+
# @return [String]
|
3241
|
+
#
|
3242
|
+
# @!attribute [rw] document_version
|
3243
|
+
# Source server post migration custom action document version.
|
3244
|
+
# @return [String]
|
3245
|
+
#
|
3246
|
+
# @!attribute [rw] must_succeed_for_cutover
|
3247
|
+
# Source server post migration custom action must succeed for cutover.
|
3248
|
+
# @return [Boolean]
|
3249
|
+
#
|
3250
|
+
# @!attribute [rw] order
|
3251
|
+
# Source server post migration custom action order.
|
3252
|
+
# @return [Integer]
|
3253
|
+
#
|
3254
|
+
# @!attribute [rw] parameters
|
3255
|
+
# Source server post migration custom action parameters.
|
3256
|
+
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
3257
|
+
#
|
3258
|
+
# @!attribute [rw] timeout_seconds
|
3259
|
+
# Source server post migration custom action timeout in seconds.
|
3260
|
+
# @return [Integer]
|
3261
|
+
#
|
3262
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SourceServerActionDocument AWS API Documentation
|
3263
|
+
#
|
3264
|
+
class SourceServerActionDocument < Struct.new(
|
3265
|
+
:action_id,
|
3266
|
+
:action_name,
|
3267
|
+
:active,
|
3268
|
+
:document_identifier,
|
3269
|
+
:document_version,
|
3270
|
+
:must_succeed_for_cutover,
|
3271
|
+
:order,
|
3272
|
+
:parameters,
|
3273
|
+
:timeout_seconds)
|
3274
|
+
SENSITIVE = []
|
3275
|
+
include Aws::Structure
|
3276
|
+
end
|
3277
|
+
|
3278
|
+
# Source server post migration custom action filters.
|
3279
|
+
#
|
3280
|
+
# @note When making an API call, you may pass SourceServerActionsRequestFilters
|
3281
|
+
# data as a hash:
|
3282
|
+
#
|
3283
|
+
# {
|
3284
|
+
# action_i_ds: ["ActionID"],
|
3285
|
+
# }
|
3286
|
+
#
|
3287
|
+
# @!attribute [rw] action_i_ds
|
3288
|
+
# Action IDs to filter source server post migration custom actions by.
|
3289
|
+
# @return [Array<String>]
|
3290
|
+
#
|
3291
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SourceServerActionsRequestFilters AWS API Documentation
|
3292
|
+
#
|
3293
|
+
class SourceServerActionsRequestFilters < Struct.new(
|
3294
|
+
:action_i_ds)
|
3295
|
+
SENSITIVE = []
|
3296
|
+
include Aws::Structure
|
3297
|
+
end
|
3298
|
+
|
3299
|
+
# AWS Systems Manager Document.
|
2156
3300
|
#
|
2157
3301
|
# @note When making an API call, you may pass SsmDocument
|
2158
3302
|
# data as a hash:
|
@@ -2173,23 +3317,23 @@ module Aws::Mgn
|
|
2173
3317
|
# }
|
2174
3318
|
#
|
2175
3319
|
# @!attribute [rw] action_name
|
2176
|
-
#
|
3320
|
+
# User-friendly name for the AWS Systems Manager Document.
|
2177
3321
|
# @return [String]
|
2178
3322
|
#
|
2179
3323
|
# @!attribute [rw] must_succeed_for_cutover
|
2180
|
-
#
|
3324
|
+
# If true, Cutover will not be enabled if the document has failed.
|
2181
3325
|
# @return [Boolean]
|
2182
3326
|
#
|
2183
3327
|
# @!attribute [rw] parameters
|
2184
|
-
#
|
3328
|
+
# AWS Systems Manager Document parameters.
|
2185
3329
|
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
2186
3330
|
#
|
2187
3331
|
# @!attribute [rw] ssm_document_name
|
2188
|
-
#
|
3332
|
+
# AWS Systems Manager Document name or full ARN.
|
2189
3333
|
# @return [String]
|
2190
3334
|
#
|
2191
3335
|
# @!attribute [rw] timeout_seconds
|
2192
|
-
#
|
3336
|
+
# AWS Systems Manager Document timeout seconds.
|
2193
3337
|
# @return [Integer]
|
2194
3338
|
#
|
2195
3339
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmDocument AWS API Documentation
|
@@ -2204,7 +3348,7 @@ module Aws::Mgn
|
|
2204
3348
|
include Aws::Structure
|
2205
3349
|
end
|
2206
3350
|
|
2207
|
-
#
|
3351
|
+
# AWS Systems Manager Parameter Store parameter.
|
2208
3352
|
#
|
2209
3353
|
# @note When making an API call, you may pass SsmParameterStoreParameter
|
2210
3354
|
# data as a hash:
|
@@ -2215,11 +3359,11 @@ module Aws::Mgn
|
|
2215
3359
|
# }
|
2216
3360
|
#
|
2217
3361
|
# @!attribute [rw] parameter_name
|
2218
|
-
#
|
3362
|
+
# AWS Systems Manager Parameter Store parameter name.
|
2219
3363
|
# @return [String]
|
2220
3364
|
#
|
2221
3365
|
# @!attribute [rw] parameter_type
|
2222
|
-
#
|
3366
|
+
# AWS Systems Manager Parameter Store parameter type.
|
2223
3367
|
# @return [String]
|
2224
3368
|
#
|
2225
3369
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmParameterStoreParameter AWS API Documentation
|
@@ -2355,6 +3499,85 @@ module Aws::Mgn
|
|
2355
3499
|
include Aws::Structure
|
2356
3500
|
end
|
2357
3501
|
|
3502
|
+
# @!attribute [rw] action_id
|
3503
|
+
# Template post migration custom action ID.
|
3504
|
+
# @return [String]
|
3505
|
+
#
|
3506
|
+
# @!attribute [rw] action_name
|
3507
|
+
# Template post migration custom action name.
|
3508
|
+
# @return [String]
|
3509
|
+
#
|
3510
|
+
# @!attribute [rw] active
|
3511
|
+
# Template post migration custom action active status.
|
3512
|
+
# @return [Boolean]
|
3513
|
+
#
|
3514
|
+
# @!attribute [rw] document_identifier
|
3515
|
+
# Template post migration custom action document identifier.
|
3516
|
+
# @return [String]
|
3517
|
+
#
|
3518
|
+
# @!attribute [rw] document_version
|
3519
|
+
# Template post migration custom action document version.
|
3520
|
+
# @return [String]
|
3521
|
+
#
|
3522
|
+
# @!attribute [rw] must_succeed_for_cutover
|
3523
|
+
# Template post migration custom action must succeed for cutover.
|
3524
|
+
# @return [Boolean]
|
3525
|
+
#
|
3526
|
+
# @!attribute [rw] operating_system
|
3527
|
+
# Operating system eligible for this template post migration custom
|
3528
|
+
# action.
|
3529
|
+
# @return [String]
|
3530
|
+
#
|
3531
|
+
# @!attribute [rw] order
|
3532
|
+
# Template post migration custom action order.
|
3533
|
+
# @return [Integer]
|
3534
|
+
#
|
3535
|
+
# @!attribute [rw] parameters
|
3536
|
+
# Template post migration custom action parameters.
|
3537
|
+
# @return [Hash<String,Array<Types::SsmParameterStoreParameter>>]
|
3538
|
+
#
|
3539
|
+
# @!attribute [rw] timeout_seconds
|
3540
|
+
# Template post migration custom action timeout in seconds.
|
3541
|
+
# @return [Integer]
|
3542
|
+
#
|
3543
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/TemplateActionDocument AWS API Documentation
|
3544
|
+
#
|
3545
|
+
class TemplateActionDocument < Struct.new(
|
3546
|
+
:action_id,
|
3547
|
+
:action_name,
|
3548
|
+
:active,
|
3549
|
+
:document_identifier,
|
3550
|
+
:document_version,
|
3551
|
+
:must_succeed_for_cutover,
|
3552
|
+
:operating_system,
|
3553
|
+
:order,
|
3554
|
+
:parameters,
|
3555
|
+
:timeout_seconds)
|
3556
|
+
SENSITIVE = []
|
3557
|
+
include Aws::Structure
|
3558
|
+
end
|
3559
|
+
|
3560
|
+
# Template post migration custom action filters.
|
3561
|
+
#
|
3562
|
+
# @note When making an API call, you may pass TemplateActionsRequestFilters
|
3563
|
+
# data as a hash:
|
3564
|
+
#
|
3565
|
+
# {
|
3566
|
+
# action_i_ds: ["ActionID"],
|
3567
|
+
# }
|
3568
|
+
#
|
3569
|
+
# @!attribute [rw] action_i_ds
|
3570
|
+
# Action IDs to filter template post migration custom actions by.
|
3571
|
+
# @return [Array<String>]
|
3572
|
+
#
|
3573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/TemplateActionsRequestFilters AWS API Documentation
|
3574
|
+
#
|
3575
|
+
class TemplateActionsRequestFilters < Struct.new(
|
3576
|
+
:action_i_ds)
|
3577
|
+
SENSITIVE = []
|
3578
|
+
include Aws::Structure
|
3579
|
+
end
|
3580
|
+
|
2358
3581
|
# @note When making an API call, you may pass TerminateTargetInstancesRequest
|
2359
3582
|
# data as a hash:
|
2360
3583
|
#
|
@@ -2422,6 +3645,44 @@ module Aws::Mgn
|
|
2422
3645
|
include Aws::Structure
|
2423
3646
|
end
|
2424
3647
|
|
3648
|
+
# @note When making an API call, you may pass UnarchiveApplicationRequest
|
3649
|
+
# data as a hash:
|
3650
|
+
#
|
3651
|
+
# {
|
3652
|
+
# application_id: "ApplicationID", # required
|
3653
|
+
# }
|
3654
|
+
#
|
3655
|
+
# @!attribute [rw] application_id
|
3656
|
+
# Application ID.
|
3657
|
+
# @return [String]
|
3658
|
+
#
|
3659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UnarchiveApplicationRequest AWS API Documentation
|
3660
|
+
#
|
3661
|
+
class UnarchiveApplicationRequest < Struct.new(
|
3662
|
+
:application_id)
|
3663
|
+
SENSITIVE = []
|
3664
|
+
include Aws::Structure
|
3665
|
+
end
|
3666
|
+
|
3667
|
+
# @note When making an API call, you may pass UnarchiveWaveRequest
|
3668
|
+
# data as a hash:
|
3669
|
+
#
|
3670
|
+
# {
|
3671
|
+
# wave_id: "WaveID", # required
|
3672
|
+
# }
|
3673
|
+
#
|
3674
|
+
# @!attribute [rw] wave_id
|
3675
|
+
# Wave ID.
|
3676
|
+
# @return [String]
|
3677
|
+
#
|
3678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UnarchiveWaveRequest AWS API Documentation
|
3679
|
+
#
|
3680
|
+
class UnarchiveWaveRequest < Struct.new(
|
3681
|
+
:wave_id)
|
3682
|
+
SENSITIVE = []
|
3683
|
+
include Aws::Structure
|
3684
|
+
end
|
3685
|
+
|
2425
3686
|
# Uninitialized account exception.
|
2426
3687
|
#
|
2427
3688
|
# @!attribute [rw] code
|
@@ -2464,6 +3725,37 @@ module Aws::Mgn
|
|
2464
3725
|
include Aws::Structure
|
2465
3726
|
end
|
2466
3727
|
|
3728
|
+
# @note When making an API call, you may pass UpdateApplicationRequest
|
3729
|
+
# data as a hash:
|
3730
|
+
#
|
3731
|
+
# {
|
3732
|
+
# application_id: "ApplicationID", # required
|
3733
|
+
# description: "ApplicationDescription",
|
3734
|
+
# name: "ApplicationName",
|
3735
|
+
# }
|
3736
|
+
#
|
3737
|
+
# @!attribute [rw] application_id
|
3738
|
+
# Application ID.
|
3739
|
+
# @return [String]
|
3740
|
+
#
|
3741
|
+
# @!attribute [rw] description
|
3742
|
+
# Application description.
|
3743
|
+
# @return [String]
|
3744
|
+
#
|
3745
|
+
# @!attribute [rw] name
|
3746
|
+
# Application name.
|
3747
|
+
# @return [String]
|
3748
|
+
#
|
3749
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateApplicationRequest AWS API Documentation
|
3750
|
+
#
|
3751
|
+
class UpdateApplicationRequest < Struct.new(
|
3752
|
+
:application_id,
|
3753
|
+
:description,
|
3754
|
+
:name)
|
3755
|
+
SENSITIVE = []
|
3756
|
+
include Aws::Structure
|
3757
|
+
end
|
3758
|
+
|
2467
3759
|
# @note When making an API call, you may pass UpdateLaunchConfigurationRequest
|
2468
3760
|
# data as a hash:
|
2469
3761
|
#
|
@@ -2471,14 +3763,16 @@ module Aws::Mgn
|
|
2471
3763
|
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
2472
3764
|
# copy_private_ip: false,
|
2473
3765
|
# copy_tags: false,
|
3766
|
+
# enable_map_auto_tagging: false,
|
2474
3767
|
# launch_disposition: "STOPPED", # accepts STOPPED, STARTED
|
2475
3768
|
# licensing: {
|
2476
3769
|
# os_byol: false,
|
2477
3770
|
# },
|
3771
|
+
# map_auto_tagging_mpe_id: "TagValue",
|
2478
3772
|
# name: "SmallBoundedString",
|
2479
3773
|
# post_launch_actions: {
|
2480
3774
|
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
2481
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
3775
|
+
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY, TEST_ONLY
|
2482
3776
|
# s3_log_bucket: "S3LogBucketName",
|
2483
3777
|
# s3_output_key_prefix: "BoundedString",
|
2484
3778
|
# ssm_documents: [
|
@@ -2514,6 +3808,10 @@ module Aws::Mgn
|
|
2514
3808
|
# Update Launch configuration copy Tags request.
|
2515
3809
|
# @return [Boolean]
|
2516
3810
|
#
|
3811
|
+
# @!attribute [rw] enable_map_auto_tagging
|
3812
|
+
# Enable map auto tagging.
|
3813
|
+
# @return [Boolean]
|
3814
|
+
#
|
2517
3815
|
# @!attribute [rw] launch_disposition
|
2518
3816
|
# Update Launch configuration launch disposition request.
|
2519
3817
|
# @return [String]
|
@@ -2522,12 +3820,16 @@ module Aws::Mgn
|
|
2522
3820
|
# Update Launch configuration licensing request.
|
2523
3821
|
# @return [Types::Licensing]
|
2524
3822
|
#
|
3823
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
3824
|
+
# Launch configuration map auto tagging MPE ID.
|
3825
|
+
# @return [String]
|
3826
|
+
#
|
2525
3827
|
# @!attribute [rw] name
|
2526
3828
|
# Update Launch configuration name request.
|
2527
3829
|
# @return [String]
|
2528
3830
|
#
|
2529
3831
|
# @!attribute [rw] post_launch_actions
|
2530
|
-
#
|
3832
|
+
# Post Launch Actions to executed on the Test or Cutover instance.
|
2531
3833
|
# @return [Types::PostLaunchActions]
|
2532
3834
|
#
|
2533
3835
|
# @!attribute [rw] source_server_id
|
@@ -2544,8 +3846,10 @@ module Aws::Mgn
|
|
2544
3846
|
:boot_mode,
|
2545
3847
|
:copy_private_ip,
|
2546
3848
|
:copy_tags,
|
3849
|
+
:enable_map_auto_tagging,
|
2547
3850
|
:launch_disposition,
|
2548
3851
|
:licensing,
|
3852
|
+
:map_auto_tagging_mpe_id,
|
2549
3853
|
:name,
|
2550
3854
|
:post_launch_actions,
|
2551
3855
|
:source_server_id,
|
@@ -2558,10 +3862,25 @@ module Aws::Mgn
|
|
2558
3862
|
# data as a hash:
|
2559
3863
|
#
|
2560
3864
|
# {
|
3865
|
+
# associate_public_ip_address: false,
|
3866
|
+
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
3867
|
+
# copy_private_ip: false,
|
3868
|
+
# copy_tags: false,
|
3869
|
+
# enable_map_auto_tagging: false,
|
3870
|
+
# large_volume_conf: {
|
3871
|
+
# iops: 1,
|
3872
|
+
# throughput: 1,
|
3873
|
+
# volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
|
3874
|
+
# },
|
2561
3875
|
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
3876
|
+
# launch_disposition: "STOPPED", # accepts STOPPED, STARTED
|
3877
|
+
# licensing: {
|
3878
|
+
# os_byol: false,
|
3879
|
+
# },
|
3880
|
+
# map_auto_tagging_mpe_id: "TagValue",
|
2562
3881
|
# post_launch_actions: {
|
2563
3882
|
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
2564
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY
|
3883
|
+
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY, TEST_ONLY
|
2565
3884
|
# s3_log_bucket: "S3LogBucketName",
|
2566
3885
|
# s3_output_key_prefix: "BoundedString",
|
2567
3886
|
# ssm_documents: [
|
@@ -2581,21 +3900,88 @@ module Aws::Mgn
|
|
2581
3900
|
# },
|
2582
3901
|
# ],
|
2583
3902
|
# },
|
3903
|
+
# small_volume_conf: {
|
3904
|
+
# iops: 1,
|
3905
|
+
# throughput: 1,
|
3906
|
+
# volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
|
3907
|
+
# },
|
3908
|
+
# small_volume_max_size: 1,
|
3909
|
+
# target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
|
2584
3910
|
# }
|
2585
3911
|
#
|
3912
|
+
# @!attribute [rw] associate_public_ip_address
|
3913
|
+
# Associate public Ip address.
|
3914
|
+
# @return [Boolean]
|
3915
|
+
#
|
3916
|
+
# @!attribute [rw] boot_mode
|
3917
|
+
# Launch configuration template boot mode.
|
3918
|
+
# @return [String]
|
3919
|
+
#
|
3920
|
+
# @!attribute [rw] copy_private_ip
|
3921
|
+
# Copy private Ip.
|
3922
|
+
# @return [Boolean]
|
3923
|
+
#
|
3924
|
+
# @!attribute [rw] copy_tags
|
3925
|
+
# Copy tags.
|
3926
|
+
# @return [Boolean]
|
3927
|
+
#
|
3928
|
+
# @!attribute [rw] enable_map_auto_tagging
|
3929
|
+
# Enable map auto tagging.
|
3930
|
+
# @return [Boolean]
|
3931
|
+
#
|
3932
|
+
# @!attribute [rw] large_volume_conf
|
3933
|
+
# Large volume config.
|
3934
|
+
# @return [Types::LaunchTemplateDiskConf]
|
3935
|
+
#
|
2586
3936
|
# @!attribute [rw] launch_configuration_template_id
|
2587
|
-
#
|
3937
|
+
# Launch Configuration Template ID.
|
3938
|
+
# @return [String]
|
3939
|
+
#
|
3940
|
+
# @!attribute [rw] launch_disposition
|
3941
|
+
# Launch disposition.
|
3942
|
+
# @return [String]
|
3943
|
+
#
|
3944
|
+
# @!attribute [rw] licensing
|
3945
|
+
# Configure Licensing.
|
3946
|
+
# @return [Types::Licensing]
|
3947
|
+
#
|
3948
|
+
# @!attribute [rw] map_auto_tagging_mpe_id
|
3949
|
+
# Launch configuration template map auto tagging MPE ID.
|
2588
3950
|
# @return [String]
|
2589
3951
|
#
|
2590
3952
|
# @!attribute [rw] post_launch_actions
|
2591
|
-
#
|
3953
|
+
# Post Launch Action to execute on the Test or Cutover instance.
|
2592
3954
|
# @return [Types::PostLaunchActions]
|
2593
3955
|
#
|
3956
|
+
# @!attribute [rw] small_volume_conf
|
3957
|
+
# Small volume config.
|
3958
|
+
# @return [Types::LaunchTemplateDiskConf]
|
3959
|
+
#
|
3960
|
+
# @!attribute [rw] small_volume_max_size
|
3961
|
+
# Small volume maximum size.
|
3962
|
+
# @return [Integer]
|
3963
|
+
#
|
3964
|
+
# @!attribute [rw] target_instance_type_right_sizing_method
|
3965
|
+
# Target instance type right-sizing method.
|
3966
|
+
# @return [String]
|
3967
|
+
#
|
2594
3968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateLaunchConfigurationTemplateRequest AWS API Documentation
|
2595
3969
|
#
|
2596
3970
|
class UpdateLaunchConfigurationTemplateRequest < Struct.new(
|
3971
|
+
:associate_public_ip_address,
|
3972
|
+
:boot_mode,
|
3973
|
+
:copy_private_ip,
|
3974
|
+
:copy_tags,
|
3975
|
+
:enable_map_auto_tagging,
|
3976
|
+
:large_volume_conf,
|
2597
3977
|
:launch_configuration_template_id,
|
2598
|
-
:
|
3978
|
+
:launch_disposition,
|
3979
|
+
:licensing,
|
3980
|
+
:map_auto_tagging_mpe_id,
|
3981
|
+
:post_launch_actions,
|
3982
|
+
:small_volume_conf,
|
3983
|
+
:small_volume_max_size,
|
3984
|
+
:target_instance_type_right_sizing_method)
|
2599
3985
|
SENSITIVE = []
|
2600
3986
|
include Aws::Structure
|
2601
3987
|
end
|
@@ -2851,6 +4237,37 @@ module Aws::Mgn
|
|
2851
4237
|
include Aws::Structure
|
2852
4238
|
end
|
2853
4239
|
|
4240
|
+
# @note When making an API call, you may pass UpdateWaveRequest
|
4241
|
+
# data as a hash:
|
4242
|
+
#
|
4243
|
+
# {
|
4244
|
+
# description: "WaveDescription",
|
4245
|
+
# name: "WaveName",
|
4246
|
+
# wave_id: "WaveID", # required
|
4247
|
+
# }
|
4248
|
+
#
|
4249
|
+
# @!attribute [rw] description
|
4250
|
+
# Wave description.
|
4251
|
+
# @return [String]
|
4252
|
+
#
|
4253
|
+
# @!attribute [rw] name
|
4254
|
+
# Wave name.
|
4255
|
+
# @return [String]
|
4256
|
+
#
|
4257
|
+
# @!attribute [rw] wave_id
|
4258
|
+
# Wave ID.
|
4259
|
+
# @return [String]
|
4260
|
+
#
|
4261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateWaveRequest AWS API Documentation
|
4262
|
+
#
|
4263
|
+
class UpdateWaveRequest < Struct.new(
|
4264
|
+
:description,
|
4265
|
+
:name,
|
4266
|
+
:wave_id)
|
4267
|
+
SENSITIVE = []
|
4268
|
+
include Aws::Structure
|
4269
|
+
end
|
4270
|
+
|
2854
4271
|
# Validate exception.
|
2855
4272
|
#
|
2856
4273
|
# @!attribute [rw] code
|
@@ -2946,5 +4363,92 @@ module Aws::Mgn
|
|
2946
4363
|
include Aws::Structure
|
2947
4364
|
end
|
2948
4365
|
|
4366
|
+
# @!attribute [rw] arn
|
4367
|
+
# Wave ARN.
|
4368
|
+
# @return [String]
|
4369
|
+
#
|
4370
|
+
# @!attribute [rw] creation_date_time
|
4371
|
+
# Wave creation dateTime.
|
4372
|
+
# @return [String]
|
4373
|
+
#
|
4374
|
+
# @!attribute [rw] description
|
4375
|
+
# Wave description.
|
4376
|
+
# @return [String]
|
4377
|
+
#
|
4378
|
+
# @!attribute [rw] is_archived
|
4379
|
+
# Wave archival status.
|
4380
|
+
# @return [Boolean]
|
4381
|
+
#
|
4382
|
+
# @!attribute [rw] last_modified_date_time
|
4383
|
+
# Wave last modified dateTime.
|
4384
|
+
# @return [String]
|
4385
|
+
#
|
4386
|
+
# @!attribute [rw] name
|
4387
|
+
# Wave name.
|
4388
|
+
# @return [String]
|
4389
|
+
#
|
4390
|
+
# @!attribute [rw] tags
|
4391
|
+
# Wave tags.
|
4392
|
+
# @return [Hash<String,String>]
|
4393
|
+
#
|
4394
|
+
# @!attribute [rw] wave_aggregated_status
|
4395
|
+
# Wave aggregated status.
|
4396
|
+
# @return [Types::WaveAggregatedStatus]
|
4397
|
+
#
|
4398
|
+
# @!attribute [rw] wave_id
|
4399
|
+
# Wave ID.
|
4400
|
+
# @return [String]
|
4401
|
+
#
|
4402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/Wave AWS API Documentation
|
4403
|
+
#
|
4404
|
+
class Wave < Struct.new(
|
4405
|
+
:arn,
|
4406
|
+
:creation_date_time,
|
4407
|
+
:description,
|
4408
|
+
:is_archived,
|
4409
|
+
:last_modified_date_time,
|
4410
|
+
:name,
|
4411
|
+
:tags,
|
4412
|
+
:wave_aggregated_status,
|
4413
|
+
:wave_id)
|
4414
|
+
SENSITIVE = [:tags]
|
4415
|
+
include Aws::Structure
|
4416
|
+
end
|
4417
|
+
|
4418
|
+
# Wave aggregated status.
|
4419
|
+
#
|
4420
|
+
# @!attribute [rw] health_status
|
4421
|
+
# Wave aggregated status health status.
|
4422
|
+
# @return [String]
|
4423
|
+
#
|
4424
|
+
# @!attribute [rw] last_update_date_time
|
4425
|
+
# Wave aggregated status last update dateTime.
|
4426
|
+
# @return [String]
|
4427
|
+
#
|
4428
|
+
# @!attribute [rw] progress_status
|
4429
|
+
# Wave aggregated status progress status.
|
4430
|
+
# @return [String]
|
4431
|
+
#
|
4432
|
+
# @!attribute [rw] replication_started_date_time
|
4433
|
+
# DateTime marking when the first source server in the wave started
|
4434
|
+
# replication.
|
4435
|
+
# @return [String]
|
4436
|
+
#
|
4437
|
+
# @!attribute [rw] total_applications
|
4438
|
+
# Wave aggregated status total applications amount.
|
4439
|
+
# @return [Integer]
|
4440
|
+
#
|
4441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/WaveAggregatedStatus AWS API Documentation
|
4442
|
+
#
|
4443
|
+
class WaveAggregatedStatus < Struct.new(
|
4444
|
+
:health_status,
|
4445
|
+
:last_update_date_time,
|
4446
|
+
:progress_status,
|
4447
|
+
:replication_started_date_time,
|
4448
|
+
:total_applications)
|
4449
|
+
SENSITIVE = []
|
4450
|
+
include Aws::Structure
|
4451
|
+
end
|
4452
|
+
|
2949
4453
|
end
|
2950
4454
|
end
|