aws-sdk-apigatewayv2 1.18.0 → 1.23.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 +5 -5
- data/lib/aws-sdk-apigatewayv2.rb +3 -1
- data/lib/aws-sdk-apigatewayv2/client.rb +51 -7
- data/lib/aws-sdk-apigatewayv2/client_api.rb +29 -0
- data/lib/aws-sdk-apigatewayv2/errors.rb +2 -0
- data/lib/aws-sdk-apigatewayv2/resource.rb +2 -0
- data/lib/aws-sdk-apigatewayv2/types.rb +277 -83
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4146e1d5ee38e96dd7d916f9f5152085b9dedc13bec963823d56434b5270c481
|
4
|
+
data.tar.gz: 56fb7f286ab81e0e8f5a4b6ae1e95468e0d3b87628802e9b25afc030e3e04c95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32b12a6e37c7bb955b63b468cdd7dfe0166246404cf0dd27666d965c31af340744312f21eca14b59f9ef5f1eb971c871cb3a619c4ea17ed25a3f313583d10788
|
7
|
+
data.tar.gz: 0bee055a0531ce7a5268ca92b15b4f9b5d3ecec1f29af1a4046f2d4b11eeda14a2b5c06c72384a0f9d5fd6b79097aa270509e8bb6f3d6df049ae2560cffeba79
|
data/lib/aws-sdk-apigatewayv2.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-apigatewayv2/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::ApiGatewayV2
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.23.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::ApiGatewayV2
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::ApiGatewayV2
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::ApiGatewayV2
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::ApiGatewayV2
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -269,8 +273,7 @@ module Aws::ApiGatewayV2
|
|
269
273
|
#
|
270
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
271
275
|
# number of seconds to wait for response data. This value can
|
272
|
-
# safely be set
|
273
|
-
# per-request on the session yielded by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
274
277
|
#
|
275
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
276
279
|
# seconds a connection is allowed to sit idle before it is
|
@@ -282,7 +285,7 @@ module Aws::ApiGatewayV2
|
|
282
285
|
# request body. This option has no effect unless the request has
|
283
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
284
287
|
# disables this behaviour. This value can safely be set per
|
285
|
-
# request on the session
|
288
|
+
# request on the session.
|
286
289
|
#
|
287
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
288
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1721,6 +1724,47 @@ module Aws::ApiGatewayV2
|
|
1721
1724
|
req.send_request(options)
|
1722
1725
|
end
|
1723
1726
|
|
1727
|
+
# Exports a definition of an API in a particular output format and
|
1728
|
+
# specification.
|
1729
|
+
#
|
1730
|
+
# @option params [required, String] :api_id
|
1731
|
+
#
|
1732
|
+
# @option params [String] :export_version
|
1733
|
+
#
|
1734
|
+
# @option params [Boolean] :include_extensions
|
1735
|
+
#
|
1736
|
+
# @option params [required, String] :output_type
|
1737
|
+
#
|
1738
|
+
# @option params [required, String] :specification
|
1739
|
+
#
|
1740
|
+
# @option params [String] :stage_name
|
1741
|
+
#
|
1742
|
+
# @return [Types::ExportApiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1743
|
+
#
|
1744
|
+
# * {Types::ExportApiResponse#body #body} => String
|
1745
|
+
#
|
1746
|
+
# @example Request syntax with placeholder values
|
1747
|
+
#
|
1748
|
+
# resp = client.export_api({
|
1749
|
+
# api_id: "__string", # required
|
1750
|
+
# export_version: "__string",
|
1751
|
+
# include_extensions: false,
|
1752
|
+
# output_type: "__string", # required
|
1753
|
+
# specification: "__string", # required
|
1754
|
+
# stage_name: "__string",
|
1755
|
+
# })
|
1756
|
+
#
|
1757
|
+
# @example Response structure
|
1758
|
+
#
|
1759
|
+
# resp.body #=> String
|
1760
|
+
#
|
1761
|
+
# @overload export_api(params = {})
|
1762
|
+
# @param [Hash] params ({})
|
1763
|
+
def export_api(params = {}, options = {})
|
1764
|
+
req = build_request(:export_api, params)
|
1765
|
+
req.send_request(options)
|
1766
|
+
end
|
1767
|
+
|
1724
1768
|
# Gets an Api resource.
|
1725
1769
|
#
|
1726
1770
|
# @option params [required, String] :api_id
|
@@ -4144,7 +4188,7 @@ module Aws::ApiGatewayV2
|
|
4144
4188
|
params: params,
|
4145
4189
|
config: config)
|
4146
4190
|
context[:gem_name] = 'aws-sdk-apigatewayv2'
|
4147
|
-
context[:gem_version] = '1.
|
4191
|
+
context[:gem_version] = '1.23.0'
|
4148
4192
|
Seahorse::Client::Request.new(handlers, context)
|
4149
4193
|
end
|
4150
4194
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -93,6 +95,9 @@ module Aws::ApiGatewayV2
|
|
93
95
|
DomainNameStatus = Shapes::StringShape.new(name: 'DomainNameStatus')
|
94
96
|
DomainNames = Shapes::StructureShape.new(name: 'DomainNames')
|
95
97
|
EndpointType = Shapes::StringShape.new(name: 'EndpointType')
|
98
|
+
ExportApiRequest = Shapes::StructureShape.new(name: 'ExportApiRequest')
|
99
|
+
ExportApiResponse = Shapes::StructureShape.new(name: 'ExportApiResponse')
|
100
|
+
ExportedApi = Shapes::BlobShape.new(name: 'ExportedApi')
|
96
101
|
GetApiMappingRequest = Shapes::StructureShape.new(name: 'GetApiMappingRequest')
|
97
102
|
GetApiMappingResponse = Shapes::StructureShape.new(name: 'GetApiMappingResponse')
|
98
103
|
GetApiMappingsRequest = Shapes::StructureShape.new(name: 'GetApiMappingsRequest')
|
@@ -796,6 +801,19 @@ module Aws::ApiGatewayV2
|
|
796
801
|
DomainNames.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
797
802
|
DomainNames.struct_class = Types::DomainNames
|
798
803
|
|
804
|
+
ExportApiRequest.add_member(:api_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "apiId"))
|
805
|
+
ExportApiRequest.add_member(:export_version, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "exportVersion"))
|
806
|
+
ExportApiRequest.add_member(:include_extensions, Shapes::ShapeRef.new(shape: __boolean, location: "querystring", location_name: "includeExtensions"))
|
807
|
+
ExportApiRequest.add_member(:output_type, Shapes::ShapeRef.new(shape: __string, required: true, location: "querystring", location_name: "outputType", metadata: {"enum"=>["YAML", "JSON"]}))
|
808
|
+
ExportApiRequest.add_member(:specification, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "specification", metadata: {"enum"=>["OAS30"]}))
|
809
|
+
ExportApiRequest.add_member(:stage_name, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "stageName"))
|
810
|
+
ExportApiRequest.struct_class = Types::ExportApiRequest
|
811
|
+
|
812
|
+
ExportApiResponse.add_member(:body, Shapes::ShapeRef.new(shape: ExportedApi, location_name: "body"))
|
813
|
+
ExportApiResponse.struct_class = Types::ExportApiResponse
|
814
|
+
ExportApiResponse[:payload] = :body
|
815
|
+
ExportApiResponse[:payload_member] = ExportApiResponse.member(:body)
|
816
|
+
|
799
817
|
GetApiMappingRequest.add_member(:api_mapping_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "apiMappingId"))
|
800
818
|
GetApiMappingRequest.add_member(:domain_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "domainName"))
|
801
819
|
GetApiMappingRequest.struct_class = Types::GetApiMappingRequest
|
@@ -2022,6 +2040,17 @@ module Aws::ApiGatewayV2
|
|
2022
2040
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
2023
2041
|
end)
|
2024
2042
|
|
2043
|
+
api.add_operation(:export_api, Seahorse::Model::Operation.new.tap do |o|
|
2044
|
+
o.name = "ExportApi"
|
2045
|
+
o.http_method = "GET"
|
2046
|
+
o.http_request_uri = "/v2/apis/{apiId}/exports/{specification}"
|
2047
|
+
o.input = Shapes::ShapeRef.new(shape: ExportApiRequest)
|
2048
|
+
o.output = Shapes::ShapeRef.new(shape: ExportApiResponse)
|
2049
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
2050
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
2051
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
2052
|
+
end)
|
2053
|
+
|
2025
2054
|
api.add_operation(:get_api, Seahorse::Model::Operation.new.tap do |o|
|
2026
2055
|
o.name = "GetApi"
|
2027
2056
|
o.http_method = "GET"
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -13,6 +15,7 @@ module Aws::ApiGatewayV2
|
|
13
15
|
#
|
14
16
|
class AccessDeniedException < Struct.new(
|
15
17
|
:message)
|
18
|
+
SENSITIVE = []
|
16
19
|
include Aws::Structure
|
17
20
|
end
|
18
21
|
|
@@ -39,6 +42,7 @@ module Aws::ApiGatewayV2
|
|
39
42
|
class AccessLogSettings < Struct.new(
|
40
43
|
:destination_arn,
|
41
44
|
:format)
|
45
|
+
SENSITIVE = []
|
42
46
|
include Aws::Structure
|
43
47
|
end
|
44
48
|
|
@@ -130,6 +134,7 @@ module Aws::ApiGatewayV2
|
|
130
134
|
:tags,
|
131
135
|
:version,
|
132
136
|
:warnings)
|
137
|
+
SENSITIVE = []
|
133
138
|
include Aws::Structure
|
134
139
|
end
|
135
140
|
|
@@ -156,6 +161,7 @@ module Aws::ApiGatewayV2
|
|
156
161
|
:api_mapping_id,
|
157
162
|
:api_mapping_key,
|
158
163
|
:stage)
|
164
|
+
SENSITIVE = []
|
159
165
|
include Aws::Structure
|
160
166
|
end
|
161
167
|
|
@@ -173,6 +179,7 @@ module Aws::ApiGatewayV2
|
|
173
179
|
class ApiMappings < Struct.new(
|
174
180
|
:items,
|
175
181
|
:next_token)
|
182
|
+
SENSITIVE = []
|
176
183
|
include Aws::Structure
|
177
184
|
end
|
178
185
|
|
@@ -190,6 +197,7 @@ module Aws::ApiGatewayV2
|
|
190
197
|
class Apis < Struct.new(
|
191
198
|
:items,
|
192
199
|
:next_token)
|
200
|
+
SENSITIVE = []
|
193
201
|
include Aws::Structure
|
194
202
|
end
|
195
203
|
|
@@ -222,16 +230,10 @@ module Aws::ApiGatewayV2
|
|
222
230
|
# The authorizer's Uniform Resource Identifier (URI). ForREQUEST
|
223
231
|
# authorizers, this must be a well-formed Lambda function URI, for
|
224
232
|
# example,
|
225
|
-
# arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2
|
226
|
-
#
|
227
|
-
#
|
228
|
-
#
|
229
|
-
# /invocations. In general, the URI has this form:
|
230
|
-
# arn:aws:apigateway:<replaceable>\{region\}</replaceable>
|
231
|
-
#
|
232
|
-
# \:lambda:path/<replaceable>\{service_api\}</replaceable>
|
233
|
-
#
|
234
|
-
# , where <replaceable />
|
233
|
+
# 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.
|
234
|
+
# In general, the URI has this form:
|
235
|
+
# arn:aws:apigateway:*\\\{region\\}*\:lambda:path/*\\\{service\_api\\}*
|
236
|
+
# , where <replaceable />
|
235
237
|
#
|
236
238
|
# \\\{region\\} is the same as the region hosting the Lambda function,
|
237
239
|
# path indicates that the remaining substring in the URI should be
|
@@ -287,6 +289,7 @@ module Aws::ApiGatewayV2
|
|
287
289
|
:identity_validation_expression,
|
288
290
|
:jwt_configuration,
|
289
291
|
:name)
|
292
|
+
SENSITIVE = []
|
290
293
|
include Aws::Structure
|
291
294
|
end
|
292
295
|
|
@@ -304,6 +307,7 @@ module Aws::ApiGatewayV2
|
|
304
307
|
class Authorizers < Struct.new(
|
305
308
|
:items,
|
306
309
|
:next_token)
|
310
|
+
SENSITIVE = []
|
307
311
|
include Aws::Structure
|
308
312
|
end
|
309
313
|
|
@@ -316,6 +320,7 @@ module Aws::ApiGatewayV2
|
|
316
320
|
#
|
317
321
|
class BadRequestException < Struct.new(
|
318
322
|
:message)
|
323
|
+
SENSITIVE = []
|
319
324
|
include Aws::Structure
|
320
325
|
end
|
321
326
|
|
@@ -330,6 +335,7 @@ module Aws::ApiGatewayV2
|
|
330
335
|
#
|
331
336
|
class ConflictException < Struct.new(
|
332
337
|
:message)
|
338
|
+
SENSITIVE = []
|
333
339
|
include Aws::Structure
|
334
340
|
end
|
335
341
|
|
@@ -389,6 +395,7 @@ module Aws::ApiGatewayV2
|
|
389
395
|
:allow_origins,
|
390
396
|
:expose_headers,
|
391
397
|
:max_age)
|
398
|
+
SENSITIVE = []
|
392
399
|
include Aws::Structure
|
393
400
|
end
|
394
401
|
|
@@ -488,6 +495,7 @@ module Aws::ApiGatewayV2
|
|
488
495
|
:tags,
|
489
496
|
:target,
|
490
497
|
:version)
|
498
|
+
SENSITIVE = []
|
491
499
|
include Aws::Structure
|
492
500
|
end
|
493
501
|
|
@@ -509,6 +517,7 @@ module Aws::ApiGatewayV2
|
|
509
517
|
:api_id,
|
510
518
|
:api_mapping_key,
|
511
519
|
:stage)
|
520
|
+
SENSITIVE = []
|
512
521
|
include Aws::Structure
|
513
522
|
end
|
514
523
|
|
@@ -549,6 +558,7 @@ module Aws::ApiGatewayV2
|
|
549
558
|
:api_mapping_key,
|
550
559
|
:domain_name,
|
551
560
|
:stage)
|
561
|
+
SENSITIVE = []
|
552
562
|
include Aws::Structure
|
553
563
|
end
|
554
564
|
|
@@ -580,6 +590,7 @@ module Aws::ApiGatewayV2
|
|
580
590
|
:api_mapping_id,
|
581
591
|
:api_mapping_key,
|
582
592
|
:stage)
|
593
|
+
SENSITIVE = []
|
583
594
|
include Aws::Structure
|
584
595
|
end
|
585
596
|
|
@@ -692,6 +703,7 @@ module Aws::ApiGatewayV2
|
|
692
703
|
:tags,
|
693
704
|
:target,
|
694
705
|
:version)
|
706
|
+
SENSITIVE = []
|
695
707
|
include Aws::Structure
|
696
708
|
end
|
697
709
|
|
@@ -776,6 +788,7 @@ module Aws::ApiGatewayV2
|
|
776
788
|
:tags,
|
777
789
|
:version,
|
778
790
|
:warnings)
|
791
|
+
SENSITIVE = []
|
779
792
|
include Aws::Structure
|
780
793
|
end
|
781
794
|
|
@@ -804,16 +817,10 @@ module Aws::ApiGatewayV2
|
|
804
817
|
# The authorizer's Uniform Resource Identifier (URI). For REQUEST
|
805
818
|
# authorizers, this must be a well-formed Lambda function URI, for
|
806
819
|
# example,
|
807
|
-
# arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2
|
808
|
-
#
|
809
|
-
#
|
810
|
-
#
|
811
|
-
# /invocations. In general, the URI has this form:
|
812
|
-
# arn:aws:apigateway:<replaceable>\{region\}</replaceable>
|
813
|
-
#
|
814
|
-
# \:lambda:path/<replaceable>\{service_api\}</replaceable>
|
815
|
-
#
|
816
|
-
# , where <replaceable />
|
820
|
+
# 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.
|
821
|
+
# In general, the URI has this form:
|
822
|
+
# arn:aws:apigateway:*\\\{region\\}*\:lambda:path/*\\\{service\_api\\}*
|
823
|
+
# , where <replaceable />
|
817
824
|
#
|
818
825
|
# \\\{region\\} is the same as the region hosting the Lambda function,
|
819
826
|
# path indicates that the remaining substring in the URI should be
|
@@ -868,6 +875,7 @@ module Aws::ApiGatewayV2
|
|
868
875
|
:identity_validation_expression,
|
869
876
|
:jwt_configuration,
|
870
877
|
:name)
|
878
|
+
SENSITIVE = []
|
871
879
|
include Aws::Structure
|
872
880
|
end
|
873
881
|
|
@@ -952,6 +960,7 @@ module Aws::ApiGatewayV2
|
|
952
960
|
:identity_validation_expression,
|
953
961
|
:jwt_configuration,
|
954
962
|
:name)
|
963
|
+
SENSITIVE = []
|
955
964
|
include Aws::Structure
|
956
965
|
end
|
957
966
|
|
@@ -1019,6 +1028,7 @@ module Aws::ApiGatewayV2
|
|
1019
1028
|
:identity_validation_expression,
|
1020
1029
|
:jwt_configuration,
|
1021
1030
|
:name)
|
1031
|
+
SENSITIVE = []
|
1022
1032
|
include Aws::Structure
|
1023
1033
|
end
|
1024
1034
|
|
@@ -1036,6 +1046,7 @@ module Aws::ApiGatewayV2
|
|
1036
1046
|
class CreateDeploymentInput < Struct.new(
|
1037
1047
|
:description,
|
1038
1048
|
:stage_name)
|
1049
|
+
SENSITIVE = []
|
1039
1050
|
include Aws::Structure
|
1040
1051
|
end
|
1041
1052
|
|
@@ -1063,6 +1074,7 @@ module Aws::ApiGatewayV2
|
|
1063
1074
|
:api_id,
|
1064
1075
|
:description,
|
1065
1076
|
:stage_name)
|
1077
|
+
SENSITIVE = []
|
1066
1078
|
include Aws::Structure
|
1067
1079
|
end
|
1068
1080
|
|
@@ -1094,6 +1106,7 @@ module Aws::ApiGatewayV2
|
|
1094
1106
|
:deployment_status,
|
1095
1107
|
:deployment_status_message,
|
1096
1108
|
:description)
|
1109
|
+
SENSITIVE = []
|
1097
1110
|
include Aws::Structure
|
1098
1111
|
end
|
1099
1112
|
|
@@ -1115,6 +1128,7 @@ module Aws::ApiGatewayV2
|
|
1115
1128
|
:domain_name,
|
1116
1129
|
:domain_name_configurations,
|
1117
1130
|
:tags)
|
1131
|
+
SENSITIVE = []
|
1118
1132
|
include Aws::Structure
|
1119
1133
|
end
|
1120
1134
|
|
@@ -1157,6 +1171,7 @@ module Aws::ApiGatewayV2
|
|
1157
1171
|
:domain_name,
|
1158
1172
|
:domain_name_configurations,
|
1159
1173
|
:tags)
|
1174
|
+
SENSITIVE = []
|
1160
1175
|
include Aws::Structure
|
1161
1176
|
end
|
1162
1177
|
|
@@ -1186,6 +1201,7 @@ module Aws::ApiGatewayV2
|
|
1186
1201
|
:domain_name,
|
1187
1202
|
:domain_name_configurations,
|
1188
1203
|
:tags)
|
1204
|
+
SENSITIVE = []
|
1189
1205
|
include Aws::Structure
|
1190
1206
|
end
|
1191
1207
|
|
@@ -1280,7 +1296,7 @@ module Aws::ApiGatewayV2
|
|
1280
1296
|
#
|
1281
1297
|
#
|
1282
1298
|
#
|
1283
|
-
# [1]: https://
|
1299
|
+
# [1]: https://docs.aws.amazon.com/cloud-map/latest/api/API_DiscoverInstances.html
|
1284
1300
|
# @return [String]
|
1285
1301
|
#
|
1286
1302
|
# @!attribute [rw] passthrough_behavior
|
@@ -1314,16 +1330,9 @@ module Aws::ApiGatewayV2
|
|
1314
1330
|
# parameter value or static value that must be enclosed within single
|
1315
1331
|
# quotes and pre-encoded as required by the backend. The method
|
1316
1332
|
# request parameter value must match the pattern of
|
1317
|
-
# method.request
|
1318
|
-
#
|
1319
|
-
#
|
1320
|
-
#
|
1321
|
-
# , where <replaceable>\{location\}</replaceable>
|
1322
|
-
#
|
1323
|
-
# is querystring, path, or header; and
|
1324
|
-
# <replaceable>\{name\}</replaceable>
|
1325
|
-
#
|
1326
|
-
# must be a valid and unique method request parameter name. Supported
|
1333
|
+
# method.request.*\\\{location\\}*.*\\\{name\\}* , where
|
1334
|
+
# *\\\{location\\}* is querystring, path, or header; and *\\\{name\\}*
|
1335
|
+
# must be a valid and unique method request parameter name. Supported
|
1327
1336
|
# only for WebSocket APIs.
|
1328
1337
|
# @return [Hash<String,String>]
|
1329
1338
|
#
|
@@ -1368,6 +1377,7 @@ module Aws::ApiGatewayV2
|
|
1368
1377
|
:template_selection_expression,
|
1369
1378
|
:timeout_in_millis,
|
1370
1379
|
:tls_config)
|
1380
|
+
SENSITIVE = []
|
1371
1381
|
include Aws::Structure
|
1372
1382
|
end
|
1373
1383
|
|
@@ -1501,6 +1511,7 @@ module Aws::ApiGatewayV2
|
|
1501
1511
|
:template_selection_expression,
|
1502
1512
|
:timeout_in_millis,
|
1503
1513
|
:tls_config)
|
1514
|
+
SENSITIVE = []
|
1504
1515
|
include Aws::Structure
|
1505
1516
|
end
|
1506
1517
|
|
@@ -1621,6 +1632,7 @@ module Aws::ApiGatewayV2
|
|
1621
1632
|
:template_selection_expression,
|
1622
1633
|
:timeout_in_millis,
|
1623
1634
|
:tls_config)
|
1635
|
+
SENSITIVE = []
|
1624
1636
|
include Aws::Structure
|
1625
1637
|
end
|
1626
1638
|
|
@@ -1681,6 +1693,7 @@ module Aws::ApiGatewayV2
|
|
1681
1693
|
:response_parameters,
|
1682
1694
|
:response_templates,
|
1683
1695
|
:template_selection_expression)
|
1696
|
+
SENSITIVE = []
|
1684
1697
|
include Aws::Structure
|
1685
1698
|
end
|
1686
1699
|
|
@@ -1761,6 +1774,7 @@ module Aws::ApiGatewayV2
|
|
1761
1774
|
:response_parameters,
|
1762
1775
|
:response_templates,
|
1763
1776
|
:template_selection_expression)
|
1777
|
+
SENSITIVE = []
|
1764
1778
|
include Aws::Structure
|
1765
1779
|
end
|
1766
1780
|
|
@@ -1821,6 +1835,7 @@ module Aws::ApiGatewayV2
|
|
1821
1835
|
:response_parameters,
|
1822
1836
|
:response_templates,
|
1823
1837
|
:template_selection_expression)
|
1838
|
+
SENSITIVE = []
|
1824
1839
|
include Aws::Structure
|
1825
1840
|
end
|
1826
1841
|
|
@@ -1848,6 +1863,7 @@ module Aws::ApiGatewayV2
|
|
1848
1863
|
:description,
|
1849
1864
|
:name,
|
1850
1865
|
:schema)
|
1866
|
+
SENSITIVE = []
|
1851
1867
|
include Aws::Structure
|
1852
1868
|
end
|
1853
1869
|
|
@@ -1887,6 +1903,7 @@ module Aws::ApiGatewayV2
|
|
1887
1903
|
:description,
|
1888
1904
|
:name,
|
1889
1905
|
:schema)
|
1906
|
+
SENSITIVE = []
|
1890
1907
|
include Aws::Structure
|
1891
1908
|
end
|
1892
1909
|
|
@@ -1916,6 +1933,7 @@ module Aws::ApiGatewayV2
|
|
1916
1933
|
:model_id,
|
1917
1934
|
:name,
|
1918
1935
|
:schema)
|
1936
|
+
SENSITIVE = []
|
1919
1937
|
include Aws::Structure
|
1920
1938
|
end
|
1921
1939
|
|
@@ -1987,6 +2005,7 @@ module Aws::ApiGatewayV2
|
|
1987
2005
|
:route_key,
|
1988
2006
|
:route_response_selection_expression,
|
1989
2007
|
:target)
|
2008
|
+
SENSITIVE = []
|
1990
2009
|
include Aws::Structure
|
1991
2010
|
end
|
1992
2011
|
|
@@ -2101,6 +2120,7 @@ module Aws::ApiGatewayV2
|
|
2101
2120
|
:route_key,
|
2102
2121
|
:route_response_selection_expression,
|
2103
2122
|
:target)
|
2123
|
+
SENSITIVE = []
|
2104
2124
|
include Aws::Structure
|
2105
2125
|
end
|
2106
2126
|
|
@@ -2196,6 +2216,7 @@ module Aws::ApiGatewayV2
|
|
2196
2216
|
:route_key,
|
2197
2217
|
:route_response_selection_expression,
|
2198
2218
|
:target)
|
2219
|
+
SENSITIVE = []
|
2199
2220
|
include Aws::Structure
|
2200
2221
|
end
|
2201
2222
|
|
@@ -2223,6 +2244,7 @@ module Aws::ApiGatewayV2
|
|
2223
2244
|
:response_models,
|
2224
2245
|
:response_parameters,
|
2225
2246
|
:route_response_key)
|
2247
|
+
SENSITIVE = []
|
2226
2248
|
include Aws::Structure
|
2227
2249
|
end
|
2228
2250
|
|
@@ -2285,6 +2307,7 @@ module Aws::ApiGatewayV2
|
|
2285
2307
|
:response_parameters,
|
2286
2308
|
:route_id,
|
2287
2309
|
:route_response_key)
|
2310
|
+
SENSITIVE = []
|
2288
2311
|
include Aws::Structure
|
2289
2312
|
end
|
2290
2313
|
|
@@ -2326,6 +2349,7 @@ module Aws::ApiGatewayV2
|
|
2326
2349
|
:response_parameters,
|
2327
2350
|
:route_response_id,
|
2328
2351
|
:route_response_key)
|
2352
|
+
SENSITIVE = []
|
2329
2353
|
include Aws::Structure
|
2330
2354
|
end
|
2331
2355
|
|
@@ -2387,6 +2411,7 @@ module Aws::ApiGatewayV2
|
|
2387
2411
|
:stage_name,
|
2388
2412
|
:stage_variables,
|
2389
2413
|
:tags)
|
2414
|
+
SENSITIVE = []
|
2390
2415
|
include Aws::Structure
|
2391
2416
|
end
|
2392
2417
|
|
@@ -2482,6 +2507,7 @@ module Aws::ApiGatewayV2
|
|
2482
2507
|
:stage_name,
|
2483
2508
|
:stage_variables,
|
2484
2509
|
:tags)
|
2510
|
+
SENSITIVE = []
|
2485
2511
|
include Aws::Structure
|
2486
2512
|
end
|
2487
2513
|
|
@@ -2551,6 +2577,7 @@ module Aws::ApiGatewayV2
|
|
2551
2577
|
:stage_name,
|
2552
2578
|
:stage_variables,
|
2553
2579
|
:tags)
|
2580
|
+
SENSITIVE = []
|
2554
2581
|
include Aws::Structure
|
2555
2582
|
end
|
2556
2583
|
|
@@ -2577,6 +2604,7 @@ module Aws::ApiGatewayV2
|
|
2577
2604
|
:security_group_ids,
|
2578
2605
|
:subnet_ids,
|
2579
2606
|
:tags)
|
2607
|
+
SENSITIVE = []
|
2580
2608
|
include Aws::Structure
|
2581
2609
|
end
|
2582
2610
|
|
@@ -2613,6 +2641,7 @@ module Aws::ApiGatewayV2
|
|
2613
2641
|
:security_group_ids,
|
2614
2642
|
:subnet_ids,
|
2615
2643
|
:tags)
|
2644
|
+
SENSITIVE = []
|
2616
2645
|
include Aws::Structure
|
2617
2646
|
end
|
2618
2647
|
|
@@ -2661,6 +2690,7 @@ module Aws::ApiGatewayV2
|
|
2661
2690
|
:vpc_link_status,
|
2662
2691
|
:vpc_link_status_message,
|
2663
2692
|
:vpc_link_version)
|
2693
|
+
SENSITIVE = []
|
2664
2694
|
include Aws::Structure
|
2665
2695
|
end
|
2666
2696
|
|
@@ -2681,6 +2711,7 @@ module Aws::ApiGatewayV2
|
|
2681
2711
|
class DeleteAccessLogSettingsRequest < Struct.new(
|
2682
2712
|
:api_id,
|
2683
2713
|
:stage_name)
|
2714
|
+
SENSITIVE = []
|
2684
2715
|
include Aws::Structure
|
2685
2716
|
end
|
2686
2717
|
|
@@ -2701,6 +2732,7 @@ module Aws::ApiGatewayV2
|
|
2701
2732
|
class DeleteApiMappingRequest < Struct.new(
|
2702
2733
|
:api_mapping_id,
|
2703
2734
|
:domain_name)
|
2735
|
+
SENSITIVE = []
|
2704
2736
|
include Aws::Structure
|
2705
2737
|
end
|
2706
2738
|
|
@@ -2716,6 +2748,7 @@ module Aws::ApiGatewayV2
|
|
2716
2748
|
#
|
2717
2749
|
class DeleteApiRequest < Struct.new(
|
2718
2750
|
:api_id)
|
2751
|
+
SENSITIVE = []
|
2719
2752
|
include Aws::Structure
|
2720
2753
|
end
|
2721
2754
|
|
@@ -2736,6 +2769,7 @@ module Aws::ApiGatewayV2
|
|
2736
2769
|
class DeleteAuthorizerRequest < Struct.new(
|
2737
2770
|
:api_id,
|
2738
2771
|
:authorizer_id)
|
2772
|
+
SENSITIVE = []
|
2739
2773
|
include Aws::Structure
|
2740
2774
|
end
|
2741
2775
|
|
@@ -2751,6 +2785,7 @@ module Aws::ApiGatewayV2
|
|
2751
2785
|
#
|
2752
2786
|
class DeleteCorsConfigurationRequest < Struct.new(
|
2753
2787
|
:api_id)
|
2788
|
+
SENSITIVE = []
|
2754
2789
|
include Aws::Structure
|
2755
2790
|
end
|
2756
2791
|
|
@@ -2771,6 +2806,7 @@ module Aws::ApiGatewayV2
|
|
2771
2806
|
class DeleteDeploymentRequest < Struct.new(
|
2772
2807
|
:api_id,
|
2773
2808
|
:deployment_id)
|
2809
|
+
SENSITIVE = []
|
2774
2810
|
include Aws::Structure
|
2775
2811
|
end
|
2776
2812
|
|
@@ -2786,6 +2822,7 @@ module Aws::ApiGatewayV2
|
|
2786
2822
|
#
|
2787
2823
|
class DeleteDomainNameRequest < Struct.new(
|
2788
2824
|
:domain_name)
|
2825
|
+
SENSITIVE = []
|
2789
2826
|
include Aws::Structure
|
2790
2827
|
end
|
2791
2828
|
|
@@ -2806,6 +2843,7 @@ module Aws::ApiGatewayV2
|
|
2806
2843
|
class DeleteIntegrationRequest < Struct.new(
|
2807
2844
|
:api_id,
|
2808
2845
|
:integration_id)
|
2846
|
+
SENSITIVE = []
|
2809
2847
|
include Aws::Structure
|
2810
2848
|
end
|
2811
2849
|
|
@@ -2831,6 +2869,7 @@ module Aws::ApiGatewayV2
|
|
2831
2869
|
:api_id,
|
2832
2870
|
:integration_id,
|
2833
2871
|
:integration_response_id)
|
2872
|
+
SENSITIVE = []
|
2834
2873
|
include Aws::Structure
|
2835
2874
|
end
|
2836
2875
|
|
@@ -2851,6 +2890,7 @@ module Aws::ApiGatewayV2
|
|
2851
2890
|
class DeleteModelRequest < Struct.new(
|
2852
2891
|
:api_id,
|
2853
2892
|
:model_id)
|
2893
|
+
SENSITIVE = []
|
2854
2894
|
include Aws::Structure
|
2855
2895
|
end
|
2856
2896
|
|
@@ -2871,6 +2911,7 @@ module Aws::ApiGatewayV2
|
|
2871
2911
|
class DeleteRouteRequest < Struct.new(
|
2872
2912
|
:api_id,
|
2873
2913
|
:route_id)
|
2914
|
+
SENSITIVE = []
|
2874
2915
|
include Aws::Structure
|
2875
2916
|
end
|
2876
2917
|
|
@@ -2896,6 +2937,7 @@ module Aws::ApiGatewayV2
|
|
2896
2937
|
:api_id,
|
2897
2938
|
:request_parameter_key,
|
2898
2939
|
:route_id)
|
2940
|
+
SENSITIVE = []
|
2899
2941
|
include Aws::Structure
|
2900
2942
|
end
|
2901
2943
|
|
@@ -2921,6 +2963,7 @@ module Aws::ApiGatewayV2
|
|
2921
2963
|
:api_id,
|
2922
2964
|
:route_id,
|
2923
2965
|
:route_response_id)
|
2966
|
+
SENSITIVE = []
|
2924
2967
|
include Aws::Structure
|
2925
2968
|
end
|
2926
2969
|
|
@@ -2946,6 +2989,7 @@ module Aws::ApiGatewayV2
|
|
2946
2989
|
:api_id,
|
2947
2990
|
:route_key,
|
2948
2991
|
:stage_name)
|
2992
|
+
SENSITIVE = []
|
2949
2993
|
include Aws::Structure
|
2950
2994
|
end
|
2951
2995
|
|
@@ -2966,6 +3010,7 @@ module Aws::ApiGatewayV2
|
|
2966
3010
|
class DeleteStageRequest < Struct.new(
|
2967
3011
|
:api_id,
|
2968
3012
|
:stage_name)
|
3013
|
+
SENSITIVE = []
|
2969
3014
|
include Aws::Structure
|
2970
3015
|
end
|
2971
3016
|
|
@@ -2981,6 +3026,7 @@ module Aws::ApiGatewayV2
|
|
2981
3026
|
#
|
2982
3027
|
class DeleteVpcLinkRequest < Struct.new(
|
2983
3028
|
:vpc_link_id)
|
3029
|
+
SENSITIVE = []
|
2984
3030
|
include Aws::Structure
|
2985
3031
|
end
|
2986
3032
|
|
@@ -3021,6 +3067,7 @@ module Aws::ApiGatewayV2
|
|
3021
3067
|
:deployment_status,
|
3022
3068
|
:deployment_status_message,
|
3023
3069
|
:description)
|
3070
|
+
SENSITIVE = []
|
3024
3071
|
include Aws::Structure
|
3025
3072
|
end
|
3026
3073
|
|
@@ -3041,6 +3088,7 @@ module Aws::ApiGatewayV2
|
|
3041
3088
|
class Deployments < Struct.new(
|
3042
3089
|
:items,
|
3043
3090
|
:next_token)
|
3091
|
+
SENSITIVE = []
|
3044
3092
|
include Aws::Structure
|
3045
3093
|
end
|
3046
3094
|
|
@@ -3067,6 +3115,7 @@ module Aws::ApiGatewayV2
|
|
3067
3115
|
:domain_name,
|
3068
3116
|
:domain_name_configurations,
|
3069
3117
|
:tags)
|
3118
|
+
SENSITIVE = []
|
3070
3119
|
include Aws::Structure
|
3071
3120
|
end
|
3072
3121
|
|
@@ -3142,6 +3191,7 @@ module Aws::ApiGatewayV2
|
|
3142
3191
|
:endpoint_type,
|
3143
3192
|
:hosted_zone_id,
|
3144
3193
|
:security_policy)
|
3194
|
+
SENSITIVE = []
|
3145
3195
|
include Aws::Structure
|
3146
3196
|
end
|
3147
3197
|
|
@@ -3159,6 +3209,60 @@ module Aws::ApiGatewayV2
|
|
3159
3209
|
class DomainNames < Struct.new(
|
3160
3210
|
:items,
|
3161
3211
|
:next_token)
|
3212
|
+
SENSITIVE = []
|
3213
|
+
include Aws::Structure
|
3214
|
+
end
|
3215
|
+
|
3216
|
+
# @note When making an API call, you may pass ExportApiRequest
|
3217
|
+
# data as a hash:
|
3218
|
+
#
|
3219
|
+
# {
|
3220
|
+
# api_id: "__string", # required
|
3221
|
+
# export_version: "__string",
|
3222
|
+
# include_extensions: false,
|
3223
|
+
# output_type: "__string", # required
|
3224
|
+
# specification: "__string", # required
|
3225
|
+
# stage_name: "__string",
|
3226
|
+
# }
|
3227
|
+
#
|
3228
|
+
# @!attribute [rw] api_id
|
3229
|
+
# @return [String]
|
3230
|
+
#
|
3231
|
+
# @!attribute [rw] export_version
|
3232
|
+
# @return [String]
|
3233
|
+
#
|
3234
|
+
# @!attribute [rw] include_extensions
|
3235
|
+
# @return [Boolean]
|
3236
|
+
#
|
3237
|
+
# @!attribute [rw] output_type
|
3238
|
+
# @return [String]
|
3239
|
+
#
|
3240
|
+
# @!attribute [rw] specification
|
3241
|
+
# @return [String]
|
3242
|
+
#
|
3243
|
+
# @!attribute [rw] stage_name
|
3244
|
+
# @return [String]
|
3245
|
+
#
|
3246
|
+
class ExportApiRequest < Struct.new(
|
3247
|
+
:api_id,
|
3248
|
+
:export_version,
|
3249
|
+
:include_extensions,
|
3250
|
+
:output_type,
|
3251
|
+
:specification,
|
3252
|
+
:stage_name)
|
3253
|
+
SENSITIVE = []
|
3254
|
+
include Aws::Structure
|
3255
|
+
end
|
3256
|
+
|
3257
|
+
# @!attribute [rw] body
|
3258
|
+
# Represents an exported definition of an API in a particular output
|
3259
|
+
# format, for example, YAML. The API is serialized to the requested
|
3260
|
+
# specification, for example, OpenAPI 3.0.
|
3261
|
+
# @return [String]
|
3262
|
+
#
|
3263
|
+
class ExportApiResponse < Struct.new(
|
3264
|
+
:body)
|
3265
|
+
SENSITIVE = []
|
3162
3266
|
include Aws::Structure
|
3163
3267
|
end
|
3164
3268
|
|
@@ -3179,6 +3283,7 @@ module Aws::ApiGatewayV2
|
|
3179
3283
|
class GetApiMappingRequest < Struct.new(
|
3180
3284
|
:api_mapping_id,
|
3181
3285
|
:domain_name)
|
3286
|
+
SENSITIVE = []
|
3182
3287
|
include Aws::Structure
|
3183
3288
|
end
|
3184
3289
|
|
@@ -3210,6 +3315,7 @@ module Aws::ApiGatewayV2
|
|
3210
3315
|
:api_mapping_id,
|
3211
3316
|
:api_mapping_key,
|
3212
3317
|
:stage)
|
3318
|
+
SENSITIVE = []
|
3213
3319
|
include Aws::Structure
|
3214
3320
|
end
|
3215
3321
|
|
@@ -3235,6 +3341,7 @@ module Aws::ApiGatewayV2
|
|
3235
3341
|
:domain_name,
|
3236
3342
|
:max_results,
|
3237
3343
|
:next_token)
|
3344
|
+
SENSITIVE = []
|
3238
3345
|
include Aws::Structure
|
3239
3346
|
end
|
3240
3347
|
|
@@ -3249,6 +3356,7 @@ module Aws::ApiGatewayV2
|
|
3249
3356
|
class GetApiMappingsResponse < Struct.new(
|
3250
3357
|
:items,
|
3251
3358
|
:next_token)
|
3359
|
+
SENSITIVE = []
|
3252
3360
|
include Aws::Structure
|
3253
3361
|
end
|
3254
3362
|
|
@@ -3264,6 +3372,7 @@ module Aws::ApiGatewayV2
|
|
3264
3372
|
#
|
3265
3373
|
class GetApiRequest < Struct.new(
|
3266
3374
|
:api_id)
|
3375
|
+
SENSITIVE = []
|
3267
3376
|
include Aws::Structure
|
3268
3377
|
end
|
3269
3378
|
|
@@ -3348,6 +3457,7 @@ module Aws::ApiGatewayV2
|
|
3348
3457
|
:tags,
|
3349
3458
|
:version,
|
3350
3459
|
:warnings)
|
3460
|
+
SENSITIVE = []
|
3351
3461
|
include Aws::Structure
|
3352
3462
|
end
|
3353
3463
|
|
@@ -3368,6 +3478,7 @@ module Aws::ApiGatewayV2
|
|
3368
3478
|
class GetApisRequest < Struct.new(
|
3369
3479
|
:max_results,
|
3370
3480
|
:next_token)
|
3481
|
+
SENSITIVE = []
|
3371
3482
|
include Aws::Structure
|
3372
3483
|
end
|
3373
3484
|
|
@@ -3382,6 +3493,7 @@ module Aws::ApiGatewayV2
|
|
3382
3493
|
class GetApisResponse < Struct.new(
|
3383
3494
|
:items,
|
3384
3495
|
:next_token)
|
3496
|
+
SENSITIVE = []
|
3385
3497
|
include Aws::Structure
|
3386
3498
|
end
|
3387
3499
|
|
@@ -3402,6 +3514,7 @@ module Aws::ApiGatewayV2
|
|
3402
3514
|
class GetAuthorizerRequest < Struct.new(
|
3403
3515
|
:api_id,
|
3404
3516
|
:authorizer_id)
|
3517
|
+
SENSITIVE = []
|
3405
3518
|
include Aws::Structure
|
3406
3519
|
end
|
3407
3520
|
|
@@ -3469,6 +3582,7 @@ module Aws::ApiGatewayV2
|
|
3469
3582
|
:identity_validation_expression,
|
3470
3583
|
:jwt_configuration,
|
3471
3584
|
:name)
|
3585
|
+
SENSITIVE = []
|
3472
3586
|
include Aws::Structure
|
3473
3587
|
end
|
3474
3588
|
|
@@ -3494,6 +3608,7 @@ module Aws::ApiGatewayV2
|
|
3494
3608
|
:api_id,
|
3495
3609
|
:max_results,
|
3496
3610
|
:next_token)
|
3611
|
+
SENSITIVE = []
|
3497
3612
|
include Aws::Structure
|
3498
3613
|
end
|
3499
3614
|
|
@@ -3508,6 +3623,7 @@ module Aws::ApiGatewayV2
|
|
3508
3623
|
class GetAuthorizersResponse < Struct.new(
|
3509
3624
|
:items,
|
3510
3625
|
:next_token)
|
3626
|
+
SENSITIVE = []
|
3511
3627
|
include Aws::Structure
|
3512
3628
|
end
|
3513
3629
|
|
@@ -3528,6 +3644,7 @@ module Aws::ApiGatewayV2
|
|
3528
3644
|
class GetDeploymentRequest < Struct.new(
|
3529
3645
|
:api_id,
|
3530
3646
|
:deployment_id)
|
3647
|
+
SENSITIVE = []
|
3531
3648
|
include Aws::Structure
|
3532
3649
|
end
|
3533
3650
|
|
@@ -3559,6 +3676,7 @@ module Aws::ApiGatewayV2
|
|
3559
3676
|
:deployment_status,
|
3560
3677
|
:deployment_status_message,
|
3561
3678
|
:description)
|
3679
|
+
SENSITIVE = []
|
3562
3680
|
include Aws::Structure
|
3563
3681
|
end
|
3564
3682
|
|
@@ -3584,6 +3702,7 @@ module Aws::ApiGatewayV2
|
|
3584
3702
|
:api_id,
|
3585
3703
|
:max_results,
|
3586
3704
|
:next_token)
|
3705
|
+
SENSITIVE = []
|
3587
3706
|
include Aws::Structure
|
3588
3707
|
end
|
3589
3708
|
|
@@ -3598,6 +3717,7 @@ module Aws::ApiGatewayV2
|
|
3598
3717
|
class GetDeploymentsResponse < Struct.new(
|
3599
3718
|
:items,
|
3600
3719
|
:next_token)
|
3720
|
+
SENSITIVE = []
|
3601
3721
|
include Aws::Structure
|
3602
3722
|
end
|
3603
3723
|
|
@@ -3613,6 +3733,7 @@ module Aws::ApiGatewayV2
|
|
3613
3733
|
#
|
3614
3734
|
class GetDomainNameRequest < Struct.new(
|
3615
3735
|
:domain_name)
|
3736
|
+
SENSITIVE = []
|
3616
3737
|
include Aws::Structure
|
3617
3738
|
end
|
3618
3739
|
|
@@ -3642,6 +3763,7 @@ module Aws::ApiGatewayV2
|
|
3642
3763
|
:domain_name,
|
3643
3764
|
:domain_name_configurations,
|
3644
3765
|
:tags)
|
3766
|
+
SENSITIVE = []
|
3645
3767
|
include Aws::Structure
|
3646
3768
|
end
|
3647
3769
|
|
@@ -3662,6 +3784,7 @@ module Aws::ApiGatewayV2
|
|
3662
3784
|
class GetDomainNamesRequest < Struct.new(
|
3663
3785
|
:max_results,
|
3664
3786
|
:next_token)
|
3787
|
+
SENSITIVE = []
|
3665
3788
|
include Aws::Structure
|
3666
3789
|
end
|
3667
3790
|
|
@@ -3676,6 +3799,7 @@ module Aws::ApiGatewayV2
|
|
3676
3799
|
class GetDomainNamesResponse < Struct.new(
|
3677
3800
|
:items,
|
3678
3801
|
:next_token)
|
3802
|
+
SENSITIVE = []
|
3679
3803
|
include Aws::Structure
|
3680
3804
|
end
|
3681
3805
|
|
@@ -3696,6 +3820,7 @@ module Aws::ApiGatewayV2
|
|
3696
3820
|
class GetIntegrationRequest < Struct.new(
|
3697
3821
|
:api_id,
|
3698
3822
|
:integration_id)
|
3823
|
+
SENSITIVE = []
|
3699
3824
|
include Aws::Structure
|
3700
3825
|
end
|
3701
3826
|
|
@@ -3816,6 +3941,7 @@ module Aws::ApiGatewayV2
|
|
3816
3941
|
:template_selection_expression,
|
3817
3942
|
:timeout_in_millis,
|
3818
3943
|
:tls_config)
|
3944
|
+
SENSITIVE = []
|
3819
3945
|
include Aws::Structure
|
3820
3946
|
end
|
3821
3947
|
|
@@ -3841,6 +3967,7 @@ module Aws::ApiGatewayV2
|
|
3841
3967
|
:api_id,
|
3842
3968
|
:integration_id,
|
3843
3969
|
:integration_response_id)
|
3970
|
+
SENSITIVE = []
|
3844
3971
|
include Aws::Structure
|
3845
3972
|
end
|
3846
3973
|
|
@@ -3901,6 +4028,7 @@ module Aws::ApiGatewayV2
|
|
3901
4028
|
:response_parameters,
|
3902
4029
|
:response_templates,
|
3903
4030
|
:template_selection_expression)
|
4031
|
+
SENSITIVE = []
|
3904
4032
|
include Aws::Structure
|
3905
4033
|
end
|
3906
4034
|
|
@@ -3931,6 +4059,7 @@ module Aws::ApiGatewayV2
|
|
3931
4059
|
:integration_id,
|
3932
4060
|
:max_results,
|
3933
4061
|
:next_token)
|
4062
|
+
SENSITIVE = []
|
3934
4063
|
include Aws::Structure
|
3935
4064
|
end
|
3936
4065
|
|
@@ -3945,6 +4074,7 @@ module Aws::ApiGatewayV2
|
|
3945
4074
|
class GetIntegrationResponsesResponse < Struct.new(
|
3946
4075
|
:items,
|
3947
4076
|
:next_token)
|
4077
|
+
SENSITIVE = []
|
3948
4078
|
include Aws::Structure
|
3949
4079
|
end
|
3950
4080
|
|
@@ -3970,6 +4100,7 @@ module Aws::ApiGatewayV2
|
|
3970
4100
|
:api_id,
|
3971
4101
|
:max_results,
|
3972
4102
|
:next_token)
|
4103
|
+
SENSITIVE = []
|
3973
4104
|
include Aws::Structure
|
3974
4105
|
end
|
3975
4106
|
|
@@ -3984,6 +4115,7 @@ module Aws::ApiGatewayV2
|
|
3984
4115
|
class GetIntegrationsResponse < Struct.new(
|
3985
4116
|
:items,
|
3986
4117
|
:next_token)
|
4118
|
+
SENSITIVE = []
|
3987
4119
|
include Aws::Structure
|
3988
4120
|
end
|
3989
4121
|
|
@@ -4004,6 +4136,7 @@ module Aws::ApiGatewayV2
|
|
4004
4136
|
class GetModelRequest < Struct.new(
|
4005
4137
|
:api_id,
|
4006
4138
|
:model_id)
|
4139
|
+
SENSITIVE = []
|
4007
4140
|
include Aws::Structure
|
4008
4141
|
end
|
4009
4142
|
|
@@ -4033,6 +4166,7 @@ module Aws::ApiGatewayV2
|
|
4033
4166
|
:model_id,
|
4034
4167
|
:name,
|
4035
4168
|
:schema)
|
4169
|
+
SENSITIVE = []
|
4036
4170
|
include Aws::Structure
|
4037
4171
|
end
|
4038
4172
|
|
@@ -4053,6 +4187,7 @@ module Aws::ApiGatewayV2
|
|
4053
4187
|
class GetModelTemplateRequest < Struct.new(
|
4054
4188
|
:api_id,
|
4055
4189
|
:model_id)
|
4190
|
+
SENSITIVE = []
|
4056
4191
|
include Aws::Structure
|
4057
4192
|
end
|
4058
4193
|
|
@@ -4061,6 +4196,7 @@ module Aws::ApiGatewayV2
|
|
4061
4196
|
#
|
4062
4197
|
class GetModelTemplateResponse < Struct.new(
|
4063
4198
|
:value)
|
4199
|
+
SENSITIVE = []
|
4064
4200
|
include Aws::Structure
|
4065
4201
|
end
|
4066
4202
|
|
@@ -4086,6 +4222,7 @@ module Aws::ApiGatewayV2
|
|
4086
4222
|
:api_id,
|
4087
4223
|
:max_results,
|
4088
4224
|
:next_token)
|
4225
|
+
SENSITIVE = []
|
4089
4226
|
include Aws::Structure
|
4090
4227
|
end
|
4091
4228
|
|
@@ -4100,6 +4237,7 @@ module Aws::ApiGatewayV2
|
|
4100
4237
|
class GetModelsResponse < Struct.new(
|
4101
4238
|
:items,
|
4102
4239
|
:next_token)
|
4240
|
+
SENSITIVE = []
|
4103
4241
|
include Aws::Structure
|
4104
4242
|
end
|
4105
4243
|
|
@@ -4120,6 +4258,7 @@ module Aws::ApiGatewayV2
|
|
4120
4258
|
class GetRouteRequest < Struct.new(
|
4121
4259
|
:api_id,
|
4122
4260
|
:route_id)
|
4261
|
+
SENSITIVE = []
|
4123
4262
|
include Aws::Structure
|
4124
4263
|
end
|
4125
4264
|
|
@@ -4215,6 +4354,7 @@ module Aws::ApiGatewayV2
|
|
4215
4354
|
:route_key,
|
4216
4355
|
:route_response_selection_expression,
|
4217
4356
|
:target)
|
4357
|
+
SENSITIVE = []
|
4218
4358
|
include Aws::Structure
|
4219
4359
|
end
|
4220
4360
|
|
@@ -4240,6 +4380,7 @@ module Aws::ApiGatewayV2
|
|
4240
4380
|
:api_id,
|
4241
4381
|
:route_id,
|
4242
4382
|
:route_response_id)
|
4383
|
+
SENSITIVE = []
|
4243
4384
|
include Aws::Structure
|
4244
4385
|
end
|
4245
4386
|
|
@@ -4281,6 +4422,7 @@ module Aws::ApiGatewayV2
|
|
4281
4422
|
:response_parameters,
|
4282
4423
|
:route_response_id,
|
4283
4424
|
:route_response_key)
|
4425
|
+
SENSITIVE = []
|
4284
4426
|
include Aws::Structure
|
4285
4427
|
end
|
4286
4428
|
|
@@ -4311,6 +4453,7 @@ module Aws::ApiGatewayV2
|
|
4311
4453
|
:max_results,
|
4312
4454
|
:next_token,
|
4313
4455
|
:route_id)
|
4456
|
+
SENSITIVE = []
|
4314
4457
|
include Aws::Structure
|
4315
4458
|
end
|
4316
4459
|
|
@@ -4325,6 +4468,7 @@ module Aws::ApiGatewayV2
|
|
4325
4468
|
class GetRouteResponsesResponse < Struct.new(
|
4326
4469
|
:items,
|
4327
4470
|
:next_token)
|
4471
|
+
SENSITIVE = []
|
4328
4472
|
include Aws::Structure
|
4329
4473
|
end
|
4330
4474
|
|
@@ -4350,6 +4494,7 @@ module Aws::ApiGatewayV2
|
|
4350
4494
|
:api_id,
|
4351
4495
|
:max_results,
|
4352
4496
|
:next_token)
|
4497
|
+
SENSITIVE = []
|
4353
4498
|
include Aws::Structure
|
4354
4499
|
end
|
4355
4500
|
|
@@ -4364,6 +4509,7 @@ module Aws::ApiGatewayV2
|
|
4364
4509
|
class GetRoutesResponse < Struct.new(
|
4365
4510
|
:items,
|
4366
4511
|
:next_token)
|
4512
|
+
SENSITIVE = []
|
4367
4513
|
include Aws::Structure
|
4368
4514
|
end
|
4369
4515
|
|
@@ -4384,6 +4530,7 @@ module Aws::ApiGatewayV2
|
|
4384
4530
|
class GetStageRequest < Struct.new(
|
4385
4531
|
:api_id,
|
4386
4532
|
:stage_name)
|
4533
|
+
SENSITIVE = []
|
4387
4534
|
include Aws::Structure
|
4388
4535
|
end
|
4389
4536
|
|
@@ -4453,6 +4600,7 @@ module Aws::ApiGatewayV2
|
|
4453
4600
|
:stage_name,
|
4454
4601
|
:stage_variables,
|
4455
4602
|
:tags)
|
4603
|
+
SENSITIVE = []
|
4456
4604
|
include Aws::Structure
|
4457
4605
|
end
|
4458
4606
|
|
@@ -4478,6 +4626,7 @@ module Aws::ApiGatewayV2
|
|
4478
4626
|
:api_id,
|
4479
4627
|
:max_results,
|
4480
4628
|
:next_token)
|
4629
|
+
SENSITIVE = []
|
4481
4630
|
include Aws::Structure
|
4482
4631
|
end
|
4483
4632
|
|
@@ -4492,6 +4641,7 @@ module Aws::ApiGatewayV2
|
|
4492
4641
|
class GetStagesResponse < Struct.new(
|
4493
4642
|
:items,
|
4494
4643
|
:next_token)
|
4644
|
+
SENSITIVE = []
|
4495
4645
|
include Aws::Structure
|
4496
4646
|
end
|
4497
4647
|
|
@@ -4507,6 +4657,7 @@ module Aws::ApiGatewayV2
|
|
4507
4657
|
#
|
4508
4658
|
class GetTagsRequest < Struct.new(
|
4509
4659
|
:resource_arn)
|
4660
|
+
SENSITIVE = []
|
4510
4661
|
include Aws::Structure
|
4511
4662
|
end
|
4512
4663
|
|
@@ -4516,6 +4667,7 @@ module Aws::ApiGatewayV2
|
|
4516
4667
|
#
|
4517
4668
|
class GetTagsResponse < Struct.new(
|
4518
4669
|
:tags)
|
4670
|
+
SENSITIVE = []
|
4519
4671
|
include Aws::Structure
|
4520
4672
|
end
|
4521
4673
|
|
@@ -4531,6 +4683,7 @@ module Aws::ApiGatewayV2
|
|
4531
4683
|
#
|
4532
4684
|
class GetVpcLinkRequest < Struct.new(
|
4533
4685
|
:vpc_link_id)
|
4686
|
+
SENSITIVE = []
|
4534
4687
|
include Aws::Structure
|
4535
4688
|
end
|
4536
4689
|
|
@@ -4579,6 +4732,7 @@ module Aws::ApiGatewayV2
|
|
4579
4732
|
:vpc_link_status,
|
4580
4733
|
:vpc_link_status_message,
|
4581
4734
|
:vpc_link_version)
|
4735
|
+
SENSITIVE = []
|
4582
4736
|
include Aws::Structure
|
4583
4737
|
end
|
4584
4738
|
|
@@ -4599,6 +4753,7 @@ module Aws::ApiGatewayV2
|
|
4599
4753
|
class GetVpcLinksRequest < Struct.new(
|
4600
4754
|
:max_results,
|
4601
4755
|
:next_token)
|
4756
|
+
SENSITIVE = []
|
4602
4757
|
include Aws::Structure
|
4603
4758
|
end
|
4604
4759
|
|
@@ -4613,6 +4768,7 @@ module Aws::ApiGatewayV2
|
|
4613
4768
|
class GetVpcLinksResponse < Struct.new(
|
4614
4769
|
:items,
|
4615
4770
|
:next_token)
|
4771
|
+
SENSITIVE = []
|
4616
4772
|
include Aws::Structure
|
4617
4773
|
end
|
4618
4774
|
|
@@ -4624,6 +4780,7 @@ module Aws::ApiGatewayV2
|
|
4624
4780
|
#
|
4625
4781
|
class ImportApiInput < Struct.new(
|
4626
4782
|
:body)
|
4783
|
+
SENSITIVE = []
|
4627
4784
|
include Aws::Structure
|
4628
4785
|
end
|
4629
4786
|
|
@@ -4649,6 +4806,7 @@ module Aws::ApiGatewayV2
|
|
4649
4806
|
:basepath,
|
4650
4807
|
:body,
|
4651
4808
|
:fail_on_warnings)
|
4809
|
+
SENSITIVE = []
|
4652
4810
|
include Aws::Structure
|
4653
4811
|
end
|
4654
4812
|
|
@@ -4733,6 +4891,7 @@ module Aws::ApiGatewayV2
|
|
4733
4891
|
:tags,
|
4734
4892
|
:version,
|
4735
4893
|
:warnings)
|
4894
|
+
SENSITIVE = []
|
4736
4895
|
include Aws::Structure
|
4737
4896
|
end
|
4738
4897
|
|
@@ -4847,7 +5006,7 @@ module Aws::ApiGatewayV2
|
|
4847
5006
|
#
|
4848
5007
|
#
|
4849
5008
|
#
|
4850
|
-
# [1]: https://
|
5009
|
+
# [1]: https://docs.aws.amazon.com/cloud-map/latest/api/API_DiscoverInstances.html
|
4851
5010
|
# @return [String]
|
4852
5011
|
#
|
4853
5012
|
# @!attribute [rw] passthrough_behavior
|
@@ -4881,16 +5040,9 @@ module Aws::ApiGatewayV2
|
|
4881
5040
|
# parameter value or static value that must be enclosed within single
|
4882
5041
|
# quotes and pre-encoded as required by the backend. The method
|
4883
5042
|
# request parameter value must match the pattern of
|
4884
|
-
# method.request
|
4885
|
-
#
|
4886
|
-
#
|
4887
|
-
#
|
4888
|
-
# , where <replaceable>\{location\}</replaceable>
|
4889
|
-
#
|
4890
|
-
# is querystring, path, or header; and
|
4891
|
-
# <replaceable>\{name\}</replaceable>
|
4892
|
-
#
|
4893
|
-
# must be a valid and unique method request parameter name. Supported
|
5043
|
+
# method.request.*\\\{location\\}*.*\\\{name\\}* , where
|
5044
|
+
# *\\\{location\\}* is querystring, path, or header; and *\\\{name\\}*
|
5045
|
+
# must be a valid and unique method request parameter name. Supported
|
4894
5046
|
# only for WebSocket APIs.
|
4895
5047
|
# @return [Hash<String,String>]
|
4896
5048
|
#
|
@@ -4939,6 +5091,7 @@ module Aws::ApiGatewayV2
|
|
4939
5091
|
:template_selection_expression,
|
4940
5092
|
:timeout_in_millis,
|
4941
5093
|
:tls_config)
|
5094
|
+
SENSITIVE = []
|
4942
5095
|
include Aws::Structure
|
4943
5096
|
end
|
4944
5097
|
|
@@ -5002,6 +5155,7 @@ module Aws::ApiGatewayV2
|
|
5002
5155
|
:response_parameters,
|
5003
5156
|
:response_templates,
|
5004
5157
|
:template_selection_expression)
|
5158
|
+
SENSITIVE = []
|
5005
5159
|
include Aws::Structure
|
5006
5160
|
end
|
5007
5161
|
|
@@ -5019,6 +5173,7 @@ module Aws::ApiGatewayV2
|
|
5019
5173
|
class IntegrationResponses < Struct.new(
|
5020
5174
|
:items,
|
5021
5175
|
:next_token)
|
5176
|
+
SENSITIVE = []
|
5022
5177
|
include Aws::Structure
|
5023
5178
|
end
|
5024
5179
|
|
@@ -5036,6 +5191,7 @@ module Aws::ApiGatewayV2
|
|
5036
5191
|
class Integrations < Struct.new(
|
5037
5192
|
:items,
|
5038
5193
|
:next_token)
|
5194
|
+
SENSITIVE = []
|
5039
5195
|
include Aws::Structure
|
5040
5196
|
end
|
5041
5197
|
|
@@ -5063,17 +5219,16 @@ module Aws::ApiGatewayV2
|
|
5063
5219
|
# @!attribute [rw] issuer
|
5064
5220
|
# The base domain of the identity provider that issues JSON Web
|
5065
5221
|
# Tokens. For example, an Amazon Cognito user pool has the following
|
5066
|
-
# format:
|
5067
|
-
#
|
5068
|
-
# .
|
5069
|
-
#
|
5070
|
-
# . Required for the JWT authorizer type. Supported only for HTTP
|
5222
|
+
# format:
|
5223
|
+
# https://cognito-idp.*\\\{region\\}*.amazonaws.com/*\\\{userPoolId\\}*
|
5224
|
+
# . Required for the JWT authorizer type. Supported only for HTTP
|
5071
5225
|
# APIs.
|
5072
5226
|
# @return [String]
|
5073
5227
|
#
|
5074
5228
|
class JWTConfiguration < Struct.new(
|
5075
5229
|
:audience,
|
5076
5230
|
:issuer)
|
5231
|
+
SENSITIVE = []
|
5077
5232
|
include Aws::Structure
|
5078
5233
|
end
|
5079
5234
|
|
@@ -5091,6 +5246,7 @@ module Aws::ApiGatewayV2
|
|
5091
5246
|
class LimitExceededException < Struct.new(
|
5092
5247
|
:limit_type,
|
5093
5248
|
:message)
|
5249
|
+
SENSITIVE = []
|
5094
5250
|
include Aws::Structure
|
5095
5251
|
end
|
5096
5252
|
|
@@ -5129,6 +5285,7 @@ module Aws::ApiGatewayV2
|
|
5129
5285
|
:model_id,
|
5130
5286
|
:name,
|
5131
5287
|
:schema)
|
5288
|
+
SENSITIVE = []
|
5132
5289
|
include Aws::Structure
|
5133
5290
|
end
|
5134
5291
|
|
@@ -5151,6 +5308,7 @@ module Aws::ApiGatewayV2
|
|
5151
5308
|
class Models < Struct.new(
|
5152
5309
|
:items,
|
5153
5310
|
:next_token)
|
5311
|
+
SENSITIVE = []
|
5154
5312
|
include Aws::Structure
|
5155
5313
|
end
|
5156
5314
|
|
@@ -5168,6 +5326,7 @@ module Aws::ApiGatewayV2
|
|
5168
5326
|
class NotFoundException < Struct.new(
|
5169
5327
|
:message,
|
5170
5328
|
:resource_type)
|
5329
|
+
SENSITIVE = []
|
5171
5330
|
include Aws::Structure
|
5172
5331
|
end
|
5173
5332
|
|
@@ -5187,6 +5346,7 @@ module Aws::ApiGatewayV2
|
|
5187
5346
|
#
|
5188
5347
|
class ParameterConstraints < Struct.new(
|
5189
5348
|
:required)
|
5349
|
+
SENSITIVE = []
|
5190
5350
|
include Aws::Structure
|
5191
5351
|
end
|
5192
5352
|
|
@@ -5199,6 +5359,7 @@ module Aws::ApiGatewayV2
|
|
5199
5359
|
#
|
5200
5360
|
class ReimportApiInput < Struct.new(
|
5201
5361
|
:body)
|
5362
|
+
SENSITIVE = []
|
5202
5363
|
include Aws::Structure
|
5203
5364
|
end
|
5204
5365
|
|
@@ -5229,6 +5390,7 @@ module Aws::ApiGatewayV2
|
|
5229
5390
|
:basepath,
|
5230
5391
|
:body,
|
5231
5392
|
:fail_on_warnings)
|
5393
|
+
SENSITIVE = []
|
5232
5394
|
include Aws::Structure
|
5233
5395
|
end
|
5234
5396
|
|
@@ -5313,6 +5475,7 @@ module Aws::ApiGatewayV2
|
|
5313
5475
|
:tags,
|
5314
5476
|
:version,
|
5315
5477
|
:warnings)
|
5478
|
+
SENSITIVE = []
|
5316
5479
|
include Aws::Structure
|
5317
5480
|
end
|
5318
5481
|
|
@@ -5404,6 +5567,7 @@ module Aws::ApiGatewayV2
|
|
5404
5567
|
:route_key,
|
5405
5568
|
:route_response_selection_expression,
|
5406
5569
|
:target)
|
5570
|
+
SENSITIVE = []
|
5407
5571
|
include Aws::Structure
|
5408
5572
|
end
|
5409
5573
|
|
@@ -5436,6 +5600,7 @@ module Aws::ApiGatewayV2
|
|
5436
5600
|
:response_parameters,
|
5437
5601
|
:route_response_id,
|
5438
5602
|
:route_response_key)
|
5603
|
+
SENSITIVE = []
|
5439
5604
|
include Aws::Structure
|
5440
5605
|
end
|
5441
5606
|
|
@@ -5453,6 +5618,7 @@ module Aws::ApiGatewayV2
|
|
5453
5618
|
class RouteResponses < Struct.new(
|
5454
5619
|
:items,
|
5455
5620
|
:next_token)
|
5621
|
+
SENSITIVE = []
|
5456
5622
|
include Aws::Structure
|
5457
5623
|
end
|
5458
5624
|
|
@@ -5499,6 +5665,7 @@ module Aws::ApiGatewayV2
|
|
5499
5665
|
:logging_level,
|
5500
5666
|
:throttling_burst_limit,
|
5501
5667
|
:throttling_rate_limit)
|
5668
|
+
SENSITIVE = []
|
5502
5669
|
include Aws::Structure
|
5503
5670
|
end
|
5504
5671
|
|
@@ -5516,6 +5683,7 @@ module Aws::ApiGatewayV2
|
|
5516
5683
|
class Routes < Struct.new(
|
5517
5684
|
:items,
|
5518
5685
|
:next_token)
|
5686
|
+
SENSITIVE = []
|
5519
5687
|
include Aws::Structure
|
5520
5688
|
end
|
5521
5689
|
|
@@ -5601,6 +5769,7 @@ module Aws::ApiGatewayV2
|
|
5601
5769
|
:stage_name,
|
5602
5770
|
:stage_variables,
|
5603
5771
|
:tags)
|
5772
|
+
SENSITIVE = []
|
5604
5773
|
include Aws::Structure
|
5605
5774
|
end
|
5606
5775
|
|
@@ -5619,6 +5788,7 @@ module Aws::ApiGatewayV2
|
|
5619
5788
|
class Stages < Struct.new(
|
5620
5789
|
:items,
|
5621
5790
|
:next_token)
|
5791
|
+
SENSITIVE = []
|
5622
5792
|
include Aws::Structure
|
5623
5793
|
end
|
5624
5794
|
|
@@ -5631,6 +5801,7 @@ module Aws::ApiGatewayV2
|
|
5631
5801
|
#
|
5632
5802
|
class TagResourceInput < Struct.new(
|
5633
5803
|
:tags)
|
5804
|
+
SENSITIVE = []
|
5634
5805
|
include Aws::Structure
|
5635
5806
|
end
|
5636
5807
|
|
@@ -5654,6 +5825,7 @@ module Aws::ApiGatewayV2
|
|
5654
5825
|
class TagResourceRequest < Struct.new(
|
5655
5826
|
:resource_arn,
|
5656
5827
|
:tags)
|
5828
|
+
SENSITIVE = []
|
5657
5829
|
include Aws::Structure
|
5658
5830
|
end
|
5659
5831
|
|
@@ -5667,6 +5839,7 @@ module Aws::ApiGatewayV2
|
|
5667
5839
|
#
|
5668
5840
|
class Template < Struct.new(
|
5669
5841
|
:value)
|
5842
|
+
SENSITIVE = []
|
5670
5843
|
include Aws::Structure
|
5671
5844
|
end
|
5672
5845
|
|
@@ -5683,6 +5856,7 @@ module Aws::ApiGatewayV2
|
|
5683
5856
|
#
|
5684
5857
|
class TlsConfig < Struct.new(
|
5685
5858
|
:server_name_to_verify)
|
5859
|
+
SENSITIVE = []
|
5686
5860
|
include Aws::Structure
|
5687
5861
|
end
|
5688
5862
|
|
@@ -5706,6 +5880,7 @@ module Aws::ApiGatewayV2
|
|
5706
5880
|
#
|
5707
5881
|
class TlsConfigInput < Struct.new(
|
5708
5882
|
:server_name_to_verify)
|
5883
|
+
SENSITIVE = []
|
5709
5884
|
include Aws::Structure
|
5710
5885
|
end
|
5711
5886
|
|
@@ -5721,6 +5896,7 @@ module Aws::ApiGatewayV2
|
|
5721
5896
|
class TooManyRequestsException < Struct.new(
|
5722
5897
|
:limit_type,
|
5723
5898
|
:message)
|
5899
|
+
SENSITIVE = []
|
5724
5900
|
include Aws::Structure
|
5725
5901
|
end
|
5726
5902
|
|
@@ -5741,6 +5917,7 @@ module Aws::ApiGatewayV2
|
|
5741
5917
|
class UntagResourceRequest < Struct.new(
|
5742
5918
|
:resource_arn,
|
5743
5919
|
:tag_keys)
|
5920
|
+
SENSITIVE = []
|
5744
5921
|
include Aws::Structure
|
5745
5922
|
end
|
5746
5923
|
|
@@ -5823,6 +6000,7 @@ module Aws::ApiGatewayV2
|
|
5823
6000
|
:route_selection_expression,
|
5824
6001
|
:target,
|
5825
6002
|
:version)
|
6003
|
+
SENSITIVE = []
|
5826
6004
|
include Aws::Structure
|
5827
6005
|
end
|
5828
6006
|
|
@@ -5844,6 +6022,7 @@ module Aws::ApiGatewayV2
|
|
5844
6022
|
:api_id,
|
5845
6023
|
:api_mapping_key,
|
5846
6024
|
:stage)
|
6025
|
+
SENSITIVE = []
|
5847
6026
|
include Aws::Structure
|
5848
6027
|
end
|
5849
6028
|
|
@@ -5889,6 +6068,7 @@ module Aws::ApiGatewayV2
|
|
5889
6068
|
:api_mapping_key,
|
5890
6069
|
:domain_name,
|
5891
6070
|
:stage)
|
6071
|
+
SENSITIVE = []
|
5892
6072
|
include Aws::Structure
|
5893
6073
|
end
|
5894
6074
|
|
@@ -5920,6 +6100,7 @@ module Aws::ApiGatewayV2
|
|
5920
6100
|
:api_mapping_id,
|
5921
6101
|
:api_mapping_key,
|
5922
6102
|
:stage)
|
6103
|
+
SENSITIVE = []
|
5923
6104
|
include Aws::Structure
|
5924
6105
|
end
|
5925
6106
|
|
@@ -6023,6 +6204,7 @@ module Aws::ApiGatewayV2
|
|
6023
6204
|
:route_selection_expression,
|
6024
6205
|
:target,
|
6025
6206
|
:version)
|
6207
|
+
SENSITIVE = []
|
6026
6208
|
include Aws::Structure
|
6027
6209
|
end
|
6028
6210
|
|
@@ -6107,6 +6289,7 @@ module Aws::ApiGatewayV2
|
|
6107
6289
|
:tags,
|
6108
6290
|
:version,
|
6109
6291
|
:warnings)
|
6292
|
+
SENSITIVE = []
|
6110
6293
|
include Aws::Structure
|
6111
6294
|
end
|
6112
6295
|
|
@@ -6134,16 +6317,10 @@ module Aws::ApiGatewayV2
|
|
6134
6317
|
# The authorizer's Uniform Resource Identifier (URI). For REQUEST
|
6135
6318
|
# authorizers, this must be a well-formed Lambda function URI, for
|
6136
6319
|
# example,
|
6137
|
-
# arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2
|
6138
|
-
#
|
6139
|
-
#
|
6140
|
-
#
|
6141
|
-
# /invocations. In general, the URI has this form:
|
6142
|
-
# arn:aws:apigateway:<replaceable>\{region\}</replaceable>
|
6143
|
-
#
|
6144
|
-
# \:lambda:path/<replaceable>\{service_api\}</replaceable>
|
6145
|
-
#
|
6146
|
-
# , where <replaceable />
|
6320
|
+
# 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.
|
6321
|
+
# In general, the URI has this form:
|
6322
|
+
# arn:aws:apigateway:*\\\{region\\}*\:lambda:path/*\\\{service\_api\\}*
|
6323
|
+
# , where <replaceable />
|
6147
6324
|
#
|
6148
6325
|
# \\\{region\\} is the same as the region hosting the Lambda function,
|
6149
6326
|
# path indicates that the remaining substring in the URI should be
|
@@ -6198,6 +6375,7 @@ module Aws::ApiGatewayV2
|
|
6198
6375
|
:identity_validation_expression,
|
6199
6376
|
:jwt_configuration,
|
6200
6377
|
:name)
|
6378
|
+
SENSITIVE = []
|
6201
6379
|
include Aws::Structure
|
6202
6380
|
end
|
6203
6381
|
|
@@ -6287,6 +6465,7 @@ module Aws::ApiGatewayV2
|
|
6287
6465
|
:identity_validation_expression,
|
6288
6466
|
:jwt_configuration,
|
6289
6467
|
:name)
|
6468
|
+
SENSITIVE = []
|
6290
6469
|
include Aws::Structure
|
6291
6470
|
end
|
6292
6471
|
|
@@ -6354,6 +6533,7 @@ module Aws::ApiGatewayV2
|
|
6354
6533
|
:identity_validation_expression,
|
6355
6534
|
:jwt_configuration,
|
6356
6535
|
:name)
|
6536
|
+
SENSITIVE = []
|
6357
6537
|
include Aws::Structure
|
6358
6538
|
end
|
6359
6539
|
|
@@ -6365,6 +6545,7 @@ module Aws::ApiGatewayV2
|
|
6365
6545
|
#
|
6366
6546
|
class UpdateDeploymentInput < Struct.new(
|
6367
6547
|
:description)
|
6548
|
+
SENSITIVE = []
|
6368
6549
|
include Aws::Structure
|
6369
6550
|
end
|
6370
6551
|
|
@@ -6391,6 +6572,7 @@ module Aws::ApiGatewayV2
|
|
6391
6572
|
:api_id,
|
6392
6573
|
:deployment_id,
|
6393
6574
|
:description)
|
6575
|
+
SENSITIVE = []
|
6394
6576
|
include Aws::Structure
|
6395
6577
|
end
|
6396
6578
|
|
@@ -6422,6 +6604,7 @@ module Aws::ApiGatewayV2
|
|
6422
6604
|
:deployment_status,
|
6423
6605
|
:deployment_status_message,
|
6424
6606
|
:description)
|
6607
|
+
SENSITIVE = []
|
6425
6608
|
include Aws::Structure
|
6426
6609
|
end
|
6427
6610
|
|
@@ -6433,6 +6616,7 @@ module Aws::ApiGatewayV2
|
|
6433
6616
|
#
|
6434
6617
|
class UpdateDomainNameInput < Struct.new(
|
6435
6618
|
:domain_name_configurations)
|
6619
|
+
SENSITIVE = []
|
6436
6620
|
include Aws::Structure
|
6437
6621
|
end
|
6438
6622
|
|
@@ -6466,6 +6650,7 @@ module Aws::ApiGatewayV2
|
|
6466
6650
|
class UpdateDomainNameRequest < Struct.new(
|
6467
6651
|
:domain_name,
|
6468
6652
|
:domain_name_configurations)
|
6653
|
+
SENSITIVE = []
|
6469
6654
|
include Aws::Structure
|
6470
6655
|
end
|
6471
6656
|
|
@@ -6495,6 +6680,7 @@ module Aws::ApiGatewayV2
|
|
6495
6680
|
:domain_name,
|
6496
6681
|
:domain_name_configurations,
|
6497
6682
|
:tags)
|
6683
|
+
SENSITIVE = []
|
6498
6684
|
include Aws::Structure
|
6499
6685
|
end
|
6500
6686
|
|
@@ -6589,7 +6775,7 @@ module Aws::ApiGatewayV2
|
|
6589
6775
|
#
|
6590
6776
|
#
|
6591
6777
|
#
|
6592
|
-
# [1]: https://
|
6778
|
+
# [1]: https://docs.aws.amazon.com/cloud-map/latest/api/API_DiscoverInstances.html
|
6593
6779
|
# @return [String]
|
6594
6780
|
#
|
6595
6781
|
# @!attribute [rw] passthrough_behavior
|
@@ -6623,16 +6809,9 @@ module Aws::ApiGatewayV2
|
|
6623
6809
|
# parameter value or static value that must be enclosed within single
|
6624
6810
|
# quotes and pre-encoded as required by the backend. The method
|
6625
6811
|
# request parameter value must match the pattern of
|
6626
|
-
# method.request
|
6627
|
-
#
|
6628
|
-
#
|
6629
|
-
#
|
6630
|
-
# , where <replaceable>\{location\}</replaceable>
|
6631
|
-
#
|
6632
|
-
# is querystring, path, or header; and
|
6633
|
-
# <replaceable>\{name\}</replaceable>
|
6634
|
-
#
|
6635
|
-
# must be a valid and unique method request parameter name. Supported
|
6812
|
+
# method.request.*\\\{location\\}*.*\\\{name\\}* , where
|
6813
|
+
# *\\\{location\\}* is querystring, path, or header; and *\\\{name\\}*
|
6814
|
+
# must be a valid and unique method request parameter name. Supported
|
6636
6815
|
# only for WebSocket APIs.
|
6637
6816
|
# @return [Hash<String,String>]
|
6638
6817
|
#
|
@@ -6677,6 +6856,7 @@ module Aws::ApiGatewayV2
|
|
6677
6856
|
:template_selection_expression,
|
6678
6857
|
:timeout_in_millis,
|
6679
6858
|
:tls_config)
|
6859
|
+
SENSITIVE = []
|
6680
6860
|
include Aws::Structure
|
6681
6861
|
end
|
6682
6862
|
|
@@ -6815,6 +6995,7 @@ module Aws::ApiGatewayV2
|
|
6815
6995
|
:template_selection_expression,
|
6816
6996
|
:timeout_in_millis,
|
6817
6997
|
:tls_config)
|
6998
|
+
SENSITIVE = []
|
6818
6999
|
include Aws::Structure
|
6819
7000
|
end
|
6820
7001
|
|
@@ -6935,6 +7116,7 @@ module Aws::ApiGatewayV2
|
|
6935
7116
|
:template_selection_expression,
|
6936
7117
|
:timeout_in_millis,
|
6937
7118
|
:tls_config)
|
7119
|
+
SENSITIVE = []
|
6938
7120
|
include Aws::Structure
|
6939
7121
|
end
|
6940
7122
|
|
@@ -6969,21 +7151,13 @@ module Aws::ApiGatewayV2
|
|
6969
7151
|
# response header value, a static value enclosed within a pair of
|
6970
7152
|
# single quotes, or a JSON expression from the integration response
|
6971
7153
|
# body. The mapping key must match the pattern of
|
6972
|
-
# method.response.header
|
6973
|
-
#
|
6974
|
-
#
|
6975
|
-
#
|
6976
|
-
#
|
6977
|
-
#
|
6978
|
-
#
|
6979
|
-
# integration.response.body.<replaceable>\{JSON-expression\}</replaceable>
|
6980
|
-
#
|
6981
|
-
# , where <replaceable>\{name\}</replaceable>
|
6982
|
-
#
|
6983
|
-
# is a valid and unique response header name and
|
6984
|
-
# <replaceable>\{JSON-expression\}</replaceable>
|
6985
|
-
#
|
6986
|
-
# is a valid JSON expression without the $ prefix.
|
7154
|
+
# method.response.header.*\\\{name\\}* , where name is a valid and
|
7155
|
+
# unique header name. The mapped non-static value must match the
|
7156
|
+
# pattern of integration.response.header.*\\\{name\\}* or
|
7157
|
+
# integration.response.body.*\\\{JSON-expression\\}* , where
|
7158
|
+
# *\\\{name\\}* is a valid and unique response header name and
|
7159
|
+
# *\\\{JSON-expression\\}* is a valid JSON expression without the $
|
7160
|
+
# prefix.
|
6987
7161
|
# @return [Hash<String,String>]
|
6988
7162
|
#
|
6989
7163
|
# @!attribute [rw] response_templates
|
@@ -7004,6 +7178,7 @@ module Aws::ApiGatewayV2
|
|
7004
7178
|
:response_parameters,
|
7005
7179
|
:response_templates,
|
7006
7180
|
:template_selection_expression)
|
7181
|
+
SENSITIVE = []
|
7007
7182
|
include Aws::Structure
|
7008
7183
|
end
|
7009
7184
|
|
@@ -7089,6 +7264,7 @@ module Aws::ApiGatewayV2
|
|
7089
7264
|
:response_parameters,
|
7090
7265
|
:response_templates,
|
7091
7266
|
:template_selection_expression)
|
7267
|
+
SENSITIVE = []
|
7092
7268
|
include Aws::Structure
|
7093
7269
|
end
|
7094
7270
|
|
@@ -7149,6 +7325,7 @@ module Aws::ApiGatewayV2
|
|
7149
7325
|
:response_parameters,
|
7150
7326
|
:response_templates,
|
7151
7327
|
:template_selection_expression)
|
7328
|
+
SENSITIVE = []
|
7152
7329
|
include Aws::Structure
|
7153
7330
|
end
|
7154
7331
|
|
@@ -7177,6 +7354,7 @@ module Aws::ApiGatewayV2
|
|
7177
7354
|
:description,
|
7178
7355
|
:name,
|
7179
7356
|
:schema)
|
7357
|
+
SENSITIVE = []
|
7180
7358
|
include Aws::Structure
|
7181
7359
|
end
|
7182
7360
|
|
@@ -7221,6 +7399,7 @@ module Aws::ApiGatewayV2
|
|
7221
7399
|
:model_id,
|
7222
7400
|
:name,
|
7223
7401
|
:schema)
|
7402
|
+
SENSITIVE = []
|
7224
7403
|
include Aws::Structure
|
7225
7404
|
end
|
7226
7405
|
|
@@ -7250,6 +7429,7 @@ module Aws::ApiGatewayV2
|
|
7250
7429
|
:model_id,
|
7251
7430
|
:name,
|
7252
7431
|
:schema)
|
7432
|
+
SENSITIVE = []
|
7253
7433
|
include Aws::Structure
|
7254
7434
|
end
|
7255
7435
|
|
@@ -7321,6 +7501,7 @@ module Aws::ApiGatewayV2
|
|
7321
7501
|
:route_key,
|
7322
7502
|
:route_response_selection_expression,
|
7323
7503
|
:target)
|
7504
|
+
SENSITIVE = []
|
7324
7505
|
include Aws::Structure
|
7325
7506
|
end
|
7326
7507
|
|
@@ -7440,6 +7621,7 @@ module Aws::ApiGatewayV2
|
|
7440
7621
|
:route_key,
|
7441
7622
|
:route_response_selection_expression,
|
7442
7623
|
:target)
|
7624
|
+
SENSITIVE = []
|
7443
7625
|
include Aws::Structure
|
7444
7626
|
end
|
7445
7627
|
|
@@ -7535,6 +7717,7 @@ module Aws::ApiGatewayV2
|
|
7535
7717
|
:route_key,
|
7536
7718
|
:route_response_selection_expression,
|
7537
7719
|
:target)
|
7720
|
+
SENSITIVE = []
|
7538
7721
|
include Aws::Structure
|
7539
7722
|
end
|
7540
7723
|
|
@@ -7562,6 +7745,7 @@ module Aws::ApiGatewayV2
|
|
7562
7745
|
:response_models,
|
7563
7746
|
:response_parameters,
|
7564
7747
|
:route_response_key)
|
7748
|
+
SENSITIVE = []
|
7565
7749
|
include Aws::Structure
|
7566
7750
|
end
|
7567
7751
|
|
@@ -7629,6 +7813,7 @@ module Aws::ApiGatewayV2
|
|
7629
7813
|
:route_id,
|
7630
7814
|
:route_response_id,
|
7631
7815
|
:route_response_key)
|
7816
|
+
SENSITIVE = []
|
7632
7817
|
include Aws::Structure
|
7633
7818
|
end
|
7634
7819
|
|
@@ -7670,6 +7855,7 @@ module Aws::ApiGatewayV2
|
|
7670
7855
|
:response_parameters,
|
7671
7856
|
:route_response_id,
|
7672
7857
|
:route_response_key)
|
7858
|
+
SENSITIVE = []
|
7673
7859
|
include Aws::Structure
|
7674
7860
|
end
|
7675
7861
|
|
@@ -7720,6 +7906,7 @@ module Aws::ApiGatewayV2
|
|
7720
7906
|
:description,
|
7721
7907
|
:route_settings,
|
7722
7908
|
:stage_variables)
|
7909
|
+
SENSITIVE = []
|
7723
7910
|
include Aws::Structure
|
7724
7911
|
end
|
7725
7912
|
|
@@ -7806,6 +7993,7 @@ module Aws::ApiGatewayV2
|
|
7806
7993
|
:route_settings,
|
7807
7994
|
:stage_name,
|
7808
7995
|
:stage_variables)
|
7996
|
+
SENSITIVE = []
|
7809
7997
|
include Aws::Structure
|
7810
7998
|
end
|
7811
7999
|
|
@@ -7875,6 +8063,7 @@ module Aws::ApiGatewayV2
|
|
7875
8063
|
:stage_name,
|
7876
8064
|
:stage_variables,
|
7877
8065
|
:tags)
|
8066
|
+
SENSITIVE = []
|
7878
8067
|
include Aws::Structure
|
7879
8068
|
end
|
7880
8069
|
|
@@ -7886,6 +8075,7 @@ module Aws::ApiGatewayV2
|
|
7886
8075
|
#
|
7887
8076
|
class UpdateVpcLinkInput < Struct.new(
|
7888
8077
|
:name)
|
8078
|
+
SENSITIVE = []
|
7889
8079
|
include Aws::Structure
|
7890
8080
|
end
|
7891
8081
|
|
@@ -7907,6 +8097,7 @@ module Aws::ApiGatewayV2
|
|
7907
8097
|
class UpdateVpcLinkRequest < Struct.new(
|
7908
8098
|
:name,
|
7909
8099
|
:vpc_link_id)
|
8100
|
+
SENSITIVE = []
|
7910
8101
|
include Aws::Structure
|
7911
8102
|
end
|
7912
8103
|
|
@@ -7955,6 +8146,7 @@ module Aws::ApiGatewayV2
|
|
7955
8146
|
:vpc_link_status,
|
7956
8147
|
:vpc_link_status_message,
|
7957
8148
|
:vpc_link_version)
|
8149
|
+
SENSITIVE = []
|
7958
8150
|
include Aws::Structure
|
7959
8151
|
end
|
7960
8152
|
|
@@ -8006,6 +8198,7 @@ module Aws::ApiGatewayV2
|
|
8006
8198
|
:vpc_link_status,
|
8007
8199
|
:vpc_link_status_message,
|
8008
8200
|
:vpc_link_version)
|
8201
|
+
SENSITIVE = []
|
8009
8202
|
include Aws::Structure
|
8010
8203
|
end
|
8011
8204
|
|
@@ -8023,6 +8216,7 @@ module Aws::ApiGatewayV2
|
|
8023
8216
|
class VpcLinks < Struct.new(
|
8024
8217
|
:items,
|
8025
8218
|
:next_token)
|
8219
|
+
SENSITIVE = []
|
8026
8220
|
include Aws::Structure
|
8027
8221
|
end
|
8028
8222
|
|