aws-sdk-mainframemodernization 1.30.0 → 1.31.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e2c58a96bcbc9f19675935de20bc5d70212e457c2be4e9bfaa554ea6264b3b6
4
- data.tar.gz: 10111b5313e1dd2d04b3dbdadda900d0f59e236b60420a585c5f79c15ece5237
3
+ metadata.gz: 8f647af3674f7540355c5abd39c5695cb233997024c1b878fc07f88764eb9c03
4
+ data.tar.gz: c706e8f1ed369f6fcf0b68966eef5d3870046995377e1cdfc2c103a605f9d13a
5
5
  SHA512:
6
- metadata.gz: f9c8aac9b8312f37ddb6085a43bd6415ab81ceceab13a2a14ff9ef329af87fe863607fb1e059af7c1d70559e20ac16797f41388e411797d054b1633d8d0d6844
7
- data.tar.gz: 95e66496cd52e174cfd070e72eb3627580fce2fbf2dce27df88073817d43ec3c59b5e21e758ad85531613a9ce9280bfcde08dd531fba4fbfbd8c8cc26688fae2
6
+ metadata.gz: ffb8efc2d28ca973cb31603c0dd7a64655393888326b3be1a7f99e639045ce4abd40b94cdc72fdf5cb1e80ada1ca3d4fa2768e933b4880598796d1b6f3c7b310
7
+ data.tar.gz: 29ceddbfedf505540bc358883de0c18181cd072277c68ee404b944b1bc997dd352f0f2c843875607462a56e34b4103857ac8aaa952173d0549f4a9ba3cf43084
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.31.0 (2024-12-17)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for AWS Mainframe Modernization(M2) Service to allow specifying network type(ipv4, dual) for the environment instances. For dual network type, m2 environment applications will serve both IPv4 and IPv6 requests, whereas for ipv4 it will serve only IPv4 requests.
8
+
4
9
  1.30.0 (2024-10-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.31.0
@@ -737,6 +737,9 @@ module Aws::MainframeModernization
737
737
  # The name of the runtime environment. Must be unique within the
738
738
  # account.
739
739
  #
740
+ # @option params [String] :network_type
741
+ # The network type required for the runtime environment.
742
+ #
740
743
  # @option params [String] :preferred_maintenance_window
741
744
  # Configures the maintenance window that you want for the runtime
742
745
  # environment. The maintenance window must have the format
@@ -781,6 +784,7 @@ module Aws::MainframeModernization
781
784
  # instance_type: "String20", # required
782
785
  # kms_key_id: "String",
783
786
  # name: "EntityName", # required
787
+ # network_type: "ipv4", # accepts ipv4, dual
784
788
  # preferred_maintenance_window: "String50",
785
789
  # publicly_accessible: false,
786
790
  # security_group_ids: ["String50"],
@@ -1257,6 +1261,7 @@ module Aws::MainframeModernization
1257
1261
  # * {Types::GetEnvironmentResponse#kms_key_id #kms_key_id} => String
1258
1262
  # * {Types::GetEnvironmentResponse#load_balancer_arn #load_balancer_arn} => String
1259
1263
  # * {Types::GetEnvironmentResponse#name #name} => String
1264
+ # * {Types::GetEnvironmentResponse#network_type #network_type} => String
1260
1265
  # * {Types::GetEnvironmentResponse#pending_maintenance #pending_maintenance} => Types::PendingMaintenance
1261
1266
  # * {Types::GetEnvironmentResponse#preferred_maintenance_window #preferred_maintenance_window} => String
1262
1267
  # * {Types::GetEnvironmentResponse#publicly_accessible #publicly_accessible} => Boolean
@@ -1288,6 +1293,7 @@ module Aws::MainframeModernization
1288
1293
  # resp.kms_key_id #=> String
1289
1294
  # resp.load_balancer_arn #=> String
1290
1295
  # resp.name #=> String
1296
+ # resp.network_type #=> String, one of "ipv4", "dual"
1291
1297
  # resp.pending_maintenance.engine_version #=> String
1292
1298
  # resp.pending_maintenance.schedule.end_time #=> Time
1293
1299
  # resp.pending_maintenance.schedule.start_time #=> Time
@@ -1881,6 +1887,7 @@ module Aws::MainframeModernization
1881
1887
  # resp.environments[0].environment_id #=> String
1882
1888
  # resp.environments[0].instance_type #=> String
1883
1889
  # resp.environments[0].name #=> String
1890
+ # resp.environments[0].network_type #=> String, one of "ipv4", "dual"
1884
1891
  # resp.environments[0].status #=> String, one of "Creating", "Available", "Updating", "Deleting", "Failed", "UnHealthy"
1885
1892
  # resp.next_token #=> String
1886
1893
  #
@@ -2241,7 +2248,7 @@ module Aws::MainframeModernization
2241
2248
  tracer: tracer
2242
2249
  )
2243
2250
  context[:gem_name] = 'aws-sdk-mainframemodernization'
2244
- context[:gem_version] = '1.30.0'
2251
+ context[:gem_version] = '1.31.0'
2245
2252
  Seahorse::Client::Request.new(handlers, context)
2246
2253
  end
2247
2254
 
@@ -144,6 +144,7 @@ module Aws::MainframeModernization
144
144
  Long = Shapes::IntegerShape.new(name: 'Long')
145
145
  MaintenanceSchedule = Shapes::StructureShape.new(name: 'MaintenanceSchedule')
146
146
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
147
+ NetworkType = Shapes::StringShape.new(name: 'NetworkType')
147
148
  NextToken = Shapes::StringShape.new(name: 'NextToken')
148
149
  PendingMaintenance = Shapes::StructureShape.new(name: 'PendingMaintenance')
149
150
  PoAttributes = Shapes::StructureShape.new(name: 'PoAttributes')
@@ -330,6 +331,7 @@ module Aws::MainframeModernization
330
331
  CreateEnvironmentRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: String20, required: true, location_name: "instanceType"))
331
332
  CreateEnvironmentRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
332
333
  CreateEnvironmentRequest.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "name"))
334
+ CreateEnvironmentRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
333
335
  CreateEnvironmentRequest.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String50, location_name: "preferredMaintenanceWindow"))
334
336
  CreateEnvironmentRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
335
337
  CreateEnvironmentRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: String50List, location_name: "securityGroupIds"))
@@ -470,6 +472,7 @@ module Aws::MainframeModernization
470
472
  EnvironmentSummary.add_member(:environment_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "environmentId"))
471
473
  EnvironmentSummary.add_member(:instance_type, Shapes::ShapeRef.new(shape: String20, required: true, location_name: "instanceType"))
472
474
  EnvironmentSummary.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "name"))
475
+ EnvironmentSummary.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
473
476
  EnvironmentSummary.add_member(:status, Shapes::ShapeRef.new(shape: EnvironmentLifecycle, required: true, location_name: "status"))
474
477
  EnvironmentSummary.struct_class = Types::EnvironmentSummary
475
478
 
@@ -613,6 +616,7 @@ module Aws::MainframeModernization
613
616
  GetEnvironmentResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
614
617
  GetEnvironmentResponse.add_member(:load_balancer_arn, Shapes::ShapeRef.new(shape: String, location_name: "loadBalancerArn"))
615
618
  GetEnvironmentResponse.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "name"))
619
+ GetEnvironmentResponse.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
616
620
  GetEnvironmentResponse.add_member(:pending_maintenance, Shapes::ShapeRef.new(shape: PendingMaintenance, location_name: "pendingMaintenance"))
617
621
  GetEnvironmentResponse.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String50, location_name: "preferredMaintenanceWindow"))
618
622
  GetEnvironmentResponse.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
@@ -570,6 +570,10 @@ module Aws::MainframeModernization
570
570
  # account.
571
571
  # @return [String]
572
572
  #
573
+ # @!attribute [rw] network_type
574
+ # The network type required for the runtime environment.
575
+ # @return [String]
576
+ #
573
577
  # @!attribute [rw] preferred_maintenance_window
574
578
  # Configures the maintenance window that you want for the runtime
575
579
  # environment. The maintenance window must have the format
@@ -614,6 +618,7 @@ module Aws::MainframeModernization
614
618
  :instance_type,
615
619
  :kms_key_id,
616
620
  :name,
621
+ :network_type,
617
622
  :preferred_maintenance_window,
618
623
  :publicly_accessible,
619
624
  :security_group_ids,
@@ -1127,6 +1132,10 @@ module Aws::MainframeModernization
1127
1132
  # The name of the runtime environment.
1128
1133
  # @return [String]
1129
1134
  #
1135
+ # @!attribute [rw] network_type
1136
+ # The network type supported by the runtime environment.
1137
+ # @return [String]
1138
+ #
1130
1139
  # @!attribute [rw] status
1131
1140
  # The status of the runtime environment
1132
1141
  # @return [String]
@@ -1141,6 +1150,7 @@ module Aws::MainframeModernization
1141
1150
  :environment_id,
1142
1151
  :instance_type,
1143
1152
  :name,
1153
+ :network_type,
1144
1154
  :status)
1145
1155
  SENSITIVE = []
1146
1156
  include Aws::Structure
@@ -1816,6 +1826,10 @@ module Aws::MainframeModernization
1816
1826
  # account.
1817
1827
  # @return [String]
1818
1828
  #
1829
+ # @!attribute [rw] network_type
1830
+ # The network type supported by the runtime environment.
1831
+ # @return [String]
1832
+ #
1819
1833
  # @!attribute [rw] pending_maintenance
1820
1834
  # Indicates the pending maintenance scheduled on this environment.
1821
1835
  # @return [Types::PendingMaintenance]
@@ -1879,6 +1893,7 @@ module Aws::MainframeModernization
1879
1893
  :kms_key_id,
1880
1894
  :load_balancer_arn,
1881
1895
  :name,
1896
+ :network_type,
1882
1897
  :pending_maintenance,
1883
1898
  :preferred_maintenance_window,
1884
1899
  :publicly_accessible,
@@ -54,7 +54,7 @@ module Aws::MainframeModernization
54
54
  autoload :EndpointProvider, 'aws-sdk-mainframemodernization/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mainframemodernization/endpoints'
56
56
 
57
- GEM_VERSION = '1.30.0'
57
+ GEM_VERSION = '1.31.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -200,6 +200,7 @@ module Aws
200
200
  instance_type: ::String,
201
201
  ?kms_key_id: ::String,
202
202
  name: ::String,
203
+ ?network_type: ("ipv4" | "dual"),
203
204
  ?preferred_maintenance_window: ::String,
204
205
  ?publicly_accessible: bool,
205
206
  ?security_group_ids: Array[::String],
@@ -380,6 +381,7 @@ module Aws
380
381
  def kms_key_id: () -> ::String
381
382
  def load_balancer_arn: () -> ::String
382
383
  def name: () -> ::String
384
+ def network_type: () -> ("ipv4" | "dual")
383
385
  def pending_maintenance: () -> Types::PendingMaintenance
384
386
  def preferred_maintenance_window: () -> ::String
385
387
  def publicly_accessible: () -> bool
data/sig/types.rbs CHANGED
@@ -164,6 +164,7 @@ module Aws::MainframeModernization
164
164
  attr_accessor instance_type: ::String
165
165
  attr_accessor kms_key_id: ::String
166
166
  attr_accessor name: ::String
167
+ attr_accessor network_type: ("ipv4" | "dual")
167
168
  attr_accessor preferred_maintenance_window: ::String
168
169
  attr_accessor publicly_accessible: bool
169
170
  attr_accessor security_group_ids: ::Array[::String]
@@ -351,6 +352,7 @@ module Aws::MainframeModernization
351
352
  attr_accessor environment_id: ::String
352
353
  attr_accessor instance_type: ::String
353
354
  attr_accessor name: ::String
355
+ attr_accessor network_type: ("ipv4" | "dual")
354
356
  attr_accessor status: ("Creating" | "Available" | "Updating" | "Deleting" | "Failed" | "UnHealthy")
355
357
  SENSITIVE: []
356
358
  end
@@ -537,6 +539,7 @@ module Aws::MainframeModernization
537
539
  attr_accessor kms_key_id: ::String
538
540
  attr_accessor load_balancer_arn: ::String
539
541
  attr_accessor name: ::String
542
+ attr_accessor network_type: ("ipv4" | "dual")
540
543
  attr_accessor pending_maintenance: Types::PendingMaintenance
541
544
  attr_accessor preferred_maintenance_window: ::String
542
545
  attr_accessor publicly_accessible: bool
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mainframemodernization
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.31.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: 2024-10-22 00:00:00.000000000 Z
11
+ date: 2024-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core