aws-sdk-apigateway 1.70.0 → 1.74.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62cd282a87580757cc775687f90b1ae4ae06716e654b371c070357b1d3e44b86
4
- data.tar.gz: 220109d1adbd17d5e3e68193e05e5d1b245c8f6a5257b57774e977fc9743e815
3
+ metadata.gz: b350aaf75c6a323c8b9c4fb24f52fd69e1b02dcfe16177d2bc49e9fe61a992d3
4
+ data.tar.gz: e1f8fa3a36808c88f5878a76108ae34761f90b60d1e6ffaa702d0d5cc05e2698
5
5
  SHA512:
6
- metadata.gz: 989316363fe633637b7f46362b8c7ecc8f155ae00ad318bdfed0ef8ddab2a2249bbbf33838678318b2fc4b8d48b6db0f1bed95c0da4e2d4bd2f699866bd91449
7
- data.tar.gz: 6d82a8319958c0046758ca2f56c6d94fefa56697ba8582485c0a6569e54118c17472af5847982b784eed6312f7cbc0e1d94f5da45dddb1b662d831d9119de4b3
6
+ metadata.gz: 2b820fb18fa6b28b79991dca3af7ea3168ca4376a967b899661e90b4ed185ffbe5adb7df92b94f0de657c4300d59fdb3d791f11e74564af5f526879736891f7c
7
+ data.tar.gz: f06b4f93c863792b0ee1d30cfe799f4c95bd1739afdea6c6f99b4b48ffc5444dbe86a6f1b1c4141bd7984ed5973525cfdc9b4cc1654e20e37fcc692c27843237
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.74.0 (2022-02-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.73.0 (2021-12-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.72.0 (2021-12-20)
15
+ ------------------
16
+
17
+ * Feature - Documentation updates for Amazon API Gateway
18
+
19
+ 1.71.0 (2021-11-30)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.70.0 (2021-11-17)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.74.0
@@ -27,6 +27,8 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/defaults_mode.rb'
31
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
30
32
  require 'aws-sdk-core/plugins/signature_v4.rb'
31
33
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
32
34
  require 'aws-sdk-apigateway/plugins/apply_content_type_header.rb'
@@ -74,6 +76,8 @@ module Aws::APIGateway
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::DefaultsMode)
80
+ add_plugin(Aws::Plugins::RecursionDetection)
77
81
  add_plugin(Aws::Plugins::SignatureV4)
78
82
  add_plugin(Aws::Plugins::Protocols::RestJson)
79
83
  add_plugin(Aws::APIGateway::Plugins::ApplyContentTypeHeader)
@@ -121,7 +125,9 @@ module Aws::APIGateway
121
125
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
126
  # are very aggressive. Construct and pass an instance of
123
127
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
- # enable retries and extended timeouts.
128
+ # enable retries and extended timeouts. Instance profile credential
129
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
130
+ # to true.
125
131
  #
126
132
  # @option options [required, String] :region
127
133
  # The AWS region to connect to. The configured `:region` is
@@ -175,6 +181,10 @@ module Aws::APIGateway
175
181
  # Used only in `standard` and adaptive retry modes. Specifies whether to apply
176
182
  # a clock skew correction and retry requests with skewed client clocks.
177
183
  #
184
+ # @option options [String] :defaults_mode ("legacy")
185
+ # See {Aws::DefaultsModeConfiguration} for a list of the
186
+ # accepted modes and the configuration defaults that are included.
187
+ #
178
188
  # @option options [Boolean] :disable_host_prefix_injection (false)
179
189
  # Set to true to disable SDK automatically adding host prefix
180
190
  # to default service endpoint when available.
@@ -297,7 +307,7 @@ module Aws::APIGateway
297
307
  # seconds to wait when opening a HTTP session before raising a
298
308
  # `Timeout::Error`.
299
309
  #
300
- # @option options [Integer] :http_read_timeout (60) The default
310
+ # @option options [Float] :http_read_timeout (60) The default
301
311
  # number of seconds to wait for response data. This value can
302
312
  # safely be set per-request on the session.
303
313
  #
@@ -313,6 +323,9 @@ module Aws::APIGateway
313
323
  # disables this behaviour. This value can safely be set per
314
324
  # request on the session.
315
325
  #
326
+ # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
327
+ # in seconds.
328
+ #
316
329
  # @option options [Boolean] :http_wire_trace (false) When `true`,
317
330
  # HTTP debug output will be sent to the `:logger`.
318
331
  #
@@ -7020,7 +7033,7 @@ module Aws::APIGateway
7020
7033
  params: params,
7021
7034
  config: config)
7022
7035
  context[:gem_name] = 'aws-sdk-apigateway'
7023
- context[:gem_version] = '1.70.0'
7036
+ context[:gem_version] = '1.74.0'
7024
7037
  Seahorse::Client::Request.new(handlers, context)
7025
7038
  end
7026
7039
 
@@ -6151,8 +6151,8 @@ module Aws::APIGateway
6151
6151
  # }
6152
6152
  #
6153
6153
  # @!attribute [rw] limit
6154
- # The maximum number of requests that can be made in a given time
6155
- # period.
6154
+ # The target maximum number of requests that can be made in a given
6155
+ # time period.
6156
6156
  # @return [Integer]
6157
6157
  #
6158
6158
  # @!attribute [rw] offset
@@ -7076,13 +7076,12 @@ module Aws::APIGateway
7076
7076
  # }
7077
7077
  #
7078
7078
  # @!attribute [rw] burst_limit
7079
- # The API request burst limit, the maximum rate limit over a time
7080
- # ranging from one to a few seconds, depending upon whether the
7081
- # underlying token bucket is at its full capacity.
7079
+ # The API target request burst rate limit. This allows more requests
7080
+ # through for a period of time than the target rate limit.
7082
7081
  # @return [Integer]
7083
7082
  #
7084
7083
  # @!attribute [rw] rate_limit
7085
- # The API request steady-state rate limit.
7084
+ # The API target request rate limit.
7086
7085
  # @return [Float]
7087
7086
  #
7088
7087
  class ThrottleSettings < Struct.new(
@@ -8088,8 +8087,11 @@ module Aws::APIGateway
8088
8087
  include Aws::Structure
8089
8088
  end
8090
8089
 
8091
- # Represents a usage plan than can specify who can assess associated API
8092
- # stages with specified request limits and quotas.
8090
+ # Represents a usage plan used to specify who can assess associated API
8091
+ # stages. Optionally, target request rate and quota limits can be set.
8092
+ # In some cases clients can exceed the targets that you set. Don’t rely
8093
+ # on usage plans to control costs. Consider using [AWS Budgets][1] to
8094
+ # monitor costs and [AWS WAF][2] to manage API requests.
8093
8095
  #
8094
8096
  # <div class="remarks" markdown="1">
8095
8097
  # In a usage plan, you associate an API by specifying the API's Id and
@@ -8099,12 +8101,14 @@ module Aws::APIGateway
8099
8101
  # </div>
8100
8102
  #
8101
8103
  # <div class="seeAlso" markdown="1">
8102
- # [Create and Use Usage Plans][1]
8104
+ # [Create and Use Usage Plans][3]
8103
8105
  # </div>
8104
8106
  #
8105
8107
  #
8106
8108
  #
8107
- # [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-api-usage-plans.html
8109
+ # [1]: https://docs.aws.amazon.com/cost-management/latest/userguide/budgets-managing-costs.html
8110
+ # [2]: https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html
8111
+ # [3]: https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-api-usage-plans.html
8108
8112
  #
8109
8113
  # @!attribute [rw] id
8110
8114
  # The identifier of a UsagePlan resource.
@@ -8123,12 +8127,13 @@ module Aws::APIGateway
8123
8127
  # @return [Array<Types::ApiStage>]
8124
8128
  #
8125
8129
  # @!attribute [rw] throttle
8126
- # The request throttle limits of a usage plan.
8130
+ # Map containing method level throttling information for API stage in
8131
+ # a usage plan.
8127
8132
  # @return [Types::ThrottleSettings]
8128
8133
  #
8129
8134
  # @!attribute [rw] quota
8130
- # The maximum number of permitted requests per a given unit time
8131
- # interval.
8135
+ # The target maximum number of permitted requests per a given unit
8136
+ # time interval.
8132
8137
  # @return [Types::QuotaSettings]
8133
8138
  #
8134
8139
  # @!attribute [rw] product_code
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-apigateway/customizations'
48
48
  # @!group service
49
49
  module Aws::APIGateway
50
50
 
51
- GEM_VERSION = '1.70.0'
51
+ GEM_VERSION = '1.74.0'
52
52
 
53
53
  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.70.0
4
+ version: 1.74.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: 2021-11-17 00:00:00.000000000 Z
11
+ date: 2022-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.122.0
22
+ version: 3.126.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.122.0
32
+ version: 3.126.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement