aws-sdk-mgn 1.73.0 → 1.75.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: f7a93697d8e9623a91d7331ced60349d2ef4ff47486312cecbd54715651f1e11
4
- data.tar.gz: 5859cf24955bca04e1b15c1b66a64bb047fc0916d2757c5a7393308e4f005091
3
+ metadata.gz: c4d7ed216a47c7efa8c7aea8ac60cef97a039b9b8c37830cab6463709a43dd46
4
+ data.tar.gz: 1b413f4364ebd27892a501259a49c39ad3589afef348153af6c9563ace3bcb87
5
5
  SHA512:
6
- metadata.gz: d0264f24a3ea1cbc5ca0b1ef328edcc5484cdb38728a182ca0a23182aa2d35edb67cb799826a6e2d9b88019d01800ee94e19eeef78fd83871030bb207fd9e916
7
- data.tar.gz: 33cbf390b21bb94f1e62a88706e033d2957bd36c34e2e408e6a2003b4c96668ab8ac0750e4b01e2e386d9cadb32afb13597942c5f4655f9d47673b3b2604d12e
6
+ metadata.gz: 2e1a4860da712ab2956113df8dcc1f034a246b7548b95704f16a73889b446652b97fd378bfef469e0e39911d9c773a0f0d9fc216f900dcf01e280e49ef010c98
7
+ data.tar.gz: 4cbd369bf98ea6006b65dedade9a13f1994d235bdaff3abe7904328c5ad2f0e39d7d7cf2140d026b37847dc23724d5ee9cd00926de27b65801ee04b7d50eaef0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2026-09-08)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for configuring the EBS volume initialization rate and delete on termination behavior in launch configuration template
8
+
9
+ 1.74.0 (2026-09-02)
10
+ ------------------
11
+
12
+ * Feature - AWS Transform for migrations adds a second network migration option - apply your source security posture to existing VPCs. Upload a source network file with firewall rules, tag the in-scope VPCs, and AWS Transform matches source subnets to them by CIDR and generates the security groups.
13
+
4
14
  1.73.0 (2026-07-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.73.0
1
+ 1.75.0
@@ -1015,11 +1015,15 @@ module Aws::Mgn
1015
1015
  # volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
1016
1016
  # iops: 1,
1017
1017
  # throughput: 1,
1018
+ # volume_initialization_rate: 1,
1019
+ # delete_on_termination: false,
1018
1020
  # },
1019
1021
  # large_volume_conf: {
1020
1022
  # volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
1021
1023
  # iops: 1,
1022
1024
  # throughput: 1,
1025
+ # volume_initialization_rate: 1,
1026
+ # delete_on_termination: false,
1023
1027
  # },
1024
1028
  # enable_parameters_encryption: false,
1025
1029
  # parameters_encryption_key: "KmsKeyArn",
@@ -1060,9 +1064,13 @@ module Aws::Mgn
1060
1064
  # resp.small_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
1061
1065
  # resp.small_volume_conf.iops #=> Integer
1062
1066
  # resp.small_volume_conf.throughput #=> Integer
1067
+ # resp.small_volume_conf.volume_initialization_rate #=> Integer
1068
+ # resp.small_volume_conf.delete_on_termination #=> Boolean
1063
1069
  # resp.large_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
1064
1070
  # resp.large_volume_conf.iops #=> Integer
1065
1071
  # resp.large_volume_conf.throughput #=> Integer
1072
+ # resp.large_volume_conf.volume_initialization_rate #=> Integer
1073
+ # resp.large_volume_conf.delete_on_termination #=> Boolean
1066
1074
  # resp.enable_parameters_encryption #=> Boolean
1067
1075
  # resp.parameters_encryption_key #=> String
1068
1076
  #
@@ -1096,6 +1104,16 @@ module Aws::Mgn
1096
1104
  # @option params [String] :target_deployment
1097
1105
  # The target deployment configuration for the migrated network.
1098
1106
  #
1107
+ # @option params [String] :vpc_provisioning_strategy
1108
+ # Specifies whether to create new target VPCs or use existing ones. Set
1109
+ # to `CREATE_NEW` to provision new target VPCs as part of the migration,
1110
+ # or `USE_EXISTING` to migrate into existing VPCs in the target account.
1111
+ #
1112
+ # @option params [Array<Types::CidrMapping>] :cidr_mappings
1113
+ # A list of CIDR mappings that map original source CIDR ranges to
1114
+ # updated target CIDR ranges. CIDR mappings can be provided only when
1115
+ # `vpcProvisioningStrategy` is set to `USE_EXISTING`.
1116
+ #
1099
1117
  # @option params [Hash<String,String>] :tags
1100
1118
  # Tags to assign to the network migration definition.
1101
1119
  #
@@ -1113,6 +1131,8 @@ module Aws::Mgn
1113
1131
  # * {Types::NetworkMigrationDefinition#target_s3_configuration #target_s3_configuration} => Types::TargetS3Configuration
1114
1132
  # * {Types::NetworkMigrationDefinition#target_network #target_network} => Types::TargetNetwork
1115
1133
  # * {Types::NetworkMigrationDefinition#target_deployment #target_deployment} => String
1134
+ # * {Types::NetworkMigrationDefinition#vpc_provisioning_strategy #vpc_provisioning_strategy} => String
1135
+ # * {Types::NetworkMigrationDefinition#cidr_mappings #cidr_mappings} => Array&lt;Types::CidrMapping&gt;
1116
1136
  # * {Types::NetworkMigrationDefinition#created_at #created_at} => Time
1117
1137
  # * {Types::NetworkMigrationDefinition#updated_at #updated_at} => Time
1118
1138
  # * {Types::NetworkMigrationDefinition#tags #tags} => Hash&lt;String,String&gt;
@@ -1200,6 +1220,13 @@ module Aws::Mgn
1200
1220
  # inspection_cidr: "Cidr",
1201
1221
  # },
1202
1222
  # target_deployment: "SINGLE_ACCOUNT", # accepts SINGLE_ACCOUNT, MULTI_ACCOUNT
1223
+ # vpc_provisioning_strategy: "CREATE_NEW", # accepts CREATE_NEW, USE_EXISTING
1224
+ # cidr_mappings: [
1225
+ # {
1226
+ # original_cidr: "Cidr", # required
1227
+ # updated_cidr: "Cidr", # required
1228
+ # },
1229
+ # ],
1203
1230
  # tags: {
1204
1231
  # "TagKey" => "TagValue",
1205
1232
  # },
@@ -1226,6 +1253,10 @@ module Aws::Mgn
1226
1253
  # resp.target_network.outbound_cidr #=> String
1227
1254
  # resp.target_network.inspection_cidr #=> String
1228
1255
  # resp.target_deployment #=> String, one of "SINGLE_ACCOUNT", "MULTI_ACCOUNT"
1256
+ # resp.vpc_provisioning_strategy #=> String, one of "CREATE_NEW", "USE_EXISTING"
1257
+ # resp.cidr_mappings #=> Array
1258
+ # resp.cidr_mappings[0].original_cidr #=> String
1259
+ # resp.cidr_mappings[0].updated_cidr #=> String
1229
1260
  # resp.created_at #=> Time
1230
1261
  # resp.updated_at #=> Time
1231
1262
  # resp.tags #=> Hash
@@ -1743,9 +1774,9 @@ module Aws::Mgn
1743
1774
  req.send_request(options)
1744
1775
  end
1745
1776
 
1746
- # Returns a list of Jobs. Use the JobsID and fromDate and toData filters
1777
+ # Returns a list of Jobs. Use the jobIDs and fromDate and toDate filters
1747
1778
  # to limit which jobs are returned. The response is sorted by
1748
- # creationDataTime - latest date first. Jobs are normally created by the
1779
+ # creationDateTime - latest date first. Jobs are normally created by the
1749
1780
  # StartTest, StartCutover, and TerminateTargetInstances APIs. Jobs are
1750
1781
  # also created by DiagnosticLaunch and TerminateDiagnosticInstances,
1751
1782
  # which are APIs available only to *Support* and only used in response
@@ -1892,9 +1923,13 @@ module Aws::Mgn
1892
1923
  # resp.items[0].small_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
1893
1924
  # resp.items[0].small_volume_conf.iops #=> Integer
1894
1925
  # resp.items[0].small_volume_conf.throughput #=> Integer
1926
+ # resp.items[0].small_volume_conf.volume_initialization_rate #=> Integer
1927
+ # resp.items[0].small_volume_conf.delete_on_termination #=> Boolean
1895
1928
  # resp.items[0].large_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
1896
1929
  # resp.items[0].large_volume_conf.iops #=> Integer
1897
1930
  # resp.items[0].large_volume_conf.throughput #=> Integer
1931
+ # resp.items[0].large_volume_conf.volume_initialization_rate #=> Integer
1932
+ # resp.items[0].large_volume_conf.delete_on_termination #=> Boolean
1898
1933
  # resp.items[0].enable_parameters_encryption #=> Boolean
1899
1934
  # resp.items[0].parameters_encryption_key #=> String
1900
1935
  # resp.next_token #=> String
@@ -1908,8 +1943,8 @@ module Aws::Mgn
1908
1943
  req.send_request(options)
1909
1944
  end
1910
1945
 
1911
- # Lists all ReplicationConfigurationTemplates, filtered by Source Server
1912
- # IDs.
1946
+ # Lists all ReplicationConfigurationTemplates, filtered by replication
1947
+ # configuration template IDs.
1913
1948
  #
1914
1949
  # @option params [Array<String>] :replication_configuration_template_i_ds
1915
1950
  # Request to describe Replication Configuration template by template
@@ -1986,7 +2021,7 @@ module Aws::Mgn
1986
2021
  # Request to filter Source Servers list by next token.
1987
2022
  #
1988
2023
  # @option params [String] :account_id
1989
- # Request to filter Source Servers list by Accoun ID.
2024
+ # Request to filter Source Servers list by Account ID.
1990
2025
  #
1991
2026
  # @return [Types::DescribeSourceServersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1992
2027
  #
@@ -2209,11 +2244,11 @@ module Aws::Mgn
2209
2244
  # of these source servers will be terminated / deleted within 90
2210
2245
  # minutes. Launched Test or Cutover instances will NOT be terminated. If
2211
2246
  # the agent on the source server has not been prevented from
2212
- # communicating with the Application Migration Service service, then it
2213
- # will receive a command to uninstall itself (within approximately 10
2214
- # minutes). The following properties of the SourceServer will be changed
2215
- # immediately: dataReplicationInfo.dataReplicationState will be set to
2216
- # DISCONNECTED; The totalStorageBytes property for each of
2247
+ # communicating with Application Migration Service, then it will receive
2248
+ # a command to uninstall itself (within approximately 10 minutes). The
2249
+ # following properties of the SourceServer will be changed immediately:
2250
+ # dataReplicationInfo.dataReplicationState will be set to DISCONNECTED;
2251
+ # The totalStorageBytes property for each of
2217
2252
  # dataReplicationInfo.replicatedDisks will be set to zero;
2218
2253
  # dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration
2219
2254
  # will be nullified.
@@ -2342,7 +2377,7 @@ module Aws::Mgn
2342
2377
  # SourceServer will be changed immediately:
2343
2378
  # dataReplicationInfo.dataReplicationState will be changed to
2344
2379
  # DISCONNECTED; The SourceServer.lifeCycle.state will be changed to
2345
- # CUTOVER; The totalStorageBytes property fo each of
2380
+ # CUTOVER; The totalStorageBytes property for each of
2346
2381
  # dataReplicationInfo.replicatedDisks will be set to zero;
2347
2382
  # dataReplicationInfo.lagDuration and dataReplicationInfo.lagDuration
2348
2383
  # will be nullified.
@@ -2547,6 +2582,8 @@ module Aws::Mgn
2547
2582
  # * {Types::NetworkMigrationDefinition#target_s3_configuration #target_s3_configuration} => Types::TargetS3Configuration
2548
2583
  # * {Types::NetworkMigrationDefinition#target_network #target_network} => Types::TargetNetwork
2549
2584
  # * {Types::NetworkMigrationDefinition#target_deployment #target_deployment} => String
2585
+ # * {Types::NetworkMigrationDefinition#vpc_provisioning_strategy #vpc_provisioning_strategy} => String
2586
+ # * {Types::NetworkMigrationDefinition#cidr_mappings #cidr_mappings} => Array&lt;Types::CidrMapping&gt;
2550
2587
  # * {Types::NetworkMigrationDefinition#created_at #created_at} => Time
2551
2588
  # * {Types::NetworkMigrationDefinition#updated_at #updated_at} => Time
2552
2589
  # * {Types::NetworkMigrationDefinition#tags #tags} => Hash&lt;String,String&gt;
@@ -2612,6 +2649,10 @@ module Aws::Mgn
2612
2649
  # resp.target_network.outbound_cidr #=> String
2613
2650
  # resp.target_network.inspection_cidr #=> String
2614
2651
  # resp.target_deployment #=> String, one of "SINGLE_ACCOUNT", "MULTI_ACCOUNT"
2652
+ # resp.vpc_provisioning_strategy #=> String, one of "CREATE_NEW", "USE_EXISTING"
2653
+ # resp.cidr_mappings #=> Array
2654
+ # resp.cidr_mappings[0].original_cidr #=> String
2655
+ # resp.cidr_mappings[0].updated_cidr #=> String
2615
2656
  # resp.created_at #=> Time
2616
2657
  # resp.updated_at #=> Time
2617
2658
  # resp.tags #=> Hash
@@ -4546,8 +4587,8 @@ module Aws::Mgn
4546
4587
 
4547
4588
  # Archives specific Source Servers by setting the
4548
4589
  # SourceServer.isArchived property to true for specified SourceServers
4549
- # by ID. This command only works for SourceServers with a lifecycle.
4550
- # state which equals DISCONNECTED or CUTOVER.
4590
+ # by ID. This command only works for SourceServers with a lifecycle
4591
+ # state that equals DISCONNECTED or CUTOVER.
4551
4592
  #
4552
4593
  # @option params [required, String] :source_server_id
4553
4594
  # Mark as archived by Source Server ID.
@@ -5392,7 +5433,7 @@ module Aws::Mgn
5392
5433
  # Start export request s3 bucket owner.
5393
5434
  #
5394
5435
  # @option params [Hash<String,String>] :tags
5395
- # Start import request tags.
5436
+ # Start export request tags.
5396
5437
  #
5397
5438
  # @return [Types::StartExportResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5398
5439
  #
@@ -6542,7 +6583,7 @@ module Aws::Mgn
6542
6583
 
6543
6584
  # Updates multiple LaunchConfigurations by Source Server ID.
6544
6585
  #
6545
- # <note markdown="1"> bootMode valid values are `LEGACY_BIOS | UEFI`
6586
+ # <note markdown="1"> bootMode valid values are `LEGACY_BIOS | UEFI | USE_SOURCE`
6546
6587
  #
6547
6588
  # </note>
6548
6589
  #
@@ -6571,7 +6612,7 @@ module Aws::Mgn
6571
6612
  # Update Launch configuration boot mode request.
6572
6613
  #
6573
6614
  # @option params [Types::PostLaunchActions] :post_launch_actions
6574
- # Post Launch Actions to executed on the Test or Cutover instance.
6615
+ # Post Launch Actions to be executed on the Test or Cutover instance.
6575
6616
  #
6576
6617
  # @option params [Boolean] :enable_map_auto_tagging
6577
6618
  # Enable map auto tagging.
@@ -6799,11 +6840,15 @@ module Aws::Mgn
6799
6840
  # volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
6800
6841
  # iops: 1,
6801
6842
  # throughput: 1,
6843
+ # volume_initialization_rate: 1,
6844
+ # delete_on_termination: false,
6802
6845
  # },
6803
6846
  # large_volume_conf: {
6804
6847
  # volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
6805
6848
  # iops: 1,
6806
6849
  # throughput: 1,
6850
+ # volume_initialization_rate: 1,
6851
+ # delete_on_termination: false,
6807
6852
  # },
6808
6853
  # enable_parameters_encryption: false,
6809
6854
  # parameters_encryption_key: "ARN",
@@ -6844,9 +6889,13 @@ module Aws::Mgn
6844
6889
  # resp.small_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
6845
6890
  # resp.small_volume_conf.iops #=> Integer
6846
6891
  # resp.small_volume_conf.throughput #=> Integer
6892
+ # resp.small_volume_conf.volume_initialization_rate #=> Integer
6893
+ # resp.small_volume_conf.delete_on_termination #=> Boolean
6847
6894
  # resp.large_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
6848
6895
  # resp.large_volume_conf.iops #=> Integer
6849
6896
  # resp.large_volume_conf.throughput #=> Integer
6897
+ # resp.large_volume_conf.volume_initialization_rate #=> Integer
6898
+ # resp.large_volume_conf.delete_on_termination #=> Boolean
6850
6899
  # resp.enable_parameters_encryption #=> Boolean
6851
6900
  # resp.parameters_encryption_key #=> String
6852
6901
  #
@@ -6883,6 +6932,16 @@ module Aws::Mgn
6883
6932
  # @option params [String] :target_deployment
6884
6933
  # The updated target deployment configuration.
6885
6934
  #
6935
+ # @option params [String] :vpc_provisioning_strategy
6936
+ # Updates whether the migration creates new target VPCs or uses existing
6937
+ # ones. Set to `USE_EXISTING` to migrate into existing VPCs in the
6938
+ # target account, or to `CREATE_NEW` to provision new target VPCs.
6939
+ #
6940
+ # @option params [Array<Types::CidrMapping>] :cidr_mappings
6941
+ # The updated list of CIDR mappings that map original source CIDR ranges
6942
+ # to updated target CIDR ranges. CIDR mappings can be provided only when
6943
+ # `vpcProvisioningStrategy` is set to `USE_EXISTING`.
6944
+ #
6886
6945
  # @option params [Hash<String,String>] :scope_tags
6887
6946
  # The updated scope tags for the network migration definition.
6888
6947
  #
@@ -6896,6 +6955,8 @@ module Aws::Mgn
6896
6955
  # * {Types::NetworkMigrationDefinition#target_s3_configuration #target_s3_configuration} => Types::TargetS3Configuration
6897
6956
  # * {Types::NetworkMigrationDefinition#target_network #target_network} => Types::TargetNetwork
6898
6957
  # * {Types::NetworkMigrationDefinition#target_deployment #target_deployment} => String
6958
+ # * {Types::NetworkMigrationDefinition#vpc_provisioning_strategy #vpc_provisioning_strategy} => String
6959
+ # * {Types::NetworkMigrationDefinition#cidr_mappings #cidr_mappings} => Array&lt;Types::CidrMapping&gt;
6899
6960
  # * {Types::NetworkMigrationDefinition#created_at #created_at} => Time
6900
6961
  # * {Types::NetworkMigrationDefinition#updated_at #updated_at} => Time
6901
6962
  # * {Types::NetworkMigrationDefinition#tags #tags} => Hash&lt;String,String&gt;
@@ -6984,6 +7045,13 @@ module Aws::Mgn
6984
7045
  # inspection_cidr: "Cidr",
6985
7046
  # },
6986
7047
  # target_deployment: "SINGLE_ACCOUNT", # accepts SINGLE_ACCOUNT, MULTI_ACCOUNT
7048
+ # vpc_provisioning_strategy: "CREATE_NEW", # accepts CREATE_NEW, USE_EXISTING
7049
+ # cidr_mappings: [
7050
+ # {
7051
+ # original_cidr: "Cidr", # required
7052
+ # updated_cidr: "Cidr", # required
7053
+ # },
7054
+ # ],
6987
7055
  # scope_tags: {
6988
7056
  # "ScopeTagKey" => "ScopeTagValue",
6989
7057
  # },
@@ -7007,6 +7075,10 @@ module Aws::Mgn
7007
7075
  # resp.target_network.outbound_cidr #=> String
7008
7076
  # resp.target_network.inspection_cidr #=> String
7009
7077
  # resp.target_deployment #=> String, one of "SINGLE_ACCOUNT", "MULTI_ACCOUNT"
7078
+ # resp.vpc_provisioning_strategy #=> String, one of "CREATE_NEW", "USE_EXISTING"
7079
+ # resp.cidr_mappings #=> Array
7080
+ # resp.cidr_mappings[0].original_cidr #=> String
7081
+ # resp.cidr_mappings[0].updated_cidr #=> String
7010
7082
  # resp.created_at #=> Time
7011
7083
  # resp.updated_at #=> Time
7012
7084
  # resp.tags #=> Hash
@@ -7302,7 +7374,7 @@ module Aws::Mgn
7302
7374
  req.send_request(options)
7303
7375
  end
7304
7376
 
7305
- # Updates multiple ReplicationConfigurationTemplates by ID.
7377
+ # Updates a ReplicationConfigurationTemplate by ID.
7306
7378
  #
7307
7379
  # @option params [required, String] :replication_configuration_template_id
7308
7380
  # Update replication configuration template template ID request.
@@ -7796,7 +7868,7 @@ module Aws::Mgn
7796
7868
  tracer: tracer
7797
7869
  )
7798
7870
  context[:gem_name] = 'aws-sdk-mgn'
7799
- context[:gem_version] = '1.73.0'
7871
+ context[:gem_version] = '1.75.0'
7800
7872
  Seahorse::Client::Request.new(handlers, context)
7801
7873
  end
7802
7874
 
@@ -51,6 +51,8 @@ module Aws::Mgn
51
51
  Checksum = Shapes::StructureShape.new(name: 'Checksum')
52
52
  Cidr = Shapes::StringShape.new(name: 'Cidr')
53
53
  CidrBlock = Shapes::StringShape.new(name: 'CidrBlock')
54
+ CidrMapping = Shapes::StructureShape.new(name: 'CidrMapping')
55
+ CidrMappingsList = Shapes::ListShape.new(name: 'CidrMappingsList')
54
56
  ClientIdempotencyToken = Shapes::StringShape.new(name: 'ClientIdempotencyToken')
55
57
  CloudWatchLogGroupName = Shapes::StringShape.new(name: 'CloudWatchLogGroupName')
56
58
  CodeGenerationOutputFormatStatus = Shapes::StringShape.new(name: 'CodeGenerationOutputFormatStatus')
@@ -527,9 +529,11 @@ module Aws::Mgn
527
529
  VcenterClient = Shapes::StructureShape.new(name: 'VcenterClient')
528
530
  VcenterClientID = Shapes::StringShape.new(name: 'VcenterClientID')
529
531
  VcenterClientList = Shapes::ListShape.new(name: 'VcenterClientList')
532
+ VolumeInitializationRate = Shapes::IntegerShape.new(name: 'VolumeInitializationRate')
530
533
  VolumeType = Shapes::StringShape.new(name: 'VolumeType')
531
534
  VpcID = Shapes::StringShape.new(name: 'VpcID')
532
535
  VpcIDsFilter = Shapes::ListShape.new(name: 'VpcIDsFilter')
536
+ VpcProvisioningStrategy = Shapes::StringShape.new(name: 'VpcProvisioningStrategy')
533
537
  Wave = Shapes::StructureShape.new(name: 'Wave')
534
538
  WaveAggregatedStatus = Shapes::StructureShape.new(name: 'WaveAggregatedStatus')
535
539
  WaveDescription = Shapes::StringShape.new(name: 'WaveDescription')
@@ -611,6 +615,12 @@ module Aws::Mgn
611
615
  Checksum.add_member(:hash, Shapes::ShapeRef.new(shape: Hash, location_name: "hash"))
612
616
  Checksum.struct_class = Types::Checksum
613
617
 
618
+ CidrMapping.add_member(:original_cidr, Shapes::ShapeRef.new(shape: Cidr, required: true, location_name: "originalCidr"))
619
+ CidrMapping.add_member(:updated_cidr, Shapes::ShapeRef.new(shape: Cidr, required: true, location_name: "updatedCidr"))
620
+ CidrMapping.struct_class = Types::CidrMapping
621
+
622
+ CidrMappingsList.member = Shapes::ShapeRef.new(shape: CidrMapping)
623
+
614
624
  CodeGenerationOutputFormatStatusDetails.add_member(:status, Shapes::ShapeRef.new(shape: CodeGenerationOutputFormatStatus, location_name: "status"))
615
625
  CodeGenerationOutputFormatStatusDetails.add_member(:status_detail_list, Shapes::ShapeRef.new(shape: LargeBoundedString, location_name: "statusDetailList"))
616
626
  CodeGenerationOutputFormatStatusDetails.struct_class = Types::CodeGenerationOutputFormatStatusDetails
@@ -688,6 +698,8 @@ module Aws::Mgn
688
698
  CreateNetworkMigrationDefinitionRequest.add_member(:target_s3_configuration, Shapes::ShapeRef.new(shape: TargetS3Configuration, required: true, location_name: "targetS3Configuration"))
689
699
  CreateNetworkMigrationDefinitionRequest.add_member(:target_network, Shapes::ShapeRef.new(shape: TargetNetwork, required: true, location_name: "targetNetwork"))
690
700
  CreateNetworkMigrationDefinitionRequest.add_member(:target_deployment, Shapes::ShapeRef.new(shape: TargetDeployment, location_name: "targetDeployment"))
701
+ CreateNetworkMigrationDefinitionRequest.add_member(:vpc_provisioning_strategy, Shapes::ShapeRef.new(shape: VpcProvisioningStrategy, location_name: "vpcProvisioningStrategy"))
702
+ CreateNetworkMigrationDefinitionRequest.add_member(:cidr_mappings, Shapes::ShapeRef.new(shape: CidrMappingsList, location_name: "cidrMappings"))
691
703
  CreateNetworkMigrationDefinitionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
692
704
  CreateNetworkMigrationDefinitionRequest.add_member(:scope_tags, Shapes::ShapeRef.new(shape: ScopeTagsMap, location_name: "scopeTags"))
693
705
  CreateNetworkMigrationDefinitionRequest.struct_class = Types::CreateNetworkMigrationDefinitionRequest
@@ -1135,6 +1147,8 @@ module Aws::Mgn
1135
1147
  LaunchTemplateDiskConf.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
1136
1148
  LaunchTemplateDiskConf.add_member(:iops, Shapes::ShapeRef.new(shape: Iops, location_name: "iops"))
1137
1149
  LaunchTemplateDiskConf.add_member(:throughput, Shapes::ShapeRef.new(shape: Throughput, location_name: "throughput"))
1150
+ LaunchTemplateDiskConf.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: VolumeInitializationRate, location_name: "volumeInitializationRate"))
1151
+ LaunchTemplateDiskConf.add_member(:delete_on_termination, Shapes::ShapeRef.new(shape: Boolean, location_name: "deleteOnTermination"))
1138
1152
  LaunchTemplateDiskConf.struct_class = Types::LaunchTemplateDiskConf
1139
1153
 
1140
1154
  LaunchedInstance.add_member(:ec2_instance_id, Shapes::ShapeRef.new(shape: EC2InstanceID, location_name: "ec2InstanceID"))
@@ -1603,6 +1617,8 @@ module Aws::Mgn
1603
1617
  NetworkMigrationDefinition.add_member(:target_s3_configuration, Shapes::ShapeRef.new(shape: TargetS3Configuration, location_name: "targetS3Configuration"))
1604
1618
  NetworkMigrationDefinition.add_member(:target_network, Shapes::ShapeRef.new(shape: TargetNetwork, location_name: "targetNetwork"))
1605
1619
  NetworkMigrationDefinition.add_member(:target_deployment, Shapes::ShapeRef.new(shape: TargetDeployment, location_name: "targetDeployment"))
1620
+ NetworkMigrationDefinition.add_member(:vpc_provisioning_strategy, Shapes::ShapeRef.new(shape: VpcProvisioningStrategy, location_name: "vpcProvisioningStrategy"))
1621
+ NetworkMigrationDefinition.add_member(:cidr_mappings, Shapes::ShapeRef.new(shape: CidrMappingsList, location_name: "cidrMappings"))
1606
1622
  NetworkMigrationDefinition.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
1607
1623
  NetworkMigrationDefinition.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
1608
1624
  NetworkMigrationDefinition.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
@@ -2240,6 +2256,8 @@ module Aws::Mgn
2240
2256
  UpdateNetworkMigrationDefinitionRequest.add_member(:target_s3_configuration, Shapes::ShapeRef.new(shape: TargetS3ConfigurationUpdate, location_name: "targetS3Configuration"))
2241
2257
  UpdateNetworkMigrationDefinitionRequest.add_member(:target_network, Shapes::ShapeRef.new(shape: TargetNetworkUpdate, location_name: "targetNetwork"))
2242
2258
  UpdateNetworkMigrationDefinitionRequest.add_member(:target_deployment, Shapes::ShapeRef.new(shape: TargetDeployment, location_name: "targetDeployment"))
2259
+ UpdateNetworkMigrationDefinitionRequest.add_member(:vpc_provisioning_strategy, Shapes::ShapeRef.new(shape: VpcProvisioningStrategy, location_name: "vpcProvisioningStrategy"))
2260
+ UpdateNetworkMigrationDefinitionRequest.add_member(:cidr_mappings, Shapes::ShapeRef.new(shape: CidrMappingsList, location_name: "cidrMappings"))
2243
2261
  UpdateNetworkMigrationDefinitionRequest.add_member(:scope_tags, Shapes::ShapeRef.new(shape: ScopeTagsMap, location_name: "scopeTags"))
2244
2262
  UpdateNetworkMigrationDefinitionRequest.struct_class = Types::UpdateNetworkMigrationDefinitionRequest
2245
2263
 
@@ -10,7 +10,7 @@
10
10
  module Aws::Mgn
11
11
  module Types
12
12
 
13
- # Operating denied due to a file permission or access check error.
13
+ # Operation denied due to a file permission or access check error.
14
14
  #
15
15
  # @!attribute [rw] message
16
16
  # @return [String]
@@ -274,6 +274,26 @@ module Aws::Mgn
274
274
  include Aws::Structure
275
275
  end
276
276
 
277
+ # Maps a source CIDR range to the corresponding target CIDR range to use
278
+ # in the target network.
279
+ #
280
+ # @!attribute [rw] original_cidr
281
+ # The original CIDR range in the source network.
282
+ # @return [String]
283
+ #
284
+ # @!attribute [rw] updated_cidr
285
+ # The updated CIDR range to use in the target network.
286
+ # @return [String]
287
+ #
288
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/CidrMapping AWS API Documentation
289
+ #
290
+ class CidrMapping < Struct.new(
291
+ :original_cidr,
292
+ :updated_cidr)
293
+ SENSITIVE = []
294
+ include Aws::Structure
295
+ end
296
+
277
297
  # Status details for a specific code generation output format.
278
298
  #
279
299
  # @!attribute [rw] status
@@ -558,6 +578,19 @@ module Aws::Mgn
558
578
  # The target deployment configuration for the migrated network.
559
579
  # @return [String]
560
580
  #
581
+ # @!attribute [rw] vpc_provisioning_strategy
582
+ # Specifies whether to create new target VPCs or use existing ones.
583
+ # Set to `CREATE_NEW` to provision new target VPCs as part of the
584
+ # migration, or `USE_EXISTING` to migrate into existing VPCs in the
585
+ # target account.
586
+ # @return [String]
587
+ #
588
+ # @!attribute [rw] cidr_mappings
589
+ # A list of CIDR mappings that map original source CIDR ranges to
590
+ # updated target CIDR ranges. CIDR mappings can be provided only when
591
+ # `vpcProvisioningStrategy` is set to `USE_EXISTING`.
592
+ # @return [Array<Types::CidrMapping>]
593
+ #
561
594
  # @!attribute [rw] tags
562
595
  # Tags to assign to the network migration definition.
563
596
  # @return [Hash<String,String>]
@@ -576,6 +609,8 @@ module Aws::Mgn
576
609
  :target_s3_configuration,
577
610
  :target_network,
578
611
  :target_deployment,
612
+ :vpc_provisioning_strategy,
613
+ :cidr_mappings,
579
614
  :tags,
580
615
  :scope_tags)
581
616
  SENSITIVE = [:tags, :scope_tags]
@@ -1238,7 +1273,7 @@ module Aws::Mgn
1238
1273
  # @return [String]
1239
1274
  #
1240
1275
  # @!attribute [rw] account_id
1241
- # Request to filter Source Servers list by Accoun ID.
1276
+ # Request to filter Source Servers list by Account ID.
1242
1277
  # @return [String]
1243
1278
  #
1244
1279
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeSourceServersRequest AWS API Documentation
@@ -1287,11 +1322,11 @@ module Aws::Mgn
1287
1322
  end
1288
1323
 
1289
1324
  # @!attribute [rw] items
1290
- # Request to filter Source Servers list by item.
1325
+ # The list of returned Source Servers.
1291
1326
  # @return [Array<Types::SourceServer>]
1292
1327
  #
1293
1328
  # @!attribute [rw] next_token
1294
- # Request to filter Source Servers next token.
1329
+ # The token of the next Source Server to retrieve.
1295
1330
  # @return [String]
1296
1331
  #
1297
1332
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/DescribeSourceServersResponse AWS API Documentation
@@ -2008,14 +2043,14 @@ module Aws::Mgn
2008
2043
  include Aws::Structure
2009
2044
  end
2010
2045
 
2011
- # Import task summery waves.
2046
+ # Import task summary waves.
2012
2047
  #
2013
2048
  # @!attribute [rw] created_count
2014
- # Import task summery waves created count.
2049
+ # Import task summary waves created count.
2015
2050
  # @return [Integer]
2016
2051
  #
2017
2052
  # @!attribute [rw] modified_count
2018
- # Import task summery waves modified count.
2053
+ # Import task summary waves modified count.
2019
2054
  # @return [Integer]
2020
2055
  #
2021
2056
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/ImportTaskSummaryWaves AWS API Documentation
@@ -2179,8 +2214,7 @@ module Aws::Mgn
2179
2214
  # Launch Status of the Job Post Launch Actions.
2180
2215
  #
2181
2216
  # @!attribute [rw] ssm_document
2182
- # AWS Systems Manager's Document of the of the Job Post Launch
2183
- # Actions.
2217
+ # AWS Systems Manager's Document of the Job Post Launch Actions.
2184
2218
  # @return [Types::SsmDocument]
2185
2219
  #
2186
2220
  # @!attribute [rw] ssm_document_type
@@ -2188,8 +2222,8 @@ module Aws::Mgn
2188
2222
  # @return [String]
2189
2223
  #
2190
2224
  # @!attribute [rw] execution_id
2191
- # AWS Systems Manager Document's execution ID of the of the Job Post
2192
- # Launch Actions.
2225
+ # AWS Systems Manager Document's execution ID of the Job Post Launch
2226
+ # Actions.
2193
2227
  # @return [String]
2194
2228
  #
2195
2229
  # @!attribute [rw] execution_status
@@ -2283,7 +2317,7 @@ module Aws::Mgn
2283
2317
  # @return [String]
2284
2318
  #
2285
2319
  # @!attribute [rw] post_launch_actions
2286
- # Post Launch Actions to executed on the Test or Cutover instance.
2320
+ # Post Launch Actions to be executed on the Test or Cutover instance.
2287
2321
  # @return [Types::PostLaunchActions]
2288
2322
  #
2289
2323
  # @!attribute [rw] enable_map_auto_tagging
@@ -2429,12 +2463,22 @@ module Aws::Mgn
2429
2463
  # Launch template disk throughput configuration.
2430
2464
  # @return [Integer]
2431
2465
  #
2466
+ # @!attribute [rw] volume_initialization_rate
2467
+ # Launch template disk volume initialization rate configuration.
2468
+ # @return [Integer]
2469
+ #
2470
+ # @!attribute [rw] delete_on_termination
2471
+ # Launch template disk delete on termination configuration.
2472
+ # @return [Boolean]
2473
+ #
2432
2474
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchTemplateDiskConf AWS API Documentation
2433
2475
  #
2434
2476
  class LaunchTemplateDiskConf < Struct.new(
2435
2477
  :volume_type,
2436
2478
  :iops,
2437
- :throughput)
2479
+ :throughput,
2480
+ :volume_initialization_rate,
2481
+ :delete_on_termination)
2438
2482
  SENSITIVE = []
2439
2483
  include Aws::Structure
2440
2484
  end
@@ -2490,7 +2534,7 @@ module Aws::Mgn
2490
2534
  # Lifecycle.
2491
2535
  #
2492
2536
  # @!attribute [rw] added_to_service_date_time
2493
- # Lifecycle added to service data and time.
2537
+ # Lifecycle added to service date and time.
2494
2538
  # @return [String]
2495
2539
  #
2496
2540
  # @!attribute [rw] first_byte_date_time
@@ -2628,7 +2672,7 @@ module Aws::Mgn
2628
2672
  # Lifecycle last Test finalized.
2629
2673
  #
2630
2674
  # @!attribute [rw] api_call_date_time
2631
- # Lifecycle Test failed API call date and time.
2675
+ # Lifecycle Test finalized API call date and time.
2632
2676
  # @return [String]
2633
2677
  #
2634
2678
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LifeCycleLastTestFinalized AWS API Documentation
@@ -4257,8 +4301,7 @@ module Aws::Mgn
4257
4301
  # @return [String]
4258
4302
  #
4259
4303
  # @!attribute [rw] artifact_type
4260
- # The type of the artifact, such as CLOUDFORMATION\_TEMPLATE or
4261
- # TERRAFORM\_MODULE.
4304
+ # The type of the generated artifact.
4262
4305
  # @return [String]
4263
4306
  #
4264
4307
  # @!attribute [rw] artifact_sub_type
@@ -4437,6 +4480,18 @@ module Aws::Mgn
4437
4480
  # The target deployment configuration for the migrated network.
4438
4481
  # @return [String]
4439
4482
  #
4483
+ # @!attribute [rw] vpc_provisioning_strategy
4484
+ # Indicates whether the migration creates new target VPCs or uses
4485
+ # existing ones. `CREATE_NEW` provisions new target VPCs;
4486
+ # `USE_EXISTING` migrates into existing VPCs in the target account.
4487
+ # @return [String]
4488
+ #
4489
+ # @!attribute [rw] cidr_mappings
4490
+ # A list of CIDR mappings that map original source CIDR ranges to
4491
+ # updated target CIDR ranges. CIDR mappings apply only when
4492
+ # `vpcProvisioningStrategy` is set to `USE_EXISTING`.
4493
+ # @return [Array<Types::CidrMapping>]
4494
+ #
4440
4495
  # @!attribute [rw] created_at
4441
4496
  # The timestamp when the network migration definition was created.
4442
4497
  # @return [Time]
@@ -4465,6 +4520,8 @@ module Aws::Mgn
4465
4520
  :target_s3_configuration,
4466
4521
  :target_network,
4467
4522
  :target_deployment,
4523
+ :vpc_provisioning_strategy,
4524
+ :cidr_mappings,
4468
4525
  :created_at,
4469
4526
  :updated_at,
4470
4527
  :tags,
@@ -4687,7 +4744,9 @@ module Aws::Mgn
4687
4744
  # @return [String]
4688
4745
  #
4689
4746
  # @!attribute [rw] segment_type
4690
- # The type of the segment, such as VPC, subnet, or security group.
4747
+ # The category of the network migration segment. A segment groups the
4748
+ # network constructs (such as VPCs, subnets, and security groups) that
4749
+ # are migrated together. Valid values: `WORKLOAD`, `APPLIANCE`.
4691
4750
  # @return [String]
4692
4751
  #
4693
4752
  # @!attribute [rw] name
@@ -4999,7 +5058,7 @@ module Aws::Mgn
4999
5058
  include Aws::Structure
5000
5059
  end
5001
5060
 
5002
- # Post Launch Actions to executed on the Test or Cutover instance.
5061
+ # Post Launch Actions to be executed on the Test or Cutover instance.
5003
5062
  #
5004
5063
  # @!attribute [rw] deployment
5005
5064
  # Deployment type in which AWS Systems Manager Documents will be
@@ -5608,7 +5667,7 @@ module Aws::Mgn
5608
5667
  include Aws::Structure
5609
5668
  end
5610
5669
 
5611
- # The request could not be completed because its exceeded the service
5670
+ # The request could not be completed because it exceeded the service
5612
5671
  # quota.
5613
5672
  #
5614
5673
  # @!attribute [rw] message
@@ -6079,7 +6138,7 @@ module Aws::Mgn
6079
6138
  # @return [String]
6080
6139
  #
6081
6140
  # @!attribute [rw] tags
6082
- # Start import request tags.
6141
+ # Start export request tags.
6083
6142
  # @return [Hash<String,String>]
6084
6143
  #
6085
6144
  # @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/StartExportRequest AWS API Documentation
@@ -6913,7 +6972,7 @@ module Aws::Mgn
6913
6972
  # @return [String]
6914
6973
  #
6915
6974
  # @!attribute [rw] post_launch_actions
6916
- # Post Launch Actions to executed on the Test or Cutover instance.
6975
+ # Post Launch Actions to be executed on the Test or Cutover instance.
6917
6976
  # @return [Types::PostLaunchActions]
6918
6977
  #
6919
6978
  # @!attribute [rw] enable_map_auto_tagging
@@ -7063,6 +7122,19 @@ module Aws::Mgn
7063
7122
  # The updated target deployment configuration.
7064
7123
  # @return [String]
7065
7124
  #
7125
+ # @!attribute [rw] vpc_provisioning_strategy
7126
+ # Updates whether the migration creates new target VPCs or uses
7127
+ # existing ones. Set to `USE_EXISTING` to migrate into existing VPCs
7128
+ # in the target account, or to `CREATE_NEW` to provision new target
7129
+ # VPCs.
7130
+ # @return [String]
7131
+ #
7132
+ # @!attribute [rw] cidr_mappings
7133
+ # The updated list of CIDR mappings that map original source CIDR
7134
+ # ranges to updated target CIDR ranges. CIDR mappings can be provided
7135
+ # only when `vpcProvisioningStrategy` is set to `USE_EXISTING`.
7136
+ # @return [Array<Types::CidrMapping>]
7137
+ #
7066
7138
  # @!attribute [rw] scope_tags
7067
7139
  # The updated scope tags for the network migration definition.
7068
7140
  # @return [Hash<String,String>]
@@ -7077,6 +7149,8 @@ module Aws::Mgn
7077
7149
  :target_s3_configuration,
7078
7150
  :target_network,
7079
7151
  :target_deployment,
7152
+ :vpc_provisioning_strategy,
7153
+ :cidr_mappings,
7080
7154
  :scope_tags)
7081
7155
  SENSITIVE = [:scope_tags]
7082
7156
  include Aws::Structure
data/lib/aws-sdk-mgn.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::Mgn
55
55
  autoload :EndpointProvider, 'aws-sdk-mgn/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-mgn/endpoints'
57
57
 
58
- GEM_VERSION = '1.73.0'
58
+ GEM_VERSION = '1.75.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -252,12 +252,16 @@ module Aws
252
252
  ?small_volume_conf: {
253
253
  volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?,
254
254
  iops: ::Integer?,
255
- throughput: ::Integer?
255
+ throughput: ::Integer?,
256
+ volume_initialization_rate: ::Integer?,
257
+ delete_on_termination: bool?
256
258
  },
257
259
  ?large_volume_conf: {
258
260
  volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?,
259
261
  iops: ::Integer?,
260
- throughput: ::Integer?
262
+ throughput: ::Integer?,
263
+ volume_initialization_rate: ::Integer?,
264
+ delete_on_termination: bool?
261
265
  },
262
266
  ?enable_parameters_encryption: bool,
263
267
  ?parameters_encryption_key: ::String
@@ -274,6 +278,8 @@ module Aws
274
278
  def target_s3_configuration: () -> Types::TargetS3Configuration
275
279
  def target_network: () -> Types::TargetNetwork
276
280
  def target_deployment: () -> ("SINGLE_ACCOUNT" | "MULTI_ACCOUNT")
281
+ def vpc_provisioning_strategy: () -> ("CREATE_NEW" | "USE_EXISTING")
282
+ def cidr_mappings: () -> ::Array[Types::CidrMapping]
277
283
  def created_at: () -> ::Time
278
284
  def updated_at: () -> ::Time
279
285
  def tags: () -> ::Hash[::String, ::String]
@@ -297,6 +303,13 @@ module Aws
297
303
  inspection_cidr: ::String?
298
304
  },
299
305
  ?target_deployment: ("SINGLE_ACCOUNT" | "MULTI_ACCOUNT"),
306
+ ?vpc_provisioning_strategy: ("CREATE_NEW" | "USE_EXISTING"),
307
+ ?cidr_mappings: Array[
308
+ {
309
+ original_cidr: ::String,
310
+ updated_cidr: ::String
311
+ }
312
+ ],
300
313
  ?tags: Hash[::String, ::String],
301
314
  ?scope_tags: Hash[::String, ::String]
302
315
  ) -> _CreateNetworkMigrationDefinitionResponseSuccess
@@ -644,6 +657,8 @@ module Aws
644
657
  def target_s3_configuration: () -> Types::TargetS3Configuration
645
658
  def target_network: () -> Types::TargetNetwork
646
659
  def target_deployment: () -> ("SINGLE_ACCOUNT" | "MULTI_ACCOUNT")
660
+ def vpc_provisioning_strategy: () -> ("CREATE_NEW" | "USE_EXISTING")
661
+ def cidr_mappings: () -> ::Array[Types::CidrMapping]
647
662
  def created_at: () -> ::Time
648
663
  def updated_at: () -> ::Time
649
664
  def tags: () -> ::Hash[::String, ::String]
@@ -1683,12 +1698,16 @@ module Aws
1683
1698
  ?small_volume_conf: {
1684
1699
  volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?,
1685
1700
  iops: ::Integer?,
1686
- throughput: ::Integer?
1701
+ throughput: ::Integer?,
1702
+ volume_initialization_rate: ::Integer?,
1703
+ delete_on_termination: bool?
1687
1704
  },
1688
1705
  ?large_volume_conf: {
1689
1706
  volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?,
1690
1707
  iops: ::Integer?,
1691
- throughput: ::Integer?
1708
+ throughput: ::Integer?,
1709
+ volume_initialization_rate: ::Integer?,
1710
+ delete_on_termination: bool?
1692
1711
  },
1693
1712
  ?enable_parameters_encryption: bool,
1694
1713
  ?parameters_encryption_key: ::String
@@ -1705,6 +1724,8 @@ module Aws
1705
1724
  def target_s3_configuration: () -> Types::TargetS3Configuration
1706
1725
  def target_network: () -> Types::TargetNetwork
1707
1726
  def target_deployment: () -> ("SINGLE_ACCOUNT" | "MULTI_ACCOUNT")
1727
+ def vpc_provisioning_strategy: () -> ("CREATE_NEW" | "USE_EXISTING")
1728
+ def cidr_mappings: () -> ::Array[Types::CidrMapping]
1708
1729
  def created_at: () -> ::Time
1709
1730
  def updated_at: () -> ::Time
1710
1731
  def tags: () -> ::Hash[::String, ::String]
@@ -1729,6 +1750,13 @@ module Aws
1729
1750
  inspection_cidr: ::String?
1730
1751
  },
1731
1752
  ?target_deployment: ("SINGLE_ACCOUNT" | "MULTI_ACCOUNT"),
1753
+ ?vpc_provisioning_strategy: ("CREATE_NEW" | "USE_EXISTING"),
1754
+ ?cidr_mappings: Array[
1755
+ {
1756
+ original_cidr: ::String,
1757
+ updated_cidr: ::String
1758
+ }
1759
+ ],
1732
1760
  ?scope_tags: Hash[::String, ::String]
1733
1761
  ) -> _UpdateNetworkMigrationDefinitionResponseSuccess
1734
1762
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNetworkMigrationDefinitionResponseSuccess
data/sig/types.rbs CHANGED
@@ -92,6 +92,12 @@ module Aws::Mgn
92
92
  SENSITIVE: []
93
93
  end
94
94
 
95
+ class CidrMapping
96
+ attr_accessor original_cidr: ::String
97
+ attr_accessor updated_cidr: ::String
98
+ SENSITIVE: []
99
+ end
100
+
95
101
  class CodeGenerationOutputFormatStatusDetails
96
102
  attr_accessor status: ("SUCCEEDED" | "FAILED")
97
103
  attr_accessor status_detail_list: ::String
@@ -168,6 +174,8 @@ module Aws::Mgn
168
174
  attr_accessor target_s3_configuration: Types::TargetS3Configuration
169
175
  attr_accessor target_network: Types::TargetNetwork
170
176
  attr_accessor target_deployment: ("SINGLE_ACCOUNT" | "MULTI_ACCOUNT")
177
+ attr_accessor vpc_provisioning_strategy: ("CREATE_NEW" | "USE_EXISTING")
178
+ attr_accessor cidr_mappings: ::Array[Types::CidrMapping]
171
179
  attr_accessor tags: ::Hash[::String, ::String]
172
180
  attr_accessor scope_tags: ::Hash[::String, ::String]
173
181
  SENSITIVE: [:tags, :scope_tags]
@@ -719,6 +727,8 @@ module Aws::Mgn
719
727
  attr_accessor volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")
720
728
  attr_accessor iops: ::Integer
721
729
  attr_accessor throughput: ::Integer
730
+ attr_accessor volume_initialization_rate: ::Integer
731
+ attr_accessor delete_on_termination: bool
722
732
  SENSITIVE: []
723
733
  end
724
734
 
@@ -1327,6 +1337,8 @@ module Aws::Mgn
1327
1337
  attr_accessor target_s3_configuration: Types::TargetS3Configuration
1328
1338
  attr_accessor target_network: Types::TargetNetwork
1329
1339
  attr_accessor target_deployment: ("SINGLE_ACCOUNT" | "MULTI_ACCOUNT")
1340
+ attr_accessor vpc_provisioning_strategy: ("CREATE_NEW" | "USE_EXISTING")
1341
+ attr_accessor cidr_mappings: ::Array[Types::CidrMapping]
1330
1342
  attr_accessor created_at: ::Time
1331
1343
  attr_accessor updated_at: ::Time
1332
1344
  attr_accessor tags: ::Hash[::String, ::String]
@@ -2067,6 +2079,8 @@ module Aws::Mgn
2067
2079
  attr_accessor target_s3_configuration: Types::TargetS3ConfigurationUpdate
2068
2080
  attr_accessor target_network: Types::TargetNetworkUpdate
2069
2081
  attr_accessor target_deployment: ("SINGLE_ACCOUNT" | "MULTI_ACCOUNT")
2082
+ attr_accessor vpc_provisioning_strategy: ("CREATE_NEW" | "USE_EXISTING")
2083
+ attr_accessor cidr_mappings: ::Array[Types::CidrMapping]
2070
2084
  attr_accessor scope_tags: ::Hash[::String, ::String]
2071
2085
  SENSITIVE: [:scope_tags]
2072
2086
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mgn
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.73.0
4
+ version: 1.75.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services