aws-sdk-apigateway 1.102.0 → 1.107.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigateway/client.rb +17 -7
- data/lib/aws-sdk-apigateway/client_api.rb +1 -0
- data/lib/aws-sdk-apigateway/endpoints.rb +120 -480
- data/lib/aws-sdk-apigateway/plugins/endpoints.rb +18 -6
- data/lib/aws-sdk-apigateway/types.rb +3 -1
- data/lib/aws-sdk-apigateway.rb +15 -11
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -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: dfb537cee6dfe0a259c801d38a85a859ecaba7628bc79449414cf6f2f113191a
|
4
|
+
data.tar.gz: d928b0d95e0084e4c76dd9b33141fbce0a7c10ab3dcdbd0fc446581d606629f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 348c11ba461495f1f4631d6dc95efdef4c154d4d471a662388066cba5c8b3da32105d09684af67e5a12c53c71a9936e378e1ee18712dda48697e5a088bb1cf6b
|
7
|
+
data.tar.gz: b3d6697a629e4c90925d5123da74773e262d177175c35ad867a5e0c23ac2e8121afe89de3dde496e58c77c9c06b98e353a60f8d6a2e4d03fd19a99f3d06a1ece
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,31 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.107.0 (2024-09-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.106.0 (2024-09-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Documentation updates for Amazon API Gateway
|
13
|
+
|
14
|
+
1.105.0 (2024-09-20)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.104.0 (2024-09-11)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
24
|
+
1.103.0 (2024-09-10)
|
25
|
+
------------------
|
26
|
+
|
27
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
28
|
+
|
4
29
|
1.102.0 (2024-09-03)
|
5
30
|
------------------
|
6
31
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.107.0
|
@@ -37,8 +37,6 @@ require 'aws-sdk-core/plugins/sign.rb'
|
|
37
37
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
38
38
|
require 'aws-sdk-apigateway/plugins/apply_content_type_header.rb'
|
39
39
|
|
40
|
-
Aws::Plugins::GlobalConfiguration.add_identifier(:apigateway)
|
41
|
-
|
42
40
|
module Aws::APIGateway
|
43
41
|
# An API client for APIGateway. To construct a client, you need to configure a `:region` and `:credentials`.
|
44
42
|
#
|
@@ -132,13 +130,15 @@ module Aws::APIGateway
|
|
132
130
|
# locations will be searched for credentials:
|
133
131
|
#
|
134
132
|
# * `Aws.config[:credentials]`
|
135
|
-
# * The `:access_key_id`, `:secret_access_key`,
|
136
|
-
#
|
133
|
+
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
134
|
+
# `:account_id` options.
|
135
|
+
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
|
136
|
+
# ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
|
137
137
|
# * `~/.aws/credentials`
|
138
138
|
# * `~/.aws/config`
|
139
139
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
140
140
|
# are very aggressive. Construct and pass an instance of
|
141
|
-
# `Aws::
|
141
|
+
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
142
142
|
# enable retries and extended timeouts. Instance profile credential
|
143
143
|
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
144
144
|
# to true.
|
@@ -157,6 +157,8 @@ module Aws::APIGateway
|
|
157
157
|
#
|
158
158
|
# @option options [String] :access_key_id
|
159
159
|
#
|
160
|
+
# @option options [String] :account_id
|
161
|
+
#
|
160
162
|
# @option options [Boolean] :active_endpoint_cache (false)
|
161
163
|
# When set to `true`, a thread polling for endpoints will be running in
|
162
164
|
# the background every 60 secs (default). Defaults to `false`.
|
@@ -371,7 +373,9 @@ module Aws::APIGateway
|
|
371
373
|
# sending the request.
|
372
374
|
#
|
373
375
|
# @option options [Aws::APIGateway::EndpointProvider] :endpoint_provider
|
374
|
-
# The endpoint provider used to resolve endpoints. Any object that responds to
|
376
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to
|
377
|
+
# `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to
|
378
|
+
# `Aws::APIGateway::EndpointParameters`.
|
375
379
|
#
|
376
380
|
# @option options [Float] :http_continue_timeout (1)
|
377
381
|
# The number of seconds to wait for a 100-continue response before sending the
|
@@ -427,6 +431,12 @@ module Aws::APIGateway
|
|
427
431
|
# @option options [String] :ssl_ca_store
|
428
432
|
# Sets the X509::Store to verify peer certificate.
|
429
433
|
#
|
434
|
+
# @option options [OpenSSL::X509::Certificate] :ssl_cert
|
435
|
+
# Sets a client certificate when creating http connections.
|
436
|
+
#
|
437
|
+
# @option options [OpenSSL::PKey] :ssl_key
|
438
|
+
# Sets a client key when creating http connections.
|
439
|
+
#
|
430
440
|
# @option options [Float] :ssl_timeout
|
431
441
|
# Sets the SSL timeout in seconds
|
432
442
|
#
|
@@ -7115,7 +7125,7 @@ module Aws::APIGateway
|
|
7115
7125
|
tracer: tracer
|
7116
7126
|
)
|
7117
7127
|
context[:gem_name] = 'aws-sdk-apigateway'
|
7118
|
-
context[:gem_version] = '1.
|
7128
|
+
context[:gem_version] = '1.107.0'
|
7119
7129
|
Seahorse::Client::Request.new(handlers, context)
|
7120
7130
|
end
|
7121
7131
|
|