aws-sdk-mgn 1.66.0 → 1.67.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: a952b8277383055e724dd837d2fd1c204cfd17db0da11cfcf681c5a5c3c927fe
4
+ data.tar.gz: 825a053424241bd5e91d08d24b1873ed5b5659edaa0228d9bd2f03518da46ee9
5
5
  SHA512:
6
- metadata.gz: 7cc0454404824b8646f939b4a75bfbf1910b12aa67202ddba2c8844fd69b614a32a9f002065aa88514f8da9e94436c80d88ac2372d43e64e363da315a7b13f49
7
- data.tar.gz: a429e59d0b0e420625fd3b26acc8984601d83093540d8cd4531278ce6b05636082953b4a33cc76d2d5234676b5be0bb2d1cfe18602d889c1a915ac38cf22b519
6
+ metadata.gz: 04cf85c4a9ee4a9d7e03eb3a2b0dfd027e81da939d3938edd12422f870e836c9db4a3adbfba71b93424c0631c300fe87efa4d1a517092b00027be5451a9fa40d
7
+ data.tar.gz: 2a35a8c6c7bc2aa905637776869609f7d1adf58841891b5b8b31721b93a1b55d4c4f0f0a0865205da7d2df2a832c804389c658e8fde0e23b26c7388e6ba660dd
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2026-05-14)
5
+ ------------------
6
+
7
+ * Feature - Introducing new option for security groups mapping - with MAP-DHCP the service translates security rules from your source environment with DHCP compatibility.
8
+
4
9
  1.66.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.67.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.67.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.67.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1406,7 +1406,7 @@ module Aws
1406
1406
  def start_network_migration_mapping: (
1407
1407
  network_migration_execution_id: ::String,
1408
1408
  network_migration_definition_id: ::String,
1409
- ?security_group_mapping_strategy: ("MAP" | "SKIP")
1409
+ ?security_group_mapping_strategy: ("MAP" | "SKIP" | "MAP_DHCP")
1410
1410
  ) -> _StartNetworkMigrationMappingResponseSuccess
1411
1411
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartNetworkMigrationMappingResponseSuccess
1412
1412
 
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.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services