aws-sdk-apigateway 1.36.0 → 1.37.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
  SHA1:
3
- metadata.gz: ebd604489585a1b861d6fec92cb92fc6a352e879
4
- data.tar.gz: bd7e6910b1b0efbcf26e00f1b5a7e5473dc8f9ac
3
+ metadata.gz: b0f7cbae4a606cab546f961ca532ef7197bca3cc
4
+ data.tar.gz: 873917110320704cfc5e893c4ea42f4e2e720dd9
5
5
  SHA512:
6
- metadata.gz: 42cb00e5c3055033df1b6bc35e5ec9bf48b3cb974fbd26f59823e3f8bbf8804d0d40b594b922bf2d3c9bb2f33bade52178e63e5c34c1884c2f65c6f02ded1ae4
7
- data.tar.gz: ae8f2b6af5ebac90680072e57571c11aaf2efabfcbede635f36cd404835eb34dd17df24803929b8ee0373a6412475c94ce99b5cb9097a18a60534e8d9d92c39e
6
+ metadata.gz: 224561c454e34d4408fbb8692974c198f02f444dd0005dddf872970548f6bb261d58e476e7d3134add59581331fe948be82eeb43f4688d27641a032d7c276199
7
+ data.tar.gz: 00b4b0df78c3d802b7378303ad3be67284aae9aab58446a37527b143aef046eb18e47e07e31dc23f34562fa3bec400214c303952b3a27acdf559f68d96d4cb99
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-apigateway/customizations'
24
24
  # methods each accept a hash of request parameters and return a response
25
25
  # structure.
26
26
  #
27
+ # api_gateway = Aws::APIGateway::Client.new
28
+ # resp = api_gateway.create_api_key(params)
29
+ #
27
30
  # See {Client} for more information.
28
31
  #
29
32
  # # Errors
30
33
  #
31
- # Errors returned from Amazon API Gateway all
32
- # extend {Errors::ServiceError}.
34
+ # Errors returned from Amazon API Gateway are defined in the
35
+ # {Errors} module and all extend {Errors::ServiceError}.
33
36
  #
34
37
  # begin
35
38
  # # do stuff
36
39
  # rescue Aws::APIGateway::Errors::ServiceError
37
- # # rescues all service API errors
40
+ # # rescues all Amazon API Gateway API errors
38
41
  # end
39
42
  #
40
43
  # See {Errors} for more information.
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-apigateway/customizations'
42
45
  # @service
43
46
  module Aws::APIGateway
44
47
 
45
- GEM_VERSION = '1.36.0'
48
+ GEM_VERSION = '1.37.0'
46
49
 
47
50
  end
@@ -31,6 +31,18 @@ require 'aws-sdk-apigateway/plugins/apply_content_type_header.rb'
31
31
  Aws::Plugins::GlobalConfiguration.add_identifier(:apigateway)
32
32
 
33
33
  module Aws::APIGateway
34
+ # An API client for APIGateway. To construct a client, you need to configure a `:region` and `:credentials`.
35
+ #
36
+ # client = Aws::APIGateway::Client.new(
37
+ # region: region_name,
38
+ # credentials: credentials,
39
+ # # ...
40
+ # )
41
+ #
42
+ # For details on configuring region and credentials see
43
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
44
+ #
45
+ # See {#initialize} for a full list of supported configuration options.
34
46
  class Client < Seahorse::Client::Base
35
47
 
36
48
  include Aws::ClientStubs
@@ -110,6 +122,12 @@ module Aws::APIGateway
110
122
  # When set to `true`, a thread polling for endpoints will be running in
111
123
  # the background every 60 secs (default). Defaults to `false`.
112
124
  #
125
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
126
+ # Used only in `adaptive` retry mode. When true, the request will sleep
127
+ # until there is sufficent client side capacity to retry the request.
128
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
129
+ # not retry instead of sleeping.
130
+ #
113
131
  # @option options [Boolean] :client_side_monitoring (false)
114
132
  # When `true`, client-side metrics will be collected for all API requests from
115
133
  # this client.
@@ -134,6 +152,10 @@ module Aws::APIGateway
134
152
  # When `true`, an attempt is made to coerce request parameters into
135
153
  # the required types.
136
154
  #
155
+ # @option options [Boolean] :correct_clock_skew (true)
156
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
157
+ # a clock skew correction and retry requests with skewed client clocks.
158
+ #
137
159
  # @option options [Boolean] :disable_host_prefix_injection (false)
138
160
  # Set to true to disable SDK automatically adding host prefix
139
161
  # to default service endpoint when available.
@@ -168,15 +190,29 @@ module Aws::APIGateway
168
190
  # The Logger instance to send log messages to. If this option
169
191
  # is not set, logging will be disabled.
170
192
  #
193
+ # @option options [Integer] :max_attempts (3)
194
+ # An integer representing the maximum number attempts that will be made for
195
+ # a single request, including the initial attempt. For example,
196
+ # setting this value to 5 will result in a request being retried up to
197
+ # 4 times. Used in `standard` and `adaptive` retry modes.
198
+ #
171
199
  # @option options [String] :profile ("default")
172
200
  # Used when loading credentials from the shared credentials file
173
201
  # at HOME/.aws/credentials. When not specified, 'default' is used.
174
202
  #
203
+ # @option options [Proc] :retry_backoff
204
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
205
+ # This option is only used in the `legacy` retry mode.
206
+ #
175
207
  # @option options [Float] :retry_base_delay (0.3)
176
- # The base delay in seconds used by the default backoff function.
208
+ # The base delay in seconds used by the default backoff function. This option
209
+ # is only used in the `legacy` retry mode.
177
210
  #
178
211
  # @option options [Symbol] :retry_jitter (:none)
179
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
212
+ # A delay randomiser function used by the default backoff function.
213
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
214
+ # otherwise a Proc that takes and returns a number. This option is only used
215
+ # in the `legacy` retry mode.
180
216
  #
181
217
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
182
218
  #
@@ -184,11 +220,26 @@ module Aws::APIGateway
184
220
  # The maximum number of times to retry failed requests. Only
185
221
  # ~ 500 level server errors and certain ~ 400 level client errors
186
222
  # are retried. Generally, these are throttling errors, data
187
- # checksum errors, networking errors, timeout errors and auth
188
- # errors from expired credentials.
223
+ # checksum errors, networking errors, timeout errors, auth errors,
224
+ # endpoint discovery, and errors from expired credentials.
225
+ # This option is only used in the `legacy` retry mode.
189
226
  #
190
227
  # @option options [Integer] :retry_max_delay (0)
191
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
228
+ # The maximum number of seconds to delay between retries (0 for no limit)
229
+ # used by the default backoff function. This option is only used in the
230
+ # `legacy` retry mode.
231
+ #
232
+ # @option options [String] :retry_mode ("legacy")
233
+ # Specifies which retry algorithm to use. Values are:
234
+ # * `legacy` - The pre-existing retry behavior. This is default value if
235
+ # no retry mode is provided.
236
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
237
+ # This includes support for retry quotas, which limit the number of
238
+ # unsuccessful retries a client can make.
239
+ # * `adaptive` - An experimental retry mode that includes all the
240
+ # functionality of `standard` mode along with automatic client side
241
+ # throttling. This is a provisional mode that may change behavior
242
+ # in the future.
192
243
  #
193
244
  # @option options [String] :secret_access_key
194
245
  #
@@ -211,16 +262,16 @@ module Aws::APIGateway
211
262
  # requests through. Formatted like 'http://proxy.com:123'.
212
263
  #
213
264
  # @option options [Float] :http_open_timeout (15) The number of
214
- # seconds to wait when opening a HTTP session before rasing a
265
+ # seconds to wait when opening a HTTP session before raising a
215
266
  # `Timeout::Error`.
216
267
  #
217
268
  # @option options [Integer] :http_read_timeout (60) The default
218
269
  # number of seconds to wait for response data. This value can
219
270
  # safely be set
220
- # per-request on the session yeidled by {#session_for}.
271
+ # per-request on the session yielded by {#session_for}.
221
272
  #
222
273
  # @option options [Float] :http_idle_timeout (5) The number of
223
- # seconds a connection is allowed to sit idble before it is
274
+ # seconds a connection is allowed to sit idle before it is
224
275
  # considered stale. Stale connections are closed and removed
225
276
  # from the pool before making a request.
226
277
  #
@@ -229,7 +280,7 @@ module Aws::APIGateway
229
280
  # request body. This option has no effect unless the request has
230
281
  # "Expect" header set to "100-continue". Defaults to `nil` which
231
282
  # disables this behaviour. This value can safely be set per
232
- # request on the session yeidled by {#session_for}.
283
+ # request on the session yielded by {#session_for}.
233
284
  #
234
285
  # @option options [Boolean] :http_wire_trace (false) When `true`,
235
286
  # HTTP debug output will be sent to the `:logger`.
@@ -6915,7 +6966,7 @@ module Aws::APIGateway
6915
6966
  params: params,
6916
6967
  config: config)
6917
6968
  context[:gem_name] = 'aws-sdk-apigateway'
6918
- context[:gem_version] = '1.36.0'
6969
+ context[:gem_version] = '1.37.0'
6919
6970
  Seahorse::Client::Request.new(handlers, context)
6920
6971
  end
6921
6972
 
@@ -6,6 +6,35 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::APIGateway
9
+
10
+ # When APIGateway returns an error response, the Ruby SDK constructs and raises an error.
11
+ # These errors all extend Aws::APIGateway::Errors::ServiceError < {Aws::Errors::ServiceError}
12
+ #
13
+ # You can rescue all APIGateway errors using ServiceError:
14
+ #
15
+ # begin
16
+ # # do stuff
17
+ # rescue Aws::APIGateway::Errors::ServiceError
18
+ # # rescues all APIGateway API errors
19
+ # end
20
+ #
21
+ #
22
+ # ## Request Context
23
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
24
+ # information about the request that generated the error.
25
+ # See {Seahorse::Client::RequestContext} for more information.
26
+ #
27
+ # ## Error Classes
28
+ # * {BadRequestException}
29
+ # * {ConflictException}
30
+ # * {LimitExceededException}
31
+ # * {NotFoundException}
32
+ # * {ServiceUnavailableException}
33
+ # * {TooManyRequestsException}
34
+ # * {UnauthorizedException}
35
+ #
36
+ # Additionally, error classes are dynamically generated for service errors based on the error code
37
+ # if they are not defined above.
9
38
  module Errors
10
39
 
11
40
  extend Aws::Errors::DynamicErrors
@@ -23,7 +52,6 @@ module Aws::APIGateway
23
52
  def message
24
53
  @message || @data[:message]
25
54
  end
26
-
27
55
  end
28
56
 
29
57
  class ConflictException < ServiceError
@@ -39,7 +67,6 @@ module Aws::APIGateway
39
67
  def message
40
68
  @message || @data[:message]
41
69
  end
42
-
43
70
  end
44
71
 
45
72
  class LimitExceededException < ServiceError
@@ -60,7 +87,6 @@ module Aws::APIGateway
60
87
  def message
61
88
  @message || @data[:message]
62
89
  end
63
-
64
90
  end
65
91
 
66
92
  class NotFoundException < ServiceError
@@ -76,7 +102,6 @@ module Aws::APIGateway
76
102
  def message
77
103
  @message || @data[:message]
78
104
  end
79
-
80
105
  end
81
106
 
82
107
  class ServiceUnavailableException < ServiceError
@@ -97,7 +122,6 @@ module Aws::APIGateway
97
122
  def message
98
123
  @message || @data[:message]
99
124
  end
100
-
101
125
  end
102
126
 
103
127
  class TooManyRequestsException < ServiceError
@@ -118,7 +142,6 @@ module Aws::APIGateway
118
142
  def message
119
143
  @message || @data[:message]
120
144
  end
121
-
122
145
  end
123
146
 
124
147
  class UnauthorizedException < ServiceError
@@ -134,7 +157,6 @@ module Aws::APIGateway
134
157
  def message
135
158
  @message || @data[:message]
136
159
  end
137
-
138
160
  end
139
161
 
140
162
  end
@@ -6,6 +6,13 @@
6
6
  # WARNING ABOUT GENERATED CODE
7
7
 
8
8
  module Aws::APIGateway
9
+ # This class provides a resource oriented interface for APIGateway.
10
+ # To create a resource object:
11
+ # resource = Aws::APIGateway::Resource.new(region: 'us-west-2')
12
+ # You can supply a client object with custom configuration that will be used for all resource operations.
13
+ # If you do not pass +:client+, a default client will be constructed.
14
+ # client = Aws::APIGateway::Client.new(region: 'us-west-2')
15
+ # resource = Aws::APIGateway::Resource.new(client: client)
9
16
  class Resource
10
17
 
11
18
  # @param options ({})
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.36.0
4
+ version: 1.37.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: 2019-10-23 00:00:00.000000000 Z
11
+ date: 2020-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core