aws-sdk-apigateway 1.113.0 → 1.114.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-apigateway/client.rb +15 -3
- data/lib/aws-sdk-apigateway/client_api.rb +2 -0
- data/lib/aws-sdk-apigateway/types.rb +15 -5
- data/lib/aws-sdk-apigateway.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/types.rbs +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0625f4235c58f2a9cd361570b1560c1e588cee3a8ec82819cefdfc6c133d672
|
4
|
+
data.tar.gz: f13b8b8f46526070aee5dd2784234bc766e6ffdc7624973255d45cf1c9660d09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb92496221e593989ed1bfe17f5d88c93bedc7d36c69da8aa410e2fb29594b15d0fb515730197c9af05a3eb5f4c67be4d279a75029b6ebf7c7ce773ed7c483b1
|
7
|
+
data.tar.gz: 5e58565f1a6c83322ff1e5fce718391e970d914ea09156220c14188545ab7214ae7f122ee3a53211403b0aea7f97620fb342986796fc9cf881bac8e2f7d0ea8a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.114.0 (2025-03-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for setting the IP address type to allow dual-stack or IPv4 address types to invoke your APIs or domain names.
|
8
|
+
|
4
9
|
1.113.0 (2025-02-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.114.0
|
@@ -963,7 +963,7 @@ module Aws::APIGateway
|
|
963
963
|
#
|
964
964
|
# @option params [Types::EndpointConfiguration] :endpoint_configuration
|
965
965
|
# The endpoint configuration of this DomainName showing the endpoint
|
966
|
-
# types of the domain name.
|
966
|
+
# types and IP address types of the domain name.
|
967
967
|
#
|
968
968
|
# @option params [Hash<String,String>] :tags
|
969
969
|
# The key-value map of strings. The valid character set is
|
@@ -1028,6 +1028,7 @@ module Aws::APIGateway
|
|
1028
1028
|
# regional_certificate_arn: "String",
|
1029
1029
|
# endpoint_configuration: {
|
1030
1030
|
# types: ["REGIONAL"], # accepts REGIONAL, EDGE, PRIVATE
|
1031
|
+
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
1031
1032
|
# vpc_endpoint_ids: ["String"],
|
1032
1033
|
# },
|
1033
1034
|
# tags: {
|
@@ -1058,6 +1059,7 @@ module Aws::APIGateway
|
|
1058
1059
|
# resp.distribution_hosted_zone_id #=> String
|
1059
1060
|
# resp.endpoint_configuration.types #=> Array
|
1060
1061
|
# resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
1062
|
+
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
1061
1063
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
1062
1064
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
1063
1065
|
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
@@ -1350,7 +1352,7 @@ module Aws::APIGateway
|
|
1350
1352
|
#
|
1351
1353
|
# @option params [Types::EndpointConfiguration] :endpoint_configuration
|
1352
1354
|
# The endpoint configuration of this RestApi showing the endpoint types
|
1353
|
-
# of the API.
|
1355
|
+
# and IP address types of the API.
|
1354
1356
|
#
|
1355
1357
|
# @option params [String] :policy
|
1356
1358
|
# A stringified JSON policy document that applies to this RestApi
|
@@ -1397,6 +1399,7 @@ module Aws::APIGateway
|
|
1397
1399
|
# api_key_source: "HEADER", # accepts HEADER, AUTHORIZER
|
1398
1400
|
# endpoint_configuration: {
|
1399
1401
|
# types: ["REGIONAL"], # accepts REGIONAL, EDGE, PRIVATE
|
1402
|
+
# ip_address_type: "ipv4", # accepts ipv4, dualstack
|
1400
1403
|
# vpc_endpoint_ids: ["String"],
|
1401
1404
|
# },
|
1402
1405
|
# policy: "String",
|
@@ -1421,6 +1424,7 @@ module Aws::APIGateway
|
|
1421
1424
|
# resp.api_key_source #=> String, one of "HEADER", "AUTHORIZER"
|
1422
1425
|
# resp.endpoint_configuration.types #=> Array
|
1423
1426
|
# resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
1427
|
+
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
1424
1428
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
1425
1429
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
1426
1430
|
# resp.policy #=> String
|
@@ -3147,6 +3151,7 @@ module Aws::APIGateway
|
|
3147
3151
|
# resp.distribution_hosted_zone_id #=> String
|
3148
3152
|
# resp.endpoint_configuration.types #=> Array
|
3149
3153
|
# resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
3154
|
+
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
3150
3155
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
3151
3156
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
3152
3157
|
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
@@ -3260,6 +3265,7 @@ module Aws::APIGateway
|
|
3260
3265
|
# resp.items[0].distribution_hosted_zone_id #=> String
|
3261
3266
|
# resp.items[0].endpoint_configuration.types #=> Array
|
3262
3267
|
# resp.items[0].endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
3268
|
+
# resp.items[0].endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
3263
3269
|
# resp.items[0].endpoint_configuration.vpc_endpoint_ids #=> Array
|
3264
3270
|
# resp.items[0].endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
3265
3271
|
# resp.items[0].domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
@@ -4109,6 +4115,7 @@ module Aws::APIGateway
|
|
4109
4115
|
# resp.api_key_source #=> String, one of "HEADER", "AUTHORIZER"
|
4110
4116
|
# resp.endpoint_configuration.types #=> Array
|
4111
4117
|
# resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
4118
|
+
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
4112
4119
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
4113
4120
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
4114
4121
|
# resp.policy #=> String
|
@@ -4164,6 +4171,7 @@ module Aws::APIGateway
|
|
4164
4171
|
# resp.items[0].api_key_source #=> String, one of "HEADER", "AUTHORIZER"
|
4165
4172
|
# resp.items[0].endpoint_configuration.types #=> Array
|
4166
4173
|
# resp.items[0].endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
4174
|
+
# resp.items[0].endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
4167
4175
|
# resp.items[0].endpoint_configuration.vpc_endpoint_ids #=> Array
|
4168
4176
|
# resp.items[0].endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
4169
4177
|
# resp.items[0].policy #=> String
|
@@ -4991,6 +4999,7 @@ module Aws::APIGateway
|
|
4991
4999
|
# resp.api_key_source #=> String, one of "HEADER", "AUTHORIZER"
|
4992
5000
|
# resp.endpoint_configuration.types #=> Array
|
4993
5001
|
# resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
5002
|
+
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
4994
5003
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
4995
5004
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
4996
5005
|
# resp.policy #=> String
|
@@ -5630,6 +5639,7 @@ module Aws::APIGateway
|
|
5630
5639
|
# resp.api_key_source #=> String, one of "HEADER", "AUTHORIZER"
|
5631
5640
|
# resp.endpoint_configuration.types #=> Array
|
5632
5641
|
# resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
5642
|
+
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
5633
5643
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
5634
5644
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
5635
5645
|
# resp.policy #=> String
|
@@ -6411,6 +6421,7 @@ module Aws::APIGateway
|
|
6411
6421
|
# resp.distribution_hosted_zone_id #=> String
|
6412
6422
|
# resp.endpoint_configuration.types #=> Array
|
6413
6423
|
# resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
6424
|
+
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
6414
6425
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
6415
6426
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
6416
6427
|
# resp.domain_name_status #=> String, one of "AVAILABLE", "UPDATING", "PENDING", "PENDING_CERTIFICATE_REIMPORT", "PENDING_OWNERSHIP_VERIFICATION"
|
@@ -7068,6 +7079,7 @@ module Aws::APIGateway
|
|
7068
7079
|
# resp.api_key_source #=> String, one of "HEADER", "AUTHORIZER"
|
7069
7080
|
# resp.endpoint_configuration.types #=> Array
|
7070
7081
|
# resp.endpoint_configuration.types[0] #=> String, one of "REGIONAL", "EDGE", "PRIVATE"
|
7082
|
+
# resp.endpoint_configuration.ip_address_type #=> String, one of "ipv4", "dualstack"
|
7071
7083
|
# resp.endpoint_configuration.vpc_endpoint_ids #=> Array
|
7072
7084
|
# resp.endpoint_configuration.vpc_endpoint_ids[0] #=> String
|
7073
7085
|
# resp.policy #=> String
|
@@ -7377,7 +7389,7 @@ module Aws::APIGateway
|
|
7377
7389
|
tracer: tracer
|
7378
7390
|
)
|
7379
7391
|
context[:gem_name] = 'aws-sdk-apigateway'
|
7380
|
-
context[:gem_version] = '1.
|
7392
|
+
context[:gem_version] = '1.114.0'
|
7381
7393
|
Seahorse::Client::Request.new(handlers, context)
|
7382
7394
|
end
|
7383
7395
|
|
@@ -157,6 +157,7 @@ module Aws::APIGateway
|
|
157
157
|
Integration = Shapes::StructureShape.new(name: 'Integration')
|
158
158
|
IntegrationResponse = Shapes::StructureShape.new(name: 'IntegrationResponse')
|
159
159
|
IntegrationType = Shapes::StringShape.new(name: 'IntegrationType')
|
160
|
+
IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
|
160
161
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
161
162
|
ListOfARNs = Shapes::ListShape.new(name: 'ListOfARNs')
|
162
163
|
ListOfApiKey = Shapes::ListShape.new(name: 'ListOfApiKey')
|
@@ -679,6 +680,7 @@ module Aws::APIGateway
|
|
679
680
|
DomainNames.struct_class = Types::DomainNames
|
680
681
|
|
681
682
|
EndpointConfiguration.add_member(:types, Shapes::ShapeRef.new(shape: ListOfEndpointType, location_name: "types"))
|
683
|
+
EndpointConfiguration.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
|
682
684
|
EndpointConfiguration.add_member(:vpc_endpoint_ids, Shapes::ShapeRef.new(shape: ListOfString, location_name: "vpcEndpointIds"))
|
683
685
|
EndpointConfiguration.struct_class = Types::EndpointConfiguration
|
684
686
|
|
@@ -862,7 +862,7 @@ module Aws::APIGateway
|
|
862
862
|
#
|
863
863
|
# @!attribute [rw] endpoint_configuration
|
864
864
|
# The endpoint configuration of this DomainName showing the endpoint
|
865
|
-
# types of the domain name.
|
865
|
+
# types and IP address types of the domain name.
|
866
866
|
# @return [Types::EndpointConfiguration]
|
867
867
|
#
|
868
868
|
# @!attribute [rw] tags
|
@@ -1042,7 +1042,7 @@ module Aws::APIGateway
|
|
1042
1042
|
#
|
1043
1043
|
# @!attribute [rw] endpoint_configuration
|
1044
1044
|
# The endpoint configuration of this RestApi showing the endpoint
|
1045
|
-
# types of the API.
|
1045
|
+
# types and IP address types of the API.
|
1046
1046
|
# @return [Types::EndpointConfiguration]
|
1047
1047
|
#
|
1048
1048
|
# @!attribute [rw] policy
|
@@ -1962,7 +1962,7 @@ module Aws::APIGateway
|
|
1962
1962
|
#
|
1963
1963
|
# @!attribute [rw] endpoint_configuration
|
1964
1964
|
# The endpoint configuration of this DomainName showing the endpoint
|
1965
|
-
# types of the domain name.
|
1965
|
+
# types and IP address types of the domain name.
|
1966
1966
|
# @return [Types::EndpointConfiguration]
|
1967
1967
|
#
|
1968
1968
|
# @!attribute [rw] domain_name_status
|
@@ -2109,7 +2109,8 @@ module Aws::APIGateway
|
|
2109
2109
|
end
|
2110
2110
|
|
2111
2111
|
# The endpoint configuration to indicate the types of endpoints an API
|
2112
|
-
# (RestApi) or its custom domain name (DomainName) has
|
2112
|
+
# (RestApi) or its custom domain name (DomainName) has and the IP
|
2113
|
+
# address types that can invoke it.
|
2113
2114
|
#
|
2114
2115
|
# @!attribute [rw] types
|
2115
2116
|
# A list of endpoint types of an API (RestApi) or its custom domain
|
@@ -2119,6 +2120,14 @@ module Aws::APIGateway
|
|
2119
2120
|
# API, the endpoint type is `PRIVATE`.
|
2120
2121
|
# @return [Array<String>]
|
2121
2122
|
#
|
2123
|
+
# @!attribute [rw] ip_address_type
|
2124
|
+
# The IP address types that can invoke an API (RestApi) or a
|
2125
|
+
# DomainName. Use `ipv4` to allow only IPv4 addresses to invoke an API
|
2126
|
+
# or DomainName, or use `dualstack` to allow both IPv4 and IPv6
|
2127
|
+
# addresses to invoke an API or a DomainName. For the `PRIVATE`
|
2128
|
+
# endpoint type, only `dualstack` is supported.
|
2129
|
+
# @return [String]
|
2130
|
+
#
|
2122
2131
|
# @!attribute [rw] vpc_endpoint_ids
|
2123
2132
|
# A list of VpcEndpointIds of an API (RestApi) against which to create
|
2124
2133
|
# Route53 ALIASes. It is only supported for `PRIVATE` endpoint type.
|
@@ -2126,6 +2135,7 @@ module Aws::APIGateway
|
|
2126
2135
|
#
|
2127
2136
|
class EndpointConfiguration < Struct.new(
|
2128
2137
|
:types,
|
2138
|
+
:ip_address_type,
|
2129
2139
|
:vpc_endpoint_ids)
|
2130
2140
|
SENSITIVE = []
|
2131
2141
|
include Aws::Structure
|
@@ -4739,7 +4749,7 @@ module Aws::APIGateway
|
|
4739
4749
|
#
|
4740
4750
|
# @!attribute [rw] endpoint_configuration
|
4741
4751
|
# The endpoint configuration of this RestApi showing the endpoint
|
4742
|
-
# types of the API.
|
4752
|
+
# types and IP address types of the API.
|
4743
4753
|
# @return [Types::EndpointConfiguration]
|
4744
4754
|
#
|
4745
4755
|
# @!attribute [rw] policy
|
data/lib/aws-sdk-apigateway.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -248,6 +248,7 @@ module Aws
|
|
248
248
|
?regional_certificate_arn: ::String,
|
249
249
|
?endpoint_configuration: {
|
250
250
|
types: Array[("REGIONAL" | "EDGE" | "PRIVATE")]?,
|
251
|
+
ip_address_type: ("ipv4" | "dualstack")?,
|
251
252
|
vpc_endpoint_ids: Array[::String]?
|
252
253
|
},
|
253
254
|
?tags: Hash[::String, ::String],
|
@@ -356,6 +357,7 @@ module Aws
|
|
356
357
|
?api_key_source: ("HEADER" | "AUTHORIZER"),
|
357
358
|
?endpoint_configuration: {
|
358
359
|
types: Array[("REGIONAL" | "EDGE" | "PRIVATE")]?,
|
360
|
+
ip_address_type: ("ipv4" | "dualstack")?,
|
359
361
|
vpc_endpoint_ids: Array[::String]?
|
360
362
|
},
|
361
363
|
?policy: ::String,
|
data/sig/types.rbs
CHANGED
@@ -534,6 +534,7 @@ module Aws::APIGateway
|
|
534
534
|
|
535
535
|
class EndpointConfiguration
|
536
536
|
attr_accessor types: ::Array[("REGIONAL" | "EDGE" | "PRIVATE")]
|
537
|
+
attr_accessor ip_address_type: ("ipv4" | "dualstack")
|
537
538
|
attr_accessor vpc_endpoint_ids: ::Array[::String]
|
538
539
|
SENSITIVE: []
|
539
540
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-apigateway
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.114.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: 2025-
|
11
|
+
date: 2025-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|