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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6af1d3e0f72ad02ca431552fd75b0b9d7b751869b5277b7730c9988dba2b51fd
4
- data.tar.gz: 3bc6035ec48ecd6d8eb02e70422f8a40e132ba1be7db7706a1e72521a51a8a71
3
+ metadata.gz: dfb537cee6dfe0a259c801d38a85a859ecaba7628bc79449414cf6f2f113191a
4
+ data.tar.gz: d928b0d95e0084e4c76dd9b33141fbce0a7c10ab3dcdbd0fc446581d606629f5
5
5
  SHA512:
6
- metadata.gz: 24e4cfcb3a500584228010331024fd13f67183b6c3ca52b9966cb4974123569a47de19afe7d3150e6b9d7d0807931ec2f831862d588c62e40626af6d87acb77b
7
- data.tar.gz: f6c0d902af37b5c16f6c8671a686d1788fa0326a0408c8942c9eedf7091264189e11025853e4f6602b05da764f0ad07ff814e009f69088d5db2d84e00a7b0f06
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.102.0
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`, and `:session_token` options.
136
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
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::InstanceProfileCredentails` or `Aws::ECSCredentials` to
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 `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::APIGateway::EndpointParameters`
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.102.0'
7128
+ context[:gem_version] = '1.107.0'
7119
7129
  Seahorse::Client::Request.new(handlers, context)
7120
7130
  end
7121
7131
 
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  module Aws::APIGateway
11
12
  # @api private
12
13
  module ClientApi