aws-sdk-mgn 1.9.0 → 1.12.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ae4ae6b83e1fdf55e367b5a4cee28decb11cecc3531c426c3c7b75bf997cefc
4
- data.tar.gz: 9c11599a4dd0205c1bfac541802e6250ab4c1cf683ceb967e714ac0d754f1180
3
+ metadata.gz: 9d4909b50e9937be3736712e8215a08ce9be3dcd9e73b8a93e5663210fbbdfdf
4
+ data.tar.gz: 2dcb08c536fb3360742a44bdaedb46beb995cb680a7ae1be4a2185b6a1b8fb25
5
5
  SHA512:
6
- metadata.gz: 067f0e58f766887e6dc9c5d9d181c9b68af8935a94afba07f77d93ade615789c7abe57eb9dbad59d016546da928818d822428f75850fbc7f11fb41b7064bf068
7
- data.tar.gz: a630ba2deca4660e8b8e1e4361a6b90d5aad2cc910bc069ded4f7dc7d1d648439139278afed9f03670f7a0df0d4cf5e0b8c440ce972581804413adcd2ccd3735
6
+ metadata.gz: 66473c1bbdc1f3622a905fb6684f6c046d48b1d6528b7ad03e65abc9786a1fde0fcce4ec4266a9822a577400cba2c03ffc5d529941df878e3ce11a387b877338
7
+ data.tar.gz: b4d68a0428e1c2ff1f32bd80100bd31ba114438dd4355d004cca2b3d12ded480d5355c52a19c720a2e873a43b28a8bd6ceb3340959c1bb6cb78bdd8b1d50f751
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2022-03-01)
5
+ ------------------
6
+
7
+ * Feature - Add support for GP3 and IO2 volume types. Add bootMode to LaunchConfiguration object (and as a parameter to UpdateLaunchConfigurationRequest).
8
+
9
+ 1.11.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.10.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.9.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.12.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::Mgn
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -472,15 +476,15 @@ module Aws::Mgn
472
476
  # template creation.
473
477
  #
474
478
  # @option params [required, String] :default_large_staging_disk_type
475
- # Request to configure the Staging Disk EBS volume type to "gp2"
479
+ # Request to configure the default large staging disk EBS volume type
476
480
  # during Replication Settings template creation.
477
481
  #
478
482
  # @option params [required, String] :ebs_encryption
479
- # Request to configure EBS enryption during Replication Settings
483
+ # Request to configure EBS encryption during Replication Settings
480
484
  # template creation.
481
485
  #
482
486
  # @option params [String] :ebs_encryption_key_arn
483
- # Request to configure an EBS enryption key during Replication Settings
487
+ # Request to configure an EBS encryption key during Replication Settings
484
488
  # template creation.
485
489
  #
486
490
  # @option params [required, String] :replication_server_instance_type
@@ -488,7 +492,7 @@ module Aws::Mgn
488
492
  # Replication Settings template creation.
489
493
  #
490
494
  # @option params [required, Array<String>] :replication_servers_security_groups_i_ds
491
- # Request to configure the Replication Server Secuirity group ID during
495
+ # Request to configure the Replication Server Security group ID during
492
496
  # Replication Settings template creation.
493
497
  #
494
498
  # @option params [required, String] :staging_area_subnet_id
@@ -496,7 +500,7 @@ module Aws::Mgn
496
500
  # Settings template creation.
497
501
  #
498
502
  # @option params [required, Hash<String,String>] :staging_area_tags
499
- # Request to configure Staiging Area tags during Replication Settings
503
+ # Request to configure Staging Area tags during Replication Settings
500
504
  # template creation.
501
505
  #
502
506
  # @option params [Hash<String,String>] :tags
@@ -532,7 +536,7 @@ module Aws::Mgn
532
536
  # bandwidth_throttling: 1, # required
533
537
  # create_public_ip: false, # required
534
538
  # data_plane_routing: "PRIVATE_IP", # required, accepts PRIVATE_IP, PUBLIC_IP
535
- # default_large_staging_disk_type: "GP2", # required, accepts GP2, ST1
539
+ # default_large_staging_disk_type: "GP2", # required, accepts GP2, ST1, GP3
536
540
  # ebs_encryption: "DEFAULT", # required, accepts DEFAULT, CUSTOM
537
541
  # ebs_encryption_key_arn: "ARN",
538
542
  # replication_server_instance_type: "EC2InstanceType", # required
@@ -554,7 +558,7 @@ module Aws::Mgn
554
558
  # resp.bandwidth_throttling #=> Integer
555
559
  # resp.create_public_ip #=> Boolean
556
560
  # resp.data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
557
- # resp.default_large_staging_disk_type #=> String, one of "GP2", "ST1"
561
+ # resp.default_large_staging_disk_type #=> String, one of "GP2", "ST1", "GP3"
558
562
  # resp.ebs_encryption #=> String, one of "DEFAULT", "CUSTOM"
559
563
  # resp.ebs_encryption_key_arn #=> String
560
564
  # resp.replication_configuration_template_id #=> String
@@ -644,7 +648,7 @@ module Aws::Mgn
644
648
  req.send_request(options)
645
649
  end
646
650
 
647
- # Deletes a single vCenter client by ID.
651
+ # Deletes a given vCenter client by ID.
648
652
  #
649
653
  # @option params [required, String] :vcenter_client_id
650
654
  # ID of resource to be deleted.
@@ -666,7 +670,7 @@ module Aws::Mgn
666
670
  req.send_request(options)
667
671
  end
668
672
 
669
- # Retrieves detailed Job log with paging.
673
+ # Retrieves detailed job log items with paging.
670
674
  #
671
675
  # @option params [required, String] :job_id
672
676
  # Request to describe Job log job ID.
@@ -714,7 +718,7 @@ module Aws::Mgn
714
718
 
715
719
  # Returns a list of Jobs. Use the JobsID and fromDate and toData filters
716
720
  # to limit which jobs are returned. The response is sorted by
717
- # creationDataTime - latest date first. Jobs are normaly created by the
721
+ # creationDataTime - latest date first. Jobs are normally created by the
718
722
  # StartTest, StartCutover, and TerminateTargetInstances APIs. Jobs are
719
723
  # also created by DiagnosticLaunch and TerminateDiagnosticInstances,
720
724
  # which are APIs available only to *Support* and only used in response
@@ -724,10 +728,10 @@ module Aws::Mgn
724
728
  # Request to describe Job log filters.
725
729
  #
726
730
  # @option params [Integer] :max_results
727
- # Request to describe Job log by max results.
731
+ # Request to describe job log items by max results.
728
732
  #
729
733
  # @option params [String] :next_token
730
- # Request to describe Job logby next token.
734
+ # Request to describe job log items by next token.
731
735
  #
732
736
  # @return [Types::DescribeJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
733
737
  #
@@ -810,7 +814,7 @@ module Aws::Mgn
810
814
  # resp.items[0].bandwidth_throttling #=> Integer
811
815
  # resp.items[0].create_public_ip #=> Boolean
812
816
  # resp.items[0].data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
813
- # resp.items[0].default_large_staging_disk_type #=> String, one of "GP2", "ST1"
817
+ # resp.items[0].default_large_staging_disk_type #=> String, one of "GP2", "ST1", "GP3"
814
818
  # resp.items[0].ebs_encryption #=> String, one of "DEFAULT", "CUSTOM"
815
819
  # resp.items[0].ebs_encryption_key_arn #=> String
816
820
  # resp.items[0].replication_configuration_template_id #=> String
@@ -939,7 +943,7 @@ module Aws::Mgn
939
943
  req.send_request(options)
940
944
  end
941
945
 
942
- # Lists all vCenter clients.
946
+ # Returns a list of the installed vCenter clients.
943
947
  #
944
948
  # @option params [Integer] :max_results
945
949
  # Maximum results to be returned in DescribeVcenterClients.
@@ -991,14 +995,14 @@ module Aws::Mgn
991
995
  # of these source servers will be terminated / deleted within 90
992
996
  # minutes. Launched Test or Cutover instances will NOT be terminated. If
993
997
  # the agent on the source server has not been prevented from
994
- # communciating with the Application Migration Service service, then it
998
+ # communicating with the Application Migration Service service, then it
995
999
  # will receive a command to uninstall itself (within approximately 10
996
1000
  # minutes). The following properties of the SourceServer will be changed
997
1001
  # immediately: dataReplicationInfo.dataReplicationState will be set to
998
1002
  # DISCONNECTED; The totalStorageBytes property for each of
999
1003
  # dataReplicationInfo.replicatedDisks will be set to zero;
1000
- # dataReplicationInfo.lagDuration and
1001
- # dataReplicationInfo.lagDurationwill be nullified.
1004
+ # dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration
1005
+ # will be nullified.
1002
1006
  #
1003
1007
  # @option params [required, String] :source_server_id
1004
1008
  # Request to disconnect Source Server from service by Server ID.
@@ -1101,15 +1105,15 @@ module Aws::Mgn
1101
1105
  # terminated. The AWS Replication Agent will receive a command to
1102
1106
  # uninstall itself (within 10 minutes). The following properties of the
1103
1107
  # SourceServer will be changed immediately:
1104
- # dataReplicationInfo.dataReplicationState will be to DISCONNECTED; The
1105
- # SourceServer.lifeCycle.state will be changed to CUTOVER; The
1106
- # totalStorageBytes property fo each of
1108
+ # dataReplicationInfo.dataReplicationState will be changed to
1109
+ # DISCONNECTED; The SourceServer.lifeCycle.state will be changed to
1110
+ # CUTOVER; The totalStorageBytes property fo each of
1107
1111
  # dataReplicationInfo.replicatedDisks will be set to zero;
1108
- # dataReplicationInfo.lagDuration and
1109
- # dataReplicationInfo.lagDurationwill be nullified.
1112
+ # dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration
1113
+ # will be nullified.
1110
1114
  #
1111
1115
  # @option params [required, String] :source_server_id
1112
- # Request to finalize Cutover by Soure Server ID.
1116
+ # Request to finalize Cutover by Source Server ID.
1113
1117
  #
1114
1118
  # @return [Types::SourceServer] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1115
1119
  #
@@ -1210,6 +1214,7 @@ module Aws::Mgn
1210
1214
  #
1211
1215
  # @return [Types::LaunchConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1212
1216
  #
1217
+ # * {Types::LaunchConfiguration#boot_mode #boot_mode} => String
1213
1218
  # * {Types::LaunchConfiguration#copy_private_ip #copy_private_ip} => Boolean
1214
1219
  # * {Types::LaunchConfiguration#copy_tags #copy_tags} => Boolean
1215
1220
  # * {Types::LaunchConfiguration#ec2_launch_template_id #ec2_launch_template_id} => String
@@ -1227,6 +1232,7 @@ module Aws::Mgn
1227
1232
  #
1228
1233
  # @example Response structure
1229
1234
  #
1235
+ # resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
1230
1236
  # resp.copy_private_ip #=> Boolean
1231
1237
  # resp.copy_tags #=> Boolean
1232
1238
  # resp.ec2_launch_template_id #=> String
@@ -1248,7 +1254,7 @@ module Aws::Mgn
1248
1254
  # Lists all ReplicationConfigurations, filtered by Source Server ID.
1249
1255
  #
1250
1256
  # @option params [required, String] :source_server_id
1251
- # Request to get Replication Configuaration by Source Server ID.
1257
+ # Request to get Replication Configuration by Source Server ID.
1252
1258
  #
1253
1259
  # @return [Types::ReplicationConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1254
1260
  #
@@ -1280,7 +1286,7 @@ module Aws::Mgn
1280
1286
  # resp.bandwidth_throttling #=> Integer
1281
1287
  # resp.create_public_ip #=> Boolean
1282
1288
  # resp.data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
1283
- # resp.default_large_staging_disk_type #=> String, one of "GP2", "ST1"
1289
+ # resp.default_large_staging_disk_type #=> String, one of "GP2", "ST1", "GP3"
1284
1290
  # resp.ebs_encryption #=> String, one of "DEFAULT", "CUSTOM"
1285
1291
  # resp.ebs_encryption_key_arn #=> String
1286
1292
  # resp.name #=> String
@@ -1288,7 +1294,8 @@ module Aws::Mgn
1288
1294
  # resp.replicated_disks[0].device_name #=> String
1289
1295
  # resp.replicated_disks[0].iops #=> Integer
1290
1296
  # resp.replicated_disks[0].is_boot_disk #=> Boolean
1291
- # resp.replicated_disks[0].staging_disk_type #=> String, one of "AUTO", "GP2", "IO1", "SC1", "ST1", "STANDARD"
1297
+ # resp.replicated_disks[0].staging_disk_type #=> String, one of "AUTO", "GP2", "IO1", "SC1", "ST1", "STANDARD", "GP3", "IO2"
1298
+ # resp.replicated_disks[0].throughput #=> Integer
1292
1299
  # resp.replication_server_instance_type #=> String
1293
1300
  # resp.replication_servers_security_groups_i_ds #=> Array
1294
1301
  # resp.replication_servers_security_groups_i_ds[0] #=> String
@@ -1351,8 +1358,8 @@ module Aws::Mgn
1351
1358
 
1352
1359
  # Archives specific Source Servers by setting the
1353
1360
  # SourceServer.isArchived property to true for specified SourceServers
1354
- # by ID. This command only works for SourceServers with a
1355
- # lifecycle.state which equals DISCONNECTED or CUTOVER.
1361
+ # by ID. This command only works for SourceServers with a lifecycle.
1362
+ # state which equals DISCONNECTED or CUTOVER.
1356
1363
  #
1357
1364
  # @option params [required, String] :source_server_id
1358
1365
  # Mark as archived by Source Server ID.
@@ -1594,7 +1601,7 @@ module Aws::Mgn
1594
1601
  req.send_request(options)
1595
1602
  end
1596
1603
 
1597
- # Starts replication on source server by ID.
1604
+ # Starts replication for SNAPSHOT\_SHIPPING agents.
1598
1605
  #
1599
1606
  # @option params [required, String] :source_server_id
1600
1607
  # ID of source server on which to start replication.
@@ -1690,7 +1697,7 @@ module Aws::Mgn
1690
1697
  req.send_request(options)
1691
1698
  end
1692
1699
 
1693
- # Lauches a Test Instance for specific Source Servers. This command
1700
+ # Launches a Test Instance for specific Source Servers. This command
1694
1701
  # starts a LAUNCH job whose initiatedBy property is StartTest and
1695
1702
  # changes the SourceServer.lifeCycle.state property to TESTING.
1696
1703
  #
@@ -1845,6 +1852,9 @@ module Aws::Mgn
1845
1852
 
1846
1853
  # Updates multiple LaunchConfigurations by Source Server ID.
1847
1854
  #
1855
+ # @option params [String] :boot_mode
1856
+ # Update Launch configuration boot mode request.
1857
+ #
1848
1858
  # @option params [Boolean] :copy_private_ip
1849
1859
  # Update Launch configuration copy Private IP request.
1850
1860
  #
@@ -1868,6 +1878,7 @@ module Aws::Mgn
1868
1878
  #
1869
1879
  # @return [Types::LaunchConfiguration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1870
1880
  #
1881
+ # * {Types::LaunchConfiguration#boot_mode #boot_mode} => String
1871
1882
  # * {Types::LaunchConfiguration#copy_private_ip #copy_private_ip} => Boolean
1872
1883
  # * {Types::LaunchConfiguration#copy_tags #copy_tags} => Boolean
1873
1884
  # * {Types::LaunchConfiguration#ec2_launch_template_id #ec2_launch_template_id} => String
@@ -1880,6 +1891,7 @@ module Aws::Mgn
1880
1891
  # @example Request syntax with placeholder values
1881
1892
  #
1882
1893
  # resp = client.update_launch_configuration({
1894
+ # boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
1883
1895
  # copy_private_ip: false,
1884
1896
  # copy_tags: false,
1885
1897
  # launch_disposition: "STOPPED", # accepts STOPPED, STARTED
@@ -1893,6 +1905,7 @@ module Aws::Mgn
1893
1905
  #
1894
1906
  # @example Response structure
1895
1907
  #
1908
+ # resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
1896
1909
  # resp.copy_private_ip #=> Boolean
1897
1910
  # resp.copy_tags #=> Boolean
1898
1911
  # resp.ec2_launch_template_id #=> String
@@ -1989,7 +2002,7 @@ module Aws::Mgn
1989
2002
  # bandwidth_throttling: 1,
1990
2003
  # create_public_ip: false,
1991
2004
  # data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
1992
- # default_large_staging_disk_type: "GP2", # accepts GP2, ST1
2005
+ # default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
1993
2006
  # ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
1994
2007
  # ebs_encryption_key_arn: "ARN",
1995
2008
  # name: "SmallBoundedString",
@@ -1998,7 +2011,8 @@ module Aws::Mgn
1998
2011
  # device_name: "BoundedString",
1999
2012
  # iops: 1,
2000
2013
  # is_boot_disk: false,
2001
- # staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD
2014
+ # staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD, GP3, IO2
2015
+ # throughput: 1,
2002
2016
  # },
2003
2017
  # ],
2004
2018
  # replication_server_instance_type: "EC2InstanceType",
@@ -2017,7 +2031,7 @@ module Aws::Mgn
2017
2031
  # resp.bandwidth_throttling #=> Integer
2018
2032
  # resp.create_public_ip #=> Boolean
2019
2033
  # resp.data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
2020
- # resp.default_large_staging_disk_type #=> String, one of "GP2", "ST1"
2034
+ # resp.default_large_staging_disk_type #=> String, one of "GP2", "ST1", "GP3"
2021
2035
  # resp.ebs_encryption #=> String, one of "DEFAULT", "CUSTOM"
2022
2036
  # resp.ebs_encryption_key_arn #=> String
2023
2037
  # resp.name #=> String
@@ -2025,7 +2039,8 @@ module Aws::Mgn
2025
2039
  # resp.replicated_disks[0].device_name #=> String
2026
2040
  # resp.replicated_disks[0].iops #=> Integer
2027
2041
  # resp.replicated_disks[0].is_boot_disk #=> Boolean
2028
- # resp.replicated_disks[0].staging_disk_type #=> String, one of "AUTO", "GP2", "IO1", "SC1", "ST1", "STANDARD"
2042
+ # resp.replicated_disks[0].staging_disk_type #=> String, one of "AUTO", "GP2", "IO1", "SC1", "ST1", "STANDARD", "GP3", "IO2"
2043
+ # resp.replicated_disks[0].throughput #=> Integer
2029
2044
  # resp.replication_server_instance_type #=> String
2030
2045
  # resp.replication_servers_security_groups_i_ds #=> Array
2031
2046
  # resp.replication_servers_security_groups_i_ds[0] #=> String
@@ -2122,7 +2137,7 @@ module Aws::Mgn
2122
2137
  # bandwidth_throttling: 1,
2123
2138
  # create_public_ip: false,
2124
2139
  # data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
2125
- # default_large_staging_disk_type: "GP2", # accepts GP2, ST1
2140
+ # default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
2126
2141
  # ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
2127
2142
  # ebs_encryption_key_arn: "ARN",
2128
2143
  # replication_configuration_template_id: "ReplicationConfigurationTemplateID", # required
@@ -2142,7 +2157,7 @@ module Aws::Mgn
2142
2157
  # resp.bandwidth_throttling #=> Integer
2143
2158
  # resp.create_public_ip #=> Boolean
2144
2159
  # resp.data_plane_routing #=> String, one of "PRIVATE_IP", "PUBLIC_IP"
2145
- # resp.default_large_staging_disk_type #=> String, one of "GP2", "ST1"
2160
+ # resp.default_large_staging_disk_type #=> String, one of "GP2", "ST1", "GP3"
2146
2161
  # resp.ebs_encryption #=> String, one of "DEFAULT", "CUSTOM"
2147
2162
  # resp.ebs_encryption_key_arn #=> String
2148
2163
  # resp.replication_configuration_template_id #=> String
@@ -2165,7 +2180,8 @@ module Aws::Mgn
2165
2180
  req.send_request(options)
2166
2181
  end
2167
2182
 
2168
- # Updates source server Replication Type by ID.
2183
+ # Allows you to change between the AGENT\_BASED replication type and the
2184
+ # SNAPSHOT\_SHIPPING replication type.
2169
2185
  #
2170
2186
  # @option params [required, String] :replication_type
2171
2187
  # Replication type to which to update source server.
@@ -2278,7 +2294,7 @@ module Aws::Mgn
2278
2294
  params: params,
2279
2295
  config: config)
2280
2296
  context[:gem_name] = 'aws-sdk-mgn'
2281
- context[:gem_version] = '1.9.0'
2297
+ context[:gem_version] = '1.12.0'
2282
2298
  Seahorse::Client::Request.new(handlers, context)
2283
2299
  end
2284
2300
 
@@ -16,6 +16,7 @@ module Aws::Mgn
16
16
  ARN = Shapes::StringShape.new(name: 'ARN')
17
17
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
18
18
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
19
+ BootMode = Shapes::StringShape.new(name: 'BootMode')
19
20
  BoundedString = Shapes::StringShape.new(name: 'BoundedString')
20
21
  CPU = Shapes::StructureShape.new(name: 'CPU')
21
22
  ChangeServerLifeCycleStateRequest = Shapes::StructureShape.new(name: 'ChangeServerLifeCycleStateRequest')
@@ -373,6 +374,7 @@ module Aws::Mgn
373
374
 
374
375
  JobsList.member = Shapes::ShapeRef.new(shape: Job)
375
376
 
377
+ LaunchConfiguration.add_member(:boot_mode, Shapes::ShapeRef.new(shape: BootMode, location_name: "bootMode"))
376
378
  LaunchConfiguration.add_member(:copy_private_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "copyPrivateIp"))
377
379
  LaunchConfiguration.add_member(:copy_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "copyTags"))
378
380
  LaunchConfiguration.add_member(:ec2_launch_template_id, Shapes::ShapeRef.new(shape: BoundedString, location_name: "ec2LaunchTemplateID"))
@@ -478,6 +480,7 @@ module Aws::Mgn
478
480
  ReplicationConfigurationReplicatedDisk.add_member(:iops, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "iops"))
479
481
  ReplicationConfigurationReplicatedDisk.add_member(:is_boot_disk, Shapes::ShapeRef.new(shape: Boolean, location_name: "isBootDisk"))
480
482
  ReplicationConfigurationReplicatedDisk.add_member(:staging_disk_type, Shapes::ShapeRef.new(shape: ReplicationConfigurationReplicatedDiskStagingDiskType, location_name: "stagingDiskType"))
483
+ ReplicationConfigurationReplicatedDisk.add_member(:throughput, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "throughput"))
481
484
  ReplicationConfigurationReplicatedDisk.struct_class = Types::ReplicationConfigurationReplicatedDisk
482
485
 
483
486
  ReplicationConfigurationReplicatedDisks.member = Shapes::ShapeRef.new(shape: ReplicationConfigurationReplicatedDisk)
@@ -601,6 +604,7 @@ module Aws::Mgn
601
604
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeys, required: true, location: "querystring", location_name: "tagKeys"))
602
605
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
603
606
 
607
+ UpdateLaunchConfigurationRequest.add_member(:boot_mode, Shapes::ShapeRef.new(shape: BootMode, location_name: "bootMode"))
604
608
  UpdateLaunchConfigurationRequest.add_member(:copy_private_ip, Shapes::ShapeRef.new(shape: Boolean, location_name: "copyPrivateIp"))
605
609
  UpdateLaunchConfigurationRequest.add_member(:copy_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "copyTags"))
606
610
  UpdateLaunchConfigurationRequest.add_member(:launch_disposition, Shapes::ShapeRef.new(shape: LaunchDisposition, location_name: "launchDisposition"))
@@ -105,11 +105,11 @@ module Aws::Mgn
105
105
  # @return [String]
106
106
  #
107
107
  # @!attribute [rw] resource_id
108
- # A conflict occured when prompting for the Resource ID.
108
+ # A conflict occurred when prompting for the Resource ID.
109
109
  # @return [String]
110
110
  #
111
111
  # @!attribute [rw] resource_type
112
- # A conflict occured when prompting for resource type.
112
+ # A conflict occurred when prompting for resource type.
113
113
  # @return [String]
114
114
  #
115
115
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ConflictException AWS API Documentation
@@ -131,7 +131,7 @@ module Aws::Mgn
131
131
  # bandwidth_throttling: 1, # required
132
132
  # create_public_ip: false, # required
133
133
  # data_plane_routing: "PRIVATE_IP", # required, accepts PRIVATE_IP, PUBLIC_IP
134
- # default_large_staging_disk_type: "GP2", # required, accepts GP2, ST1
134
+ # default_large_staging_disk_type: "GP2", # required, accepts GP2, ST1, GP3
135
135
  # ebs_encryption: "DEFAULT", # required, accepts DEFAULT, CUSTOM
136
136
  # ebs_encryption_key_arn: "ARN",
137
137
  # replication_server_instance_type: "EC2InstanceType", # required
@@ -167,17 +167,17 @@ module Aws::Mgn
167
167
  # @return [String]
168
168
  #
169
169
  # @!attribute [rw] default_large_staging_disk_type
170
- # Request to configure the Staging Disk EBS volume type to "gp2"
170
+ # Request to configure the default large staging disk EBS volume type
171
171
  # during Replication Settings template creation.
172
172
  # @return [String]
173
173
  #
174
174
  # @!attribute [rw] ebs_encryption
175
- # Request to configure EBS enryption during Replication Settings
175
+ # Request to configure EBS encryption during Replication Settings
176
176
  # template creation.
177
177
  # @return [String]
178
178
  #
179
179
  # @!attribute [rw] ebs_encryption_key_arn
180
- # Request to configure an EBS enryption key during Replication
180
+ # Request to configure an EBS encryption key during Replication
181
181
  # Settings template creation.
182
182
  # @return [String]
183
183
  #
@@ -187,8 +187,8 @@ module Aws::Mgn
187
187
  # @return [String]
188
188
  #
189
189
  # @!attribute [rw] replication_servers_security_groups_i_ds
190
- # Request to configure the Replication Server Secuirity group ID
191
- # during Replication Settings template creation.
190
+ # Request to configure the Replication Server Security group ID during
191
+ # Replication Settings template creation.
192
192
  # @return [Array<String>]
193
193
  #
194
194
  # @!attribute [rw] staging_area_subnet_id
@@ -197,7 +197,7 @@ module Aws::Mgn
197
197
  # @return [String]
198
198
  #
199
199
  # @!attribute [rw] staging_area_tags
200
- # Request to configure Staiging Area tags during Replication Settings
200
+ # Request to configure Staging Area tags during Replication Settings
201
201
  # template creation.
202
202
  # @return [Hash<String,String>]
203
203
  #
@@ -269,7 +269,7 @@ module Aws::Mgn
269
269
  # @return [String]
270
270
  #
271
271
  # @!attribute [rw] lag_duration
272
- # Request to query data replication lag durating.
272
+ # Request to query data replication lag duration.
273
273
  # @return [String]
274
274
  #
275
275
  # @!attribute [rw] last_snapshot_date_time
@@ -352,7 +352,7 @@ module Aws::Mgn
352
352
  include Aws::Structure
353
353
  end
354
354
 
355
- # Data replication intiation step.
355
+ # Data replication initiation step.
356
356
  #
357
357
  # @!attribute [rw] name
358
358
  # Request to query data initiation step name.
@@ -526,11 +526,11 @@ module Aws::Mgn
526
526
  # @return [Types::DescribeJobsRequestFilters]
527
527
  #
528
528
  # @!attribute [rw] max_results
529
- # Request to describe Job log by max results.
529
+ # Request to describe job log items by max results.
530
530
  # @return [Integer]
531
531
  #
532
532
  # @!attribute [rw] next_token
533
- # Request to describe Job logby next token.
533
+ # Request to describe job log items by next token.
534
534
  # @return [String]
535
535
  #
536
536
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeJobsRequest AWS API Documentation
@@ -563,7 +563,7 @@ module Aws::Mgn
563
563
  # @return [Array<String>]
564
564
  #
565
565
  # @!attribute [rw] to_date
566
- # Request to describe Job log by last date.
566
+ # Request to describe job log items by last date.
567
567
  # @return [String]
568
568
  #
569
569
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeJobsRequestFilters AWS API Documentation
@@ -825,7 +825,7 @@ module Aws::Mgn
825
825
  # }
826
826
  #
827
827
  # @!attribute [rw] source_server_id
828
- # Request to finalize Cutover by Soure Server ID.
828
+ # Request to finalize Cutover by Source Server ID.
829
829
  # @return [String]
830
830
  #
831
831
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/FinalizeCutoverRequest AWS API Documentation
@@ -863,7 +863,7 @@ module Aws::Mgn
863
863
  # }
864
864
  #
865
865
  # @!attribute [rw] source_server_id
866
- # Request to get Replication Configuaration by Source Server ID.
866
+ # Request to get Replication Configuration by Source Server ID.
867
867
  # @return [String]
868
868
  #
869
869
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/GetReplicationConfigurationRequest AWS API Documentation
@@ -970,7 +970,7 @@ module Aws::Mgn
970
970
  # @return [String]
971
971
  #
972
972
  # @!attribute [rw] tags
973
- # Tags associated with spcific Job.
973
+ # Tags associated with specific Job.
974
974
  # @return [Hash<String,String>]
975
975
  #
976
976
  # @!attribute [rw] type
@@ -1046,6 +1046,10 @@ module Aws::Mgn
1046
1046
  include Aws::Structure
1047
1047
  end
1048
1048
 
1049
+ # @!attribute [rw] boot_mode
1050
+ # Launch configuration boot mode.
1051
+ # @return [String]
1052
+ #
1049
1053
  # @!attribute [rw] copy_private_ip
1050
1054
  # Copy Private IP during Launch Configuration.
1051
1055
  # @return [Boolean]
@@ -1055,33 +1059,33 @@ module Aws::Mgn
1055
1059
  # @return [Boolean]
1056
1060
  #
1057
1061
  # @!attribute [rw] ec2_launch_template_id
1058
- # Configure EC2 lauch configuration template ID.
1062
+ # Launch configuration EC2 Launch template ID.
1059
1063
  # @return [String]
1060
1064
  #
1061
1065
  # @!attribute [rw] launch_disposition
1062
- # Configure launch dispostion for launch configuration.
1066
+ # Launch disposition for launch configuration.
1063
1067
  # @return [String]
1064
1068
  #
1065
1069
  # @!attribute [rw] licensing
1066
- # Configure launch configuration OS licensing.
1070
+ # Launch configuration OS licensing.
1067
1071
  # @return [Types::Licensing]
1068
1072
  #
1069
1073
  # @!attribute [rw] name
1070
- # Configure launch configuration name.
1074
+ # Launch configuration name.
1071
1075
  # @return [String]
1072
1076
  #
1073
1077
  # @!attribute [rw] source_server_id
1074
- # Configure launch configuration Source Server ID.
1078
+ # Launch configuration Source Server ID.
1075
1079
  # @return [String]
1076
1080
  #
1077
1081
  # @!attribute [rw] target_instance_type_right_sizing_method
1078
- # Configure launch configuration Target instance type right sizing
1079
- # method.
1082
+ # Launch configuration Target instance type right sizing method.
1080
1083
  # @return [String]
1081
1084
  #
1082
1085
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchConfiguration AWS API Documentation
1083
1086
  #
1084
1087
  class LaunchConfiguration < Struct.new(
1088
+ :boot_mode,
1085
1089
  :copy_private_ip,
1086
1090
  :copy_tags,
1087
1091
  :ec2_launch_template_id,
@@ -1094,18 +1098,18 @@ module Aws::Mgn
1094
1098
  include Aws::Structure
1095
1099
  end
1096
1100
 
1097
- # Configure launced instance.
1101
+ # Launched instance.
1098
1102
  #
1099
1103
  # @!attribute [rw] ec2_instance_id
1100
- # Configure launced instance EC2 ID.
1104
+ # Launched instance EC2 ID.
1101
1105
  # @return [String]
1102
1106
  #
1103
1107
  # @!attribute [rw] first_boot
1104
- # Configure launced instance first boot.
1108
+ # Launched instance first boot.
1105
1109
  # @return [String]
1106
1110
  #
1107
1111
  # @!attribute [rw] job_id
1108
- # Configure launced instance Job ID.
1112
+ # Launched instance Job ID.
1109
1113
  # @return [String]
1110
1114
  #
1111
1115
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchedInstance AWS API Documentation
@@ -1256,7 +1260,7 @@ module Aws::Mgn
1256
1260
  # Lifecycle last Test.
1257
1261
  #
1258
1262
  # @!attribute [rw] finalized
1259
- # Lifecycle last Test finlized.
1263
+ # Lifecycle last Test finalized.
1260
1264
  # @return [Types::LifeCycleLastTestFinalized]
1261
1265
  #
1262
1266
  # @!attribute [rw] initiated
@@ -1277,7 +1281,7 @@ module Aws::Mgn
1277
1281
  include Aws::Structure
1278
1282
  end
1279
1283
 
1280
- # Lifecycle last Test finlized.
1284
+ # Lifecycle last Test finalized.
1281
1285
  #
1282
1286
  # @!attribute [rw] api_call_date_time
1283
1287
  # Lifecycle Test failed API call date and time.
@@ -1523,7 +1527,8 @@ module Aws::Mgn
1523
1527
  # device_name: "BoundedString",
1524
1528
  # iops: 1,
1525
1529
  # is_boot_disk: false,
1526
- # staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD
1530
+ # staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD, GP3, IO2
1531
+ # throughput: 1,
1527
1532
  # }
1528
1533
  #
1529
1534
  # @!attribute [rw] device_name
@@ -1542,13 +1547,18 @@ module Aws::Mgn
1542
1547
  # Replication Configuration replicated disk staging disk type.
1543
1548
  # @return [String]
1544
1549
  #
1550
+ # @!attribute [rw] throughput
1551
+ # Replication Configuration replicated disk throughput.
1552
+ # @return [Integer]
1553
+ #
1545
1554
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ReplicationConfigurationReplicatedDisk AWS API Documentation
1546
1555
  #
1547
1556
  class ReplicationConfigurationReplicatedDisk < Struct.new(
1548
1557
  :device_name,
1549
1558
  :iops,
1550
1559
  :is_boot_disk,
1551
- :staging_disk_type)
1560
+ :staging_disk_type,
1561
+ :throughput)
1552
1562
  SENSITIVE = []
1553
1563
  include Aws::Structure
1554
1564
  end
@@ -1563,7 +1573,7 @@ module Aws::Mgn
1563
1573
  # @return [Boolean]
1564
1574
  #
1565
1575
  # @!attribute [rw] bandwidth_throttling
1566
- # Replication Configuration template bandwidth throtting.
1576
+ # Replication Configuration template bandwidth throttling.
1567
1577
  # @return [Integer]
1568
1578
  #
1569
1579
  # @!attribute [rw] create_public_ip
@@ -1575,7 +1585,7 @@ module Aws::Mgn
1575
1585
  # @return [String]
1576
1586
  #
1577
1587
  # @!attribute [rw] default_large_staging_disk_type
1578
- # Replication Configuration template use dedault large Staging Disk
1588
+ # Replication Configuration template use default large Staging Disk
1579
1589
  # type.
1580
1590
  # @return [String]
1581
1591
  #
@@ -1588,7 +1598,7 @@ module Aws::Mgn
1588
1598
  # @return [String]
1589
1599
  #
1590
1600
  # @!attribute [rw] replication_configuration_template_id
1591
- # Replication Configuration template template ID.
1601
+ # Replication Configuration template ID.
1592
1602
  # @return [String]
1593
1603
  #
1594
1604
  # @!attribute [rw] replication_server_instance_type
@@ -1697,7 +1707,7 @@ module Aws::Mgn
1697
1707
  # @return [String]
1698
1708
  #
1699
1709
  # @!attribute [rw] resource_id
1700
- # Exceeded the service quota resource Id.
1710
+ # Exceeded the service quota resource ID.
1701
1711
  # @return [String]
1702
1712
  #
1703
1713
  # @!attribute [rw] resource_type
@@ -2018,7 +2028,7 @@ module Aws::Mgn
2018
2028
  include Aws::Structure
2019
2029
  end
2020
2030
 
2021
- # Unitialized account exception.
2031
+ # Uninitialized account exception.
2022
2032
  #
2023
2033
  # @!attribute [rw] code
2024
2034
  # @return [String]
@@ -2064,6 +2074,7 @@ module Aws::Mgn
2064
2074
  # data as a hash:
2065
2075
  #
2066
2076
  # {
2077
+ # boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
2067
2078
  # copy_private_ip: false,
2068
2079
  # copy_tags: false,
2069
2080
  # launch_disposition: "STOPPED", # accepts STOPPED, STARTED
@@ -2075,6 +2086,10 @@ module Aws::Mgn
2075
2086
  # target_instance_type_right_sizing_method: "NONE", # accepts NONE, BASIC
2076
2087
  # }
2077
2088
  #
2089
+ # @!attribute [rw] boot_mode
2090
+ # Update Launch configuration boot mode request.
2091
+ # @return [String]
2092
+ #
2078
2093
  # @!attribute [rw] copy_private_ip
2079
2094
  # Update Launch configuration copy Private IP request.
2080
2095
  # @return [Boolean]
@@ -2106,6 +2121,7 @@ module Aws::Mgn
2106
2121
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/UpdateLaunchConfigurationRequest AWS API Documentation
2107
2122
  #
2108
2123
  class UpdateLaunchConfigurationRequest < Struct.new(
2124
+ :boot_mode,
2109
2125
  :copy_private_ip,
2110
2126
  :copy_tags,
2111
2127
  :launch_disposition,
@@ -2125,7 +2141,7 @@ module Aws::Mgn
2125
2141
  # bandwidth_throttling: 1,
2126
2142
  # create_public_ip: false,
2127
2143
  # data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
2128
- # default_large_staging_disk_type: "GP2", # accepts GP2, ST1
2144
+ # default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
2129
2145
  # ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
2130
2146
  # ebs_encryption_key_arn: "ARN",
2131
2147
  # name: "SmallBoundedString",
@@ -2134,7 +2150,8 @@ module Aws::Mgn
2134
2150
  # device_name: "BoundedString",
2135
2151
  # iops: 1,
2136
2152
  # is_boot_disk: false,
2137
- # staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD
2153
+ # staging_disk_type: "AUTO", # accepts AUTO, GP2, IO1, SC1, ST1, STANDARD, GP3, IO2
2154
+ # throughput: 1,
2138
2155
  # },
2139
2156
  # ],
2140
2157
  # replication_server_instance_type: "EC2InstanceType",
@@ -2243,7 +2260,7 @@ module Aws::Mgn
2243
2260
  # bandwidth_throttling: 1,
2244
2261
  # create_public_ip: false,
2245
2262
  # data_plane_routing: "PRIVATE_IP", # accepts PRIVATE_IP, PUBLIC_IP
2246
- # default_large_staging_disk_type: "GP2", # accepts GP2, ST1
2263
+ # default_large_staging_disk_type: "GP2", # accepts GP2, ST1, GP3
2247
2264
  # ebs_encryption: "DEFAULT", # accepts DEFAULT, CUSTOM
2248
2265
  # ebs_encryption_key_arn: "ARN",
2249
2266
  # replication_configuration_template_id: "ReplicationConfigurationTemplateID", # required
data/lib/aws-sdk-mgn.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-mgn/customizations'
48
48
  # @!group service
49
49
  module Aws::Mgn
50
50
 
51
- GEM_VERSION = '1.9.0'
51
+ GEM_VERSION = '1.12.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mgn
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-03-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement