aws-sdk-apigateway 1.65.0 → 1.69.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 +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigateway/client.rb +18 -93
- data/lib/aws-sdk-apigateway/client_api.rb +261 -176
- data/lib/aws-sdk-apigateway/types.rb +5 -109
- data/lib/aws-sdk-apigateway.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c97c8c35076fa12890a863b86f0f436d329f32b5507fcfab7187fe409e153557
|
4
|
+
data.tar.gz: d468ecf48e59b2321eb176ccc328da4f3b104e8546dc81eba7c4431aff5cb81d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f57ac60b993d6ace2b4242f6c9e6c34b2f6d5cb0e8d8139490550662a110ecfb61f1faf9bde528b8308f7f653ec9637eb404c53634a037fd77625273007eb78a
|
7
|
+
data.tar.gz: e01ee18c0f4129a90ba4069101d5ab0f9b51f8a0756db8d47cf05ca55f9b8c4348f3522cf3151bf703750f41e72fad0b650cc1578b2751980af0c6ec4a1bb4bf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.69.0 (2021-11-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.68.0 (2021-10-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.67.0 (2021-09-01)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.66.0 (2021-08-23)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Adding some of the pending releases (1) Adding WAF Filter to GatewayResponseType enum (2) Ensuring consistent error model for all operations (3) Add missing BRE to GetVpcLink operation
|
23
|
+
|
4
24
|
1.65.0 (2021-08-12)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.69.0
|
@@ -277,6 +277,15 @@ module Aws::APIGateway
|
|
277
277
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
278
278
|
# requests are made, and retries are disabled.
|
279
279
|
#
|
280
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
281
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
282
|
+
# will be used if available.
|
283
|
+
#
|
284
|
+
# @option options [Boolean] :use_fips_endpoint
|
285
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
286
|
+
# When a `fips` region is used, the region is normalized and this config
|
287
|
+
# is set to `true`.
|
288
|
+
#
|
280
289
|
# @option options [Boolean] :validate_params (true)
|
281
290
|
# When `true`, request parameters are validated before
|
282
291
|
# sending the request.
|
@@ -1767,27 +1776,6 @@ module Aws::APIGateway
|
|
1767
1776
|
#
|
1768
1777
|
# @option params [required, String] :response_type
|
1769
1778
|
# \[Required\] The response type of the associated GatewayResponse.
|
1770
|
-
# Valid values are
|
1771
|
-
# * ACCESS\_DENIED
|
1772
|
-
# * API\_CONFIGURATION\_ERROR
|
1773
|
-
# * AUTHORIZER\_FAILURE
|
1774
|
-
# * AUTHORIZER\_CONFIGURATION\_ERROR
|
1775
|
-
# * BAD\_REQUEST\_PARAMETERS
|
1776
|
-
# * BAD\_REQUEST\_BODY
|
1777
|
-
# * DEFAULT\_4XX
|
1778
|
-
# * DEFAULT\_5XX
|
1779
|
-
# * EXPIRED\_TOKEN
|
1780
|
-
# * INVALID\_SIGNATURE
|
1781
|
-
# * INTEGRATION\_FAILURE
|
1782
|
-
# * INTEGRATION\_TIMEOUT
|
1783
|
-
# * INVALID\_API\_KEY
|
1784
|
-
# * MISSING\_AUTHENTICATION\_TOKEN
|
1785
|
-
# * QUOTA\_EXCEEDED
|
1786
|
-
# * REQUEST\_TOO\_LARGE
|
1787
|
-
# * RESOURCE\_NOT\_FOUND
|
1788
|
-
# * THROTTLED
|
1789
|
-
# * UNAUTHORIZED
|
1790
|
-
# * UNSUPPORTED\_MEDIA\_TYPE
|
1791
1779
|
#
|
1792
1780
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1793
1781
|
#
|
@@ -1795,7 +1783,7 @@ module Aws::APIGateway
|
|
1795
1783
|
#
|
1796
1784
|
# resp = client.delete_gateway_response({
|
1797
1785
|
# rest_api_id: "String", # required
|
1798
|
-
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED
|
1786
|
+
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED, WAF_FILTERED
|
1799
1787
|
# })
|
1800
1788
|
#
|
1801
1789
|
# @overload delete_gateway_response(params = {})
|
@@ -3081,27 +3069,6 @@ module Aws::APIGateway
|
|
3081
3069
|
#
|
3082
3070
|
# @option params [required, String] :response_type
|
3083
3071
|
# \[Required\] The response type of the associated GatewayResponse.
|
3084
|
-
# Valid values are
|
3085
|
-
# * ACCESS\_DENIED
|
3086
|
-
# * API\_CONFIGURATION\_ERROR
|
3087
|
-
# * AUTHORIZER\_FAILURE
|
3088
|
-
# * AUTHORIZER\_CONFIGURATION\_ERROR
|
3089
|
-
# * BAD\_REQUEST\_PARAMETERS
|
3090
|
-
# * BAD\_REQUEST\_BODY
|
3091
|
-
# * DEFAULT\_4XX
|
3092
|
-
# * DEFAULT\_5XX
|
3093
|
-
# * EXPIRED\_TOKEN
|
3094
|
-
# * INVALID\_SIGNATURE
|
3095
|
-
# * INTEGRATION\_FAILURE
|
3096
|
-
# * INTEGRATION\_TIMEOUT
|
3097
|
-
# * INVALID\_API\_KEY
|
3098
|
-
# * MISSING\_AUTHENTICATION\_TOKEN
|
3099
|
-
# * QUOTA\_EXCEEDED
|
3100
|
-
# * REQUEST\_TOO\_LARGE
|
3101
|
-
# * RESOURCE\_NOT\_FOUND
|
3102
|
-
# * THROTTLED
|
3103
|
-
# * UNAUTHORIZED
|
3104
|
-
# * UNSUPPORTED\_MEDIA\_TYPE
|
3105
3072
|
#
|
3106
3073
|
# @return [Types::GatewayResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3107
3074
|
#
|
@@ -3115,12 +3082,12 @@ module Aws::APIGateway
|
|
3115
3082
|
#
|
3116
3083
|
# resp = client.get_gateway_response({
|
3117
3084
|
# rest_api_id: "String", # required
|
3118
|
-
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED
|
3085
|
+
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED, WAF_FILTERED
|
3119
3086
|
# })
|
3120
3087
|
#
|
3121
3088
|
# @example Response structure
|
3122
3089
|
#
|
3123
|
-
# resp.response_type #=> String, one of "DEFAULT_4XX", "DEFAULT_5XX", "RESOURCE_NOT_FOUND", "UNAUTHORIZED", "INVALID_API_KEY", "ACCESS_DENIED", "AUTHORIZER_FAILURE", "AUTHORIZER_CONFIGURATION_ERROR", "INVALID_SIGNATURE", "EXPIRED_TOKEN", "MISSING_AUTHENTICATION_TOKEN", "INTEGRATION_FAILURE", "INTEGRATION_TIMEOUT", "API_CONFIGURATION_ERROR", "UNSUPPORTED_MEDIA_TYPE", "BAD_REQUEST_PARAMETERS", "BAD_REQUEST_BODY", "REQUEST_TOO_LARGE", "THROTTLED", "QUOTA_EXCEEDED"
|
3090
|
+
# resp.response_type #=> String, one of "DEFAULT_4XX", "DEFAULT_5XX", "RESOURCE_NOT_FOUND", "UNAUTHORIZED", "INVALID_API_KEY", "ACCESS_DENIED", "AUTHORIZER_FAILURE", "AUTHORIZER_CONFIGURATION_ERROR", "INVALID_SIGNATURE", "EXPIRED_TOKEN", "MISSING_AUTHENTICATION_TOKEN", "INTEGRATION_FAILURE", "INTEGRATION_TIMEOUT", "API_CONFIGURATION_ERROR", "UNSUPPORTED_MEDIA_TYPE", "BAD_REQUEST_PARAMETERS", "BAD_REQUEST_BODY", "REQUEST_TOO_LARGE", "THROTTLED", "QUOTA_EXCEEDED", "WAF_FILTERED"
|
3124
3091
|
# resp.status_code #=> String
|
3125
3092
|
# resp.response_parameters #=> Hash
|
3126
3093
|
# resp.response_parameters["String"] #=> String
|
@@ -3170,7 +3137,7 @@ module Aws::APIGateway
|
|
3170
3137
|
#
|
3171
3138
|
# resp.position #=> String
|
3172
3139
|
# resp.items #=> Array
|
3173
|
-
# resp.items[0].response_type #=> String, one of "DEFAULT_4XX", "DEFAULT_5XX", "RESOURCE_NOT_FOUND", "UNAUTHORIZED", "INVALID_API_KEY", "ACCESS_DENIED", "AUTHORIZER_FAILURE", "AUTHORIZER_CONFIGURATION_ERROR", "INVALID_SIGNATURE", "EXPIRED_TOKEN", "MISSING_AUTHENTICATION_TOKEN", "INTEGRATION_FAILURE", "INTEGRATION_TIMEOUT", "API_CONFIGURATION_ERROR", "UNSUPPORTED_MEDIA_TYPE", "BAD_REQUEST_PARAMETERS", "BAD_REQUEST_BODY", "REQUEST_TOO_LARGE", "THROTTLED", "QUOTA_EXCEEDED"
|
3140
|
+
# resp.items[0].response_type #=> String, one of "DEFAULT_4XX", "DEFAULT_5XX", "RESOURCE_NOT_FOUND", "UNAUTHORIZED", "INVALID_API_KEY", "ACCESS_DENIED", "AUTHORIZER_FAILURE", "AUTHORIZER_CONFIGURATION_ERROR", "INVALID_SIGNATURE", "EXPIRED_TOKEN", "MISSING_AUTHENTICATION_TOKEN", "INTEGRATION_FAILURE", "INTEGRATION_TIMEOUT", "API_CONFIGURATION_ERROR", "UNSUPPORTED_MEDIA_TYPE", "BAD_REQUEST_PARAMETERS", "BAD_REQUEST_BODY", "REQUEST_TOO_LARGE", "THROTTLED", "QUOTA_EXCEEDED", "WAF_FILTERED"
|
3174
3141
|
# resp.items[0].status_code #=> String
|
3175
3142
|
# resp.items[0].response_parameters #=> Hash
|
3176
3143
|
# resp.items[0].response_parameters["String"] #=> String
|
@@ -4775,27 +4742,6 @@ module Aws::APIGateway
|
|
4775
4742
|
#
|
4776
4743
|
# @option params [required, String] :response_type
|
4777
4744
|
# \[Required\] The response type of the associated GatewayResponse.
|
4778
|
-
# Valid values are
|
4779
|
-
# * ACCESS\_DENIED
|
4780
|
-
# * API\_CONFIGURATION\_ERROR
|
4781
|
-
# * AUTHORIZER\_FAILURE
|
4782
|
-
# * AUTHORIZER\_CONFIGURATION\_ERROR
|
4783
|
-
# * BAD\_REQUEST\_PARAMETERS
|
4784
|
-
# * BAD\_REQUEST\_BODY
|
4785
|
-
# * DEFAULT\_4XX
|
4786
|
-
# * DEFAULT\_5XX
|
4787
|
-
# * EXPIRED\_TOKEN
|
4788
|
-
# * INVALID\_SIGNATURE
|
4789
|
-
# * INTEGRATION\_FAILURE
|
4790
|
-
# * INTEGRATION\_TIMEOUT
|
4791
|
-
# * INVALID\_API\_KEY
|
4792
|
-
# * MISSING\_AUTHENTICATION\_TOKEN
|
4793
|
-
# * QUOTA\_EXCEEDED
|
4794
|
-
# * REQUEST\_TOO\_LARGE
|
4795
|
-
# * RESOURCE\_NOT\_FOUND
|
4796
|
-
# * THROTTLED
|
4797
|
-
# * UNAUTHORIZED
|
4798
|
-
# * UNSUPPORTED\_MEDIA\_TYPE
|
4799
4745
|
#
|
4800
4746
|
# @option params [String] :status_code
|
4801
4747
|
# The HTTP status code of the GatewayResponse.
|
@@ -4820,7 +4766,7 @@ module Aws::APIGateway
|
|
4820
4766
|
#
|
4821
4767
|
# resp = client.put_gateway_response({
|
4822
4768
|
# rest_api_id: "String", # required
|
4823
|
-
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED
|
4769
|
+
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED, WAF_FILTERED
|
4824
4770
|
# status_code: "StatusCode",
|
4825
4771
|
# response_parameters: {
|
4826
4772
|
# "String" => "String",
|
@@ -4832,7 +4778,7 @@ module Aws::APIGateway
|
|
4832
4778
|
#
|
4833
4779
|
# @example Response structure
|
4834
4780
|
#
|
4835
|
-
# resp.response_type #=> String, one of "DEFAULT_4XX", "DEFAULT_5XX", "RESOURCE_NOT_FOUND", "UNAUTHORIZED", "INVALID_API_KEY", "ACCESS_DENIED", "AUTHORIZER_FAILURE", "AUTHORIZER_CONFIGURATION_ERROR", "INVALID_SIGNATURE", "EXPIRED_TOKEN", "MISSING_AUTHENTICATION_TOKEN", "INTEGRATION_FAILURE", "INTEGRATION_TIMEOUT", "API_CONFIGURATION_ERROR", "UNSUPPORTED_MEDIA_TYPE", "BAD_REQUEST_PARAMETERS", "BAD_REQUEST_BODY", "REQUEST_TOO_LARGE", "THROTTLED", "QUOTA_EXCEEDED"
|
4781
|
+
# resp.response_type #=> String, one of "DEFAULT_4XX", "DEFAULT_5XX", "RESOURCE_NOT_FOUND", "UNAUTHORIZED", "INVALID_API_KEY", "ACCESS_DENIED", "AUTHORIZER_FAILURE", "AUTHORIZER_CONFIGURATION_ERROR", "INVALID_SIGNATURE", "EXPIRED_TOKEN", "MISSING_AUTHENTICATION_TOKEN", "INTEGRATION_FAILURE", "INTEGRATION_TIMEOUT", "API_CONFIGURATION_ERROR", "UNSUPPORTED_MEDIA_TYPE", "BAD_REQUEST_PARAMETERS", "BAD_REQUEST_BODY", "REQUEST_TOO_LARGE", "THROTTLED", "QUOTA_EXCEEDED", "WAF_FILTERED"
|
4836
4782
|
# resp.status_code #=> String
|
4837
4783
|
# resp.response_parameters #=> Hash
|
4838
4784
|
# resp.response_parameters["String"] #=> String
|
@@ -6194,27 +6140,6 @@ module Aws::APIGateway
|
|
6194
6140
|
#
|
6195
6141
|
# @option params [required, String] :response_type
|
6196
6142
|
# \[Required\] The response type of the associated GatewayResponse.
|
6197
|
-
# Valid values are
|
6198
|
-
# * ACCESS\_DENIED
|
6199
|
-
# * API\_CONFIGURATION\_ERROR
|
6200
|
-
# * AUTHORIZER\_FAILURE
|
6201
|
-
# * AUTHORIZER\_CONFIGURATION\_ERROR
|
6202
|
-
# * BAD\_REQUEST\_PARAMETERS
|
6203
|
-
# * BAD\_REQUEST\_BODY
|
6204
|
-
# * DEFAULT\_4XX
|
6205
|
-
# * DEFAULT\_5XX
|
6206
|
-
# * EXPIRED\_TOKEN
|
6207
|
-
# * INVALID\_SIGNATURE
|
6208
|
-
# * INTEGRATION\_FAILURE
|
6209
|
-
# * INTEGRATION\_TIMEOUT
|
6210
|
-
# * INVALID\_API\_KEY
|
6211
|
-
# * MISSING\_AUTHENTICATION\_TOKEN
|
6212
|
-
# * QUOTA\_EXCEEDED
|
6213
|
-
# * REQUEST\_TOO\_LARGE
|
6214
|
-
# * RESOURCE\_NOT\_FOUND
|
6215
|
-
# * THROTTLED
|
6216
|
-
# * UNAUTHORIZED
|
6217
|
-
# * UNSUPPORTED\_MEDIA\_TYPE
|
6218
6143
|
#
|
6219
6144
|
# @option params [Array<Types::PatchOperation>] :patch_operations
|
6220
6145
|
# A list of update operations to be applied to the specified resource
|
@@ -6232,7 +6157,7 @@ module Aws::APIGateway
|
|
6232
6157
|
#
|
6233
6158
|
# resp = client.update_gateway_response({
|
6234
6159
|
# rest_api_id: "String", # required
|
6235
|
-
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED
|
6160
|
+
# response_type: "DEFAULT_4XX", # required, accepts DEFAULT_4XX, DEFAULT_5XX, RESOURCE_NOT_FOUND, UNAUTHORIZED, INVALID_API_KEY, ACCESS_DENIED, AUTHORIZER_FAILURE, AUTHORIZER_CONFIGURATION_ERROR, INVALID_SIGNATURE, EXPIRED_TOKEN, MISSING_AUTHENTICATION_TOKEN, INTEGRATION_FAILURE, INTEGRATION_TIMEOUT, API_CONFIGURATION_ERROR, UNSUPPORTED_MEDIA_TYPE, BAD_REQUEST_PARAMETERS, BAD_REQUEST_BODY, REQUEST_TOO_LARGE, THROTTLED, QUOTA_EXCEEDED, WAF_FILTERED
|
6236
6161
|
# patch_operations: [
|
6237
6162
|
# {
|
6238
6163
|
# op: "add", # accepts add, remove, replace, move, copy, test
|
@@ -6245,7 +6170,7 @@ module Aws::APIGateway
|
|
6245
6170
|
#
|
6246
6171
|
# @example Response structure
|
6247
6172
|
#
|
6248
|
-
# resp.response_type #=> String, one of "DEFAULT_4XX", "DEFAULT_5XX", "RESOURCE_NOT_FOUND", "UNAUTHORIZED", "INVALID_API_KEY", "ACCESS_DENIED", "AUTHORIZER_FAILURE", "AUTHORIZER_CONFIGURATION_ERROR", "INVALID_SIGNATURE", "EXPIRED_TOKEN", "MISSING_AUTHENTICATION_TOKEN", "INTEGRATION_FAILURE", "INTEGRATION_TIMEOUT", "API_CONFIGURATION_ERROR", "UNSUPPORTED_MEDIA_TYPE", "BAD_REQUEST_PARAMETERS", "BAD_REQUEST_BODY", "REQUEST_TOO_LARGE", "THROTTLED", "QUOTA_EXCEEDED"
|
6173
|
+
# resp.response_type #=> String, one of "DEFAULT_4XX", "DEFAULT_5XX", "RESOURCE_NOT_FOUND", "UNAUTHORIZED", "INVALID_API_KEY", "ACCESS_DENIED", "AUTHORIZER_FAILURE", "AUTHORIZER_CONFIGURATION_ERROR", "INVALID_SIGNATURE", "EXPIRED_TOKEN", "MISSING_AUTHENTICATION_TOKEN", "INTEGRATION_FAILURE", "INTEGRATION_TIMEOUT", "API_CONFIGURATION_ERROR", "UNSUPPORTED_MEDIA_TYPE", "BAD_REQUEST_PARAMETERS", "BAD_REQUEST_BODY", "REQUEST_TOO_LARGE", "THROTTLED", "QUOTA_EXCEEDED", "WAF_FILTERED"
|
6249
6174
|
# resp.status_code #=> String
|
6250
6175
|
# resp.response_parameters #=> Hash
|
6251
6176
|
# resp.response_parameters["String"] #=> String
|
@@ -7095,7 +7020,7 @@ module Aws::APIGateway
|
|
7095
7020
|
params: params,
|
7096
7021
|
config: config)
|
7097
7022
|
context[:gem_name] = 'aws-sdk-apigateway'
|
7098
|
-
context[:gem_version] = '1.
|
7023
|
+
context[:gem_version] = '1.69.0'
|
7099
7024
|
Seahorse::Client::Request.new(handlers, context)
|
7100
7025
|
end
|
7101
7026
|
|