aws-sdk-mgn 1.21.0 → 1.22.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 +532 -1
- data/lib/aws-sdk-mgn/client_api.rb +141 -7
- data/lib/aws-sdk-mgn/endpoints.rb +56 -0
- data/lib/aws-sdk-mgn/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-mgn/types.rb +330 -5
- data/lib/aws-sdk-mgn.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-mgn/client.rb
CHANGED
@@ -375,6 +375,9 @@ module Aws::Mgn
|
|
375
375
|
|
376
376
|
# Archive application.
|
377
377
|
#
|
378
|
+
# @option params [String] :account_id
|
379
|
+
# Account ID.
|
380
|
+
#
|
378
381
|
# @option params [required, String] :application_id
|
379
382
|
# Application ID.
|
380
383
|
#
|
@@ -394,6 +397,7 @@ module Aws::Mgn
|
|
394
397
|
# @example Request syntax with placeholder values
|
395
398
|
#
|
396
399
|
# resp = client.archive_application({
|
400
|
+
# account_id: "AccountID",
|
397
401
|
# application_id: "ApplicationID", # required
|
398
402
|
# })
|
399
403
|
#
|
@@ -425,6 +429,9 @@ module Aws::Mgn
|
|
425
429
|
|
426
430
|
# Archive wave.
|
427
431
|
#
|
432
|
+
# @option params [String] :account_id
|
433
|
+
# Account ID.
|
434
|
+
#
|
428
435
|
# @option params [required, String] :wave_id
|
429
436
|
# Wave ID.
|
430
437
|
#
|
@@ -443,6 +450,7 @@ module Aws::Mgn
|
|
443
450
|
# @example Request syntax with placeholder values
|
444
451
|
#
|
445
452
|
# resp = client.archive_wave({
|
453
|
+
# account_id: "AccountID",
|
446
454
|
# wave_id: "WaveID", # required
|
447
455
|
# })
|
448
456
|
#
|
@@ -474,6 +482,9 @@ module Aws::Mgn
|
|
474
482
|
|
475
483
|
# Associate applications to wave.
|
476
484
|
#
|
485
|
+
# @option params [String] :account_id
|
486
|
+
# Account ID.
|
487
|
+
#
|
477
488
|
# @option params [required, Array<String>] :application_i_ds
|
478
489
|
# Application IDs list.
|
479
490
|
#
|
@@ -485,6 +496,7 @@ module Aws::Mgn
|
|
485
496
|
# @example Request syntax with placeholder values
|
486
497
|
#
|
487
498
|
# resp = client.associate_applications({
|
499
|
+
# account_id: "AccountID",
|
488
500
|
# application_i_ds: ["ApplicationID"], # required
|
489
501
|
# wave_id: "WaveID", # required
|
490
502
|
# })
|
@@ -500,6 +512,9 @@ module Aws::Mgn
|
|
500
512
|
|
501
513
|
# Associate source servers to application.
|
502
514
|
#
|
515
|
+
# @option params [String] :account_id
|
516
|
+
# Account ID.
|
517
|
+
#
|
503
518
|
# @option params [required, String] :application_id
|
504
519
|
# Application ID.
|
505
520
|
#
|
@@ -511,6 +526,7 @@ module Aws::Mgn
|
|
511
526
|
# @example Request syntax with placeholder values
|
512
527
|
#
|
513
528
|
# resp = client.associate_source_servers({
|
529
|
+
# account_id: "AccountID",
|
514
530
|
# application_id: "ApplicationID", # required
|
515
531
|
# source_server_i_ds: ["SourceServerID"], # required
|
516
532
|
# })
|
@@ -529,6 +545,9 @@ module Aws::Mgn
|
|
529
545
|
# or READY\_FOR\_CUTOVER. This command only works if the Source Server
|
530
546
|
# is already launchable (dataReplicationInfo.lagDuration is not null.)
|
531
547
|
#
|
548
|
+
# @option params [String] :account_id
|
549
|
+
# The request to change the source server migration account ID.
|
550
|
+
#
|
532
551
|
# @option params [required, Types::ChangeServerLifeCycleStateSourceServerLifecycle] :life_cycle
|
533
552
|
# The request to change the source server migration lifecycle state.
|
534
553
|
#
|
@@ -555,6 +574,7 @@ module Aws::Mgn
|
|
555
574
|
# @example Request syntax with placeholder values
|
556
575
|
#
|
557
576
|
# resp = client.change_server_life_cycle_state({
|
577
|
+
# account_id: "AccountID",
|
558
578
|
# life_cycle: { # required
|
559
579
|
# state: "READY_FOR_TEST", # required, accepts READY_FOR_TEST, READY_FOR_CUTOVER, CUTOVER
|
560
580
|
# },
|
@@ -638,6 +658,9 @@ module Aws::Mgn
|
|
638
658
|
|
639
659
|
# Create application.
|
640
660
|
#
|
661
|
+
# @option params [String] :account_id
|
662
|
+
# Account ID.
|
663
|
+
#
|
641
664
|
# @option params [String] :description
|
642
665
|
# Application description.
|
643
666
|
#
|
@@ -663,6 +686,7 @@ module Aws::Mgn
|
|
663
686
|
# @example Request syntax with placeholder values
|
664
687
|
#
|
665
688
|
# resp = client.create_application({
|
689
|
+
# account_id: "AccountID",
|
666
690
|
# description: "ApplicationDescription",
|
667
691
|
# name: "ApplicationName", # required
|
668
692
|
# tags: {
|
@@ -920,6 +944,10 @@ module Aws::Mgn
|
|
920
944
|
# Request to use Dedicated Replication Servers during Replication
|
921
945
|
# Settings template creation.
|
922
946
|
#
|
947
|
+
# @option params [Boolean] :use_fips_endpoint
|
948
|
+
# Request to use Fips Endpoint during Replication Settings template
|
949
|
+
# creation.
|
950
|
+
#
|
923
951
|
# @return [Types::ReplicationConfigurationTemplate] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
924
952
|
#
|
925
953
|
# * {Types::ReplicationConfigurationTemplate#arn #arn} => String
|
@@ -937,6 +965,7 @@ module Aws::Mgn
|
|
937
965
|
# * {Types::ReplicationConfigurationTemplate#staging_area_tags #staging_area_tags} => Hash<String,String>
|
938
966
|
# * {Types::ReplicationConfigurationTemplate#tags #tags} => Hash<String,String>
|
939
967
|
# * {Types::ReplicationConfigurationTemplate#use_dedicated_replication_server #use_dedicated_replication_server} => Boolean
|
968
|
+
# * {Types::ReplicationConfigurationTemplate#use_fips_endpoint #use_fips_endpoint} => Boolean
|
940
969
|
#
|
941
970
|
# @example Request syntax with placeholder values
|
942
971
|
#
|
@@ -958,6 +987,7 @@ module Aws::Mgn
|
|
958
987
|
# "TagKey" => "TagValue",
|
959
988
|
# },
|
960
989
|
# use_dedicated_replication_server: false, # required
|
990
|
+
# use_fips_endpoint: false,
|
961
991
|
# })
|
962
992
|
#
|
963
993
|
# @example Response structure
|
@@ -980,6 +1010,7 @@ module Aws::Mgn
|
|
980
1010
|
# resp.tags #=> Hash
|
981
1011
|
# resp.tags["TagKey"] #=> String
|
982
1012
|
# resp.use_dedicated_replication_server #=> Boolean
|
1013
|
+
# resp.use_fips_endpoint #=> Boolean
|
983
1014
|
#
|
984
1015
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CreateReplicationConfigurationTemplate AWS API Documentation
|
985
1016
|
#
|
@@ -992,6 +1023,9 @@ module Aws::Mgn
|
|
992
1023
|
|
993
1024
|
# Create wave.
|
994
1025
|
#
|
1026
|
+
# @option params [String] :account_id
|
1027
|
+
# Account ID.
|
1028
|
+
#
|
995
1029
|
# @option params [String] :description
|
996
1030
|
# Wave description.
|
997
1031
|
#
|
@@ -1016,6 +1050,7 @@ module Aws::Mgn
|
|
1016
1050
|
# @example Request syntax with placeholder values
|
1017
1051
|
#
|
1018
1052
|
# resp = client.create_wave({
|
1053
|
+
# account_id: "AccountID",
|
1019
1054
|
# description: "WaveDescription",
|
1020
1055
|
# name: "WaveName", # required
|
1021
1056
|
# tags: {
|
@@ -1051,6 +1086,9 @@ module Aws::Mgn
|
|
1051
1086
|
|
1052
1087
|
# Delete application.
|
1053
1088
|
#
|
1089
|
+
# @option params [String] :account_id
|
1090
|
+
# Account ID.
|
1091
|
+
#
|
1054
1092
|
# @option params [required, String] :application_id
|
1055
1093
|
# Application ID.
|
1056
1094
|
#
|
@@ -1059,6 +1097,7 @@ module Aws::Mgn
|
|
1059
1097
|
# @example Request syntax with placeholder values
|
1060
1098
|
#
|
1061
1099
|
# resp = client.delete_application({
|
1100
|
+
# account_id: "AccountID",
|
1062
1101
|
# application_id: "ApplicationID", # required
|
1063
1102
|
# })
|
1064
1103
|
#
|
@@ -1073,6 +1112,9 @@ module Aws::Mgn
|
|
1073
1112
|
|
1074
1113
|
# Deletes a single Job by ID.
|
1075
1114
|
#
|
1115
|
+
# @option params [String] :account_id
|
1116
|
+
# Request to delete Job from service by Account ID.
|
1117
|
+
#
|
1076
1118
|
# @option params [required, String] :job_id
|
1077
1119
|
# Request to delete Job from service by Job ID.
|
1078
1120
|
#
|
@@ -1081,6 +1123,7 @@ module Aws::Mgn
|
|
1081
1123
|
# @example Request syntax with placeholder values
|
1082
1124
|
#
|
1083
1125
|
# resp = client.delete_job({
|
1126
|
+
# account_id: "AccountID",
|
1084
1127
|
# job_id: "JobID", # required
|
1085
1128
|
# })
|
1086
1129
|
#
|
@@ -1140,6 +1183,9 @@ module Aws::Mgn
|
|
1140
1183
|
|
1141
1184
|
# Deletes a single source server by ID.
|
1142
1185
|
#
|
1186
|
+
# @option params [String] :account_id
|
1187
|
+
# Request to delete Source Server from service by Account ID.
|
1188
|
+
#
|
1143
1189
|
# @option params [required, String] :source_server_id
|
1144
1190
|
# Request to delete Source Server from service by Server ID.
|
1145
1191
|
#
|
@@ -1148,6 +1194,7 @@ module Aws::Mgn
|
|
1148
1194
|
# @example Request syntax with placeholder values
|
1149
1195
|
#
|
1150
1196
|
# resp = client.delete_source_server({
|
1197
|
+
# account_id: "AccountID",
|
1151
1198
|
# source_server_id: "SourceServerID", # required
|
1152
1199
|
# })
|
1153
1200
|
#
|
@@ -1184,6 +1231,9 @@ module Aws::Mgn
|
|
1184
1231
|
|
1185
1232
|
# Delete wave.
|
1186
1233
|
#
|
1234
|
+
# @option params [String] :account_id
|
1235
|
+
# Account ID.
|
1236
|
+
#
|
1187
1237
|
# @option params [required, String] :wave_id
|
1188
1238
|
# Wave ID.
|
1189
1239
|
#
|
@@ -1192,6 +1242,7 @@ module Aws::Mgn
|
|
1192
1242
|
# @example Request syntax with placeholder values
|
1193
1243
|
#
|
1194
1244
|
# resp = client.delete_wave({
|
1245
|
+
# account_id: "AccountID",
|
1195
1246
|
# wave_id: "WaveID", # required
|
1196
1247
|
# })
|
1197
1248
|
#
|
@@ -1206,6 +1257,9 @@ module Aws::Mgn
|
|
1206
1257
|
|
1207
1258
|
# Retrieves detailed job log items with paging.
|
1208
1259
|
#
|
1260
|
+
# @option params [String] :account_id
|
1261
|
+
# Request to describe Job log Account ID.
|
1262
|
+
#
|
1209
1263
|
# @option params [required, String] :job_id
|
1210
1264
|
# Request to describe Job log job ID.
|
1211
1265
|
#
|
@@ -1225,6 +1279,7 @@ module Aws::Mgn
|
|
1225
1279
|
# @example Request syntax with placeholder values
|
1226
1280
|
#
|
1227
1281
|
# resp = client.describe_job_log_items({
|
1282
|
+
# account_id: "AccountID",
|
1228
1283
|
# job_id: "JobID", # required
|
1229
1284
|
# max_results: 1,
|
1230
1285
|
# next_token: "PaginationToken",
|
@@ -1258,6 +1313,9 @@ module Aws::Mgn
|
|
1258
1313
|
# which are APIs available only to *Support* and only used in response
|
1259
1314
|
# to relevant support tickets.
|
1260
1315
|
#
|
1316
|
+
# @option params [String] :account_id
|
1317
|
+
# Request to describe job log items by Account ID.
|
1318
|
+
#
|
1261
1319
|
# @option params [Types::DescribeJobsRequestFilters] :filters
|
1262
1320
|
# Request to describe Job log filters.
|
1263
1321
|
#
|
@@ -1277,6 +1335,7 @@ module Aws::Mgn
|
|
1277
1335
|
# @example Request syntax with placeholder values
|
1278
1336
|
#
|
1279
1337
|
# resp = client.describe_jobs({
|
1338
|
+
# account_id: "AccountID",
|
1280
1339
|
# filters: {
|
1281
1340
|
# from_date: "ISO8601DatetimeString",
|
1282
1341
|
# job_i_ds: ["JobID"],
|
@@ -1458,6 +1517,7 @@ module Aws::Mgn
|
|
1458
1517
|
# resp.items[0].tags #=> Hash
|
1459
1518
|
# resp.items[0].tags["TagKey"] #=> String
|
1460
1519
|
# resp.items[0].use_dedicated_replication_server #=> Boolean
|
1520
|
+
# resp.items[0].use_fips_endpoint #=> Boolean
|
1461
1521
|
# resp.next_token #=> String
|
1462
1522
|
#
|
1463
1523
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeReplicationConfigurationTemplates AWS API Documentation
|
@@ -1471,6 +1531,9 @@ module Aws::Mgn
|
|
1471
1531
|
|
1472
1532
|
# Retrieves all SourceServers or multiple SourceServers by ID.
|
1473
1533
|
#
|
1534
|
+
# @option params [String] :account_id
|
1535
|
+
# Request to filter Source Servers list by Accoun ID.
|
1536
|
+
#
|
1474
1537
|
# @option params [Types::DescribeSourceServersRequestFilters] :filters
|
1475
1538
|
# Request to filter Source Servers list.
|
1476
1539
|
#
|
@@ -1490,6 +1553,7 @@ module Aws::Mgn
|
|
1490
1553
|
# @example Request syntax with placeholder values
|
1491
1554
|
#
|
1492
1555
|
# resp = client.describe_source_servers({
|
1556
|
+
# account_id: "AccountID",
|
1493
1557
|
# filters: {
|
1494
1558
|
# application_i_ds: ["ApplicationID"],
|
1495
1559
|
# is_archived: false,
|
@@ -1626,6 +1690,9 @@ module Aws::Mgn
|
|
1626
1690
|
|
1627
1691
|
# Disassociate applications from wave.
|
1628
1692
|
#
|
1693
|
+
# @option params [String] :account_id
|
1694
|
+
# Account ID.
|
1695
|
+
#
|
1629
1696
|
# @option params [required, Array<String>] :application_i_ds
|
1630
1697
|
# Application IDs list.
|
1631
1698
|
#
|
@@ -1637,6 +1704,7 @@ module Aws::Mgn
|
|
1637
1704
|
# @example Request syntax with placeholder values
|
1638
1705
|
#
|
1639
1706
|
# resp = client.disassociate_applications({
|
1707
|
+
# account_id: "AccountID",
|
1640
1708
|
# application_i_ds: ["ApplicationID"], # required
|
1641
1709
|
# wave_id: "WaveID", # required
|
1642
1710
|
# })
|
@@ -1652,6 +1720,9 @@ module Aws::Mgn
|
|
1652
1720
|
|
1653
1721
|
# Disassociate source servers from application.
|
1654
1722
|
#
|
1723
|
+
# @option params [String] :account_id
|
1724
|
+
# Account ID.
|
1725
|
+
#
|
1655
1726
|
# @option params [required, String] :application_id
|
1656
1727
|
# Application ID.
|
1657
1728
|
#
|
@@ -1663,6 +1734,7 @@ module Aws::Mgn
|
|
1663
1734
|
# @example Request syntax with placeholder values
|
1664
1735
|
#
|
1665
1736
|
# resp = client.disassociate_source_servers({
|
1737
|
+
# account_id: "AccountID",
|
1666
1738
|
# application_id: "ApplicationID", # required
|
1667
1739
|
# source_server_i_ds: ["SourceServerID"], # required
|
1668
1740
|
# })
|
@@ -1691,6 +1763,9 @@ module Aws::Mgn
|
|
1691
1763
|
# dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration
|
1692
1764
|
# will be nullified.
|
1693
1765
|
#
|
1766
|
+
# @option params [String] :account_id
|
1767
|
+
# Request to disconnect Source Server from service by Account ID.
|
1768
|
+
#
|
1694
1769
|
# @option params [required, String] :source_server_id
|
1695
1770
|
# Request to disconnect Source Server from service by Server ID.
|
1696
1771
|
#
|
@@ -1713,6 +1788,7 @@ module Aws::Mgn
|
|
1713
1788
|
# @example Request syntax with placeholder values
|
1714
1789
|
#
|
1715
1790
|
# resp = client.disconnect_from_service({
|
1791
|
+
# account_id: "AccountID",
|
1716
1792
|
# source_server_id: "SourceServerID", # required
|
1717
1793
|
# })
|
1718
1794
|
#
|
@@ -1805,6 +1881,9 @@ module Aws::Mgn
|
|
1805
1881
|
# dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration
|
1806
1882
|
# will be nullified.
|
1807
1883
|
#
|
1884
|
+
# @option params [String] :account_id
|
1885
|
+
# Request to finalize Cutover by Source Account ID.
|
1886
|
+
#
|
1808
1887
|
# @option params [required, String] :source_server_id
|
1809
1888
|
# Request to finalize Cutover by Source Server ID.
|
1810
1889
|
#
|
@@ -1827,6 +1906,7 @@ module Aws::Mgn
|
|
1827
1906
|
# @example Request syntax with placeholder values
|
1828
1907
|
#
|
1829
1908
|
# resp = client.finalize_cutover({
|
1909
|
+
# account_id: "AccountID",
|
1830
1910
|
# source_server_id: "SourceServerID", # required
|
1831
1911
|
# })
|
1832
1912
|
#
|
@@ -1908,6 +1988,9 @@ module Aws::Mgn
|
|
1908
1988
|
# Lists all LaunchConfigurations available, filtered by Source Server
|
1909
1989
|
# IDs.
|
1910
1990
|
#
|
1991
|
+
# @option params [String] :account_id
|
1992
|
+
# Request to get Launch Configuration information by Account ID.
|
1993
|
+
#
|
1911
1994
|
# @option params [required, String] :source_server_id
|
1912
1995
|
# Request to get Launch Configuration information by Source Server ID.
|
1913
1996
|
#
|
@@ -1929,6 +2012,7 @@ module Aws::Mgn
|
|
1929
2012
|
# @example Request syntax with placeholder values
|
1930
2013
|
#
|
1931
2014
|
# resp = client.get_launch_configuration({
|
2015
|
+
# account_id: "AccountID",
|
1932
2016
|
# source_server_id: "SourceServerID", # required
|
1933
2017
|
# })
|
1934
2018
|
#
|
@@ -1972,6 +2056,9 @@ module Aws::Mgn
|
|
1972
2056
|
|
1973
2057
|
# Lists all ReplicationConfigurations, filtered by Source Server ID.
|
1974
2058
|
#
|
2059
|
+
# @option params [String] :account_id
|
2060
|
+
# Request to get Replication Configuration by Account ID.
|
2061
|
+
#
|
1975
2062
|
# @option params [required, String] :source_server_id
|
1976
2063
|
# Request to get Replication Configuration by Source Server ID.
|
1977
2064
|
#
|
@@ -1992,10 +2079,12 @@ module Aws::Mgn
|
|
1992
2079
|
# * {Types::ReplicationConfiguration#staging_area_subnet_id #staging_area_subnet_id} => String
|
1993
2080
|
# * {Types::ReplicationConfiguration#staging_area_tags #staging_area_tags} => Hash<String,String>
|
1994
2081
|
# * {Types::ReplicationConfiguration#use_dedicated_replication_server #use_dedicated_replication_server} => Boolean
|
2082
|
+
# * {Types::ReplicationConfiguration#use_fips_endpoint #use_fips_endpoint} => Boolean
|
1995
2083
|
#
|
1996
2084
|
# @example Request syntax with placeholder values
|
1997
2085
|
#
|
1998
2086
|
# resp = client.get_replication_configuration({
|
2087
|
+
# account_id: "AccountID",
|
1999
2088
|
# source_server_id: "SourceServerID", # required
|
2000
2089
|
# })
|
2001
2090
|
#
|
@@ -2023,6 +2112,7 @@ module Aws::Mgn
|
|
2023
2112
|
# resp.staging_area_tags #=> Hash
|
2024
2113
|
# resp.staging_area_tags["TagKey"] #=> String
|
2025
2114
|
# resp.use_dedicated_replication_server #=> Boolean
|
2115
|
+
# resp.use_fips_endpoint #=> Boolean
|
2026
2116
|
#
|
2027
2117
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/GetReplicationConfiguration AWS API Documentation
|
2028
2118
|
#
|
@@ -2048,6 +2138,9 @@ module Aws::Mgn
|
|
2048
2138
|
|
2049
2139
|
# Retrieves all applications or multiple applications by ID.
|
2050
2140
|
#
|
2141
|
+
# @option params [String] :account_id
|
2142
|
+
# Applications list Account ID.
|
2143
|
+
#
|
2051
2144
|
# @option params [Types::ListApplicationsRequestFilters] :filters
|
2052
2145
|
# Applications list filters.
|
2053
2146
|
#
|
@@ -2067,6 +2160,7 @@ module Aws::Mgn
|
|
2067
2160
|
# @example Request syntax with placeholder values
|
2068
2161
|
#
|
2069
2162
|
# resp = client.list_applications({
|
2163
|
+
# account_id: "AccountID",
|
2070
2164
|
# filters: {
|
2071
2165
|
# application_i_ds: ["ApplicationID"],
|
2072
2166
|
# is_archived: false,
|
@@ -2228,6 +2322,7 @@ module Aws::Mgn
|
|
2228
2322
|
# @example Response structure
|
2229
2323
|
#
|
2230
2324
|
# resp.items #=> Array
|
2325
|
+
# resp.items[0].error_data.account_id #=> String
|
2231
2326
|
# resp.items[0].error_data.application_id #=> String
|
2232
2327
|
# resp.items[0].error_data.ec2_launch_template_id #=> String
|
2233
2328
|
# resp.items[0].error_data.raw_error #=> String
|
@@ -2303,8 +2398,49 @@ module Aws::Mgn
|
|
2303
2398
|
req.send_request(options)
|
2304
2399
|
end
|
2305
2400
|
|
2401
|
+
# List Managed Accounts.
|
2402
|
+
#
|
2403
|
+
# @option params [Integer] :max_results
|
2404
|
+
# List managed accounts request max results.
|
2405
|
+
#
|
2406
|
+
# @option params [String] :next_token
|
2407
|
+
# List managed accounts request next token.
|
2408
|
+
#
|
2409
|
+
# @return [Types::ListManagedAccountsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2410
|
+
#
|
2411
|
+
# * {Types::ListManagedAccountsResponse#items #items} => Array<Types::ManagedAccount>
|
2412
|
+
# * {Types::ListManagedAccountsResponse#next_token #next_token} => String
|
2413
|
+
#
|
2414
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2415
|
+
#
|
2416
|
+
# @example Request syntax with placeholder values
|
2417
|
+
#
|
2418
|
+
# resp = client.list_managed_accounts({
|
2419
|
+
# max_results: 1,
|
2420
|
+
# next_token: "PaginationToken",
|
2421
|
+
# })
|
2422
|
+
#
|
2423
|
+
# @example Response structure
|
2424
|
+
#
|
2425
|
+
# resp.items #=> Array
|
2426
|
+
# resp.items[0].account_id #=> String
|
2427
|
+
# resp.next_token #=> String
|
2428
|
+
#
|
2429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListManagedAccounts AWS API Documentation
|
2430
|
+
#
|
2431
|
+
# @overload list_managed_accounts(params = {})
|
2432
|
+
# @param [Hash] params ({})
|
2433
|
+
def list_managed_accounts(params = {}, options = {})
|
2434
|
+
req = build_request(:list_managed_accounts, params)
|
2435
|
+
req.send_request(options)
|
2436
|
+
end
|
2437
|
+
|
2306
2438
|
# List source server post migration custom actions.
|
2307
2439
|
#
|
2440
|
+
# @option params [String] :account_id
|
2441
|
+
# Account ID to return when listing source server post migration custom
|
2442
|
+
# actions.
|
2443
|
+
#
|
2308
2444
|
# @option params [Types::SourceServerActionsRequestFilters] :filters
|
2309
2445
|
# Filters to apply when listing source server post migration custom
|
2310
2446
|
# actions.
|
@@ -2330,6 +2466,7 @@ module Aws::Mgn
|
|
2330
2466
|
# @example Request syntax with placeholder values
|
2331
2467
|
#
|
2332
2468
|
# resp = client.list_source_server_actions({
|
2469
|
+
# account_id: "AccountID",
|
2333
2470
|
# filters: {
|
2334
2471
|
# action_i_ds: ["ActionID"],
|
2335
2472
|
# },
|
@@ -2463,6 +2600,9 @@ module Aws::Mgn
|
|
2463
2600
|
|
2464
2601
|
# Retrieves all waves or multiple waves by ID.
|
2465
2602
|
#
|
2603
|
+
# @option params [String] :account_id
|
2604
|
+
# Request account ID.
|
2605
|
+
#
|
2466
2606
|
# @option params [Types::ListWavesRequestFilters] :filters
|
2467
2607
|
# Waves list filters.
|
2468
2608
|
#
|
@@ -2482,6 +2622,7 @@ module Aws::Mgn
|
|
2482
2622
|
# @example Request syntax with placeholder values
|
2483
2623
|
#
|
2484
2624
|
# resp = client.list_waves({
|
2625
|
+
# account_id: "AccountID",
|
2485
2626
|
# filters: {
|
2486
2627
|
# is_archived: false,
|
2487
2628
|
# wave_i_ds: ["WaveID"],
|
@@ -2523,6 +2664,9 @@ module Aws::Mgn
|
|
2523
2664
|
# by ID. This command only works for SourceServers with a lifecycle.
|
2524
2665
|
# state which equals DISCONNECTED or CUTOVER.
|
2525
2666
|
#
|
2667
|
+
# @option params [String] :account_id
|
2668
|
+
# Mark as archived by Account ID.
|
2669
|
+
#
|
2526
2670
|
# @option params [required, String] :source_server_id
|
2527
2671
|
# Mark as archived by Source Server ID.
|
2528
2672
|
#
|
@@ -2545,6 +2689,7 @@ module Aws::Mgn
|
|
2545
2689
|
# @example Request syntax with placeholder values
|
2546
2690
|
#
|
2547
2691
|
# resp = client.mark_as_archived({
|
2692
|
+
# account_id: "AccountID",
|
2548
2693
|
# source_server_id: "SourceServerID", # required
|
2549
2694
|
# })
|
2550
2695
|
#
|
@@ -2623,8 +2768,117 @@ module Aws::Mgn
|
|
2623
2768
|
req.send_request(options)
|
2624
2769
|
end
|
2625
2770
|
|
2771
|
+
# Pause Replication.
|
2772
|
+
#
|
2773
|
+
# @option params [String] :account_id
|
2774
|
+
# Pause Replication Request account ID.
|
2775
|
+
#
|
2776
|
+
# @option params [required, String] :source_server_id
|
2777
|
+
# Pause Replication Request source server ID.
|
2778
|
+
#
|
2779
|
+
# @return [Types::SourceServer] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2780
|
+
#
|
2781
|
+
# * {Types::SourceServer#application_id #application_id} => String
|
2782
|
+
# * {Types::SourceServer#arn #arn} => String
|
2783
|
+
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
2784
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
2785
|
+
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
2786
|
+
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
2787
|
+
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
2788
|
+
# * {Types::SourceServer#replication_type #replication_type} => String
|
2789
|
+
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
2790
|
+
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
2791
|
+
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
2792
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
2793
|
+
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
2794
|
+
#
|
2795
|
+
# @example Request syntax with placeholder values
|
2796
|
+
#
|
2797
|
+
# resp = client.pause_replication({
|
2798
|
+
# account_id: "AccountID",
|
2799
|
+
# source_server_id: "SourceServerID", # required
|
2800
|
+
# })
|
2801
|
+
#
|
2802
|
+
# @example Response structure
|
2803
|
+
#
|
2804
|
+
# resp.application_id #=> String
|
2805
|
+
# resp.arn #=> String
|
2806
|
+
# resp.data_replication_info.data_replication_error.error #=> String, one of "AGENT_NOT_SEEN", "SNAPSHOTS_FAILURE", "NOT_CONVERGING", "UNSTABLE_NETWORK", "FAILED_TO_CREATE_SECURITY_GROUP", "FAILED_TO_LAUNCH_REPLICATION_SERVER", "FAILED_TO_BOOT_REPLICATION_SERVER", "FAILED_TO_AUTHENTICATE_WITH_SERVICE", "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE", "FAILED_TO_CREATE_STAGING_DISKS", "FAILED_TO_ATTACH_STAGING_DISKS", "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT", "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER", "FAILED_TO_START_DATA_TRANSFER", "UNSUPPORTED_VM_CONFIGURATION", "LAST_SNAPSHOT_JOB_FAILED"
|
2807
|
+
# resp.data_replication_info.data_replication_error.raw_error #=> String
|
2808
|
+
# resp.data_replication_info.data_replication_initiation.next_attempt_date_time #=> String
|
2809
|
+
# resp.data_replication_info.data_replication_initiation.start_date_time #=> String
|
2810
|
+
# resp.data_replication_info.data_replication_initiation.steps #=> Array
|
2811
|
+
# resp.data_replication_info.data_replication_initiation.steps[0].name #=> String, one of "WAIT", "CREATE_SECURITY_GROUP", "LAUNCH_REPLICATION_SERVER", "BOOT_REPLICATION_SERVER", "AUTHENTICATE_WITH_SERVICE", "DOWNLOAD_REPLICATION_SOFTWARE", "CREATE_STAGING_DISKS", "ATTACH_STAGING_DISKS", "PAIR_REPLICATION_SERVER_WITH_AGENT", "CONNECT_AGENT_TO_REPLICATION_SERVER", "START_DATA_TRANSFER"
|
2812
|
+
# resp.data_replication_info.data_replication_initiation.steps[0].status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "SUCCEEDED", "FAILED", "SKIPPED"
|
2813
|
+
# resp.data_replication_info.data_replication_state #=> String, one of "STOPPED", "INITIATING", "INITIAL_SYNC", "BACKLOG", "CREATING_SNAPSHOT", "CONTINUOUS", "PAUSED", "RESCAN", "STALLED", "DISCONNECTED", "PENDING_SNAPSHOT_SHIPPING", "SHIPPING_SNAPSHOT"
|
2814
|
+
# resp.data_replication_info.eta_date_time #=> String
|
2815
|
+
# resp.data_replication_info.lag_duration #=> String
|
2816
|
+
# resp.data_replication_info.last_snapshot_date_time #=> String
|
2817
|
+
# resp.data_replication_info.replicated_disks #=> Array
|
2818
|
+
# resp.data_replication_info.replicated_disks[0].backlogged_storage_bytes #=> Integer
|
2819
|
+
# resp.data_replication_info.replicated_disks[0].device_name #=> String
|
2820
|
+
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
2821
|
+
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
2822
|
+
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
2823
|
+
# resp.fqdn_for_action_framework #=> String
|
2824
|
+
# resp.is_archived #=> Boolean
|
2825
|
+
# resp.launched_instance.ec2_instance_id #=> String
|
2826
|
+
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
2827
|
+
# resp.launched_instance.job_id #=> String
|
2828
|
+
# resp.life_cycle.added_to_service_date_time #=> String
|
2829
|
+
# resp.life_cycle.elapsed_replication_duration #=> String
|
2830
|
+
# resp.life_cycle.first_byte_date_time #=> String
|
2831
|
+
# resp.life_cycle.last_cutover.finalized.api_call_date_time #=> String
|
2832
|
+
# resp.life_cycle.last_cutover.initiated.api_call_date_time #=> String
|
2833
|
+
# resp.life_cycle.last_cutover.initiated.job_id #=> String
|
2834
|
+
# resp.life_cycle.last_cutover.reverted.api_call_date_time #=> String
|
2835
|
+
# resp.life_cycle.last_seen_by_service_date_time #=> String
|
2836
|
+
# resp.life_cycle.last_test.finalized.api_call_date_time #=> String
|
2837
|
+
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
2838
|
+
# resp.life_cycle.last_test.initiated.job_id #=> String
|
2839
|
+
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
2840
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
2841
|
+
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
2842
|
+
# resp.source_properties.cpus #=> Array
|
2843
|
+
# resp.source_properties.cpus[0].cores #=> Integer
|
2844
|
+
# resp.source_properties.cpus[0].model_name #=> String
|
2845
|
+
# resp.source_properties.disks #=> Array
|
2846
|
+
# resp.source_properties.disks[0].bytes #=> Integer
|
2847
|
+
# resp.source_properties.disks[0].device_name #=> String
|
2848
|
+
# resp.source_properties.identification_hints.aws_instance_id #=> String
|
2849
|
+
# resp.source_properties.identification_hints.fqdn #=> String
|
2850
|
+
# resp.source_properties.identification_hints.hostname #=> String
|
2851
|
+
# resp.source_properties.identification_hints.vm_path #=> String
|
2852
|
+
# resp.source_properties.identification_hints.vm_ware_uuid #=> String
|
2853
|
+
# resp.source_properties.last_updated_date_time #=> String
|
2854
|
+
# resp.source_properties.network_interfaces #=> Array
|
2855
|
+
# resp.source_properties.network_interfaces[0].ips #=> Array
|
2856
|
+
# resp.source_properties.network_interfaces[0].ips[0] #=> String
|
2857
|
+
# resp.source_properties.network_interfaces[0].is_primary #=> Boolean
|
2858
|
+
# resp.source_properties.network_interfaces[0].mac_address #=> String
|
2859
|
+
# resp.source_properties.os.full_string #=> String
|
2860
|
+
# resp.source_properties.ram_bytes #=> Integer
|
2861
|
+
# resp.source_properties.recommended_instance_type #=> String
|
2862
|
+
# resp.source_server_id #=> String
|
2863
|
+
# resp.tags #=> Hash
|
2864
|
+
# resp.tags["TagKey"] #=> String
|
2865
|
+
# resp.user_provided_id #=> String
|
2866
|
+
# resp.vcenter_client_id #=> String
|
2867
|
+
#
|
2868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/PauseReplication AWS API Documentation
|
2869
|
+
#
|
2870
|
+
# @overload pause_replication(params = {})
|
2871
|
+
# @param [Hash] params ({})
|
2872
|
+
def pause_replication(params = {}, options = {})
|
2873
|
+
req = build_request(:pause_replication, params)
|
2874
|
+
req.send_request(options)
|
2875
|
+
end
|
2876
|
+
|
2626
2877
|
# Put source server post migration custom action.
|
2627
2878
|
#
|
2879
|
+
# @option params [String] :account_id
|
2880
|
+
# Source server post migration custom account ID.
|
2881
|
+
#
|
2628
2882
|
# @option params [required, String] :action_id
|
2629
2883
|
# Source server post migration custom action ID.
|
2630
2884
|
#
|
@@ -2682,6 +2936,7 @@ module Aws::Mgn
|
|
2682
2936
|
# @example Request syntax with placeholder values
|
2683
2937
|
#
|
2684
2938
|
# resp = client.put_source_server_action({
|
2939
|
+
# account_id: "AccountID",
|
2685
2940
|
# action_id: "ActionID", # required
|
2686
2941
|
# action_name: "ActionName", # required
|
2687
2942
|
# active: false,
|
@@ -2858,6 +3113,9 @@ module Aws::Mgn
|
|
2858
3113
|
|
2859
3114
|
# Remove source server post migration custom action.
|
2860
3115
|
#
|
3116
|
+
# @option params [String] :account_id
|
3117
|
+
# Source server post migration account ID.
|
3118
|
+
#
|
2861
3119
|
# @option params [required, String] :action_id
|
2862
3120
|
# Source server post migration custom action ID to remove.
|
2863
3121
|
#
|
@@ -2869,6 +3127,7 @@ module Aws::Mgn
|
|
2869
3127
|
# @example Request syntax with placeholder values
|
2870
3128
|
#
|
2871
3129
|
# resp = client.remove_source_server_action({
|
3130
|
+
# account_id: "AccountID",
|
2872
3131
|
# action_id: "ActionID", # required
|
2873
3132
|
# source_server_id: "SourceServerID", # required
|
2874
3133
|
# })
|
@@ -2909,11 +3168,120 @@ module Aws::Mgn
|
|
2909
3168
|
req.send_request(options)
|
2910
3169
|
end
|
2911
3170
|
|
3171
|
+
# Resume Replication.
|
3172
|
+
#
|
3173
|
+
# @option params [String] :account_id
|
3174
|
+
# Resume Replication Request account ID.
|
3175
|
+
#
|
3176
|
+
# @option params [required, String] :source_server_id
|
3177
|
+
# Resume Replication Request source server ID.
|
3178
|
+
#
|
3179
|
+
# @return [Types::SourceServer] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3180
|
+
#
|
3181
|
+
# * {Types::SourceServer#application_id #application_id} => String
|
3182
|
+
# * {Types::SourceServer#arn #arn} => String
|
3183
|
+
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
3184
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
3185
|
+
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
3186
|
+
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
3187
|
+
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
3188
|
+
# * {Types::SourceServer#replication_type #replication_type} => String
|
3189
|
+
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
3190
|
+
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
3191
|
+
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
3192
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
3193
|
+
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
3194
|
+
#
|
3195
|
+
# @example Request syntax with placeholder values
|
3196
|
+
#
|
3197
|
+
# resp = client.resume_replication({
|
3198
|
+
# account_id: "AccountID",
|
3199
|
+
# source_server_id: "SourceServerID", # required
|
3200
|
+
# })
|
3201
|
+
#
|
3202
|
+
# @example Response structure
|
3203
|
+
#
|
3204
|
+
# resp.application_id #=> String
|
3205
|
+
# resp.arn #=> String
|
3206
|
+
# resp.data_replication_info.data_replication_error.error #=> String, one of "AGENT_NOT_SEEN", "SNAPSHOTS_FAILURE", "NOT_CONVERGING", "UNSTABLE_NETWORK", "FAILED_TO_CREATE_SECURITY_GROUP", "FAILED_TO_LAUNCH_REPLICATION_SERVER", "FAILED_TO_BOOT_REPLICATION_SERVER", "FAILED_TO_AUTHENTICATE_WITH_SERVICE", "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE", "FAILED_TO_CREATE_STAGING_DISKS", "FAILED_TO_ATTACH_STAGING_DISKS", "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT", "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER", "FAILED_TO_START_DATA_TRANSFER", "UNSUPPORTED_VM_CONFIGURATION", "LAST_SNAPSHOT_JOB_FAILED"
|
3207
|
+
# resp.data_replication_info.data_replication_error.raw_error #=> String
|
3208
|
+
# resp.data_replication_info.data_replication_initiation.next_attempt_date_time #=> String
|
3209
|
+
# resp.data_replication_info.data_replication_initiation.start_date_time #=> String
|
3210
|
+
# resp.data_replication_info.data_replication_initiation.steps #=> Array
|
3211
|
+
# resp.data_replication_info.data_replication_initiation.steps[0].name #=> String, one of "WAIT", "CREATE_SECURITY_GROUP", "LAUNCH_REPLICATION_SERVER", "BOOT_REPLICATION_SERVER", "AUTHENTICATE_WITH_SERVICE", "DOWNLOAD_REPLICATION_SOFTWARE", "CREATE_STAGING_DISKS", "ATTACH_STAGING_DISKS", "PAIR_REPLICATION_SERVER_WITH_AGENT", "CONNECT_AGENT_TO_REPLICATION_SERVER", "START_DATA_TRANSFER"
|
3212
|
+
# resp.data_replication_info.data_replication_initiation.steps[0].status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "SUCCEEDED", "FAILED", "SKIPPED"
|
3213
|
+
# resp.data_replication_info.data_replication_state #=> String, one of "STOPPED", "INITIATING", "INITIAL_SYNC", "BACKLOG", "CREATING_SNAPSHOT", "CONTINUOUS", "PAUSED", "RESCAN", "STALLED", "DISCONNECTED", "PENDING_SNAPSHOT_SHIPPING", "SHIPPING_SNAPSHOT"
|
3214
|
+
# resp.data_replication_info.eta_date_time #=> String
|
3215
|
+
# resp.data_replication_info.lag_duration #=> String
|
3216
|
+
# resp.data_replication_info.last_snapshot_date_time #=> String
|
3217
|
+
# resp.data_replication_info.replicated_disks #=> Array
|
3218
|
+
# resp.data_replication_info.replicated_disks[0].backlogged_storage_bytes #=> Integer
|
3219
|
+
# resp.data_replication_info.replicated_disks[0].device_name #=> String
|
3220
|
+
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
3221
|
+
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
3222
|
+
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
3223
|
+
# resp.fqdn_for_action_framework #=> String
|
3224
|
+
# resp.is_archived #=> Boolean
|
3225
|
+
# resp.launched_instance.ec2_instance_id #=> String
|
3226
|
+
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
3227
|
+
# resp.launched_instance.job_id #=> String
|
3228
|
+
# resp.life_cycle.added_to_service_date_time #=> String
|
3229
|
+
# resp.life_cycle.elapsed_replication_duration #=> String
|
3230
|
+
# resp.life_cycle.first_byte_date_time #=> String
|
3231
|
+
# resp.life_cycle.last_cutover.finalized.api_call_date_time #=> String
|
3232
|
+
# resp.life_cycle.last_cutover.initiated.api_call_date_time #=> String
|
3233
|
+
# resp.life_cycle.last_cutover.initiated.job_id #=> String
|
3234
|
+
# resp.life_cycle.last_cutover.reverted.api_call_date_time #=> String
|
3235
|
+
# resp.life_cycle.last_seen_by_service_date_time #=> String
|
3236
|
+
# resp.life_cycle.last_test.finalized.api_call_date_time #=> String
|
3237
|
+
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
3238
|
+
# resp.life_cycle.last_test.initiated.job_id #=> String
|
3239
|
+
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
3240
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
3241
|
+
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
3242
|
+
# resp.source_properties.cpus #=> Array
|
3243
|
+
# resp.source_properties.cpus[0].cores #=> Integer
|
3244
|
+
# resp.source_properties.cpus[0].model_name #=> String
|
3245
|
+
# resp.source_properties.disks #=> Array
|
3246
|
+
# resp.source_properties.disks[0].bytes #=> Integer
|
3247
|
+
# resp.source_properties.disks[0].device_name #=> String
|
3248
|
+
# resp.source_properties.identification_hints.aws_instance_id #=> String
|
3249
|
+
# resp.source_properties.identification_hints.fqdn #=> String
|
3250
|
+
# resp.source_properties.identification_hints.hostname #=> String
|
3251
|
+
# resp.source_properties.identification_hints.vm_path #=> String
|
3252
|
+
# resp.source_properties.identification_hints.vm_ware_uuid #=> String
|
3253
|
+
# resp.source_properties.last_updated_date_time #=> String
|
3254
|
+
# resp.source_properties.network_interfaces #=> Array
|
3255
|
+
# resp.source_properties.network_interfaces[0].ips #=> Array
|
3256
|
+
# resp.source_properties.network_interfaces[0].ips[0] #=> String
|
3257
|
+
# resp.source_properties.network_interfaces[0].is_primary #=> Boolean
|
3258
|
+
# resp.source_properties.network_interfaces[0].mac_address #=> String
|
3259
|
+
# resp.source_properties.os.full_string #=> String
|
3260
|
+
# resp.source_properties.ram_bytes #=> Integer
|
3261
|
+
# resp.source_properties.recommended_instance_type #=> String
|
3262
|
+
# resp.source_server_id #=> String
|
3263
|
+
# resp.tags #=> Hash
|
3264
|
+
# resp.tags["TagKey"] #=> String
|
3265
|
+
# resp.user_provided_id #=> String
|
3266
|
+
# resp.vcenter_client_id #=> String
|
3267
|
+
#
|
3268
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ResumeReplication AWS API Documentation
|
3269
|
+
#
|
3270
|
+
# @overload resume_replication(params = {})
|
3271
|
+
# @param [Hash] params ({})
|
3272
|
+
def resume_replication(params = {}, options = {})
|
3273
|
+
req = build_request(:resume_replication, params)
|
3274
|
+
req.send_request(options)
|
3275
|
+
end
|
3276
|
+
|
2912
3277
|
# Causes the data replication initiation sequence to begin immediately
|
2913
3278
|
# upon next Handshake for specified SourceServer IDs, regardless of when
|
2914
3279
|
# the previous initiation started. This command will not work if the
|
2915
3280
|
# SourceServer is not stalled or is in a DISCONNECTED or STOPPED state.
|
2916
3281
|
#
|
3282
|
+
# @option params [String] :account_id
|
3283
|
+
# Retry data replication for Account ID.
|
3284
|
+
#
|
2917
3285
|
# @option params [required, String] :source_server_id
|
2918
3286
|
# Retry data replication for Source Server ID.
|
2919
3287
|
#
|
@@ -2936,6 +3304,7 @@ module Aws::Mgn
|
|
2936
3304
|
# @example Request syntax with placeholder values
|
2937
3305
|
#
|
2938
3306
|
# resp = client.retry_data_replication({
|
3307
|
+
# account_id: "AccountID",
|
2939
3308
|
# source_server_id: "SourceServerID", # required
|
2940
3309
|
# })
|
2941
3310
|
#
|
@@ -3018,6 +3387,9 @@ module Aws::Mgn
|
|
3018
3387
|
# starts a LAUNCH job whose initiatedBy property is StartCutover and
|
3019
3388
|
# changes the SourceServer.lifeCycle.state property to CUTTING\_OVER.
|
3020
3389
|
#
|
3390
|
+
# @option params [String] :account_id
|
3391
|
+
# Start Cutover by Account IDs
|
3392
|
+
#
|
3021
3393
|
# @option params [required, Array<String>] :source_server_i_ds
|
3022
3394
|
# Start Cutover by Source Server IDs.
|
3023
3395
|
#
|
@@ -3031,6 +3403,7 @@ module Aws::Mgn
|
|
3031
3403
|
# @example Request syntax with placeholder values
|
3032
3404
|
#
|
3033
3405
|
# resp = client.start_cutover({
|
3406
|
+
# account_id: "AccountID",
|
3034
3407
|
# source_server_i_ds: ["SourceServerID"], # required
|
3035
3408
|
# tags: {
|
3036
3409
|
# "TagKey" => "TagValue",
|
@@ -3178,6 +3551,9 @@ module Aws::Mgn
|
|
3178
3551
|
|
3179
3552
|
# Starts replication for SNAPSHOT\_SHIPPING agents.
|
3180
3553
|
#
|
3554
|
+
# @option params [String] :account_id
|
3555
|
+
# Account ID on which to start replication.
|
3556
|
+
#
|
3181
3557
|
# @option params [required, String] :source_server_id
|
3182
3558
|
# ID of source server on which to start replication.
|
3183
3559
|
#
|
@@ -3200,6 +3576,7 @@ module Aws::Mgn
|
|
3200
3576
|
# @example Request syntax with placeholder values
|
3201
3577
|
#
|
3202
3578
|
# resp = client.start_replication({
|
3579
|
+
# account_id: "AccountID",
|
3203
3580
|
# source_server_id: "SourceServerID", # required
|
3204
3581
|
# })
|
3205
3582
|
#
|
@@ -3282,6 +3659,9 @@ module Aws::Mgn
|
|
3282
3659
|
# starts a LAUNCH job whose initiatedBy property is StartTest and
|
3283
3660
|
# changes the SourceServer.lifeCycle.state property to TESTING.
|
3284
3661
|
#
|
3662
|
+
# @option params [String] :account_id
|
3663
|
+
# Start Test for Account ID.
|
3664
|
+
#
|
3285
3665
|
# @option params [required, Array<String>] :source_server_i_ds
|
3286
3666
|
# Start Test for Source Server IDs.
|
3287
3667
|
#
|
@@ -3295,6 +3675,7 @@ module Aws::Mgn
|
|
3295
3675
|
# @example Request syntax with placeholder values
|
3296
3676
|
#
|
3297
3677
|
# resp = client.start_test({
|
3678
|
+
# account_id: "AccountID",
|
3298
3679
|
# source_server_i_ds: ["SourceServerID"], # required
|
3299
3680
|
# tags: {
|
3300
3681
|
# "TagKey" => "TagValue",
|
@@ -3342,6 +3723,112 @@ module Aws::Mgn
|
|
3342
3723
|
req.send_request(options)
|
3343
3724
|
end
|
3344
3725
|
|
3726
|
+
# Stop Replication.
|
3727
|
+
#
|
3728
|
+
# @option params [String] :account_id
|
3729
|
+
# Stop Replication Request account ID.
|
3730
|
+
#
|
3731
|
+
# @option params [required, String] :source_server_id
|
3732
|
+
# Stop Replication Request source server ID.
|
3733
|
+
#
|
3734
|
+
# @return [Types::SourceServer] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3735
|
+
#
|
3736
|
+
# * {Types::SourceServer#application_id #application_id} => String
|
3737
|
+
# * {Types::SourceServer#arn #arn} => String
|
3738
|
+
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
3739
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
3740
|
+
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
3741
|
+
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
3742
|
+
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
3743
|
+
# * {Types::SourceServer#replication_type #replication_type} => String
|
3744
|
+
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
3745
|
+
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
3746
|
+
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
3747
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
3748
|
+
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
3749
|
+
#
|
3750
|
+
# @example Request syntax with placeholder values
|
3751
|
+
#
|
3752
|
+
# resp = client.stop_replication({
|
3753
|
+
# account_id: "AccountID",
|
3754
|
+
# source_server_id: "SourceServerID", # required
|
3755
|
+
# })
|
3756
|
+
#
|
3757
|
+
# @example Response structure
|
3758
|
+
#
|
3759
|
+
# resp.application_id #=> String
|
3760
|
+
# resp.arn #=> String
|
3761
|
+
# resp.data_replication_info.data_replication_error.error #=> String, one of "AGENT_NOT_SEEN", "SNAPSHOTS_FAILURE", "NOT_CONVERGING", "UNSTABLE_NETWORK", "FAILED_TO_CREATE_SECURITY_GROUP", "FAILED_TO_LAUNCH_REPLICATION_SERVER", "FAILED_TO_BOOT_REPLICATION_SERVER", "FAILED_TO_AUTHENTICATE_WITH_SERVICE", "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE", "FAILED_TO_CREATE_STAGING_DISKS", "FAILED_TO_ATTACH_STAGING_DISKS", "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT", "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER", "FAILED_TO_START_DATA_TRANSFER", "UNSUPPORTED_VM_CONFIGURATION", "LAST_SNAPSHOT_JOB_FAILED"
|
3762
|
+
# resp.data_replication_info.data_replication_error.raw_error #=> String
|
3763
|
+
# resp.data_replication_info.data_replication_initiation.next_attempt_date_time #=> String
|
3764
|
+
# resp.data_replication_info.data_replication_initiation.start_date_time #=> String
|
3765
|
+
# resp.data_replication_info.data_replication_initiation.steps #=> Array
|
3766
|
+
# resp.data_replication_info.data_replication_initiation.steps[0].name #=> String, one of "WAIT", "CREATE_SECURITY_GROUP", "LAUNCH_REPLICATION_SERVER", "BOOT_REPLICATION_SERVER", "AUTHENTICATE_WITH_SERVICE", "DOWNLOAD_REPLICATION_SOFTWARE", "CREATE_STAGING_DISKS", "ATTACH_STAGING_DISKS", "PAIR_REPLICATION_SERVER_WITH_AGENT", "CONNECT_AGENT_TO_REPLICATION_SERVER", "START_DATA_TRANSFER"
|
3767
|
+
# resp.data_replication_info.data_replication_initiation.steps[0].status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "SUCCEEDED", "FAILED", "SKIPPED"
|
3768
|
+
# resp.data_replication_info.data_replication_state #=> String, one of "STOPPED", "INITIATING", "INITIAL_SYNC", "BACKLOG", "CREATING_SNAPSHOT", "CONTINUOUS", "PAUSED", "RESCAN", "STALLED", "DISCONNECTED", "PENDING_SNAPSHOT_SHIPPING", "SHIPPING_SNAPSHOT"
|
3769
|
+
# resp.data_replication_info.eta_date_time #=> String
|
3770
|
+
# resp.data_replication_info.lag_duration #=> String
|
3771
|
+
# resp.data_replication_info.last_snapshot_date_time #=> String
|
3772
|
+
# resp.data_replication_info.replicated_disks #=> Array
|
3773
|
+
# resp.data_replication_info.replicated_disks[0].backlogged_storage_bytes #=> Integer
|
3774
|
+
# resp.data_replication_info.replicated_disks[0].device_name #=> String
|
3775
|
+
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
3776
|
+
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
3777
|
+
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
3778
|
+
# resp.fqdn_for_action_framework #=> String
|
3779
|
+
# resp.is_archived #=> Boolean
|
3780
|
+
# resp.launched_instance.ec2_instance_id #=> String
|
3781
|
+
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
3782
|
+
# resp.launched_instance.job_id #=> String
|
3783
|
+
# resp.life_cycle.added_to_service_date_time #=> String
|
3784
|
+
# resp.life_cycle.elapsed_replication_duration #=> String
|
3785
|
+
# resp.life_cycle.first_byte_date_time #=> String
|
3786
|
+
# resp.life_cycle.last_cutover.finalized.api_call_date_time #=> String
|
3787
|
+
# resp.life_cycle.last_cutover.initiated.api_call_date_time #=> String
|
3788
|
+
# resp.life_cycle.last_cutover.initiated.job_id #=> String
|
3789
|
+
# resp.life_cycle.last_cutover.reverted.api_call_date_time #=> String
|
3790
|
+
# resp.life_cycle.last_seen_by_service_date_time #=> String
|
3791
|
+
# resp.life_cycle.last_test.finalized.api_call_date_time #=> String
|
3792
|
+
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
3793
|
+
# resp.life_cycle.last_test.initiated.job_id #=> String
|
3794
|
+
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
3795
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
3796
|
+
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
3797
|
+
# resp.source_properties.cpus #=> Array
|
3798
|
+
# resp.source_properties.cpus[0].cores #=> Integer
|
3799
|
+
# resp.source_properties.cpus[0].model_name #=> String
|
3800
|
+
# resp.source_properties.disks #=> Array
|
3801
|
+
# resp.source_properties.disks[0].bytes #=> Integer
|
3802
|
+
# resp.source_properties.disks[0].device_name #=> String
|
3803
|
+
# resp.source_properties.identification_hints.aws_instance_id #=> String
|
3804
|
+
# resp.source_properties.identification_hints.fqdn #=> String
|
3805
|
+
# resp.source_properties.identification_hints.hostname #=> String
|
3806
|
+
# resp.source_properties.identification_hints.vm_path #=> String
|
3807
|
+
# resp.source_properties.identification_hints.vm_ware_uuid #=> String
|
3808
|
+
# resp.source_properties.last_updated_date_time #=> String
|
3809
|
+
# resp.source_properties.network_interfaces #=> Array
|
3810
|
+
# resp.source_properties.network_interfaces[0].ips #=> Array
|
3811
|
+
# resp.source_properties.network_interfaces[0].ips[0] #=> String
|
3812
|
+
# resp.source_properties.network_interfaces[0].is_primary #=> Boolean
|
3813
|
+
# resp.source_properties.network_interfaces[0].mac_address #=> String
|
3814
|
+
# resp.source_properties.os.full_string #=> String
|
3815
|
+
# resp.source_properties.ram_bytes #=> Integer
|
3816
|
+
# resp.source_properties.recommended_instance_type #=> String
|
3817
|
+
# resp.source_server_id #=> String
|
3818
|
+
# resp.tags #=> Hash
|
3819
|
+
# resp.tags["TagKey"] #=> String
|
3820
|
+
# resp.user_provided_id #=> String
|
3821
|
+
# resp.vcenter_client_id #=> String
|
3822
|
+
#
|
3823
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StopReplication AWS API Documentation
|
3824
|
+
#
|
3825
|
+
# @overload stop_replication(params = {})
|
3826
|
+
# @param [Hash] params ({})
|
3827
|
+
def stop_replication(params = {}, options = {})
|
3828
|
+
req = build_request(:stop_replication, params)
|
3829
|
+
req.send_request(options)
|
3830
|
+
end
|
3831
|
+
|
3345
3832
|
# Adds or overwrites only the specified tags for the specified
|
3346
3833
|
# Application Migration Service resource or resources. When you specify
|
3347
3834
|
# an existing tag key, the value is overwritten with the new value. Each
|
@@ -3378,6 +3865,9 @@ module Aws::Mgn
|
|
3378
3865
|
# instances. This command will not work for any Source Server with a
|
3379
3866
|
# lifecycle.state of TESTING, CUTTING\_OVER, or CUTOVER.
|
3380
3867
|
#
|
3868
|
+
# @option params [String] :account_id
|
3869
|
+
# Terminate Target instance by Account ID
|
3870
|
+
#
|
3381
3871
|
# @option params [required, Array<String>] :source_server_i_ds
|
3382
3872
|
# Terminate Target instance by Source Server IDs.
|
3383
3873
|
#
|
@@ -3391,6 +3881,7 @@ module Aws::Mgn
|
|
3391
3881
|
# @example Request syntax with placeholder values
|
3392
3882
|
#
|
3393
3883
|
# resp = client.terminate_target_instances({
|
3884
|
+
# account_id: "AccountID",
|
3394
3885
|
# source_server_i_ds: ["SourceServerID"], # required
|
3395
3886
|
# tags: {
|
3396
3887
|
# "TagKey" => "TagValue",
|
@@ -3440,6 +3931,9 @@ module Aws::Mgn
|
|
3440
3931
|
|
3441
3932
|
# Unarchive application.
|
3442
3933
|
#
|
3934
|
+
# @option params [String] :account_id
|
3935
|
+
# Account ID.
|
3936
|
+
#
|
3443
3937
|
# @option params [required, String] :application_id
|
3444
3938
|
# Application ID.
|
3445
3939
|
#
|
@@ -3459,6 +3953,7 @@ module Aws::Mgn
|
|
3459
3953
|
# @example Request syntax with placeholder values
|
3460
3954
|
#
|
3461
3955
|
# resp = client.unarchive_application({
|
3956
|
+
# account_id: "AccountID",
|
3462
3957
|
# application_id: "ApplicationID", # required
|
3463
3958
|
# })
|
3464
3959
|
#
|
@@ -3490,6 +3985,9 @@ module Aws::Mgn
|
|
3490
3985
|
|
3491
3986
|
# Unarchive wave.
|
3492
3987
|
#
|
3988
|
+
# @option params [String] :account_id
|
3989
|
+
# Account ID.
|
3990
|
+
#
|
3493
3991
|
# @option params [required, String] :wave_id
|
3494
3992
|
# Wave ID.
|
3495
3993
|
#
|
@@ -3508,6 +4006,7 @@ module Aws::Mgn
|
|
3508
4006
|
# @example Request syntax with placeholder values
|
3509
4007
|
#
|
3510
4008
|
# resp = client.unarchive_wave({
|
4009
|
+
# account_id: "AccountID",
|
3511
4010
|
# wave_id: "WaveID", # required
|
3512
4011
|
# })
|
3513
4012
|
#
|
@@ -3566,6 +4065,9 @@ module Aws::Mgn
|
|
3566
4065
|
|
3567
4066
|
# Update application.
|
3568
4067
|
#
|
4068
|
+
# @option params [String] :account_id
|
4069
|
+
# Account ID.
|
4070
|
+
#
|
3569
4071
|
# @option params [required, String] :application_id
|
3570
4072
|
# Application ID.
|
3571
4073
|
#
|
@@ -3591,6 +4093,7 @@ module Aws::Mgn
|
|
3591
4093
|
# @example Request syntax with placeholder values
|
3592
4094
|
#
|
3593
4095
|
# resp = client.update_application({
|
4096
|
+
# account_id: "AccountID",
|
3594
4097
|
# application_id: "ApplicationID", # required
|
3595
4098
|
# description: "ApplicationDescription",
|
3596
4099
|
# name: "ApplicationName",
|
@@ -3624,6 +4127,9 @@ module Aws::Mgn
|
|
3624
4127
|
|
3625
4128
|
# Updates multiple LaunchConfigurations by Source Server ID.
|
3626
4129
|
#
|
4130
|
+
# @option params [String] :account_id
|
4131
|
+
# Update Launch configuration Account ID.
|
4132
|
+
#
|
3627
4133
|
# @option params [String] :boot_mode
|
3628
4134
|
# Update Launch configuration boot mode request.
|
3629
4135
|
#
|
@@ -3675,6 +4181,7 @@ module Aws::Mgn
|
|
3675
4181
|
# @example Request syntax with placeholder values
|
3676
4182
|
#
|
3677
4183
|
# resp = client.update_launch_configuration({
|
4184
|
+
# account_id: "AccountID",
|
3678
4185
|
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
3679
4186
|
# copy_private_ip: false,
|
3680
4187
|
# copy_tags: false,
|
@@ -3924,6 +4431,9 @@ module Aws::Mgn
|
|
3924
4431
|
# Allows you to update multiple ReplicationConfigurations by Source
|
3925
4432
|
# Server ID.
|
3926
4433
|
#
|
4434
|
+
# @option params [String] :account_id
|
4435
|
+
# Update replication configuration Account ID request.
|
4436
|
+
#
|
3927
4437
|
# @option params [Boolean] :associate_default_security_group
|
3928
4438
|
# Update replication configuration associate default Application
|
3929
4439
|
# Migration Service Security group request.
|
@@ -3974,6 +4484,9 @@ module Aws::Mgn
|
|
3974
4484
|
# Update replication configuration use dedicated Replication Server
|
3975
4485
|
# request.
|
3976
4486
|
#
|
4487
|
+
# @option params [Boolean] :use_fips_endpoint
|
4488
|
+
# Update replication configuration use Fips Endpoint.
|
4489
|
+
#
|
3977
4490
|
# @return [Types::ReplicationConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3978
4491
|
#
|
3979
4492
|
# * {Types::ReplicationConfiguration#associate_default_security_group #associate_default_security_group} => Boolean
|
@@ -3991,10 +4504,12 @@ module Aws::Mgn
|
|
3991
4504
|
# * {Types::ReplicationConfiguration#staging_area_subnet_id #staging_area_subnet_id} => String
|
3992
4505
|
# * {Types::ReplicationConfiguration#staging_area_tags #staging_area_tags} => Hash<String,String>
|
3993
4506
|
# * {Types::ReplicationConfiguration#use_dedicated_replication_server #use_dedicated_replication_server} => Boolean
|
4507
|
+
# * {Types::ReplicationConfiguration#use_fips_endpoint #use_fips_endpoint} => Boolean
|
3994
4508
|
#
|
3995
4509
|
# @example Request syntax with placeholder values
|
3996
4510
|
#
|
3997
4511
|
# resp = client.update_replication_configuration({
|
4512
|
+
# account_id: "AccountID",
|
3998
4513
|
# associate_default_security_group: false,
|
3999
4514
|
# bandwidth_throttling: 1,
|
4000
4515
|
# create_public_ip: false,
|
@@ -4020,6 +4535,7 @@ module Aws::Mgn
|
|
4020
4535
|
# "TagKey" => "TagValue",
|
4021
4536
|
# },
|
4022
4537
|
# use_dedicated_replication_server: false,
|
4538
|
+
# use_fips_endpoint: false,
|
4023
4539
|
# })
|
4024
4540
|
#
|
4025
4541
|
# @example Response structure
|
@@ -4046,6 +4562,7 @@ module Aws::Mgn
|
|
4046
4562
|
# resp.staging_area_tags #=> Hash
|
4047
4563
|
# resp.staging_area_tags["TagKey"] #=> String
|
4048
4564
|
# resp.use_dedicated_replication_server #=> Boolean
|
4565
|
+
# resp.use_fips_endpoint #=> Boolean
|
4049
4566
|
#
|
4050
4567
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateReplicationConfiguration AWS API Documentation
|
4051
4568
|
#
|
@@ -4108,6 +4625,9 @@ module Aws::Mgn
|
|
4108
4625
|
# Update replication configuration template use dedicated Replication
|
4109
4626
|
# Server request.
|
4110
4627
|
#
|
4628
|
+
# @option params [Boolean] :use_fips_endpoint
|
4629
|
+
# Update replication configuration template use Fips Endpoint request.
|
4630
|
+
#
|
4111
4631
|
# @return [Types::ReplicationConfigurationTemplate] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4112
4632
|
#
|
4113
4633
|
# * {Types::ReplicationConfigurationTemplate#arn #arn} => String
|
@@ -4125,6 +4645,7 @@ module Aws::Mgn
|
|
4125
4645
|
# * {Types::ReplicationConfigurationTemplate#staging_area_tags #staging_area_tags} => Hash<String,String>
|
4126
4646
|
# * {Types::ReplicationConfigurationTemplate#tags #tags} => Hash<String,String>
|
4127
4647
|
# * {Types::ReplicationConfigurationTemplate#use_dedicated_replication_server #use_dedicated_replication_server} => Boolean
|
4648
|
+
# * {Types::ReplicationConfigurationTemplate#use_fips_endpoint #use_fips_endpoint} => Boolean
|
4128
4649
|
#
|
4129
4650
|
# @example Request syntax with placeholder values
|
4130
4651
|
#
|
@@ -4145,6 +4666,7 @@ module Aws::Mgn
|
|
4145
4666
|
# "TagKey" => "TagValue",
|
4146
4667
|
# },
|
4147
4668
|
# use_dedicated_replication_server: false,
|
4669
|
+
# use_fips_endpoint: false,
|
4148
4670
|
# })
|
4149
4671
|
#
|
4150
4672
|
# @example Response structure
|
@@ -4167,6 +4689,7 @@ module Aws::Mgn
|
|
4167
4689
|
# resp.tags #=> Hash
|
4168
4690
|
# resp.tags["TagKey"] #=> String
|
4169
4691
|
# resp.use_dedicated_replication_server #=> Boolean
|
4692
|
+
# resp.use_fips_endpoint #=> Boolean
|
4170
4693
|
#
|
4171
4694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateReplicationConfigurationTemplate AWS API Documentation
|
4172
4695
|
#
|
@@ -4180,6 +4703,9 @@ module Aws::Mgn
|
|
4180
4703
|
# Allows you to change between the AGENT\_BASED replication type and the
|
4181
4704
|
# SNAPSHOT\_SHIPPING replication type.
|
4182
4705
|
#
|
4706
|
+
# @option params [String] :account_id
|
4707
|
+
# Account ID on which to update replication type.
|
4708
|
+
#
|
4183
4709
|
# @option params [required, String] :replication_type
|
4184
4710
|
# Replication type to which to update source server.
|
4185
4711
|
#
|
@@ -4205,6 +4731,7 @@ module Aws::Mgn
|
|
4205
4731
|
# @example Request syntax with placeholder values
|
4206
4732
|
#
|
4207
4733
|
# resp = client.update_source_server_replication_type({
|
4734
|
+
# account_id: "AccountID",
|
4208
4735
|
# replication_type: "AGENT_BASED", # required, accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
4209
4736
|
# source_server_id: "SourceServerID", # required
|
4210
4737
|
# })
|
@@ -4286,6 +4813,9 @@ module Aws::Mgn
|
|
4286
4813
|
|
4287
4814
|
# Update wave.
|
4288
4815
|
#
|
4816
|
+
# @option params [String] :account_id
|
4817
|
+
# Account ID.
|
4818
|
+
#
|
4289
4819
|
# @option params [String] :description
|
4290
4820
|
# Wave description.
|
4291
4821
|
#
|
@@ -4310,6 +4840,7 @@ module Aws::Mgn
|
|
4310
4840
|
# @example Request syntax with placeholder values
|
4311
4841
|
#
|
4312
4842
|
# resp = client.update_wave({
|
4843
|
+
# account_id: "AccountID",
|
4313
4844
|
# description: "WaveDescription",
|
4314
4845
|
# name: "WaveName",
|
4315
4846
|
# wave_id: "WaveID", # required
|
@@ -4354,7 +4885,7 @@ module Aws::Mgn
|
|
4354
4885
|
params: params,
|
4355
4886
|
config: config)
|
4356
4887
|
context[:gem_name] = 'aws-sdk-mgn'
|
4357
|
-
context[:gem_version] = '1.
|
4888
|
+
context[:gem_version] = '1.22.0'
|
4358
4889
|
Seahorse::Client::Request.new(handlers, context)
|
4359
4890
|
end
|
4360
4891
|
|