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,6 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
2
|
from enum import StrEnum
|
|
3
|
-
from typing import
|
|
3
|
+
from typing import TypedDict
|
|
4
4
|
|
|
5
5
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
|
6
6
|
|
|
@@ -261,10 +261,10 @@ class ValidationException(ServiceException):
|
|
|
261
261
|
|
|
262
262
|
class Tag(TypedDict, total=False):
|
|
263
263
|
Key: TagKey
|
|
264
|
-
Value:
|
|
264
|
+
Value: TagValue | None
|
|
265
265
|
|
|
266
266
|
|
|
267
|
-
TagList =
|
|
267
|
+
TagList = list[Tag]
|
|
268
268
|
|
|
269
269
|
|
|
270
270
|
class AddTagsToCertificateRequest(ServiceRequest):
|
|
@@ -277,29 +277,29 @@ CertificateChainBlob = bytes
|
|
|
277
277
|
|
|
278
278
|
|
|
279
279
|
class CertificateOptions(TypedDict, total=False):
|
|
280
|
-
CertificateTransparencyLoggingPreference:
|
|
281
|
-
Export:
|
|
280
|
+
CertificateTransparencyLoggingPreference: CertificateTransparencyLoggingPreference | None
|
|
281
|
+
Export: CertificateExport | None
|
|
282
282
|
|
|
283
283
|
|
|
284
284
|
class ExtendedKeyUsage(TypedDict, total=False):
|
|
285
|
-
Name:
|
|
286
|
-
OID:
|
|
285
|
+
Name: ExtendedKeyUsageName | None
|
|
286
|
+
OID: String | None
|
|
287
287
|
|
|
288
288
|
|
|
289
|
-
ExtendedKeyUsageList =
|
|
289
|
+
ExtendedKeyUsageList = list[ExtendedKeyUsage]
|
|
290
290
|
|
|
291
291
|
|
|
292
292
|
class KeyUsage(TypedDict, total=False):
|
|
293
|
-
Name:
|
|
293
|
+
Name: KeyUsageName | None
|
|
294
294
|
|
|
295
295
|
|
|
296
|
-
KeyUsageList =
|
|
296
|
+
KeyUsageList = list[KeyUsage]
|
|
297
297
|
TStamp = datetime
|
|
298
298
|
|
|
299
299
|
|
|
300
300
|
class HttpRedirect(TypedDict, total=False):
|
|
301
|
-
RedirectFrom:
|
|
302
|
-
RedirectTo:
|
|
301
|
+
RedirectFrom: String | None
|
|
302
|
+
RedirectTo: String | None
|
|
303
303
|
|
|
304
304
|
|
|
305
305
|
class ResourceRecord(TypedDict, total=False):
|
|
@@ -308,92 +308,92 @@ class ResourceRecord(TypedDict, total=False):
|
|
|
308
308
|
Value: String
|
|
309
309
|
|
|
310
310
|
|
|
311
|
-
ValidationEmailList =
|
|
311
|
+
ValidationEmailList = list[String]
|
|
312
312
|
|
|
313
313
|
|
|
314
314
|
class DomainValidation(TypedDict, total=False):
|
|
315
315
|
DomainName: DomainNameString
|
|
316
|
-
ValidationEmails:
|
|
317
|
-
ValidationDomain:
|
|
318
|
-
ValidationStatus:
|
|
319
|
-
ResourceRecord:
|
|
320
|
-
HttpRedirect:
|
|
321
|
-
ValidationMethod:
|
|
316
|
+
ValidationEmails: ValidationEmailList | None
|
|
317
|
+
ValidationDomain: DomainNameString | None
|
|
318
|
+
ValidationStatus: DomainStatus | None
|
|
319
|
+
ResourceRecord: ResourceRecord | None
|
|
320
|
+
HttpRedirect: HttpRedirect | None
|
|
321
|
+
ValidationMethod: ValidationMethod | None
|
|
322
322
|
|
|
323
323
|
|
|
324
|
-
DomainValidationList =
|
|
324
|
+
DomainValidationList = list[DomainValidation]
|
|
325
325
|
|
|
326
326
|
|
|
327
327
|
class RenewalSummary(TypedDict, total=False):
|
|
328
328
|
RenewalStatus: RenewalStatus
|
|
329
329
|
DomainValidationOptions: DomainValidationList
|
|
330
|
-
RenewalStatusReason:
|
|
330
|
+
RenewalStatusReason: FailureReason | None
|
|
331
331
|
UpdatedAt: TStamp
|
|
332
332
|
|
|
333
333
|
|
|
334
|
-
InUseList =
|
|
335
|
-
DomainList =
|
|
334
|
+
InUseList = list[String]
|
|
335
|
+
DomainList = list[DomainNameString]
|
|
336
336
|
|
|
337
337
|
|
|
338
338
|
class CertificateDetail(TypedDict, total=False):
|
|
339
|
-
CertificateArn:
|
|
340
|
-
DomainName:
|
|
341
|
-
SubjectAlternativeNames:
|
|
342
|
-
ManagedBy:
|
|
343
|
-
DomainValidationOptions:
|
|
344
|
-
Serial:
|
|
345
|
-
Subject:
|
|
346
|
-
Issuer:
|
|
347
|
-
CreatedAt:
|
|
348
|
-
IssuedAt:
|
|
349
|
-
ImportedAt:
|
|
350
|
-
Status:
|
|
351
|
-
RevokedAt:
|
|
352
|
-
RevocationReason:
|
|
353
|
-
NotBefore:
|
|
354
|
-
NotAfter:
|
|
355
|
-
KeyAlgorithm:
|
|
356
|
-
SignatureAlgorithm:
|
|
357
|
-
InUseBy:
|
|
358
|
-
FailureReason:
|
|
359
|
-
Type:
|
|
360
|
-
RenewalSummary:
|
|
361
|
-
KeyUsages:
|
|
362
|
-
ExtendedKeyUsages:
|
|
363
|
-
CertificateAuthorityArn:
|
|
364
|
-
RenewalEligibility:
|
|
365
|
-
Options:
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
CertificateStatuses =
|
|
369
|
-
ExtendedKeyUsageNames =
|
|
370
|
-
KeyUsageNames =
|
|
339
|
+
CertificateArn: Arn | None
|
|
340
|
+
DomainName: DomainNameString | None
|
|
341
|
+
SubjectAlternativeNames: DomainList | None
|
|
342
|
+
ManagedBy: CertificateManagedBy | None
|
|
343
|
+
DomainValidationOptions: DomainValidationList | None
|
|
344
|
+
Serial: String | None
|
|
345
|
+
Subject: String | None
|
|
346
|
+
Issuer: String | None
|
|
347
|
+
CreatedAt: TStamp | None
|
|
348
|
+
IssuedAt: TStamp | None
|
|
349
|
+
ImportedAt: TStamp | None
|
|
350
|
+
Status: CertificateStatus | None
|
|
351
|
+
RevokedAt: TStamp | None
|
|
352
|
+
RevocationReason: RevocationReason | None
|
|
353
|
+
NotBefore: TStamp | None
|
|
354
|
+
NotAfter: TStamp | None
|
|
355
|
+
KeyAlgorithm: KeyAlgorithm | None
|
|
356
|
+
SignatureAlgorithm: String | None
|
|
357
|
+
InUseBy: InUseList | None
|
|
358
|
+
FailureReason: FailureReason | None
|
|
359
|
+
Type: CertificateType | None
|
|
360
|
+
RenewalSummary: RenewalSummary | None
|
|
361
|
+
KeyUsages: KeyUsageList | None
|
|
362
|
+
ExtendedKeyUsages: ExtendedKeyUsageList | None
|
|
363
|
+
CertificateAuthorityArn: Arn | None
|
|
364
|
+
RenewalEligibility: RenewalEligibility | None
|
|
365
|
+
Options: CertificateOptions | None
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
CertificateStatuses = list[CertificateStatus]
|
|
369
|
+
ExtendedKeyUsageNames = list[ExtendedKeyUsageName]
|
|
370
|
+
KeyUsageNames = list[KeyUsageName]
|
|
371
371
|
|
|
372
372
|
|
|
373
373
|
class CertificateSummary(TypedDict, total=False):
|
|
374
|
-
CertificateArn:
|
|
375
|
-
DomainName:
|
|
376
|
-
SubjectAlternativeNameSummaries:
|
|
377
|
-
HasAdditionalSubjectAlternativeNames:
|
|
378
|
-
Status:
|
|
379
|
-
Type:
|
|
380
|
-
KeyAlgorithm:
|
|
381
|
-
KeyUsages:
|
|
382
|
-
ExtendedKeyUsages:
|
|
383
|
-
ExportOption:
|
|
384
|
-
InUse:
|
|
385
|
-
Exported:
|
|
386
|
-
RenewalEligibility:
|
|
387
|
-
NotBefore:
|
|
388
|
-
NotAfter:
|
|
389
|
-
CreatedAt:
|
|
390
|
-
IssuedAt:
|
|
391
|
-
ImportedAt:
|
|
392
|
-
RevokedAt:
|
|
393
|
-
ManagedBy:
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
CertificateSummaryList =
|
|
374
|
+
CertificateArn: Arn | None
|
|
375
|
+
DomainName: DomainNameString | None
|
|
376
|
+
SubjectAlternativeNameSummaries: DomainList | None
|
|
377
|
+
HasAdditionalSubjectAlternativeNames: NullableBoolean | None
|
|
378
|
+
Status: CertificateStatus | None
|
|
379
|
+
Type: CertificateType | None
|
|
380
|
+
KeyAlgorithm: KeyAlgorithm | None
|
|
381
|
+
KeyUsages: KeyUsageNames | None
|
|
382
|
+
ExtendedKeyUsages: ExtendedKeyUsageNames | None
|
|
383
|
+
ExportOption: CertificateExport | None
|
|
384
|
+
InUse: NullableBoolean | None
|
|
385
|
+
Exported: NullableBoolean | None
|
|
386
|
+
RenewalEligibility: RenewalEligibility | None
|
|
387
|
+
NotBefore: TStamp | None
|
|
388
|
+
NotAfter: TStamp | None
|
|
389
|
+
CreatedAt: TStamp | None
|
|
390
|
+
IssuedAt: TStamp | None
|
|
391
|
+
ImportedAt: TStamp | None
|
|
392
|
+
RevokedAt: TStamp | None
|
|
393
|
+
ManagedBy: CertificateManagedBy | None
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
CertificateSummaryList = list[CertificateSummary]
|
|
397
397
|
|
|
398
398
|
|
|
399
399
|
class DeleteCertificateRequest(ServiceRequest):
|
|
@@ -405,7 +405,7 @@ class DescribeCertificateRequest(ServiceRequest):
|
|
|
405
405
|
|
|
406
406
|
|
|
407
407
|
class DescribeCertificateResponse(TypedDict, total=False):
|
|
408
|
-
Certificate:
|
|
408
|
+
Certificate: CertificateDetail | None
|
|
409
409
|
|
|
410
410
|
|
|
411
411
|
class DomainValidationOption(TypedDict, total=False):
|
|
@@ -413,11 +413,11 @@ class DomainValidationOption(TypedDict, total=False):
|
|
|
413
413
|
ValidationDomain: DomainNameString
|
|
414
414
|
|
|
415
415
|
|
|
416
|
-
DomainValidationOptionList =
|
|
416
|
+
DomainValidationOptionList = list[DomainValidationOption]
|
|
417
417
|
|
|
418
418
|
|
|
419
419
|
class ExpiryEventsConfiguration(TypedDict, total=False):
|
|
420
|
-
DaysBeforeExpiry:
|
|
420
|
+
DaysBeforeExpiry: PositiveInteger | None
|
|
421
421
|
|
|
422
422
|
|
|
423
423
|
PassphraseBlob = bytes
|
|
@@ -429,26 +429,26 @@ class ExportCertificateRequest(ServiceRequest):
|
|
|
429
429
|
|
|
430
430
|
|
|
431
431
|
class ExportCertificateResponse(TypedDict, total=False):
|
|
432
|
-
Certificate:
|
|
433
|
-
CertificateChain:
|
|
434
|
-
PrivateKey:
|
|
432
|
+
Certificate: CertificateBody | None
|
|
433
|
+
CertificateChain: CertificateChain | None
|
|
434
|
+
PrivateKey: PrivateKey | None
|
|
435
435
|
|
|
436
436
|
|
|
437
|
-
ExtendedKeyUsageFilterList =
|
|
438
|
-
KeyAlgorithmList =
|
|
439
|
-
KeyUsageFilterList =
|
|
437
|
+
ExtendedKeyUsageFilterList = list[ExtendedKeyUsageName]
|
|
438
|
+
KeyAlgorithmList = list[KeyAlgorithm]
|
|
439
|
+
KeyUsageFilterList = list[KeyUsageName]
|
|
440
440
|
|
|
441
441
|
|
|
442
442
|
class Filters(TypedDict, total=False):
|
|
443
|
-
extendedKeyUsage:
|
|
444
|
-
keyUsage:
|
|
445
|
-
keyTypes:
|
|
446
|
-
exportOption:
|
|
447
|
-
managedBy:
|
|
443
|
+
extendedKeyUsage: ExtendedKeyUsageFilterList | None
|
|
444
|
+
keyUsage: KeyUsageFilterList | None
|
|
445
|
+
keyTypes: KeyAlgorithmList | None
|
|
446
|
+
exportOption: CertificateExport | None
|
|
447
|
+
managedBy: CertificateManagedBy | None
|
|
448
448
|
|
|
449
449
|
|
|
450
450
|
class GetAccountConfigurationResponse(TypedDict, total=False):
|
|
451
|
-
ExpiryEvents:
|
|
451
|
+
ExpiryEvents: ExpiryEventsConfiguration | None
|
|
452
452
|
|
|
453
453
|
|
|
454
454
|
class GetCertificateRequest(ServiceRequest):
|
|
@@ -456,37 +456,37 @@ class GetCertificateRequest(ServiceRequest):
|
|
|
456
456
|
|
|
457
457
|
|
|
458
458
|
class GetCertificateResponse(TypedDict, total=False):
|
|
459
|
-
Certificate:
|
|
460
|
-
CertificateChain:
|
|
459
|
+
Certificate: CertificateBody | None
|
|
460
|
+
CertificateChain: CertificateChain | None
|
|
461
461
|
|
|
462
462
|
|
|
463
463
|
PrivateKeyBlob = bytes
|
|
464
464
|
|
|
465
465
|
|
|
466
466
|
class ImportCertificateRequest(ServiceRequest):
|
|
467
|
-
CertificateArn:
|
|
467
|
+
CertificateArn: Arn | None
|
|
468
468
|
Certificate: CertificateBodyBlob
|
|
469
469
|
PrivateKey: PrivateKeyBlob
|
|
470
|
-
CertificateChain:
|
|
471
|
-
Tags:
|
|
470
|
+
CertificateChain: CertificateChainBlob | None
|
|
471
|
+
Tags: TagList | None
|
|
472
472
|
|
|
473
473
|
|
|
474
474
|
class ImportCertificateResponse(TypedDict, total=False):
|
|
475
|
-
CertificateArn:
|
|
475
|
+
CertificateArn: Arn | None
|
|
476
476
|
|
|
477
477
|
|
|
478
478
|
class ListCertificatesRequest(ServiceRequest):
|
|
479
|
-
CertificateStatuses:
|
|
480
|
-
Includes:
|
|
481
|
-
NextToken:
|
|
482
|
-
MaxItems:
|
|
483
|
-
SortBy:
|
|
484
|
-
SortOrder:
|
|
479
|
+
CertificateStatuses: CertificateStatuses | None
|
|
480
|
+
Includes: Filters | None
|
|
481
|
+
NextToken: NextToken | None
|
|
482
|
+
MaxItems: MaxItems | None
|
|
483
|
+
SortBy: SortBy | None
|
|
484
|
+
SortOrder: SortOrder | None
|
|
485
485
|
|
|
486
486
|
|
|
487
487
|
class ListCertificatesResponse(TypedDict, total=False):
|
|
488
|
-
NextToken:
|
|
489
|
-
CertificateSummaryList:
|
|
488
|
+
NextToken: NextToken | None
|
|
489
|
+
CertificateSummaryList: CertificateSummaryList | None
|
|
490
490
|
|
|
491
491
|
|
|
492
492
|
class ListTagsForCertificateRequest(ServiceRequest):
|
|
@@ -494,11 +494,11 @@ class ListTagsForCertificateRequest(ServiceRequest):
|
|
|
494
494
|
|
|
495
495
|
|
|
496
496
|
class ListTagsForCertificateResponse(TypedDict, total=False):
|
|
497
|
-
Tags:
|
|
497
|
+
Tags: TagList | None
|
|
498
498
|
|
|
499
499
|
|
|
500
500
|
class PutAccountConfigurationRequest(ServiceRequest):
|
|
501
|
-
ExpiryEvents:
|
|
501
|
+
ExpiryEvents: ExpiryEventsConfiguration | None
|
|
502
502
|
IdempotencyToken: IdempotencyToken
|
|
503
503
|
|
|
504
504
|
|
|
@@ -513,19 +513,19 @@ class RenewCertificateRequest(ServiceRequest):
|
|
|
513
513
|
|
|
514
514
|
class RequestCertificateRequest(ServiceRequest):
|
|
515
515
|
DomainName: DomainNameString
|
|
516
|
-
ValidationMethod:
|
|
517
|
-
SubjectAlternativeNames:
|
|
518
|
-
IdempotencyToken:
|
|
519
|
-
DomainValidationOptions:
|
|
520
|
-
Options:
|
|
521
|
-
CertificateAuthorityArn:
|
|
522
|
-
Tags:
|
|
523
|
-
KeyAlgorithm:
|
|
524
|
-
ManagedBy:
|
|
516
|
+
ValidationMethod: ValidationMethod | None
|
|
517
|
+
SubjectAlternativeNames: DomainList | None
|
|
518
|
+
IdempotencyToken: IdempotencyToken | None
|
|
519
|
+
DomainValidationOptions: DomainValidationOptionList | None
|
|
520
|
+
Options: CertificateOptions | None
|
|
521
|
+
CertificateAuthorityArn: PcaArn | None
|
|
522
|
+
Tags: TagList | None
|
|
523
|
+
KeyAlgorithm: KeyAlgorithm | None
|
|
524
|
+
ManagedBy: CertificateManagedBy | None
|
|
525
525
|
|
|
526
526
|
|
|
527
527
|
class RequestCertificateResponse(TypedDict, total=False):
|
|
528
|
-
CertificateArn:
|
|
528
|
+
CertificateArn: Arn | None
|
|
529
529
|
|
|
530
530
|
|
|
531
531
|
class ResendValidationEmailRequest(ServiceRequest):
|
|
@@ -540,7 +540,7 @@ class RevokeCertificateRequest(ServiceRequest):
|
|
|
540
540
|
|
|
541
541
|
|
|
542
542
|
class RevokeCertificateResponse(TypedDict, total=False):
|
|
543
|
-
CertificateArn:
|
|
543
|
+
CertificateArn: Arn | None
|
|
544
544
|
|
|
545
545
|
|
|
546
546
|
class UpdateCertificateOptionsRequest(ServiceRequest):
|
|
@@ -549,8 +549,8 @@ class UpdateCertificateOptionsRequest(ServiceRequest):
|
|
|
549
549
|
|
|
550
550
|
|
|
551
551
|
class AcmApi:
|
|
552
|
-
service = "acm"
|
|
553
|
-
version = "2015-12-08"
|
|
552
|
+
service: str = "acm"
|
|
553
|
+
version: str = "2015-12-08"
|
|
554
554
|
|
|
555
555
|
@handler("AddTagsToCertificate")
|
|
556
556
|
def add_tags_to_certificate(
|