aws-sdk-mgn 1.66.0 → 1.68.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: 407fbfe2bd0f4c736e593c263554c47dbef1e226ba0aca9439142a5df5ff1ea5
4
- data.tar.gz: 9d4e77a9df9e25f2ce128c69f0a7dada56313793ed9caa015bb0ccc45af2f6c0
3
+ metadata.gz: d8af6314a784d196097167cd7d050c775a2d48e43334779b8ca58abc8458f0b5
4
+ data.tar.gz: '027991dc0d30e9fbd2c0872e414210dcc8242d9939eadbee1ae778c7fd2b8c05'
5
5
  SHA512:
6
- metadata.gz: 7cc0454404824b8646f939b4a75bfbf1910b12aa67202ddba2c8844fd69b614a32a9f002065aa88514f8da9e94436c80d88ac2372d43e64e363da315a7b13f49
7
- data.tar.gz: a429e59d0b0e420625fd3b26acc8984601d83093540d8cd4531278ce6b05636082953b4a33cc76d2d5234676b5be0bb2d1cfe18602d889c1a915ac38cf22b519
6
+ metadata.gz: a71efc89daf7d3e30cee2ae1ce15bda4ccce60549d9780931136151920c8f9a8e587ec54397e427283d292a6995f09106518ef578932fad7600386b421598794
7
+ data.tar.gz: 2a2c846b2c4c36eaa17de17e5909e20fe49e13d5c677755af7036be3292f4d0c1582c97e26e9b41fea0f853956bec94fea55daa961ce8c7d5feb48514a4e94ed
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.67.0 (2026-05-14)
10
+ ------------------
11
+
12
+ * Feature - Introducing new option for security groups mapping - with MAP-DHCP the service translates security rules from your source environment with DHCP compatibility.
13
+
4
14
  1.66.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.68.0
@@ -3464,6 +3464,8 @@ module Aws::Mgn
3464
3464
  # resp.items[0].artifacts[0].checksum.encryption_algorithm #=> String, one of "SHA256"
3465
3465
  # resp.items[0].artifacts[0].checksum.hash #=> String
3466
3466
  # resp.items[0].artifacts[0].created_at #=> Time
3467
+ # resp.items[0].referenced_segments #=> Array
3468
+ # resp.items[0].referenced_segments[0] #=> String
3467
3469
  # resp.items[0].created_at #=> Time
3468
3470
  # resp.next_token #=> String
3469
3471
  #
@@ -5674,7 +5676,7 @@ module Aws::Mgn
5674
5676
  # resp = client.start_network_migration_mapping({
5675
5677
  # network_migration_execution_id: "NetworkMigrationExecutionID", # required
5676
5678
  # network_migration_definition_id: "NetworkMigrationDefinitionID", # required
5677
- # security_group_mapping_strategy: "MAP", # accepts MAP, SKIP
5679
+ # security_group_mapping_strategy: "MAP", # accepts MAP, SKIP, MAP_DHCP
5678
5680
  # })
5679
5681
  #
5680
5682
  # @example Response structure
@@ -7649,7 +7651,7 @@ module Aws::Mgn
7649
7651
  tracer: tracer
7650
7652
  )
7651
7653
  context[:gem_name] = 'aws-sdk-mgn'
7652
- context[:gem_version] = '1.66.0'
7654
+ context[:gem_version] = '1.68.0'
7653
7655
  Seahorse::Client::Request.new(handlers, context)
7654
7656
  end
7655
7657
 
@@ -1562,6 +1562,7 @@ module Aws::Mgn
1562
1562
  NetworkMigrationCodeGenerationSegment.add_member(:logical_id, Shapes::ShapeRef.new(shape: LogicalID, location_name: "logicalID"))
1563
1563
  NetworkMigrationCodeGenerationSegment.add_member(:mapper_segment_id, Shapes::ShapeRef.new(shape: SegmentID, location_name: "mapperSegmentID"))
1564
1564
  NetworkMigrationCodeGenerationSegment.add_member(:artifacts, Shapes::ShapeRef.new(shape: NetworkMigrationCodeGenerationArtifacts, location_name: "artifacts"))
1565
+ NetworkMigrationCodeGenerationSegment.add_member(:referenced_segments, Shapes::ShapeRef.new(shape: referencedSegmentsList, location_name: "referencedSegments"))
1565
1566
  NetworkMigrationCodeGenerationSegment.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
1566
1567
  NetworkMigrationCodeGenerationSegment.struct_class = Types::NetworkMigrationCodeGenerationSegment
1567
1568
 
@@ -4311,6 +4311,10 @@ module Aws::Mgn
4311
4311
  # A list of artifacts generated for this segment.
4312
4312
  # @return [Array<Types::NetworkMigrationCodeGenerationArtifact>]
4313
4313
  #
4314
+ # @!attribute [rw] referenced_segments
4315
+ # A list of other segments that this segment depends on or references.
4316
+ # @return [Array<String>]
4317
+ #
4314
4318
  # @!attribute [rw] created_at
4315
4319
  # The timestamp when the segment was created.
4316
4320
  # @return [Time]
@@ -4326,6 +4330,7 @@ module Aws::Mgn
4326
4330
  :logical_id,
4327
4331
  :mapper_segment_id,
4328
4332
  :artifacts,
4333
+ :referenced_segments,
4329
4334
  :created_at)
4330
4335
  SENSITIVE = []
4331
4336
  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.66.0'
58
+ GEM_VERSION = '1.68.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -235,29 +235,7 @@ module Aws
235
235
  end
236
236
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#create_launch_configuration_template-instance_method
237
237
  def create_launch_configuration_template: (
238
- ?post_launch_actions: {
239
- deployment: ("TEST_AND_CUTOVER" | "CUTOVER_ONLY" | "TEST_ONLY")?,
240
- s3_log_bucket: ::String?,
241
- s3_output_key_prefix: ::String?,
242
- cloud_watch_log_group_name: ::String?,
243
- ssm_documents: Array[
244
- {
245
- action_name: ::String,
246
- ssm_document_name: ::String,
247
- timeout_seconds: ::Integer?,
248
- must_succeed_for_cutover: bool?,
249
- parameters: Hash[::String, Array[
250
- {
251
- parameter_type: ("STRING" | "SECURE_STRING"),
252
- parameter_name: ::String
253
- },
254
- ]]?,
255
- external_parameters: Hash[::String, {
256
- dynamic_path: ::String?
257
- }]?
258
- },
259
- ]?
260
- },
238
+ ?post_launch_actions: Params::post_launch_actions,
261
239
  ?enable_map_auto_tagging: bool,
262
240
  ?map_auto_tagging_mpe_id: ::String,
263
241
  ?tags: Hash[::String, ::String],
@@ -306,14 +284,7 @@ module Aws
306
284
  name: ::String,
307
285
  ?description: ::String,
308
286
  ?source_configurations: Array[
309
- {
310
- source_environment: ("NSX" | "VSPHERE" | "FORTIGATE_FIREWALL" | "PALO_ALTO_FIREWALL" | "CISCO_ACI" | "LOGICAL_MODEL" | "MODELIZE_IT"),
311
- source_s3_configuration: {
312
- s3_bucket: ::String,
313
- s3_bucket_owner: ::String,
314
- s3_key: ::String
315
- }
316
- },
287
+ Params::source_configuration
317
288
  ],
318
289
  target_s3_configuration: {
319
290
  s3_bucket: ::String,
@@ -1180,7 +1151,7 @@ module Aws
1180
1151
  {
1181
1152
  parameter_type: ("STRING" | "SECURE_STRING"),
1182
1153
  parameter_name: ::String
1183
- },
1154
+ }
1184
1155
  ]],
1185
1156
  ?external_parameters: Hash[::String, {
1186
1157
  dynamic_path: ::String?
@@ -1222,7 +1193,7 @@ module Aws
1222
1193
  {
1223
1194
  parameter_type: ("STRING" | "SECURE_STRING"),
1224
1195
  parameter_name: ::String
1225
- },
1196
+ }
1226
1197
  ]],
1227
1198
  ?operating_system: ::String,
1228
1199
  ?external_parameters: Hash[::String, {
@@ -1406,7 +1377,7 @@ module Aws
1406
1377
  def start_network_migration_mapping: (
1407
1378
  network_migration_execution_id: ::String,
1408
1379
  network_migration_definition_id: ::String,
1409
- ?security_group_mapping_strategy: ("MAP" | "SKIP")
1380
+ ?security_group_mapping_strategy: ("MAP" | "SKIP" | "MAP_DHCP")
1410
1381
  ) -> _StartNetworkMigrationMappingResponseSuccess
1411
1382
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartNetworkMigrationMappingResponseSuccess
1412
1383
 
@@ -1429,14 +1400,14 @@ module Aws
1429
1400
  {
1430
1401
  segment_id: ::String?,
1431
1402
  construct_id: ::String?
1432
- },
1403
+ }
1433
1404
  ]?
1434
1405
  }?,
1435
1406
  split: {
1436
1407
  split_constructs: Array[
1437
1408
  {
1438
1409
  cidr_block: ::String?
1439
- },
1410
+ }
1440
1411
  ]?
1441
1412
  }?,
1442
1413
  delete: {
@@ -1447,14 +1418,14 @@ module Aws
1447
1418
  properties: Hash[::String, ::String]?
1448
1419
  }?
1449
1420
  }?
1450
- },
1421
+ }
1451
1422
  ],
1452
1423
  ?segments: Array[
1453
1424
  {
1454
1425
  segment_id: ::String,
1455
1426
  target_account: ::String?,
1456
1427
  scope_tags: Hash[::String, ::String]?
1457
- },
1428
+ }
1458
1429
  ]
1459
1430
  ) -> _StartNetworkMigrationMappingUpdateResponseSuccess
1460
1431
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartNetworkMigrationMappingUpdateResponseSuccess
@@ -1655,29 +1626,7 @@ module Aws
1655
1626
  os_byol: bool?
1656
1627
  },
1657
1628
  ?boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE"),
1658
- ?post_launch_actions: {
1659
- deployment: ("TEST_AND_CUTOVER" | "CUTOVER_ONLY" | "TEST_ONLY")?,
1660
- s3_log_bucket: ::String?,
1661
- s3_output_key_prefix: ::String?,
1662
- cloud_watch_log_group_name: ::String?,
1663
- ssm_documents: Array[
1664
- {
1665
- action_name: ::String,
1666
- ssm_document_name: ::String,
1667
- timeout_seconds: ::Integer?,
1668
- must_succeed_for_cutover: bool?,
1669
- parameters: Hash[::String, Array[
1670
- {
1671
- parameter_type: ("STRING" | "SECURE_STRING"),
1672
- parameter_name: ::String
1673
- },
1674
- ]]?,
1675
- external_parameters: Hash[::String, {
1676
- dynamic_path: ::String?
1677
- }]?
1678
- },
1679
- ]?
1680
- },
1629
+ ?post_launch_actions: Params::post_launch_actions,
1681
1630
  ?enable_map_auto_tagging: bool,
1682
1631
  ?map_auto_tagging_mpe_id: ::String,
1683
1632
  ?account_id: ::String
@@ -1709,29 +1658,7 @@ module Aws
1709
1658
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_launch_configuration_template-instance_method
1710
1659
  def update_launch_configuration_template: (
1711
1660
  launch_configuration_template_id: ::String,
1712
- ?post_launch_actions: {
1713
- deployment: ("TEST_AND_CUTOVER" | "CUTOVER_ONLY" | "TEST_ONLY")?,
1714
- s3_log_bucket: ::String?,
1715
- s3_output_key_prefix: ::String?,
1716
- cloud_watch_log_group_name: ::String?,
1717
- ssm_documents: Array[
1718
- {
1719
- action_name: ::String,
1720
- ssm_document_name: ::String,
1721
- timeout_seconds: ::Integer?,
1722
- must_succeed_for_cutover: bool?,
1723
- parameters: Hash[::String, Array[
1724
- {
1725
- parameter_type: ("STRING" | "SECURE_STRING"),
1726
- parameter_name: ::String
1727
- },
1728
- ]]?,
1729
- external_parameters: Hash[::String, {
1730
- dynamic_path: ::String?
1731
- }]?
1732
- },
1733
- ]?
1734
- },
1661
+ ?post_launch_actions: Params::post_launch_actions,
1735
1662
  ?enable_map_auto_tagging: bool,
1736
1663
  ?map_auto_tagging_mpe_id: ::String,
1737
1664
  ?launch_disposition: ("STOPPED" | "STARTED"),
@@ -1780,14 +1707,7 @@ module Aws
1780
1707
  ?name: ::String,
1781
1708
  ?description: ::String,
1782
1709
  ?source_configurations: Array[
1783
- {
1784
- source_environment: ("NSX" | "VSPHERE" | "FORTIGATE_FIREWALL" | "PALO_ALTO_FIREWALL" | "CISCO_ACI" | "LOGICAL_MODEL" | "MODELIZE_IT"),
1785
- source_s3_configuration: {
1786
- s3_bucket: ::String,
1787
- s3_bucket_owner: ::String,
1788
- s3_key: ::String
1789
- }
1790
- },
1710
+ Params::source_configuration
1791
1711
  ],
1792
1712
  ?target_s3_configuration: {
1793
1713
  s3_bucket: ::String?,
@@ -1869,7 +1789,7 @@ module Aws
1869
1789
  staging_disk_type: ("AUTO" | "GP2" | "IO1" | "SC1" | "ST1" | "STANDARD" | "GP3" | "IO2")?,
1870
1790
  iops: ::Integer?,
1871
1791
  throughput: ::Integer?
1872
- },
1792
+ }
1873
1793
  ],
1874
1794
  ?ebs_encryption: ("DEFAULT" | "CUSTOM"),
1875
1795
  ?ebs_encryption_key_arn: ::String,
data/sig/params.rbs ADDED
@@ -0,0 +1,48 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Mgn
10
+ module Params
11
+ type post_launch_actions = {
12
+ deployment: ("TEST_AND_CUTOVER" | "CUTOVER_ONLY" | "TEST_ONLY")?,
13
+ s3_log_bucket: ::String?,
14
+ s3_output_key_prefix: ::String?,
15
+ cloud_watch_log_group_name: ::String?,
16
+ ssm_documents: Array[
17
+ Params::ssm_document
18
+ ]?
19
+ }
20
+
21
+ type ssm_document = {
22
+ action_name: ::String,
23
+ ssm_document_name: ::String,
24
+ timeout_seconds: ::Integer?,
25
+ must_succeed_for_cutover: bool?,
26
+ parameters: Hash[::String, Array[
27
+ {
28
+ parameter_type: ("STRING" | "SECURE_STRING"),
29
+ parameter_name: ::String
30
+ }
31
+ ]]?,
32
+ external_parameters: Hash[::String, {
33
+ dynamic_path: ::String?
34
+ }]?
35
+ }
36
+
37
+ type source_configuration = {
38
+ source_environment: ("NSX" | "VSPHERE" | "FORTIGATE_FIREWALL" | "PALO_ALTO_FIREWALL" | "CISCO_ACI" | "LOGICAL_MODEL" | "MODELIZE_IT"),
39
+ source_s3_configuration: {
40
+ s3_bucket: ::String,
41
+ s3_bucket_owner: ::String,
42
+ s3_key: ::String
43
+ }
44
+ }
45
+
46
+ end
47
+ end
48
+ end
data/sig/types.rbs CHANGED
@@ -1295,6 +1295,7 @@ module Aws::Mgn
1295
1295
  attr_accessor logical_id: ::String
1296
1296
  attr_accessor mapper_segment_id: ::String
1297
1297
  attr_accessor artifacts: ::Array[Types::NetworkMigrationCodeGenerationArtifact]
1298
+ attr_accessor referenced_segments: ::Array[::String]
1298
1299
  attr_accessor created_at: ::Time
1299
1300
  SENSITIVE: []
1300
1301
  end
@@ -1820,7 +1821,7 @@ module Aws::Mgn
1820
1821
  class StartNetworkMigrationMappingRequest
1821
1822
  attr_accessor network_migration_execution_id: ::String
1822
1823
  attr_accessor network_migration_definition_id: ::String
1823
- attr_accessor security_group_mapping_strategy: ("MAP" | "SKIP")
1824
+ attr_accessor security_group_mapping_strategy: ("MAP" | "SKIP" | "MAP_DHCP")
1824
1825
  SENSITIVE: []
1825
1826
  end
1826
1827
 
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.66.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-mgn/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs