localstack-core 4.3.1.dev92__py3-none-any.whl → 4.3.1.dev94__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 +17 -0
- localstack/aws/api/ec2/__init__.py +11 -1
- localstack/aws/api/kinesis/__init__.py +48 -6
- localstack/aws/api/logs/__init__.py +1 -0
- localstack/aws/api/ssm/__init__.py +94 -0
- localstack/version.py +2 -2
- {localstack_core-4.3.1.dev92.dist-info → localstack_core-4.3.1.dev94.dist-info}/METADATA +3 -3
- {localstack_core-4.3.1.dev92.dist-info → localstack_core-4.3.1.dev94.dist-info}/RECORD +16 -16
- {localstack_core-4.3.1.dev92.dist-info → localstack_core-4.3.1.dev94.dist-info}/WHEEL +1 -1
- localstack_core-4.3.1.dev94.dist-info/plux.json +1 -0
- localstack_core-4.3.1.dev92.dist-info/plux.json +0 -1
- {localstack_core-4.3.1.dev92.data → localstack_core-4.3.1.dev94.data}/scripts/localstack +0 -0
- {localstack_core-4.3.1.dev92.data → localstack_core-4.3.1.dev94.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.3.1.dev92.data → localstack_core-4.3.1.dev94.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.3.1.dev92.dist-info → localstack_core-4.3.1.dev94.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.3.1.dev92.dist-info → localstack_core-4.3.1.dev94.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.3.1.dev92.dist-info → localstack_core-4.3.1.dev94.dist-info}/top_level.txt +0 -0
@@ -23,6 +23,10 @@ TagValue = str
|
|
23
23
|
ValidationExceptionMessage = str
|
24
24
|
|
25
25
|
|
26
|
+
class CertificateManagedBy(StrEnum):
|
27
|
+
CLOUDFRONT = "CLOUDFRONT"
|
28
|
+
|
29
|
+
|
26
30
|
class CertificateStatus(StrEnum):
|
27
31
|
PENDING_VALIDATION = "PENDING_VALIDATION"
|
28
32
|
ISSUED = "ISSUED"
|
@@ -131,6 +135,7 @@ class RevocationReason(StrEnum):
|
|
131
135
|
CA_COMPROMISE = "CA_COMPROMISE"
|
132
136
|
AFFILIATION_CHANGED = "AFFILIATION_CHANGED"
|
133
137
|
SUPERCEDED = "SUPERCEDED"
|
138
|
+
SUPERSEDED = "SUPERSEDED"
|
134
139
|
CESSATION_OF_OPERATION = "CESSATION_OF_OPERATION"
|
135
140
|
CERTIFICATE_HOLD = "CERTIFICATE_HOLD"
|
136
141
|
REMOVE_FROM_CRL = "REMOVE_FROM_CRL"
|
@@ -150,6 +155,7 @@ class SortOrder(StrEnum):
|
|
150
155
|
class ValidationMethod(StrEnum):
|
151
156
|
EMAIL = "EMAIL"
|
152
157
|
DNS = "DNS"
|
158
|
+
HTTP = "HTTP"
|
153
159
|
|
154
160
|
|
155
161
|
class AccessDeniedException(ServiceException):
|
@@ -285,6 +291,11 @@ KeyUsageList = List[KeyUsage]
|
|
285
291
|
TStamp = datetime
|
286
292
|
|
287
293
|
|
294
|
+
class HttpRedirect(TypedDict, total=False):
|
295
|
+
RedirectFrom: Optional[String]
|
296
|
+
RedirectTo: Optional[String]
|
297
|
+
|
298
|
+
|
288
299
|
class ResourceRecord(TypedDict, total=False):
|
289
300
|
Name: String
|
290
301
|
Type: RecordType
|
@@ -300,6 +311,7 @@ class DomainValidation(TypedDict, total=False):
|
|
300
311
|
ValidationDomain: Optional[DomainNameString]
|
301
312
|
ValidationStatus: Optional[DomainStatus]
|
302
313
|
ResourceRecord: Optional[ResourceRecord]
|
314
|
+
HttpRedirect: Optional[HttpRedirect]
|
303
315
|
ValidationMethod: Optional[ValidationMethod]
|
304
316
|
|
305
317
|
|
@@ -321,6 +333,7 @@ class CertificateDetail(TypedDict, total=False):
|
|
321
333
|
CertificateArn: Optional[Arn]
|
322
334
|
DomainName: Optional[DomainNameString]
|
323
335
|
SubjectAlternativeNames: Optional[DomainList]
|
336
|
+
ManagedBy: Optional[CertificateManagedBy]
|
324
337
|
DomainValidationOptions: Optional[DomainValidationList]
|
325
338
|
Serial: Optional[String]
|
326
339
|
Subject: Optional[String]
|
@@ -370,6 +383,7 @@ class CertificateSummary(TypedDict, total=False):
|
|
370
383
|
IssuedAt: Optional[TStamp]
|
371
384
|
ImportedAt: Optional[TStamp]
|
372
385
|
RevokedAt: Optional[TStamp]
|
386
|
+
ManagedBy: Optional[CertificateManagedBy]
|
373
387
|
|
374
388
|
|
375
389
|
CertificateSummaryList = List[CertificateSummary]
|
@@ -422,6 +436,7 @@ class Filters(TypedDict, total=False):
|
|
422
436
|
extendedKeyUsage: Optional[ExtendedKeyUsageFilterList]
|
423
437
|
keyUsage: Optional[KeyUsageFilterList]
|
424
438
|
keyTypes: Optional[KeyAlgorithmList]
|
439
|
+
managedBy: Optional[CertificateManagedBy]
|
425
440
|
|
426
441
|
|
427
442
|
class GetAccountConfigurationResponse(TypedDict, total=False):
|
@@ -498,6 +513,7 @@ class RequestCertificateRequest(ServiceRequest):
|
|
498
513
|
CertificateAuthorityArn: Optional[PcaArn]
|
499
514
|
Tags: Optional[TagList]
|
500
515
|
KeyAlgorithm: Optional[KeyAlgorithm]
|
516
|
+
ManagedBy: Optional[CertificateManagedBy]
|
501
517
|
|
502
518
|
|
503
519
|
class RequestCertificateResponse(TypedDict, total=False):
|
@@ -619,6 +635,7 @@ class AcmApi:
|
|
619
635
|
certificate_authority_arn: PcaArn = None,
|
620
636
|
tags: TagList = None,
|
621
637
|
key_algorithm: KeyAlgorithm = None,
|
638
|
+
managed_by: CertificateManagedBy = None,
|
622
639
|
**kwargs,
|
623
640
|
) -> RequestCertificateResponse:
|
624
641
|
raise NotImplementedError
|
@@ -2316,6 +2316,11 @@ class IpamManagementState(StrEnum):
|
|
2316
2316
|
ignored = "ignored"
|
2317
2317
|
|
2318
2318
|
|
2319
|
+
class IpamMeteredAccount(StrEnum):
|
2320
|
+
ipam_owner = "ipam-owner"
|
2321
|
+
resource_owner = "resource-owner"
|
2322
|
+
|
2323
|
+
|
2319
2324
|
class IpamNetworkInterfaceAttachmentStatus(StrEnum):
|
2320
2325
|
available = "available"
|
2321
2326
|
in_use = "in-use"
|
@@ -7012,7 +7017,7 @@ class FleetLaunchTemplateOverridesRequest(TypedDict, total=False):
|
|
7012
7017
|
Placement: Optional[Placement]
|
7013
7018
|
BlockDeviceMappings: Optional[FleetBlockDeviceMappingRequestList]
|
7014
7019
|
InstanceRequirements: Optional[InstanceRequirementsRequest]
|
7015
|
-
ImageId: Optional[
|
7020
|
+
ImageId: Optional[ImageId]
|
7016
7021
|
|
7017
7022
|
|
7018
7023
|
FleetLaunchTemplateOverridesListRequest = List[FleetLaunchTemplateOverridesRequest]
|
@@ -7382,6 +7387,7 @@ class CreateIpamRequest(ServiceRequest):
|
|
7382
7387
|
ClientToken: Optional[String]
|
7383
7388
|
Tier: Optional[IpamTier]
|
7384
7389
|
EnablePrivateGua: Optional[Boolean]
|
7390
|
+
MeteredAccount: Optional[IpamMeteredAccount]
|
7385
7391
|
|
7386
7392
|
|
7387
7393
|
class CreateIpamResourceDiscoveryRequest(ServiceRequest):
|
@@ -7441,6 +7447,7 @@ class Ipam(TypedDict, total=False):
|
|
7441
7447
|
StateMessage: Optional[String]
|
7442
7448
|
Tier: Optional[IpamTier]
|
7443
7449
|
EnablePrivateGua: Optional[Boolean]
|
7450
|
+
MeteredAccount: Optional[IpamMeteredAccount]
|
7444
7451
|
|
7445
7452
|
|
7446
7453
|
class CreateIpamResult(TypedDict, total=False):
|
@@ -18368,6 +18375,7 @@ class ModifyIpamRequest(ServiceRequest):
|
|
18368
18375
|
RemoveOperatingRegions: Optional[RemoveIpamOperatingRegionSet]
|
18369
18376
|
Tier: Optional[IpamTier]
|
18370
18377
|
EnablePrivateGua: Optional[Boolean]
|
18378
|
+
MeteredAccount: Optional[IpamMeteredAccount]
|
18371
18379
|
|
18372
18380
|
|
18373
18381
|
class ModifyIpamResourceCidrRequest(ServiceRequest):
|
@@ -21212,6 +21220,7 @@ class Ec2Api:
|
|
21212
21220
|
client_token: String = None,
|
21213
21221
|
tier: IpamTier = None,
|
21214
21222
|
enable_private_gua: Boolean = None,
|
21223
|
+
metered_account: IpamMeteredAccount = None,
|
21215
21224
|
**kwargs,
|
21216
21225
|
) -> CreateIpamResult:
|
21217
21226
|
raise NotImplementedError
|
@@ -26845,6 +26854,7 @@ class Ec2Api:
|
|
26845
26854
|
remove_operating_regions: RemoveIpamOperatingRegionSet = None,
|
26846
26855
|
tier: IpamTier = None,
|
26847
26856
|
enable_private_gua: Boolean = None,
|
26857
|
+
metered_account: IpamMeteredAccount = None,
|
26848
26858
|
**kwargs,
|
26849
26859
|
) -> ModifyIpamResult:
|
26850
26860
|
raise NotImplementedError
|
@@ -494,11 +494,8 @@ class ListStreamsOutput(TypedDict, total=False):
|
|
494
494
|
StreamSummaries: Optional[StreamSummaryList]
|
495
495
|
|
496
496
|
|
497
|
-
class
|
498
|
-
|
499
|
-
ExclusiveStartTagKey: Optional[TagKey]
|
500
|
-
Limit: Optional[ListTagsForStreamInputLimit]
|
501
|
-
StreamARN: Optional[StreamARN]
|
497
|
+
class ListTagsForResourceInput(ServiceRequest):
|
498
|
+
ResourceARN: ResourceARN
|
502
499
|
|
503
500
|
|
504
501
|
class Tag(TypedDict, total=False):
|
@@ -509,6 +506,17 @@ class Tag(TypedDict, total=False):
|
|
509
506
|
TagList = List[Tag]
|
510
507
|
|
511
508
|
|
509
|
+
class ListTagsForResourceOutput(TypedDict, total=False):
|
510
|
+
Tags: Optional[TagList]
|
511
|
+
|
512
|
+
|
513
|
+
class ListTagsForStreamInput(ServiceRequest):
|
514
|
+
StreamName: Optional[StreamName]
|
515
|
+
ExclusiveStartTagKey: Optional[TagKey]
|
516
|
+
Limit: Optional[ListTagsForStreamInputLimit]
|
517
|
+
StreamARN: Optional[StreamARN]
|
518
|
+
|
519
|
+
|
512
520
|
class ListTagsForStreamOutput(TypedDict, total=False):
|
513
521
|
Tags: TagList
|
514
522
|
HasMoreTags: BooleanObject
|
@@ -575,6 +583,7 @@ class PutResourcePolicyInput(ServiceRequest):
|
|
575
583
|
class RegisterStreamConsumerInput(ServiceRequest):
|
576
584
|
StreamARN: StreamARN
|
577
585
|
ConsumerName: ConsumerName
|
586
|
+
Tags: Optional[TagMap]
|
578
587
|
|
579
588
|
|
580
589
|
class RegisterStreamConsumerOutput(TypedDict, total=False):
|
@@ -647,6 +656,16 @@ class SubscribeToShardOutput(TypedDict, total=False):
|
|
647
656
|
EventStream: Iterator[SubscribeToShardEventStream]
|
648
657
|
|
649
658
|
|
659
|
+
class TagResourceInput(ServiceRequest):
|
660
|
+
Tags: TagMap
|
661
|
+
ResourceARN: ResourceARN
|
662
|
+
|
663
|
+
|
664
|
+
class UntagResourceInput(ServiceRequest):
|
665
|
+
TagKeys: TagKeyList
|
666
|
+
ResourceARN: ResourceARN
|
667
|
+
|
668
|
+
|
650
669
|
class UpdateShardCountInput(ServiceRequest):
|
651
670
|
StreamName: Optional[StreamName]
|
652
671
|
TargetShardCount: PositiveIntegerObject
|
@@ -871,6 +890,12 @@ class KinesisApi:
|
|
871
890
|
) -> ListStreamsOutput:
|
872
891
|
raise NotImplementedError
|
873
892
|
|
893
|
+
@handler("ListTagsForResource")
|
894
|
+
def list_tags_for_resource(
|
895
|
+
self, context: RequestContext, resource_arn: ResourceARN, **kwargs
|
896
|
+
) -> ListTagsForResourceOutput:
|
897
|
+
raise NotImplementedError
|
898
|
+
|
874
899
|
@handler("ListTagsForStream")
|
875
900
|
def list_tags_for_stream(
|
876
901
|
self,
|
@@ -928,7 +953,12 @@ class KinesisApi:
|
|
928
953
|
|
929
954
|
@handler("RegisterStreamConsumer")
|
930
955
|
def register_stream_consumer(
|
931
|
-
self,
|
956
|
+
self,
|
957
|
+
context: RequestContext,
|
958
|
+
stream_arn: StreamARN,
|
959
|
+
consumer_name: ConsumerName,
|
960
|
+
tags: TagMap = None,
|
961
|
+
**kwargs,
|
932
962
|
) -> RegisterStreamConsumerOutput:
|
933
963
|
raise NotImplementedError
|
934
964
|
|
@@ -990,6 +1020,18 @@ class KinesisApi:
|
|
990
1020
|
) -> SubscribeToShardOutput:
|
991
1021
|
raise NotImplementedError
|
992
1022
|
|
1023
|
+
@handler("TagResource")
|
1024
|
+
def tag_resource(
|
1025
|
+
self, context: RequestContext, tags: TagMap, resource_arn: ResourceARN, **kwargs
|
1026
|
+
) -> None:
|
1027
|
+
raise NotImplementedError
|
1028
|
+
|
1029
|
+
@handler("UntagResource")
|
1030
|
+
def untag_resource(
|
1031
|
+
self, context: RequestContext, tag_keys: TagKeyList, resource_arn: ResourceARN, **kwargs
|
1032
|
+
) -> None:
|
1033
|
+
raise NotImplementedError
|
1034
|
+
|
993
1035
|
@handler("UpdateShardCount")
|
994
1036
|
def update_shard_count(
|
995
1037
|
self,
|
@@ -4,6 +4,9 @@ from typing import Dict, List, Optional, TypedDict
|
|
4
4
|
|
5
5
|
from localstack.aws.api import RequestContext, ServiceException, ServiceRequest, handler
|
6
6
|
|
7
|
+
AccessKeyIdType = str
|
8
|
+
AccessKeySecretType = str
|
9
|
+
AccessRequestId = str
|
7
10
|
Account = str
|
8
11
|
AccountId = str
|
9
12
|
ActivationCode = str
|
@@ -349,6 +352,7 @@ SessionMaxResults = int
|
|
349
352
|
SessionOwner = str
|
350
353
|
SessionReason = str
|
351
354
|
SessionTarget = str
|
355
|
+
SessionTokenType = str
|
352
356
|
SharedDocumentVersion = str
|
353
357
|
SnapshotDownloadUrl = str
|
354
358
|
SnapshotId = str
|
@@ -362,6 +366,7 @@ StatusName = str
|
|
362
366
|
StepExecutionFilterValue = str
|
363
367
|
StreamUrl = str
|
364
368
|
String = str
|
369
|
+
String1to256 = str
|
365
370
|
StringDateTime = str
|
366
371
|
TagKey = str
|
367
372
|
TagValue = str
|
@@ -381,6 +386,14 @@ ValidNextStep = str
|
|
381
386
|
Version = str
|
382
387
|
|
383
388
|
|
389
|
+
class AccessRequestStatus(StrEnum):
|
390
|
+
Approved = "Approved"
|
391
|
+
Rejected = "Rejected"
|
392
|
+
Revoked = "Revoked"
|
393
|
+
Expired = "Expired"
|
394
|
+
Pending = "Pending"
|
395
|
+
|
396
|
+
|
384
397
|
class AssociationComplianceSeverity(StrEnum):
|
385
398
|
CRITICAL = "CRITICAL"
|
386
399
|
HIGH = "HIGH"
|
@@ -478,6 +491,7 @@ class AutomationExecutionStatus(StrEnum):
|
|
478
491
|
|
479
492
|
class AutomationSubtype(StrEnum):
|
480
493
|
ChangeRequest = "ChangeRequest"
|
494
|
+
AccessRequest = "AccessRequest"
|
481
495
|
|
482
496
|
|
483
497
|
class AutomationType(StrEnum):
|
@@ -632,6 +646,8 @@ class DocumentType(StrEnum):
|
|
632
646
|
CloudFormation = "CloudFormation"
|
633
647
|
ConformancePackTemplate = "ConformancePackTemplate"
|
634
648
|
QuickSetup = "QuickSetup"
|
649
|
+
ManualApprovalPolicy = "ManualApprovalPolicy"
|
650
|
+
AutoApprovalPolicy = "AutoApprovalPolicy"
|
635
651
|
|
636
652
|
|
637
653
|
class ExecutionMode(StrEnum):
|
@@ -881,6 +897,15 @@ class OpsItemFilterKey(StrEnum):
|
|
881
897
|
Category = "Category"
|
882
898
|
Severity = "Severity"
|
883
899
|
OpsItemType = "OpsItemType"
|
900
|
+
AccessRequestByRequesterArn = "AccessRequestByRequesterArn"
|
901
|
+
AccessRequestByRequesterId = "AccessRequestByRequesterId"
|
902
|
+
AccessRequestByApproverArn = "AccessRequestByApproverArn"
|
903
|
+
AccessRequestByApproverId = "AccessRequestByApproverId"
|
904
|
+
AccessRequestBySourceAccountId = "AccessRequestBySourceAccountId"
|
905
|
+
AccessRequestBySourceOpsItemId = "AccessRequestBySourceOpsItemId"
|
906
|
+
AccessRequestBySourceRegion = "AccessRequestBySourceRegion"
|
907
|
+
AccessRequestByIsReplica = "AccessRequestByIsReplica"
|
908
|
+
AccessRequestByTargetResourceId = "AccessRequestByTargetResourceId"
|
884
909
|
ChangeRequestByRequesterArn = "ChangeRequestByRequesterArn"
|
885
910
|
ChangeRequestByRequesterName = "ChangeRequestByRequesterName"
|
886
911
|
ChangeRequestByApproverArn = "ChangeRequestByApproverArn"
|
@@ -926,6 +951,7 @@ class OpsItemStatus(StrEnum):
|
|
926
951
|
ChangeCalendarOverrideRejected = "ChangeCalendarOverrideRejected"
|
927
952
|
PendingApproval = "PendingApproval"
|
928
953
|
Approved = "Approved"
|
954
|
+
Revoked = "Revoked"
|
929
955
|
Rejected = "Rejected"
|
930
956
|
Closed = "Closed"
|
931
957
|
|
@@ -1100,6 +1126,7 @@ class SignalType(StrEnum):
|
|
1100
1126
|
StartStep = "StartStep"
|
1101
1127
|
StopStep = "StopStep"
|
1102
1128
|
Resume = "Resume"
|
1129
|
+
Revoke = "Revoke"
|
1103
1130
|
|
1104
1131
|
|
1105
1132
|
class SourceType(StrEnum):
|
@@ -1125,6 +1152,12 @@ class StopType(StrEnum):
|
|
1125
1152
|
Cancel = "Cancel"
|
1126
1153
|
|
1127
1154
|
|
1155
|
+
class AccessDeniedException(ServiceException):
|
1156
|
+
code: str = "AccessDeniedException"
|
1157
|
+
sender_fault: bool = False
|
1158
|
+
status_code: int = 400
|
1159
|
+
|
1160
|
+
|
1128
1161
|
class AlreadyExistsException(ServiceException):
|
1129
1162
|
code: str = "AlreadyExistsException"
|
1130
1163
|
sender_fault: bool = False
|
@@ -1855,6 +1888,16 @@ class ResourcePolicyNotFoundException(ServiceException):
|
|
1855
1888
|
status_code: int = 400
|
1856
1889
|
|
1857
1890
|
|
1891
|
+
class ServiceQuotaExceededException(ServiceException):
|
1892
|
+
code: str = "ServiceQuotaExceededException"
|
1893
|
+
sender_fault: bool = False
|
1894
|
+
status_code: int = 400
|
1895
|
+
ResourceId: Optional[String]
|
1896
|
+
ResourceType: Optional[String]
|
1897
|
+
QuotaCode: String
|
1898
|
+
ServiceCode: String
|
1899
|
+
|
1900
|
+
|
1858
1901
|
class ServiceSettingNotFound(ServiceException):
|
1859
1902
|
code: str = "ServiceSettingNotFound"
|
1860
1903
|
sender_fault: bool = False
|
@@ -1885,6 +1928,14 @@ class TargetNotConnected(ServiceException):
|
|
1885
1928
|
status_code: int = 400
|
1886
1929
|
|
1887
1930
|
|
1931
|
+
class ThrottlingException(ServiceException):
|
1932
|
+
code: str = "ThrottlingException"
|
1933
|
+
sender_fault: bool = False
|
1934
|
+
status_code: int = 400
|
1935
|
+
QuotaCode: Optional[String]
|
1936
|
+
ServiceCode: Optional[String]
|
1937
|
+
|
1938
|
+
|
1888
1939
|
class TooManyTagsError(ServiceException):
|
1889
1940
|
code: str = "TooManyTagsError"
|
1890
1941
|
sender_fault: bool = False
|
@@ -3034,6 +3085,13 @@ class CreateResourceDataSyncResult(TypedDict, total=False):
|
|
3034
3085
|
pass
|
3035
3086
|
|
3036
3087
|
|
3088
|
+
class Credentials(TypedDict, total=False):
|
3089
|
+
AccessKeyId: AccessKeyIdType
|
3090
|
+
SecretAccessKey: AccessKeySecretType
|
3091
|
+
SessionToken: SessionTokenType
|
3092
|
+
ExpirationTime: DateTime
|
3093
|
+
|
3094
|
+
|
3037
3095
|
class DeleteActivationRequest(ServiceRequest):
|
3038
3096
|
ActivationId: ActivationId
|
3039
3097
|
|
@@ -4285,6 +4343,15 @@ class ExecutionPreview(TypedDict, total=False):
|
|
4285
4343
|
Automation: Optional[AutomationExecutionPreview]
|
4286
4344
|
|
4287
4345
|
|
4346
|
+
class GetAccessTokenRequest(ServiceRequest):
|
4347
|
+
AccessRequestId: AccessRequestId
|
4348
|
+
|
4349
|
+
|
4350
|
+
class GetAccessTokenResponse(TypedDict, total=False):
|
4351
|
+
Credentials: Optional[Credentials]
|
4352
|
+
AccessRequestStatus: Optional[AccessRequestStatus]
|
4353
|
+
|
4354
|
+
|
4288
4355
|
class GetAutomationExecutionRequest(ServiceRequest):
|
4289
4356
|
AutomationExecutionId: AutomationExecutionId
|
4290
4357
|
|
@@ -5536,6 +5603,16 @@ SessionManagerParameterValueList = List[SessionManagerParameterValue]
|
|
5536
5603
|
SessionManagerParameters = Dict[SessionManagerParameterName, SessionManagerParameterValueList]
|
5537
5604
|
|
5538
5605
|
|
5606
|
+
class StartAccessRequestRequest(ServiceRequest):
|
5607
|
+
Reason: String1to256
|
5608
|
+
Targets: Targets
|
5609
|
+
Tags: Optional[TagList]
|
5610
|
+
|
5611
|
+
|
5612
|
+
class StartAccessRequestResponse(TypedDict, total=False):
|
5613
|
+
AccessRequestId: Optional[AccessRequestId]
|
5614
|
+
|
5615
|
+
|
5539
5616
|
class StartAssociationsOnceRequest(ServiceRequest):
|
5540
5617
|
AssociationIds: AssociationIdList
|
5541
5618
|
|
@@ -6613,6 +6690,12 @@ class SsmApi:
|
|
6613
6690
|
) -> DisassociateOpsItemRelatedItemResponse:
|
6614
6691
|
raise NotImplementedError
|
6615
6692
|
|
6693
|
+
@handler("GetAccessToken")
|
6694
|
+
def get_access_token(
|
6695
|
+
self, context: RequestContext, access_request_id: AccessRequestId, **kwargs
|
6696
|
+
) -> GetAccessTokenResponse:
|
6697
|
+
raise NotImplementedError
|
6698
|
+
|
6616
6699
|
@handler("GetAutomationExecution")
|
6617
6700
|
def get_automation_execution(
|
6618
6701
|
self, context: RequestContext, automation_execution_id: AutomationExecutionId, **kwargs
|
@@ -7251,6 +7334,17 @@ class SsmApi:
|
|
7251
7334
|
) -> SendCommandResult:
|
7252
7335
|
raise NotImplementedError
|
7253
7336
|
|
7337
|
+
@handler("StartAccessRequest")
|
7338
|
+
def start_access_request(
|
7339
|
+
self,
|
7340
|
+
context: RequestContext,
|
7341
|
+
reason: String1to256,
|
7342
|
+
targets: Targets,
|
7343
|
+
tags: TagList = None,
|
7344
|
+
**kwargs,
|
7345
|
+
) -> StartAccessRequestResponse:
|
7346
|
+
raise NotImplementedError
|
7347
|
+
|
7254
7348
|
@handler("StartAssociationsOnce")
|
7255
7349
|
def start_associations_once(
|
7256
7350
|
self, context: RequestContext, association_ids: AssociationIdList, **kwargs
|
localstack/version.py
CHANGED
@@ -17,5 +17,5 @@ __version__: str
|
|
17
17
|
__version_tuple__: VERSION_TUPLE
|
18
18
|
version_tuple: VERSION_TUPLE
|
19
19
|
|
20
|
-
__version__ = version = '4.3.1.
|
21
|
-
__version_tuple__ = version_tuple = (4, 3, 1, '
|
20
|
+
__version__ = version = '4.3.1.dev94'
|
21
|
+
__version_tuple__ = version_tuple = (4, 3, 1, 'dev94')
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: localstack-core
|
3
|
-
Version: 4.3.1.
|
3
|
+
Version: 4.3.1.dev94
|
4
4
|
Summary: The core library and runtime of LocalStack
|
5
5
|
Author-email: LocalStack Contributors <info@localstack.cloud>
|
6
6
|
License-Expression: Apache-2.0
|
@@ -31,8 +31,8 @@ Requires-Dist: requests>=2.20.0
|
|
31
31
|
Requires-Dist: semver>=2.10
|
32
32
|
Requires-Dist: tailer>=0.4.1
|
33
33
|
Provides-Extra: base-runtime
|
34
|
-
Requires-Dist: boto3==1.38.
|
35
|
-
Requires-Dist: botocore==1.38.
|
34
|
+
Requires-Dist: boto3==1.38.8; extra == "base-runtime"
|
35
|
+
Requires-Dist: botocore==1.38.8; extra == "base-runtime"
|
36
36
|
Requires-Dist: awscrt>=0.13.14; extra == "base-runtime"
|
37
37
|
Requires-Dist: cbor2>=5.5.0; extra == "base-runtime"
|
38
38
|
Requires-Dist: dnspython>=1.16.0; extra == "base-runtime"
|
@@ -4,7 +4,7 @@ localstack/deprecations.py,sha256=mNXTebZ8kSbQjFKz0LbT-g1Kdr0CE8bhEgZfHV3IX0s,15
|
|
4
4
|
localstack/openapi.yaml,sha256=B803NmpwsxG8PHpHrdZYBrUYjnrRh7B_JX0XuNynuFs,30237
|
5
5
|
localstack/plugins.py,sha256=BIJC9dlo0WbP7lLKkCiGtd_2q5oeqiHZohvoRTcejXM,2457
|
6
6
|
localstack/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
-
localstack/version.py,sha256=
|
7
|
+
localstack/version.py,sha256=GfTUtWez9LtnWbnNg72f2OuZUw0X2EDXrbiZZnkF0GA,526
|
8
8
|
localstack/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
localstack/aws/accounts.py,sha256=102zpGowOxo0S6UGMpfjw14QW7WCLVAGsnFK5xFMLoo,3043
|
10
10
|
localstack/aws/app.py,sha256=n9bJCfJRuMz_gLGAH430c3bIQXgUXeWO5NPfcdL2MV8,5145
|
@@ -22,7 +22,7 @@ localstack/aws/spec-patches.json,sha256=9zIgusH52V72SmOaRHTlWcu4aX5GEb2SzX1U9EL7
|
|
22
22
|
localstack/aws/spec.py,sha256=C9i0xdK6naFrTz80O8chgqqv2NBFKIVpM-8bDzCgLCg,14233
|
23
23
|
localstack/aws/api/__init__.py,sha256=JspwCauxfTTdLNVAr7AkQaPu1lELdBQ1miB9B9sndOo,297
|
24
24
|
localstack/aws/api/core.py,sha256=TDLYXrv3coZAW_Lv2UaqKqHnE_cufP3aDstjaHbFasw,6336
|
25
|
-
localstack/aws/api/acm/__init__.py,sha256=
|
25
|
+
localstack/aws/api/acm/__init__.py,sha256=jN8ldmBQTJs4dhLzS4cLNL3tp6gpsh_XFTqbKs1iV50,18249
|
26
26
|
localstack/aws/api/apigateway/__init__.py,sha256=rpyPix_UEXxOJPUZ7M6V0WTmfJk7iJ9gqORm5jXsLkw,78864
|
27
27
|
localstack/aws/api/cloudcontrol/__init__.py,sha256=syr0N7olc2p6zxOY2A3hvf4y_rMN30EUg_9yAIH9Gxw,11462
|
28
28
|
localstack/aws/api/cloudformation/__init__.py,sha256=lpnjTFc4aHrZGxSHdxBe__kP6lWTMhwqGGao14AF0OE,114957
|
@@ -30,15 +30,15 @@ localstack/aws/api/cloudwatch/__init__.py,sha256=Ep6Z3t6StIsKHCtvkvAroODVxxWvG5X
|
|
30
30
|
localstack/aws/api/config/__init__.py,sha256=_34oLgPd2zFkD0EnDM4jVy90rmtW7CcVWtfHoVYAjxU,141276
|
31
31
|
localstack/aws/api/dynamodb/__init__.py,sha256=ilFvq01MyOaHdrK9TTA_WQZ1291iGCWnXI-odC0yeyQ,91143
|
32
32
|
localstack/aws/api/dynamodbstreams/__init__.py,sha256=Xfnce5gsHC4omBJrNsCi3F7TJpuvqn9K7rC5EL-y4UQ,6999
|
33
|
-
localstack/aws/api/ec2/__init__.py,sha256=
|
33
|
+
localstack/aws/api/ec2/__init__.py,sha256=yhOI0jiJJDiklqlOkVrMzmh_Gbc25uTVim3nk5Q5x5U,899605
|
34
34
|
localstack/aws/api/es/__init__.py,sha256=T5wz0U7jtm2ZjRJkkBHG8qRR8n2Hy51LeCAN25EeMjg,63675
|
35
35
|
localstack/aws/api/events/__init__.py,sha256=da5KoBvoTs2iDLJ6y9y61KPpYg_WDAE28fwPsH4Clns,60629
|
36
36
|
localstack/aws/api/firehose/__init__.py,sha256=iM9_VTHDwtqtupKPBCqAQIh6Xk9ziM4rEEsxPRMN6RM,58271
|
37
37
|
localstack/aws/api/iam/__init__.py,sha256=4d-fX9uElIfPB50HZu4fWukK5TUYAuYgkA0uRj3e8sY,111582
|
38
|
-
localstack/aws/api/kinesis/__init__.py,sha256
|
38
|
+
localstack/aws/api/kinesis/__init__.py,sha256=xlRyrwavEaHByTEqbaUC3gLC66m4FSahK6-J3YMUd5U,28357
|
39
39
|
localstack/aws/api/kms/__init__.py,sha256=IxHz17S0stwf2c2aNwrN0dWQAqXS8eb0rMiztgLHntI,54321
|
40
40
|
localstack/aws/api/lambda_/__init__.py,sha256=ULOkQX0Nrbpaty0SiJPxkgiG1voqjbhqdVMAA6n4sqA,77829
|
41
|
-
localstack/aws/api/logs/__init__.py,sha256=
|
41
|
+
localstack/aws/api/logs/__init__.py,sha256=MVX-NOT3eHezNbvaA7Xbq3UUJDDRCXIxQThr_PT9zF8,82820
|
42
42
|
localstack/aws/api/opensearch/__init__.py,sha256=yGG1TtB373ZVJ6JA8t4h6tfgOcJ-lOdv7W3J6sG3sWU,97556
|
43
43
|
localstack/aws/api/pipes/__init__.py,sha256=pZMhYeqT6BxUk-pweK6TWS9gLdy7GJbQLfidyvuhBJA,33108
|
44
44
|
localstack/aws/api/redshift/__init__.py,sha256=ItgcsfPYX6gqh46DEZtea4LyLYBG1qsWcrM8H0mSTj0,155612
|
@@ -53,7 +53,7 @@ localstack/aws/api/secretsmanager/__init__.py,sha256=5dunc0wMBtVn7gwz4Fu4TkE6aaE
|
|
53
53
|
localstack/aws/api/ses/__init__.py,sha256=u3J6qgzcWVmDw2-5Oq6aUxdlVHt9zJhavibW_IWQKrs,56094
|
54
54
|
localstack/aws/api/sns/__init__.py,sha256=71YenkTo950vRTxzr36Oo7KilbgkMPinrfeXQAqg9yE,28373
|
55
55
|
localstack/aws/api/sqs/__init__.py,sha256=wo96q4rhWEafmhR2jc-hzHtvbDCoK13RKYb7gcyeruQ,20906
|
56
|
-
localstack/aws/api/ssm/__init__.py,sha256=
|
56
|
+
localstack/aws/api/ssm/__init__.py,sha256=2tJ9QWKX60WQKqdlYsLT5eeABuxw14CcCXz_BUmXOK8,235374
|
57
57
|
localstack/aws/api/stepfunctions/__init__.py,sha256=PFeCgVj6pjDJv0yGtNs0CtX3Dy-QWCzYH1QZn-t5hhQ,49331
|
58
58
|
localstack/aws/api/sts/__init__.py,sha256=7KOzJgPUJ63JUcYv19O-Z_bOtSuz2y7nxZ86lbzfRUw,10796
|
59
59
|
localstack/aws/api/support/__init__.py,sha256=2w1BEVB9Gt_iVM9t9-RBwx0W6PH89gJpM0z7R-KYeI0,16813
|
@@ -1280,13 +1280,13 @@ localstack/utils/server/tcp_proxy.py,sha256=rR6d5jR0ozDvIlpHiqW0cfyY9a2fRGdOzyA8
|
|
1280
1280
|
localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1281
1281
|
localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
|
1282
1282
|
localstack/utils/xray/traceid.py,sha256=SQSsMV2rhbTNK6ceIoozZYuGU7Fg687EXcgqxoDl1Fw,1106
|
1283
|
-
localstack_core-4.3.1.
|
1284
|
-
localstack_core-4.3.1.
|
1285
|
-
localstack_core-4.3.1.
|
1286
|
-
localstack_core-4.3.1.
|
1287
|
-
localstack_core-4.3.1.
|
1288
|
-
localstack_core-4.3.1.
|
1289
|
-
localstack_core-4.3.1.
|
1290
|
-
localstack_core-4.3.1.
|
1291
|
-
localstack_core-4.3.1.
|
1292
|
-
localstack_core-4.3.1.
|
1283
|
+
localstack_core-4.3.1.dev94.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
|
1284
|
+
localstack_core-4.3.1.dev94.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
|
1285
|
+
localstack_core-4.3.1.dev94.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
|
1286
|
+
localstack_core-4.3.1.dev94.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
|
1287
|
+
localstack_core-4.3.1.dev94.dist-info/METADATA,sha256=wCbIiPhVbZwNG6dIwlJwYVBrm9HXTr7goFbjH_148uU,5531
|
1288
|
+
localstack_core-4.3.1.dev94.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
|
1289
|
+
localstack_core-4.3.1.dev94.dist-info/entry_points.txt,sha256=UqGFR0MPKa2sfresdqiCpqBZuWyRxCb3UG77oPVMzVA,20564
|
1290
|
+
localstack_core-4.3.1.dev94.dist-info/plux.json,sha256=w0kETAUaFB96832YZgVONOt3YcgHEOtKh1gLRjZVTfA,20786
|
1291
|
+
localstack_core-4.3.1.dev94.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
|
1292
|
+
localstack_core-4.3.1.dev94.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
{"localstack.hooks.on_infra_start": ["setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "_patch_botocore_endpoint_in_memory=localstack.aws.client:_patch_botocore_endpoint_in_memory", "_patch_botocore_json_parser=localstack.aws.client:_patch_botocore_json_parser", "_patch_cbor2=localstack.aws.client:_patch_cbor2"], "localstack.hooks.on_infra_shutdown": ["stop_server=localstack.dns.plugins:stop_server", "remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "run_on_after_service_shutdown_handlers=localstack.runtime.shutdown:run_on_after_service_shutdown_handlers", "run_shutdown_handlers=localstack.runtime.shutdown:run_shutdown_handlers", "shutdown_services=localstack.runtime.shutdown:shutdown_services", "aggregate_and_send=localstack.utils.analytics.usage:aggregate_and_send", "publish_metrics=localstack.utils.analytics.metrics:publish_metrics"], "localstack.cloudformation.resource_providers": ["AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin"], "localstack.packages": ["lambda-java-libs/community=localstack.services.lambda_.plugins:lambda_java_libs", "lambda-runtime/community=localstack.services.lambda_.plugins:lambda_runtime_package", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "vosk/community=localstack.services.transcribe.plugins:vosk_package", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "terraform/community=localstack.packages.plugins:terraform_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_package", "kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package"], "localstack.init.runner": ["py=localstack.runtime.init:PythonScriptRunner", "sh=localstack.runtime.init:ShellScriptRunner"], "localstack.hooks.on_infra_ready": ["_run_init_scripts_on_ready=localstack.runtime.init:_run_init_scripts_on_ready"], "localstack.aws.provider": ["acm:default=localstack.services.providers:acm", "apigateway:default=localstack.services.providers:apigateway", "apigateway:legacy=localstack.services.providers:apigateway_legacy", "apigateway:next_gen=localstack.services.providers:apigateway_next_gen", "config:default=localstack.services.providers:awsconfig", "cloudformation:default=localstack.services.providers:cloudformation", "cloudformation:engine-v2=localstack.services.providers:cloudformation_v2", "cloudwatch:default=localstack.services.providers:cloudwatch", "cloudwatch:v1=localstack.services.providers:cloudwatch_v1", "cloudwatch:v2=localstack.services.providers:cloudwatch_v2", "dynamodb:default=localstack.services.providers:dynamodb", "dynamodb:v2=localstack.services.providers:dynamodb_v2", "dynamodbstreams:default=localstack.services.providers:dynamodbstreams", "dynamodbstreams:v2=localstack.services.providers:dynamodbstreams_v2", "ec2:default=localstack.services.providers:ec2", "es:default=localstack.services.providers:es", "events:default=localstack.services.providers:events", "events:legacy=localstack.services.providers:events_legacy", "events:v1=localstack.services.providers:events_v1", "events:v2=localstack.services.providers:events_v2", "firehose:default=localstack.services.providers:firehose", "iam:default=localstack.services.providers:iam", "kinesis:default=localstack.services.providers:kinesis", "kms:default=localstack.services.providers:kms", "lambda:default=localstack.services.providers:lambda_", "lambda:asf=localstack.services.providers:lambda_asf", "lambda:v2=localstack.services.providers:lambda_v2", "logs:default=localstack.services.providers:logs", "opensearch:default=localstack.services.providers:opensearch", "redshift:default=localstack.services.providers:redshift", "resource-groups:default=localstack.services.providers:resource_groups", "resourcegroupstaggingapi:default=localstack.services.providers:resourcegroupstaggingapi", "route53:default=localstack.services.providers:route53", "route53resolver:default=localstack.services.providers:route53resolver", "s3:default=localstack.services.providers:s3", "s3control:default=localstack.services.providers:s3control", "scheduler:default=localstack.services.providers:scheduler", "secretsmanager:default=localstack.services.providers:secretsmanager", "ses:default=localstack.services.providers:ses", "sns:default=localstack.services.providers:sns", "sqs:default=localstack.services.providers:sqs", "ssm:default=localstack.services.providers:ssm", "stepfunctions:default=localstack.services.providers:stepfunctions", "stepfunctions:v2=localstack.services.providers:stepfunctions_v2", "sts:default=localstack.services.providers:sts", "support:default=localstack.services.providers:support", "swf:default=localstack.services.providers:swf", "transcribe:default=localstack.services.providers:transcribe"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"], "localstack.hooks.configure_localstack_container": ["_mount_machine_file=localstack.utils.analytics.metadata:_mount_machine_file"], "localstack.hooks.prepare_host": ["prepare_host_machine_id=localstack.utils.analytics.metadata:prepare_host_machine_id"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"]}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"localstack.cloudformation.resource_providers": ["AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin"], "localstack.hooks.on_infra_start": ["apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "_patch_botocore_endpoint_in_memory=localstack.aws.client:_patch_botocore_endpoint_in_memory", "_patch_botocore_json_parser=localstack.aws.client:_patch_botocore_json_parser", "_patch_cbor2=localstack.aws.client:_patch_cbor2", "conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui"], "localstack.packages": ["opensearch/community=localstack.services.opensearch.plugins:opensearch_package", "lambda-java-libs/community=localstack.services.lambda_.plugins:lambda_java_libs", "lambda-runtime/community=localstack.services.lambda_.plugins:lambda_runtime_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_package", "kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package", "vosk/community=localstack.services.transcribe.plugins:vosk_package", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "terraform/community=localstack.packages.plugins:terraform_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package"], "localstack.hooks.on_infra_shutdown": ["remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints", "stop_server=localstack.dns.plugins:stop_server", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "publish_metrics=localstack.utils.analytics.metrics:publish_metrics", "aggregate_and_send=localstack.utils.analytics.usage:aggregate_and_send", "run_on_after_service_shutdown_handlers=localstack.runtime.shutdown:run_on_after_service_shutdown_handlers", "run_shutdown_handlers=localstack.runtime.shutdown:run_shutdown_handlers", "shutdown_services=localstack.runtime.shutdown:shutdown_services"], "localstack.hooks.configure_localstack_container": ["_mount_machine_file=localstack.utils.analytics.metadata:_mount_machine_file"], "localstack.hooks.prepare_host": ["prepare_host_machine_id=localstack.utils.analytics.metadata:prepare_host_machine_id"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "localstack.init.runner": ["py=localstack.runtime.init:PythonScriptRunner", "sh=localstack.runtime.init:ShellScriptRunner"], "localstack.hooks.on_infra_ready": ["_run_init_scripts_on_ready=localstack.runtime.init:_run_init_scripts_on_ready"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"], "localstack.aws.provider": ["acm:default=localstack.services.providers:acm", "apigateway:default=localstack.services.providers:apigateway", "apigateway:legacy=localstack.services.providers:apigateway_legacy", "apigateway:next_gen=localstack.services.providers:apigateway_next_gen", "config:default=localstack.services.providers:awsconfig", "cloudformation:default=localstack.services.providers:cloudformation", "cloudformation:engine-v2=localstack.services.providers:cloudformation_v2", "cloudwatch:default=localstack.services.providers:cloudwatch", "cloudwatch:v1=localstack.services.providers:cloudwatch_v1", "cloudwatch:v2=localstack.services.providers:cloudwatch_v2", "dynamodb:default=localstack.services.providers:dynamodb", "dynamodb:v2=localstack.services.providers:dynamodb_v2", "dynamodbstreams:default=localstack.services.providers:dynamodbstreams", "dynamodbstreams:v2=localstack.services.providers:dynamodbstreams_v2", "ec2:default=localstack.services.providers:ec2", "es:default=localstack.services.providers:es", "events:default=localstack.services.providers:events", "events:legacy=localstack.services.providers:events_legacy", "events:v1=localstack.services.providers:events_v1", "events:v2=localstack.services.providers:events_v2", "firehose:default=localstack.services.providers:firehose", "iam:default=localstack.services.providers:iam", "kinesis:default=localstack.services.providers:kinesis", "kms:default=localstack.services.providers:kms", "lambda:default=localstack.services.providers:lambda_", "lambda:asf=localstack.services.providers:lambda_asf", "lambda:v2=localstack.services.providers:lambda_v2", "logs:default=localstack.services.providers:logs", "opensearch:default=localstack.services.providers:opensearch", "redshift:default=localstack.services.providers:redshift", "resource-groups:default=localstack.services.providers:resource_groups", "resourcegroupstaggingapi:default=localstack.services.providers:resourcegroupstaggingapi", "route53:default=localstack.services.providers:route53", "route53resolver:default=localstack.services.providers:route53resolver", "s3:default=localstack.services.providers:s3", "s3control:default=localstack.services.providers:s3control", "scheduler:default=localstack.services.providers:scheduler", "secretsmanager:default=localstack.services.providers:secretsmanager", "ses:default=localstack.services.providers:ses", "sns:default=localstack.services.providers:sns", "sqs:default=localstack.services.providers:sqs", "ssm:default=localstack.services.providers:ssm", "stepfunctions:default=localstack.services.providers:stepfunctions", "stepfunctions:v2=localstack.services.providers:stepfunctions_v2", "sts:default=localstack.services.providers:sts", "support:default=localstack.services.providers:support", "swf:default=localstack.services.providers:swf", "transcribe:default=localstack.services.providers:transcribe"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"]}
|
File without changes
|
{localstack_core-4.3.1.dev92.data → localstack_core-4.3.1.dev94.data}/scripts/localstack-supervisor
RENAMED
File without changes
|
{localstack_core-4.3.1.dev92.data → localstack_core-4.3.1.dev94.data}/scripts/localstack.bat
RENAMED
File without changes
|
{localstack_core-4.3.1.dev92.dist-info → localstack_core-4.3.1.dev94.dist-info}/entry_points.txt
RENAMED
File without changes
|
{localstack_core-4.3.1.dev92.dist-info → localstack_core-4.3.1.dev94.dist-info}/licenses/LICENSE.txt
RENAMED
File without changes
|
{localstack_core-4.3.1.dev92.dist-info → localstack_core-4.3.1.dev94.dist-info}/top_level.txt
RENAMED
File without changes
|