localstack-core 4.3.1.dev3__py3-none-any.whl → 4.3.1.dev5__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/apigateway/__init__.py +6 -0
- localstack/aws/api/cloudformation/__init__.py +26 -1
- localstack/aws/api/ssm/__init__.py +16 -0
- localstack/services/ssm/provider.py +2 -0
- localstack/version.py +2 -2
- {localstack_core-4.3.1.dev3.dist-info → localstack_core-4.3.1.dev5.dist-info}/METADATA +3 -3
- {localstack_core-4.3.1.dev3.dist-info → localstack_core-4.3.1.dev5.dist-info}/RECORD +15 -15
- localstack_core-4.3.1.dev5.dist-info/plux.json +1 -0
- localstack_core-4.3.1.dev3.dist-info/plux.json +0 -1
- {localstack_core-4.3.1.dev3.data → localstack_core-4.3.1.dev5.data}/scripts/localstack +0 -0
- {localstack_core-4.3.1.dev3.data → localstack_core-4.3.1.dev5.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.3.1.dev3.data → localstack_core-4.3.1.dev5.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.3.1.dev3.dist-info → localstack_core-4.3.1.dev5.dist-info}/WHEEL +0 -0
- {localstack_core-4.3.1.dev3.dist-info → localstack_core-4.3.1.dev5.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.3.1.dev3.dist-info → localstack_core-4.3.1.dev5.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.3.1.dev3.dist-info → localstack_core-4.3.1.dev5.dist-info}/top_level.txt +0 -0
@@ -124,6 +124,11 @@ class IntegrationType(StrEnum):
|
|
124
124
|
AWS_PROXY = "AWS_PROXY"
|
125
125
|
|
126
126
|
|
127
|
+
class IpAddressType(StrEnum):
|
128
|
+
ipv4 = "ipv4"
|
129
|
+
dualstack = "dualstack"
|
130
|
+
|
131
|
+
|
127
132
|
class LocationStatusType(StrEnum):
|
128
133
|
DOCUMENTED = "DOCUMENTED"
|
129
134
|
UNDOCUMENTED = "UNDOCUMENTED"
|
@@ -449,6 +454,7 @@ ListOfEndpointType = List[EndpointType]
|
|
449
454
|
|
450
455
|
class EndpointConfiguration(TypedDict, total=False):
|
451
456
|
types: Optional[ListOfEndpointType]
|
457
|
+
ipAddressType: Optional[IpAddressType]
|
452
458
|
vpcEndpointIds: Optional[ListOfString]
|
453
459
|
|
454
460
|
|
@@ -120,6 +120,7 @@ ResourceSignalUniqueId = str
|
|
120
120
|
ResourceStatusReason = str
|
121
121
|
ResourceToSkip = str
|
122
122
|
ResourceType = str
|
123
|
+
ResourceTypeFilter = str
|
123
124
|
ResourceTypePrefix = str
|
124
125
|
ResourcesFailed = int
|
125
126
|
ResourcesPending = int
|
@@ -526,6 +527,11 @@ class ResourceStatus(StrEnum):
|
|
526
527
|
ROLLBACK_FAILED = "ROLLBACK_FAILED"
|
527
528
|
|
528
529
|
|
530
|
+
class ScanType(StrEnum):
|
531
|
+
FULL = "FULL"
|
532
|
+
PARTIAL = "PARTIAL"
|
533
|
+
|
534
|
+
|
529
535
|
class StackDriftDetectionStatus(StrEnum):
|
530
536
|
DETECTION_IN_PROGRESS = "DETECTION_IN_PROGRESS"
|
531
537
|
DETECTION_FAILED = "DETECTION_FAILED"
|
@@ -1536,6 +1542,16 @@ class DescribeResourceScanInput(ServiceRequest):
|
|
1536
1542
|
ResourceScanId: ResourceScanId
|
1537
1543
|
|
1538
1544
|
|
1545
|
+
ResourceTypeFilters = List[ResourceTypeFilter]
|
1546
|
+
|
1547
|
+
|
1548
|
+
class ScanFilter(TypedDict, total=False):
|
1549
|
+
Types: Optional[ResourceTypeFilters]
|
1550
|
+
|
1551
|
+
|
1552
|
+
ScanFilters = List[ScanFilter]
|
1553
|
+
|
1554
|
+
|
1539
1555
|
class DescribeResourceScanOutput(TypedDict, total=False):
|
1540
1556
|
ResourceScanId: Optional[ResourceScanId]
|
1541
1557
|
Status: Optional[ResourceScanStatus]
|
@@ -1546,6 +1562,7 @@ class DescribeResourceScanOutput(TypedDict, total=False):
|
|
1546
1562
|
ResourceTypes: Optional[ResourceTypes]
|
1547
1563
|
ResourcesScanned: Optional[ResourcesScanned]
|
1548
1564
|
ResourcesRead: Optional[ResourcesRead]
|
1565
|
+
ScanFilters: Optional[ScanFilters]
|
1549
1566
|
|
1550
1567
|
|
1551
1568
|
class DescribeStackDriftDetectionStatusInput(ServiceRequest):
|
@@ -2246,6 +2263,7 @@ class ListResourceScanResourcesOutput(TypedDict, total=False):
|
|
2246
2263
|
class ListResourceScansInput(ServiceRequest):
|
2247
2264
|
NextToken: Optional[NextToken]
|
2248
2265
|
MaxResults: Optional[ResourceScannerMaxResults]
|
2266
|
+
ScanTypeFilter: Optional[ScanType]
|
2249
2267
|
|
2250
2268
|
|
2251
2269
|
class ResourceScanSummary(TypedDict, total=False):
|
@@ -2255,6 +2273,7 @@ class ResourceScanSummary(TypedDict, total=False):
|
|
2255
2273
|
StartTime: Optional[Timestamp]
|
2256
2274
|
EndTime: Optional[Timestamp]
|
2257
2275
|
PercentageCompleted: Optional[PercentageCompleted]
|
2276
|
+
ScanType: Optional[ScanType]
|
2258
2277
|
|
2259
2278
|
|
2260
2279
|
ResourceScanSummaries = List[ResourceScanSummary]
|
@@ -2745,6 +2764,7 @@ class SignalResourceInput(ServiceRequest):
|
|
2745
2764
|
|
2746
2765
|
class StartResourceScanInput(ServiceRequest):
|
2747
2766
|
ClientRequestToken: Optional[ClientRequestToken]
|
2767
|
+
ScanFilters: Optional[ScanFilters]
|
2748
2768
|
|
2749
2769
|
|
2750
2770
|
class StartResourceScanOutput(TypedDict, total=False):
|
@@ -3482,6 +3502,7 @@ class CloudformationApi:
|
|
3482
3502
|
context: RequestContext,
|
3483
3503
|
next_token: NextToken = None,
|
3484
3504
|
max_results: ResourceScannerMaxResults = None,
|
3505
|
+
scan_type_filter: ScanType = None,
|
3485
3506
|
**kwargs,
|
3486
3507
|
) -> ListResourceScansOutput:
|
3487
3508
|
raise NotImplementedError
|
@@ -3709,7 +3730,11 @@ class CloudformationApi:
|
|
3709
3730
|
|
3710
3731
|
@handler("StartResourceScan")
|
3711
3732
|
def start_resource_scan(
|
3712
|
-
self,
|
3733
|
+
self,
|
3734
|
+
context: RequestContext,
|
3735
|
+
client_request_token: ClientRequestToken = None,
|
3736
|
+
scan_filters: ScanFilters = None,
|
3737
|
+
**kwargs,
|
3713
3738
|
) -> StartResourceScanOutput:
|
3714
3739
|
raise NotImplementedError
|
3715
3740
|
|
@@ -252,6 +252,7 @@ ParameterValue = str
|
|
252
252
|
ParametersFilterValue = str
|
253
253
|
PatchAdvisoryId = str
|
254
254
|
PatchArch = str
|
255
|
+
PatchAvailableSecurityUpdateCount = int
|
255
256
|
PatchBaselineMaxResults = int
|
256
257
|
PatchBugzillaId = str
|
257
258
|
PatchCVEId = str
|
@@ -960,6 +961,7 @@ class PatchComplianceDataState(StrEnum):
|
|
960
961
|
MISSING = "MISSING"
|
961
962
|
NOT_APPLICABLE = "NOT_APPLICABLE"
|
962
963
|
FAILED = "FAILED"
|
964
|
+
AVAILABLE_SECURITY_UPDATE = "AVAILABLE_SECURITY_UPDATE"
|
963
965
|
|
964
966
|
|
965
967
|
class PatchComplianceLevel(StrEnum):
|
@@ -971,6 +973,11 @@ class PatchComplianceLevel(StrEnum):
|
|
971
973
|
UNSPECIFIED = "UNSPECIFIED"
|
972
974
|
|
973
975
|
|
976
|
+
class PatchComplianceStatus(StrEnum):
|
977
|
+
COMPLIANT = "COMPLIANT"
|
978
|
+
NON_COMPLIANT = "NON_COMPLIANT"
|
979
|
+
|
980
|
+
|
974
981
|
class PatchDeploymentStatus(StrEnum):
|
975
982
|
APPROVED = "APPROVED"
|
976
983
|
PENDING_APPROVAL = "PENDING_APPROVAL"
|
@@ -2510,6 +2517,7 @@ class BaselineOverride(TypedDict, total=False):
|
|
2510
2517
|
RejectedPatchesAction: Optional[PatchAction]
|
2511
2518
|
ApprovedPatchesEnableNonSecurity: Optional[Boolean]
|
2512
2519
|
Sources: Optional[PatchSourceList]
|
2520
|
+
AvailableSecurityUpdatesComplianceStatus: Optional[PatchComplianceStatus]
|
2513
2521
|
|
2514
2522
|
|
2515
2523
|
InstanceIdList = List[InstanceId]
|
@@ -2970,6 +2978,7 @@ class CreatePatchBaselineRequest(ServiceRequest):
|
|
2970
2978
|
RejectedPatchesAction: Optional[PatchAction]
|
2971
2979
|
Description: Optional[BaselineDescription]
|
2972
2980
|
Sources: Optional[PatchSourceList]
|
2981
|
+
AvailableSecurityUpdatesComplianceStatus: Optional[PatchComplianceStatus]
|
2973
2982
|
ClientToken: Optional[ClientToken]
|
2974
2983
|
Tags: Optional[TagList]
|
2975
2984
|
|
@@ -3547,6 +3556,7 @@ class InstancePatchState(TypedDict, total=False):
|
|
3547
3556
|
FailedCount: Optional[PatchFailedCount]
|
3548
3557
|
UnreportedNotApplicableCount: Optional[PatchUnreportedNotApplicableCount]
|
3549
3558
|
NotApplicableCount: Optional[PatchNotApplicableCount]
|
3559
|
+
AvailableSecurityUpdateCount: Optional[PatchAvailableSecurityUpdateCount]
|
3550
3560
|
OperationStartTime: DateTime
|
3551
3561
|
OperationEndTime: DateTime
|
3552
3562
|
Operation: PatchOperationType
|
@@ -4089,6 +4099,7 @@ class DescribePatchGroupStateResult(TypedDict, total=False):
|
|
4089
4099
|
InstancesWithCriticalNonCompliantPatches: Optional[InstancesCount]
|
4090
4100
|
InstancesWithSecurityNonCompliantPatches: Optional[InstancesCount]
|
4091
4101
|
InstancesWithOtherNonCompliantPatches: Optional[InstancesCount]
|
4102
|
+
InstancesWithAvailableSecurityUpdates: Optional[Integer]
|
4092
4103
|
|
4093
4104
|
|
4094
4105
|
class DescribePatchGroupsRequest(ServiceRequest):
|
@@ -4857,6 +4868,7 @@ class GetPatchBaselineResult(TypedDict, total=False):
|
|
4857
4868
|
ModifiedDate: Optional[DateTime]
|
4858
4869
|
Description: Optional[BaselineDescription]
|
4859
4870
|
Sources: Optional[PatchSourceList]
|
4871
|
+
AvailableSecurityUpdatesComplianceStatus: Optional[PatchComplianceStatus]
|
4860
4872
|
|
4861
4873
|
|
4862
4874
|
class GetResourcePoliciesRequest(ServiceRequest):
|
@@ -5835,6 +5847,7 @@ class UpdatePatchBaselineRequest(ServiceRequest):
|
|
5835
5847
|
RejectedPatchesAction: Optional[PatchAction]
|
5836
5848
|
Description: Optional[BaselineDescription]
|
5837
5849
|
Sources: Optional[PatchSourceList]
|
5850
|
+
AvailableSecurityUpdatesComplianceStatus: Optional[PatchComplianceStatus]
|
5838
5851
|
Replace: Optional[Boolean]
|
5839
5852
|
|
5840
5853
|
|
@@ -5853,6 +5866,7 @@ class UpdatePatchBaselineResult(TypedDict, total=False):
|
|
5853
5866
|
ModifiedDate: Optional[DateTime]
|
5854
5867
|
Description: Optional[BaselineDescription]
|
5855
5868
|
Sources: Optional[PatchSourceList]
|
5869
|
+
AvailableSecurityUpdatesComplianceStatus: Optional[PatchComplianceStatus]
|
5856
5870
|
|
5857
5871
|
|
5858
5872
|
class UpdateResourceDataSyncRequest(ServiceRequest):
|
@@ -6055,6 +6069,7 @@ class SsmApi:
|
|
6055
6069
|
rejected_patches_action: PatchAction = None,
|
6056
6070
|
description: BaselineDescription = None,
|
6057
6071
|
sources: PatchSourceList = None,
|
6072
|
+
available_security_updates_compliance_status: PatchComplianceStatus = None,
|
6058
6073
|
client_token: ClientToken = None,
|
6059
6074
|
tags: TagList = None,
|
6060
6075
|
**kwargs,
|
@@ -7522,6 +7537,7 @@ class SsmApi:
|
|
7522
7537
|
rejected_patches_action: PatchAction = None,
|
7523
7538
|
description: BaselineDescription = None,
|
7524
7539
|
sources: PatchSourceList = None,
|
7540
|
+
available_security_updates_compliance_status: PatchComplianceStatus = None,
|
7525
7541
|
replace: Boolean = None,
|
7526
7542
|
**kwargs,
|
7527
7543
|
) -> UpdatePatchBaselineResult:
|
@@ -60,6 +60,7 @@ from localstack.aws.api.ssm import (
|
|
60
60
|
PatchAction,
|
61
61
|
PatchBaselineMaxResults,
|
62
62
|
PatchComplianceLevel,
|
63
|
+
PatchComplianceStatus,
|
63
64
|
PatchFilterGroup,
|
64
65
|
PatchIdList,
|
65
66
|
PatchOrchestratorFilterList,
|
@@ -201,6 +202,7 @@ class SsmProvider(SsmApi, ABC):
|
|
201
202
|
rejected_patches_action: PatchAction = None,
|
202
203
|
description: BaselineDescription = None,
|
203
204
|
sources: PatchSourceList = None,
|
205
|
+
available_security_updates_compliance_status: PatchComplianceStatus = None,
|
204
206
|
client_token: ClientToken = None,
|
205
207
|
tags: TagList = None,
|
206
208
|
**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.dev5'
|
21
|
+
__version_tuple__ = version_tuple = (4, 3, 1, 'dev5')
|
@@ -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.dev5
|
4
4
|
Summary: The core library and runtime of LocalStack
|
5
5
|
Author-email: LocalStack Contributors <info@localstack.cloud>
|
6
6
|
Project-URL: Homepage, https://localstack.cloud
|
@@ -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.37.
|
35
|
-
Requires-Dist: botocore==1.37.
|
34
|
+
Requires-Dist: boto3==1.37.23; extra == "base-runtime"
|
35
|
+
Requires-Dist: botocore==1.37.23; 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"
|
@@ -3,7 +3,7 @@ localstack/constants.py,sha256=bBh6djh4x37MrS8az8LizX_APMZ56XdtJHCnZdOnmeg,6867
|
|
3
3
|
localstack/deprecations.py,sha256=t3zeaZaHhKYM8snP1wRZhpvAy6MbB12Vqv5hK78bwJ0,15162
|
4
4
|
localstack/openapi.yaml,sha256=B803NmpwsxG8PHpHrdZYBrUYjnrRh7B_JX0XuNynuFs,30237
|
5
5
|
localstack/plugins.py,sha256=BIJC9dlo0WbP7lLKkCiGtd_2q5oeqiHZohvoRTcejXM,2457
|
6
|
-
localstack/version.py,sha256=
|
6
|
+
localstack/version.py,sha256=80gM64bw_gpm21u64ypkdhikmJVx6Wbgj-ZTFpcvkx8,524
|
7
7
|
localstack/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
localstack/aws/accounts.py,sha256=102zpGowOxo0S6UGMpfjw14QW7WCLVAGsnFK5xFMLoo,3043
|
9
9
|
localstack/aws/app.py,sha256=n9bJCfJRuMz_gLGAH430c3bIQXgUXeWO5NPfcdL2MV8,5145
|
@@ -22,9 +22,9 @@ localstack/aws/spec.py,sha256=C9i0xdK6naFrTz80O8chgqqv2NBFKIVpM-8bDzCgLCg,14233
|
|
22
22
|
localstack/aws/api/__init__.py,sha256=JspwCauxfTTdLNVAr7AkQaPu1lELdBQ1miB9B9sndOo,297
|
23
23
|
localstack/aws/api/core.py,sha256=TDLYXrv3coZAW_Lv2UaqKqHnE_cufP3aDstjaHbFasw,6336
|
24
24
|
localstack/aws/api/acm/__init__.py,sha256=be_d0IAD4EoHJYPaoLpIOrONeeA7fcaUaxDznxA6LpU,17744
|
25
|
-
localstack/aws/api/apigateway/__init__.py,sha256=
|
25
|
+
localstack/aws/api/apigateway/__init__.py,sha256=rpyPix_UEXxOJPUZ7M6V0WTmfJk7iJ9gqORm5jXsLkw,78864
|
26
26
|
localstack/aws/api/cloudcontrol/__init__.py,sha256=syr0N7olc2p6zxOY2A3hvf4y_rMN30EUg_9yAIH9Gxw,11462
|
27
|
-
localstack/aws/api/cloudformation/__init__.py,sha256=
|
27
|
+
localstack/aws/api/cloudformation/__init__.py,sha256=lpnjTFc4aHrZGxSHdxBe__kP6lWTMhwqGGao14AF0OE,114957
|
28
28
|
localstack/aws/api/cloudwatch/__init__.py,sha256=Ep6Z3t6StIsKHCtvkvAroODVxxWvG5Xs3MxhQ6ARYAE,44810
|
29
29
|
localstack/aws/api/config/__init__.py,sha256=_34oLgPd2zFkD0EnDM4jVy90rmtW7CcVWtfHoVYAjxU,141276
|
30
30
|
localstack/aws/api/dynamodb/__init__.py,sha256=ilFvq01MyOaHdrK9TTA_WQZ1291iGCWnXI-odC0yeyQ,91143
|
@@ -52,7 +52,7 @@ localstack/aws/api/secretsmanager/__init__.py,sha256=5dunc0wMBtVn7gwz4Fu4TkE6aaE
|
|
52
52
|
localstack/aws/api/ses/__init__.py,sha256=u3J6qgzcWVmDw2-5Oq6aUxdlVHt9zJhavibW_IWQKrs,56094
|
53
53
|
localstack/aws/api/sns/__init__.py,sha256=71YenkTo950vRTxzr36Oo7KilbgkMPinrfeXQAqg9yE,28373
|
54
54
|
localstack/aws/api/sqs/__init__.py,sha256=wo96q4rhWEafmhR2jc-hzHtvbDCoK13RKYb7gcyeruQ,20906
|
55
|
-
localstack/aws/api/ssm/__init__.py,sha256=
|
55
|
+
localstack/aws/api/ssm/__init__.py,sha256=AmoTJWBMUpauYdjShZbNfFj-0B9PKfXSO3W2Qod2_30,232561
|
56
56
|
localstack/aws/api/stepfunctions/__init__.py,sha256=PFeCgVj6pjDJv0yGtNs0CtX3Dy-QWCzYH1QZn-t5hhQ,49331
|
57
57
|
localstack/aws/api/sts/__init__.py,sha256=7KOzJgPUJ63JUcYv19O-Z_bOtSuz2y7nxZ86lbzfRUw,10796
|
58
58
|
localstack/aws/api/support/__init__.py,sha256=2w1BEVB9Gt_iVM9t9-RBwx0W6PH89gJpM0z7R-KYeI0,16813
|
@@ -760,7 +760,7 @@ localstack/services/sqs/resource_providers/aws_sqs_queuepolicy.py,sha256=a-78vr7
|
|
760
760
|
localstack/services/sqs/resource_providers/aws_sqs_queuepolicy.schema.json,sha256=C-CPpaN2nkYJQ7FAxMz-5d--NTYf40AHuRJ6MfaqVS8,547
|
761
761
|
localstack/services/sqs/resource_providers/aws_sqs_queuepolicy_plugin.py,sha256=w00BxdZSJhPwfp8Qe8yenZGRB_WrC79baWDOvCFnjK0,565
|
762
762
|
localstack/services/ssm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
763
|
-
localstack/services/ssm/provider.py,sha256=
|
763
|
+
localstack/services/ssm/provider.py,sha256=epooPEzSGwFsvt1NTAn_KWASmT1KfYRc4PzN0yMe4q4,17286
|
764
764
|
localstack/services/ssm/resource_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
765
765
|
localstack/services/ssm/resource_providers/aws_ssm_maintenancewindow.py,sha256=HvBpLCn0LuXZEZX08BgEyF0BQZz_2NU0Nr4zCObEwZ8,3432
|
766
766
|
localstack/services/ssm/resource_providers/aws_ssm_maintenancewindow.schema.json,sha256=39lVtVAcg3p2GG3RfXlT2uFFcDucXmsDsv3xoOItZuM,1384
|
@@ -1267,13 +1267,13 @@ localstack/utils/server/tcp_proxy.py,sha256=rR6d5jR0ozDvIlpHiqW0cfyY9a2fRGdOzyA8
|
|
1267
1267
|
localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1268
1268
|
localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
|
1269
1269
|
localstack/utils/xray/traceid.py,sha256=SQSsMV2rhbTNK6ceIoozZYuGU7Fg687EXcgqxoDl1Fw,1106
|
1270
|
-
localstack_core-4.3.1.
|
1271
|
-
localstack_core-4.3.1.
|
1272
|
-
localstack_core-4.3.1.
|
1273
|
-
localstack_core-4.3.1.
|
1274
|
-
localstack_core-4.3.1.
|
1275
|
-
localstack_core-4.3.1.
|
1276
|
-
localstack_core-4.3.1.
|
1277
|
-
localstack_core-4.3.1.
|
1278
|
-
localstack_core-4.3.1.
|
1279
|
-
localstack_core-4.3.1.
|
1270
|
+
localstack_core-4.3.1.dev5.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
|
1271
|
+
localstack_core-4.3.1.dev5.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
|
1272
|
+
localstack_core-4.3.1.dev5.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
|
1273
|
+
localstack_core-4.3.1.dev5.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
|
1274
|
+
localstack_core-4.3.1.dev5.dist-info/METADATA,sha256=1LSxL63od_lbBvdTSug6jfr5jzINl_I_2Rl7Kuwm7a0,5501
|
1275
|
+
localstack_core-4.3.1.dev5.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
1276
|
+
localstack_core-4.3.1.dev5.dist-info/entry_points.txt,sha256=UqGFR0MPKa2sfresdqiCpqBZuWyRxCb3UG77oPVMzVA,20564
|
1277
|
+
localstack_core-4.3.1.dev5.dist-info/plux.json,sha256=8tYseUkAaCXNLmaMm2HLvTpompZi-tCv-fQ5zHW-Wyc,20786
|
1278
|
+
localstack_core-4.3.1.dev5.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
|
1279
|
+
localstack_core-4.3.1.dev5.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
{"localstack.cloudformation.resource_providers": ["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::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "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::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "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::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "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::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin"], "localstack.hooks.on_infra_start": ["_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui", "_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", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches"], "localstack.hooks.on_infra_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", "publish_metrics=localstack.utils.analytics.metrics:publish_metrics", "stop_server=localstack.dns.plugins:stop_server", "aggregate_and_send=localstack.utils.analytics.usage:aggregate_and_send", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints"], "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.packages": ["kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_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", "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"], "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.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.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"]}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"localstack.cloudformation.resource_providers": ["AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "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::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "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::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin"], "localstack.hooks.on_infra_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", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "stop_server=localstack.dns.plugins:stop_server", "aggregate_and_send=localstack.utils.analytics.usage:aggregate_and_send", "publish_metrics=localstack.utils.analytics.metrics:publish_metrics", "remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints"], "localstack.packages": ["dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "terraform/community=localstack.packages.plugins:terraform_package", "vosk/community=localstack.services.transcribe.plugins:vosk_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_package", "kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package", "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", "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.hooks.on_infra_start": ["_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "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", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "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.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "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.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"]}
|
File without changes
|
{localstack_core-4.3.1.dev3.data → localstack_core-4.3.1.dev5.data}/scripts/localstack-supervisor
RENAMED
File without changes
|
File without changes
|
File without changes
|
{localstack_core-4.3.1.dev3.dist-info → localstack_core-4.3.1.dev5.dist-info}/entry_points.txt
RENAMED
File without changes
|
{localstack_core-4.3.1.dev3.dist-info → localstack_core-4.3.1.dev5.dist-info}/licenses/LICENSE.txt
RENAMED
File without changes
|
File without changes
|