aws-sdk-apprunner 1.62.0 → 1.63.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apprunner/client.rb +3 -2
- data/lib/aws-sdk-apprunner/types.rb +5 -14
- data/lib/aws-sdk-apprunner.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24050a45d58cd8e95fa722bd34c7c594dd3c3f3334f63975bc6b7b926980047f
|
4
|
+
data.tar.gz: d30ab554ceeeabf38929cfb37b16a4549105a9b8130142e6c5bbfe3a91ce4d27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44d6d6fbc7a97386dde3d20564e320f3b2d563ab796655b44ea5cee7a4d93dec969ea71bf1fb616a56bae8dbbd5c58e9c42166675f984ef53a79432d92b6ce4c
|
7
|
+
data.tar.gz: e7a1f5fd1ce1eb16221f389c2f768126fc5c6081b4b7aad4e99863b34614cfa55996f07dc54c3a5daaa601a72cc1b7b5c5c3474d5d901a1b0967ed0f723ec740
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.63.0
|
@@ -1054,7 +1054,8 @@ module Aws::AppRunner
|
|
1054
1054
|
# single Amazon VPC. App Runner determines the Amazon VPC from the
|
1055
1055
|
# subnets you specify.
|
1056
1056
|
#
|
1057
|
-
# <note markdown="1"> App Runner
|
1057
|
+
# <note markdown="1"> App Runner only supports subnets of IP address type *IPv4* and *dual
|
1058
|
+
# stack* (IPv4 and IPv6).
|
1058
1059
|
#
|
1059
1060
|
# </note>
|
1060
1061
|
#
|
@@ -3004,7 +3005,7 @@ module Aws::AppRunner
|
|
3004
3005
|
tracer: tracer
|
3005
3006
|
)
|
3006
3007
|
context[:gem_name] = 'aws-sdk-apprunner'
|
3007
|
-
context[:gem_version] = '1.
|
3008
|
+
context[:gem_version] = '1.63.0'
|
3008
3009
|
Seahorse::Client::Request.new(handlers, context)
|
3009
3010
|
end
|
3010
3011
|
|
@@ -804,7 +804,8 @@ module Aws::AppRunner
|
|
804
804
|
# subnets of a single Amazon VPC. App Runner determines the Amazon VPC
|
805
805
|
# from the subnets you specify.
|
806
806
|
#
|
807
|
-
# <note markdown="1"> App Runner
|
807
|
+
# <note markdown="1"> App Runner only supports subnets of IP address type *IPv4* and *dual
|
808
|
+
# stack* (IPv4 and IPv6).
|
808
809
|
#
|
809
810
|
# </note>
|
810
811
|
# @return [Array<String>]
|
@@ -2168,19 +2169,9 @@ module Aws::AppRunner
|
|
2168
2169
|
# @return [Types::IngressConfiguration]
|
2169
2170
|
#
|
2170
2171
|
# @!attribute [rw] ip_address_type
|
2171
|
-
# App Runner provides you with the option to choose between *
|
2172
|
-
#
|
2173
|
-
#
|
2174
|
-
# parameter. If you do not specify an `IpAddressType`, it defaults to
|
2175
|
-
# select IPv4.
|
2176
|
-
#
|
2177
|
-
# <note markdown="1"> Currently, App Runner supports dual stack for only Public endpoint.
|
2178
|
-
# Only IPv4 is supported for Private endpoint. If you update a service
|
2179
|
-
# that's using dual-stack Public endpoint to a Private endpoint, your
|
2180
|
-
# App Runner service will default to support only IPv4 for Private
|
2181
|
-
# endpoint and fail to receive traffic originating from IPv6 endpoint.
|
2182
|
-
#
|
2183
|
-
# </note>
|
2172
|
+
# App Runner provides you with the option to choose between *IPv4* and
|
2173
|
+
# *dual stack* (IPv4 and IPv6). This is an optional parameter. If you
|
2174
|
+
# do not specify an `IpAddressType`, it defaults to select IPv4.
|
2184
2175
|
# @return [String]
|
2185
2176
|
#
|
2186
2177
|
# @see http://docs.aws.amazon.com/goto/WebAPI/apprunner-2020-05-15/NetworkConfiguration AWS API Documentation
|
data/lib/aws-sdk-apprunner.rb
CHANGED