localstack-core 4.12.1.dev80__py3-none-any.whl → 4.12.1.dev84__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/cli/localstack.py +10 -0
- localstack/services/events/provider.py +35 -7
- localstack/version.py +2 -2
- {localstack_core-4.12.1.dev80.dist-info → localstack_core-4.12.1.dev84.dist-info}/METADATA +1 -1
- {localstack_core-4.12.1.dev80.dist-info → localstack_core-4.12.1.dev84.dist-info}/RECORD +13 -13
- localstack_core-4.12.1.dev84.dist-info/plux.json +229 -0
- localstack_core-4.12.1.dev80.dist-info/plux.json +0 -1
- {localstack_core-4.12.1.dev80.data → localstack_core-4.12.1.dev84.data}/scripts/localstack +0 -0
- {localstack_core-4.12.1.dev80.data → localstack_core-4.12.1.dev84.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.12.1.dev80.data → localstack_core-4.12.1.dev84.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.12.1.dev80.dist-info → localstack_core-4.12.1.dev84.dist-info}/WHEEL +0 -0
- {localstack_core-4.12.1.dev80.dist-info → localstack_core-4.12.1.dev84.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.12.1.dev80.dist-info → localstack_core-4.12.1.dev84.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.12.1.dev80.dist-info → localstack_core-4.12.1.dev84.dist-info}/top_level.txt +0 -0
localstack/cli/localstack.py
CHANGED
|
@@ -523,6 +523,16 @@ def cmd_start(
|
|
|
523
523
|
print_app()
|
|
524
524
|
console.line()
|
|
525
525
|
|
|
526
|
+
# check if we are about to activate Pro, if not raise a warning about the upcoming changes
|
|
527
|
+
# LOCALSTACK_ACTIVATE_PRO is set by the Pro config if the auth token is cached or explicitly set in the env
|
|
528
|
+
if not config.is_env_true("LOCALSTACK_ACTIVATE_PRO"):
|
|
529
|
+
console.log(
|
|
530
|
+
"Warning: You are starting LocalStack without an auth token. "
|
|
531
|
+
"Starting in March 2026, LocalStack will require an auth token. "
|
|
532
|
+
"Go to this page for more infos: https://localstack.cloud/2026-updates",
|
|
533
|
+
style="bold red",
|
|
534
|
+
)
|
|
535
|
+
|
|
526
536
|
from localstack.utils import bootstrap
|
|
527
537
|
|
|
528
538
|
if not no_banner:
|
|
@@ -172,6 +172,7 @@ from localstack.state import StateVisitor
|
|
|
172
172
|
from localstack.utils.common import truncate
|
|
173
173
|
from localstack.utils.event_matcher import matches_event
|
|
174
174
|
from localstack.utils.strings import long_uid
|
|
175
|
+
from localstack.utils.threads import start_worker_thread
|
|
175
176
|
from localstack.utils.time import TIMESTAMP_FORMAT_TZ, timestamp
|
|
176
177
|
from localstack.utils.xray.trace_header import TraceHeader
|
|
177
178
|
|
|
@@ -1903,13 +1904,19 @@ class EventsProvider(EventsApi, ServiceLifecycleHook):
|
|
|
1903
1904
|
# Always add the successful EventId entry, even if target processing might fail
|
|
1904
1905
|
processed_entries.append({"EventId": event_formatted["id"]})
|
|
1905
1906
|
|
|
1907
|
+
# Process rules asynchronously to match AWS behavior where put-events returns immediately
|
|
1906
1908
|
if configured_rules := list(event_bus.rules.values()):
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1909
|
+
start_worker_thread(
|
|
1910
|
+
self._process_rules_async,
|
|
1911
|
+
params={
|
|
1912
|
+
"rules": configured_rules,
|
|
1913
|
+
"region": region,
|
|
1914
|
+
"account_id": account_id,
|
|
1915
|
+
"event_formatted": event_formatted,
|
|
1916
|
+
"trace_header": trace_header,
|
|
1917
|
+
},
|
|
1918
|
+
name="events-process-rules",
|
|
1919
|
+
)
|
|
1913
1920
|
else:
|
|
1914
1921
|
LOG.info(
|
|
1915
1922
|
json.dumps(
|
|
@@ -1926,6 +1933,27 @@ class EventsProvider(EventsApi, ServiceLifecycleHook):
|
|
|
1926
1933
|
# only required for EventStudio to capture input event if no rule is configured
|
|
1927
1934
|
pass
|
|
1928
1935
|
|
|
1936
|
+
def _process_rules_async(self, params: dict) -> None:
|
|
1937
|
+
"""Process rules asynchronously in a background thread.
|
|
1938
|
+
|
|
1939
|
+
TODO: Use a worker pool (similar to SNS) instead of spawning a new thread
|
|
1940
|
+
for each request to improve performance and resource management.
|
|
1941
|
+
"""
|
|
1942
|
+
rules = params["rules"]
|
|
1943
|
+
region = params["region"]
|
|
1944
|
+
account_id = params["account_id"]
|
|
1945
|
+
event_formatted = params["event_formatted"]
|
|
1946
|
+
trace_header = params["trace_header"]
|
|
1947
|
+
|
|
1948
|
+
for rule in rules:
|
|
1949
|
+
if rule.schedule_expression:
|
|
1950
|
+
# we do not want to execute Scheduled Rules on PutEvents
|
|
1951
|
+
continue
|
|
1952
|
+
|
|
1953
|
+
# TODO: Process each rule asynchronously instead of sequentially to further
|
|
1954
|
+
# improve performance when multiple rules need to be evaluated.
|
|
1955
|
+
self._process_rules(rule, region, account_id, event_formatted, trace_header)
|
|
1956
|
+
|
|
1929
1957
|
def _process_rules(
|
|
1930
1958
|
self,
|
|
1931
1959
|
rule: Rule,
|
|
@@ -1983,7 +2011,7 @@ class EventsProvider(EventsApi, ServiceLifecycleHook):
|
|
|
1983
2011
|
)
|
|
1984
2012
|
)
|
|
1985
2013
|
else:
|
|
1986
|
-
LOG.
|
|
2014
|
+
LOG.debug(
|
|
1987
2015
|
json.dumps(
|
|
1988
2016
|
{
|
|
1989
2017
|
"InfoCode": "InternalInfoEvents at matches_rule",
|
localstack/version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '4.12.1.
|
|
32
|
-
__version_tuple__ = version_tuple = (4, 12, 1, '
|
|
31
|
+
__version__ = version = '4.12.1.dev84'
|
|
32
|
+
__version_tuple__ = version_tuple = (4, 12, 1, 'dev84')
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -4,7 +4,7 @@ localstack/deprecations.py,sha256=-3IYgCd6LEC3PjO7hbr3Dg-p0PIS6phjmv1qZnj1uo0,15
|
|
|
4
4
|
localstack/openapi.yaml,sha256=jFUzv-NKkJttxb8HRrmKiNYOmJD-zVfPxG3DDMrRwfg,30865
|
|
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=UdGDVmzTZE2RibCKb4ts_FeFxntS1OMcdpU8nxT6xLQ,721
|
|
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
|
|
@@ -99,7 +99,7 @@ localstack/aws/serving/wsgi.py,sha256=QBhEvYT45fZvXXJLp5nhWaoEccP7IsaMb8gUI5XKBE
|
|
|
99
99
|
localstack/cli/__init__.py,sha256=S0u4eNluwhhLkiCC8UZNjhh27Pk-W7jeUiEv4k3VrXo,176
|
|
100
100
|
localstack/cli/console.py,sha256=eMz2PfQRDG493uzXFqQZTbYTC4NhO6UOpx4ZricsGLI,346
|
|
101
101
|
localstack/cli/exceptions.py,sha256=kgNzCSQQUGyw7xGj2DnRylwA2jXyFcCMahr_ls5MTAQ,514
|
|
102
|
-
localstack/cli/localstack.py,sha256=
|
|
102
|
+
localstack/cli/localstack.py,sha256=VCi8LrUiNChEWk__LzF29up7-HKahC-8tyYVEqvFHpM,32761
|
|
103
103
|
localstack/cli/lpm.py,sha256=943BvXwExjzxbIHQykSgWCxs4fX7UWIZLBFDuSoRPHw,4179
|
|
104
104
|
localstack/cli/main.py,sha256=4cGS5lAAfhfM6Sg8tPtDDgAXHlWPAx-QcUaR0gd9M1Y,578
|
|
105
105
|
localstack/cli/plugin.py,sha256=ayY-xPDN2Z4ycMo4V7fLG6nb91p3qFOEqbFJGRsS1yM,877
|
|
@@ -450,7 +450,7 @@ localstack/services/events/connection.py,sha256=O6-r8egH1nrTF195UwkMTP5oppPKInhO
|
|
|
450
450
|
localstack/services/events/event_bus.py,sha256=KVaQmsCQDQP6YCyABj0NHUhRhEeFM5lllJ7A7d5neIY,4136
|
|
451
451
|
localstack/services/events/event_rule_engine.py,sha256=7ffH10SrR6FTU_cg8x8NAofP6Rsd03vw8FXyUbzByXc,28291
|
|
452
452
|
localstack/services/events/models.py,sha256=Myw_uQU8SR20Hj6or2_92KaxciuzF1f0GpMAfboeoOY,9722
|
|
453
|
-
localstack/services/events/provider.py,sha256=
|
|
453
|
+
localstack/services/events/provider.py,sha256=FBa2gIwYLdoZxtG7QeCPtYcoYYu6dYy2TSXWCOONlKc,78033
|
|
454
454
|
localstack/services/events/replay.py,sha256=FcX5L89Gb-wNJwjdynPZYWT0TyHgRJLUKIoZ2OAW8NU,2958
|
|
455
455
|
localstack/services/events/rule.py,sha256=FNX-PfIFc-r2SGlb5DJc_IqZPCSxNnkmrzU3R9Y2lTg,10193
|
|
456
456
|
localstack/services/events/scheduler.py,sha256=nBx5g1CyNJQOLAyeNgGznc9A4sxREX1S6WnqbBc_YGc,4255
|
|
@@ -1313,13 +1313,13 @@ localstack/utils/server/tcp_proxy.py,sha256=y2NJAmvftTiAYsLU_8qe4W5LGqwUw21i90Pu
|
|
|
1313
1313
|
localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1314
1314
|
localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
|
|
1315
1315
|
localstack/utils/xray/traceid.py,sha256=GKO-R2sMMjlrH2UaLPXlQlZ6flbE7ZKb6IZMtMu_M5U,1110
|
|
1316
|
-
localstack_core-4.12.1.
|
|
1317
|
-
localstack_core-4.12.1.
|
|
1318
|
-
localstack_core-4.12.1.
|
|
1319
|
-
localstack_core-4.12.1.
|
|
1320
|
-
localstack_core-4.12.1.
|
|
1321
|
-
localstack_core-4.12.1.
|
|
1322
|
-
localstack_core-4.12.1.
|
|
1323
|
-
localstack_core-4.12.1.
|
|
1324
|
-
localstack_core-4.12.1.
|
|
1325
|
-
localstack_core-4.12.1.
|
|
1316
|
+
localstack_core-4.12.1.dev84.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
|
|
1317
|
+
localstack_core-4.12.1.dev84.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
|
|
1318
|
+
localstack_core-4.12.1.dev84.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
|
|
1319
|
+
localstack_core-4.12.1.dev84.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
|
|
1320
|
+
localstack_core-4.12.1.dev84.dist-info/METADATA,sha256=O0BYCQsUkWAMBq67zFjJ1qq5UZechgJDq61EFOz2MX4,5941
|
|
1321
|
+
localstack_core-4.12.1.dev84.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
1322
|
+
localstack_core-4.12.1.dev84.dist-info/entry_points.txt,sha256=cqjkPRG7pBKzXiO_XKc5lQHhmFCeno2KPd8shKp5bnc,21011
|
|
1323
|
+
localstack_core-4.12.1.dev84.dist-info/plux.json,sha256=qJn5-k2e7jr7Ire-9jvZowvfneTjSlIIbnT9rmye0-8,22121
|
|
1324
|
+
localstack_core-4.12.1.dev84.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
|
|
1325
|
+
localstack_core-4.12.1.dev84.dist-info/RECORD,,
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
{
|
|
2
|
+
"localstack.aws.provider": [
|
|
3
|
+
"acm:default=localstack.services.providers:acm",
|
|
4
|
+
"apigateway:default=localstack.services.providers:apigateway",
|
|
5
|
+
"apigateway:legacy=localstack.services.providers:apigateway_legacy",
|
|
6
|
+
"apigateway:next_gen=localstack.services.providers:apigateway_next_gen",
|
|
7
|
+
"cloudformation:default=localstack.services.providers:cloudformation_v2",
|
|
8
|
+
"cloudformation:engine-legacy=localstack.services.providers:cloudformation",
|
|
9
|
+
"cloudwatch:default=localstack.services.providers:cloudwatch",
|
|
10
|
+
"cloudwatch:v1=localstack.services.providers:cloudwatch_v1",
|
|
11
|
+
"cloudwatch:v2=localstack.services.providers:cloudwatch_v2",
|
|
12
|
+
"config:default=localstack.services.providers:awsconfig",
|
|
13
|
+
"dynamodb:default=localstack.services.providers:dynamodb",
|
|
14
|
+
"dynamodb:v2=localstack.services.providers:dynamodb_v2",
|
|
15
|
+
"dynamodbstreams:default=localstack.services.providers:dynamodbstreams",
|
|
16
|
+
"dynamodbstreams:v2=localstack.services.providers:dynamodbstreams_v2",
|
|
17
|
+
"ec2:default=localstack.services.providers:ec2",
|
|
18
|
+
"es:default=localstack.services.providers:es",
|
|
19
|
+
"events:default=localstack.services.providers:events",
|
|
20
|
+
"events:legacy=localstack.services.providers:events_legacy",
|
|
21
|
+
"events:v1=localstack.services.providers:events_v1",
|
|
22
|
+
"events:v2=localstack.services.providers:events_v2",
|
|
23
|
+
"firehose:default=localstack.services.providers:firehose",
|
|
24
|
+
"iam:default=localstack.services.providers:iam",
|
|
25
|
+
"kinesis:default=localstack.services.providers:kinesis",
|
|
26
|
+
"kms:default=localstack.services.providers:kms",
|
|
27
|
+
"lambda:asf=localstack.services.providers:lambda_asf",
|
|
28
|
+
"lambda:default=localstack.services.providers:lambda_",
|
|
29
|
+
"lambda:v2=localstack.services.providers:lambda_v2",
|
|
30
|
+
"logs:default=localstack.services.providers:logs",
|
|
31
|
+
"opensearch:default=localstack.services.providers:opensearch",
|
|
32
|
+
"redshift:default=localstack.services.providers:redshift",
|
|
33
|
+
"resource-groups:default=localstack.services.providers:resource_groups",
|
|
34
|
+
"resourcegroupstaggingapi:default=localstack.services.providers:resourcegroupstaggingapi",
|
|
35
|
+
"route53:default=localstack.services.providers:route53",
|
|
36
|
+
"route53resolver:default=localstack.services.providers:route53resolver",
|
|
37
|
+
"s3:default=localstack.services.providers:s3",
|
|
38
|
+
"s3control:default=localstack.services.providers:s3control",
|
|
39
|
+
"scheduler:default=localstack.services.providers:scheduler",
|
|
40
|
+
"secretsmanager:default=localstack.services.providers:secretsmanager",
|
|
41
|
+
"ses:default=localstack.services.providers:ses",
|
|
42
|
+
"sns:default=localstack.services.providers:sns",
|
|
43
|
+
"sns:v2=localstack.services.providers:sns_v2",
|
|
44
|
+
"sqs:default=localstack.services.providers:sqs",
|
|
45
|
+
"ssm:default=localstack.services.providers:ssm",
|
|
46
|
+
"stepfunctions:default=localstack.services.providers:stepfunctions",
|
|
47
|
+
"stepfunctions:v2=localstack.services.providers:stepfunctions_v2",
|
|
48
|
+
"sts:default=localstack.services.providers:sts",
|
|
49
|
+
"support:default=localstack.services.providers:support",
|
|
50
|
+
"swf:default=localstack.services.providers:swf",
|
|
51
|
+
"transcribe:default=localstack.services.providers:transcribe"
|
|
52
|
+
],
|
|
53
|
+
"localstack.cloudformation.resource_providers": [
|
|
54
|
+
"AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin",
|
|
55
|
+
"AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin",
|
|
56
|
+
"AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin",
|
|
57
|
+
"AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin",
|
|
58
|
+
"AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin",
|
|
59
|
+
"AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin",
|
|
60
|
+
"AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin",
|
|
61
|
+
"AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin",
|
|
62
|
+
"AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin",
|
|
63
|
+
"AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin",
|
|
64
|
+
"AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin",
|
|
65
|
+
"AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin",
|
|
66
|
+
"AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin",
|
|
67
|
+
"AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin",
|
|
68
|
+
"AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin",
|
|
69
|
+
"AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin",
|
|
70
|
+
"AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin",
|
|
71
|
+
"AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin",
|
|
72
|
+
"AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin",
|
|
73
|
+
"AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin",
|
|
74
|
+
"AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin",
|
|
75
|
+
"AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin",
|
|
76
|
+
"AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin",
|
|
77
|
+
"AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin",
|
|
78
|
+
"AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin",
|
|
79
|
+
"AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin",
|
|
80
|
+
"AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin",
|
|
81
|
+
"AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin",
|
|
82
|
+
"AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin",
|
|
83
|
+
"AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin",
|
|
84
|
+
"AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin",
|
|
85
|
+
"AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin",
|
|
86
|
+
"AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin",
|
|
87
|
+
"AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin",
|
|
88
|
+
"AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin",
|
|
89
|
+
"AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin",
|
|
90
|
+
"AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin",
|
|
91
|
+
"AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin",
|
|
92
|
+
"AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin",
|
|
93
|
+
"AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin",
|
|
94
|
+
"AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin",
|
|
95
|
+
"AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin",
|
|
96
|
+
"AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin",
|
|
97
|
+
"AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin",
|
|
98
|
+
"AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin",
|
|
99
|
+
"AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin",
|
|
100
|
+
"AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin",
|
|
101
|
+
"AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin",
|
|
102
|
+
"AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin",
|
|
103
|
+
"AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin",
|
|
104
|
+
"AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin",
|
|
105
|
+
"AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin",
|
|
106
|
+
"AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin",
|
|
107
|
+
"AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin",
|
|
108
|
+
"AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin",
|
|
109
|
+
"AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin",
|
|
110
|
+
"AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin",
|
|
111
|
+
"AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin",
|
|
112
|
+
"AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin",
|
|
113
|
+
"AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin",
|
|
114
|
+
"AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin",
|
|
115
|
+
"AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin",
|
|
116
|
+
"AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin",
|
|
117
|
+
"AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin",
|
|
118
|
+
"AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin",
|
|
119
|
+
"AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin",
|
|
120
|
+
"AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin",
|
|
121
|
+
"AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin",
|
|
122
|
+
"AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin",
|
|
123
|
+
"AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin",
|
|
124
|
+
"AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin",
|
|
125
|
+
"AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin",
|
|
126
|
+
"AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin",
|
|
127
|
+
"AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin",
|
|
128
|
+
"AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin",
|
|
129
|
+
"AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin",
|
|
130
|
+
"AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin",
|
|
131
|
+
"AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin",
|
|
132
|
+
"AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin",
|
|
133
|
+
"AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin",
|
|
134
|
+
"AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin",
|
|
135
|
+
"AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin",
|
|
136
|
+
"AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin",
|
|
137
|
+
"AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin",
|
|
138
|
+
"AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin",
|
|
139
|
+
"AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin",
|
|
140
|
+
"AWS::SQS::Queue=localstack.services.sqs.resource_providers.generated.aws_sqs_queue_plugin:SQSQueueProviderPlugin",
|
|
141
|
+
"AWS::SQS::QueueInlinePolicy=localstack.services.sqs.resource_providers.generated.aws_sqs_queueinlinepolicy_plugin:SQSQueueInlinePolicyProviderPlugin",
|
|
142
|
+
"AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.generated.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin",
|
|
143
|
+
"AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin",
|
|
144
|
+
"AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin",
|
|
145
|
+
"AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin",
|
|
146
|
+
"AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin",
|
|
147
|
+
"AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin",
|
|
148
|
+
"AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin",
|
|
149
|
+
"AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin",
|
|
150
|
+
"AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin",
|
|
151
|
+
"AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin",
|
|
152
|
+
"AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin",
|
|
153
|
+
"AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin",
|
|
154
|
+
"AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin",
|
|
155
|
+
"AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin"
|
|
156
|
+
],
|
|
157
|
+
"localstack.hooks.configure_localstack_container": [
|
|
158
|
+
"_mount_machine_file=localstack.utils.analytics.metadata:_mount_machine_file"
|
|
159
|
+
],
|
|
160
|
+
"localstack.hooks.on_infra_ready": [
|
|
161
|
+
"_run_init_scripts_on_ready=localstack.runtime.init:_run_init_scripts_on_ready",
|
|
162
|
+
"publish_provider_assignment=localstack.utils.analytics.service_providers:publish_provider_assignment"
|
|
163
|
+
],
|
|
164
|
+
"localstack.hooks.on_infra_shutdown": [
|
|
165
|
+
"_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown",
|
|
166
|
+
"publish_metrics=localstack.utils.analytics.metrics.publisher:publish_metrics",
|
|
167
|
+
"remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints",
|
|
168
|
+
"run_on_after_service_shutdown_handlers=localstack.runtime.shutdown:run_on_after_service_shutdown_handlers",
|
|
169
|
+
"run_shutdown_handlers=localstack.runtime.shutdown:run_shutdown_handlers",
|
|
170
|
+
"shutdown_services=localstack.runtime.shutdown:shutdown_services",
|
|
171
|
+
"stop_server=localstack.dns.plugins:stop_server"
|
|
172
|
+
],
|
|
173
|
+
"localstack.hooks.on_infra_start": [
|
|
174
|
+
"_patch_botocore_endpoint_in_memory=localstack.aws.client:_patch_botocore_endpoint_in_memory",
|
|
175
|
+
"_patch_botocore_json_parser=localstack.aws.client:_patch_botocore_json_parser",
|
|
176
|
+
"_patch_cbor2=localstack.aws.client:_patch_cbor2",
|
|
177
|
+
"_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event",
|
|
178
|
+
"_publish_container_info=localstack.runtime.analytics:_publish_container_info",
|
|
179
|
+
"_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start",
|
|
180
|
+
"apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches",
|
|
181
|
+
"apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches",
|
|
182
|
+
"conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger",
|
|
183
|
+
"delete_cached_certificate=localstack.plugins:delete_cached_certificate",
|
|
184
|
+
"deprecation_warnings=localstack.plugins:deprecation_warnings",
|
|
185
|
+
"eager_load_services=localstack.services.plugins:eager_load_services",
|
|
186
|
+
"init_response_mutation_handler=localstack.aws.handlers.response:init_response_mutation_handler",
|
|
187
|
+
"register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints",
|
|
188
|
+
"register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints",
|
|
189
|
+
"setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host",
|
|
190
|
+
"start_dns_server=localstack.dns.plugins:start_dns_server",
|
|
191
|
+
"validate_configuration=localstack.services.lambda_.plugins:validate_configuration"
|
|
192
|
+
],
|
|
193
|
+
"localstack.hooks.prepare_host": [
|
|
194
|
+
"prepare_host_machine_id=localstack.utils.analytics.metadata:prepare_host_machine_id"
|
|
195
|
+
],
|
|
196
|
+
"localstack.init.runner": [
|
|
197
|
+
"py=localstack.runtime.init:PythonScriptRunner",
|
|
198
|
+
"sh=localstack.runtime.init:ShellScriptRunner"
|
|
199
|
+
],
|
|
200
|
+
"localstack.lambda.runtime_executor": [
|
|
201
|
+
"docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"
|
|
202
|
+
],
|
|
203
|
+
"localstack.openapi.spec": [
|
|
204
|
+
"localstack=localstack.plugins:CoreOASPlugin"
|
|
205
|
+
],
|
|
206
|
+
"localstack.packages": [
|
|
207
|
+
"dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package",
|
|
208
|
+
"elasticsearch/community=localstack.services.es.plugins:elasticsearch_package",
|
|
209
|
+
"ffmpeg/community=localstack.packages.plugins:ffmpeg_package",
|
|
210
|
+
"java/community=localstack.packages.plugins:java_package",
|
|
211
|
+
"jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package",
|
|
212
|
+
"kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package",
|
|
213
|
+
"lambda-java-libs/community=localstack.services.lambda_.plugins:lambda_java_libs",
|
|
214
|
+
"lambda-runtime/community=localstack.services.lambda_.plugins:lambda_runtime_package",
|
|
215
|
+
"opensearch/community=localstack.services.opensearch.plugins:opensearch_package",
|
|
216
|
+
"vosk/community=localstack.services.transcribe.plugins:vosk_package"
|
|
217
|
+
],
|
|
218
|
+
"localstack.runtime.components": [
|
|
219
|
+
"aws=localstack.aws.components:AwsComponents"
|
|
220
|
+
],
|
|
221
|
+
"localstack.runtime.server": [
|
|
222
|
+
"hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin",
|
|
223
|
+
"twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"
|
|
224
|
+
],
|
|
225
|
+
"localstack.utils.catalog": [
|
|
226
|
+
"aws-catalog-remote-state=localstack.utils.catalog.catalog:AwsCatalogRemoteStatePlugin",
|
|
227
|
+
"aws-catalog-runtime-only=localstack.utils.catalog.catalog:AwsCatalogRuntimePlugin"
|
|
228
|
+
]
|
|
229
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"localstack.hooks.on_infra_start": ["eager_load_services=localstack.services.plugins:eager_load_services", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "_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", "_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", "init_response_mutation_handler=localstack.aws.handlers.response:init_response_mutation_handler", "conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "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"], "localstack.cloudformation.resource_providers": ["AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.generated.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "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::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "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::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::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::SQS::QueueInlinePolicy=localstack.services.sqs.resource_providers.generated.aws_sqs_queueinlinepolicy_plugin:SQSQueueInlinePolicyProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "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::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.generated.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin"], "localstack.packages": ["lambda-java-libs/community=localstack.services.lambda_.plugins:lambda_java_libs", "lambda-runtime/community=localstack.services.lambda_.plugins:lambda_runtime_package", "kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "vosk/community=localstack.services.transcribe.plugins:vosk_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_package"], "localstack.hooks.on_infra_shutdown": ["remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints", "stop_server=localstack.dns.plugins:stop_server", "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.publisher:publish_metrics", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown"], "localstack.utils.catalog": ["aws-catalog-remote-state=localstack.utils.catalog.catalog:AwsCatalogRemoteStatePlugin", "aws-catalog-runtime-only=localstack.utils.catalog.catalog:AwsCatalogRuntimePlugin"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.hooks.on_infra_ready": ["publish_provider_assignment=localstack.utils.analytics.service_providers:publish_provider_assignment", "_run_init_scripts_on_ready=localstack.runtime.init:_run_init_scripts_on_ready"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "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:engine-legacy=localstack.services.providers:cloudformation", "cloudformation:default=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", "sns:v2=localstack.services.providers:sns_v2", "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"], "localstack.init.runner": ["py=localstack.runtime.init:PythonScriptRunner", "sh=localstack.runtime.init:ShellScriptRunner"], "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"]}
|
|
File without changes
|
|
File without changes
|
{localstack_core-4.12.1.dev80.data → localstack_core-4.12.1.dev84.data}/scripts/localstack.bat
RENAMED
|
File without changes
|
|
File without changes
|
{localstack_core-4.12.1.dev80.dist-info → localstack_core-4.12.1.dev84.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{localstack_core-4.12.1.dev80.dist-info → localstack_core-4.12.1.dev84.dist-info}/top_level.txt
RENAMED
|
File without changes
|