aws-sdk-apigatewayv2 1.67.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigatewayv2/client.rb +36 -13
- data/lib/aws-sdk-apigatewayv2/types.rb +83 -87
- data/lib/aws-sdk-apigatewayv2.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74f03dfb179971cf86f0e0ae619ec5c267fca1098820100bc61d91875252755e
|
4
|
+
data.tar.gz: dff264102c886186acc2796bd8b730d6bc9b809614408189f74a4c03b3aeaa45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54a62e93c82053c430d00eaaf8a1e154e9c5e5d01ddd5d989eeb6577abd6cd6d9b6bb9c479cf524a9a4c755fee8ce4bbf5b28d73adfaf8604202ec1c1ea706a8
|
7
|
+
data.tar.gz: e1d3a99c840185d092b9e9182b2e8787b355e64f37e7e095110fa628b452f6fa0cc6f2e8ee2af3596d60acf1bfb87a61eea689f5cd6144ba02cd36f8cdb7540b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.69.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.68.0 (2024-11-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.67.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.69.0
|
@@ -257,11 +257,34 @@ module Aws::ApiGatewayV2
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -918,9 +941,9 @@ module Aws::ApiGatewayV2
|
|
918
941
|
# method request parameter value or static value that must be enclosed
|
919
942
|
# within single quotes and pre-encoded as required by the backend. The
|
920
943
|
# method request parameter value must match the pattern of
|
921
|
-
# method.request
|
922
|
-
#
|
923
|
-
#
|
944
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
945
|
+
# querystring, path, or header; and *\{name}* must be a valid and unique
|
946
|
+
# method request parameter name.
|
924
947
|
#
|
925
948
|
# For HTTP API integrations with a specified integrationSubtype, request
|
926
949
|
# parameters are a key-value map specifying parameters that are passed
|
@@ -1087,9 +1110,9 @@ module Aws::ApiGatewayV2
|
|
1087
1110
|
# method request parameter value or static value that must be enclosed
|
1088
1111
|
# within single quotes and pre-encoded as required by the backend. The
|
1089
1112
|
# method request parameter value must match the pattern of
|
1090
|
-
# method.request
|
1091
|
-
#
|
1092
|
-
#
|
1113
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
1114
|
+
# querystring, path, or header; and *\{name}* must be a valid and unique
|
1115
|
+
# method request parameter name.
|
1093
1116
|
#
|
1094
1117
|
# For HTTP API integrations with a specified integrationSubtype, request
|
1095
1118
|
# parameters are a key-value map specifying parameters that are passed
|
@@ -3886,9 +3909,9 @@ module Aws::ApiGatewayV2
|
|
3886
3909
|
# method request parameter value or static value that must be enclosed
|
3887
3910
|
# within single quotes and pre-encoded as required by the backend. The
|
3888
3911
|
# method request parameter value must match the pattern of
|
3889
|
-
# method.request
|
3890
|
-
#
|
3891
|
-
#
|
3912
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
3913
|
+
# querystring, path, or header; and *\{name}* must be a valid and unique
|
3914
|
+
# method request parameter name.
|
3892
3915
|
#
|
3893
3916
|
# For HTTP API integrations with a specified integrationSubtype, request
|
3894
3917
|
# parameters are a key-value map specifying parameters that are passed
|
@@ -4058,9 +4081,9 @@ module Aws::ApiGatewayV2
|
|
4058
4081
|
# method request parameter value or static value that must be enclosed
|
4059
4082
|
# within single quotes and pre-encoded as required by the backend. The
|
4060
4083
|
# method request parameter value must match the pattern of
|
4061
|
-
# method.request
|
4062
|
-
#
|
4063
|
-
#
|
4084
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
4085
|
+
# querystring, path, or header; and *\{name}* must be a valid and unique
|
4086
|
+
# method request parameter name.
|
4064
4087
|
#
|
4065
4088
|
# For HTTP API integrations with a specified integrationSubtype, request
|
4066
4089
|
# parameters are a key-value map specifying parameters that are passed
|
@@ -4582,7 +4605,7 @@ module Aws::ApiGatewayV2
|
|
4582
4605
|
tracer: tracer
|
4583
4606
|
)
|
4584
4607
|
context[:gem_name] = 'aws-sdk-apigatewayv2'
|
4585
|
-
context[:gem_version] = '1.
|
4608
|
+
context[:gem_version] = '1.69.0'
|
4586
4609
|
Seahorse::Client::Request.new(handlers, context)
|
4587
4610
|
end
|
4588
4611
|
|
@@ -42,9 +42,9 @@ module Aws::ApiGatewayV2
|
|
42
42
|
#
|
43
43
|
# @!attribute [rw] api_endpoint
|
44
44
|
# The URI of the API, of the form
|
45
|
-
#
|
46
|
-
#
|
47
|
-
#
|
45
|
+
# \{api-id}.execute-api.\{region}.amazonaws.com. The stage name is
|
46
|
+
# typically appended to this URI to form a complete path to a deployed
|
47
|
+
# API stage.
|
48
48
|
# @return [String]
|
49
49
|
#
|
50
50
|
# @!attribute [rw] api_gateway_managed
|
@@ -86,8 +86,7 @@ module Aws::ApiGatewayV2
|
|
86
86
|
# @!attribute [rw] disable_execute_api_endpoint
|
87
87
|
# Specifies whether clients can invoke your API by using the default
|
88
88
|
# execute-api endpoint. By default, clients can invoke your API with
|
89
|
-
# the default
|
90
|
-
# https://\\\{api\_id\\}.execute-api.\\\{region\\}.amazonaws.com
|
89
|
+
# the default https://\{api\_id}.execute-api.\{region}.amazonaws.com
|
91
90
|
# endpoint. To require that clients use a custom domain name to invoke
|
92
91
|
# your API, disable the default endpoint.
|
93
92
|
# @return [Boolean]
|
@@ -108,9 +107,9 @@ module Aws::ApiGatewayV2
|
|
108
107
|
#
|
109
108
|
# @!attribute [rw] route_selection_expression
|
110
109
|
# The route selection expression for the API. For HTTP APIs, the
|
111
|
-
# routeSelectionExpression must be
|
112
|
-
#
|
113
|
-
#
|
110
|
+
# routeSelectionExpression must be $\{request.method}
|
111
|
+
# $\{request.path}. If not provided, this will be the default for HTTP
|
112
|
+
# APIs. This property is required for WebSocket APIs.
|
114
113
|
# @return [String]
|
115
114
|
#
|
116
115
|
# @!attribute [rw] tags
|
@@ -241,12 +240,12 @@ module Aws::ApiGatewayV2
|
|
241
240
|
# The authorizer's Uniform Resource Identifier (URI). For REQUEST
|
242
241
|
# authorizers, this must be a well-formed Lambda function URI, for
|
243
242
|
# example,
|
244
|
-
# arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2
|
243
|
+
# arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:*\{account\_id}*:function:*\{lambda\_function\_name}*/invocations.
|
245
244
|
# In general, the URI has this form:
|
246
|
-
# arn:aws:apigateway
|
247
|
-
#
|
245
|
+
# arn:aws:apigateway:*\{region}*:lambda:path/*\{service\_api}* , where
|
246
|
+
# <replaceable />
|
248
247
|
#
|
249
|
-
#
|
248
|
+
# \{region} is the same as the region hosting the Lambda function,
|
250
249
|
# path indicates that the remaining substring in the URI should be
|
251
250
|
# treated as the path to the resource, including the initial /. For
|
252
251
|
# Lambda functions, this is usually of the form
|
@@ -492,9 +491,9 @@ module Aws::ApiGatewayV2
|
|
492
491
|
#
|
493
492
|
# @!attribute [rw] route_selection_expression
|
494
493
|
# The route selection expression for the API. For HTTP APIs, the
|
495
|
-
# routeSelectionExpression must be
|
496
|
-
#
|
497
|
-
#
|
494
|
+
# routeSelectionExpression must be $\{request.method}
|
495
|
+
# $\{request.path}. If not provided, this will be the default for HTTP
|
496
|
+
# APIs. This property is required for WebSocket APIs.
|
498
497
|
# @return [String]
|
499
498
|
#
|
500
499
|
# @!attribute [rw] tags
|
@@ -829,12 +828,12 @@ module Aws::ApiGatewayV2
|
|
829
828
|
# The authorizer's Uniform Resource Identifier (URI). For REQUEST
|
830
829
|
# authorizers, this must be a well-formed Lambda function URI, for
|
831
830
|
# example,
|
832
|
-
# arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2
|
831
|
+
# arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:*\{account\_id}*:function:*\{lambda\_function\_name}*/invocations.
|
833
832
|
# In general, the URI has this form:
|
834
|
-
# arn:aws:apigateway
|
835
|
-
#
|
833
|
+
# arn:aws:apigateway:*\{region}*:lambda:path/*\{service\_api}* , where
|
834
|
+
# <replaceable />
|
836
835
|
#
|
837
|
-
#
|
836
|
+
# \{region} is the same as the region hosting the Lambda function,
|
838
837
|
# path indicates that the remaining substring in the URI should be
|
839
838
|
# treated as the path to the resource, including the initial /. For
|
840
839
|
# Lambda functions, this is usually of the form
|
@@ -1372,9 +1371,9 @@ module Aws::ApiGatewayV2
|
|
1372
1371
|
# method request parameter value or static value that must be enclosed
|
1373
1372
|
# within single quotes and pre-encoded as required by the backend. The
|
1374
1373
|
# method request parameter value must match the pattern of
|
1375
|
-
# method.request
|
1376
|
-
#
|
1377
|
-
#
|
1374
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
1375
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
1376
|
+
# unique method request parameter name.
|
1378
1377
|
#
|
1379
1378
|
# For HTTP API integrations with a specified integrationSubtype,
|
1380
1379
|
# request parameters are a key-value map specifying parameters that
|
@@ -1520,9 +1519,9 @@ module Aws::ApiGatewayV2
|
|
1520
1519
|
# method request parameter value or static value that must be enclosed
|
1521
1520
|
# within single quotes and pre-encoded as required by the backend. The
|
1522
1521
|
# method request parameter value must match the pattern of
|
1523
|
-
# method.request
|
1524
|
-
#
|
1525
|
-
#
|
1522
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
1523
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
1524
|
+
# unique method request parameter name.
|
1526
1525
|
#
|
1527
1526
|
# For HTTP API integrations with a specified integrationSubtype,
|
1528
1527
|
# request parameters are a key-value map specifying parameters that
|
@@ -1670,9 +1669,9 @@ module Aws::ApiGatewayV2
|
|
1670
1669
|
# method request parameter value or static value that must be enclosed
|
1671
1670
|
# within single quotes and pre-encoded as required by the backend. The
|
1672
1671
|
# method request parameter value must match the pattern of
|
1673
|
-
# method.request
|
1674
|
-
#
|
1675
|
-
#
|
1672
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
1673
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
1674
|
+
# unique method request parameter name.
|
1676
1675
|
#
|
1677
1676
|
# For HTTP API integrations with a specified integrationSubtype,
|
1678
1677
|
# request parameters are a key-value map specifying parameters that
|
@@ -1783,13 +1782,12 @@ module Aws::ApiGatewayV2
|
|
1783
1782
|
# response header value, a static value enclosed within a pair of
|
1784
1783
|
# single quotes, or a JSON expression from the integration response
|
1785
1784
|
# body. The mapping key must match the pattern of
|
1786
|
-
# method.response.header
|
1787
|
-
#
|
1788
|
-
#
|
1789
|
-
# integration.response.body
|
1790
|
-
#
|
1791
|
-
#
|
1792
|
-
# prefix.
|
1785
|
+
# method.response.header.\{name}, where \{name} is a valid and unique
|
1786
|
+
# header name. The mapped non-static value must match the pattern of
|
1787
|
+
# integration.response.header.\{name} or
|
1788
|
+
# integration.response.body.\{JSON-expression}, where \{name} is a
|
1789
|
+
# valid and unique response header name and \{JSON-expression} is a
|
1790
|
+
# valid JSON expression without the $ prefix.
|
1793
1791
|
# @return [Hash<String,String>]
|
1794
1792
|
#
|
1795
1793
|
# @!attribute [rw] response_templates
|
@@ -1843,9 +1841,9 @@ module Aws::ApiGatewayV2
|
|
1843
1841
|
# method request parameter value or static value that must be enclosed
|
1844
1842
|
# within single quotes and pre-encoded as required by the backend. The
|
1845
1843
|
# method request parameter value must match the pattern of
|
1846
|
-
# method.request
|
1847
|
-
#
|
1848
|
-
#
|
1844
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
1845
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
1846
|
+
# unique method request parameter name.
|
1849
1847
|
#
|
1850
1848
|
# For HTTP API integrations with a specified integrationSubtype,
|
1851
1849
|
# request parameters are a key-value map specifying parameters that
|
@@ -1924,9 +1922,9 @@ module Aws::ApiGatewayV2
|
|
1924
1922
|
# method request parameter value or static value that must be enclosed
|
1925
1923
|
# within single quotes and pre-encoded as required by the backend. The
|
1926
1924
|
# method request parameter value must match the pattern of
|
1927
|
-
# method.request
|
1928
|
-
#
|
1929
|
-
#
|
1925
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
1926
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
1927
|
+
# unique method request parameter name.
|
1930
1928
|
#
|
1931
1929
|
# For HTTP API integrations with a specified integrationSubtype,
|
1932
1930
|
# request parameters are a key-value map specifying parameters that
|
@@ -3739,9 +3737,9 @@ module Aws::ApiGatewayV2
|
|
3739
3737
|
# method request parameter value or static value that must be enclosed
|
3740
3738
|
# within single quotes and pre-encoded as required by the backend. The
|
3741
3739
|
# method request parameter value must match the pattern of
|
3742
|
-
# method.request
|
3743
|
-
#
|
3744
|
-
#
|
3740
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
3741
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
3742
|
+
# unique method request parameter name.
|
3745
3743
|
#
|
3746
3744
|
# For HTTP API integrations with a specified integrationSubtype,
|
3747
3745
|
# request parameters are a key-value map specifying parameters that
|
@@ -3866,9 +3864,9 @@ module Aws::ApiGatewayV2
|
|
3866
3864
|
# method request parameter value or static value that must be enclosed
|
3867
3865
|
# within single quotes and pre-encoded as required by the backend. The
|
3868
3866
|
# method request parameter value must match the pattern of
|
3869
|
-
# method.request
|
3870
|
-
#
|
3871
|
-
#
|
3867
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
3868
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
3869
|
+
# unique method request parameter name.
|
3872
3870
|
#
|
3873
3871
|
# For HTTP API integrations with a specified integrationSubtype,
|
3874
3872
|
# request parameters are a key-value map specifying parameters that
|
@@ -4817,9 +4815,9 @@ module Aws::ApiGatewayV2
|
|
4817
4815
|
# method request parameter value or static value that must be enclosed
|
4818
4816
|
# within single quotes and pre-encoded as required by the backend. The
|
4819
4817
|
# method request parameter value must match the pattern of
|
4820
|
-
# method.request
|
4821
|
-
#
|
4822
|
-
#
|
4818
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
4819
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
4820
|
+
# unique method request parameter name.
|
4823
4821
|
#
|
4824
4822
|
# For HTTP API integrations with a specified integrationSubtype,
|
4825
4823
|
# request parameters are a key-value map specifying parameters that
|
@@ -4947,12 +4945,12 @@ module Aws::ApiGatewayV2
|
|
4947
4945
|
# response header value, a static value enclosed within a pair of
|
4948
4946
|
# single quotes, or a JSON expression from the integration response
|
4949
4947
|
# body. The mapping key must match the pattern of
|
4950
|
-
# method.response.header
|
4948
|
+
# method.response.header.\{name}, where name is a valid and unique
|
4951
4949
|
# header name. The mapped non-static value must match the pattern of
|
4952
|
-
# integration.response.header
|
4953
|
-
# integration.response.body
|
4954
|
-
#
|
4955
|
-
#
|
4950
|
+
# integration.response.header.\{name} or
|
4951
|
+
# integration.response.body.\{JSON-expression}, where name is a valid
|
4952
|
+
# and unique response header name and JSON-expression is a valid JSON
|
4953
|
+
# expression without the $ prefix.
|
4956
4954
|
# @return [Hash<String,String>]
|
4957
4955
|
#
|
4958
4956
|
# @!attribute [rw] response_templates
|
@@ -5030,9 +5028,8 @@ module Aws::ApiGatewayV2
|
|
5030
5028
|
# The base domain of the identity provider that issues JSON Web
|
5031
5029
|
# Tokens. For example, an Amazon Cognito user pool has the following
|
5032
5030
|
# format:
|
5033
|
-
# https://cognito-idp
|
5034
|
-
#
|
5035
|
-
# APIs.
|
5031
|
+
# https://cognito-idp.*\{region}*.amazonaws.com/*\{userPoolId}* .
|
5032
|
+
# Required for the JWT authorizer type. Supported only for HTTP APIs.
|
5036
5033
|
# @return [String]
|
5037
5034
|
#
|
5038
5035
|
class JWTConfiguration < Struct.new(
|
@@ -5803,9 +5800,9 @@ module Aws::ApiGatewayV2
|
|
5803
5800
|
#
|
5804
5801
|
# @!attribute [rw] route_selection_expression
|
5805
5802
|
# The route selection expression for the API. For HTTP APIs, the
|
5806
|
-
# routeSelectionExpression must be
|
5807
|
-
#
|
5808
|
-
#
|
5803
|
+
# routeSelectionExpression must be $\{request.method}
|
5804
|
+
# $\{request.path}. If not provided, this will be the default for HTTP
|
5805
|
+
# APIs. This property is required for WebSocket APIs.
|
5809
5806
|
# @return [String]
|
5810
5807
|
#
|
5811
5808
|
# @!attribute [rw] target
|
@@ -6129,12 +6126,12 @@ module Aws::ApiGatewayV2
|
|
6129
6126
|
# The authorizer's Uniform Resource Identifier (URI). For REQUEST
|
6130
6127
|
# authorizers, this must be a well-formed Lambda function URI, for
|
6131
6128
|
# example,
|
6132
|
-
# arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2
|
6129
|
+
# arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:*\{account\_id}*:function:*\{lambda\_function\_name}*/invocations.
|
6133
6130
|
# In general, the URI has this form:
|
6134
|
-
# arn:aws:apigateway
|
6135
|
-
#
|
6131
|
+
# arn:aws:apigateway:*\{region}*:lambda:path/*\{service\_api}* , where
|
6132
|
+
# <replaceable />
|
6136
6133
|
#
|
6137
|
-
#
|
6134
|
+
# \{region} is the same as the region hosting the Lambda function,
|
6138
6135
|
# path indicates that the remaining substring in the URI should be
|
6139
6136
|
# treated as the path to the resource, including the initial /. For
|
6140
6137
|
# Lambda functions, this is usually of the form
|
@@ -6653,9 +6650,9 @@ module Aws::ApiGatewayV2
|
|
6653
6650
|
# method request parameter value or static value that must be enclosed
|
6654
6651
|
# within single quotes and pre-encoded as required by the backend. The
|
6655
6652
|
# method request parameter value must match the pattern of
|
6656
|
-
# method.request
|
6657
|
-
#
|
6658
|
-
#
|
6653
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
6654
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
6655
|
+
# unique method request parameter name.
|
6659
6656
|
#
|
6660
6657
|
# For HTTP API integrations with a specified integrationSubtype,
|
6661
6658
|
# request parameters are a key-value map specifying parameters that
|
@@ -6804,9 +6801,9 @@ module Aws::ApiGatewayV2
|
|
6804
6801
|
# method request parameter value or static value that must be enclosed
|
6805
6802
|
# within single quotes and pre-encoded as required by the backend. The
|
6806
6803
|
# method request parameter value must match the pattern of
|
6807
|
-
# method.request
|
6808
|
-
#
|
6809
|
-
#
|
6804
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
6805
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
6806
|
+
# unique method request parameter name.
|
6810
6807
|
#
|
6811
6808
|
# For HTTP API integrations with a specified integrationSubtype,
|
6812
6809
|
# request parameters are a key-value map specifying parameters that
|
@@ -6955,9 +6952,9 @@ module Aws::ApiGatewayV2
|
|
6955
6952
|
# method request parameter value or static value that must be enclosed
|
6956
6953
|
# within single quotes and pre-encoded as required by the backend. The
|
6957
6954
|
# method request parameter value must match the pattern of
|
6958
|
-
# method.request
|
6959
|
-
#
|
6960
|
-
#
|
6955
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
6956
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
6957
|
+
# unique method request parameter name.
|
6961
6958
|
#
|
6962
6959
|
# For HTTP API integrations with a specified integrationSubtype,
|
6963
6960
|
# request parameters are a key-value map specifying parameters that
|
@@ -7069,13 +7066,12 @@ module Aws::ApiGatewayV2
|
|
7069
7066
|
# response header value, a static value enclosed within a pair of
|
7070
7067
|
# single quotes, or a JSON expression from the integration response
|
7071
7068
|
# body. The mapping key must match the pattern of
|
7072
|
-
# method.response.header
|
7073
|
-
#
|
7074
|
-
#
|
7075
|
-
# integration.response.body
|
7076
|
-
#
|
7077
|
-
#
|
7078
|
-
# prefix.
|
7069
|
+
# method.response.header.*\{name}* , where name is a valid and unique
|
7070
|
+
# header name. The mapped non-static value must match the pattern of
|
7071
|
+
# integration.response.header.*\{name}* or
|
7072
|
+
# integration.response.body.*\{JSON-expression}* , where *\{name}* is
|
7073
|
+
# a valid and unique response header name and *\{JSON-expression}* is
|
7074
|
+
# a valid JSON expression without the $ prefix.
|
7079
7075
|
# @return [Hash<String,String>]
|
7080
7076
|
#
|
7081
7077
|
# @!attribute [rw] response_templates
|
@@ -7132,9 +7128,9 @@ module Aws::ApiGatewayV2
|
|
7132
7128
|
# method request parameter value or static value that must be enclosed
|
7133
7129
|
# within single quotes and pre-encoded as required by the backend. The
|
7134
7130
|
# method request parameter value must match the pattern of
|
7135
|
-
# method.request
|
7136
|
-
#
|
7137
|
-
#
|
7131
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
7132
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
7133
|
+
# unique method request parameter name.
|
7138
7134
|
#
|
7139
7135
|
# For HTTP API integrations with a specified integrationSubtype,
|
7140
7136
|
# request parameters are a key-value map specifying parameters that
|
@@ -7214,9 +7210,9 @@ module Aws::ApiGatewayV2
|
|
7214
7210
|
# method request parameter value or static value that must be enclosed
|
7215
7211
|
# within single quotes and pre-encoded as required by the backend. The
|
7216
7212
|
# method request parameter value must match the pattern of
|
7217
|
-
# method.request
|
7218
|
-
#
|
7219
|
-
#
|
7213
|
+
# method.request.*\{location}*.*\{name}* , where *\{location}* is
|
7214
|
+
# querystring, path, or header; and *\{name}* must be a valid and
|
7215
|
+
# unique method request parameter name.
|
7220
7216
|
#
|
7221
7217
|
# For HTTP API integrations with a specified integrationSubtype,
|
7222
7218
|
# request parameters are a key-value map specifying parameters that
|
data/lib/aws-sdk-apigatewayv2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-apigatewayv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.69.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:
|
11
|
+
date: 2025-01-15 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.
|
22
|
+
version: 3.216.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.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|