aws-sdk-apigateway 1.68.0 → 1.72.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: 4014fcc10ed95d5ff1aa4420819bf30654324da3448531eaecbfa4d8235879a8
4
- data.tar.gz: cc1d5210fa816f101a926f53d9375c465831ab21069d80e6e3bb3bcdc331d107
3
+ metadata.gz: 0351c59ccba5e2ef15224fa6e21d4d11f67c8d569774164cf288b277db3d9a44
4
+ data.tar.gz: 0c38c6312e41e6c1a4d59d130cf4c52bc930fab69b6b0e7e17d543b1386b43eb
5
5
  SHA512:
6
- metadata.gz: 31bb29a56aa2678b705d46056a210dad33b1d0935de19d04feecf358ebadff2314b2e50443aacfb64f1a6a8d2797ceb6b85a6396aa22fd2636e634b3fdb00e42
7
- data.tar.gz: 90c38df7267c526034260087f1f77b2f4457bf23184d35fc1328c216826b9e081df4c8d5592b5c8d1715f79d37ae5095b119fb14101abe6f74dc4d60040de282
6
+ metadata.gz: 92938e4472c6b8cebf7e964b0f8b217c1b424468afc0424744e8361646dd945b5a843211f3d03485bc7523e49ee963e796a31bdb48c4680107e60dd902c43fa3
7
+ data.tar.gz: e077571469138f9edaec8fb11375c407bbc58b20cff51a970d601238628496ccd52d96e2c86aa2fc7429155f9419a6d7f3d318391570af97b24bb6a8ae66e50f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.72.0 (2021-12-20)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon API Gateway
8
+
9
+ 1.71.0 (2021-11-30)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.70.0 (2021-11-17)
15
+ ------------------
16
+
17
+ * Feature - Documentation updates for Amazon API Gateway.
18
+
19
+ 1.69.0 (2021-11-04)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.68.0 (2021-10-18)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.72.0
@@ -121,7 +121,9 @@ module Aws::APIGateway
121
121
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
122
  # are very aggressive. Construct and pass an instance of
123
123
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
- # enable retries and extended timeouts.
124
+ # enable retries and extended timeouts. Instance profile credential
125
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
126
+ # to true.
125
127
  #
126
128
  # @option options [required, String] :region
127
129
  # The AWS region to connect to. The configured `:region` is
@@ -277,6 +279,15 @@ module Aws::APIGateway
277
279
  # ** Please note ** When response stubbing is enabled, no HTTP
278
280
  # requests are made, and retries are disabled.
279
281
  #
282
+ # @option options [Boolean] :use_dualstack_endpoint
283
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
284
+ # will be used if available.
285
+ #
286
+ # @option options [Boolean] :use_fips_endpoint
287
+ # When set to `true`, fips compatible endpoints will be used if available.
288
+ # When a `fips` region is used, the region is normalized and this config
289
+ # is set to `true`.
290
+ #
280
291
  # @option options [Boolean] :validate_params (true)
281
292
  # When `true`, request parameters are validated before
282
293
  # sending the request.
@@ -7011,7 +7022,7 @@ module Aws::APIGateway
7011
7022
  params: params,
7012
7023
  config: config)
7013
7024
  context[:gem_name] = 'aws-sdk-apigateway'
7014
- context[:gem_version] = '1.68.0'
7025
+ context[:gem_version] = '1.72.0'
7015
7026
  Seahorse::Client::Request.new(handlers, context)
7016
7027
  end
7017
7028
 
@@ -5222,9 +5222,11 @@ module Aws::APIGateway
5222
5222
  # @return [String]
5223
5223
  #
5224
5224
  # @!attribute [rw] data_trace_enabled
5225
- # Specifies whether data trace logging is enabled for this method,
5226
- # which affects the log entries pushed to Amazon CloudWatch Logs. The
5227
- # PATCH path for this setting is
5225
+ # Specifies whether full requests and responses are logged for this
5226
+ # method, which affects the log entries pushed to Amazon CloudWatch
5227
+ # Logs. This can be useful to troubleshoot APIs, but can result in
5228
+ # logging sensitive data. We recommend that you don't enable this
5229
+ # option for production APIs. The PATCH path for this setting is
5228
5230
  # `/\{method_setting_key\}/logging/dataTrace`, and the value is a
5229
5231
  # Boolean.
5230
5232
  # @return [Boolean]
@@ -6149,8 +6151,8 @@ module Aws::APIGateway
6149
6151
  # }
6150
6152
  #
6151
6153
  # @!attribute [rw] limit
6152
- # The maximum number of requests that can be made in a given time
6153
- # period.
6154
+ # The target maximum number of requests that can be made in a given
6155
+ # time period.
6154
6156
  # @return [Integer]
6155
6157
  #
6156
6158
  # @!attribute [rw] offset
@@ -7074,13 +7076,12 @@ module Aws::APIGateway
7074
7076
  # }
7075
7077
  #
7076
7078
  # @!attribute [rw] burst_limit
7077
- # The API request burst limit, the maximum rate limit over a time
7078
- # ranging from one to a few seconds, depending upon whether the
7079
- # 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.
7080
7081
  # @return [Integer]
7081
7082
  #
7082
7083
  # @!attribute [rw] rate_limit
7083
- # The API request steady-state rate limit.
7084
+ # The API target request rate limit.
7084
7085
  # @return [Float]
7085
7086
  #
7086
7087
  class ThrottleSettings < Struct.new(
@@ -8086,8 +8087,11 @@ module Aws::APIGateway
8086
8087
  include Aws::Structure
8087
8088
  end
8088
8089
 
8089
- # Represents a usage plan than can specify who can assess associated API
8090
- # 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.
8091
8095
  #
8092
8096
  # <div class="remarks" markdown="1">
8093
8097
  # In a usage plan, you associate an API by specifying the API's Id and
@@ -8097,12 +8101,14 @@ module Aws::APIGateway
8097
8101
  # </div>
8098
8102
  #
8099
8103
  # <div class="seeAlso" markdown="1">
8100
- # [Create and Use Usage Plans][1]
8104
+ # [Create and Use Usage Plans][3]
8101
8105
  # </div>
8102
8106
  #
8103
8107
  #
8104
8108
  #
8105
- # [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
8106
8112
  #
8107
8113
  # @!attribute [rw] id
8108
8114
  # The identifier of a UsagePlan resource.
@@ -8121,12 +8127,13 @@ module Aws::APIGateway
8121
8127
  # @return [Array<Types::ApiStage>]
8122
8128
  #
8123
8129
  # @!attribute [rw] throttle
8124
- # The request throttle limits of a usage plan.
8130
+ # Map containing method level throttling information for API stage in
8131
+ # a usage plan.
8125
8132
  # @return [Types::ThrottleSettings]
8126
8133
  #
8127
8134
  # @!attribute [rw] quota
8128
- # The maximum number of permitted requests per a given unit time
8129
- # interval.
8135
+ # The target maximum number of permitted requests per a given unit
8136
+ # time interval.
8130
8137
  # @return [Types::QuotaSettings]
8131
8138
  #
8132
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.68.0'
51
+ GEM_VERSION = '1.72.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.68.0
4
+ version: 1.72.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-10-18 00:00:00.000000000 Z
11
+ date: 2021-12-20 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.121.2
22
+ version: 3.122.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.121.2
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement