Skip to content

Commit

Permalink
AWS App Runner adds Python 3.11 and Node.js 18 runtimes.
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-dotnet-automation committed Dec 29, 2023
1 parent bf8b186 commit f3d1b7c
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1613,7 +1613,9 @@
"GO_1",
"DOTNET_6",
"PHP_81",
"RUBY_31"
"RUBY_31",
"PYTHON_311",
"NODEJS_18"
]
},
"RuntimeEnvironmentSecrets":{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@
"IpAddressType": {
"base": null,
"refs": {
"NetworkConfiguration$IpAddressType": "<p>App Runner provides you with the option to choose between <i>Internet Protocol version 4 (IPv4)</i> and <i>dual-stack</i> (IPv4 and IPv6) for your incoming public network configuration. This is an optional parameter. If you do not specify an <code>IpAddressType</code>, it defaults to select IPv4.</p> <note> <p> Currently, App Runner supports dual-stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that's using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint. </p> </note>"
"NetworkConfiguration$IpAddressType": "<p>App Runner provides you with the option to choose between <i>Internet Protocol version 4 (IPv4)</i> and <i>dual stack</i> (IPv4 and IPv6) for your incoming public network configuration. This is an optional parameter. If you do not specify an <code>IpAddressType</code>, it defaults to select IPv4.</p> <note> <p> Currently, App Runner supports dual stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that's using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint. </p> </note>"
}
},
"IsDefault": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2122,7 +2122,7 @@
},
"IpAddressType":{
"shape":"IpAddressType",
"documentation":"<p>App Runner provides you with the option to choose between <i>Internet Protocol version 4 (IPv4)</i> and <i>dual-stack</i> (IPv4 and IPv6) for your incoming public network configuration. This is an optional parameter. If you do not specify an <code>IpAddressType</code>, it defaults to select IPv4.</p> <note> <p> Currently, App Runner supports dual-stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that's using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint. </p> </note>"
"documentation":"<p>App Runner provides you with the option to choose between <i>Internet Protocol version 4 (IPv4)</i> and <i>dual stack</i> (IPv4 and IPv6) for your incoming public network configuration. This is an optional parameter. If you do not specify an <code>IpAddressType</code>, it defaults to select IPv4.</p> <note> <p> Currently, App Runner supports dual stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that's using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint. </p> </note>"
}
},
"documentation":"<p>Describes configuration settings related to network traffic of an App Runner service. Consists of embedded objects for each configurable network feature.</p>"
Expand Down Expand Up @@ -2349,7 +2349,9 @@
"GO_1",
"DOTNET_6",
"PHP_81",
"RUBY_31"
"RUBY_31",
"PYTHON_311",
"NODEJS_18"
]
},
"RuntimeEnvironmentSecrets":{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ internal bool IsSetIngressConfiguration()
/// Gets and sets the property IpAddressType.
/// <para>
/// App Runner provides you with the option to choose between <i>Internet Protocol version
/// 4 (IPv4)</i> and <i>dual-stack</i> (IPv4 and IPv6) for your incoming public network
/// 4 (IPv4)</i> and <i>dual stack</i> (IPv4 and IPv6) for your incoming public network
/// configuration. This is an optional parameter. If you do not specify an <code>IpAddressType</code>,
/// it defaults to select IPv4.
/// </para>
/// <note>
/// <para>
/// Currently, App Runner supports dual-stack for only Public endpoint. Only IPv4 is
/// Currently, App Runner supports dual stack for only Public endpoint. Only IPv4 is
/// supported for Private endpoint. If you update a service that's using dual-stack Public
/// endpoint to a Private endpoint, your App Runner service will default to support only
/// IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint.
Expand Down
8 changes: 8 additions & 0 deletions sdk/src/Services/AppRunner/Generated/ServiceEnumerations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -777,6 +777,10 @@ public class Runtime : ConstantClass
/// </summary>
public static readonly Runtime NODEJS_16 = new Runtime("NODEJS_16");
/// <summary>
/// Constant NODEJS_18 for Runtime
/// </summary>
public static readonly Runtime NODEJS_18 = new Runtime("NODEJS_18");
/// <summary>
/// Constant PHP_81 for Runtime
/// </summary>
public static readonly Runtime PHP_81 = new Runtime("PHP_81");
Expand All @@ -785,6 +789,10 @@ public class Runtime : ConstantClass
/// </summary>
public static readonly Runtime PYTHON_3 = new Runtime("PYTHON_3");
/// <summary>
/// Constant PYTHON_311 for Runtime
/// </summary>
public static readonly Runtime PYTHON_311 = new Runtime("PYTHON_311");
/// <summary>
/// Constant RUBY_31 for Runtime
/// </summary>
public static readonly Runtime RUBY_31 = new Runtime("RUBY_31");
Expand Down

0 comments on commit f3d1b7c

Please sign in to comment.