Skip to content

Commit

Permalink
This release introduces a new parameter to bypasses an API key's expi…
Browse files Browse the repository at this point in the history
…ry conditions and delete the key.

Add LinkEntityArn support for different partitions; Add UnsupportedUserEditionException in UpdateDashboardLinks API; Add support for New Reader Experience Topics
AWS App Runner adds Python 3.11 and Node.js 18 runtimes.
  • Loading branch information
aws-sdk-cpp-automation committed Dec 29, 2023
1 parent 958bf70 commit fdce535
Show file tree
Hide file tree
Showing 16 changed files with 298 additions and 42 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.234
1.11.235
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ namespace Model

/**
* <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
* 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>
* <p> Currently, App Runner supports dual-stack for only Public endpoint.
* <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
Expand All @@ -118,10 +118,10 @@ namespace Model

/**
* <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
* 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>
* <p> Currently, App Runner supports dual-stack for only Public endpoint.
* <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
Expand All @@ -131,10 +131,10 @@ namespace Model

/**
* <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
* 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>
* <p> Currently, App Runner supports dual-stack for only Public endpoint.
* <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
Expand All @@ -144,10 +144,10 @@ namespace Model

/**
* <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
* 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>
* <p> Currently, App Runner supports dual-stack for only Public endpoint.
* <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
Expand All @@ -157,10 +157,10 @@ namespace Model

/**
* <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
* 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>
* <p> Currently, App Runner supports dual-stack for only Public endpoint.
* <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
Expand All @@ -170,10 +170,10 @@ namespace Model

/**
* <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
* 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>
* <p> Currently, App Runner supports dual-stack for only Public endpoint.
* <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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ namespace Model
GO_1,
DOTNET_6,
PHP_81,
RUBY_31
RUBY_31,
PYTHON_311,
NODEJS_18
};

namespace RuntimeMapper
Expand Down
14 changes: 14 additions & 0 deletions generated/src/aws-cpp-sdk-apprunner/source/model/Runtime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ namespace Aws
static const int DOTNET_6_HASH = HashingUtils::HashString("DOTNET_6");
static const int PHP_81_HASH = HashingUtils::HashString("PHP_81");
static const int RUBY_31_HASH = HashingUtils::HashString("RUBY_31");
static const int PYTHON_311_HASH = HashingUtils::HashString("PYTHON_311");
static const int NODEJS_18_HASH = HashingUtils::HashString("NODEJS_18");


Runtime GetRuntimeForName(const Aws::String& name)
Expand Down Expand Up @@ -75,6 +77,14 @@ namespace Aws
{
return Runtime::RUBY_31;
}
else if (hashCode == PYTHON_311_HASH)
{
return Runtime::PYTHON_311;
}
else if (hashCode == NODEJS_18_HASH)
{
return Runtime::NODEJS_18;
}
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
{
Expand Down Expand Up @@ -111,6 +121,10 @@ namespace Aws
return "PHP_81";
case Runtime::RUBY_31:
return "RUBY_31";
case Runtime::PYTHON_311:
return "PYTHON_311";
case Runtime::NODEJS_18:
return "NODEJS_18";
default:
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
if(overflowContainer)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ namespace Model
* key that is being created.</p> </li> <li> <p>Other than wildcards, you must
* include the full ARN, including the <code>arn</code>, <code>partition</code>,
* <code>service</code>, <code>region</code>, <code>account-id</code> and
* <code>resource-id</code>, delimited by colons (:).</p> </li> <li> <p>No spaces
* <code>resource-id</code> delimited by colons (:).</p> </li> <li> <p>No spaces
* allowed, even with wildcards. For example,
* <code>arn:aws:geo:region:<i>account-id</i>:map/ExampleMap*</code>.</p> </li>
* </ul> <p>For more information about ARN format, see <a
Expand All @@ -419,7 +419,7 @@ namespace Model
* key that is being created.</p> </li> <li> <p>Other than wildcards, you must
* include the full ARN, including the <code>arn</code>, <code>partition</code>,
* <code>service</code>, <code>region</code>, <code>account-id</code> and
* <code>resource-id</code>, delimited by colons (:).</p> </li> <li> <p>No spaces
* <code>resource-id</code> delimited by colons (:).</p> </li> <li> <p>No spaces
* allowed, even with wildcards. For example,
* <code>arn:aws:geo:region:<i>account-id</i>:map/ExampleMap*</code>.</p> </li>
* </ul> <p>For more information about ARN format, see <a
Expand All @@ -437,7 +437,7 @@ namespace Model
* key that is being created.</p> </li> <li> <p>Other than wildcards, you must
* include the full ARN, including the <code>arn</code>, <code>partition</code>,
* <code>service</code>, <code>region</code>, <code>account-id</code> and
* <code>resource-id</code>, delimited by colons (:).</p> </li> <li> <p>No spaces
* <code>resource-id</code> delimited by colons (:).</p> </li> <li> <p>No spaces
* allowed, even with wildcards. For example,
* <code>arn:aws:geo:region:<i>account-id</i>:map/ExampleMap*</code>.</p> </li>
* </ul> <p>For more information about ARN format, see <a
Expand All @@ -455,7 +455,7 @@ namespace Model
* key that is being created.</p> </li> <li> <p>Other than wildcards, you must
* include the full ARN, including the <code>arn</code>, <code>partition</code>,
* <code>service</code>, <code>region</code>, <code>account-id</code> and
* <code>resource-id</code>, delimited by colons (:).</p> </li> <li> <p>No spaces
* <code>resource-id</code> delimited by colons (:).</p> </li> <li> <p>No spaces
* allowed, even with wildcards. For example,
* <code>arn:aws:geo:region:<i>account-id</i>:map/ExampleMap*</code>.</p> </li>
* </ul> <p>For more information about ARN format, see <a
Expand All @@ -473,7 +473,7 @@ namespace Model
* key that is being created.</p> </li> <li> <p>Other than wildcards, you must
* include the full ARN, including the <code>arn</code>, <code>partition</code>,
* <code>service</code>, <code>region</code>, <code>account-id</code> and
* <code>resource-id</code>, delimited by colons (:).</p> </li> <li> <p>No spaces
* <code>resource-id</code> delimited by colons (:).</p> </li> <li> <p>No spaces
* allowed, even with wildcards. For example,
* <code>arn:aws:geo:region:<i>account-id</i>:map/ExampleMap*</code>.</p> </li>
* </ul> <p>For more information about ARN format, see <a
Expand All @@ -491,7 +491,7 @@ namespace Model
* key that is being created.</p> </li> <li> <p>Other than wildcards, you must
* include the full ARN, including the <code>arn</code>, <code>partition</code>,
* <code>service</code>, <code>region</code>, <code>account-id</code> and
* <code>resource-id</code>, delimited by colons (:).</p> </li> <li> <p>No spaces
* <code>resource-id</code> delimited by colons (:).</p> </li> <li> <p>No spaces
* allowed, even with wildcards. For example,
* <code>arn:aws:geo:region:<i>account-id</i>:map/ExampleMap*</code>.</p> </li>
* </ul> <p>For more information about ARN format, see <a
Expand All @@ -509,7 +509,7 @@ namespace Model
* key that is being created.</p> </li> <li> <p>Other than wildcards, you must
* include the full ARN, including the <code>arn</code>, <code>partition</code>,
* <code>service</code>, <code>region</code>, <code>account-id</code> and
* <code>resource-id</code>, delimited by colons (:).</p> </li> <li> <p>No spaces
* <code>resource-id</code> delimited by colons (:).</p> </li> <li> <p>No spaces
* allowed, even with wildcards. For example,
* <code>arn:aws:geo:region:<i>account-id</i>:map/ExampleMap*</code>.</p> </li>
* </ul> <p>For more information about ARN format, see <a
Expand All @@ -527,7 +527,7 @@ namespace Model
* key that is being created.</p> </li> <li> <p>Other than wildcards, you must
* include the full ARN, including the <code>arn</code>, <code>partition</code>,
* <code>service</code>, <code>region</code>, <code>account-id</code> and
* <code>resource-id</code>, delimited by colons (:).</p> </li> <li> <p>No spaces
* <code>resource-id</code> delimited by colons (:).</p> </li> <li> <p>No spaces
* allowed, even with wildcards. For example,
* <code>arn:aws:geo:region:<i>account-id</i>:map/ExampleMap*</code>.</p> </li>
* </ul> <p>For more information about ARN format, see <a
Expand All @@ -545,7 +545,7 @@ namespace Model
* key that is being created.</p> </li> <li> <p>Other than wildcards, you must
* include the full ARN, including the <code>arn</code>, <code>partition</code>,
* <code>service</code>, <code>region</code>, <code>account-id</code> and
* <code>resource-id</code>, delimited by colons (:).</p> </li> <li> <p>No spaces
* <code>resource-id</code> delimited by colons (:).</p> </li> <li> <p>No spaces
* allowed, even with wildcards. For example,
* <code>arn:aws:geo:region:<i>account-id</i>:map/ExampleMap*</code>.</p> </li>
* </ul> <p>For more information about ARN format, see <a
Expand Down
Loading

0 comments on commit fdce535

Please sign in to comment.