aws-sdk-mgn 1.17.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 +5 -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 +27 -24
- 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 +695 -0
- data/lib/aws-sdk-mgn.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-mgn/client.rb
CHANGED
@@ -536,6 +536,7 @@ module Aws::Mgn
|
|
536
536
|
# * {Types::SourceServer#application_id #application_id} => String
|
537
537
|
# * {Types::SourceServer#arn #arn} => String
|
538
538
|
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
539
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
539
540
|
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
540
541
|
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
541
542
|
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
@@ -543,6 +544,7 @@ module Aws::Mgn
|
|
543
544
|
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
544
545
|
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
545
546
|
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
547
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
546
548
|
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
547
549
|
#
|
548
550
|
# @example Request syntax with placeholder values
|
@@ -575,6 +577,7 @@ module Aws::Mgn
|
|
575
577
|
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
576
578
|
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
577
579
|
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
580
|
+
# resp.fqdn_for_action_framework #=> String
|
578
581
|
# resp.is_archived #=> Boolean
|
579
582
|
# resp.launched_instance.ec2_instance_id #=> String
|
580
583
|
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
@@ -591,7 +594,7 @@ module Aws::Mgn
|
|
591
594
|
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
592
595
|
# resp.life_cycle.last_test.initiated.job_id #=> String
|
593
596
|
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
594
|
-
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED"
|
597
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
595
598
|
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
596
599
|
# resp.source_properties.cpus #=> Array
|
597
600
|
# resp.source_properties.cpus[0].cores #=> Integer
|
@@ -616,6 +619,7 @@ module Aws::Mgn
|
|
616
619
|
# resp.source_server_id #=> String
|
617
620
|
# resp.tags #=> Hash
|
618
621
|
# resp.tags["TagKey"] #=> String
|
622
|
+
# resp.user_provided_id #=> String
|
619
623
|
# resp.vcenter_client_id #=> String
|
620
624
|
#
|
621
625
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ChangeServerLifeCycleState AWS API Documentation
|
@@ -778,6 +782,11 @@ module Aws::Mgn
|
|
778
782
|
# ssm_documents: [
|
779
783
|
# {
|
780
784
|
# action_name: "BoundedString", # required
|
785
|
+
# external_parameters: {
|
786
|
+
# "SsmDocumentParameterName" => {
|
787
|
+
# dynamic_path: "JmesPathString",
|
788
|
+
# },
|
789
|
+
# },
|
781
790
|
# must_succeed_for_cutover: false,
|
782
791
|
# parameters: {
|
783
792
|
# "SsmDocumentParameterName" => [
|
@@ -826,6 +835,8 @@ module Aws::Mgn
|
|
826
835
|
# resp.post_launch_actions.s3_output_key_prefix #=> String
|
827
836
|
# resp.post_launch_actions.ssm_documents #=> Array
|
828
837
|
# resp.post_launch_actions.ssm_documents[0].action_name #=> String
|
838
|
+
# resp.post_launch_actions.ssm_documents[0].external_parameters #=> Hash
|
839
|
+
# resp.post_launch_actions.ssm_documents[0].external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
829
840
|
# resp.post_launch_actions.ssm_documents[0].must_succeed_for_cutover #=> Boolean
|
830
841
|
# resp.post_launch_actions.ssm_documents[0].parameters #=> Hash
|
831
842
|
# resp.post_launch_actions.ssm_documents[0].parameters["SsmDocumentParameterName"] #=> Array
|
@@ -1286,6 +1297,8 @@ module Aws::Mgn
|
|
1286
1297
|
# resp.items[0].participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].execution_status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED"
|
1287
1298
|
# resp.items[0].participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].failure_reason #=> String
|
1288
1299
|
# resp.items[0].participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.action_name #=> String
|
1300
|
+
# resp.items[0].participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.external_parameters #=> Hash
|
1301
|
+
# resp.items[0].participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
1289
1302
|
# resp.items[0].participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.must_succeed_for_cutover #=> Boolean
|
1290
1303
|
# resp.items[0].participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.parameters #=> Hash
|
1291
1304
|
# resp.items[0].participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.parameters["SsmDocumentParameterName"] #=> Array
|
@@ -1364,6 +1377,8 @@ module Aws::Mgn
|
|
1364
1377
|
# resp.items[0].post_launch_actions.s3_output_key_prefix #=> String
|
1365
1378
|
# resp.items[0].post_launch_actions.ssm_documents #=> Array
|
1366
1379
|
# resp.items[0].post_launch_actions.ssm_documents[0].action_name #=> String
|
1380
|
+
# resp.items[0].post_launch_actions.ssm_documents[0].external_parameters #=> Hash
|
1381
|
+
# resp.items[0].post_launch_actions.ssm_documents[0].external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
1367
1382
|
# resp.items[0].post_launch_actions.ssm_documents[0].must_succeed_for_cutover #=> Boolean
|
1368
1383
|
# resp.items[0].post_launch_actions.ssm_documents[0].parameters #=> Hash
|
1369
1384
|
# resp.items[0].post_launch_actions.ssm_documents[0].parameters["SsmDocumentParameterName"] #=> Array
|
@@ -1473,7 +1488,7 @@ module Aws::Mgn
|
|
1473
1488
|
# filters: {
|
1474
1489
|
# application_i_ds: ["ApplicationID"],
|
1475
1490
|
# is_archived: false,
|
1476
|
-
# life_cycle_states: ["STOPPED"], # accepts STOPPED, NOT_READY, READY_FOR_TEST, TESTING, READY_FOR_CUTOVER, CUTTING_OVER, CUTOVER, DISCONNECTED, DISCOVERED
|
1491
|
+
# life_cycle_states: ["STOPPED"], # accepts STOPPED, NOT_READY, READY_FOR_TEST, TESTING, READY_FOR_CUTOVER, CUTTING_OVER, CUTOVER, DISCONNECTED, DISCOVERED, PENDING_INSTALLATION
|
1477
1492
|
# replication_types: ["AGENT_BASED"], # accepts AGENT_BASED, SNAPSHOT_SHIPPING
|
1478
1493
|
# source_server_i_ds: ["SourceServerID"],
|
1479
1494
|
# },
|
@@ -1503,6 +1518,7 @@ module Aws::Mgn
|
|
1503
1518
|
# resp.items[0].data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
1504
1519
|
# resp.items[0].data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
1505
1520
|
# resp.items[0].data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
1521
|
+
# resp.items[0].fqdn_for_action_framework #=> String
|
1506
1522
|
# resp.items[0].is_archived #=> Boolean
|
1507
1523
|
# resp.items[0].launched_instance.ec2_instance_id #=> String
|
1508
1524
|
# resp.items[0].launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
@@ -1519,7 +1535,7 @@ module Aws::Mgn
|
|
1519
1535
|
# resp.items[0].life_cycle.last_test.initiated.api_call_date_time #=> String
|
1520
1536
|
# resp.items[0].life_cycle.last_test.initiated.job_id #=> String
|
1521
1537
|
# resp.items[0].life_cycle.last_test.reverted.api_call_date_time #=> String
|
1522
|
-
# resp.items[0].life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED"
|
1538
|
+
# resp.items[0].life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
1523
1539
|
# resp.items[0].replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
1524
1540
|
# resp.items[0].source_properties.cpus #=> Array
|
1525
1541
|
# resp.items[0].source_properties.cpus[0].cores #=> Integer
|
@@ -1544,6 +1560,7 @@ module Aws::Mgn
|
|
1544
1560
|
# resp.items[0].source_server_id #=> String
|
1545
1561
|
# resp.items[0].tags #=> Hash
|
1546
1562
|
# resp.items[0].tags["TagKey"] #=> String
|
1563
|
+
# resp.items[0].user_provided_id #=> String
|
1547
1564
|
# resp.items[0].vcenter_client_id #=> String
|
1548
1565
|
# resp.next_token #=> String
|
1549
1566
|
#
|
@@ -1677,6 +1694,7 @@ module Aws::Mgn
|
|
1677
1694
|
# * {Types::SourceServer#application_id #application_id} => String
|
1678
1695
|
# * {Types::SourceServer#arn #arn} => String
|
1679
1696
|
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
1697
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
1680
1698
|
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
1681
1699
|
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
1682
1700
|
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
@@ -1684,6 +1702,7 @@ module Aws::Mgn
|
|
1684
1702
|
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
1685
1703
|
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
1686
1704
|
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
1705
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
1687
1706
|
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
1688
1707
|
#
|
1689
1708
|
# @example Request syntax with placeholder values
|
@@ -1713,6 +1732,7 @@ module Aws::Mgn
|
|
1713
1732
|
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
1714
1733
|
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
1715
1734
|
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
1735
|
+
# resp.fqdn_for_action_framework #=> String
|
1716
1736
|
# resp.is_archived #=> Boolean
|
1717
1737
|
# resp.launched_instance.ec2_instance_id #=> String
|
1718
1738
|
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
@@ -1729,7 +1749,7 @@ module Aws::Mgn
|
|
1729
1749
|
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
1730
1750
|
# resp.life_cycle.last_test.initiated.job_id #=> String
|
1731
1751
|
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
1732
|
-
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED"
|
1752
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
1733
1753
|
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
1734
1754
|
# resp.source_properties.cpus #=> Array
|
1735
1755
|
# resp.source_properties.cpus[0].cores #=> Integer
|
@@ -1754,6 +1774,7 @@ module Aws::Mgn
|
|
1754
1774
|
# resp.source_server_id #=> String
|
1755
1775
|
# resp.tags #=> Hash
|
1756
1776
|
# resp.tags["TagKey"] #=> String
|
1777
|
+
# resp.user_provided_id #=> String
|
1757
1778
|
# resp.vcenter_client_id #=> String
|
1758
1779
|
#
|
1759
1780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DisconnectFromService AWS API Documentation
|
@@ -1787,6 +1808,7 @@ module Aws::Mgn
|
|
1787
1808
|
# * {Types::SourceServer#application_id #application_id} => String
|
1788
1809
|
# * {Types::SourceServer#arn #arn} => String
|
1789
1810
|
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
1811
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
1790
1812
|
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
1791
1813
|
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
1792
1814
|
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
@@ -1794,6 +1816,7 @@ module Aws::Mgn
|
|
1794
1816
|
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
1795
1817
|
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
1796
1818
|
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
1819
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
1797
1820
|
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
1798
1821
|
#
|
1799
1822
|
# @example Request syntax with placeholder values
|
@@ -1823,6 +1846,7 @@ module Aws::Mgn
|
|
1823
1846
|
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
1824
1847
|
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
1825
1848
|
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
1849
|
+
# resp.fqdn_for_action_framework #=> String
|
1826
1850
|
# resp.is_archived #=> Boolean
|
1827
1851
|
# resp.launched_instance.ec2_instance_id #=> String
|
1828
1852
|
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
@@ -1839,7 +1863,7 @@ module Aws::Mgn
|
|
1839
1863
|
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
1840
1864
|
# resp.life_cycle.last_test.initiated.job_id #=> String
|
1841
1865
|
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
1842
|
-
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED"
|
1866
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
1843
1867
|
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
1844
1868
|
# resp.source_properties.cpus #=> Array
|
1845
1869
|
# resp.source_properties.cpus[0].cores #=> Integer
|
@@ -1864,6 +1888,7 @@ module Aws::Mgn
|
|
1864
1888
|
# resp.source_server_id #=> String
|
1865
1889
|
# resp.tags #=> Hash
|
1866
1890
|
# resp.tags["TagKey"] #=> String
|
1891
|
+
# resp.user_provided_id #=> String
|
1867
1892
|
# resp.vcenter_client_id #=> String
|
1868
1893
|
#
|
1869
1894
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/FinalizeCutover AWS API Documentation
|
@@ -1919,6 +1944,8 @@ module Aws::Mgn
|
|
1919
1944
|
# resp.post_launch_actions.s3_output_key_prefix #=> String
|
1920
1945
|
# resp.post_launch_actions.ssm_documents #=> Array
|
1921
1946
|
# resp.post_launch_actions.ssm_documents[0].action_name #=> String
|
1947
|
+
# resp.post_launch_actions.ssm_documents[0].external_parameters #=> Hash
|
1948
|
+
# resp.post_launch_actions.ssm_documents[0].external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
1922
1949
|
# resp.post_launch_actions.ssm_documents[0].must_succeed_for_cutover #=> Boolean
|
1923
1950
|
# resp.post_launch_actions.ssm_documents[0].parameters #=> Hash
|
1924
1951
|
# resp.post_launch_actions.ssm_documents[0].parameters["SsmDocumentParameterName"] #=> Array
|
@@ -2072,6 +2099,205 @@ module Aws::Mgn
|
|
2072
2099
|
req.send_request(options)
|
2073
2100
|
end
|
2074
2101
|
|
2102
|
+
# List export errors.
|
2103
|
+
#
|
2104
|
+
# @option params [required, String] :export_id
|
2105
|
+
# List export errors request export id.
|
2106
|
+
#
|
2107
|
+
# @option params [Integer] :max_results
|
2108
|
+
# List export errors request max results.
|
2109
|
+
#
|
2110
|
+
# @option params [String] :next_token
|
2111
|
+
# List export errors request next token.
|
2112
|
+
#
|
2113
|
+
# @return [Types::ListExportErrorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2114
|
+
#
|
2115
|
+
# * {Types::ListExportErrorsResponse#items #items} => Array<Types::ExportTaskError>
|
2116
|
+
# * {Types::ListExportErrorsResponse#next_token #next_token} => String
|
2117
|
+
#
|
2118
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2119
|
+
#
|
2120
|
+
# @example Request syntax with placeholder values
|
2121
|
+
#
|
2122
|
+
# resp = client.list_export_errors({
|
2123
|
+
# export_id: "ExportID", # required
|
2124
|
+
# max_results: 1,
|
2125
|
+
# next_token: "PaginationToken",
|
2126
|
+
# })
|
2127
|
+
#
|
2128
|
+
# @example Response structure
|
2129
|
+
#
|
2130
|
+
# resp.items #=> Array
|
2131
|
+
# resp.items[0].error_data.raw_error #=> String
|
2132
|
+
# resp.items[0].error_date_time #=> String
|
2133
|
+
# resp.next_token #=> String
|
2134
|
+
#
|
2135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExportErrors AWS API Documentation
|
2136
|
+
#
|
2137
|
+
# @overload list_export_errors(params = {})
|
2138
|
+
# @param [Hash] params ({})
|
2139
|
+
def list_export_errors(params = {}, options = {})
|
2140
|
+
req = build_request(:list_export_errors, params)
|
2141
|
+
req.send_request(options)
|
2142
|
+
end
|
2143
|
+
|
2144
|
+
# List exports.
|
2145
|
+
#
|
2146
|
+
# @option params [Types::ListExportsRequestFilters] :filters
|
2147
|
+
# List exports request filters.
|
2148
|
+
#
|
2149
|
+
# @option params [Integer] :max_results
|
2150
|
+
# List export request max results.
|
2151
|
+
#
|
2152
|
+
# @option params [String] :next_token
|
2153
|
+
# List export request next token.
|
2154
|
+
#
|
2155
|
+
# @return [Types::ListExportsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2156
|
+
#
|
2157
|
+
# * {Types::ListExportsResponse#items #items} => Array<Types::ExportTask>
|
2158
|
+
# * {Types::ListExportsResponse#next_token #next_token} => String
|
2159
|
+
#
|
2160
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2161
|
+
#
|
2162
|
+
# @example Request syntax with placeholder values
|
2163
|
+
#
|
2164
|
+
# resp = client.list_exports({
|
2165
|
+
# filters: {
|
2166
|
+
# export_i_ds: ["ExportID"],
|
2167
|
+
# },
|
2168
|
+
# max_results: 1,
|
2169
|
+
# next_token: "PaginationToken",
|
2170
|
+
# })
|
2171
|
+
#
|
2172
|
+
# @example Response structure
|
2173
|
+
#
|
2174
|
+
# resp.items #=> Array
|
2175
|
+
# resp.items[0].creation_date_time #=> String
|
2176
|
+
# resp.items[0].end_date_time #=> String
|
2177
|
+
# resp.items[0].export_id #=> String
|
2178
|
+
# resp.items[0].progress_percentage #=> Float
|
2179
|
+
# resp.items[0].s3_bucket #=> String
|
2180
|
+
# resp.items[0].s3_bucket_owner #=> String
|
2181
|
+
# resp.items[0].s3_key #=> String
|
2182
|
+
# resp.items[0].status #=> String, one of "PENDING", "STARTED", "FAILED", "SUCCEEDED"
|
2183
|
+
# resp.items[0].summary.applications_count #=> Integer
|
2184
|
+
# resp.items[0].summary.servers_count #=> Integer
|
2185
|
+
# resp.items[0].summary.waves_count #=> Integer
|
2186
|
+
# resp.next_token #=> String
|
2187
|
+
#
|
2188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListExports AWS API Documentation
|
2189
|
+
#
|
2190
|
+
# @overload list_exports(params = {})
|
2191
|
+
# @param [Hash] params ({})
|
2192
|
+
def list_exports(params = {}, options = {})
|
2193
|
+
req = build_request(:list_exports, params)
|
2194
|
+
req.send_request(options)
|
2195
|
+
end
|
2196
|
+
|
2197
|
+
# List import errors.
|
2198
|
+
#
|
2199
|
+
# @option params [required, String] :import_id
|
2200
|
+
# List import errors request import id.
|
2201
|
+
#
|
2202
|
+
# @option params [Integer] :max_results
|
2203
|
+
# List import errors request max results.
|
2204
|
+
#
|
2205
|
+
# @option params [String] :next_token
|
2206
|
+
# List import errors request next token.
|
2207
|
+
#
|
2208
|
+
# @return [Types::ListImportErrorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2209
|
+
#
|
2210
|
+
# * {Types::ListImportErrorsResponse#items #items} => Array<Types::ImportTaskError>
|
2211
|
+
# * {Types::ListImportErrorsResponse#next_token #next_token} => String
|
2212
|
+
#
|
2213
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2214
|
+
#
|
2215
|
+
# @example Request syntax with placeholder values
|
2216
|
+
#
|
2217
|
+
# resp = client.list_import_errors({
|
2218
|
+
# import_id: "ImportID", # required
|
2219
|
+
# max_results: 1,
|
2220
|
+
# next_token: "PaginationToken",
|
2221
|
+
# })
|
2222
|
+
#
|
2223
|
+
# @example Response structure
|
2224
|
+
#
|
2225
|
+
# resp.items #=> Array
|
2226
|
+
# resp.items[0].error_data.application_id #=> String
|
2227
|
+
# resp.items[0].error_data.ec2_launch_template_id #=> String
|
2228
|
+
# resp.items[0].error_data.raw_error #=> String
|
2229
|
+
# resp.items[0].error_data.row_number #=> Integer
|
2230
|
+
# resp.items[0].error_data.source_server_id #=> String
|
2231
|
+
# resp.items[0].error_data.wave_id #=> String
|
2232
|
+
# resp.items[0].error_date_time #=> String
|
2233
|
+
# resp.items[0].error_type #=> String, one of "VALIDATION_ERROR", "PROCESSING_ERROR"
|
2234
|
+
# resp.next_token #=> String
|
2235
|
+
#
|
2236
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImportErrors AWS API Documentation
|
2237
|
+
#
|
2238
|
+
# @overload list_import_errors(params = {})
|
2239
|
+
# @param [Hash] params ({})
|
2240
|
+
def list_import_errors(params = {}, options = {})
|
2241
|
+
req = build_request(:list_import_errors, params)
|
2242
|
+
req.send_request(options)
|
2243
|
+
end
|
2244
|
+
|
2245
|
+
# List imports.
|
2246
|
+
#
|
2247
|
+
# @option params [Types::ListImportsRequestFilters] :filters
|
2248
|
+
# List imports request filters.
|
2249
|
+
#
|
2250
|
+
# @option params [Integer] :max_results
|
2251
|
+
# List imports request max results.
|
2252
|
+
#
|
2253
|
+
# @option params [String] :next_token
|
2254
|
+
# List imports request next token.
|
2255
|
+
#
|
2256
|
+
# @return [Types::ListImportsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2257
|
+
#
|
2258
|
+
# * {Types::ListImportsResponse#items #items} => Array<Types::ImportTask>
|
2259
|
+
# * {Types::ListImportsResponse#next_token #next_token} => String
|
2260
|
+
#
|
2261
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2262
|
+
#
|
2263
|
+
# @example Request syntax with placeholder values
|
2264
|
+
#
|
2265
|
+
# resp = client.list_imports({
|
2266
|
+
# filters: {
|
2267
|
+
# import_i_ds: ["ImportID"],
|
2268
|
+
# },
|
2269
|
+
# max_results: 1,
|
2270
|
+
# next_token: "PaginationToken",
|
2271
|
+
# })
|
2272
|
+
#
|
2273
|
+
# @example Response structure
|
2274
|
+
#
|
2275
|
+
# resp.items #=> Array
|
2276
|
+
# resp.items[0].creation_date_time #=> String
|
2277
|
+
# resp.items[0].end_date_time #=> String
|
2278
|
+
# resp.items[0].import_id #=> String
|
2279
|
+
# resp.items[0].progress_percentage #=> Float
|
2280
|
+
# resp.items[0].s3_bucket_source.s3_bucket #=> String
|
2281
|
+
# resp.items[0].s3_bucket_source.s3_bucket_owner #=> String
|
2282
|
+
# resp.items[0].s3_bucket_source.s3_key #=> String
|
2283
|
+
# resp.items[0].status #=> String, one of "PENDING", "STARTED", "FAILED", "SUCCEEDED"
|
2284
|
+
# resp.items[0].summary.applications.created_count #=> Integer
|
2285
|
+
# resp.items[0].summary.applications.modified_count #=> Integer
|
2286
|
+
# resp.items[0].summary.servers.created_count #=> Integer
|
2287
|
+
# resp.items[0].summary.servers.modified_count #=> Integer
|
2288
|
+
# resp.items[0].summary.waves.created_count #=> Integer
|
2289
|
+
# resp.items[0].summary.waves.modified_count #=> Integer
|
2290
|
+
# resp.next_token #=> String
|
2291
|
+
#
|
2292
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ListImports AWS API Documentation
|
2293
|
+
#
|
2294
|
+
# @overload list_imports(params = {})
|
2295
|
+
# @param [Hash] params ({})
|
2296
|
+
def list_imports(params = {}, options = {})
|
2297
|
+
req = build_request(:list_imports, params)
|
2298
|
+
req.send_request(options)
|
2299
|
+
end
|
2300
|
+
|
2075
2301
|
# List source server post migration custom actions.
|
2076
2302
|
#
|
2077
2303
|
# @option params [Types::SourceServerActionsRequestFilters] :filters
|
@@ -2113,8 +2339,12 @@ module Aws::Mgn
|
|
2113
2339
|
# resp.items[0].action_id #=> String
|
2114
2340
|
# resp.items[0].action_name #=> String
|
2115
2341
|
# resp.items[0].active #=> Boolean
|
2342
|
+
# resp.items[0].category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2343
|
+
# resp.items[0].description #=> String
|
2116
2344
|
# resp.items[0].document_identifier #=> String
|
2117
2345
|
# resp.items[0].document_version #=> String
|
2346
|
+
# resp.items[0].external_parameters #=> Hash
|
2347
|
+
# resp.items[0].external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
2118
2348
|
# resp.items[0].must_succeed_for_cutover #=> Boolean
|
2119
2349
|
# resp.items[0].order #=> Integer
|
2120
2350
|
# resp.items[0].parameters #=> Hash
|
@@ -2201,8 +2431,12 @@ module Aws::Mgn
|
|
2201
2431
|
# resp.items[0].action_id #=> String
|
2202
2432
|
# resp.items[0].action_name #=> String
|
2203
2433
|
# resp.items[0].active #=> Boolean
|
2434
|
+
# resp.items[0].category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2435
|
+
# resp.items[0].description #=> String
|
2204
2436
|
# resp.items[0].document_identifier #=> String
|
2205
2437
|
# resp.items[0].document_version #=> String
|
2438
|
+
# resp.items[0].external_parameters #=> Hash
|
2439
|
+
# resp.items[0].external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
2206
2440
|
# resp.items[0].must_succeed_for_cutover #=> Boolean
|
2207
2441
|
# resp.items[0].operating_system #=> String
|
2208
2442
|
# resp.items[0].order #=> Integer
|
@@ -2292,6 +2526,7 @@ module Aws::Mgn
|
|
2292
2526
|
# * {Types::SourceServer#application_id #application_id} => String
|
2293
2527
|
# * {Types::SourceServer#arn #arn} => String
|
2294
2528
|
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
2529
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
2295
2530
|
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
2296
2531
|
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
2297
2532
|
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
@@ -2299,6 +2534,7 @@ module Aws::Mgn
|
|
2299
2534
|
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
2300
2535
|
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
2301
2536
|
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
2537
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
2302
2538
|
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
2303
2539
|
#
|
2304
2540
|
# @example Request syntax with placeholder values
|
@@ -2328,6 +2564,7 @@ module Aws::Mgn
|
|
2328
2564
|
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
2329
2565
|
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
2330
2566
|
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
2567
|
+
# resp.fqdn_for_action_framework #=> String
|
2331
2568
|
# resp.is_archived #=> Boolean
|
2332
2569
|
# resp.launched_instance.ec2_instance_id #=> String
|
2333
2570
|
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
@@ -2344,7 +2581,7 @@ module Aws::Mgn
|
|
2344
2581
|
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
2345
2582
|
# resp.life_cycle.last_test.initiated.job_id #=> String
|
2346
2583
|
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
2347
|
-
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED"
|
2584
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
2348
2585
|
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
2349
2586
|
# resp.source_properties.cpus #=> Array
|
2350
2587
|
# resp.source_properties.cpus[0].cores #=> Integer
|
@@ -2369,6 +2606,7 @@ module Aws::Mgn
|
|
2369
2606
|
# resp.source_server_id #=> String
|
2370
2607
|
# resp.tags #=> Hash
|
2371
2608
|
# resp.tags["TagKey"] #=> String
|
2609
|
+
# resp.user_provided_id #=> String
|
2372
2610
|
# resp.vcenter_client_id #=> String
|
2373
2611
|
#
|
2374
2612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/MarkAsArchived AWS API Documentation
|
@@ -2391,12 +2629,21 @@ module Aws::Mgn
|
|
2391
2629
|
# @option params [Boolean] :active
|
2392
2630
|
# Source server post migration custom action active status.
|
2393
2631
|
#
|
2632
|
+
# @option params [String] :category
|
2633
|
+
# Source server post migration custom action category.
|
2634
|
+
#
|
2635
|
+
# @option params [String] :description
|
2636
|
+
# Source server post migration custom action description.
|
2637
|
+
#
|
2394
2638
|
# @option params [required, String] :document_identifier
|
2395
2639
|
# Source server post migration custom action document identifier.
|
2396
2640
|
#
|
2397
2641
|
# @option params [String] :document_version
|
2398
2642
|
# Source server post migration custom action document version.
|
2399
2643
|
#
|
2644
|
+
# @option params [Hash<String,Types::SsmExternalParameter>] :external_parameters
|
2645
|
+
# Source server post migration custom action external parameters.
|
2646
|
+
#
|
2400
2647
|
# @option params [Boolean] :must_succeed_for_cutover
|
2401
2648
|
# Source server post migration custom action must succeed for cutover.
|
2402
2649
|
#
|
@@ -2417,8 +2664,11 @@ module Aws::Mgn
|
|
2417
2664
|
# * {Types::SourceServerActionDocument#action_id #action_id} => String
|
2418
2665
|
# * {Types::SourceServerActionDocument#action_name #action_name} => String
|
2419
2666
|
# * {Types::SourceServerActionDocument#active #active} => Boolean
|
2667
|
+
# * {Types::SourceServerActionDocument#category #category} => String
|
2668
|
+
# * {Types::SourceServerActionDocument#description #description} => String
|
2420
2669
|
# * {Types::SourceServerActionDocument#document_identifier #document_identifier} => String
|
2421
2670
|
# * {Types::SourceServerActionDocument#document_version #document_version} => String
|
2671
|
+
# * {Types::SourceServerActionDocument#external_parameters #external_parameters} => Hash<String,Types::SsmExternalParameter>
|
2422
2672
|
# * {Types::SourceServerActionDocument#must_succeed_for_cutover #must_succeed_for_cutover} => Boolean
|
2423
2673
|
# * {Types::SourceServerActionDocument#order #order} => Integer
|
2424
2674
|
# * {Types::SourceServerActionDocument#parameters #parameters} => Hash<String,Array<Types::SsmParameterStoreParameter>>
|
@@ -2430,8 +2680,15 @@ module Aws::Mgn
|
|
2430
2680
|
# action_id: "ActionID", # required
|
2431
2681
|
# action_name: "ActionName", # required
|
2432
2682
|
# active: false,
|
2683
|
+
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
2684
|
+
# description: "ActionDescription",
|
2433
2685
|
# document_identifier: "BoundedString", # required
|
2434
2686
|
# document_version: "DocumentVersion",
|
2687
|
+
# external_parameters: {
|
2688
|
+
# "SsmDocumentParameterName" => {
|
2689
|
+
# dynamic_path: "JmesPathString",
|
2690
|
+
# },
|
2691
|
+
# },
|
2435
2692
|
# must_succeed_for_cutover: false,
|
2436
2693
|
# order: 1, # required
|
2437
2694
|
# parameters: {
|
@@ -2451,8 +2708,12 @@ module Aws::Mgn
|
|
2451
2708
|
# resp.action_id #=> String
|
2452
2709
|
# resp.action_name #=> String
|
2453
2710
|
# resp.active #=> Boolean
|
2711
|
+
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2712
|
+
# resp.description #=> String
|
2454
2713
|
# resp.document_identifier #=> String
|
2455
2714
|
# resp.document_version #=> String
|
2715
|
+
# resp.external_parameters #=> Hash
|
2716
|
+
# resp.external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
2456
2717
|
# resp.must_succeed_for_cutover #=> Boolean
|
2457
2718
|
# resp.order #=> Integer
|
2458
2719
|
# resp.parameters #=> Hash
|
@@ -2481,12 +2742,21 @@ module Aws::Mgn
|
|
2481
2742
|
# @option params [Boolean] :active
|
2482
2743
|
# Template post migration custom action active status.
|
2483
2744
|
#
|
2745
|
+
# @option params [String] :category
|
2746
|
+
# Template post migration custom action category.
|
2747
|
+
#
|
2748
|
+
# @option params [String] :description
|
2749
|
+
# Template post migration custom action description.
|
2750
|
+
#
|
2484
2751
|
# @option params [required, String] :document_identifier
|
2485
2752
|
# Template post migration custom action document identifier.
|
2486
2753
|
#
|
2487
2754
|
# @option params [String] :document_version
|
2488
2755
|
# Template post migration custom action document version.
|
2489
2756
|
#
|
2757
|
+
# @option params [Hash<String,Types::SsmExternalParameter>] :external_parameters
|
2758
|
+
# Template post migration custom action external parameters.
|
2759
|
+
#
|
2490
2760
|
# @option params [required, String] :launch_configuration_template_id
|
2491
2761
|
# Launch configuration template ID.
|
2492
2762
|
#
|
@@ -2511,8 +2781,11 @@ module Aws::Mgn
|
|
2511
2781
|
# * {Types::TemplateActionDocument#action_id #action_id} => String
|
2512
2782
|
# * {Types::TemplateActionDocument#action_name #action_name} => String
|
2513
2783
|
# * {Types::TemplateActionDocument#active #active} => Boolean
|
2784
|
+
# * {Types::TemplateActionDocument#category #category} => String
|
2785
|
+
# * {Types::TemplateActionDocument#description #description} => String
|
2514
2786
|
# * {Types::TemplateActionDocument#document_identifier #document_identifier} => String
|
2515
2787
|
# * {Types::TemplateActionDocument#document_version #document_version} => String
|
2788
|
+
# * {Types::TemplateActionDocument#external_parameters #external_parameters} => Hash<String,Types::SsmExternalParameter>
|
2516
2789
|
# * {Types::TemplateActionDocument#must_succeed_for_cutover #must_succeed_for_cutover} => Boolean
|
2517
2790
|
# * {Types::TemplateActionDocument#operating_system #operating_system} => String
|
2518
2791
|
# * {Types::TemplateActionDocument#order #order} => Integer
|
@@ -2525,8 +2798,15 @@ module Aws::Mgn
|
|
2525
2798
|
# action_id: "ActionID", # required
|
2526
2799
|
# action_name: "BoundedString", # required
|
2527
2800
|
# active: false,
|
2801
|
+
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
2802
|
+
# description: "ActionDescription",
|
2528
2803
|
# document_identifier: "BoundedString", # required
|
2529
2804
|
# document_version: "DocumentVersion",
|
2805
|
+
# external_parameters: {
|
2806
|
+
# "SsmDocumentParameterName" => {
|
2807
|
+
# dynamic_path: "JmesPathString",
|
2808
|
+
# },
|
2809
|
+
# },
|
2530
2810
|
# launch_configuration_template_id: "LaunchConfigurationTemplateID", # required
|
2531
2811
|
# must_succeed_for_cutover: false,
|
2532
2812
|
# operating_system: "OperatingSystemString",
|
@@ -2547,8 +2827,12 @@ module Aws::Mgn
|
|
2547
2827
|
# resp.action_id #=> String
|
2548
2828
|
# resp.action_name #=> String
|
2549
2829
|
# resp.active #=> Boolean
|
2830
|
+
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2831
|
+
# resp.description #=> String
|
2550
2832
|
# resp.document_identifier #=> String
|
2551
2833
|
# resp.document_version #=> String
|
2834
|
+
# resp.external_parameters #=> Hash
|
2835
|
+
# resp.external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
2552
2836
|
# resp.must_succeed_for_cutover #=> Boolean
|
2553
2837
|
# resp.operating_system #=> String
|
2554
2838
|
# resp.order #=> Integer
|
@@ -2633,6 +2917,7 @@ module Aws::Mgn
|
|
2633
2917
|
# * {Types::SourceServer#application_id #application_id} => String
|
2634
2918
|
# * {Types::SourceServer#arn #arn} => String
|
2635
2919
|
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
2920
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
2636
2921
|
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
2637
2922
|
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
2638
2923
|
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
@@ -2640,6 +2925,7 @@ module Aws::Mgn
|
|
2640
2925
|
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
2641
2926
|
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
2642
2927
|
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
2928
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
2643
2929
|
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
2644
2930
|
#
|
2645
2931
|
# @example Request syntax with placeholder values
|
@@ -2669,6 +2955,7 @@ module Aws::Mgn
|
|
2669
2955
|
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
2670
2956
|
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
2671
2957
|
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
2958
|
+
# resp.fqdn_for_action_framework #=> String
|
2672
2959
|
# resp.is_archived #=> Boolean
|
2673
2960
|
# resp.launched_instance.ec2_instance_id #=> String
|
2674
2961
|
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
@@ -2685,7 +2972,7 @@ module Aws::Mgn
|
|
2685
2972
|
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
2686
2973
|
# resp.life_cycle.last_test.initiated.job_id #=> String
|
2687
2974
|
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
2688
|
-
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED"
|
2975
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
2689
2976
|
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
2690
2977
|
# resp.source_properties.cpus #=> Array
|
2691
2978
|
# resp.source_properties.cpus[0].cores #=> Integer
|
@@ -2710,6 +2997,7 @@ module Aws::Mgn
|
|
2710
2997
|
# resp.source_server_id #=> String
|
2711
2998
|
# resp.tags #=> Hash
|
2712
2999
|
# resp.tags["TagKey"] #=> String
|
3000
|
+
# resp.user_provided_id #=> String
|
2713
3001
|
# resp.vcenter_client_id #=> String
|
2714
3002
|
#
|
2715
3003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/RetryDataReplication AWS API Documentation
|
@@ -2759,6 +3047,8 @@ module Aws::Mgn
|
|
2759
3047
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].execution_status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED"
|
2760
3048
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].failure_reason #=> String
|
2761
3049
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.action_name #=> String
|
3050
|
+
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.external_parameters #=> Hash
|
3051
|
+
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
2762
3052
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.must_succeed_for_cutover #=> Boolean
|
2763
3053
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.parameters #=> Hash
|
2764
3054
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.parameters["SsmDocumentParameterName"] #=> Array
|
@@ -2783,6 +3073,104 @@ module Aws::Mgn
|
|
2783
3073
|
req.send_request(options)
|
2784
3074
|
end
|
2785
3075
|
|
3076
|
+
# Start export.
|
3077
|
+
#
|
3078
|
+
# @option params [required, String] :s3_bucket
|
3079
|
+
# Start export request s3 bucket.
|
3080
|
+
#
|
3081
|
+
# @option params [String] :s3_bucket_owner
|
3082
|
+
# Start export request s3 bucket owner.
|
3083
|
+
#
|
3084
|
+
# @option params [required, String] :s3_key
|
3085
|
+
# Start export request s3key.
|
3086
|
+
#
|
3087
|
+
# @return [Types::StartExportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3088
|
+
#
|
3089
|
+
# * {Types::StartExportResponse#export_task #export_task} => Types::ExportTask
|
3090
|
+
#
|
3091
|
+
# @example Request syntax with placeholder values
|
3092
|
+
#
|
3093
|
+
# resp = client.start_export({
|
3094
|
+
# s3_bucket: "S3BucketName", # required
|
3095
|
+
# s3_bucket_owner: "AccountID",
|
3096
|
+
# s3_key: "S3Key", # required
|
3097
|
+
# })
|
3098
|
+
#
|
3099
|
+
# @example Response structure
|
3100
|
+
#
|
3101
|
+
# resp.export_task.creation_date_time #=> String
|
3102
|
+
# resp.export_task.end_date_time #=> String
|
3103
|
+
# resp.export_task.export_id #=> String
|
3104
|
+
# resp.export_task.progress_percentage #=> Float
|
3105
|
+
# resp.export_task.s3_bucket #=> String
|
3106
|
+
# resp.export_task.s3_bucket_owner #=> String
|
3107
|
+
# resp.export_task.s3_key #=> String
|
3108
|
+
# resp.export_task.status #=> String, one of "PENDING", "STARTED", "FAILED", "SUCCEEDED"
|
3109
|
+
# resp.export_task.summary.applications_count #=> Integer
|
3110
|
+
# resp.export_task.summary.servers_count #=> Integer
|
3111
|
+
# resp.export_task.summary.waves_count #=> Integer
|
3112
|
+
#
|
3113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartExport AWS API Documentation
|
3114
|
+
#
|
3115
|
+
# @overload start_export(params = {})
|
3116
|
+
# @param [Hash] params ({})
|
3117
|
+
def start_export(params = {}, options = {})
|
3118
|
+
req = build_request(:start_export, params)
|
3119
|
+
req.send_request(options)
|
3120
|
+
end
|
3121
|
+
|
3122
|
+
# Start import.
|
3123
|
+
#
|
3124
|
+
# @option params [String] :client_token
|
3125
|
+
# Start import request client token.
|
3126
|
+
#
|
3127
|
+
# **A suitable default value is auto-generated.** You should normally
|
3128
|
+
# not need to pass this option.**
|
3129
|
+
#
|
3130
|
+
# @option params [required, Types::S3BucketSource] :s3_bucket_source
|
3131
|
+
# Start import request s3 bucket source.
|
3132
|
+
#
|
3133
|
+
# @return [Types::StartImportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3134
|
+
#
|
3135
|
+
# * {Types::StartImportResponse#import_task #import_task} => Types::ImportTask
|
3136
|
+
#
|
3137
|
+
# @example Request syntax with placeholder values
|
3138
|
+
#
|
3139
|
+
# resp = client.start_import({
|
3140
|
+
# client_token: "ClientIdempotencyToken",
|
3141
|
+
# s3_bucket_source: { # required
|
3142
|
+
# s3_bucket: "S3BucketName", # required
|
3143
|
+
# s3_bucket_owner: "AccountID",
|
3144
|
+
# s3_key: "S3Key", # required
|
3145
|
+
# },
|
3146
|
+
# })
|
3147
|
+
#
|
3148
|
+
# @example Response structure
|
3149
|
+
#
|
3150
|
+
# resp.import_task.creation_date_time #=> String
|
3151
|
+
# resp.import_task.end_date_time #=> String
|
3152
|
+
# resp.import_task.import_id #=> String
|
3153
|
+
# resp.import_task.progress_percentage #=> Float
|
3154
|
+
# resp.import_task.s3_bucket_source.s3_bucket #=> String
|
3155
|
+
# resp.import_task.s3_bucket_source.s3_bucket_owner #=> String
|
3156
|
+
# resp.import_task.s3_bucket_source.s3_key #=> String
|
3157
|
+
# resp.import_task.status #=> String, one of "PENDING", "STARTED", "FAILED", "SUCCEEDED"
|
3158
|
+
# resp.import_task.summary.applications.created_count #=> Integer
|
3159
|
+
# resp.import_task.summary.applications.modified_count #=> Integer
|
3160
|
+
# resp.import_task.summary.servers.created_count #=> Integer
|
3161
|
+
# resp.import_task.summary.servers.modified_count #=> Integer
|
3162
|
+
# resp.import_task.summary.waves.created_count #=> Integer
|
3163
|
+
# resp.import_task.summary.waves.modified_count #=> Integer
|
3164
|
+
#
|
3165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartImport AWS API Documentation
|
3166
|
+
#
|
3167
|
+
# @overload start_import(params = {})
|
3168
|
+
# @param [Hash] params ({})
|
3169
|
+
def start_import(params = {}, options = {})
|
3170
|
+
req = build_request(:start_import, params)
|
3171
|
+
req.send_request(options)
|
3172
|
+
end
|
3173
|
+
|
2786
3174
|
# Starts replication for SNAPSHOT\_SHIPPING agents.
|
2787
3175
|
#
|
2788
3176
|
# @option params [required, String] :source_server_id
|
@@ -2793,6 +3181,7 @@ module Aws::Mgn
|
|
2793
3181
|
# * {Types::SourceServer#application_id #application_id} => String
|
2794
3182
|
# * {Types::SourceServer#arn #arn} => String
|
2795
3183
|
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
3184
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
2796
3185
|
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
2797
3186
|
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
2798
3187
|
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
@@ -2800,6 +3189,7 @@ module Aws::Mgn
|
|
2800
3189
|
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
2801
3190
|
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
2802
3191
|
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
3192
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
2803
3193
|
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
2804
3194
|
#
|
2805
3195
|
# @example Request syntax with placeholder values
|
@@ -2829,6 +3219,7 @@ module Aws::Mgn
|
|
2829
3219
|
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
2830
3220
|
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
2831
3221
|
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
3222
|
+
# resp.fqdn_for_action_framework #=> String
|
2832
3223
|
# resp.is_archived #=> Boolean
|
2833
3224
|
# resp.launched_instance.ec2_instance_id #=> String
|
2834
3225
|
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
@@ -2845,7 +3236,7 @@ module Aws::Mgn
|
|
2845
3236
|
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
2846
3237
|
# resp.life_cycle.last_test.initiated.job_id #=> String
|
2847
3238
|
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
2848
|
-
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED"
|
3239
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
2849
3240
|
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
2850
3241
|
# resp.source_properties.cpus #=> Array
|
2851
3242
|
# resp.source_properties.cpus[0].cores #=> Integer
|
@@ -2870,6 +3261,7 @@ module Aws::Mgn
|
|
2870
3261
|
# resp.source_server_id #=> String
|
2871
3262
|
# resp.tags #=> Hash
|
2872
3263
|
# resp.tags["TagKey"] #=> String
|
3264
|
+
# resp.user_provided_id #=> String
|
2873
3265
|
# resp.vcenter_client_id #=> String
|
2874
3266
|
#
|
2875
3267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartReplication AWS API Documentation
|
@@ -2919,6 +3311,8 @@ module Aws::Mgn
|
|
2919
3311
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].execution_status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED"
|
2920
3312
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].failure_reason #=> String
|
2921
3313
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.action_name #=> String
|
3314
|
+
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.external_parameters #=> Hash
|
3315
|
+
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
2922
3316
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.must_succeed_for_cutover #=> Boolean
|
2923
3317
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.parameters #=> Hash
|
2924
3318
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.parameters["SsmDocumentParameterName"] #=> Array
|
@@ -3013,6 +3407,8 @@ module Aws::Mgn
|
|
3013
3407
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].execution_status #=> String, one of "IN_PROGRESS", "SUCCESS", "FAILED"
|
3014
3408
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].failure_reason #=> String
|
3015
3409
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.action_name #=> String
|
3410
|
+
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.external_parameters #=> Hash
|
3411
|
+
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
3016
3412
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.must_succeed_for_cutover #=> Boolean
|
3017
3413
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.parameters #=> Hash
|
3018
3414
|
# resp.job.participating_servers[0].post_launch_actions_status.post_launch_actions_launch_status_list[0].ssm_document.parameters["SsmDocumentParameterName"] #=> Array
|
@@ -3292,6 +3688,11 @@ module Aws::Mgn
|
|
3292
3688
|
# ssm_documents: [
|
3293
3689
|
# {
|
3294
3690
|
# action_name: "BoundedString", # required
|
3691
|
+
# external_parameters: {
|
3692
|
+
# "SsmDocumentParameterName" => {
|
3693
|
+
# dynamic_path: "JmesPathString",
|
3694
|
+
# },
|
3695
|
+
# },
|
3295
3696
|
# must_succeed_for_cutover: false,
|
3296
3697
|
# parameters: {
|
3297
3698
|
# "SsmDocumentParameterName" => [
|
@@ -3327,6 +3728,8 @@ module Aws::Mgn
|
|
3327
3728
|
# resp.post_launch_actions.s3_output_key_prefix #=> String
|
3328
3729
|
# resp.post_launch_actions.ssm_documents #=> Array
|
3329
3730
|
# resp.post_launch_actions.ssm_documents[0].action_name #=> String
|
3731
|
+
# resp.post_launch_actions.ssm_documents[0].external_parameters #=> Hash
|
3732
|
+
# resp.post_launch_actions.ssm_documents[0].external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
3330
3733
|
# resp.post_launch_actions.ssm_documents[0].must_succeed_for_cutover #=> Boolean
|
3331
3734
|
# resp.post_launch_actions.ssm_documents[0].parameters #=> Hash
|
3332
3735
|
# resp.post_launch_actions.ssm_documents[0].parameters["SsmDocumentParameterName"] #=> Array
|
@@ -3437,6 +3840,11 @@ module Aws::Mgn
|
|
3437
3840
|
# ssm_documents: [
|
3438
3841
|
# {
|
3439
3842
|
# action_name: "BoundedString", # required
|
3843
|
+
# external_parameters: {
|
3844
|
+
# "SsmDocumentParameterName" => {
|
3845
|
+
# dynamic_path: "JmesPathString",
|
3846
|
+
# },
|
3847
|
+
# },
|
3440
3848
|
# must_succeed_for_cutover: false,
|
3441
3849
|
# parameters: {
|
3442
3850
|
# "SsmDocumentParameterName" => [
|
@@ -3482,6 +3890,8 @@ module Aws::Mgn
|
|
3482
3890
|
# resp.post_launch_actions.s3_output_key_prefix #=> String
|
3483
3891
|
# resp.post_launch_actions.ssm_documents #=> Array
|
3484
3892
|
# resp.post_launch_actions.ssm_documents[0].action_name #=> String
|
3893
|
+
# resp.post_launch_actions.ssm_documents[0].external_parameters #=> Hash
|
3894
|
+
# resp.post_launch_actions.ssm_documents[0].external_parameters["SsmDocumentParameterName"].dynamic_path #=> String
|
3485
3895
|
# resp.post_launch_actions.ssm_documents[0].must_succeed_for_cutover #=> Boolean
|
3486
3896
|
# resp.post_launch_actions.ssm_documents[0].parameters #=> Hash
|
3487
3897
|
# resp.post_launch_actions.ssm_documents[0].parameters["SsmDocumentParameterName"] #=> Array
|
@@ -3776,6 +4186,7 @@ module Aws::Mgn
|
|
3776
4186
|
# * {Types::SourceServer#application_id #application_id} => String
|
3777
4187
|
# * {Types::SourceServer#arn #arn} => String
|
3778
4188
|
# * {Types::SourceServer#data_replication_info #data_replication_info} => Types::DataReplicationInfo
|
4189
|
+
# * {Types::SourceServer#fqdn_for_action_framework #fqdn_for_action_framework} => String
|
3779
4190
|
# * {Types::SourceServer#is_archived #is_archived} => Boolean
|
3780
4191
|
# * {Types::SourceServer#launched_instance #launched_instance} => Types::LaunchedInstance
|
3781
4192
|
# * {Types::SourceServer#life_cycle #life_cycle} => Types::LifeCycle
|
@@ -3783,6 +4194,7 @@ module Aws::Mgn
|
|
3783
4194
|
# * {Types::SourceServer#source_properties #source_properties} => Types::SourceProperties
|
3784
4195
|
# * {Types::SourceServer#source_server_id #source_server_id} => String
|
3785
4196
|
# * {Types::SourceServer#tags #tags} => Hash<String,String>
|
4197
|
+
# * {Types::SourceServer#user_provided_id #user_provided_id} => String
|
3786
4198
|
# * {Types::SourceServer#vcenter_client_id #vcenter_client_id} => String
|
3787
4199
|
#
|
3788
4200
|
# @example Request syntax with placeholder values
|
@@ -3813,6 +4225,7 @@ module Aws::Mgn
|
|
3813
4225
|
# resp.data_replication_info.replicated_disks[0].replicated_storage_bytes #=> Integer
|
3814
4226
|
# resp.data_replication_info.replicated_disks[0].rescanned_storage_bytes #=> Integer
|
3815
4227
|
# resp.data_replication_info.replicated_disks[0].total_storage_bytes #=> Integer
|
4228
|
+
# resp.fqdn_for_action_framework #=> String
|
3816
4229
|
# resp.is_archived #=> Boolean
|
3817
4230
|
# resp.launched_instance.ec2_instance_id #=> String
|
3818
4231
|
# resp.launched_instance.first_boot #=> String, one of "WAITING", "SUCCEEDED", "UNKNOWN", "STOPPED"
|
@@ -3829,7 +4242,7 @@ module Aws::Mgn
|
|
3829
4242
|
# resp.life_cycle.last_test.initiated.api_call_date_time #=> String
|
3830
4243
|
# resp.life_cycle.last_test.initiated.job_id #=> String
|
3831
4244
|
# resp.life_cycle.last_test.reverted.api_call_date_time #=> String
|
3832
|
-
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED"
|
4245
|
+
# resp.life_cycle.state #=> String, one of "STOPPED", "NOT_READY", "READY_FOR_TEST", "TESTING", "READY_FOR_CUTOVER", "CUTTING_OVER", "CUTOVER", "DISCONNECTED", "DISCOVERED", "PENDING_INSTALLATION"
|
3833
4246
|
# resp.replication_type #=> String, one of "AGENT_BASED", "SNAPSHOT_SHIPPING"
|
3834
4247
|
# resp.source_properties.cpus #=> Array
|
3835
4248
|
# resp.source_properties.cpus[0].cores #=> Integer
|
@@ -3854,6 +4267,7 @@ module Aws::Mgn
|
|
3854
4267
|
# resp.source_server_id #=> String
|
3855
4268
|
# resp.tags #=> Hash
|
3856
4269
|
# resp.tags["TagKey"] #=> String
|
4270
|
+
# resp.user_provided_id #=> String
|
3857
4271
|
# resp.vcenter_client_id #=> String
|
3858
4272
|
#
|
3859
4273
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateSourceServerReplicationType AWS API Documentation
|
@@ -3935,7 +4349,7 @@ module Aws::Mgn
|
|
3935
4349
|
params: params,
|
3936
4350
|
config: config)
|
3937
4351
|
context[:gem_name] = 'aws-sdk-mgn'
|
3938
|
-
context[:gem_version] = '1.
|
4352
|
+
context[:gem_version] = '1.18.0'
|
3939
4353
|
Seahorse::Client::Request.new(handlers, context)
|
3940
4354
|
end
|
3941
4355
|
|