aws-sdk-mgn 1.16.0 → 1.18.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 +424 -10
- data/lib/aws-sdk-mgn/client_api.rb +294 -0
- data/lib/aws-sdk-mgn/endpoint_provider.rb +38 -95
- data/lib/aws-sdk-mgn/endpoints.rb +84 -0
- data/lib/aws-sdk-mgn/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-mgn/types.rb +688 -796
- data/lib/aws-sdk-mgn.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-mgn/types.rb
CHANGED
@@ -113,13 +113,6 @@ module Aws::Mgn
|
|
113
113
|
include Aws::Structure
|
114
114
|
end
|
115
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
116
|
# @!attribute [rw] application_id
|
124
117
|
# Application ID.
|
125
118
|
# @return [String]
|
@@ -132,13 +125,6 @@ module Aws::Mgn
|
|
132
125
|
include Aws::Structure
|
133
126
|
end
|
134
127
|
|
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
128
|
# @!attribute [rw] wave_id
|
143
129
|
# Wave ID.
|
144
130
|
# @return [String]
|
@@ -151,14 +137,6 @@ module Aws::Mgn
|
|
151
137
|
include Aws::Structure
|
152
138
|
end
|
153
139
|
|
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
140
|
# @!attribute [rw] application_i_ds
|
163
141
|
# Application IDs list.
|
164
142
|
# @return [Array<String>]
|
@@ -180,14 +158,6 @@ module Aws::Mgn
|
|
180
158
|
#
|
181
159
|
class AssociateApplicationsResponse < Aws::EmptyStructure; end
|
182
160
|
|
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
161
|
# @!attribute [rw] application_id
|
192
162
|
# Application ID.
|
193
163
|
# @return [String]
|
@@ -228,16 +198,6 @@ module Aws::Mgn
|
|
228
198
|
include Aws::Structure
|
229
199
|
end
|
230
200
|
|
231
|
-
# @note When making an API call, you may pass ChangeServerLifeCycleStateRequest
|
232
|
-
# data as a hash:
|
233
|
-
#
|
234
|
-
# {
|
235
|
-
# life_cycle: { # required
|
236
|
-
# state: "READY_FOR_TEST", # required, accepts READY_FOR_TEST, READY_FOR_CUTOVER, CUTOVER
|
237
|
-
# },
|
238
|
-
# source_server_id: "SourceServerID", # required
|
239
|
-
# }
|
240
|
-
#
|
241
201
|
# @!attribute [rw] life_cycle
|
242
202
|
# The request to change the source server migration lifecycle state.
|
243
203
|
# @return [Types::ChangeServerLifeCycleStateSourceServerLifecycle]
|
@@ -258,13 +218,6 @@ module Aws::Mgn
|
|
258
218
|
|
259
219
|
# The request to change the source server migration lifecycle state.
|
260
220
|
#
|
261
|
-
# @note When making an API call, you may pass ChangeServerLifeCycleStateSourceServerLifecycle
|
262
|
-
# data as a hash:
|
263
|
-
#
|
264
|
-
# {
|
265
|
-
# state: "READY_FOR_TEST", # required, accepts READY_FOR_TEST, READY_FOR_CUTOVER, CUTOVER
|
266
|
-
# }
|
267
|
-
#
|
268
221
|
# @!attribute [rw] state
|
269
222
|
# The request to change the source server migration lifecycle state.
|
270
223
|
# @return [String]
|
@@ -310,17 +263,6 @@ module Aws::Mgn
|
|
310
263
|
include Aws::Structure
|
311
264
|
end
|
312
265
|
|
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
266
|
# @!attribute [rw] description
|
325
267
|
# Application description.
|
326
268
|
# @return [String]
|
@@ -343,59 +285,6 @@ module Aws::Mgn
|
|
343
285
|
include Aws::Structure
|
344
286
|
end
|
345
287
|
|
346
|
-
# @note When making an API call, you may pass CreateLaunchConfigurationTemplateRequest
|
347
|
-
# data as a hash:
|
348
|
-
#
|
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",
|
365
|
-
# post_launch_actions: {
|
366
|
-
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
367
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY, TEST_ONLY
|
368
|
-
# s3_log_bucket: "S3LogBucketName",
|
369
|
-
# s3_output_key_prefix: "BoundedString",
|
370
|
-
# ssm_documents: [
|
371
|
-
# {
|
372
|
-
# action_name: "BoundedString", # required
|
373
|
-
# must_succeed_for_cutover: false,
|
374
|
-
# parameters: {
|
375
|
-
# "SsmDocumentParameterName" => [
|
376
|
-
# {
|
377
|
-
# parameter_name: "SsmParameterStoreParameterName", # required
|
378
|
-
# parameter_type: "STRING", # required, accepts STRING
|
379
|
-
# },
|
380
|
-
# ],
|
381
|
-
# },
|
382
|
-
# ssm_document_name: "SsmDocumentName", # required
|
383
|
-
# timeout_seconds: 1,
|
384
|
-
# },
|
385
|
-
# ],
|
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,
|
393
|
-
# tags: {
|
394
|
-
# "TagKey" => "TagValue",
|
395
|
-
# },
|
396
|
-
# target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
|
397
|
-
# }
|
398
|
-
#
|
399
288
|
# @!attribute [rw] associate_public_ip_address
|
400
289
|
# Associate public Ip address.
|
401
290
|
# @return [Boolean]
|
@@ -474,29 +363,6 @@ module Aws::Mgn
|
|
474
363
|
include Aws::Structure
|
475
364
|
end
|
476
365
|
|
477
|
-
# @note When making an API call, you may pass CreateReplicationConfigurationTemplateRequest
|
478
|
-
# data as a hash:
|
479
|
-
#
|
480
|
-
# {
|
481
|
-
# associate_default_security_group: false, # required
|
482
|
-
# bandwidth_throttling: 1, # required
|
483
|
-
# create_public_ip: false, # required
|
484
|
-
# data_plane_routing: "PRIVATE_IP", # required, accepts PRIVATE_IP, PUBLIC_IP
|
485
|
-
# default_large_staging_disk_type: "GP2", # required, accepts GP2, ST1, GP3
|
486
|
-
# ebs_encryption: "DEFAULT", # required, accepts DEFAULT, CUSTOM
|
487
|
-
# ebs_encryption_key_arn: "ARN",
|
488
|
-
# replication_server_instance_type: "EC2InstanceType", # required
|
489
|
-
# replication_servers_security_groups_i_ds: ["SecurityGroupID"], # required
|
490
|
-
# staging_area_subnet_id: "SubnetID", # required
|
491
|
-
# staging_area_tags: { # required
|
492
|
-
# "TagKey" => "TagValue",
|
493
|
-
# },
|
494
|
-
# tags: {
|
495
|
-
# "TagKey" => "TagValue",
|
496
|
-
# },
|
497
|
-
# use_dedicated_replication_server: false, # required
|
498
|
-
# }
|
499
|
-
#
|
500
366
|
# @!attribute [rw] associate_default_security_group
|
501
367
|
# Request to associate the default Application Migration Service
|
502
368
|
# Security group with the Replication Settings template.
|
@@ -582,17 +448,6 @@ module Aws::Mgn
|
|
582
448
|
include Aws::Structure
|
583
449
|
end
|
584
450
|
|
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
451
|
# @!attribute [rw] description
|
597
452
|
# Wave description.
|
598
453
|
# @return [String]
|
@@ -755,13 +610,6 @@ module Aws::Mgn
|
|
755
610
|
include Aws::Structure
|
756
611
|
end
|
757
612
|
|
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
613
|
# @!attribute [rw] application_id
|
766
614
|
# Application ID.
|
767
615
|
# @return [String]
|
@@ -778,13 +626,6 @@ module Aws::Mgn
|
|
778
626
|
#
|
779
627
|
class DeleteApplicationResponse < Aws::EmptyStructure; end
|
780
628
|
|
781
|
-
# @note When making an API call, you may pass DeleteJobRequest
|
782
|
-
# data as a hash:
|
783
|
-
#
|
784
|
-
# {
|
785
|
-
# job_id: "JobID", # required
|
786
|
-
# }
|
787
|
-
#
|
788
629
|
# @!attribute [rw] job_id
|
789
630
|
# Request to delete Job from service by Job ID.
|
790
631
|
# @return [String]
|
@@ -801,13 +642,6 @@ module Aws::Mgn
|
|
801
642
|
#
|
802
643
|
class DeleteJobResponse < Aws::EmptyStructure; end
|
803
644
|
|
804
|
-
# @note When making an API call, you may pass DeleteLaunchConfigurationTemplateRequest
|
805
|
-
# data as a hash:
|
806
|
-
#
|
807
|
-
# {
|
808
|
-
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
809
|
-
# }
|
810
|
-
#
|
811
645
|
# @!attribute [rw] launch_configuration_template_id
|
812
646
|
# ID of resource to be deleted.
|
813
647
|
# @return [String]
|
@@ -824,13 +658,6 @@ module Aws::Mgn
|
|
824
658
|
#
|
825
659
|
class DeleteLaunchConfigurationTemplateResponse < Aws::EmptyStructure; end
|
826
660
|
|
827
|
-
# @note When making an API call, you may pass DeleteReplicationConfigurationTemplateRequest
|
828
|
-
# data as a hash:
|
829
|
-
#
|
830
|
-
# {
|
831
|
-
# replication_configuration_template_id: "ReplicationConfigurationTemplateID", # required
|
832
|
-
# }
|
833
|
-
#
|
834
661
|
# @!attribute [rw] replication_configuration_template_id
|
835
662
|
# Request to delete Replication Configuration Template from service by
|
836
663
|
# Replication Configuration Template ID.
|
@@ -848,13 +675,6 @@ module Aws::Mgn
|
|
848
675
|
#
|
849
676
|
class DeleteReplicationConfigurationTemplateResponse < Aws::EmptyStructure; end
|
850
677
|
|
851
|
-
# @note When making an API call, you may pass DeleteSourceServerRequest
|
852
|
-
# data as a hash:
|
853
|
-
#
|
854
|
-
# {
|
855
|
-
# source_server_id: "SourceServerID", # required
|
856
|
-
# }
|
857
|
-
#
|
858
678
|
# @!attribute [rw] source_server_id
|
859
679
|
# Request to delete Source Server from service by Server ID.
|
860
680
|
# @return [String]
|
@@ -871,13 +691,6 @@ module Aws::Mgn
|
|
871
691
|
#
|
872
692
|
class DeleteSourceServerResponse < Aws::EmptyStructure; end
|
873
693
|
|
874
|
-
# @note When making an API call, you may pass DeleteVcenterClientRequest
|
875
|
-
# data as a hash:
|
876
|
-
#
|
877
|
-
# {
|
878
|
-
# vcenter_client_id: "VcenterClientID", # required
|
879
|
-
# }
|
880
|
-
#
|
881
694
|
# @!attribute [rw] vcenter_client_id
|
882
695
|
# ID of resource to be deleted.
|
883
696
|
# @return [String]
|
@@ -890,13 +703,6 @@ module Aws::Mgn
|
|
890
703
|
include Aws::Structure
|
891
704
|
end
|
892
705
|
|
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
706
|
# @!attribute [rw] wave_id
|
901
707
|
# Wave ID.
|
902
708
|
# @return [String]
|
@@ -913,15 +719,6 @@ module Aws::Mgn
|
|
913
719
|
#
|
914
720
|
class DeleteWaveResponse < Aws::EmptyStructure; end
|
915
721
|
|
916
|
-
# @note When making an API call, you may pass DescribeJobLogItemsRequest
|
917
|
-
# data as a hash:
|
918
|
-
#
|
919
|
-
# {
|
920
|
-
# job_id: "JobID", # required
|
921
|
-
# max_results: 1,
|
922
|
-
# next_token: "PaginationToken",
|
923
|
-
# }
|
924
|
-
#
|
925
722
|
# @!attribute [rw] job_id
|
926
723
|
# Request to describe Job log job ID.
|
927
724
|
# @return [String]
|
@@ -961,19 +758,6 @@ module Aws::Mgn
|
|
961
758
|
include Aws::Structure
|
962
759
|
end
|
963
760
|
|
964
|
-
# @note When making an API call, you may pass DescribeJobsRequest
|
965
|
-
# data as a hash:
|
966
|
-
#
|
967
|
-
# {
|
968
|
-
# filters: {
|
969
|
-
# from_date: "ISO8601DatetimeString",
|
970
|
-
# job_i_ds: ["JobID"],
|
971
|
-
# to_date: "ISO8601DatetimeString",
|
972
|
-
# },
|
973
|
-
# max_results: 1,
|
974
|
-
# next_token: "PaginationToken",
|
975
|
-
# }
|
976
|
-
#
|
977
761
|
# @!attribute [rw] filters
|
978
762
|
# Request to describe Job log filters.
|
979
763
|
# @return [Types::DescribeJobsRequestFilters]
|
@@ -998,15 +782,6 @@ module Aws::Mgn
|
|
998
782
|
|
999
783
|
# Request to describe Job log filters.
|
1000
784
|
#
|
1001
|
-
# @note When making an API call, you may pass DescribeJobsRequestFilters
|
1002
|
-
# data as a hash:
|
1003
|
-
#
|
1004
|
-
# {
|
1005
|
-
# from_date: "ISO8601DatetimeString",
|
1006
|
-
# job_i_ds: ["JobID"],
|
1007
|
-
# to_date: "ISO8601DatetimeString",
|
1008
|
-
# }
|
1009
|
-
#
|
1010
785
|
# @!attribute [rw] from_date
|
1011
786
|
# Request to describe Job log filters by date.
|
1012
787
|
# @return [String]
|
@@ -1046,15 +821,6 @@ module Aws::Mgn
|
|
1046
821
|
include Aws::Structure
|
1047
822
|
end
|
1048
823
|
|
1049
|
-
# @note When making an API call, you may pass DescribeLaunchConfigurationTemplatesRequest
|
1050
|
-
# data as a hash:
|
1051
|
-
#
|
1052
|
-
# {
|
1053
|
-
# launch_configuration_template_i_ds: ["LaunchConfigurationTemplateID"],
|
1054
|
-
# max_results: 1,
|
1055
|
-
# next_token: "PaginationToken",
|
1056
|
-
# }
|
1057
|
-
#
|
1058
824
|
# @!attribute [rw] launch_configuration_template_i_ds
|
1059
825
|
# Request to filter Launch Configuration Templates list by Launch
|
1060
826
|
# Configuration Template ID.
|
@@ -1098,15 +864,6 @@ module Aws::Mgn
|
|
1098
864
|
include Aws::Structure
|
1099
865
|
end
|
1100
866
|
|
1101
|
-
# @note When making an API call, you may pass DescribeReplicationConfigurationTemplatesRequest
|
1102
|
-
# data as a hash:
|
1103
|
-
#
|
1104
|
-
# {
|
1105
|
-
# max_results: 1,
|
1106
|
-
# next_token: "PaginationToken",
|
1107
|
-
# replication_configuration_template_i_ds: ["ReplicationConfigurationTemplateID"],
|
1108
|
-
# }
|
1109
|
-
#
|
1110
867
|
# @!attribute [rw] max_results
|
1111
868
|
# Request to describe Replication Configuration template by max
|
1112
869
|
# results.
|
@@ -1150,21 +907,6 @@ module Aws::Mgn
|
|
1150
907
|
include Aws::Structure
|
1151
908
|
end
|
1152
909
|
|
1153
|
-
# @note When making an API call, you may pass DescribeSourceServersRequest
|
1154
|
-
# data as a hash:
|
1155
|
-
#
|
1156
|
-
# {
|
1157
|
-
# filters: {
|
1158
|
-
# application_i_ds: ["ApplicationID"],
|
1159
|
-
# is_archived: false,
|
1160
|
-
# life_cycle_states: ["STOPPED"], # accepts STOPPED, NOT_READY, READY_FOR_TEST, TESTING, READY_FOR_CUTOVER, CUTTING_OVER, CUTOVER, DISCONNECTED, DISCOVERED
|
1161
|
-
# replication_types: ["AGENT_BASED"], # accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
1162
|
-
# source_server_i_ds: ["SourceServerID"],
|
1163
|
-
# },
|
1164
|
-
# max_results: 1,
|
1165
|
-
# next_token: "PaginationToken",
|
1166
|
-
# }
|
1167
|
-
#
|
1168
910
|
# @!attribute [rw] filters
|
1169
911
|
# Request to filter Source Servers list.
|
1170
912
|
# @return [Types::DescribeSourceServersRequestFilters]
|
@@ -1189,17 +931,6 @@ module Aws::Mgn
|
|
1189
931
|
|
1190
932
|
# Request to filter Source Servers list.
|
1191
933
|
#
|
1192
|
-
# @note When making an API call, you may pass DescribeSourceServersRequestFilters
|
1193
|
-
# data as a hash:
|
1194
|
-
#
|
1195
|
-
# {
|
1196
|
-
# application_i_ds: ["ApplicationID"],
|
1197
|
-
# is_archived: false,
|
1198
|
-
# life_cycle_states: ["STOPPED"], # accepts STOPPED, NOT_READY, READY_FOR_TEST, TESTING, READY_FOR_CUTOVER, CUTTING_OVER, CUTOVER, DISCONNECTED, DISCOVERED
|
1199
|
-
# replication_types: ["AGENT_BASED"], # accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
1200
|
-
# source_server_i_ds: ["SourceServerID"],
|
1201
|
-
# }
|
1202
|
-
#
|
1203
934
|
# @!attribute [rw] application_i_ds
|
1204
935
|
# Request to filter Source Servers list by application IDs.
|
1205
936
|
# @return [Array<String>]
|
@@ -1249,14 +980,6 @@ module Aws::Mgn
|
|
1249
980
|
include Aws::Structure
|
1250
981
|
end
|
1251
982
|
|
1252
|
-
# @note When making an API call, you may pass DescribeVcenterClientsRequest
|
1253
|
-
# data as a hash:
|
1254
|
-
#
|
1255
|
-
# {
|
1256
|
-
# max_results: 1,
|
1257
|
-
# next_token: "PaginationToken",
|
1258
|
-
# }
|
1259
|
-
#
|
1260
983
|
# @!attribute [rw] max_results
|
1261
984
|
# Maximum results to be returned in DescribeVcenterClients.
|
1262
985
|
# @return [Integer]
|
@@ -1291,14 +1014,6 @@ module Aws::Mgn
|
|
1291
1014
|
include Aws::Structure
|
1292
1015
|
end
|
1293
1016
|
|
1294
|
-
# @note When making an API call, you may pass DisassociateApplicationsRequest
|
1295
|
-
# data as a hash:
|
1296
|
-
#
|
1297
|
-
# {
|
1298
|
-
# application_i_ds: ["ApplicationID"], # required
|
1299
|
-
# wave_id: "WaveID", # required
|
1300
|
-
# }
|
1301
|
-
#
|
1302
1017
|
# @!attribute [rw] application_i_ds
|
1303
1018
|
# Application IDs list.
|
1304
1019
|
# @return [Array<String>]
|
@@ -1320,14 +1035,6 @@ module Aws::Mgn
|
|
1320
1035
|
#
|
1321
1036
|
class DisassociateApplicationsResponse < Aws::EmptyStructure; end
|
1322
1037
|
|
1323
|
-
# @note When making an API call, you may pass DisassociateSourceServersRequest
|
1324
|
-
# data as a hash:
|
1325
|
-
#
|
1326
|
-
# {
|
1327
|
-
# application_id: "ApplicationID", # required
|
1328
|
-
# source_server_i_ds: ["SourceServerID"], # required
|
1329
|
-
# }
|
1330
|
-
#
|
1331
1038
|
# @!attribute [rw] application_id
|
1332
1039
|
# Application ID.
|
1333
1040
|
# @return [String]
|
@@ -1349,13 +1056,6 @@ module Aws::Mgn
|
|
1349
1056
|
#
|
1350
1057
|
class DisassociateSourceServersResponse < Aws::EmptyStructure; end
|
1351
1058
|
|
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
1059
|
# @!attribute [rw] source_server_id
|
1360
1060
|
# Request to disconnect Source Server from service by Server ID.
|
1361
1061
|
# @return [String]
|
@@ -1416,13 +1116,117 @@ module Aws::Mgn
|
|
1416
1116
|
include Aws::Structure
|
1417
1117
|
end
|
1418
1118
|
|
1419
|
-
#
|
1420
|
-
# data as a hash:
|
1119
|
+
# Export errors data.
|
1421
1120
|
#
|
1422
|
-
#
|
1423
|
-
#
|
1424
|
-
#
|
1121
|
+
# @!attribute [rw] raw_error
|
1122
|
+
# Export errors data raw error.
|
1123
|
+
# @return [String]
|
1124
|
+
#
|
1125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ExportErrorData AWS API Documentation
|
1126
|
+
#
|
1127
|
+
class ExportErrorData < Struct.new(
|
1128
|
+
:raw_error)
|
1129
|
+
SENSITIVE = []
|
1130
|
+
include Aws::Structure
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
# Export task.
|
1425
1134
|
#
|
1135
|
+
# @!attribute [rw] creation_date_time
|
1136
|
+
# Export task creation datetime.
|
1137
|
+
# @return [String]
|
1138
|
+
#
|
1139
|
+
# @!attribute [rw] end_date_time
|
1140
|
+
# Export task end datetime.
|
1141
|
+
# @return [String]
|
1142
|
+
#
|
1143
|
+
# @!attribute [rw] export_id
|
1144
|
+
# Export task id.
|
1145
|
+
# @return [String]
|
1146
|
+
#
|
1147
|
+
# @!attribute [rw] progress_percentage
|
1148
|
+
# Export task progress percentage.
|
1149
|
+
# @return [Float]
|
1150
|
+
#
|
1151
|
+
# @!attribute [rw] s3_bucket
|
1152
|
+
# Export task s3 bucket.
|
1153
|
+
# @return [String]
|
1154
|
+
#
|
1155
|
+
# @!attribute [rw] s3_bucket_owner
|
1156
|
+
# Export task s3 bucket owner.
|
1157
|
+
# @return [String]
|
1158
|
+
#
|
1159
|
+
# @!attribute [rw] s3_key
|
1160
|
+
# Export task s3 key.
|
1161
|
+
# @return [String]
|
1162
|
+
#
|
1163
|
+
# @!attribute [rw] status
|
1164
|
+
# Export task status.
|
1165
|
+
# @return [String]
|
1166
|
+
#
|
1167
|
+
# @!attribute [rw] summary
|
1168
|
+
# Export task summary.
|
1169
|
+
# @return [Types::ExportTaskSummary]
|
1170
|
+
#
|
1171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ExportTask AWS API Documentation
|
1172
|
+
#
|
1173
|
+
class ExportTask < Struct.new(
|
1174
|
+
:creation_date_time,
|
1175
|
+
:end_date_time,
|
1176
|
+
:export_id,
|
1177
|
+
:progress_percentage,
|
1178
|
+
:s3_bucket,
|
1179
|
+
:s3_bucket_owner,
|
1180
|
+
:s3_key,
|
1181
|
+
:status,
|
1182
|
+
:summary)
|
1183
|
+
SENSITIVE = []
|
1184
|
+
include Aws::Structure
|
1185
|
+
end
|
1186
|
+
|
1187
|
+
# Export task error.
|
1188
|
+
#
|
1189
|
+
# @!attribute [rw] error_data
|
1190
|
+
# Export task error data.
|
1191
|
+
# @return [Types::ExportErrorData]
|
1192
|
+
#
|
1193
|
+
# @!attribute [rw] error_date_time
|
1194
|
+
# Export task error datetime.
|
1195
|
+
# @return [String]
|
1196
|
+
#
|
1197
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ExportTaskError AWS API Documentation
|
1198
|
+
#
|
1199
|
+
class ExportTaskError < Struct.new(
|
1200
|
+
:error_data,
|
1201
|
+
:error_date_time)
|
1202
|
+
SENSITIVE = []
|
1203
|
+
include Aws::Structure
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
# Export task summary.
|
1207
|
+
#
|
1208
|
+
# @!attribute [rw] applications_count
|
1209
|
+
# Export task summary applications count.
|
1210
|
+
# @return [Integer]
|
1211
|
+
#
|
1212
|
+
# @!attribute [rw] servers_count
|
1213
|
+
# Export task summary servers count.
|
1214
|
+
# @return [Integer]
|
1215
|
+
#
|
1216
|
+
# @!attribute [rw] waves_count
|
1217
|
+
# Export task summary waves count.
|
1218
|
+
# @return [Integer]
|
1219
|
+
#
|
1220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ExportTaskSummary AWS API Documentation
|
1221
|
+
#
|
1222
|
+
class ExportTaskSummary < Struct.new(
|
1223
|
+
:applications_count,
|
1224
|
+
:servers_count,
|
1225
|
+
:waves_count)
|
1226
|
+
SENSITIVE = []
|
1227
|
+
include Aws::Structure
|
1228
|
+
end
|
1229
|
+
|
1426
1230
|
# @!attribute [rw] source_server_id
|
1427
1231
|
# Request to finalize Cutover by Source Server ID.
|
1428
1232
|
# @return [String]
|
@@ -1435,13 +1239,6 @@ module Aws::Mgn
|
|
1435
1239
|
include Aws::Structure
|
1436
1240
|
end
|
1437
1241
|
|
1438
|
-
# @note When making an API call, you may pass GetLaunchConfigurationRequest
|
1439
|
-
# data as a hash:
|
1440
|
-
#
|
1441
|
-
# {
|
1442
|
-
# source_server_id: "SourceServerID", # required
|
1443
|
-
# }
|
1444
|
-
#
|
1445
1242
|
# @!attribute [rw] source_server_id
|
1446
1243
|
# Request to get Launch Configuration information by Source Server ID.
|
1447
1244
|
# @return [String]
|
@@ -1454,13 +1251,6 @@ module Aws::Mgn
|
|
1454
1251
|
include Aws::Structure
|
1455
1252
|
end
|
1456
1253
|
|
1457
|
-
# @note When making an API call, you may pass GetReplicationConfigurationRequest
|
1458
|
-
# data as a hash:
|
1459
|
-
#
|
1460
|
-
# {
|
1461
|
-
# source_server_id: "SourceServerID", # required
|
1462
|
-
# }
|
1463
|
-
#
|
1464
1254
|
# @!attribute [rw] source_server_id
|
1465
1255
|
# Request to get Replication Configuration by Source Server ID.
|
1466
1256
|
# @return [String]
|
@@ -1507,6 +1297,194 @@ module Aws::Mgn
|
|
1507
1297
|
include Aws::Structure
|
1508
1298
|
end
|
1509
1299
|
|
1300
|
+
# Import error data.
|
1301
|
+
#
|
1302
|
+
# @!attribute [rw] application_id
|
1303
|
+
# Import error data application ID.
|
1304
|
+
# @return [String]
|
1305
|
+
#
|
1306
|
+
# @!attribute [rw] ec2_launch_template_id
|
1307
|
+
# Import error data ec2 LaunchTemplate ID.
|
1308
|
+
# @return [String]
|
1309
|
+
#
|
1310
|
+
# @!attribute [rw] raw_error
|
1311
|
+
# Import error data raw error.
|
1312
|
+
# @return [String]
|
1313
|
+
#
|
1314
|
+
# @!attribute [rw] row_number
|
1315
|
+
# Import error data row number.
|
1316
|
+
# @return [Integer]
|
1317
|
+
#
|
1318
|
+
# @!attribute [rw] source_server_id
|
1319
|
+
# Import error data source server ID.
|
1320
|
+
# @return [String]
|
1321
|
+
#
|
1322
|
+
# @!attribute [rw] wave_id
|
1323
|
+
# Import error data wave id.
|
1324
|
+
# @return [String]
|
1325
|
+
#
|
1326
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportErrorData AWS API Documentation
|
1327
|
+
#
|
1328
|
+
class ImportErrorData < Struct.new(
|
1329
|
+
:application_id,
|
1330
|
+
:ec2_launch_template_id,
|
1331
|
+
:raw_error,
|
1332
|
+
:row_number,
|
1333
|
+
:source_server_id,
|
1334
|
+
:wave_id)
|
1335
|
+
SENSITIVE = []
|
1336
|
+
include Aws::Structure
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
# Import task.
|
1340
|
+
#
|
1341
|
+
# @!attribute [rw] creation_date_time
|
1342
|
+
# Import task creation datetime.
|
1343
|
+
# @return [String]
|
1344
|
+
#
|
1345
|
+
# @!attribute [rw] end_date_time
|
1346
|
+
# Import task end datetime.
|
1347
|
+
# @return [String]
|
1348
|
+
#
|
1349
|
+
# @!attribute [rw] import_id
|
1350
|
+
# Import task id.
|
1351
|
+
# @return [String]
|
1352
|
+
#
|
1353
|
+
# @!attribute [rw] progress_percentage
|
1354
|
+
# Import task progress percentage.
|
1355
|
+
# @return [Float]
|
1356
|
+
#
|
1357
|
+
# @!attribute [rw] s3_bucket_source
|
1358
|
+
# Import task s3 bucket source.
|
1359
|
+
# @return [Types::S3BucketSource]
|
1360
|
+
#
|
1361
|
+
# @!attribute [rw] status
|
1362
|
+
# Import task status.
|
1363
|
+
# @return [String]
|
1364
|
+
#
|
1365
|
+
# @!attribute [rw] summary
|
1366
|
+
# Import task summary.
|
1367
|
+
# @return [Types::ImportTaskSummary]
|
1368
|
+
#
|
1369
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTask AWS API Documentation
|
1370
|
+
#
|
1371
|
+
class ImportTask < Struct.new(
|
1372
|
+
:creation_date_time,
|
1373
|
+
:end_date_time,
|
1374
|
+
:import_id,
|
1375
|
+
:progress_percentage,
|
1376
|
+
:s3_bucket_source,
|
1377
|
+
:status,
|
1378
|
+
:summary)
|
1379
|
+
SENSITIVE = []
|
1380
|
+
include Aws::Structure
|
1381
|
+
end
|
1382
|
+
|
1383
|
+
# Import task error.
|
1384
|
+
#
|
1385
|
+
# @!attribute [rw] error_data
|
1386
|
+
# Import task error data.
|
1387
|
+
# @return [Types::ImportErrorData]
|
1388
|
+
#
|
1389
|
+
# @!attribute [rw] error_date_time
|
1390
|
+
# Import task error datetime.
|
1391
|
+
# @return [String]
|
1392
|
+
#
|
1393
|
+
# @!attribute [rw] error_type
|
1394
|
+
# Import task error type.
|
1395
|
+
# @return [String]
|
1396
|
+
#
|
1397
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskError AWS API Documentation
|
1398
|
+
#
|
1399
|
+
class ImportTaskError < Struct.new(
|
1400
|
+
:error_data,
|
1401
|
+
:error_date_time,
|
1402
|
+
:error_type)
|
1403
|
+
SENSITIVE = []
|
1404
|
+
include Aws::Structure
|
1405
|
+
end
|
1406
|
+
|
1407
|
+
# Import task summary.
|
1408
|
+
#
|
1409
|
+
# @!attribute [rw] applications
|
1410
|
+
# Import task summary applications.
|
1411
|
+
# @return [Types::ImportTaskSummaryApplications]
|
1412
|
+
#
|
1413
|
+
# @!attribute [rw] servers
|
1414
|
+
# Import task summary servers.
|
1415
|
+
# @return [Types::ImportTaskSummaryServers]
|
1416
|
+
#
|
1417
|
+
# @!attribute [rw] waves
|
1418
|
+
# Import task summary waves.
|
1419
|
+
# @return [Types::ImportTaskSummaryWaves]
|
1420
|
+
#
|
1421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskSummary AWS API Documentation
|
1422
|
+
#
|
1423
|
+
class ImportTaskSummary < Struct.new(
|
1424
|
+
:applications,
|
1425
|
+
:servers,
|
1426
|
+
:waves)
|
1427
|
+
SENSITIVE = []
|
1428
|
+
include Aws::Structure
|
1429
|
+
end
|
1430
|
+
|
1431
|
+
# Import task summary applications.
|
1432
|
+
#
|
1433
|
+
# @!attribute [rw] created_count
|
1434
|
+
# Import task summary applications created count.
|
1435
|
+
# @return [Integer]
|
1436
|
+
#
|
1437
|
+
# @!attribute [rw] modified_count
|
1438
|
+
# Import task summary applications modified count.
|
1439
|
+
# @return [Integer]
|
1440
|
+
#
|
1441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskSummaryApplications AWS API Documentation
|
1442
|
+
#
|
1443
|
+
class ImportTaskSummaryApplications < Struct.new(
|
1444
|
+
:created_count,
|
1445
|
+
:modified_count)
|
1446
|
+
SENSITIVE = []
|
1447
|
+
include Aws::Structure
|
1448
|
+
end
|
1449
|
+
|
1450
|
+
# Import task summary servers.
|
1451
|
+
#
|
1452
|
+
# @!attribute [rw] created_count
|
1453
|
+
# Import task summary servers created count.
|
1454
|
+
# @return [Integer]
|
1455
|
+
#
|
1456
|
+
# @!attribute [rw] modified_count
|
1457
|
+
# Import task summary servers modified count.
|
1458
|
+
# @return [Integer]
|
1459
|
+
#
|
1460
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskSummaryServers AWS API Documentation
|
1461
|
+
#
|
1462
|
+
class ImportTaskSummaryServers < Struct.new(
|
1463
|
+
:created_count,
|
1464
|
+
:modified_count)
|
1465
|
+
SENSITIVE = []
|
1466
|
+
include Aws::Structure
|
1467
|
+
end
|
1468
|
+
|
1469
|
+
# Import task summery waves.
|
1470
|
+
#
|
1471
|
+
# @!attribute [rw] created_count
|
1472
|
+
# Import task summery waves created count.
|
1473
|
+
# @return [Integer]
|
1474
|
+
#
|
1475
|
+
# @!attribute [rw] modified_count
|
1476
|
+
# Import task summery waves modified count.
|
1477
|
+
# @return [Integer]
|
1478
|
+
#
|
1479
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskSummaryWaves AWS API Documentation
|
1480
|
+
#
|
1481
|
+
class ImportTaskSummaryWaves < Struct.new(
|
1482
|
+
:created_count,
|
1483
|
+
:modified_count)
|
1484
|
+
SENSITIVE = []
|
1485
|
+
include Aws::Structure
|
1486
|
+
end
|
1487
|
+
|
1510
1488
|
# @api private
|
1511
1489
|
#
|
1512
1490
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/InitializeServiceRequest AWS API Documentation
|
@@ -1842,15 +1820,6 @@ module Aws::Mgn
|
|
1842
1820
|
|
1843
1821
|
# Launch template disk configuration.
|
1844
1822
|
#
|
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
1823
|
# @!attribute [rw] iops
|
1855
1824
|
# Launch template disk iops configuration.
|
1856
1825
|
# @return [Integer]
|
@@ -1899,13 +1868,6 @@ module Aws::Mgn
|
|
1899
1868
|
|
1900
1869
|
# Configure Licensing.
|
1901
1870
|
#
|
1902
|
-
# @note When making an API call, you may pass Licensing
|
1903
|
-
# data as a hash:
|
1904
|
-
#
|
1905
|
-
# {
|
1906
|
-
# os_byol: false,
|
1907
|
-
# }
|
1908
|
-
#
|
1909
1871
|
# @!attribute [rw] os_byol
|
1910
1872
|
# Configure BYOL OS licensing.
|
1911
1873
|
# @return [Boolean]
|
@@ -2103,19 +2065,6 @@ module Aws::Mgn
|
|
2103
2065
|
include Aws::Structure
|
2104
2066
|
end
|
2105
2067
|
|
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
2068
|
# @!attribute [rw] filters
|
2120
2069
|
# Applications list filters.
|
2121
2070
|
# @return [Types::ListApplicationsRequestFilters]
|
@@ -2140,15 +2089,6 @@ module Aws::Mgn
|
|
2140
2089
|
|
2141
2090
|
# Applications list filters.
|
2142
2091
|
#
|
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
2092
|
# @!attribute [rw] application_i_ds
|
2153
2093
|
# Filter applications list by application ID.
|
2154
2094
|
# @return [Array<String>]
|
@@ -2188,18 +2128,206 @@ module Aws::Mgn
|
|
2188
2128
|
include Aws::Structure
|
2189
2129
|
end
|
2190
2130
|
|
2191
|
-
#
|
2192
|
-
#
|
2131
|
+
# List export errors request.
|
2132
|
+
#
|
2133
|
+
# @!attribute [rw] export_id
|
2134
|
+
# List export errors request export id.
|
2135
|
+
# @return [String]
|
2193
2136
|
#
|
2194
|
-
#
|
2195
|
-
#
|
2196
|
-
#
|
2197
|
-
#
|
2198
|
-
#
|
2199
|
-
#
|
2200
|
-
#
|
2201
|
-
#
|
2137
|
+
# @!attribute [rw] max_results
|
2138
|
+
# List export errors request max results.
|
2139
|
+
# @return [Integer]
|
2140
|
+
#
|
2141
|
+
# @!attribute [rw] next_token
|
2142
|
+
# List export errors request next token.
|
2143
|
+
# @return [String]
|
2144
|
+
#
|
2145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportErrorsRequest AWS API Documentation
|
2202
2146
|
#
|
2147
|
+
class ListExportErrorsRequest < Struct.new(
|
2148
|
+
:export_id,
|
2149
|
+
:max_results,
|
2150
|
+
:next_token)
|
2151
|
+
SENSITIVE = []
|
2152
|
+
include Aws::Structure
|
2153
|
+
end
|
2154
|
+
|
2155
|
+
# List export errors response.
|
2156
|
+
#
|
2157
|
+
# @!attribute [rw] items
|
2158
|
+
# List export errors response items.
|
2159
|
+
# @return [Array<Types::ExportTaskError>]
|
2160
|
+
#
|
2161
|
+
# @!attribute [rw] next_token
|
2162
|
+
# List export errors response next token.
|
2163
|
+
# @return [String]
|
2164
|
+
#
|
2165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportErrorsResponse AWS API Documentation
|
2166
|
+
#
|
2167
|
+
class ListExportErrorsResponse < Struct.new(
|
2168
|
+
:items,
|
2169
|
+
:next_token)
|
2170
|
+
SENSITIVE = []
|
2171
|
+
include Aws::Structure
|
2172
|
+
end
|
2173
|
+
|
2174
|
+
# List export request.
|
2175
|
+
#
|
2176
|
+
# @!attribute [rw] filters
|
2177
|
+
# List exports request filters.
|
2178
|
+
# @return [Types::ListExportsRequestFilters]
|
2179
|
+
#
|
2180
|
+
# @!attribute [rw] max_results
|
2181
|
+
# List export request max results.
|
2182
|
+
# @return [Integer]
|
2183
|
+
#
|
2184
|
+
# @!attribute [rw] next_token
|
2185
|
+
# List export request next token.
|
2186
|
+
# @return [String]
|
2187
|
+
#
|
2188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportsRequest AWS API Documentation
|
2189
|
+
#
|
2190
|
+
class ListExportsRequest < Struct.new(
|
2191
|
+
:filters,
|
2192
|
+
:max_results,
|
2193
|
+
:next_token)
|
2194
|
+
SENSITIVE = []
|
2195
|
+
include Aws::Structure
|
2196
|
+
end
|
2197
|
+
|
2198
|
+
# List exports request filters.
|
2199
|
+
#
|
2200
|
+
# @!attribute [rw] export_i_ds
|
2201
|
+
# List exports request filters export ids.
|
2202
|
+
# @return [Array<String>]
|
2203
|
+
#
|
2204
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportsRequestFilters AWS API Documentation
|
2205
|
+
#
|
2206
|
+
class ListExportsRequestFilters < Struct.new(
|
2207
|
+
:export_i_ds)
|
2208
|
+
SENSITIVE = []
|
2209
|
+
include Aws::Structure
|
2210
|
+
end
|
2211
|
+
|
2212
|
+
# List export response.
|
2213
|
+
#
|
2214
|
+
# @!attribute [rw] items
|
2215
|
+
# List export response items.
|
2216
|
+
# @return [Array<Types::ExportTask>]
|
2217
|
+
#
|
2218
|
+
# @!attribute [rw] next_token
|
2219
|
+
# List export response next token.
|
2220
|
+
# @return [String]
|
2221
|
+
#
|
2222
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportsResponse AWS API Documentation
|
2223
|
+
#
|
2224
|
+
class ListExportsResponse < Struct.new(
|
2225
|
+
:items,
|
2226
|
+
:next_token)
|
2227
|
+
SENSITIVE = []
|
2228
|
+
include Aws::Structure
|
2229
|
+
end
|
2230
|
+
|
2231
|
+
# List import errors request.
|
2232
|
+
#
|
2233
|
+
# @!attribute [rw] import_id
|
2234
|
+
# List import errors request import id.
|
2235
|
+
# @return [String]
|
2236
|
+
#
|
2237
|
+
# @!attribute [rw] max_results
|
2238
|
+
# List import errors request max results.
|
2239
|
+
# @return [Integer]
|
2240
|
+
#
|
2241
|
+
# @!attribute [rw] next_token
|
2242
|
+
# List import errors request next token.
|
2243
|
+
# @return [String]
|
2244
|
+
#
|
2245
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportErrorsRequest AWS API Documentation
|
2246
|
+
#
|
2247
|
+
class ListImportErrorsRequest < Struct.new(
|
2248
|
+
:import_id,
|
2249
|
+
:max_results,
|
2250
|
+
:next_token)
|
2251
|
+
SENSITIVE = []
|
2252
|
+
include Aws::Structure
|
2253
|
+
end
|
2254
|
+
|
2255
|
+
# List imports errors response.
|
2256
|
+
#
|
2257
|
+
# @!attribute [rw] items
|
2258
|
+
# List imports errors response items.
|
2259
|
+
# @return [Array<Types::ImportTaskError>]
|
2260
|
+
#
|
2261
|
+
# @!attribute [rw] next_token
|
2262
|
+
# List imports errors response next token.
|
2263
|
+
# @return [String]
|
2264
|
+
#
|
2265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportErrorsResponse AWS API Documentation
|
2266
|
+
#
|
2267
|
+
class ListImportErrorsResponse < Struct.new(
|
2268
|
+
:items,
|
2269
|
+
:next_token)
|
2270
|
+
SENSITIVE = []
|
2271
|
+
include Aws::Structure
|
2272
|
+
end
|
2273
|
+
|
2274
|
+
# List imports request.
|
2275
|
+
#
|
2276
|
+
# @!attribute [rw] filters
|
2277
|
+
# List imports request filters.
|
2278
|
+
# @return [Types::ListImportsRequestFilters]
|
2279
|
+
#
|
2280
|
+
# @!attribute [rw] max_results
|
2281
|
+
# List imports request max results.
|
2282
|
+
# @return [Integer]
|
2283
|
+
#
|
2284
|
+
# @!attribute [rw] next_token
|
2285
|
+
# List imports request next token.
|
2286
|
+
# @return [String]
|
2287
|
+
#
|
2288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportsRequest AWS API Documentation
|
2289
|
+
#
|
2290
|
+
class ListImportsRequest < Struct.new(
|
2291
|
+
:filters,
|
2292
|
+
:max_results,
|
2293
|
+
:next_token)
|
2294
|
+
SENSITIVE = []
|
2295
|
+
include Aws::Structure
|
2296
|
+
end
|
2297
|
+
|
2298
|
+
# List imports request filters.
|
2299
|
+
#
|
2300
|
+
# @!attribute [rw] import_i_ds
|
2301
|
+
# List imports request filters import IDs.
|
2302
|
+
# @return [Array<String>]
|
2303
|
+
#
|
2304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportsRequestFilters AWS API Documentation
|
2305
|
+
#
|
2306
|
+
class ListImportsRequestFilters < Struct.new(
|
2307
|
+
:import_i_ds)
|
2308
|
+
SENSITIVE = []
|
2309
|
+
include Aws::Structure
|
2310
|
+
end
|
2311
|
+
|
2312
|
+
# List import response.
|
2313
|
+
#
|
2314
|
+
# @!attribute [rw] items
|
2315
|
+
# List import response items.
|
2316
|
+
# @return [Array<Types::ImportTask>]
|
2317
|
+
#
|
2318
|
+
# @!attribute [rw] next_token
|
2319
|
+
# List import response next token.
|
2320
|
+
# @return [String]
|
2321
|
+
#
|
2322
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportsResponse AWS API Documentation
|
2323
|
+
#
|
2324
|
+
class ListImportsResponse < Struct.new(
|
2325
|
+
:items,
|
2326
|
+
:next_token)
|
2327
|
+
SENSITIVE = []
|
2328
|
+
include Aws::Structure
|
2329
|
+
end
|
2330
|
+
|
2203
2331
|
# @!attribute [rw] filters
|
2204
2332
|
# Filters to apply when listing source server post migration custom
|
2205
2333
|
# actions.
|
@@ -2248,13 +2376,6 @@ module Aws::Mgn
|
|
2248
2376
|
include Aws::Structure
|
2249
2377
|
end
|
2250
2378
|
|
2251
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2252
|
-
# data as a hash:
|
2253
|
-
#
|
2254
|
-
# {
|
2255
|
-
# resource_arn: "ARN", # required
|
2256
|
-
# }
|
2257
|
-
#
|
2258
2379
|
# @!attribute [rw] resource_arn
|
2259
2380
|
# List tags for resource request by ARN.
|
2260
2381
|
# @return [String]
|
@@ -2279,18 +2400,6 @@ module Aws::Mgn
|
|
2279
2400
|
include Aws::Structure
|
2280
2401
|
end
|
2281
2402
|
|
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
2403
|
# @!attribute [rw] filters
|
2295
2404
|
# Filters to apply when listing template post migration custom
|
2296
2405
|
# actions.
|
@@ -2339,18 +2448,6 @@ module Aws::Mgn
|
|
2339
2448
|
include Aws::Structure
|
2340
2449
|
end
|
2341
2450
|
|
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
2451
|
# @!attribute [rw] filters
|
2355
2452
|
# Waves list filters.
|
2356
2453
|
# @return [Types::ListWavesRequestFilters]
|
@@ -2375,14 +2472,6 @@ module Aws::Mgn
|
|
2375
2472
|
|
2376
2473
|
# Waves list filters.
|
2377
2474
|
#
|
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
2475
|
# @!attribute [rw] is_archived
|
2387
2476
|
# Filter waves list by archival status.
|
2388
2477
|
# @return [Boolean]
|
@@ -2417,13 +2506,6 @@ module Aws::Mgn
|
|
2417
2506
|
include Aws::Structure
|
2418
2507
|
end
|
2419
2508
|
|
2420
|
-
# @note When making an API call, you may pass MarkAsArchivedRequest
|
2421
|
-
# data as a hash:
|
2422
|
-
#
|
2423
|
-
# {
|
2424
|
-
# source_server_id: "SourceServerID", # required
|
2425
|
-
# }
|
2426
|
-
#
|
2427
2509
|
# @!attribute [rw] source_server_id
|
2428
2510
|
# Mark as archived by Source Server ID.
|
2429
2511
|
# @return [String]
|
@@ -2505,32 +2587,6 @@ module Aws::Mgn
|
|
2505
2587
|
|
2506
2588
|
# Post Launch Actions to executed on the Test or Cutover instance.
|
2507
2589
|
#
|
2508
|
-
# @note When making an API call, you may pass PostLaunchActions
|
2509
|
-
# data as a hash:
|
2510
|
-
#
|
2511
|
-
# {
|
2512
|
-
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
2513
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY, TEST_ONLY
|
2514
|
-
# s3_log_bucket: "S3LogBucketName",
|
2515
|
-
# s3_output_key_prefix: "BoundedString",
|
2516
|
-
# ssm_documents: [
|
2517
|
-
# {
|
2518
|
-
# action_name: "BoundedString", # required
|
2519
|
-
# must_succeed_for_cutover: false,
|
2520
|
-
# parameters: {
|
2521
|
-
# "SsmDocumentParameterName" => [
|
2522
|
-
# {
|
2523
|
-
# parameter_name: "SsmParameterStoreParameterName", # required
|
2524
|
-
# parameter_type: "STRING", # required, accepts STRING
|
2525
|
-
# },
|
2526
|
-
# ],
|
2527
|
-
# },
|
2528
|
-
# ssm_document_name: "SsmDocumentName", # required
|
2529
|
-
# timeout_seconds: 1,
|
2530
|
-
# },
|
2531
|
-
# ],
|
2532
|
-
# }
|
2533
|
-
#
|
2534
2590
|
# @!attribute [rw] cloud_watch_log_group_name
|
2535
2591
|
# AWS Systems Manager Command's CloudWatch log group name.
|
2536
2592
|
# @return [String]
|
@@ -2585,29 +2641,6 @@ module Aws::Mgn
|
|
2585
2641
|
include Aws::Structure
|
2586
2642
|
end
|
2587
2643
|
|
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
2644
|
# @!attribute [rw] action_id
|
2612
2645
|
# Source server post migration custom action ID.
|
2613
2646
|
# @return [String]
|
@@ -2620,6 +2653,14 @@ module Aws::Mgn
|
|
2620
2653
|
# Source server post migration custom action active status.
|
2621
2654
|
# @return [Boolean]
|
2622
2655
|
#
|
2656
|
+
# @!attribute [rw] category
|
2657
|
+
# Source server post migration custom action category.
|
2658
|
+
# @return [String]
|
2659
|
+
#
|
2660
|
+
# @!attribute [rw] description
|
2661
|
+
# Source server post migration custom action description.
|
2662
|
+
# @return [String]
|
2663
|
+
#
|
2623
2664
|
# @!attribute [rw] document_identifier
|
2624
2665
|
# Source server post migration custom action document identifier.
|
2625
2666
|
# @return [String]
|
@@ -2628,6 +2669,10 @@ module Aws::Mgn
|
|
2628
2669
|
# Source server post migration custom action document version.
|
2629
2670
|
# @return [String]
|
2630
2671
|
#
|
2672
|
+
# @!attribute [rw] external_parameters
|
2673
|
+
# Source server post migration custom action external parameters.
|
2674
|
+
# @return [Hash<String,Types::SsmExternalParameter>]
|
2675
|
+
#
|
2631
2676
|
# @!attribute [rw] must_succeed_for_cutover
|
2632
2677
|
# Source server post migration custom action must succeed for cutover.
|
2633
2678
|
# @return [Boolean]
|
@@ -2654,8 +2699,11 @@ module Aws::Mgn
|
|
2654
2699
|
:action_id,
|
2655
2700
|
:action_name,
|
2656
2701
|
:active,
|
2702
|
+
:category,
|
2703
|
+
:description,
|
2657
2704
|
:document_identifier,
|
2658
2705
|
:document_version,
|
2706
|
+
:external_parameters,
|
2659
2707
|
:must_succeed_for_cutover,
|
2660
2708
|
:order,
|
2661
2709
|
:parameters,
|
@@ -2665,30 +2713,6 @@ module Aws::Mgn
|
|
2665
2713
|
include Aws::Structure
|
2666
2714
|
end
|
2667
2715
|
|
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
2716
|
# @!attribute [rw] action_id
|
2693
2717
|
# Template post migration custom action ID.
|
2694
2718
|
# @return [String]
|
@@ -2701,6 +2725,14 @@ module Aws::Mgn
|
|
2701
2725
|
# Template post migration custom action active status.
|
2702
2726
|
# @return [Boolean]
|
2703
2727
|
#
|
2728
|
+
# @!attribute [rw] category
|
2729
|
+
# Template post migration custom action category.
|
2730
|
+
# @return [String]
|
2731
|
+
#
|
2732
|
+
# @!attribute [rw] description
|
2733
|
+
# Template post migration custom action description.
|
2734
|
+
# @return [String]
|
2735
|
+
#
|
2704
2736
|
# @!attribute [rw] document_identifier
|
2705
2737
|
# Template post migration custom action document identifier.
|
2706
2738
|
# @return [String]
|
@@ -2709,6 +2741,10 @@ module Aws::Mgn
|
|
2709
2741
|
# Template post migration custom action document version.
|
2710
2742
|
# @return [String]
|
2711
2743
|
#
|
2744
|
+
# @!attribute [rw] external_parameters
|
2745
|
+
# Template post migration custom action external parameters.
|
2746
|
+
# @return [Hash<String,Types::SsmExternalParameter>]
|
2747
|
+
#
|
2712
2748
|
# @!attribute [rw] launch_configuration_template_id
|
2713
2749
|
# Launch configuration template ID.
|
2714
2750
|
# @return [String]
|
@@ -2740,8 +2776,11 @@ module Aws::Mgn
|
|
2740
2776
|
:action_id,
|
2741
2777
|
:action_name,
|
2742
2778
|
:active,
|
2779
|
+
:category,
|
2780
|
+
:description,
|
2743
2781
|
:document_identifier,
|
2744
2782
|
:document_version,
|
2783
|
+
:external_parameters,
|
2745
2784
|
:launch_configuration_template_id,
|
2746
2785
|
:must_succeed_for_cutover,
|
2747
2786
|
:operating_system,
|
@@ -2752,14 +2791,6 @@ module Aws::Mgn
|
|
2752
2791
|
include Aws::Structure
|
2753
2792
|
end
|
2754
2793
|
|
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
2794
|
# @!attribute [rw] action_id
|
2764
2795
|
# Source server post migration custom action ID to remove.
|
2765
2796
|
# @return [String]
|
@@ -2781,14 +2812,6 @@ module Aws::Mgn
|
|
2781
2812
|
#
|
2782
2813
|
class RemoveSourceServerActionResponse < Aws::EmptyStructure; end
|
2783
2814
|
|
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
2815
|
# @!attribute [rw] action_id
|
2793
2816
|
# Template post migration custom action ID to remove.
|
2794
2817
|
# @return [String]
|
@@ -2896,17 +2919,6 @@ module Aws::Mgn
|
|
2896
2919
|
|
2897
2920
|
# Replication Configuration replicated disk.
|
2898
2921
|
#
|
2899
|
-
# @note When making an API call, you may pass ReplicationConfigurationReplicatedDisk
|
2900
|
-
# data as a hash:
|
2901
|
-
#
|
2902
|
-
# {
|
2903
|
-
# device_name: "BoundedString",
|
2904
|
-
# iops: 1,
|
2905
|
-
# is_boot_disk: false,
|
2906
|
-
# staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD, GP3, IO2
|
2907
|
-
# throughput: 1,
|
2908
|
-
# }
|
2909
|
-
#
|
2910
2922
|
# @!attribute [rw] device_name
|
2911
2923
|
# Replication Configuration replicated disk device name.
|
2912
2924
|
# @return [String]
|
@@ -3050,13 +3062,6 @@ module Aws::Mgn
|
|
3050
3062
|
include Aws::Structure
|
3051
3063
|
end
|
3052
3064
|
|
3053
|
-
# @note When making an API call, you may pass RetryDataReplicationRequest
|
3054
|
-
# data as a hash:
|
3055
|
-
#
|
3056
|
-
# {
|
3057
|
-
# source_server_id: "SourceServerID", # required
|
3058
|
-
# }
|
3059
|
-
#
|
3060
3065
|
# @!attribute [rw] source_server_id
|
3061
3066
|
# Retry data replication for Source Server ID.
|
3062
3067
|
# @return [String]
|
@@ -3069,6 +3074,30 @@ module Aws::Mgn
|
|
3069
3074
|
include Aws::Structure
|
3070
3075
|
end
|
3071
3076
|
|
3077
|
+
# S3 bucket source.
|
3078
|
+
#
|
3079
|
+
# @!attribute [rw] s3_bucket
|
3080
|
+
# S3 bucket source s3 bucket.
|
3081
|
+
# @return [String]
|
3082
|
+
#
|
3083
|
+
# @!attribute [rw] s3_bucket_owner
|
3084
|
+
# S3 bucket source s3 bucket owner.
|
3085
|
+
# @return [String]
|
3086
|
+
#
|
3087
|
+
# @!attribute [rw] s3_key
|
3088
|
+
# S3 bucket source s3 key.
|
3089
|
+
# @return [String]
|
3090
|
+
#
|
3091
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/S3BucketSource AWS API Documentation
|
3092
|
+
#
|
3093
|
+
class S3BucketSource < Struct.new(
|
3094
|
+
:s3_bucket,
|
3095
|
+
:s3_bucket_owner,
|
3096
|
+
:s3_key)
|
3097
|
+
SENSITIVE = []
|
3098
|
+
include Aws::Structure
|
3099
|
+
end
|
3100
|
+
|
3072
3101
|
# The request could not be completed because its exceeded the service
|
3073
3102
|
# quota.
|
3074
3103
|
#
|
@@ -3173,6 +3202,10 @@ module Aws::Mgn
|
|
3173
3202
|
# Source server data replication info.
|
3174
3203
|
# @return [Types::DataReplicationInfo]
|
3175
3204
|
#
|
3205
|
+
# @!attribute [rw] fqdn_for_action_framework
|
3206
|
+
# Source server fqdn for action framework.
|
3207
|
+
# @return [String]
|
3208
|
+
#
|
3176
3209
|
# @!attribute [rw] is_archived
|
3177
3210
|
# Source server archived status.
|
3178
3211
|
# @return [Boolean]
|
@@ -3201,6 +3234,10 @@ module Aws::Mgn
|
|
3201
3234
|
# Source server Tags.
|
3202
3235
|
# @return [Hash<String,String>]
|
3203
3236
|
#
|
3237
|
+
# @!attribute [rw] user_provided_id
|
3238
|
+
# Source server user provided ID.
|
3239
|
+
# @return [String]
|
3240
|
+
#
|
3204
3241
|
# @!attribute [rw] vcenter_client_id
|
3205
3242
|
# Source server vCenter client id.
|
3206
3243
|
# @return [String]
|
@@ -3211,6 +3248,7 @@ module Aws::Mgn
|
|
3211
3248
|
:application_id,
|
3212
3249
|
:arn,
|
3213
3250
|
:data_replication_info,
|
3251
|
+
:fqdn_for_action_framework,
|
3214
3252
|
:is_archived,
|
3215
3253
|
:launched_instance,
|
3216
3254
|
:life_cycle,
|
@@ -3218,6 +3256,7 @@ module Aws::Mgn
|
|
3218
3256
|
:source_properties,
|
3219
3257
|
:source_server_id,
|
3220
3258
|
:tags,
|
3259
|
+
:user_provided_id,
|
3221
3260
|
:vcenter_client_id)
|
3222
3261
|
SENSITIVE = [:tags]
|
3223
3262
|
include Aws::Structure
|
@@ -3235,6 +3274,14 @@ module Aws::Mgn
|
|
3235
3274
|
# Source server post migration custom action active status.
|
3236
3275
|
# @return [Boolean]
|
3237
3276
|
#
|
3277
|
+
# @!attribute [rw] category
|
3278
|
+
# Source server post migration custom action category.
|
3279
|
+
# @return [String]
|
3280
|
+
#
|
3281
|
+
# @!attribute [rw] description
|
3282
|
+
# Source server post migration custom action description.
|
3283
|
+
# @return [String]
|
3284
|
+
#
|
3238
3285
|
# @!attribute [rw] document_identifier
|
3239
3286
|
# Source server post migration custom action document identifier.
|
3240
3287
|
# @return [String]
|
@@ -3243,6 +3290,10 @@ module Aws::Mgn
|
|
3243
3290
|
# Source server post migration custom action document version.
|
3244
3291
|
# @return [String]
|
3245
3292
|
#
|
3293
|
+
# @!attribute [rw] external_parameters
|
3294
|
+
# Source server post migration custom action external parameters.
|
3295
|
+
# @return [Hash<String,Types::SsmExternalParameter>]
|
3296
|
+
#
|
3246
3297
|
# @!attribute [rw] must_succeed_for_cutover
|
3247
3298
|
# Source server post migration custom action must succeed for cutover.
|
3248
3299
|
# @return [Boolean]
|
@@ -3265,8 +3316,11 @@ module Aws::Mgn
|
|
3265
3316
|
:action_id,
|
3266
3317
|
:action_name,
|
3267
3318
|
:active,
|
3319
|
+
:category,
|
3320
|
+
:description,
|
3268
3321
|
:document_identifier,
|
3269
3322
|
:document_version,
|
3323
|
+
:external_parameters,
|
3270
3324
|
:must_succeed_for_cutover,
|
3271
3325
|
:order,
|
3272
3326
|
:parameters,
|
@@ -3277,13 +3331,6 @@ module Aws::Mgn
|
|
3277
3331
|
|
3278
3332
|
# Source server post migration custom action filters.
|
3279
3333
|
#
|
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
3334
|
# @!attribute [rw] action_i_ds
|
3288
3335
|
# Action IDs to filter source server post migration custom actions by.
|
3289
3336
|
# @return [Array<String>]
|
@@ -3298,28 +3345,14 @@ module Aws::Mgn
|
|
3298
3345
|
|
3299
3346
|
# AWS Systems Manager Document.
|
3300
3347
|
#
|
3301
|
-
# @note When making an API call, you may pass SsmDocument
|
3302
|
-
# data as a hash:
|
3303
|
-
#
|
3304
|
-
# {
|
3305
|
-
# action_name: "BoundedString", # required
|
3306
|
-
# must_succeed_for_cutover: false,
|
3307
|
-
# parameters: {
|
3308
|
-
# "SsmDocumentParameterName" => [
|
3309
|
-
# {
|
3310
|
-
# parameter_name: "SsmParameterStoreParameterName", # required
|
3311
|
-
# parameter_type: "STRING", # required, accepts STRING
|
3312
|
-
# },
|
3313
|
-
# ],
|
3314
|
-
# },
|
3315
|
-
# ssm_document_name: "SsmDocumentName", # required
|
3316
|
-
# timeout_seconds: 1,
|
3317
|
-
# }
|
3318
|
-
#
|
3319
3348
|
# @!attribute [rw] action_name
|
3320
3349
|
# User-friendly name for the AWS Systems Manager Document.
|
3321
3350
|
# @return [String]
|
3322
3351
|
#
|
3352
|
+
# @!attribute [rw] external_parameters
|
3353
|
+
# AWS Systems Manager Document external parameters.
|
3354
|
+
# @return [Hash<String,Types::SsmExternalParameter>]
|
3355
|
+
#
|
3323
3356
|
# @!attribute [rw] must_succeed_for_cutover
|
3324
3357
|
# If true, Cutover will not be enabled if the document has failed.
|
3325
3358
|
# @return [Boolean]
|
@@ -3340,6 +3373,7 @@ module Aws::Mgn
|
|
3340
3373
|
#
|
3341
3374
|
class SsmDocument < Struct.new(
|
3342
3375
|
:action_name,
|
3376
|
+
:external_parameters,
|
3343
3377
|
:must_succeed_for_cutover,
|
3344
3378
|
:parameters,
|
3345
3379
|
:ssm_document_name,
|
@@ -3348,15 +3382,30 @@ module Aws::Mgn
|
|
3348
3382
|
include Aws::Structure
|
3349
3383
|
end
|
3350
3384
|
|
3351
|
-
# AWS Systems Manager
|
3385
|
+
# AWS Systems Manager Document external parameter.
|
3352
3386
|
#
|
3353
|
-
# @note
|
3354
|
-
# data as a hash:
|
3387
|
+
# @note SsmExternalParameter is a union - when making an API calls you must set exactly one of the members.
|
3355
3388
|
#
|
3356
|
-
#
|
3357
|
-
#
|
3358
|
-
#
|
3359
|
-
#
|
3389
|
+
# @note SsmExternalParameter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SsmExternalParameter corresponding to the set member.
|
3390
|
+
#
|
3391
|
+
# @!attribute [rw] dynamic_path
|
3392
|
+
# AWS Systems Manager Document external parameters dynamic path.
|
3393
|
+
# @return [String]
|
3394
|
+
#
|
3395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/SsmExternalParameter AWS API Documentation
|
3396
|
+
#
|
3397
|
+
class SsmExternalParameter < Struct.new(
|
3398
|
+
:dynamic_path,
|
3399
|
+
:unknown)
|
3400
|
+
SENSITIVE = []
|
3401
|
+
include Aws::Structure
|
3402
|
+
include Aws::Structure::Union
|
3403
|
+
|
3404
|
+
class DynamicPath < SsmExternalParameter; end
|
3405
|
+
class Unknown < SsmExternalParameter; end
|
3406
|
+
end
|
3407
|
+
|
3408
|
+
# AWS Systems Manager Parameter Store parameter.
|
3360
3409
|
#
|
3361
3410
|
# @!attribute [rw] parameter_name
|
3362
3411
|
# AWS Systems Manager Parameter Store parameter name.
|
@@ -3375,16 +3424,6 @@ module Aws::Mgn
|
|
3375
3424
|
include Aws::Structure
|
3376
3425
|
end
|
3377
3426
|
|
3378
|
-
# @note When making an API call, you may pass StartCutoverRequest
|
3379
|
-
# data as a hash:
|
3380
|
-
#
|
3381
|
-
# {
|
3382
|
-
# source_server_i_ds: ["SourceServerID"], # required
|
3383
|
-
# tags: {
|
3384
|
-
# "TagKey" => "TagValue",
|
3385
|
-
# },
|
3386
|
-
# }
|
3387
|
-
#
|
3388
3427
|
# @!attribute [rw] source_server_i_ds
|
3389
3428
|
# Start Cutover by Source Server IDs.
|
3390
3429
|
# @return [Array<String>]
|
@@ -3414,13 +3453,80 @@ module Aws::Mgn
|
|
3414
3453
|
include Aws::Structure
|
3415
3454
|
end
|
3416
3455
|
|
3417
|
-
#
|
3418
|
-
#
|
3456
|
+
# Start export request.
|
3457
|
+
#
|
3458
|
+
# @!attribute [rw] s3_bucket
|
3459
|
+
# Start export request s3 bucket.
|
3460
|
+
# @return [String]
|
3461
|
+
#
|
3462
|
+
# @!attribute [rw] s3_bucket_owner
|
3463
|
+
# Start export request s3 bucket owner.
|
3464
|
+
# @return [String]
|
3465
|
+
#
|
3466
|
+
# @!attribute [rw] s3_key
|
3467
|
+
# Start export request s3key.
|
3468
|
+
# @return [String]
|
3469
|
+
#
|
3470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartExportRequest AWS API Documentation
|
3471
|
+
#
|
3472
|
+
class StartExportRequest < Struct.new(
|
3473
|
+
:s3_bucket,
|
3474
|
+
:s3_bucket_owner,
|
3475
|
+
:s3_key)
|
3476
|
+
SENSITIVE = []
|
3477
|
+
include Aws::Structure
|
3478
|
+
end
|
3479
|
+
|
3480
|
+
# Start export response.
|
3481
|
+
#
|
3482
|
+
# @!attribute [rw] export_task
|
3483
|
+
# Start export response export task.
|
3484
|
+
# @return [Types::ExportTask]
|
3485
|
+
#
|
3486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartExportResponse AWS API Documentation
|
3487
|
+
#
|
3488
|
+
class StartExportResponse < Struct.new(
|
3489
|
+
:export_task)
|
3490
|
+
SENSITIVE = []
|
3491
|
+
include Aws::Structure
|
3492
|
+
end
|
3493
|
+
|
3494
|
+
# Start import request.
|
3419
3495
|
#
|
3420
|
-
#
|
3421
|
-
#
|
3422
|
-
# }
|
3496
|
+
# @!attribute [rw] client_token
|
3497
|
+
# Start import request client token.
|
3423
3498
|
#
|
3499
|
+
# **A suitable default value is auto-generated.** You should normally
|
3500
|
+
# not need to pass this option.
|
3501
|
+
# @return [String]
|
3502
|
+
#
|
3503
|
+
# @!attribute [rw] s3_bucket_source
|
3504
|
+
# Start import request s3 bucket source.
|
3505
|
+
# @return [Types::S3BucketSource]
|
3506
|
+
#
|
3507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartImportRequest AWS API Documentation
|
3508
|
+
#
|
3509
|
+
class StartImportRequest < Struct.new(
|
3510
|
+
:client_token,
|
3511
|
+
:s3_bucket_source)
|
3512
|
+
SENSITIVE = []
|
3513
|
+
include Aws::Structure
|
3514
|
+
end
|
3515
|
+
|
3516
|
+
# Start import response.
|
3517
|
+
#
|
3518
|
+
# @!attribute [rw] import_task
|
3519
|
+
# Start import response import task.
|
3520
|
+
# @return [Types::ImportTask]
|
3521
|
+
#
|
3522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartImportResponse AWS API Documentation
|
3523
|
+
#
|
3524
|
+
class StartImportResponse < Struct.new(
|
3525
|
+
:import_task)
|
3526
|
+
SENSITIVE = []
|
3527
|
+
include Aws::Structure
|
3528
|
+
end
|
3529
|
+
|
3424
3530
|
# @!attribute [rw] source_server_id
|
3425
3531
|
# ID of source server on which to start replication.
|
3426
3532
|
# @return [String]
|
@@ -3433,16 +3539,6 @@ module Aws::Mgn
|
|
3433
3539
|
include Aws::Structure
|
3434
3540
|
end
|
3435
3541
|
|
3436
|
-
# @note When making an API call, you may pass StartTestRequest
|
3437
|
-
# data as a hash:
|
3438
|
-
#
|
3439
|
-
# {
|
3440
|
-
# source_server_i_ds: ["SourceServerID"], # required
|
3441
|
-
# tags: {
|
3442
|
-
# "TagKey" => "TagValue",
|
3443
|
-
# },
|
3444
|
-
# }
|
3445
|
-
#
|
3446
3542
|
# @!attribute [rw] source_server_i_ds
|
3447
3543
|
# Start Test for Source Server IDs.
|
3448
3544
|
# @return [Array<String>]
|
@@ -3472,16 +3568,6 @@ module Aws::Mgn
|
|
3472
3568
|
include Aws::Structure
|
3473
3569
|
end
|
3474
3570
|
|
3475
|
-
# @note When making an API call, you may pass TagResourceRequest
|
3476
|
-
# data as a hash:
|
3477
|
-
#
|
3478
|
-
# {
|
3479
|
-
# resource_arn: "ARN", # required
|
3480
|
-
# tags: { # required
|
3481
|
-
# "TagKey" => "TagValue",
|
3482
|
-
# },
|
3483
|
-
# }
|
3484
|
-
#
|
3485
3571
|
# @!attribute [rw] resource_arn
|
3486
3572
|
# Tag resource by ARN.
|
3487
3573
|
# @return [String]
|
@@ -3511,6 +3597,14 @@ module Aws::Mgn
|
|
3511
3597
|
# Template post migration custom action active status.
|
3512
3598
|
# @return [Boolean]
|
3513
3599
|
#
|
3600
|
+
# @!attribute [rw] category
|
3601
|
+
# Template post migration custom action category.
|
3602
|
+
# @return [String]
|
3603
|
+
#
|
3604
|
+
# @!attribute [rw] description
|
3605
|
+
# Template post migration custom action description.
|
3606
|
+
# @return [String]
|
3607
|
+
#
|
3514
3608
|
# @!attribute [rw] document_identifier
|
3515
3609
|
# Template post migration custom action document identifier.
|
3516
3610
|
# @return [String]
|
@@ -3519,6 +3613,10 @@ module Aws::Mgn
|
|
3519
3613
|
# Template post migration custom action document version.
|
3520
3614
|
# @return [String]
|
3521
3615
|
#
|
3616
|
+
# @!attribute [rw] external_parameters
|
3617
|
+
# Template post migration custom action external parameters.
|
3618
|
+
# @return [Hash<String,Types::SsmExternalParameter>]
|
3619
|
+
#
|
3522
3620
|
# @!attribute [rw] must_succeed_for_cutover
|
3523
3621
|
# Template post migration custom action must succeed for cutover.
|
3524
3622
|
# @return [Boolean]
|
@@ -3546,8 +3644,11 @@ module Aws::Mgn
|
|
3546
3644
|
:action_id,
|
3547
3645
|
:action_name,
|
3548
3646
|
:active,
|
3647
|
+
:category,
|
3648
|
+
:description,
|
3549
3649
|
:document_identifier,
|
3550
3650
|
:document_version,
|
3651
|
+
:external_parameters,
|
3551
3652
|
:must_succeed_for_cutover,
|
3552
3653
|
:operating_system,
|
3553
3654
|
:order,
|
@@ -3559,13 +3660,6 @@ module Aws::Mgn
|
|
3559
3660
|
|
3560
3661
|
# Template post migration custom action filters.
|
3561
3662
|
#
|
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
3663
|
# @!attribute [rw] action_i_ds
|
3570
3664
|
# Action IDs to filter template post migration custom actions by.
|
3571
3665
|
# @return [Array<String>]
|
@@ -3578,16 +3672,6 @@ module Aws::Mgn
|
|
3578
3672
|
include Aws::Structure
|
3579
3673
|
end
|
3580
3674
|
|
3581
|
-
# @note When making an API call, you may pass TerminateTargetInstancesRequest
|
3582
|
-
# data as a hash:
|
3583
|
-
#
|
3584
|
-
# {
|
3585
|
-
# source_server_i_ds: ["SourceServerID"], # required
|
3586
|
-
# tags: {
|
3587
|
-
# "TagKey" => "TagValue",
|
3588
|
-
# },
|
3589
|
-
# }
|
3590
|
-
#
|
3591
3675
|
# @!attribute [rw] source_server_i_ds
|
3592
3676
|
# Terminate Target instance by Source Server IDs.
|
3593
3677
|
# @return [Array<String>]
|
@@ -3645,13 +3729,6 @@ module Aws::Mgn
|
|
3645
3729
|
include Aws::Structure
|
3646
3730
|
end
|
3647
3731
|
|
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
3732
|
# @!attribute [rw] application_id
|
3656
3733
|
# Application ID.
|
3657
3734
|
# @return [String]
|
@@ -3664,13 +3741,6 @@ module Aws::Mgn
|
|
3664
3741
|
include Aws::Structure
|
3665
3742
|
end
|
3666
3743
|
|
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
3744
|
# @!attribute [rw] wave_id
|
3675
3745
|
# Wave ID.
|
3676
3746
|
# @return [String]
|
@@ -3700,14 +3770,6 @@ module Aws::Mgn
|
|
3700
3770
|
include Aws::Structure
|
3701
3771
|
end
|
3702
3772
|
|
3703
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
3704
|
-
# data as a hash:
|
3705
|
-
#
|
3706
|
-
# {
|
3707
|
-
# resource_arn: "ARN", # required
|
3708
|
-
# tag_keys: ["TagKey"], # required
|
3709
|
-
# }
|
3710
|
-
#
|
3711
3773
|
# @!attribute [rw] resource_arn
|
3712
3774
|
# Untag resource by ARN.
|
3713
3775
|
# @return [String]
|
@@ -3725,15 +3787,6 @@ module Aws::Mgn
|
|
3725
3787
|
include Aws::Structure
|
3726
3788
|
end
|
3727
3789
|
|
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
3790
|
# @!attribute [rw] application_id
|
3738
3791
|
# Application ID.
|
3739
3792
|
# @return [String]
|
@@ -3756,46 +3809,6 @@ module Aws::Mgn
|
|
3756
3809
|
include Aws::Structure
|
3757
3810
|
end
|
3758
3811
|
|
3759
|
-
# @note When making an API call, you may pass UpdateLaunchConfigurationRequest
|
3760
|
-
# data as a hash:
|
3761
|
-
#
|
3762
|
-
# {
|
3763
|
-
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
3764
|
-
# copy_private_ip: false,
|
3765
|
-
# copy_tags: false,
|
3766
|
-
# enable_map_auto_tagging: false,
|
3767
|
-
# launch_disposition: "STOPPED", # accepts STOPPED, STARTED
|
3768
|
-
# licensing: {
|
3769
|
-
# os_byol: false,
|
3770
|
-
# },
|
3771
|
-
# map_auto_tagging_mpe_id: "TagValue",
|
3772
|
-
# name: "SmallBoundedString",
|
3773
|
-
# post_launch_actions: {
|
3774
|
-
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
3775
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY, TEST_ONLY
|
3776
|
-
# s3_log_bucket: "S3LogBucketName",
|
3777
|
-
# s3_output_key_prefix: "BoundedString",
|
3778
|
-
# ssm_documents: [
|
3779
|
-
# {
|
3780
|
-
# action_name: "BoundedString", # required
|
3781
|
-
# must_succeed_for_cutover: false,
|
3782
|
-
# parameters: {
|
3783
|
-
# "SsmDocumentParameterName" => [
|
3784
|
-
# {
|
3785
|
-
# parameter_name: "SsmParameterStoreParameterName", # required
|
3786
|
-
# parameter_type: "STRING", # required, accepts STRING
|
3787
|
-
# },
|
3788
|
-
# ],
|
3789
|
-
# },
|
3790
|
-
# ssm_document_name: "SsmDocumentName", # required
|
3791
|
-
# timeout_seconds: 1,
|
3792
|
-
# },
|
3793
|
-
# ],
|
3794
|
-
# },
|
3795
|
-
# source_server_id: "SourceServerID", # required
|
3796
|
-
# target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
|
3797
|
-
# }
|
3798
|
-
#
|
3799
3812
|
# @!attribute [rw] boot_mode
|
3800
3813
|
# Update Launch configuration boot mode request.
|
3801
3814
|
# @return [String]
|
@@ -3858,57 +3871,6 @@ module Aws::Mgn
|
|
3858
3871
|
include Aws::Structure
|
3859
3872
|
end
|
3860
3873
|
|
3861
|
-
# @note When making an API call, you may pass UpdateLaunchConfigurationTemplateRequest
|
3862
|
-
# data as a hash:
|
3863
|
-
#
|
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
|
-
# },
|
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",
|
3881
|
-
# post_launch_actions: {
|
3882
|
-
# cloud_watch_log_group_name: "CloudWatchLogGroupName",
|
3883
|
-
# deployment: "TEST_AND_CUTOVER", # accepts TEST_AND_CUTOVER, CUTOVER_ONLY, TEST_ONLY
|
3884
|
-
# s3_log_bucket: "S3LogBucketName",
|
3885
|
-
# s3_output_key_prefix: "BoundedString",
|
3886
|
-
# ssm_documents: [
|
3887
|
-
# {
|
3888
|
-
# action_name: "BoundedString", # required
|
3889
|
-
# must_succeed_for_cutover: false,
|
3890
|
-
# parameters: {
|
3891
|
-
# "SsmDocumentParameterName" => [
|
3892
|
-
# {
|
3893
|
-
# parameter_name: "SsmParameterStoreParameterName", # required
|
3894
|
-
# parameter_type: "STRING", # required, accepts STRING
|
3895
|
-
# },
|
3896
|
-
# ],
|
3897
|
-
# },
|
3898
|
-
# ssm_document_name: "SsmDocumentName", # required
|
3899
|
-
# timeout_seconds: 1,
|
3900
|
-
# },
|
3901
|
-
# ],
|
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
|
3910
|
-
# }
|
3911
|
-
#
|
3912
3874
|
# @!attribute [rw] associate_public_ip_address
|
3913
3875
|
# Associate public Ip address.
|
3914
3876
|
# @return [Boolean]
|
@@ -3986,37 +3948,6 @@ module Aws::Mgn
|
|
3986
3948
|
include Aws::Structure
|
3987
3949
|
end
|
3988
3950
|
|
3989
|
-
# @note When making an API call, you may pass UpdateReplicationConfigurationRequest
|
3990
|
-
# data as a hash:
|
3991
|
-
#
|
3992
|
-
# {
|
3993
|
-
# associate_default_security_group: false,
|
3994
|
-
# bandwidth_throttling: 1,
|
3995
|
-
# create_public_ip: false,
|
3996
|
-
# data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
|
3997
|
-
# default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
|
3998
|
-
# ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
|
3999
|
-
# ebs_encryption_key_arn: "ARN",
|
4000
|
-
# name: "SmallBoundedString",
|
4001
|
-
# replicated_disks: [
|
4002
|
-
# {
|
4003
|
-
# device_name: "BoundedString",
|
4004
|
-
# iops: 1,
|
4005
|
-
# is_boot_disk: false,
|
4006
|
-
# staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD, GP3, IO2
|
4007
|
-
# throughput: 1,
|
4008
|
-
# },
|
4009
|
-
# ],
|
4010
|
-
# replication_server_instance_type: "EC2InstanceType",
|
4011
|
-
# replication_servers_security_groups_i_ds: ["SecurityGroupID"],
|
4012
|
-
# source_server_id: "SourceServerID", # required
|
4013
|
-
# staging_area_subnet_id: "SubnetID",
|
4014
|
-
# staging_area_tags: {
|
4015
|
-
# "TagKey" => "TagValue",
|
4016
|
-
# },
|
4017
|
-
# use_dedicated_replication_server: false,
|
4018
|
-
# }
|
4019
|
-
#
|
4020
3951
|
# @!attribute [rw] associate_default_security_group
|
4021
3952
|
# Update replication configuration associate default Application
|
4022
3953
|
# Migration Service Security group request.
|
@@ -4104,28 +4035,6 @@ module Aws::Mgn
|
|
4104
4035
|
include Aws::Structure
|
4105
4036
|
end
|
4106
4037
|
|
4107
|
-
# @note When making an API call, you may pass UpdateReplicationConfigurationTemplateRequest
|
4108
|
-
# data as a hash:
|
4109
|
-
#
|
4110
|
-
# {
|
4111
|
-
# arn: "ARN",
|
4112
|
-
# associate_default_security_group: false,
|
4113
|
-
# bandwidth_throttling: 1,
|
4114
|
-
# create_public_ip: false,
|
4115
|
-
# data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
|
4116
|
-
# default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
|
4117
|
-
# ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
|
4118
|
-
# ebs_encryption_key_arn: "ARN",
|
4119
|
-
# replication_configuration_template_id: "ReplicationConfigurationTemplateID", # required
|
4120
|
-
# replication_server_instance_type: "EC2InstanceType",
|
4121
|
-
# replication_servers_security_groups_i_ds: ["SecurityGroupID"],
|
4122
|
-
# staging_area_subnet_id: "SubnetID",
|
4123
|
-
# staging_area_tags: {
|
4124
|
-
# "TagKey" => "TagValue",
|
4125
|
-
# },
|
4126
|
-
# use_dedicated_replication_server: false,
|
4127
|
-
# }
|
4128
|
-
#
|
4129
4038
|
# @!attribute [rw] arn
|
4130
4039
|
# Update replication configuration template ARN request.
|
4131
4040
|
# @return [String]
|
@@ -4212,14 +4121,6 @@ module Aws::Mgn
|
|
4212
4121
|
include Aws::Structure
|
4213
4122
|
end
|
4214
4123
|
|
4215
|
-
# @note When making an API call, you may pass UpdateSourceServerReplicationTypeRequest
|
4216
|
-
# data as a hash:
|
4217
|
-
#
|
4218
|
-
# {
|
4219
|
-
# replication_type: "AGENT_BASED", # required, accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
4220
|
-
# source_server_id: "SourceServerID", # required
|
4221
|
-
# }
|
4222
|
-
#
|
4223
4124
|
# @!attribute [rw] replication_type
|
4224
4125
|
# Replication type to which to update source server.
|
4225
4126
|
# @return [String]
|
@@ -4237,15 +4138,6 @@ module Aws::Mgn
|
|
4237
4138
|
include Aws::Structure
|
4238
4139
|
end
|
4239
4140
|
|
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
4141
|
# @!attribute [rw] description
|
4250
4142
|
# Wave description.
|
4251
4143
|
# @return [String]
|