aws-sdk-apigateway 1.116.0 → 1.121.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigateway/client.rb +34 -10
- data/lib/aws-sdk-apigateway/client_api.rb +3 -0
- data/lib/aws-sdk-apigateway/types.rb +21 -6
- data/lib/aws-sdk-apigateway.rb +1 -1
- data/sig/client.rbs +6 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '08f3378b7f55e056bc2976246dc8b1d0decaace4a97a6974dbe34f694d1fdcce'
|
4
|
+
data.tar.gz: 4801e6868d2e3a3c13853e17e153033acc96c43742ed77bed59d67b57b29ccfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ebb9729eb35a8753e56cc3d2ed006958a4dc12ce46fa1425e2a5e8cfa7cc3bc4fc505231edafd5246c0d64a57285640c67bf1b39bf6118c6a7ac861b67cc67d
|
7
|
+
data.tar.gz: e95f317e6dd569e8d7b5b392508dee8d43886392f93dd77c988b84dfb191659e12cbbda39cc6f0273361ffc4b13198078d0eff3dcb7f94b7e1866f91512f4e09
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,31 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.121.0 (2025-07-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.120.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.119.0 (2025-06-12)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Documentation updates for Amazon API Gateway
|
18
|
+
|
19
|
+
1.118.0 (2025-06-03)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Adds support to set the routing mode for a custom domain name.
|
23
|
+
|
24
|
+
1.117.0 (2025-06-02)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
28
|
+
|
4
29
|
1.116.0 (2025-05-12)
|
5
30
|
------------------
|
6
31
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.121.0
|
@@ -97,7 +97,7 @@ module Aws::APIGateway
|
|
97
97
|
# class name or an instance of a plugin class.
|
98
98
|
#
|
99
99
|
# @option options [required, Aws::CredentialProvider] :credentials
|
100
|
-
# Your AWS credentials. This can be an instance of any one of the
|
100
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
101
101
|
# following classes:
|
102
102
|
#
|
103
103
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -130,18 +130,23 @@ module Aws::APIGateway
|
|
130
130
|
# locations will be searched for credentials:
|
131
131
|
#
|
132
132
|
# * `Aws.config[:credentials]`
|
133
|
+
#
|
133
134
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
134
135
|
# `:account_id` options.
|
135
|
-
#
|
136
|
-
#
|
136
|
+
#
|
137
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
138
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
139
|
+
#
|
137
140
|
# * `~/.aws/credentials`
|
141
|
+
#
|
138
142
|
# * `~/.aws/config`
|
143
|
+
#
|
139
144
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
140
145
|
# are very aggressive. Construct and pass an instance of
|
141
146
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
142
147
|
# enable retries and extended timeouts. Instance profile credential
|
143
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
144
|
-
# to true
|
148
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
149
|
+
# to `true`.
|
145
150
|
#
|
146
151
|
# @option options [required, String] :region
|
147
152
|
# The AWS region to connect to. The configured `:region` is
|
@@ -169,6 +174,11 @@ module Aws::APIGateway
|
|
169
174
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
170
175
|
# not retry instead of sleeping.
|
171
176
|
#
|
177
|
+
# @option options [Array<String>] :auth_scheme_preference
|
178
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
179
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
180
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
181
|
+
#
|
172
182
|
# @option options [Boolean] :client_side_monitoring (false)
|
173
183
|
# When `true`, client-side metrics will be collected for all API requests from
|
174
184
|
# this client.
|
@@ -255,8 +265,8 @@ module Aws::APIGateway
|
|
255
265
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
256
266
|
#
|
257
267
|
# @option options [String] :profile ("default")
|
258
|
-
# Used when loading credentials from the shared credentials file
|
259
|
-
#
|
268
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
269
|
+
# When not specified, 'default' is used.
|
260
270
|
#
|
261
271
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
262
272
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -369,7 +379,7 @@ module Aws::APIGateway
|
|
369
379
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
370
380
|
#
|
371
381
|
# @option options [Aws::TokenProvider] :token_provider
|
372
|
-
#
|
382
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
373
383
|
# following classes:
|
374
384
|
#
|
375
385
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -990,6 +1000,11 @@ module Aws::APIGateway
|
|
990
1000
|
# service for this DomainName regardless of the caller and Method
|
991
1001
|
# configuration. Supported only for private custom domain names.
|
992
1002
|
#
|
1003
|
+
# @option params [String] :routing_mode
|
1004
|
+
# The routing mode for this domain name. The routing mode determines how
|
1005
|
+
# API Gateway sends traffic from your custom domain name to your private
|
1006
|
+
# APIs.
|
1007
|
+
#
|
993
1008
|
# @return [Types::DomainName] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
994
1009
|
#
|
995
1010
|
# * {Types::DomainName#domain_name #domain_name} => String
|
@@ -1013,6 +1028,7 @@ module Aws::APIGateway
|
|
1013
1028
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
1014
1029
|
# * {Types::DomainName#management_policy #management_policy} => String
|
1015
1030
|
# * {Types::DomainName#policy #policy} => String
|
1031
|
+
# * {Types::DomainName#routing_mode #routing_mode} => String
|
1016
1032
|
#
|
1017
1033
|
# @example Request syntax with placeholder values
|
1018
1034
|
#
|
@@ -1040,6 +1056,7 @@ module Aws::APIGateway
|
|
1040
1056
|
# },
|
1041
1057
|
# ownership_verification_certificate_arn: "String",
|
1042
1058
|
# policy: "String",
|
1059
|
+
# routing_mode: "BASE_PATH_MAPPING_ONLY", # accepts BASE_PATH_MAPPING_ONLY, ROUTING_RULE_ONLY, ROUTING_RULE_THEN_BASE_PATH_MAPPING
|
1043
1060
|
# })
|
1044
1061
|
#
|
1045
1062
|
# @example Response structure
|
@@ -1073,6 +1090,7 @@ module Aws::APIGateway
|
|
1073
1090
|
# resp.ownership_verification_certificate_arn #=> String
|
1074
1091
|
# resp.management_policy #=> String
|
1075
1092
|
# resp.policy #=> String
|
1093
|
+
# resp.routing_mode #=> String, one of "BASE_PATH_MAPPING_ONLY", "ROUTING_RULE_ONLY", "ROUTING_RULE_THEN_BASE_PATH_MAPPING"
|
1076
1094
|
#
|
1077
1095
|
# @overload create_domain_name(params = {})
|
1078
1096
|
# @param [Hash] params ({})
|
@@ -3126,6 +3144,7 @@ module Aws::APIGateway
|
|
3126
3144
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
3127
3145
|
# * {Types::DomainName#management_policy #management_policy} => String
|
3128
3146
|
# * {Types::DomainName#policy #policy} => String
|
3147
|
+
# * {Types::DomainName#routing_mode #routing_mode} => String
|
3129
3148
|
#
|
3130
3149
|
# @example Request syntax with placeholder values
|
3131
3150
|
#
|
@@ -3165,6 +3184,7 @@ module Aws::APIGateway
|
|
3165
3184
|
# resp.ownership_verification_certificate_arn #=> String
|
3166
3185
|
# resp.management_policy #=> String
|
3167
3186
|
# resp.policy #=> String
|
3187
|
+
# resp.routing_mode #=> String, one of "BASE_PATH_MAPPING_ONLY", "ROUTING_RULE_ONLY", "ROUTING_RULE_THEN_BASE_PATH_MAPPING"
|
3168
3188
|
#
|
3169
3189
|
# @overload get_domain_name(params = {})
|
3170
3190
|
# @param [Hash] params ({})
|
@@ -3279,6 +3299,7 @@ module Aws::APIGateway
|
|
3279
3299
|
# resp.items[0].ownership_verification_certificate_arn #=> String
|
3280
3300
|
# resp.items[0].management_policy #=> String
|
3281
3301
|
# resp.items[0].policy #=> String
|
3302
|
+
# resp.items[0].routing_mode #=> String, one of "BASE_PATH_MAPPING_ONLY", "ROUTING_RULE_ONLY", "ROUTING_RULE_THEN_BASE_PATH_MAPPING"
|
3282
3303
|
#
|
3283
3304
|
# @overload get_domain_names(params = {})
|
3284
3305
|
# @param [Hash] params ({})
|
@@ -5174,7 +5195,8 @@ module Aws::APIGateway
|
|
5174
5195
|
#
|
5175
5196
|
# @option params [Integer] :timeout_in_millis
|
5176
5197
|
# Custom timeout between 50 and 29,000 milliseconds. The default value
|
5177
|
-
# is 29,000 milliseconds or 29 seconds.
|
5198
|
+
# is 29,000 milliseconds or 29 seconds. You can increase the default
|
5199
|
+
# value to longer than 29 seconds for Regional or private APIs only.
|
5178
5200
|
#
|
5179
5201
|
# @option params [Types::TlsConfig] :tls_config
|
5180
5202
|
# Specifies the TLS configuration for an integration.
|
@@ -6388,6 +6410,7 @@ module Aws::APIGateway
|
|
6388
6410
|
# * {Types::DomainName#ownership_verification_certificate_arn #ownership_verification_certificate_arn} => String
|
6389
6411
|
# * {Types::DomainName#management_policy #management_policy} => String
|
6390
6412
|
# * {Types::DomainName#policy #policy} => String
|
6413
|
+
# * {Types::DomainName#routing_mode #routing_mode} => String
|
6391
6414
|
#
|
6392
6415
|
# @example Request syntax with placeholder values
|
6393
6416
|
#
|
@@ -6435,6 +6458,7 @@ module Aws::APIGateway
|
|
6435
6458
|
# resp.ownership_verification_certificate_arn #=> String
|
6436
6459
|
# resp.management_policy #=> String
|
6437
6460
|
# resp.policy #=> String
|
6461
|
+
# resp.routing_mode #=> String, one of "BASE_PATH_MAPPING_ONLY", "ROUTING_RULE_ONLY", "ROUTING_RULE_THEN_BASE_PATH_MAPPING"
|
6438
6462
|
#
|
6439
6463
|
# @overload update_domain_name(params = {})
|
6440
6464
|
# @param [Hash] params ({})
|
@@ -7388,7 +7412,7 @@ module Aws::APIGateway
|
|
7388
7412
|
tracer: tracer
|
7389
7413
|
)
|
7390
7414
|
context[:gem_name] = 'aws-sdk-apigateway'
|
7391
|
-
context[:gem_version] = '1.
|
7415
|
+
context[:gem_version] = '1.121.0'
|
7392
7416
|
Seahorse::Client::Request.new(handlers, context)
|
7393
7417
|
end
|
7394
7418
|
|
@@ -231,6 +231,7 @@ module Aws::APIGateway
|
|
231
231
|
Resources = Shapes::StructureShape.new(name: 'Resources')
|
232
232
|
RestApi = Shapes::StructureShape.new(name: 'RestApi')
|
233
233
|
RestApis = Shapes::StructureShape.new(name: 'RestApis')
|
234
|
+
RoutingMode = Shapes::StringShape.new(name: 'RoutingMode')
|
234
235
|
SdkConfigurationProperty = Shapes::StructureShape.new(name: 'SdkConfigurationProperty')
|
235
236
|
SdkResponse = Shapes::StructureShape.new(name: 'SdkResponse')
|
236
237
|
SdkType = Shapes::StructureShape.new(name: 'SdkType')
|
@@ -443,6 +444,7 @@ module Aws::APIGateway
|
|
443
444
|
CreateDomainNameRequest.add_member(:mutual_tls_authentication, Shapes::ShapeRef.new(shape: MutualTlsAuthenticationInput, location_name: "mutualTlsAuthentication"))
|
444
445
|
CreateDomainNameRequest.add_member(:ownership_verification_certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "ownershipVerificationCertificateArn"))
|
445
446
|
CreateDomainNameRequest.add_member(:policy, Shapes::ShapeRef.new(shape: String, location_name: "policy"))
|
447
|
+
CreateDomainNameRequest.add_member(:routing_mode, Shapes::ShapeRef.new(shape: RoutingMode, location_name: "routingMode"))
|
446
448
|
CreateDomainNameRequest.struct_class = Types::CreateDomainNameRequest
|
447
449
|
|
448
450
|
CreateModelRequest.add_member(:rest_api_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "restapi_id"))
|
@@ -662,6 +664,7 @@ module Aws::APIGateway
|
|
662
664
|
DomainName.add_member(:ownership_verification_certificate_arn, Shapes::ShapeRef.new(shape: String, location_name: "ownershipVerificationCertificateArn"))
|
663
665
|
DomainName.add_member(:management_policy, Shapes::ShapeRef.new(shape: String, location_name: "managementPolicy"))
|
664
666
|
DomainName.add_member(:policy, Shapes::ShapeRef.new(shape: String, location_name: "policy"))
|
667
|
+
DomainName.add_member(:routing_mode, Shapes::ShapeRef.new(shape: RoutingMode, location_name: "routingMode"))
|
665
668
|
DomainName.struct_class = Types::DomainName
|
666
669
|
|
667
670
|
DomainNameAccessAssociation.add_member(:domain_name_access_association_arn, Shapes::ShapeRef.new(shape: String, location_name: "domainNameAccessAssociationArn"))
|
@@ -896,6 +896,12 @@ module Aws::APIGateway
|
|
896
896
|
# configuration. Supported only for private custom domain names.
|
897
897
|
# @return [String]
|
898
898
|
#
|
899
|
+
# @!attribute [rw] routing_mode
|
900
|
+
# The routing mode for this domain name. The routing mode determines
|
901
|
+
# how API Gateway sends traffic from your custom domain name to your
|
902
|
+
# private APIs.
|
903
|
+
# @return [String]
|
904
|
+
#
|
899
905
|
class CreateDomainNameRequest < Struct.new(
|
900
906
|
:domain_name,
|
901
907
|
:certificate_name,
|
@@ -910,7 +916,8 @@ module Aws::APIGateway
|
|
910
916
|
:security_policy,
|
911
917
|
:mutual_tls_authentication,
|
912
918
|
:ownership_verification_certificate_arn,
|
913
|
-
:policy
|
919
|
+
:policy,
|
920
|
+
:routing_mode)
|
914
921
|
SENSITIVE = []
|
915
922
|
include Aws::Structure
|
916
923
|
end
|
@@ -1900,8 +1907,7 @@ module Aws::APIGateway
|
|
1900
1907
|
# @return [String]
|
1901
1908
|
#
|
1902
1909
|
# @!attribute [rw] domain_name_arn
|
1903
|
-
# The ARN of the domain name.
|
1904
|
-
# names.
|
1910
|
+
# The ARN of the domain name.
|
1905
1911
|
# @return [String]
|
1906
1912
|
#
|
1907
1913
|
# @!attribute [rw] certificate_name
|
@@ -2015,6 +2021,12 @@ module Aws::APIGateway
|
|
2015
2021
|
# configuration. Supported only for private custom domain names.
|
2016
2022
|
# @return [String]
|
2017
2023
|
#
|
2024
|
+
# @!attribute [rw] routing_mode
|
2025
|
+
# The routing mode for this domain name. The routing mode determines
|
2026
|
+
# how API Gateway sends traffic from your custom domain name to your
|
2027
|
+
# private APIs.
|
2028
|
+
# @return [String]
|
2029
|
+
#
|
2018
2030
|
class DomainName < Struct.new(
|
2019
2031
|
:domain_name,
|
2020
2032
|
:domain_name_id,
|
@@ -2036,7 +2048,8 @@ module Aws::APIGateway
|
|
2036
2048
|
:mutual_tls_authentication,
|
2037
2049
|
:ownership_verification_certificate_arn,
|
2038
2050
|
:management_policy,
|
2039
|
-
:policy
|
2051
|
+
:policy,
|
2052
|
+
:routing_mode)
|
2040
2053
|
SENSITIVE = []
|
2041
2054
|
include Aws::Structure
|
2042
2055
|
end
|
@@ -3588,7 +3601,8 @@ module Aws::APIGateway
|
|
3588
3601
|
#
|
3589
3602
|
# @!attribute [rw] timeout_in_millis
|
3590
3603
|
# Custom timeout between 50 and 29,000 milliseconds. The default value
|
3591
|
-
# is 29,000 milliseconds or 29 seconds.
|
3604
|
+
# is 29,000 milliseconds or 29 seconds. You can increase the default
|
3605
|
+
# value to longer than 29 seconds for Regional or private APIs only.
|
3592
3606
|
# @return [Integer]
|
3593
3607
|
#
|
3594
3608
|
# @!attribute [rw] cache_namespace
|
@@ -4284,7 +4298,8 @@ module Aws::APIGateway
|
|
4284
4298
|
#
|
4285
4299
|
# @!attribute [rw] timeout_in_millis
|
4286
4300
|
# Custom timeout between 50 and 29,000 milliseconds. The default value
|
4287
|
-
# is 29,000 milliseconds or 29 seconds.
|
4301
|
+
# is 29,000 milliseconds or 29 seconds. You can increase the default
|
4302
|
+
# value to longer than 29 seconds for Regional or private APIs only.
|
4288
4303
|
# @return [Integer]
|
4289
4304
|
#
|
4290
4305
|
# @!attribute [rw] tls_config
|
data/lib/aws-sdk-apigateway.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -235,6 +236,7 @@ module Aws
|
|
235
236
|
def ownership_verification_certificate_arn: () -> ::String
|
236
237
|
def management_policy: () -> ::String
|
237
238
|
def policy: () -> ::String
|
239
|
+
def routing_mode: () -> ("BASE_PATH_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_BASE_PATH_MAPPING")
|
238
240
|
end
|
239
241
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#create_domain_name-instance_method
|
240
242
|
def create_domain_name: (
|
@@ -258,7 +260,8 @@ module Aws
|
|
258
260
|
truststore_version: ::String?
|
259
261
|
},
|
260
262
|
?ownership_verification_certificate_arn: ::String,
|
261
|
-
?policy: ::String
|
263
|
+
?policy: ::String,
|
264
|
+
?routing_mode: ("BASE_PATH_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_BASE_PATH_MAPPING")
|
262
265
|
) -> _CreateDomainNameResponseSuccess
|
263
266
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameResponseSuccess
|
264
267
|
|
@@ -907,6 +910,7 @@ module Aws
|
|
907
910
|
def ownership_verification_certificate_arn: () -> ::String
|
908
911
|
def management_policy: () -> ::String
|
909
912
|
def policy: () -> ::String
|
913
|
+
def routing_mode: () -> ("BASE_PATH_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_BASE_PATH_MAPPING")
|
910
914
|
end
|
911
915
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#get_domain_name-instance_method
|
912
916
|
def get_domain_name: (
|
@@ -1873,6 +1877,7 @@ module Aws
|
|
1873
1877
|
def ownership_verification_certificate_arn: () -> ::String
|
1874
1878
|
def management_policy: () -> ::String
|
1875
1879
|
def policy: () -> ::String
|
1880
|
+
def routing_mode: () -> ("BASE_PATH_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_BASE_PATH_MAPPING")
|
1876
1881
|
end
|
1877
1882
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/APIGateway/Client.html#update_domain_name-instance_method
|
1878
1883
|
def update_domain_name: (
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -209,6 +209,7 @@ module Aws::APIGateway
|
|
209
209
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
210
210
|
attr_accessor ownership_verification_certificate_arn: ::String
|
211
211
|
attr_accessor policy: ::String
|
212
|
+
attr_accessor routing_mode: ("BASE_PATH_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_BASE_PATH_MAPPING")
|
212
213
|
SENSITIVE: []
|
213
214
|
end
|
214
215
|
|
@@ -508,6 +509,7 @@ module Aws::APIGateway
|
|
508
509
|
attr_accessor ownership_verification_certificate_arn: ::String
|
509
510
|
attr_accessor management_policy: ::String
|
510
511
|
attr_accessor policy: ::String
|
512
|
+
attr_accessor routing_mode: ("BASE_PATH_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_BASE_PATH_MAPPING")
|
511
513
|
SENSITIVE: []
|
512
514
|
end
|
513
515
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.121.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.228.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.228.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -84,7 +84,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
84
|
requirements:
|
85
85
|
- - ">="
|
86
86
|
- !ruby/object:Gem::Version
|
87
|
-
version: '2.
|
87
|
+
version: '2.7'
|
88
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
89
|
requirements:
|
90
90
|
- - ">="
|