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