localstack-core 4.10.1.dev7__py3-none-any.whl → 4.11.2.dev14__py3-none-any.whl
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.
- localstack/aws/api/acm/__init__.py +122 -122
- localstack/aws/api/apigateway/__init__.py +604 -561
- localstack/aws/api/cloudcontrol/__init__.py +63 -63
- localstack/aws/api/cloudformation/__init__.py +1201 -969
- localstack/aws/api/cloudwatch/__init__.py +375 -375
- localstack/aws/api/config/__init__.py +784 -786
- localstack/aws/api/dynamodb/__init__.py +753 -759
- localstack/aws/api/dynamodbstreams/__init__.py +74 -74
- localstack/aws/api/ec2/__init__.py +10062 -8826
- localstack/aws/api/es/__init__.py +453 -453
- localstack/aws/api/events/__init__.py +552 -552
- localstack/aws/api/firehose/__init__.py +541 -543
- localstack/aws/api/iam/__init__.py +866 -572
- localstack/aws/api/kinesis/__init__.py +235 -147
- localstack/aws/api/kms/__init__.py +341 -336
- localstack/aws/api/lambda_/__init__.py +974 -621
- localstack/aws/api/logs/__init__.py +988 -675
- localstack/aws/api/opensearch/__init__.py +903 -785
- localstack/aws/api/pipes/__init__.py +336 -336
- localstack/aws/api/redshift/__init__.py +1257 -1166
- localstack/aws/api/resource_groups/__init__.py +175 -175
- localstack/aws/api/resourcegroupstaggingapi/__init__.py +103 -67
- localstack/aws/api/route53/__init__.py +296 -254
- localstack/aws/api/route53resolver/__init__.py +397 -396
- localstack/aws/api/s3/__init__.py +1412 -1349
- localstack/aws/api/s3control/__init__.py +594 -594
- localstack/aws/api/scheduler/__init__.py +118 -118
- localstack/aws/api/secretsmanager/__init__.py +221 -216
- localstack/aws/api/ses/__init__.py +227 -227
- localstack/aws/api/sns/__init__.py +115 -115
- localstack/aws/api/sqs/__init__.py +100 -100
- localstack/aws/api/ssm/__init__.py +1977 -1971
- localstack/aws/api/stepfunctions/__init__.py +375 -333
- localstack/aws/api/sts/__init__.py +142 -66
- localstack/aws/api/support/__init__.py +112 -112
- localstack/aws/api/swf/__init__.py +378 -386
- localstack/aws/api/transcribe/__init__.py +425 -425
- localstack/aws/handlers/logging.py +8 -4
- localstack/aws/handlers/service.py +22 -3
- localstack/aws/protocol/parser.py +1 -1
- localstack/aws/protocol/serializer.py +1 -1
- localstack/aws/scaffold.py +15 -17
- localstack/cli/localstack.py +6 -1
- localstack/deprecations.py +0 -6
- localstack/dev/kubernetes/__main__.py +38 -3
- localstack/services/acm/provider.py +4 -0
- localstack/services/apigateway/helpers.py +5 -9
- localstack/services/apigateway/legacy/provider.py +60 -24
- localstack/services/apigateway/patches.py +0 -9
- localstack/services/cloudformation/engine/template_preparer.py +6 -2
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +12 -0
- localstack/services/cloudformation/provider.py +2 -2
- localstack/services/cloudformation/v2/provider.py +6 -6
- localstack/services/cloudwatch/provider.py +10 -3
- localstack/services/cloudwatch/provider_v2.py +6 -3
- localstack/services/configservice/provider.py +5 -1
- localstack/services/dynamodb/provider.py +1 -0
- localstack/services/dynamodb/v2/provider.py +1 -0
- localstack/services/dynamodbstreams/provider.py +6 -0
- localstack/services/dynamodbstreams/v2/provider.py +6 -0
- localstack/services/ec2/provider.py +6 -0
- localstack/services/es/provider.py +6 -0
- localstack/services/events/provider.py +4 -0
- localstack/services/events/v1/provider.py +9 -0
- localstack/services/firehose/provider.py +5 -0
- localstack/services/iam/provider.py +4 -0
- localstack/services/kinesis/packages.py +1 -1
- localstack/services/kms/models.py +44 -24
- localstack/services/kms/provider.py +97 -16
- localstack/services/lambda_/api_utils.py +40 -21
- localstack/services/lambda_/event_source_mapping/pollers/stream_poller.py +1 -1
- localstack/services/lambda_/invocation/assignment.py +4 -1
- localstack/services/lambda_/invocation/execution_environment.py +21 -2
- localstack/services/lambda_/invocation/lambda_models.py +27 -2
- localstack/services/lambda_/invocation/lambda_service.py +51 -3
- localstack/services/lambda_/invocation/models.py +9 -1
- localstack/services/lambda_/invocation/version_manager.py +18 -3
- localstack/services/lambda_/packages.py +1 -1
- localstack/services/lambda_/provider.py +240 -96
- localstack/services/lambda_/resource_providers/aws_lambda_function.py +33 -1
- localstack/services/lambda_/runtimes.py +10 -3
- localstack/services/logs/provider.py +45 -19
- localstack/services/opensearch/provider.py +53 -3
- localstack/services/resource_groups/provider.py +5 -1
- localstack/services/resourcegroupstaggingapi/provider.py +6 -1
- localstack/services/s3/provider.py +29 -16
- localstack/services/s3/utils.py +35 -14
- localstack/services/s3control/provider.py +101 -2
- localstack/services/s3control/validation.py +50 -0
- localstack/services/sns/constants.py +3 -1
- localstack/services/sns/publisher.py +15 -6
- localstack/services/sns/v2/models.py +30 -1
- localstack/services/sns/v2/provider.py +794 -31
- localstack/services/sns/v2/utils.py +20 -0
- localstack/services/sqs/models.py +37 -10
- localstack/services/stepfunctions/asl/component/common/path/result_path.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/execute_state.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_map/state_map.py +0 -1
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/lambda_eval_utils.py +8 -8
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/{mock_eval_utils.py → local_mock_eval_utils.py} +13 -9
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service.py +6 -6
- localstack/services/stepfunctions/asl/component/state/state_execution/state_task/service/state_task_service_callback.py +1 -1
- localstack/services/stepfunctions/asl/component/state/state_fail/state_fail.py +4 -0
- localstack/services/stepfunctions/asl/component/test_state/state/base_mock.py +118 -0
- localstack/services/stepfunctions/asl/component/test_state/state/common.py +82 -0
- localstack/services/stepfunctions/asl/component/test_state/state/execution.py +139 -0
- localstack/services/stepfunctions/asl/component/test_state/state/map.py +77 -0
- localstack/services/stepfunctions/asl/component/test_state/state/task.py +44 -0
- localstack/services/stepfunctions/asl/eval/environment.py +30 -22
- localstack/services/stepfunctions/asl/eval/states.py +1 -1
- localstack/services/stepfunctions/asl/eval/test_state/environment.py +49 -9
- localstack/services/stepfunctions/asl/eval/test_state/program_state.py +22 -0
- localstack/services/stepfunctions/asl/jsonata/jsonata.py +5 -1
- localstack/services/stepfunctions/asl/parse/preprocessor.py +67 -24
- localstack/services/stepfunctions/asl/parse/test_state/asl_parser.py +5 -4
- localstack/services/stepfunctions/asl/parse/test_state/preprocessor.py +222 -31
- localstack/services/stepfunctions/asl/static_analyser/test_state/test_state_analyser.py +170 -22
- localstack/services/stepfunctions/backend/execution.py +6 -6
- localstack/services/stepfunctions/backend/execution_worker.py +5 -5
- localstack/services/stepfunctions/backend/test_state/execution.py +36 -0
- localstack/services/stepfunctions/backend/test_state/execution_worker.py +33 -1
- localstack/services/stepfunctions/backend/test_state/test_state_mock.py +127 -0
- localstack/services/stepfunctions/local_mocking/__init__.py +9 -0
- localstack/services/stepfunctions/{mocking → local_mocking}/mock_config.py +24 -17
- localstack/services/stepfunctions/provider.py +78 -27
- localstack/services/stepfunctions/test_state/mock_config.py +47 -0
- localstack/testing/pytest/fixtures.py +28 -0
- localstack/testing/snapshots/transformer_utility.py +7 -0
- localstack/testing/testselection/matching.py +0 -1
- localstack/utils/analytics/publisher.py +37 -155
- localstack/utils/analytics/service_request_aggregator.py +6 -4
- localstack/utils/aws/arns.py +7 -0
- localstack/utils/aws/client_types.py +0 -8
- localstack/utils/batching.py +258 -0
- localstack/utils/catalog/catalog_loader.py +111 -3
- localstack/utils/collections.py +23 -11
- localstack/utils/crypto.py +109 -0
- localstack/version.py +2 -2
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/METADATA +7 -6
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/RECORD +149 -141
- localstack_core-4.11.2.dev14.dist-info/plux.json +1 -0
- localstack/services/stepfunctions/mocking/__init__.py +0 -0
- localstack/utils/batch_policy.py +0 -124
- localstack_core-4.10.1.dev7.dist-info/plux.json +0 -1
- /localstack/services/stepfunctions/{mocking → local_mocking}/mock_config_file.py +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.10.1.dev7.data → localstack_core-4.11.2.dev14.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/WHEEL +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.10.1.dev7.dist-info → localstack_core-4.11.2.dev14.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
from collections.abc import Iterable
|
|
1
2
|
from datetime import datetime
|
|
2
3
|
from enum import StrEnum
|
|
3
|
-
from typing import IO,
|
|
4
|
+
from typing import IO, TypedDict
|
|
4
5
|
|
|
5
6
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
7
|
|
|
@@ -28,6 +29,13 @@ class ApiKeysFormat(StrEnum):
|
|
|
28
29
|
csv = "csv"
|
|
29
30
|
|
|
30
31
|
|
|
32
|
+
class ApiStatus(StrEnum):
|
|
33
|
+
UPDATING = "UPDATING"
|
|
34
|
+
AVAILABLE = "AVAILABLE"
|
|
35
|
+
PENDING = "PENDING"
|
|
36
|
+
FAILED = "FAILED"
|
|
37
|
+
|
|
38
|
+
|
|
31
39
|
class AuthorizerType(StrEnum):
|
|
32
40
|
TOKEN = "TOKEN"
|
|
33
41
|
REQUEST = "REQUEST"
|
|
@@ -84,6 +92,12 @@ class DomainNameStatus(StrEnum):
|
|
|
84
92
|
PENDING = "PENDING"
|
|
85
93
|
PENDING_CERTIFICATE_REIMPORT = "PENDING_CERTIFICATE_REIMPORT"
|
|
86
94
|
PENDING_OWNERSHIP_VERIFICATION = "PENDING_OWNERSHIP_VERIFICATION"
|
|
95
|
+
FAILED = "FAILED"
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class EndpointAccessMode(StrEnum):
|
|
99
|
+
BASIC = "BASIC"
|
|
100
|
+
STRICT = "STRICT"
|
|
87
101
|
|
|
88
102
|
|
|
89
103
|
class EndpointType(StrEnum):
|
|
@@ -159,6 +173,11 @@ class ResourceOwner(StrEnum):
|
|
|
159
173
|
OTHER_ACCOUNTS = "OTHER_ACCOUNTS"
|
|
160
174
|
|
|
161
175
|
|
|
176
|
+
class ResponseTransferMode(StrEnum):
|
|
177
|
+
BUFFERED = "BUFFERED"
|
|
178
|
+
STREAM = "STREAM"
|
|
179
|
+
|
|
180
|
+
|
|
162
181
|
class RoutingMode(StrEnum):
|
|
163
182
|
BASE_PATH_MAPPING_ONLY = "BASE_PATH_MAPPING_ONLY"
|
|
164
183
|
ROUTING_RULE_ONLY = "ROUTING_RULE_ONLY"
|
|
@@ -168,6 +187,15 @@ class RoutingMode(StrEnum):
|
|
|
168
187
|
class SecurityPolicy(StrEnum):
|
|
169
188
|
TLS_1_0 = "TLS_1_0"
|
|
170
189
|
TLS_1_2 = "TLS_1_2"
|
|
190
|
+
SecurityPolicy_TLS13_1_3_2025_09 = "SecurityPolicy_TLS13_1_3_2025_09"
|
|
191
|
+
SecurityPolicy_TLS13_1_3_FIPS_2025_09 = "SecurityPolicy_TLS13_1_3_FIPS_2025_09"
|
|
192
|
+
SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09 = "SecurityPolicy_TLS13_1_2_PFS_PQ_2025_09"
|
|
193
|
+
SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09 = "SecurityPolicy_TLS13_1_2_FIPS_PQ_2025_09"
|
|
194
|
+
SecurityPolicy_TLS13_1_2_PQ_2025_09 = "SecurityPolicy_TLS13_1_2_PQ_2025_09"
|
|
195
|
+
SecurityPolicy_TLS13_1_2_2021_06 = "SecurityPolicy_TLS13_1_2_2021_06"
|
|
196
|
+
SecurityPolicy_TLS13_2025_EDGE = "SecurityPolicy_TLS13_2025_EDGE"
|
|
197
|
+
SecurityPolicy_TLS12_PFS_2025_EDGE = "SecurityPolicy_TLS12_PFS_2025_EDGE"
|
|
198
|
+
SecurityPolicy_TLS12_2018_EDGE = "SecurityPolicy_TLS12_2018_EDGE"
|
|
171
199
|
|
|
172
200
|
|
|
173
201
|
class UnauthorizedCacheControlHeaderStrategy(StrEnum):
|
|
@@ -199,7 +227,7 @@ class LimitExceededException(ServiceException):
|
|
|
199
227
|
code: str = "LimitExceededException"
|
|
200
228
|
sender_fault: bool = False
|
|
201
229
|
status_code: int = 429
|
|
202
|
-
retryAfterSeconds:
|
|
230
|
+
retryAfterSeconds: String | None
|
|
203
231
|
|
|
204
232
|
|
|
205
233
|
class NotFoundException(ServiceException):
|
|
@@ -212,14 +240,14 @@ class ServiceUnavailableException(ServiceException):
|
|
|
212
240
|
code: str = "ServiceUnavailableException"
|
|
213
241
|
sender_fault: bool = False
|
|
214
242
|
status_code: int = 503
|
|
215
|
-
retryAfterSeconds:
|
|
243
|
+
retryAfterSeconds: String | None
|
|
216
244
|
|
|
217
245
|
|
|
218
246
|
class TooManyRequestsException(ServiceException):
|
|
219
247
|
code: str = "TooManyRequestsException"
|
|
220
248
|
sender_fault: bool = False
|
|
221
249
|
status_code: int = 429
|
|
222
|
-
retryAfterSeconds:
|
|
250
|
+
retryAfterSeconds: String | None
|
|
223
251
|
|
|
224
252
|
|
|
225
253
|
class UnauthorizedException(ServiceException):
|
|
@@ -229,194 +257,194 @@ class UnauthorizedException(ServiceException):
|
|
|
229
257
|
|
|
230
258
|
|
|
231
259
|
class AccessLogSettings(TypedDict, total=False):
|
|
232
|
-
format:
|
|
233
|
-
destinationArn:
|
|
260
|
+
format: String | None
|
|
261
|
+
destinationArn: String | None
|
|
234
262
|
|
|
235
263
|
|
|
236
|
-
ListOfString =
|
|
264
|
+
ListOfString = list[String]
|
|
237
265
|
|
|
238
266
|
|
|
239
267
|
class ThrottleSettings(TypedDict, total=False):
|
|
240
|
-
burstLimit:
|
|
241
|
-
rateLimit:
|
|
268
|
+
burstLimit: Integer | None
|
|
269
|
+
rateLimit: Double | None
|
|
242
270
|
|
|
243
271
|
|
|
244
272
|
class Account(TypedDict, total=False):
|
|
245
|
-
cloudwatchRoleArn:
|
|
246
|
-
throttleSettings:
|
|
247
|
-
features:
|
|
248
|
-
apiKeyVersion:
|
|
273
|
+
cloudwatchRoleArn: String | None
|
|
274
|
+
throttleSettings: ThrottleSettings | None
|
|
275
|
+
features: ListOfString | None
|
|
276
|
+
apiKeyVersion: String | None
|
|
249
277
|
|
|
250
278
|
|
|
251
|
-
MapOfStringToString =
|
|
279
|
+
MapOfStringToString = dict[String, String]
|
|
252
280
|
Timestamp = datetime
|
|
253
281
|
|
|
254
282
|
|
|
255
283
|
class ApiKey(TypedDict, total=False):
|
|
256
|
-
id:
|
|
257
|
-
value:
|
|
258
|
-
name:
|
|
259
|
-
customerId:
|
|
260
|
-
description:
|
|
261
|
-
enabled:
|
|
262
|
-
createdDate:
|
|
263
|
-
lastUpdatedDate:
|
|
264
|
-
stageKeys:
|
|
265
|
-
tags:
|
|
284
|
+
id: String | None
|
|
285
|
+
value: String | None
|
|
286
|
+
name: String | None
|
|
287
|
+
customerId: String | None
|
|
288
|
+
description: String | None
|
|
289
|
+
enabled: Boolean | None
|
|
290
|
+
createdDate: Timestamp | None
|
|
291
|
+
lastUpdatedDate: Timestamp | None
|
|
292
|
+
stageKeys: ListOfString | None
|
|
293
|
+
tags: MapOfStringToString | None
|
|
266
294
|
|
|
267
295
|
|
|
268
296
|
class ApiKeyIds(TypedDict, total=False):
|
|
269
|
-
ids:
|
|
270
|
-
warnings:
|
|
297
|
+
ids: ListOfString | None
|
|
298
|
+
warnings: ListOfString | None
|
|
271
299
|
|
|
272
300
|
|
|
273
|
-
ListOfApiKey =
|
|
301
|
+
ListOfApiKey = list[ApiKey]
|
|
274
302
|
|
|
275
303
|
|
|
276
304
|
class ApiKeys(TypedDict, total=False):
|
|
277
|
-
warnings:
|
|
278
|
-
position:
|
|
279
|
-
items:
|
|
305
|
+
warnings: ListOfString | None
|
|
306
|
+
position: String | None
|
|
307
|
+
items: ListOfApiKey | None
|
|
280
308
|
|
|
281
309
|
|
|
282
|
-
MapOfApiStageThrottleSettings =
|
|
310
|
+
MapOfApiStageThrottleSettings = dict[String, ThrottleSettings]
|
|
283
311
|
|
|
284
312
|
|
|
285
313
|
class ApiStage(TypedDict, total=False):
|
|
286
|
-
apiId:
|
|
287
|
-
stage:
|
|
288
|
-
throttle:
|
|
314
|
+
apiId: String | None
|
|
315
|
+
stage: String | None
|
|
316
|
+
throttle: MapOfApiStageThrottleSettings | None
|
|
289
317
|
|
|
290
318
|
|
|
291
|
-
ListOfARNs =
|
|
319
|
+
ListOfARNs = list[ProviderARN]
|
|
292
320
|
|
|
293
321
|
|
|
294
322
|
class Authorizer(TypedDict, total=False):
|
|
295
|
-
id:
|
|
296
|
-
name:
|
|
297
|
-
type:
|
|
298
|
-
providerARNs:
|
|
299
|
-
authType:
|
|
300
|
-
authorizerUri:
|
|
301
|
-
authorizerCredentials:
|
|
302
|
-
identitySource:
|
|
303
|
-
identityValidationExpression:
|
|
304
|
-
authorizerResultTtlInSeconds:
|
|
323
|
+
id: String | None
|
|
324
|
+
name: String | None
|
|
325
|
+
type: AuthorizerType | None
|
|
326
|
+
providerARNs: ListOfARNs | None
|
|
327
|
+
authType: String | None
|
|
328
|
+
authorizerUri: String | None
|
|
329
|
+
authorizerCredentials: String | None
|
|
330
|
+
identitySource: String | None
|
|
331
|
+
identityValidationExpression: String | None
|
|
332
|
+
authorizerResultTtlInSeconds: NullableInteger | None
|
|
305
333
|
|
|
306
334
|
|
|
307
|
-
ListOfAuthorizer =
|
|
335
|
+
ListOfAuthorizer = list[Authorizer]
|
|
308
336
|
|
|
309
337
|
|
|
310
338
|
class Authorizers(TypedDict, total=False):
|
|
311
|
-
position:
|
|
312
|
-
items:
|
|
339
|
+
position: String | None
|
|
340
|
+
items: ListOfAuthorizer | None
|
|
313
341
|
|
|
314
342
|
|
|
315
343
|
class BasePathMapping(TypedDict, total=False):
|
|
316
|
-
basePath:
|
|
317
|
-
restApiId:
|
|
318
|
-
stage:
|
|
344
|
+
basePath: String | None
|
|
345
|
+
restApiId: String | None
|
|
346
|
+
stage: String | None
|
|
319
347
|
|
|
320
348
|
|
|
321
|
-
ListOfBasePathMapping =
|
|
349
|
+
ListOfBasePathMapping = list[BasePathMapping]
|
|
322
350
|
|
|
323
351
|
|
|
324
352
|
class BasePathMappings(TypedDict, total=False):
|
|
325
|
-
position:
|
|
326
|
-
items:
|
|
353
|
+
position: String | None
|
|
354
|
+
items: ListOfBasePathMapping | None
|
|
327
355
|
|
|
328
356
|
|
|
329
357
|
Blob = bytes
|
|
330
358
|
|
|
331
359
|
|
|
332
360
|
class CanarySettings(TypedDict, total=False):
|
|
333
|
-
percentTraffic:
|
|
334
|
-
deploymentId:
|
|
335
|
-
stageVariableOverrides:
|
|
336
|
-
useStageCache:
|
|
361
|
+
percentTraffic: Double | None
|
|
362
|
+
deploymentId: String | None
|
|
363
|
+
stageVariableOverrides: MapOfStringToString | None
|
|
364
|
+
useStageCache: Boolean | None
|
|
337
365
|
|
|
338
366
|
|
|
339
367
|
class ClientCertificate(TypedDict, total=False):
|
|
340
|
-
clientCertificateId:
|
|
341
|
-
description:
|
|
342
|
-
pemEncodedCertificate:
|
|
343
|
-
createdDate:
|
|
344
|
-
expirationDate:
|
|
345
|
-
tags:
|
|
368
|
+
clientCertificateId: String | None
|
|
369
|
+
description: String | None
|
|
370
|
+
pemEncodedCertificate: String | None
|
|
371
|
+
createdDate: Timestamp | None
|
|
372
|
+
expirationDate: Timestamp | None
|
|
373
|
+
tags: MapOfStringToString | None
|
|
346
374
|
|
|
347
375
|
|
|
348
|
-
ListOfClientCertificate =
|
|
376
|
+
ListOfClientCertificate = list[ClientCertificate]
|
|
349
377
|
|
|
350
378
|
|
|
351
379
|
class ClientCertificates(TypedDict, total=False):
|
|
352
|
-
position:
|
|
353
|
-
items:
|
|
380
|
+
position: String | None
|
|
381
|
+
items: ListOfClientCertificate | None
|
|
354
382
|
|
|
355
383
|
|
|
356
384
|
class StageKey(TypedDict, total=False):
|
|
357
|
-
restApiId:
|
|
358
|
-
stageName:
|
|
385
|
+
restApiId: String | None
|
|
386
|
+
stageName: String | None
|
|
359
387
|
|
|
360
388
|
|
|
361
|
-
ListOfStageKeys =
|
|
389
|
+
ListOfStageKeys = list[StageKey]
|
|
362
390
|
|
|
363
391
|
|
|
364
392
|
class CreateApiKeyRequest(ServiceRequest):
|
|
365
|
-
name:
|
|
366
|
-
description:
|
|
367
|
-
enabled:
|
|
368
|
-
generateDistinctId:
|
|
369
|
-
value:
|
|
370
|
-
stageKeys:
|
|
371
|
-
customerId:
|
|
372
|
-
tags:
|
|
393
|
+
name: String | None
|
|
394
|
+
description: String | None
|
|
395
|
+
enabled: Boolean | None
|
|
396
|
+
generateDistinctId: Boolean | None
|
|
397
|
+
value: String | None
|
|
398
|
+
stageKeys: ListOfStageKeys | None
|
|
399
|
+
customerId: String | None
|
|
400
|
+
tags: MapOfStringToString | None
|
|
373
401
|
|
|
374
402
|
|
|
375
403
|
class CreateAuthorizerRequest(TypedDict, total=False):
|
|
376
404
|
restApiId: String
|
|
377
405
|
name: String
|
|
378
406
|
type: AuthorizerType
|
|
379
|
-
providerARNs:
|
|
380
|
-
authType:
|
|
381
|
-
authorizerUri:
|
|
382
|
-
authorizerCredentials:
|
|
383
|
-
identitySource:
|
|
384
|
-
identityValidationExpression:
|
|
385
|
-
authorizerResultTtlInSeconds:
|
|
407
|
+
providerARNs: ListOfARNs | None
|
|
408
|
+
authType: String | None
|
|
409
|
+
authorizerUri: String | None
|
|
410
|
+
authorizerCredentials: String | None
|
|
411
|
+
identitySource: String | None
|
|
412
|
+
identityValidationExpression: String | None
|
|
413
|
+
authorizerResultTtlInSeconds: NullableInteger | None
|
|
386
414
|
|
|
387
415
|
|
|
388
416
|
class CreateBasePathMappingRequest(ServiceRequest):
|
|
389
417
|
domainName: String
|
|
390
|
-
domainNameId:
|
|
391
|
-
basePath:
|
|
418
|
+
domainNameId: String | None
|
|
419
|
+
basePath: String | None
|
|
392
420
|
restApiId: String
|
|
393
|
-
stage:
|
|
421
|
+
stage: String | None
|
|
394
422
|
|
|
395
423
|
|
|
396
424
|
class DeploymentCanarySettings(TypedDict, total=False):
|
|
397
|
-
percentTraffic:
|
|
398
|
-
stageVariableOverrides:
|
|
399
|
-
useStageCache:
|
|
425
|
+
percentTraffic: Double | None
|
|
426
|
+
stageVariableOverrides: MapOfStringToString | None
|
|
427
|
+
useStageCache: Boolean | None
|
|
400
428
|
|
|
401
429
|
|
|
402
430
|
class CreateDeploymentRequest(ServiceRequest):
|
|
403
431
|
restApiId: String
|
|
404
|
-
stageName:
|
|
405
|
-
stageDescription:
|
|
406
|
-
description:
|
|
407
|
-
cacheClusterEnabled:
|
|
408
|
-
cacheClusterSize:
|
|
409
|
-
variables:
|
|
410
|
-
canarySettings:
|
|
411
|
-
tracingEnabled:
|
|
432
|
+
stageName: String | None
|
|
433
|
+
stageDescription: String | None
|
|
434
|
+
description: String | None
|
|
435
|
+
cacheClusterEnabled: NullableBoolean | None
|
|
436
|
+
cacheClusterSize: CacheClusterSize | None
|
|
437
|
+
variables: MapOfStringToString | None
|
|
438
|
+
canarySettings: DeploymentCanarySettings | None
|
|
439
|
+
tracingEnabled: NullableBoolean | None
|
|
412
440
|
|
|
413
441
|
|
|
414
442
|
class DocumentationPartLocation(TypedDict, total=False):
|
|
415
443
|
type: DocumentationPartType
|
|
416
|
-
path:
|
|
417
|
-
method:
|
|
418
|
-
statusCode:
|
|
419
|
-
name:
|
|
444
|
+
path: String | None
|
|
445
|
+
method: String | None
|
|
446
|
+
statusCode: DocumentationPartLocationStatusCode | None
|
|
447
|
+
name: String | None
|
|
420
448
|
|
|
421
449
|
|
|
422
450
|
class CreateDocumentationPartRequest(ServiceRequest):
|
|
@@ -428,62 +456,63 @@ class CreateDocumentationPartRequest(ServiceRequest):
|
|
|
428
456
|
class CreateDocumentationVersionRequest(ServiceRequest):
|
|
429
457
|
restApiId: String
|
|
430
458
|
documentationVersion: String
|
|
431
|
-
stageName:
|
|
432
|
-
description:
|
|
459
|
+
stageName: String | None
|
|
460
|
+
description: String | None
|
|
433
461
|
|
|
434
462
|
|
|
435
463
|
class CreateDomainNameAccessAssociationRequest(ServiceRequest):
|
|
436
464
|
domainNameArn: String
|
|
437
465
|
accessAssociationSourceType: AccessAssociationSourceType
|
|
438
466
|
accessAssociationSource: String
|
|
439
|
-
tags:
|
|
467
|
+
tags: MapOfStringToString | None
|
|
440
468
|
|
|
441
469
|
|
|
442
470
|
class MutualTlsAuthenticationInput(TypedDict, total=False):
|
|
443
|
-
truststoreUri:
|
|
444
|
-
truststoreVersion:
|
|
471
|
+
truststoreUri: String | None
|
|
472
|
+
truststoreVersion: String | None
|
|
445
473
|
|
|
446
474
|
|
|
447
|
-
ListOfEndpointType =
|
|
475
|
+
ListOfEndpointType = list[EndpointType]
|
|
448
476
|
|
|
449
477
|
|
|
450
478
|
class EndpointConfiguration(TypedDict, total=False):
|
|
451
|
-
types:
|
|
452
|
-
ipAddressType:
|
|
453
|
-
vpcEndpointIds:
|
|
479
|
+
types: ListOfEndpointType | None
|
|
480
|
+
ipAddressType: IpAddressType | None
|
|
481
|
+
vpcEndpointIds: ListOfString | None
|
|
454
482
|
|
|
455
483
|
|
|
456
484
|
class CreateDomainNameRequest(ServiceRequest):
|
|
457
485
|
domainName: String
|
|
458
|
-
certificateName:
|
|
459
|
-
certificateBody:
|
|
460
|
-
certificatePrivateKey:
|
|
461
|
-
certificateChain:
|
|
462
|
-
certificateArn:
|
|
463
|
-
regionalCertificateName:
|
|
464
|
-
regionalCertificateArn:
|
|
465
|
-
endpointConfiguration:
|
|
466
|
-
tags:
|
|
467
|
-
securityPolicy:
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
486
|
+
certificateName: String | None
|
|
487
|
+
certificateBody: String | None
|
|
488
|
+
certificatePrivateKey: String | None
|
|
489
|
+
certificateChain: String | None
|
|
490
|
+
certificateArn: String | None
|
|
491
|
+
regionalCertificateName: String | None
|
|
492
|
+
regionalCertificateArn: String | None
|
|
493
|
+
endpointConfiguration: EndpointConfiguration | None
|
|
494
|
+
tags: MapOfStringToString | None
|
|
495
|
+
securityPolicy: SecurityPolicy | None
|
|
496
|
+
endpointAccessMode: EndpointAccessMode | None
|
|
497
|
+
mutualTlsAuthentication: MutualTlsAuthenticationInput | None
|
|
498
|
+
ownershipVerificationCertificateArn: String | None
|
|
499
|
+
policy: String | None
|
|
500
|
+
routingMode: RoutingMode | None
|
|
472
501
|
|
|
473
502
|
|
|
474
503
|
class CreateModelRequest(ServiceRequest):
|
|
475
504
|
restApiId: String
|
|
476
505
|
name: String
|
|
477
|
-
description:
|
|
478
|
-
schema:
|
|
506
|
+
description: String | None
|
|
507
|
+
schema: String | None
|
|
479
508
|
contentType: String
|
|
480
509
|
|
|
481
510
|
|
|
482
511
|
class CreateRequestValidatorRequest(ServiceRequest):
|
|
483
512
|
restApiId: String
|
|
484
|
-
name:
|
|
485
|
-
validateRequestBody:
|
|
486
|
-
validateRequestParameters:
|
|
513
|
+
name: String | None
|
|
514
|
+
validateRequestBody: Boolean | None
|
|
515
|
+
validateRequestParameters: Boolean | None
|
|
487
516
|
|
|
488
517
|
|
|
489
518
|
class CreateResourceRequest(ServiceRequest):
|
|
@@ -494,30 +523,32 @@ class CreateResourceRequest(ServiceRequest):
|
|
|
494
523
|
|
|
495
524
|
class CreateRestApiRequest(ServiceRequest):
|
|
496
525
|
name: String
|
|
497
|
-
description:
|
|
498
|
-
version:
|
|
499
|
-
cloneFrom:
|
|
500
|
-
binaryMediaTypes:
|
|
501
|
-
minimumCompressionSize:
|
|
502
|
-
apiKeySource:
|
|
503
|
-
endpointConfiguration:
|
|
504
|
-
policy:
|
|
505
|
-
tags:
|
|
506
|
-
disableExecuteApiEndpoint:
|
|
526
|
+
description: String | None
|
|
527
|
+
version: String | None
|
|
528
|
+
cloneFrom: String | None
|
|
529
|
+
binaryMediaTypes: ListOfString | None
|
|
530
|
+
minimumCompressionSize: NullableInteger | None
|
|
531
|
+
apiKeySource: ApiKeySourceType | None
|
|
532
|
+
endpointConfiguration: EndpointConfiguration | None
|
|
533
|
+
policy: String | None
|
|
534
|
+
tags: MapOfStringToString | None
|
|
535
|
+
disableExecuteApiEndpoint: Boolean | None
|
|
536
|
+
securityPolicy: SecurityPolicy | None
|
|
537
|
+
endpointAccessMode: EndpointAccessMode | None
|
|
507
538
|
|
|
508
539
|
|
|
509
540
|
class CreateStageRequest(ServiceRequest):
|
|
510
541
|
restApiId: String
|
|
511
542
|
stageName: String
|
|
512
543
|
deploymentId: String
|
|
513
|
-
description:
|
|
514
|
-
cacheClusterEnabled:
|
|
515
|
-
cacheClusterSize:
|
|
516
|
-
variables:
|
|
517
|
-
documentationVersion:
|
|
518
|
-
canarySettings:
|
|
519
|
-
tracingEnabled:
|
|
520
|
-
tags:
|
|
544
|
+
description: String | None
|
|
545
|
+
cacheClusterEnabled: Boolean | None
|
|
546
|
+
cacheClusterSize: CacheClusterSize | None
|
|
547
|
+
variables: MapOfStringToString | None
|
|
548
|
+
documentationVersion: String | None
|
|
549
|
+
canarySettings: CanarySettings | None
|
|
550
|
+
tracingEnabled: Boolean | None
|
|
551
|
+
tags: MapOfStringToString | None
|
|
521
552
|
|
|
522
553
|
|
|
523
554
|
class CreateUsagePlanKeyRequest(ServiceRequest):
|
|
@@ -527,28 +558,28 @@ class CreateUsagePlanKeyRequest(ServiceRequest):
|
|
|
527
558
|
|
|
528
559
|
|
|
529
560
|
class QuotaSettings(TypedDict, total=False):
|
|
530
|
-
limit:
|
|
531
|
-
offset:
|
|
532
|
-
period:
|
|
561
|
+
limit: Integer | None
|
|
562
|
+
offset: Integer | None
|
|
563
|
+
period: QuotaPeriodType | None
|
|
533
564
|
|
|
534
565
|
|
|
535
|
-
ListOfApiStage =
|
|
566
|
+
ListOfApiStage = list[ApiStage]
|
|
536
567
|
|
|
537
568
|
|
|
538
569
|
class CreateUsagePlanRequest(ServiceRequest):
|
|
539
570
|
name: String
|
|
540
|
-
description:
|
|
541
|
-
apiStages:
|
|
542
|
-
throttle:
|
|
543
|
-
quota:
|
|
544
|
-
tags:
|
|
571
|
+
description: String | None
|
|
572
|
+
apiStages: ListOfApiStage | None
|
|
573
|
+
throttle: ThrottleSettings | None
|
|
574
|
+
quota: QuotaSettings | None
|
|
575
|
+
tags: MapOfStringToString | None
|
|
545
576
|
|
|
546
577
|
|
|
547
578
|
class CreateVpcLinkRequest(ServiceRequest):
|
|
548
579
|
name: String
|
|
549
|
-
description:
|
|
580
|
+
description: String | None
|
|
550
581
|
targetArns: ListOfString
|
|
551
|
-
tags:
|
|
582
|
+
tags: MapOfStringToString | None
|
|
552
583
|
|
|
553
584
|
|
|
554
585
|
class DeleteApiKeyRequest(ServiceRequest):
|
|
@@ -562,7 +593,7 @@ class DeleteAuthorizerRequest(ServiceRequest):
|
|
|
562
593
|
|
|
563
594
|
class DeleteBasePathMappingRequest(ServiceRequest):
|
|
564
595
|
domainName: String
|
|
565
|
-
domainNameId:
|
|
596
|
+
domainNameId: String | None
|
|
566
597
|
basePath: String
|
|
567
598
|
|
|
568
599
|
|
|
@@ -591,7 +622,7 @@ class DeleteDomainNameAccessAssociationRequest(ServiceRequest):
|
|
|
591
622
|
|
|
592
623
|
class DeleteDomainNameRequest(ServiceRequest):
|
|
593
624
|
domainName: String
|
|
594
|
-
domainNameId:
|
|
625
|
+
domainNameId: String | None
|
|
595
626
|
|
|
596
627
|
|
|
597
628
|
class DeleteGatewayResponseRequest(ServiceRequest):
|
|
@@ -663,121 +694,122 @@ class DeleteVpcLinkRequest(ServiceRequest):
|
|
|
663
694
|
|
|
664
695
|
|
|
665
696
|
class MethodSnapshot(TypedDict, total=False):
|
|
666
|
-
authorizationType:
|
|
667
|
-
apiKeyRequired:
|
|
697
|
+
authorizationType: String | None
|
|
698
|
+
apiKeyRequired: Boolean | None
|
|
668
699
|
|
|
669
700
|
|
|
670
|
-
MapOfMethodSnapshot =
|
|
671
|
-
PathToMapOfMethodSnapshot =
|
|
701
|
+
MapOfMethodSnapshot = dict[String, MethodSnapshot]
|
|
702
|
+
PathToMapOfMethodSnapshot = dict[String, MapOfMethodSnapshot]
|
|
672
703
|
|
|
673
704
|
|
|
674
705
|
class Deployment(TypedDict, total=False):
|
|
675
|
-
id:
|
|
676
|
-
description:
|
|
677
|
-
createdDate:
|
|
678
|
-
apiSummary:
|
|
706
|
+
id: String | None
|
|
707
|
+
description: String | None
|
|
708
|
+
createdDate: Timestamp | None
|
|
709
|
+
apiSummary: PathToMapOfMethodSnapshot | None
|
|
679
710
|
|
|
680
711
|
|
|
681
|
-
ListOfDeployment =
|
|
712
|
+
ListOfDeployment = list[Deployment]
|
|
682
713
|
|
|
683
714
|
|
|
684
715
|
class Deployments(TypedDict, total=False):
|
|
685
|
-
position:
|
|
686
|
-
items:
|
|
716
|
+
position: String | None
|
|
717
|
+
items: ListOfDeployment | None
|
|
687
718
|
|
|
688
719
|
|
|
689
720
|
class DocumentationPart(TypedDict, total=False):
|
|
690
|
-
id:
|
|
691
|
-
location:
|
|
692
|
-
properties:
|
|
721
|
+
id: String | None
|
|
722
|
+
location: DocumentationPartLocation | None
|
|
723
|
+
properties: String | None
|
|
693
724
|
|
|
694
725
|
|
|
695
726
|
class DocumentationPartIds(TypedDict, total=False):
|
|
696
|
-
ids:
|
|
697
|
-
warnings:
|
|
727
|
+
ids: ListOfString | None
|
|
728
|
+
warnings: ListOfString | None
|
|
698
729
|
|
|
699
730
|
|
|
700
|
-
ListOfDocumentationPart =
|
|
731
|
+
ListOfDocumentationPart = list[DocumentationPart]
|
|
701
732
|
|
|
702
733
|
|
|
703
734
|
class DocumentationParts(TypedDict, total=False):
|
|
704
|
-
position:
|
|
705
|
-
items:
|
|
735
|
+
position: String | None
|
|
736
|
+
items: ListOfDocumentationPart | None
|
|
706
737
|
|
|
707
738
|
|
|
708
739
|
class DocumentationVersion(TypedDict, total=False):
|
|
709
|
-
version:
|
|
710
|
-
createdDate:
|
|
711
|
-
description:
|
|
740
|
+
version: String | None
|
|
741
|
+
createdDate: Timestamp | None
|
|
742
|
+
description: String | None
|
|
712
743
|
|
|
713
744
|
|
|
714
|
-
ListOfDocumentationVersion =
|
|
745
|
+
ListOfDocumentationVersion = list[DocumentationVersion]
|
|
715
746
|
|
|
716
747
|
|
|
717
748
|
class DocumentationVersions(TypedDict, total=False):
|
|
718
|
-
position:
|
|
719
|
-
items:
|
|
749
|
+
position: String | None
|
|
750
|
+
items: ListOfDocumentationVersion | None
|
|
720
751
|
|
|
721
752
|
|
|
722
753
|
class MutualTlsAuthentication(TypedDict, total=False):
|
|
723
|
-
truststoreUri:
|
|
724
|
-
truststoreVersion:
|
|
725
|
-
truststoreWarnings:
|
|
754
|
+
truststoreUri: String | None
|
|
755
|
+
truststoreVersion: String | None
|
|
756
|
+
truststoreWarnings: ListOfString | None
|
|
726
757
|
|
|
727
758
|
|
|
728
759
|
class DomainName(TypedDict, total=False):
|
|
729
|
-
domainName:
|
|
730
|
-
domainNameId:
|
|
731
|
-
domainNameArn:
|
|
732
|
-
certificateName:
|
|
733
|
-
certificateArn:
|
|
734
|
-
certificateUploadDate:
|
|
735
|
-
regionalDomainName:
|
|
736
|
-
regionalHostedZoneId:
|
|
737
|
-
regionalCertificateName:
|
|
738
|
-
regionalCertificateArn:
|
|
739
|
-
distributionDomainName:
|
|
740
|
-
distributionHostedZoneId:
|
|
741
|
-
endpointConfiguration:
|
|
742
|
-
domainNameStatus:
|
|
743
|
-
domainNameStatusMessage:
|
|
744
|
-
securityPolicy:
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
760
|
+
domainName: String | None
|
|
761
|
+
domainNameId: String | None
|
|
762
|
+
domainNameArn: String | None
|
|
763
|
+
certificateName: String | None
|
|
764
|
+
certificateArn: String | None
|
|
765
|
+
certificateUploadDate: Timestamp | None
|
|
766
|
+
regionalDomainName: String | None
|
|
767
|
+
regionalHostedZoneId: String | None
|
|
768
|
+
regionalCertificateName: String | None
|
|
769
|
+
regionalCertificateArn: String | None
|
|
770
|
+
distributionDomainName: String | None
|
|
771
|
+
distributionHostedZoneId: String | None
|
|
772
|
+
endpointConfiguration: EndpointConfiguration | None
|
|
773
|
+
domainNameStatus: DomainNameStatus | None
|
|
774
|
+
domainNameStatusMessage: String | None
|
|
775
|
+
securityPolicy: SecurityPolicy | None
|
|
776
|
+
endpointAccessMode: EndpointAccessMode | None
|
|
777
|
+
tags: MapOfStringToString | None
|
|
778
|
+
mutualTlsAuthentication: MutualTlsAuthentication | None
|
|
779
|
+
ownershipVerificationCertificateArn: String | None
|
|
780
|
+
managementPolicy: String | None
|
|
781
|
+
policy: String | None
|
|
782
|
+
routingMode: RoutingMode | None
|
|
751
783
|
|
|
752
784
|
|
|
753
785
|
class DomainNameAccessAssociation(TypedDict, total=False):
|
|
754
|
-
domainNameAccessAssociationArn:
|
|
755
|
-
domainNameArn:
|
|
756
|
-
accessAssociationSourceType:
|
|
757
|
-
accessAssociationSource:
|
|
758
|
-
tags:
|
|
786
|
+
domainNameAccessAssociationArn: String | None
|
|
787
|
+
domainNameArn: String | None
|
|
788
|
+
accessAssociationSourceType: AccessAssociationSourceType | None
|
|
789
|
+
accessAssociationSource: String | None
|
|
790
|
+
tags: MapOfStringToString | None
|
|
759
791
|
|
|
760
792
|
|
|
761
|
-
ListOfDomainNameAccessAssociation =
|
|
793
|
+
ListOfDomainNameAccessAssociation = list[DomainNameAccessAssociation]
|
|
762
794
|
|
|
763
795
|
|
|
764
796
|
class DomainNameAccessAssociations(TypedDict, total=False):
|
|
765
|
-
position:
|
|
766
|
-
items:
|
|
797
|
+
position: String | None
|
|
798
|
+
items: ListOfDomainNameAccessAssociation | None
|
|
767
799
|
|
|
768
800
|
|
|
769
|
-
ListOfDomainName =
|
|
801
|
+
ListOfDomainName = list[DomainName]
|
|
770
802
|
|
|
771
803
|
|
|
772
804
|
class DomainNames(TypedDict, total=False):
|
|
773
|
-
position:
|
|
774
|
-
items:
|
|
805
|
+
position: String | None
|
|
806
|
+
items: ListOfDomainName | None
|
|
775
807
|
|
|
776
808
|
|
|
777
809
|
class ExportResponse(TypedDict, total=False):
|
|
778
|
-
body:
|
|
779
|
-
contentType:
|
|
780
|
-
contentDisposition:
|
|
810
|
+
body: Blob | IO[Blob] | Iterable[Blob] | None
|
|
811
|
+
contentType: String | None
|
|
812
|
+
contentDisposition: String | None
|
|
781
813
|
|
|
782
814
|
|
|
783
815
|
class FlushStageAuthorizersCacheRequest(ServiceRequest):
|
|
@@ -791,24 +823,24 @@ class FlushStageCacheRequest(ServiceRequest):
|
|
|
791
823
|
|
|
792
824
|
|
|
793
825
|
class GatewayResponse(TypedDict, total=False):
|
|
794
|
-
responseType:
|
|
795
|
-
statusCode:
|
|
796
|
-
responseParameters:
|
|
797
|
-
responseTemplates:
|
|
798
|
-
defaultResponse:
|
|
826
|
+
responseType: GatewayResponseType | None
|
|
827
|
+
statusCode: StatusCode | None
|
|
828
|
+
responseParameters: MapOfStringToString | None
|
|
829
|
+
responseTemplates: MapOfStringToString | None
|
|
830
|
+
defaultResponse: Boolean | None
|
|
799
831
|
|
|
800
832
|
|
|
801
|
-
ListOfGatewayResponse =
|
|
833
|
+
ListOfGatewayResponse = list[GatewayResponse]
|
|
802
834
|
|
|
803
835
|
|
|
804
836
|
class GatewayResponses(TypedDict, total=False):
|
|
805
|
-
position:
|
|
806
|
-
items:
|
|
837
|
+
position: String | None
|
|
838
|
+
items: ListOfGatewayResponse | None
|
|
807
839
|
|
|
808
840
|
|
|
809
841
|
class GenerateClientCertificateRequest(ServiceRequest):
|
|
810
|
-
description:
|
|
811
|
-
tags:
|
|
842
|
+
description: String | None
|
|
843
|
+
tags: MapOfStringToString | None
|
|
812
844
|
|
|
813
845
|
|
|
814
846
|
class GetAccountRequest(ServiceRequest):
|
|
@@ -817,15 +849,15 @@ class GetAccountRequest(ServiceRequest):
|
|
|
817
849
|
|
|
818
850
|
class GetApiKeyRequest(ServiceRequest):
|
|
819
851
|
apiKey: String
|
|
820
|
-
includeValue:
|
|
852
|
+
includeValue: NullableBoolean | None
|
|
821
853
|
|
|
822
854
|
|
|
823
855
|
class GetApiKeysRequest(ServiceRequest):
|
|
824
|
-
position:
|
|
825
|
-
limit:
|
|
826
|
-
nameQuery:
|
|
827
|
-
customerId:
|
|
828
|
-
includeValues:
|
|
856
|
+
position: String | None
|
|
857
|
+
limit: NullableInteger | None
|
|
858
|
+
nameQuery: String | None
|
|
859
|
+
customerId: String | None
|
|
860
|
+
includeValues: NullableBoolean | None
|
|
829
861
|
|
|
830
862
|
|
|
831
863
|
class GetAuthorizerRequest(ServiceRequest):
|
|
@@ -835,21 +867,21 @@ class GetAuthorizerRequest(ServiceRequest):
|
|
|
835
867
|
|
|
836
868
|
class GetAuthorizersRequest(ServiceRequest):
|
|
837
869
|
restApiId: String
|
|
838
|
-
position:
|
|
839
|
-
limit:
|
|
870
|
+
position: String | None
|
|
871
|
+
limit: NullableInteger | None
|
|
840
872
|
|
|
841
873
|
|
|
842
874
|
class GetBasePathMappingRequest(ServiceRequest):
|
|
843
875
|
domainName: String
|
|
844
|
-
domainNameId:
|
|
876
|
+
domainNameId: String | None
|
|
845
877
|
basePath: String
|
|
846
878
|
|
|
847
879
|
|
|
848
880
|
class GetBasePathMappingsRequest(ServiceRequest):
|
|
849
881
|
domainName: String
|
|
850
|
-
domainNameId:
|
|
851
|
-
position:
|
|
852
|
-
limit:
|
|
882
|
+
domainNameId: String | None
|
|
883
|
+
position: String | None
|
|
884
|
+
limit: NullableInteger | None
|
|
853
885
|
|
|
854
886
|
|
|
855
887
|
class GetClientCertificateRequest(ServiceRequest):
|
|
@@ -857,20 +889,20 @@ class GetClientCertificateRequest(ServiceRequest):
|
|
|
857
889
|
|
|
858
890
|
|
|
859
891
|
class GetClientCertificatesRequest(ServiceRequest):
|
|
860
|
-
position:
|
|
861
|
-
limit:
|
|
892
|
+
position: String | None
|
|
893
|
+
limit: NullableInteger | None
|
|
862
894
|
|
|
863
895
|
|
|
864
896
|
class GetDeploymentRequest(ServiceRequest):
|
|
865
897
|
restApiId: String
|
|
866
898
|
deploymentId: String
|
|
867
|
-
embed:
|
|
899
|
+
embed: ListOfString | None
|
|
868
900
|
|
|
869
901
|
|
|
870
902
|
class GetDeploymentsRequest(ServiceRequest):
|
|
871
903
|
restApiId: String
|
|
872
|
-
position:
|
|
873
|
-
limit:
|
|
904
|
+
position: String | None
|
|
905
|
+
limit: NullableInteger | None
|
|
874
906
|
|
|
875
907
|
|
|
876
908
|
class GetDocumentationPartRequest(ServiceRequest):
|
|
@@ -880,12 +912,12 @@ class GetDocumentationPartRequest(ServiceRequest):
|
|
|
880
912
|
|
|
881
913
|
class GetDocumentationPartsRequest(TypedDict, total=False):
|
|
882
914
|
restApiId: String
|
|
883
|
-
type:
|
|
884
|
-
nameQuery:
|
|
885
|
-
path:
|
|
886
|
-
position:
|
|
887
|
-
limit:
|
|
888
|
-
locationStatus:
|
|
915
|
+
type: DocumentationPartType | None
|
|
916
|
+
nameQuery: String | None
|
|
917
|
+
path: String | None
|
|
918
|
+
position: String | None
|
|
919
|
+
limit: NullableInteger | None
|
|
920
|
+
locationStatus: LocationStatusType | None
|
|
889
921
|
|
|
890
922
|
|
|
891
923
|
class GetDocumentationVersionRequest(ServiceRequest):
|
|
@@ -895,33 +927,33 @@ class GetDocumentationVersionRequest(ServiceRequest):
|
|
|
895
927
|
|
|
896
928
|
class GetDocumentationVersionsRequest(ServiceRequest):
|
|
897
929
|
restApiId: String
|
|
898
|
-
position:
|
|
899
|
-
limit:
|
|
930
|
+
position: String | None
|
|
931
|
+
limit: NullableInteger | None
|
|
900
932
|
|
|
901
933
|
|
|
902
934
|
class GetDomainNameAccessAssociationsRequest(ServiceRequest):
|
|
903
|
-
position:
|
|
904
|
-
limit:
|
|
905
|
-
resourceOwner:
|
|
935
|
+
position: String | None
|
|
936
|
+
limit: NullableInteger | None
|
|
937
|
+
resourceOwner: ResourceOwner | None
|
|
906
938
|
|
|
907
939
|
|
|
908
940
|
class GetDomainNameRequest(ServiceRequest):
|
|
909
941
|
domainName: String
|
|
910
|
-
domainNameId:
|
|
942
|
+
domainNameId: String | None
|
|
911
943
|
|
|
912
944
|
|
|
913
945
|
class GetDomainNamesRequest(ServiceRequest):
|
|
914
|
-
position:
|
|
915
|
-
limit:
|
|
916
|
-
resourceOwner:
|
|
946
|
+
position: String | None
|
|
947
|
+
limit: NullableInteger | None
|
|
948
|
+
resourceOwner: ResourceOwner | None
|
|
917
949
|
|
|
918
950
|
|
|
919
951
|
class GetExportRequest(ServiceRequest):
|
|
920
952
|
restApiId: String
|
|
921
953
|
stageName: String
|
|
922
954
|
exportType: String
|
|
923
|
-
parameters:
|
|
924
|
-
accepts:
|
|
955
|
+
parameters: MapOfStringToString | None
|
|
956
|
+
accepts: String | None
|
|
925
957
|
|
|
926
958
|
|
|
927
959
|
class GetGatewayResponseRequest(ServiceRequest):
|
|
@@ -931,8 +963,8 @@ class GetGatewayResponseRequest(ServiceRequest):
|
|
|
931
963
|
|
|
932
964
|
class GetGatewayResponsesRequest(ServiceRequest):
|
|
933
965
|
restApiId: String
|
|
934
|
-
position:
|
|
935
|
-
limit:
|
|
966
|
+
position: String | None
|
|
967
|
+
limit: NullableInteger | None
|
|
936
968
|
|
|
937
969
|
|
|
938
970
|
class GetIntegrationRequest(ServiceRequest):
|
|
@@ -964,7 +996,7 @@ class GetMethodResponseRequest(ServiceRequest):
|
|
|
964
996
|
class GetModelRequest(ServiceRequest):
|
|
965
997
|
restApiId: String
|
|
966
998
|
modelName: String
|
|
967
|
-
flatten:
|
|
999
|
+
flatten: Boolean | None
|
|
968
1000
|
|
|
969
1001
|
|
|
970
1002
|
class GetModelTemplateRequest(ServiceRequest):
|
|
@@ -974,8 +1006,8 @@ class GetModelTemplateRequest(ServiceRequest):
|
|
|
974
1006
|
|
|
975
1007
|
class GetModelsRequest(ServiceRequest):
|
|
976
1008
|
restApiId: String
|
|
977
|
-
position:
|
|
978
|
-
limit:
|
|
1009
|
+
position: String | None
|
|
1010
|
+
limit: NullableInteger | None
|
|
979
1011
|
|
|
980
1012
|
|
|
981
1013
|
class GetRequestValidatorRequest(ServiceRequest):
|
|
@@ -985,21 +1017,21 @@ class GetRequestValidatorRequest(ServiceRequest):
|
|
|
985
1017
|
|
|
986
1018
|
class GetRequestValidatorsRequest(ServiceRequest):
|
|
987
1019
|
restApiId: String
|
|
988
|
-
position:
|
|
989
|
-
limit:
|
|
1020
|
+
position: String | None
|
|
1021
|
+
limit: NullableInteger | None
|
|
990
1022
|
|
|
991
1023
|
|
|
992
1024
|
class GetResourceRequest(ServiceRequest):
|
|
993
1025
|
restApiId: String
|
|
994
1026
|
resourceId: String
|
|
995
|
-
embed:
|
|
1027
|
+
embed: ListOfString | None
|
|
996
1028
|
|
|
997
1029
|
|
|
998
1030
|
class GetResourcesRequest(ServiceRequest):
|
|
999
1031
|
restApiId: String
|
|
1000
|
-
position:
|
|
1001
|
-
limit:
|
|
1002
|
-
embed:
|
|
1032
|
+
position: String | None
|
|
1033
|
+
limit: NullableInteger | None
|
|
1034
|
+
embed: ListOfString | None
|
|
1003
1035
|
|
|
1004
1036
|
|
|
1005
1037
|
class GetRestApiRequest(ServiceRequest):
|
|
@@ -1007,15 +1039,15 @@ class GetRestApiRequest(ServiceRequest):
|
|
|
1007
1039
|
|
|
1008
1040
|
|
|
1009
1041
|
class GetRestApisRequest(ServiceRequest):
|
|
1010
|
-
position:
|
|
1011
|
-
limit:
|
|
1042
|
+
position: String | None
|
|
1043
|
+
limit: NullableInteger | None
|
|
1012
1044
|
|
|
1013
1045
|
|
|
1014
1046
|
class GetSdkRequest(ServiceRequest):
|
|
1015
1047
|
restApiId: String
|
|
1016
1048
|
stageName: String
|
|
1017
1049
|
sdkType: String
|
|
1018
|
-
parameters:
|
|
1050
|
+
parameters: MapOfStringToString | None
|
|
1019
1051
|
|
|
1020
1052
|
|
|
1021
1053
|
class GetSdkTypeRequest(ServiceRequest):
|
|
@@ -1023,8 +1055,8 @@ class GetSdkTypeRequest(ServiceRequest):
|
|
|
1023
1055
|
|
|
1024
1056
|
|
|
1025
1057
|
class GetSdkTypesRequest(ServiceRequest):
|
|
1026
|
-
position:
|
|
1027
|
-
limit:
|
|
1058
|
+
position: String | None
|
|
1059
|
+
limit: NullableInteger | None
|
|
1028
1060
|
|
|
1029
1061
|
|
|
1030
1062
|
class GetStageRequest(ServiceRequest):
|
|
@@ -1034,13 +1066,13 @@ class GetStageRequest(ServiceRequest):
|
|
|
1034
1066
|
|
|
1035
1067
|
class GetStagesRequest(ServiceRequest):
|
|
1036
1068
|
restApiId: String
|
|
1037
|
-
deploymentId:
|
|
1069
|
+
deploymentId: String | None
|
|
1038
1070
|
|
|
1039
1071
|
|
|
1040
1072
|
class GetTagsRequest(ServiceRequest):
|
|
1041
1073
|
resourceArn: String
|
|
1042
|
-
position:
|
|
1043
|
-
limit:
|
|
1074
|
+
position: String | None
|
|
1075
|
+
limit: NullableInteger | None
|
|
1044
1076
|
|
|
1045
1077
|
|
|
1046
1078
|
class GetUsagePlanKeyRequest(ServiceRequest):
|
|
@@ -1050,9 +1082,9 @@ class GetUsagePlanKeyRequest(ServiceRequest):
|
|
|
1050
1082
|
|
|
1051
1083
|
class GetUsagePlanKeysRequest(ServiceRequest):
|
|
1052
1084
|
usagePlanId: String
|
|
1053
|
-
position:
|
|
1054
|
-
limit:
|
|
1055
|
-
nameQuery:
|
|
1085
|
+
position: String | None
|
|
1086
|
+
limit: NullableInteger | None
|
|
1087
|
+
nameQuery: String | None
|
|
1056
1088
|
|
|
1057
1089
|
|
|
1058
1090
|
class GetUsagePlanRequest(ServiceRequest):
|
|
@@ -1060,18 +1092,18 @@ class GetUsagePlanRequest(ServiceRequest):
|
|
|
1060
1092
|
|
|
1061
1093
|
|
|
1062
1094
|
class GetUsagePlansRequest(ServiceRequest):
|
|
1063
|
-
position:
|
|
1064
|
-
keyId:
|
|
1065
|
-
limit:
|
|
1095
|
+
position: String | None
|
|
1096
|
+
keyId: String | None
|
|
1097
|
+
limit: NullableInteger | None
|
|
1066
1098
|
|
|
1067
1099
|
|
|
1068
1100
|
class GetUsageRequest(ServiceRequest):
|
|
1069
1101
|
usagePlanId: String
|
|
1070
|
-
keyId:
|
|
1102
|
+
keyId: String | None
|
|
1071
1103
|
startDate: String
|
|
1072
1104
|
endDate: String
|
|
1073
|
-
position:
|
|
1074
|
-
limit:
|
|
1105
|
+
position: String | None
|
|
1106
|
+
limit: NullableInteger | None
|
|
1075
1107
|
|
|
1076
1108
|
|
|
1077
1109
|
class GetVpcLinkRequest(ServiceRequest):
|
|
@@ -1079,267 +1111,273 @@ class GetVpcLinkRequest(ServiceRequest):
|
|
|
1079
1111
|
|
|
1080
1112
|
|
|
1081
1113
|
class GetVpcLinksRequest(ServiceRequest):
|
|
1082
|
-
position:
|
|
1083
|
-
limit:
|
|
1114
|
+
position: String | None
|
|
1115
|
+
limit: NullableInteger | None
|
|
1084
1116
|
|
|
1085
1117
|
|
|
1086
1118
|
class ImportApiKeysRequest(ServiceRequest):
|
|
1087
1119
|
body: IO[Blob]
|
|
1088
1120
|
format: ApiKeysFormat
|
|
1089
|
-
failOnWarnings:
|
|
1121
|
+
failOnWarnings: Boolean | None
|
|
1090
1122
|
|
|
1091
1123
|
|
|
1092
1124
|
class ImportDocumentationPartsRequest(ServiceRequest):
|
|
1093
1125
|
body: IO[Blob]
|
|
1094
1126
|
restApiId: String
|
|
1095
|
-
mode:
|
|
1096
|
-
failOnWarnings:
|
|
1127
|
+
mode: PutMode | None
|
|
1128
|
+
failOnWarnings: Boolean | None
|
|
1097
1129
|
|
|
1098
1130
|
|
|
1099
1131
|
class ImportRestApiRequest(ServiceRequest):
|
|
1100
1132
|
body: IO[Blob]
|
|
1101
|
-
failOnWarnings:
|
|
1102
|
-
parameters:
|
|
1133
|
+
failOnWarnings: Boolean | None
|
|
1134
|
+
parameters: MapOfStringToString | None
|
|
1103
1135
|
|
|
1104
1136
|
|
|
1105
1137
|
class TlsConfig(TypedDict, total=False):
|
|
1106
|
-
insecureSkipVerification:
|
|
1138
|
+
insecureSkipVerification: Boolean | None
|
|
1107
1139
|
|
|
1108
1140
|
|
|
1109
1141
|
class IntegrationResponse(TypedDict, total=False):
|
|
1110
|
-
statusCode:
|
|
1111
|
-
selectionPattern:
|
|
1112
|
-
responseParameters:
|
|
1113
|
-
responseTemplates:
|
|
1114
|
-
contentHandling:
|
|
1142
|
+
statusCode: StatusCode | None
|
|
1143
|
+
selectionPattern: String | None
|
|
1144
|
+
responseParameters: MapOfStringToString | None
|
|
1145
|
+
responseTemplates: MapOfStringToString | None
|
|
1146
|
+
contentHandling: ContentHandlingStrategy | None
|
|
1115
1147
|
|
|
1116
1148
|
|
|
1117
|
-
MapOfIntegrationResponse =
|
|
1149
|
+
MapOfIntegrationResponse = dict[String, IntegrationResponse]
|
|
1118
1150
|
|
|
1119
1151
|
|
|
1120
1152
|
class Integration(TypedDict, total=False):
|
|
1121
|
-
type:
|
|
1122
|
-
httpMethod:
|
|
1123
|
-
uri:
|
|
1124
|
-
connectionType:
|
|
1125
|
-
connectionId:
|
|
1126
|
-
credentials:
|
|
1127
|
-
requestParameters:
|
|
1128
|
-
requestTemplates:
|
|
1129
|
-
passthroughBehavior:
|
|
1130
|
-
contentHandling:
|
|
1131
|
-
timeoutInMillis:
|
|
1132
|
-
cacheNamespace:
|
|
1133
|
-
cacheKeyParameters:
|
|
1134
|
-
integrationResponses:
|
|
1135
|
-
tlsConfig:
|
|
1153
|
+
type: IntegrationType | None
|
|
1154
|
+
httpMethod: String | None
|
|
1155
|
+
uri: String | None
|
|
1156
|
+
connectionType: ConnectionType | None
|
|
1157
|
+
connectionId: String | None
|
|
1158
|
+
credentials: String | None
|
|
1159
|
+
requestParameters: MapOfStringToString | None
|
|
1160
|
+
requestTemplates: MapOfStringToString | None
|
|
1161
|
+
passthroughBehavior: String | None
|
|
1162
|
+
contentHandling: ContentHandlingStrategy | None
|
|
1163
|
+
timeoutInMillis: Integer | None
|
|
1164
|
+
cacheNamespace: String | None
|
|
1165
|
+
cacheKeyParameters: ListOfString | None
|
|
1166
|
+
integrationResponses: MapOfIntegrationResponse | None
|
|
1167
|
+
tlsConfig: TlsConfig | None
|
|
1168
|
+
responseTransferMode: ResponseTransferMode | None
|
|
1169
|
+
integrationTarget: String | None
|
|
1136
1170
|
|
|
1137
1171
|
|
|
1138
1172
|
Long = int
|
|
1139
|
-
ListOfLong =
|
|
1173
|
+
ListOfLong = list[Long]
|
|
1140
1174
|
|
|
1141
1175
|
|
|
1142
1176
|
class Model(TypedDict, total=False):
|
|
1143
|
-
id:
|
|
1144
|
-
name:
|
|
1145
|
-
description:
|
|
1146
|
-
schema:
|
|
1147
|
-
contentType:
|
|
1177
|
+
id: String | None
|
|
1178
|
+
name: String | None
|
|
1179
|
+
description: String | None
|
|
1180
|
+
schema: String | None
|
|
1181
|
+
contentType: String | None
|
|
1148
1182
|
|
|
1149
1183
|
|
|
1150
|
-
ListOfModel =
|
|
1184
|
+
ListOfModel = list[Model]
|
|
1151
1185
|
PatchOperation = TypedDict(
|
|
1152
1186
|
"PatchOperation",
|
|
1153
1187
|
{
|
|
1154
|
-
"op":
|
|
1155
|
-
"path":
|
|
1156
|
-
"value":
|
|
1157
|
-
"from":
|
|
1188
|
+
"op": Op | None,
|
|
1189
|
+
"path": String | None,
|
|
1190
|
+
"value": String | None,
|
|
1191
|
+
"from": String | None,
|
|
1158
1192
|
},
|
|
1159
1193
|
total=False,
|
|
1160
1194
|
)
|
|
1161
|
-
ListOfPatchOperation =
|
|
1195
|
+
ListOfPatchOperation = list[PatchOperation]
|
|
1162
1196
|
|
|
1163
1197
|
|
|
1164
1198
|
class RequestValidator(TypedDict, total=False):
|
|
1165
|
-
id:
|
|
1166
|
-
name:
|
|
1167
|
-
validateRequestBody:
|
|
1168
|
-
validateRequestParameters:
|
|
1199
|
+
id: String | None
|
|
1200
|
+
name: String | None
|
|
1201
|
+
validateRequestBody: Boolean | None
|
|
1202
|
+
validateRequestParameters: Boolean | None
|
|
1169
1203
|
|
|
1170
1204
|
|
|
1171
|
-
ListOfRequestValidator =
|
|
1172
|
-
MapOfStringToBoolean =
|
|
1205
|
+
ListOfRequestValidator = list[RequestValidator]
|
|
1206
|
+
MapOfStringToBoolean = dict[String, NullableBoolean]
|
|
1173
1207
|
|
|
1174
1208
|
|
|
1175
1209
|
class MethodResponse(TypedDict, total=False):
|
|
1176
|
-
statusCode:
|
|
1177
|
-
responseParameters:
|
|
1178
|
-
responseModels:
|
|
1210
|
+
statusCode: StatusCode | None
|
|
1211
|
+
responseParameters: MapOfStringToBoolean | None
|
|
1212
|
+
responseModels: MapOfStringToString | None
|
|
1179
1213
|
|
|
1180
1214
|
|
|
1181
|
-
MapOfMethodResponse =
|
|
1215
|
+
MapOfMethodResponse = dict[String, MethodResponse]
|
|
1182
1216
|
|
|
1183
1217
|
|
|
1184
1218
|
class Method(TypedDict, total=False):
|
|
1185
|
-
httpMethod:
|
|
1186
|
-
authorizationType:
|
|
1187
|
-
authorizerId:
|
|
1188
|
-
apiKeyRequired:
|
|
1189
|
-
requestValidatorId:
|
|
1190
|
-
operationName:
|
|
1191
|
-
requestParameters:
|
|
1192
|
-
requestModels:
|
|
1193
|
-
methodResponses:
|
|
1194
|
-
methodIntegration:
|
|
1195
|
-
authorizationScopes:
|
|
1219
|
+
httpMethod: String | None
|
|
1220
|
+
authorizationType: String | None
|
|
1221
|
+
authorizerId: String | None
|
|
1222
|
+
apiKeyRequired: NullableBoolean | None
|
|
1223
|
+
requestValidatorId: String | None
|
|
1224
|
+
operationName: String | None
|
|
1225
|
+
requestParameters: MapOfStringToBoolean | None
|
|
1226
|
+
requestModels: MapOfStringToString | None
|
|
1227
|
+
methodResponses: MapOfMethodResponse | None
|
|
1228
|
+
methodIntegration: Integration | None
|
|
1229
|
+
authorizationScopes: ListOfString | None
|
|
1196
1230
|
|
|
1197
1231
|
|
|
1198
|
-
MapOfMethod =
|
|
1232
|
+
MapOfMethod = dict[String, Method]
|
|
1199
1233
|
|
|
1200
1234
|
|
|
1201
1235
|
class Resource(TypedDict, total=False):
|
|
1202
|
-
id:
|
|
1203
|
-
parentId:
|
|
1204
|
-
pathPart:
|
|
1205
|
-
path:
|
|
1206
|
-
resourceMethods:
|
|
1236
|
+
id: String | None
|
|
1237
|
+
parentId: String | None
|
|
1238
|
+
pathPart: String | None
|
|
1239
|
+
path: String | None
|
|
1240
|
+
resourceMethods: MapOfMethod | None
|
|
1207
1241
|
|
|
1208
1242
|
|
|
1209
|
-
ListOfResource =
|
|
1243
|
+
ListOfResource = list[Resource]
|
|
1210
1244
|
|
|
1211
1245
|
|
|
1212
1246
|
class RestApi(TypedDict, total=False):
|
|
1213
|
-
id:
|
|
1214
|
-
name:
|
|
1215
|
-
description:
|
|
1216
|
-
createdDate:
|
|
1217
|
-
version:
|
|
1218
|
-
warnings:
|
|
1219
|
-
binaryMediaTypes:
|
|
1220
|
-
minimumCompressionSize:
|
|
1221
|
-
apiKeySource:
|
|
1222
|
-
endpointConfiguration:
|
|
1223
|
-
policy:
|
|
1224
|
-
tags:
|
|
1225
|
-
disableExecuteApiEndpoint:
|
|
1226
|
-
rootResourceId:
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1247
|
+
id: String | None
|
|
1248
|
+
name: String | None
|
|
1249
|
+
description: String | None
|
|
1250
|
+
createdDate: Timestamp | None
|
|
1251
|
+
version: String | None
|
|
1252
|
+
warnings: ListOfString | None
|
|
1253
|
+
binaryMediaTypes: ListOfString | None
|
|
1254
|
+
minimumCompressionSize: NullableInteger | None
|
|
1255
|
+
apiKeySource: ApiKeySourceType | None
|
|
1256
|
+
endpointConfiguration: EndpointConfiguration | None
|
|
1257
|
+
policy: String | None
|
|
1258
|
+
tags: MapOfStringToString | None
|
|
1259
|
+
disableExecuteApiEndpoint: Boolean | None
|
|
1260
|
+
rootResourceId: String | None
|
|
1261
|
+
securityPolicy: SecurityPolicy | None
|
|
1262
|
+
endpointAccessMode: EndpointAccessMode | None
|
|
1263
|
+
apiStatus: ApiStatus | None
|
|
1264
|
+
apiStatusMessage: String | None
|
|
1265
|
+
|
|
1266
|
+
|
|
1267
|
+
ListOfRestApi = list[RestApi]
|
|
1230
1268
|
|
|
1231
1269
|
|
|
1232
1270
|
class SdkConfigurationProperty(TypedDict, total=False):
|
|
1233
|
-
name:
|
|
1234
|
-
friendlyName:
|
|
1235
|
-
description:
|
|
1236
|
-
required:
|
|
1237
|
-
defaultValue:
|
|
1271
|
+
name: String | None
|
|
1272
|
+
friendlyName: String | None
|
|
1273
|
+
description: String | None
|
|
1274
|
+
required: Boolean | None
|
|
1275
|
+
defaultValue: String | None
|
|
1238
1276
|
|
|
1239
1277
|
|
|
1240
|
-
ListOfSdkConfigurationProperty =
|
|
1278
|
+
ListOfSdkConfigurationProperty = list[SdkConfigurationProperty]
|
|
1241
1279
|
|
|
1242
1280
|
|
|
1243
1281
|
class SdkType(TypedDict, total=False):
|
|
1244
|
-
id:
|
|
1245
|
-
friendlyName:
|
|
1246
|
-
description:
|
|
1247
|
-
configurationProperties:
|
|
1282
|
+
id: String | None
|
|
1283
|
+
friendlyName: String | None
|
|
1284
|
+
description: String | None
|
|
1285
|
+
configurationProperties: ListOfSdkConfigurationProperty | None
|
|
1248
1286
|
|
|
1249
1287
|
|
|
1250
|
-
ListOfSdkType =
|
|
1288
|
+
ListOfSdkType = list[SdkType]
|
|
1251
1289
|
|
|
1252
1290
|
|
|
1253
1291
|
class MethodSetting(TypedDict, total=False):
|
|
1254
|
-
metricsEnabled:
|
|
1255
|
-
loggingLevel:
|
|
1256
|
-
dataTraceEnabled:
|
|
1257
|
-
throttlingBurstLimit:
|
|
1258
|
-
throttlingRateLimit:
|
|
1259
|
-
cachingEnabled:
|
|
1260
|
-
cacheTtlInSeconds:
|
|
1261
|
-
cacheDataEncrypted:
|
|
1262
|
-
requireAuthorizationForCacheControl:
|
|
1263
|
-
unauthorizedCacheControlHeaderStrategy:
|
|
1292
|
+
metricsEnabled: Boolean | None
|
|
1293
|
+
loggingLevel: String | None
|
|
1294
|
+
dataTraceEnabled: Boolean | None
|
|
1295
|
+
throttlingBurstLimit: Integer | None
|
|
1296
|
+
throttlingRateLimit: Double | None
|
|
1297
|
+
cachingEnabled: Boolean | None
|
|
1298
|
+
cacheTtlInSeconds: Integer | None
|
|
1299
|
+
cacheDataEncrypted: Boolean | None
|
|
1300
|
+
requireAuthorizationForCacheControl: Boolean | None
|
|
1301
|
+
unauthorizedCacheControlHeaderStrategy: UnauthorizedCacheControlHeaderStrategy | None
|
|
1264
1302
|
|
|
1265
1303
|
|
|
1266
|
-
MapOfMethodSettings =
|
|
1304
|
+
MapOfMethodSettings = dict[String, MethodSetting]
|
|
1267
1305
|
|
|
1268
1306
|
|
|
1269
1307
|
class Stage(TypedDict, total=False):
|
|
1270
|
-
deploymentId:
|
|
1271
|
-
clientCertificateId:
|
|
1272
|
-
stageName:
|
|
1273
|
-
description:
|
|
1274
|
-
cacheClusterEnabled:
|
|
1275
|
-
cacheClusterSize:
|
|
1276
|
-
cacheClusterStatus:
|
|
1277
|
-
methodSettings:
|
|
1278
|
-
variables:
|
|
1279
|
-
documentationVersion:
|
|
1280
|
-
accessLogSettings:
|
|
1281
|
-
canarySettings:
|
|
1282
|
-
tracingEnabled:
|
|
1283
|
-
webAclArn:
|
|
1284
|
-
tags:
|
|
1285
|
-
createdDate:
|
|
1286
|
-
lastUpdatedDate:
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
ListOfStage =
|
|
1290
|
-
ListOfUsage =
|
|
1308
|
+
deploymentId: String | None
|
|
1309
|
+
clientCertificateId: String | None
|
|
1310
|
+
stageName: String | None
|
|
1311
|
+
description: String | None
|
|
1312
|
+
cacheClusterEnabled: Boolean | None
|
|
1313
|
+
cacheClusterSize: CacheClusterSize | None
|
|
1314
|
+
cacheClusterStatus: CacheClusterStatus | None
|
|
1315
|
+
methodSettings: MapOfMethodSettings | None
|
|
1316
|
+
variables: MapOfStringToString | None
|
|
1317
|
+
documentationVersion: String | None
|
|
1318
|
+
accessLogSettings: AccessLogSettings | None
|
|
1319
|
+
canarySettings: CanarySettings | None
|
|
1320
|
+
tracingEnabled: Boolean | None
|
|
1321
|
+
webAclArn: String | None
|
|
1322
|
+
tags: MapOfStringToString | None
|
|
1323
|
+
createdDate: Timestamp | None
|
|
1324
|
+
lastUpdatedDate: Timestamp | None
|
|
1325
|
+
|
|
1326
|
+
|
|
1327
|
+
ListOfStage = list[Stage]
|
|
1328
|
+
ListOfUsage = list[ListOfLong]
|
|
1291
1329
|
|
|
1292
1330
|
|
|
1293
1331
|
class UsagePlan(TypedDict, total=False):
|
|
1294
|
-
id:
|
|
1295
|
-
name:
|
|
1296
|
-
description:
|
|
1297
|
-
apiStages:
|
|
1298
|
-
throttle:
|
|
1299
|
-
quota:
|
|
1300
|
-
productCode:
|
|
1301
|
-
tags:
|
|
1332
|
+
id: String | None
|
|
1333
|
+
name: String | None
|
|
1334
|
+
description: String | None
|
|
1335
|
+
apiStages: ListOfApiStage | None
|
|
1336
|
+
throttle: ThrottleSettings | None
|
|
1337
|
+
quota: QuotaSettings | None
|
|
1338
|
+
productCode: String | None
|
|
1339
|
+
tags: MapOfStringToString | None
|
|
1302
1340
|
|
|
1303
1341
|
|
|
1304
|
-
ListOfUsagePlan =
|
|
1342
|
+
ListOfUsagePlan = list[UsagePlan]
|
|
1305
1343
|
|
|
1306
1344
|
|
|
1307
1345
|
class UsagePlanKey(TypedDict, total=False):
|
|
1308
|
-
id:
|
|
1309
|
-
type:
|
|
1310
|
-
value:
|
|
1311
|
-
name:
|
|
1346
|
+
id: String | None
|
|
1347
|
+
type: String | None
|
|
1348
|
+
value: String | None
|
|
1349
|
+
name: String | None
|
|
1312
1350
|
|
|
1313
1351
|
|
|
1314
|
-
ListOfUsagePlanKey =
|
|
1352
|
+
ListOfUsagePlanKey = list[UsagePlanKey]
|
|
1315
1353
|
|
|
1316
1354
|
|
|
1317
1355
|
class VpcLink(TypedDict, total=False):
|
|
1318
|
-
id:
|
|
1319
|
-
name:
|
|
1320
|
-
description:
|
|
1321
|
-
targetArns:
|
|
1322
|
-
status:
|
|
1323
|
-
statusMessage:
|
|
1324
|
-
tags:
|
|
1356
|
+
id: String | None
|
|
1357
|
+
name: String | None
|
|
1358
|
+
description: String | None
|
|
1359
|
+
targetArns: ListOfString | None
|
|
1360
|
+
status: VpcLinkStatus | None
|
|
1361
|
+
statusMessage: String | None
|
|
1362
|
+
tags: MapOfStringToString | None
|
|
1325
1363
|
|
|
1326
1364
|
|
|
1327
|
-
ListOfVpcLink =
|
|
1328
|
-
MapOfKeyUsages =
|
|
1329
|
-
MapOfStringToList =
|
|
1365
|
+
ListOfVpcLink = list[VpcLink]
|
|
1366
|
+
MapOfKeyUsages = dict[String, ListOfUsage]
|
|
1367
|
+
MapOfStringToList = dict[String, ListOfString]
|
|
1330
1368
|
|
|
1331
1369
|
|
|
1332
1370
|
class Models(TypedDict, total=False):
|
|
1333
|
-
position:
|
|
1334
|
-
items:
|
|
1371
|
+
position: String | None
|
|
1372
|
+
items: ListOfModel | None
|
|
1335
1373
|
|
|
1336
1374
|
|
|
1337
1375
|
class PutGatewayResponseRequest(ServiceRequest):
|
|
1338
1376
|
restApiId: String
|
|
1339
1377
|
responseType: GatewayResponseType
|
|
1340
|
-
statusCode:
|
|
1341
|
-
responseParameters:
|
|
1342
|
-
responseTemplates:
|
|
1378
|
+
statusCode: StatusCode | None
|
|
1379
|
+
responseParameters: MapOfStringToString | None
|
|
1380
|
+
responseTemplates: MapOfStringToString | None
|
|
1343
1381
|
|
|
1344
1382
|
|
|
1345
1383
|
class PutIntegrationRequest(TypedDict, total=False):
|
|
@@ -1347,19 +1385,21 @@ class PutIntegrationRequest(TypedDict, total=False):
|
|
|
1347
1385
|
resourceId: String
|
|
1348
1386
|
httpMethod: String
|
|
1349
1387
|
type: IntegrationType
|
|
1350
|
-
integrationHttpMethod:
|
|
1351
|
-
uri:
|
|
1352
|
-
connectionType:
|
|
1353
|
-
connectionId:
|
|
1354
|
-
credentials:
|
|
1355
|
-
requestParameters:
|
|
1356
|
-
requestTemplates:
|
|
1357
|
-
passthroughBehavior:
|
|
1358
|
-
cacheNamespace:
|
|
1359
|
-
cacheKeyParameters:
|
|
1360
|
-
contentHandling:
|
|
1361
|
-
timeoutInMillis:
|
|
1362
|
-
tlsConfig:
|
|
1388
|
+
integrationHttpMethod: String | None
|
|
1389
|
+
uri: String | None
|
|
1390
|
+
connectionType: ConnectionType | None
|
|
1391
|
+
connectionId: String | None
|
|
1392
|
+
credentials: String | None
|
|
1393
|
+
requestParameters: MapOfStringToString | None
|
|
1394
|
+
requestTemplates: MapOfStringToString | None
|
|
1395
|
+
passthroughBehavior: String | None
|
|
1396
|
+
cacheNamespace: String | None
|
|
1397
|
+
cacheKeyParameters: ListOfString | None
|
|
1398
|
+
contentHandling: ContentHandlingStrategy | None
|
|
1399
|
+
timeoutInMillis: NullableInteger | None
|
|
1400
|
+
tlsConfig: TlsConfig | None
|
|
1401
|
+
responseTransferMode: ResponseTransferMode | None
|
|
1402
|
+
integrationTarget: String | None
|
|
1363
1403
|
|
|
1364
1404
|
|
|
1365
1405
|
class PutIntegrationResponseRequest(ServiceRequest):
|
|
@@ -1367,10 +1407,10 @@ class PutIntegrationResponseRequest(ServiceRequest):
|
|
|
1367
1407
|
resourceId: String
|
|
1368
1408
|
httpMethod: String
|
|
1369
1409
|
statusCode: StatusCode
|
|
1370
|
-
selectionPattern:
|
|
1371
|
-
responseParameters:
|
|
1372
|
-
responseTemplates:
|
|
1373
|
-
contentHandling:
|
|
1410
|
+
selectionPattern: String | None
|
|
1411
|
+
responseParameters: MapOfStringToString | None
|
|
1412
|
+
responseTemplates: MapOfStringToString | None
|
|
1413
|
+
contentHandling: ContentHandlingStrategy | None
|
|
1374
1414
|
|
|
1375
1415
|
|
|
1376
1416
|
class PutMethodRequest(ServiceRequest):
|
|
@@ -1378,13 +1418,13 @@ class PutMethodRequest(ServiceRequest):
|
|
|
1378
1418
|
resourceId: String
|
|
1379
1419
|
httpMethod: String
|
|
1380
1420
|
authorizationType: String
|
|
1381
|
-
authorizerId:
|
|
1382
|
-
apiKeyRequired:
|
|
1383
|
-
operationName:
|
|
1384
|
-
requestParameters:
|
|
1385
|
-
requestModels:
|
|
1386
|
-
requestValidatorId:
|
|
1387
|
-
authorizationScopes:
|
|
1421
|
+
authorizerId: String | None
|
|
1422
|
+
apiKeyRequired: Boolean | None
|
|
1423
|
+
operationName: String | None
|
|
1424
|
+
requestParameters: MapOfStringToBoolean | None
|
|
1425
|
+
requestModels: MapOfStringToString | None
|
|
1426
|
+
requestValidatorId: String | None
|
|
1427
|
+
authorizationScopes: ListOfString | None
|
|
1388
1428
|
|
|
1389
1429
|
|
|
1390
1430
|
class PutMethodResponseRequest(ServiceRequest):
|
|
@@ -1392,16 +1432,16 @@ class PutMethodResponseRequest(ServiceRequest):
|
|
|
1392
1432
|
resourceId: String
|
|
1393
1433
|
httpMethod: String
|
|
1394
1434
|
statusCode: StatusCode
|
|
1395
|
-
responseParameters:
|
|
1396
|
-
responseModels:
|
|
1435
|
+
responseParameters: MapOfStringToBoolean | None
|
|
1436
|
+
responseModels: MapOfStringToString | None
|
|
1397
1437
|
|
|
1398
1438
|
|
|
1399
1439
|
class PutRestApiRequest(ServiceRequest):
|
|
1400
1440
|
body: IO[Blob]
|
|
1401
1441
|
restApiId: String
|
|
1402
|
-
mode:
|
|
1403
|
-
failOnWarnings:
|
|
1404
|
-
parameters:
|
|
1442
|
+
mode: PutMode | None
|
|
1443
|
+
failOnWarnings: Boolean | None
|
|
1444
|
+
parameters: MapOfStringToString | None
|
|
1405
1445
|
|
|
1406
1446
|
|
|
1407
1447
|
class RejectDomainNameAccessAssociationRequest(ServiceRequest):
|
|
@@ -1410,33 +1450,33 @@ class RejectDomainNameAccessAssociationRequest(ServiceRequest):
|
|
|
1410
1450
|
|
|
1411
1451
|
|
|
1412
1452
|
class RequestValidators(TypedDict, total=False):
|
|
1413
|
-
position:
|
|
1414
|
-
items:
|
|
1453
|
+
position: String | None
|
|
1454
|
+
items: ListOfRequestValidator | None
|
|
1415
1455
|
|
|
1416
1456
|
|
|
1417
1457
|
class Resources(TypedDict, total=False):
|
|
1418
|
-
position:
|
|
1419
|
-
items:
|
|
1458
|
+
position: String | None
|
|
1459
|
+
items: ListOfResource | None
|
|
1420
1460
|
|
|
1421
1461
|
|
|
1422
1462
|
class RestApis(TypedDict, total=False):
|
|
1423
|
-
position:
|
|
1424
|
-
items:
|
|
1463
|
+
position: String | None
|
|
1464
|
+
items: ListOfRestApi | None
|
|
1425
1465
|
|
|
1426
1466
|
|
|
1427
1467
|
class SdkResponse(TypedDict, total=False):
|
|
1428
|
-
body:
|
|
1429
|
-
contentType:
|
|
1430
|
-
contentDisposition:
|
|
1468
|
+
body: Blob | IO[Blob] | Iterable[Blob] | None
|
|
1469
|
+
contentType: String | None
|
|
1470
|
+
contentDisposition: String | None
|
|
1431
1471
|
|
|
1432
1472
|
|
|
1433
1473
|
class SdkTypes(TypedDict, total=False):
|
|
1434
|
-
position:
|
|
1435
|
-
items:
|
|
1474
|
+
position: String | None
|
|
1475
|
+
items: ListOfSdkType | None
|
|
1436
1476
|
|
|
1437
1477
|
|
|
1438
1478
|
class Stages(TypedDict, total=False):
|
|
1439
|
-
item:
|
|
1479
|
+
item: ListOfStage | None
|
|
1440
1480
|
|
|
1441
1481
|
|
|
1442
1482
|
class TagResourceRequest(ServiceRequest):
|
|
@@ -1445,53 +1485,53 @@ class TagResourceRequest(ServiceRequest):
|
|
|
1445
1485
|
|
|
1446
1486
|
|
|
1447
1487
|
class Tags(TypedDict, total=False):
|
|
1448
|
-
tags:
|
|
1488
|
+
tags: MapOfStringToString | None
|
|
1449
1489
|
|
|
1450
1490
|
|
|
1451
1491
|
class Template(TypedDict, total=False):
|
|
1452
|
-
value:
|
|
1492
|
+
value: String | None
|
|
1453
1493
|
|
|
1454
1494
|
|
|
1455
1495
|
class TestInvokeAuthorizerRequest(ServiceRequest):
|
|
1456
1496
|
restApiId: String
|
|
1457
1497
|
authorizerId: String
|
|
1458
|
-
headers:
|
|
1459
|
-
multiValueHeaders:
|
|
1460
|
-
pathWithQueryString:
|
|
1461
|
-
body:
|
|
1462
|
-
stageVariables:
|
|
1463
|
-
additionalContext:
|
|
1498
|
+
headers: MapOfStringToString | None
|
|
1499
|
+
multiValueHeaders: MapOfStringToList | None
|
|
1500
|
+
pathWithQueryString: String | None
|
|
1501
|
+
body: String | None
|
|
1502
|
+
stageVariables: MapOfStringToString | None
|
|
1503
|
+
additionalContext: MapOfStringToString | None
|
|
1464
1504
|
|
|
1465
1505
|
|
|
1466
1506
|
class TestInvokeAuthorizerResponse(TypedDict, total=False):
|
|
1467
|
-
clientStatus:
|
|
1468
|
-
log:
|
|
1469
|
-
latency:
|
|
1470
|
-
principalId:
|
|
1471
|
-
policy:
|
|
1472
|
-
authorization:
|
|
1473
|
-
claims:
|
|
1507
|
+
clientStatus: Integer | None
|
|
1508
|
+
log: String | None
|
|
1509
|
+
latency: Long | None
|
|
1510
|
+
principalId: String | None
|
|
1511
|
+
policy: String | None
|
|
1512
|
+
authorization: MapOfStringToList | None
|
|
1513
|
+
claims: MapOfStringToString | None
|
|
1474
1514
|
|
|
1475
1515
|
|
|
1476
1516
|
class TestInvokeMethodRequest(ServiceRequest):
|
|
1477
1517
|
restApiId: String
|
|
1478
1518
|
resourceId: String
|
|
1479
1519
|
httpMethod: String
|
|
1480
|
-
pathWithQueryString:
|
|
1481
|
-
body:
|
|
1482
|
-
headers:
|
|
1483
|
-
multiValueHeaders:
|
|
1484
|
-
clientCertificateId:
|
|
1485
|
-
stageVariables:
|
|
1520
|
+
pathWithQueryString: String | None
|
|
1521
|
+
body: String | None
|
|
1522
|
+
headers: MapOfStringToString | None
|
|
1523
|
+
multiValueHeaders: MapOfStringToList | None
|
|
1524
|
+
clientCertificateId: String | None
|
|
1525
|
+
stageVariables: MapOfStringToString | None
|
|
1486
1526
|
|
|
1487
1527
|
|
|
1488
1528
|
class TestInvokeMethodResponse(TypedDict, total=False):
|
|
1489
|
-
status:
|
|
1490
|
-
body:
|
|
1491
|
-
headers:
|
|
1492
|
-
multiValueHeaders:
|
|
1493
|
-
log:
|
|
1494
|
-
latency:
|
|
1529
|
+
status: Integer | None
|
|
1530
|
+
body: String | None
|
|
1531
|
+
headers: MapOfStringToString | None
|
|
1532
|
+
multiValueHeaders: MapOfStringToList | None
|
|
1533
|
+
log: String | None
|
|
1534
|
+
latency: Long | None
|
|
1495
1535
|
|
|
1496
1536
|
|
|
1497
1537
|
class UntagResourceRequest(ServiceRequest):
|
|
@@ -1500,67 +1540,67 @@ class UntagResourceRequest(ServiceRequest):
|
|
|
1500
1540
|
|
|
1501
1541
|
|
|
1502
1542
|
class UpdateAccountRequest(ServiceRequest):
|
|
1503
|
-
patchOperations:
|
|
1543
|
+
patchOperations: ListOfPatchOperation | None
|
|
1504
1544
|
|
|
1505
1545
|
|
|
1506
1546
|
class UpdateApiKeyRequest(ServiceRequest):
|
|
1507
1547
|
apiKey: String
|
|
1508
|
-
patchOperations:
|
|
1548
|
+
patchOperations: ListOfPatchOperation | None
|
|
1509
1549
|
|
|
1510
1550
|
|
|
1511
1551
|
class UpdateAuthorizerRequest(ServiceRequest):
|
|
1512
1552
|
restApiId: String
|
|
1513
1553
|
authorizerId: String
|
|
1514
|
-
patchOperations:
|
|
1554
|
+
patchOperations: ListOfPatchOperation | None
|
|
1515
1555
|
|
|
1516
1556
|
|
|
1517
1557
|
class UpdateBasePathMappingRequest(ServiceRequest):
|
|
1518
1558
|
domainName: String
|
|
1519
|
-
domainNameId:
|
|
1559
|
+
domainNameId: String | None
|
|
1520
1560
|
basePath: String
|
|
1521
|
-
patchOperations:
|
|
1561
|
+
patchOperations: ListOfPatchOperation | None
|
|
1522
1562
|
|
|
1523
1563
|
|
|
1524
1564
|
class UpdateClientCertificateRequest(ServiceRequest):
|
|
1525
1565
|
clientCertificateId: String
|
|
1526
|
-
patchOperations:
|
|
1566
|
+
patchOperations: ListOfPatchOperation | None
|
|
1527
1567
|
|
|
1528
1568
|
|
|
1529
1569
|
class UpdateDeploymentRequest(ServiceRequest):
|
|
1530
1570
|
restApiId: String
|
|
1531
1571
|
deploymentId: String
|
|
1532
|
-
patchOperations:
|
|
1572
|
+
patchOperations: ListOfPatchOperation | None
|
|
1533
1573
|
|
|
1534
1574
|
|
|
1535
1575
|
class UpdateDocumentationPartRequest(ServiceRequest):
|
|
1536
1576
|
restApiId: String
|
|
1537
1577
|
documentationPartId: String
|
|
1538
|
-
patchOperations:
|
|
1578
|
+
patchOperations: ListOfPatchOperation | None
|
|
1539
1579
|
|
|
1540
1580
|
|
|
1541
1581
|
class UpdateDocumentationVersionRequest(ServiceRequest):
|
|
1542
1582
|
restApiId: String
|
|
1543
1583
|
documentationVersion: String
|
|
1544
|
-
patchOperations:
|
|
1584
|
+
patchOperations: ListOfPatchOperation | None
|
|
1545
1585
|
|
|
1546
1586
|
|
|
1547
1587
|
class UpdateDomainNameRequest(ServiceRequest):
|
|
1548
1588
|
domainName: String
|
|
1549
|
-
domainNameId:
|
|
1550
|
-
patchOperations:
|
|
1589
|
+
domainNameId: String | None
|
|
1590
|
+
patchOperations: ListOfPatchOperation | None
|
|
1551
1591
|
|
|
1552
1592
|
|
|
1553
1593
|
class UpdateGatewayResponseRequest(ServiceRequest):
|
|
1554
1594
|
restApiId: String
|
|
1555
1595
|
responseType: GatewayResponseType
|
|
1556
|
-
patchOperations:
|
|
1596
|
+
patchOperations: ListOfPatchOperation | None
|
|
1557
1597
|
|
|
1558
1598
|
|
|
1559
1599
|
class UpdateIntegrationRequest(ServiceRequest):
|
|
1560
1600
|
restApiId: String
|
|
1561
1601
|
resourceId: String
|
|
1562
1602
|
httpMethod: String
|
|
1563
|
-
patchOperations:
|
|
1603
|
+
patchOperations: ListOfPatchOperation | None
|
|
1564
1604
|
|
|
1565
1605
|
|
|
1566
1606
|
class UpdateIntegrationResponseRequest(ServiceRequest):
|
|
@@ -1568,14 +1608,14 @@ class UpdateIntegrationResponseRequest(ServiceRequest):
|
|
|
1568
1608
|
resourceId: String
|
|
1569
1609
|
httpMethod: String
|
|
1570
1610
|
statusCode: StatusCode
|
|
1571
|
-
patchOperations:
|
|
1611
|
+
patchOperations: ListOfPatchOperation | None
|
|
1572
1612
|
|
|
1573
1613
|
|
|
1574
1614
|
class UpdateMethodRequest(ServiceRequest):
|
|
1575
1615
|
restApiId: String
|
|
1576
1616
|
resourceId: String
|
|
1577
1617
|
httpMethod: String
|
|
1578
|
-
patchOperations:
|
|
1618
|
+
patchOperations: ListOfPatchOperation | None
|
|
1579
1619
|
|
|
1580
1620
|
|
|
1581
1621
|
class UpdateMethodResponseRequest(ServiceRequest):
|
|
@@ -1583,80 +1623,80 @@ class UpdateMethodResponseRequest(ServiceRequest):
|
|
|
1583
1623
|
resourceId: String
|
|
1584
1624
|
httpMethod: String
|
|
1585
1625
|
statusCode: StatusCode
|
|
1586
|
-
patchOperations:
|
|
1626
|
+
patchOperations: ListOfPatchOperation | None
|
|
1587
1627
|
|
|
1588
1628
|
|
|
1589
1629
|
class UpdateModelRequest(ServiceRequest):
|
|
1590
1630
|
restApiId: String
|
|
1591
1631
|
modelName: String
|
|
1592
|
-
patchOperations:
|
|
1632
|
+
patchOperations: ListOfPatchOperation | None
|
|
1593
1633
|
|
|
1594
1634
|
|
|
1595
1635
|
class UpdateRequestValidatorRequest(ServiceRequest):
|
|
1596
1636
|
restApiId: String
|
|
1597
1637
|
requestValidatorId: String
|
|
1598
|
-
patchOperations:
|
|
1638
|
+
patchOperations: ListOfPatchOperation | None
|
|
1599
1639
|
|
|
1600
1640
|
|
|
1601
1641
|
class UpdateResourceRequest(ServiceRequest):
|
|
1602
1642
|
restApiId: String
|
|
1603
1643
|
resourceId: String
|
|
1604
|
-
patchOperations:
|
|
1644
|
+
patchOperations: ListOfPatchOperation | None
|
|
1605
1645
|
|
|
1606
1646
|
|
|
1607
1647
|
class UpdateRestApiRequest(ServiceRequest):
|
|
1608
1648
|
restApiId: String
|
|
1609
|
-
patchOperations:
|
|
1649
|
+
patchOperations: ListOfPatchOperation | None
|
|
1610
1650
|
|
|
1611
1651
|
|
|
1612
1652
|
class UpdateStageRequest(ServiceRequest):
|
|
1613
1653
|
restApiId: String
|
|
1614
1654
|
stageName: String
|
|
1615
|
-
patchOperations:
|
|
1655
|
+
patchOperations: ListOfPatchOperation | None
|
|
1616
1656
|
|
|
1617
1657
|
|
|
1618
1658
|
class UpdateUsagePlanRequest(ServiceRequest):
|
|
1619
1659
|
usagePlanId: String
|
|
1620
|
-
patchOperations:
|
|
1660
|
+
patchOperations: ListOfPatchOperation | None
|
|
1621
1661
|
|
|
1622
1662
|
|
|
1623
1663
|
class UpdateUsageRequest(ServiceRequest):
|
|
1624
1664
|
usagePlanId: String
|
|
1625
1665
|
keyId: String
|
|
1626
|
-
patchOperations:
|
|
1666
|
+
patchOperations: ListOfPatchOperation | None
|
|
1627
1667
|
|
|
1628
1668
|
|
|
1629
1669
|
class UpdateVpcLinkRequest(ServiceRequest):
|
|
1630
1670
|
vpcLinkId: String
|
|
1631
|
-
patchOperations:
|
|
1671
|
+
patchOperations: ListOfPatchOperation | None
|
|
1632
1672
|
|
|
1633
1673
|
|
|
1634
1674
|
class Usage(TypedDict, total=False):
|
|
1635
|
-
usagePlanId:
|
|
1636
|
-
startDate:
|
|
1637
|
-
endDate:
|
|
1638
|
-
position:
|
|
1639
|
-
items:
|
|
1675
|
+
usagePlanId: String | None
|
|
1676
|
+
startDate: String | None
|
|
1677
|
+
endDate: String | None
|
|
1678
|
+
position: String | None
|
|
1679
|
+
items: MapOfKeyUsages | None
|
|
1640
1680
|
|
|
1641
1681
|
|
|
1642
1682
|
class UsagePlanKeys(TypedDict, total=False):
|
|
1643
|
-
position:
|
|
1644
|
-
items:
|
|
1683
|
+
position: String | None
|
|
1684
|
+
items: ListOfUsagePlanKey | None
|
|
1645
1685
|
|
|
1646
1686
|
|
|
1647
1687
|
class UsagePlans(TypedDict, total=False):
|
|
1648
|
-
position:
|
|
1649
|
-
items:
|
|
1688
|
+
position: String | None
|
|
1689
|
+
items: ListOfUsagePlan | None
|
|
1650
1690
|
|
|
1651
1691
|
|
|
1652
1692
|
class VpcLinks(TypedDict, total=False):
|
|
1653
|
-
position:
|
|
1654
|
-
items:
|
|
1693
|
+
position: String | None
|
|
1694
|
+
items: ListOfVpcLink | None
|
|
1655
1695
|
|
|
1656
1696
|
|
|
1657
1697
|
class ApigatewayApi:
|
|
1658
|
-
service = "apigateway"
|
|
1659
|
-
version = "2015-07-09"
|
|
1698
|
+
service: str = "apigateway"
|
|
1699
|
+
version: str = "2015-07-09"
|
|
1660
1700
|
|
|
1661
1701
|
@handler("CreateApiKey")
|
|
1662
1702
|
def create_api_key(
|
|
@@ -1748,6 +1788,7 @@ class ApigatewayApi:
|
|
|
1748
1788
|
endpoint_configuration: EndpointConfiguration | None = None,
|
|
1749
1789
|
tags: MapOfStringToString | None = None,
|
|
1750
1790
|
security_policy: SecurityPolicy | None = None,
|
|
1791
|
+
endpoint_access_mode: EndpointAccessMode | None = None,
|
|
1751
1792
|
mutual_tls_authentication: MutualTlsAuthenticationInput | None = None,
|
|
1752
1793
|
ownership_verification_certificate_arn: String | None = None,
|
|
1753
1794
|
policy: String | None = None,
|
|
@@ -1819,6 +1860,8 @@ class ApigatewayApi:
|
|
|
1819
1860
|
policy: String | None = None,
|
|
1820
1861
|
tags: MapOfStringToString | None = None,
|
|
1821
1862
|
disable_execute_api_endpoint: Boolean | None = None,
|
|
1863
|
+
security_policy: SecurityPolicy | None = None,
|
|
1864
|
+
endpoint_access_mode: EndpointAccessMode | None = None,
|
|
1822
1865
|
**kwargs,
|
|
1823
1866
|
) -> RestApi:
|
|
1824
1867
|
raise NotImplementedError
|