Skip to content

Commit 727e2e1

Browse files
author
AWS
committed
AWSMainframeModernization Update: 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.
1 parent a0da7c0 commit 727e2e1

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWSMainframeModernization",
4+
"contributor": "",
5+
"description": "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."
6+
}

services/m2/src/main/resources/codegen-resources/service-2.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,6 +1228,10 @@
12281228
"shape":"EntityName",
12291229
"documentation":"<p>The name of the runtime environment. Must be unique within the account.</p>"
12301230
},
1231+
"networkType":{
1232+
"shape":"NetworkType",
1233+
"documentation":"<p>The network type required for the runtime environment.</p>"
1234+
},
12311235
"preferredMaintenanceWindow":{
12321236
"shape":"String50",
12331237
"documentation":"<p>Configures the maintenance window that you want for the runtime environment. The maintenance window must have the format <code>ddd:hh24:mi-ddd:hh24:mi</code> and must be less than 24 hours. The following two examples are valid maintenance windows: <code>sun:23:45-mon:00:15</code> or <code>sat:01:00-sat:03:00</code>. </p> <p>If you do not provide a value, a random system-generated value will be assigned.</p>"
@@ -1760,6 +1764,10 @@
17601764
"shape":"EntityName",
17611765
"documentation":"<p>The name of the runtime environment.</p>"
17621766
},
1767+
"networkType":{
1768+
"shape":"NetworkType",
1769+
"documentation":"<p>The network type supported by the runtime environment.</p>"
1770+
},
17631771
"status":{
17641772
"shape":"EnvironmentLifecycle",
17651773
"documentation":"<p>The status of the runtime environment</p>"
@@ -2368,6 +2376,10 @@
23682376
"shape":"EntityName",
23692377
"documentation":"<p>The name of the runtime environment. Must be unique within the account.</p>"
23702378
},
2379+
"networkType":{
2380+
"shape":"NetworkType",
2381+
"documentation":"<p>The network type supported by the runtime environment.</p>"
2382+
},
23712383
"pendingMaintenance":{
23722384
"shape":"PendingMaintenance",
23732385
"documentation":"<p>Indicates the pending maintenance scheduled on this environment.</p>"
@@ -3036,6 +3048,13 @@
30363048
"max":2000,
30373049
"min":1
30383050
},
3051+
"NetworkType":{
3052+
"type":"string",
3053+
"enum":[
3054+
"ipv4",
3055+
"dual"
3056+
]
3057+
},
30393058
"NextToken":{
30403059
"type":"string",
30413060
"pattern":"^\\S{1,2000}$"

0 commit comments

Comments
 (0)