localstack-core 4.9.3.dev76__py3-none-any.whl → 4.9.3.dev77__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of localstack-core might be problematic. Click here for more details.
- localstack/services/sns/constants.py +5 -0
- localstack/services/sns/v2/models.py +6 -0
- localstack/services/sns/v2/provider.py +159 -3
- localstack/services/sns/v2/utils.py +12 -4
- localstack/utils/aws/arns.py +6 -0
- localstack/version.py +2 -2
- {localstack_core-4.9.3.dev76.dist-info → localstack_core-4.9.3.dev77.dist-info}/METADATA +1 -1
- {localstack_core-4.9.3.dev76.dist-info → localstack_core-4.9.3.dev77.dist-info}/RECORD +16 -16
- localstack_core-4.9.3.dev77.dist-info/plux.json +1 -0
- localstack_core-4.9.3.dev76.dist-info/plux.json +0 -1
- {localstack_core-4.9.3.dev76.data → localstack_core-4.9.3.dev77.data}/scripts/localstack +0 -0
- {localstack_core-4.9.3.dev76.data → localstack_core-4.9.3.dev77.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.9.3.dev76.data → localstack_core-4.9.3.dev77.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.9.3.dev76.dist-info → localstack_core-4.9.3.dev77.dist-info}/WHEEL +0 -0
- {localstack_core-4.9.3.dev76.dist-info → localstack_core-4.9.3.dev77.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.9.3.dev76.dist-info → localstack_core-4.9.3.dev77.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.9.3.dev76.dist-info → localstack_core-4.9.3.dev77.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import re
|
|
2
2
|
from string import ascii_letters, digits
|
|
3
|
+
from typing import get_args
|
|
4
|
+
|
|
5
|
+
from localstack.services.sns.v2.models import SnsApplicationPlatforms
|
|
3
6
|
|
|
4
7
|
SNS_PROTOCOLS = [
|
|
5
8
|
"http",
|
|
@@ -40,3 +43,5 @@ SNS_CERT_ENDPOINT = "/_aws/sns/SimpleNotificationService-6c6f63616c737461636b697
|
|
|
40
43
|
|
|
41
44
|
DUMMY_SUBSCRIPTION_PRINCIPAL = "arn:{partition}:iam::{account_id}:user/DummySNSPrincipal"
|
|
42
45
|
E164_REGEX = re.compile(r"^\+?[1-9]\d{1,14}$")
|
|
46
|
+
|
|
47
|
+
VALID_APPLICATION_PLATFORMS = list(get_args(SnsApplicationPlatforms))
|
|
@@ -6,6 +6,7 @@ from typing import Literal, TypedDict
|
|
|
6
6
|
|
|
7
7
|
from localstack.aws.api.sns import (
|
|
8
8
|
MessageAttributeMap,
|
|
9
|
+
PlatformApplication,
|
|
9
10
|
PublishBatchRequestEntry,
|
|
10
11
|
TopicAttributesMap,
|
|
11
12
|
subscriptionARN,
|
|
@@ -36,6 +37,8 @@ SnsProtocols = Literal[
|
|
|
36
37
|
SnsApplicationPlatforms = Literal[
|
|
37
38
|
"APNS", "APNS_SANDBOX", "ADM", "FCM", "Baidu", "GCM", "MPNS", "WNS"
|
|
38
39
|
]
|
|
40
|
+
|
|
41
|
+
|
|
39
42
|
SMS_ATTRIBUTE_NAMES = [
|
|
40
43
|
"DeliveryStatusIAMRole",
|
|
41
44
|
"DeliveryStatusSuccessSamplingRate",
|
|
@@ -152,6 +155,9 @@ class SnsStore(BaseStore):
|
|
|
152
155
|
# maps confirmation token to subscription ARN
|
|
153
156
|
subscription_tokens: dict[str, str] = LocalAttribute(default=dict)
|
|
154
157
|
|
|
158
|
+
# maps platform application arns to platform applications
|
|
159
|
+
platform_applications: dict[str, PlatformApplication] = LocalAttribute(default=dict)
|
|
160
|
+
|
|
155
161
|
# topic/subscription independent default values for sending sms messages
|
|
156
162
|
sms_attributes: dict[str, str] = LocalAttribute(default=dict)
|
|
157
163
|
|
|
@@ -6,15 +6,19 @@ import re
|
|
|
6
6
|
|
|
7
7
|
from botocore.utils import InvalidArnException
|
|
8
8
|
|
|
9
|
-
from localstack.aws.api import RequestContext
|
|
9
|
+
from localstack.aws.api import CommonServiceException, RequestContext
|
|
10
10
|
from localstack.aws.api.sns import (
|
|
11
11
|
AmazonResourceName,
|
|
12
12
|
ConfirmSubscriptionResponse,
|
|
13
|
+
CreatePlatformApplicationResponse,
|
|
13
14
|
CreateTopicResponse,
|
|
15
|
+
GetPlatformApplicationAttributesResponse,
|
|
14
16
|
GetSMSAttributesResponse,
|
|
15
17
|
GetSubscriptionAttributesResponse,
|
|
16
18
|
GetTopicAttributesResponse,
|
|
17
19
|
InvalidParameterException,
|
|
20
|
+
ListEndpointsByPlatformApplicationResponse,
|
|
21
|
+
ListPlatformApplicationsResponse,
|
|
18
22
|
ListString,
|
|
19
23
|
ListSubscriptionsByTopicResponse,
|
|
20
24
|
ListSubscriptionsResponse,
|
|
@@ -22,6 +26,7 @@ from localstack.aws.api.sns import (
|
|
|
22
26
|
ListTopicsResponse,
|
|
23
27
|
MapStringToString,
|
|
24
28
|
NotFoundException,
|
|
29
|
+
PlatformApplication,
|
|
25
30
|
SetSMSAttributesResponse,
|
|
26
31
|
SnsApi,
|
|
27
32
|
String,
|
|
@@ -45,7 +50,10 @@ from localstack.aws.api.sns import (
|
|
|
45
50
|
)
|
|
46
51
|
from localstack.services.sns import constants as sns_constants
|
|
47
52
|
from localstack.services.sns.certificate import SNS_SERVER_CERT
|
|
48
|
-
from localstack.services.sns.constants import
|
|
53
|
+
from localstack.services.sns.constants import (
|
|
54
|
+
DUMMY_SUBSCRIPTION_PRINCIPAL,
|
|
55
|
+
VALID_APPLICATION_PLATFORMS,
|
|
56
|
+
)
|
|
49
57
|
from localstack.services.sns.filter import FilterPolicyValidator
|
|
50
58
|
from localstack.services.sns.publisher import PublishDispatcher, SnsPublishContext
|
|
51
59
|
from localstack.services.sns.v2.models import (
|
|
@@ -65,10 +73,16 @@ from localstack.services.sns.v2.utils import (
|
|
|
65
73
|
get_next_page_token_from_arn,
|
|
66
74
|
get_region_from_subscription_token,
|
|
67
75
|
is_valid_e164_number,
|
|
76
|
+
parse_and_validate_platform_application_arn,
|
|
68
77
|
parse_and_validate_topic_arn,
|
|
69
78
|
validate_subscription_attribute,
|
|
70
79
|
)
|
|
71
|
-
from localstack.utils.aws.arns import
|
|
80
|
+
from localstack.utils.aws.arns import (
|
|
81
|
+
get_partition,
|
|
82
|
+
parse_arn,
|
|
83
|
+
sns_platform_application_arn,
|
|
84
|
+
sns_topic_arn,
|
|
85
|
+
)
|
|
72
86
|
from localstack.utils.collections import PaginatedList, select_from_typed_dict
|
|
73
87
|
|
|
74
88
|
# set up logger
|
|
@@ -535,6 +549,115 @@ class SnsProvider(SnsApi):
|
|
|
535
549
|
response["NextToken"] = next_token
|
|
536
550
|
return response
|
|
537
551
|
|
|
552
|
+
#
|
|
553
|
+
# PlatformApplications
|
|
554
|
+
#
|
|
555
|
+
def create_platform_application(
|
|
556
|
+
self,
|
|
557
|
+
context: RequestContext,
|
|
558
|
+
name: String,
|
|
559
|
+
platform: String,
|
|
560
|
+
attributes: MapStringToString,
|
|
561
|
+
**kwargs,
|
|
562
|
+
) -> CreatePlatformApplicationResponse:
|
|
563
|
+
_validate_platform_application_name(name)
|
|
564
|
+
if platform not in VALID_APPLICATION_PLATFORMS:
|
|
565
|
+
raise InvalidParameterException(
|
|
566
|
+
f"Invalid parameter: Platform Reason: {platform} is not supported"
|
|
567
|
+
)
|
|
568
|
+
|
|
569
|
+
_validate_platform_application_attributes(attributes)
|
|
570
|
+
|
|
571
|
+
# attribute validation specific to create_platform_application
|
|
572
|
+
if "PlatformCredential" in attributes and "PlatformPrincipal" not in attributes:
|
|
573
|
+
raise InvalidParameterException(
|
|
574
|
+
"Invalid parameter: Attributes Reason: PlatformCredential attribute provided without PlatformPrincipal"
|
|
575
|
+
)
|
|
576
|
+
|
|
577
|
+
elif "PlatformPrincipal" in attributes and "PlatformCredential" not in attributes:
|
|
578
|
+
raise InvalidParameterException(
|
|
579
|
+
"Invalid parameter: Attributes Reason: PlatformPrincipal attribute provided without PlatformCredential"
|
|
580
|
+
)
|
|
581
|
+
|
|
582
|
+
store = self.get_store(context.account_id, context.region)
|
|
583
|
+
# We are not validating the access data here like AWS does (against ADM and the like)
|
|
584
|
+
attributes.pop("PlatformPrincipal")
|
|
585
|
+
attributes.pop("PlatformCredential")
|
|
586
|
+
_attributes = {"Enabled": "true"}
|
|
587
|
+
_attributes.update(attributes)
|
|
588
|
+
application_arn = sns_platform_application_arn(
|
|
589
|
+
platform_application_name=name,
|
|
590
|
+
platform=platform,
|
|
591
|
+
account_id=context.account_id,
|
|
592
|
+
region_name=context.region,
|
|
593
|
+
)
|
|
594
|
+
platform_application = PlatformApplication(
|
|
595
|
+
PlatformApplicationArn=application_arn, Attributes=_attributes
|
|
596
|
+
)
|
|
597
|
+
store.platform_applications[application_arn] = platform_application
|
|
598
|
+
return CreatePlatformApplicationResponse(**platform_application)
|
|
599
|
+
|
|
600
|
+
def delete_platform_application(
|
|
601
|
+
self, context: RequestContext, platform_application_arn: String, **kwargs
|
|
602
|
+
) -> None:
|
|
603
|
+
store = self.get_store(context.account_id, context.region)
|
|
604
|
+
store.platform_applications.pop(platform_application_arn, None)
|
|
605
|
+
|
|
606
|
+
def list_platform_applications(
|
|
607
|
+
self, context: RequestContext, next_token: String | None = None, **kwargs
|
|
608
|
+
) -> ListPlatformApplicationsResponse:
|
|
609
|
+
store = self.get_store(context.account_id, context.region)
|
|
610
|
+
platform_applications = store.platform_applications.values()
|
|
611
|
+
paginated_applications = PaginatedList(platform_applications)
|
|
612
|
+
page, token = paginated_applications.get_page(
|
|
613
|
+
token_generator=lambda x: get_next_page_token_from_arn(x["PlatformApplicationArn"]),
|
|
614
|
+
page_size=100,
|
|
615
|
+
next_token=next_token,
|
|
616
|
+
)
|
|
617
|
+
|
|
618
|
+
response = ListPlatformApplicationsResponse(PlatformApplications=page)
|
|
619
|
+
if token:
|
|
620
|
+
response["NextToken"] = token
|
|
621
|
+
return response
|
|
622
|
+
|
|
623
|
+
def get_platform_application_attributes(
|
|
624
|
+
self, context: RequestContext, platform_application_arn: String, **kwargs
|
|
625
|
+
) -> GetPlatformApplicationAttributesResponse:
|
|
626
|
+
platform_application = self._get_platform_application(platform_application_arn, context)
|
|
627
|
+
attributes = platform_application["Attributes"]
|
|
628
|
+
return GetPlatformApplicationAttributesResponse(Attributes=attributes)
|
|
629
|
+
|
|
630
|
+
def set_platform_application_attributes(
|
|
631
|
+
self,
|
|
632
|
+
context: RequestContext,
|
|
633
|
+
platform_application_arn: String,
|
|
634
|
+
attributes: MapStringToString,
|
|
635
|
+
**kwargs,
|
|
636
|
+
) -> None:
|
|
637
|
+
parse_and_validate_platform_application_arn(platform_application_arn)
|
|
638
|
+
_validate_platform_application_attributes(attributes)
|
|
639
|
+
|
|
640
|
+
platform_application = self._get_platform_application(platform_application_arn, context)
|
|
641
|
+
platform_application["Attributes"].update(attributes)
|
|
642
|
+
|
|
643
|
+
#
|
|
644
|
+
# Platform Endpoints
|
|
645
|
+
#
|
|
646
|
+
|
|
647
|
+
def list_endpoints_by_platform_application(
|
|
648
|
+
self,
|
|
649
|
+
context: RequestContext,
|
|
650
|
+
platform_application_arn: String,
|
|
651
|
+
next_token: String | None = None,
|
|
652
|
+
**kwargs,
|
|
653
|
+
) -> ListEndpointsByPlatformApplicationResponse:
|
|
654
|
+
# TODO: stub so cleanup fixture won't fail
|
|
655
|
+
return ListEndpointsByPlatformApplicationResponse(Endpoints=[])
|
|
656
|
+
|
|
657
|
+
#
|
|
658
|
+
# Sms operations
|
|
659
|
+
#
|
|
660
|
+
|
|
538
661
|
def set_sms_attributes(
|
|
539
662
|
self, context: RequestContext, attributes: MapStringToString, **kwargs
|
|
540
663
|
) -> SetSMSAttributesResponse:
|
|
@@ -606,6 +729,17 @@ class SnsProvider(SnsApi):
|
|
|
606
729
|
except KeyError:
|
|
607
730
|
raise NotFoundException("Topic does not exist")
|
|
608
731
|
|
|
732
|
+
@staticmethod
|
|
733
|
+
def _get_platform_application(
|
|
734
|
+
platform_application_arn: str, context: RequestContext
|
|
735
|
+
) -> PlatformApplication:
|
|
736
|
+
parse_and_validate_platform_application_arn(platform_application_arn)
|
|
737
|
+
try:
|
|
738
|
+
store = SnsProvider.get_store(context.account_id, context.region)
|
|
739
|
+
return store.platform_applications[platform_application_arn]
|
|
740
|
+
except KeyError:
|
|
741
|
+
raise NotFoundException("PlatformApplication does not exist")
|
|
742
|
+
|
|
609
743
|
|
|
610
744
|
def _create_topic(name: str, attributes: dict, context: RequestContext) -> Topic:
|
|
611
745
|
topic_arn = sns_topic_arn(
|
|
@@ -673,6 +807,28 @@ def _create_default_topic_policy(topic: Topic, context: RequestContext) -> str:
|
|
|
673
807
|
)
|
|
674
808
|
|
|
675
809
|
|
|
810
|
+
def _validate_platform_application_name(name: str) -> None:
|
|
811
|
+
reason = ""
|
|
812
|
+
if not name:
|
|
813
|
+
reason = "cannot be empty"
|
|
814
|
+
elif not re.match(r"^.{0,256}$", name):
|
|
815
|
+
reason = "must be at most 256 characters long"
|
|
816
|
+
elif not re.match(r"^[A-Za-z0-9._-]+$", name):
|
|
817
|
+
reason = "must contain only characters 'a'-'z', 'A'-'Z', '0'-'9', '_', '-', and '.'"
|
|
818
|
+
|
|
819
|
+
if reason:
|
|
820
|
+
raise InvalidParameterException(f"Invalid parameter: {name} Reason: {reason}")
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
def _validate_platform_application_attributes(attributes: dict) -> None:
|
|
824
|
+
if not attributes:
|
|
825
|
+
raise CommonServiceException(
|
|
826
|
+
code="ValidationError",
|
|
827
|
+
message="1 validation error detected: Value null at 'attributes' failed to satisfy constraint: Member must not be null",
|
|
828
|
+
sender_fault=True,
|
|
829
|
+
)
|
|
830
|
+
|
|
831
|
+
|
|
676
832
|
def _validate_sms_attributes(attributes: dict) -> None:
|
|
677
833
|
for k, v in attributes.items():
|
|
678
834
|
if k not in SMS_ATTRIBUTE_NAMES:
|
|
@@ -11,13 +11,21 @@ from localstack.utils.strings import short_uid, to_bytes, to_str
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
def parse_and_validate_topic_arn(topic_arn: str | None) -> ArnData:
|
|
14
|
-
|
|
14
|
+
return _parse_and_validate_arn(topic_arn, "Topic")
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
def parse_and_validate_platform_application_arn(platform_application_arn: str | None) -> ArnData:
|
|
18
|
+
return _parse_and_validate_arn(platform_application_arn, "PlatformApplication")
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def _parse_and_validate_arn(arn: str | None, resource_type: str) -> ArnData:
|
|
22
|
+
arn = arn or ""
|
|
15
23
|
try:
|
|
16
|
-
return parse_arn(
|
|
24
|
+
return parse_arn(arn)
|
|
17
25
|
except InvalidArnException:
|
|
18
|
-
count = len(
|
|
26
|
+
count = len(arn.split(":"))
|
|
19
27
|
raise InvalidParameterException(
|
|
20
|
-
f"Invalid parameter:
|
|
28
|
+
f"Invalid parameter: {resource_type}Arn Reason: An ARN must have at least 6 elements, not {count}"
|
|
21
29
|
)
|
|
22
30
|
|
|
23
31
|
|
localstack/utils/aws/arns.py
CHANGED
|
@@ -476,6 +476,12 @@ def sns_topic_arn(topic_name: str, account_id: str, region_name: str) -> str:
|
|
|
476
476
|
return f"arn:{get_partition(region_name)}:sns:{region_name}:{account_id}:{topic_name}"
|
|
477
477
|
|
|
478
478
|
|
|
479
|
+
def sns_platform_application_arn(
|
|
480
|
+
platform_application_name: str, platform: str, account_id: str, region_name: str
|
|
481
|
+
) -> str:
|
|
482
|
+
return f"arn:{get_partition(region_name)}:sns:{region_name}:{account_id}:app/{platform}/{platform_application_name}"
|
|
483
|
+
|
|
484
|
+
|
|
479
485
|
#
|
|
480
486
|
# ECR
|
|
481
487
|
#
|
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.9.3.
|
|
32
|
-
__version_tuple__ = version_tuple = (4, 9, 3, '
|
|
31
|
+
__version__ = version = '4.9.3.dev77'
|
|
32
|
+
__version_tuple__ = version_tuple = (4, 9, 3, 'dev77')
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -4,7 +4,7 @@ localstack/deprecations.py,sha256=78Sf99fgH3ckJ20a9SMqsu01r1cm5GgcomkuY4yDMDo,15
|
|
|
4
4
|
localstack/openapi.yaml,sha256=B803NmpwsxG8PHpHrdZYBrUYjnrRh7B_JX0XuNynuFs,30237
|
|
5
5
|
localstack/plugins.py,sha256=BIJC9dlo0WbP7lLKkCiGtd_2q5oeqiHZohvoRTcejXM,2457
|
|
6
6
|
localstack/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
localstack/version.py,sha256=
|
|
7
|
+
localstack/version.py,sha256=phbRhz2sMzgNePcH1Lr9u_R4NN_UBl6-rk99PqIId_k,719
|
|
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
|
|
@@ -738,7 +738,7 @@ localstack/services/ses/resource_providers/aws_ses_emailidentity_plugin.py,sha25
|
|
|
738
738
|
localstack/services/sns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
739
739
|
localstack/services/sns/analytics.py,sha256=ecVRQ1l722ppZiKPny3m3rbNM0SKxO90rdyYWE5SI78,379
|
|
740
740
|
localstack/services/sns/certificate.py,sha256=g30Pi4CMu9u4hFTGUPua6JG5f-kOFmRIJdDu0RpIj7I,1882
|
|
741
|
-
localstack/services/sns/constants.py,sha256=
|
|
741
|
+
localstack/services/sns/constants.py,sha256=0ISxTn4kPHmtFHWVBvjFUfqaofPLUIwU-DYshcZwfvc,1444
|
|
742
742
|
localstack/services/sns/executor.py,sha256=VRaoalDYwo-K_1iDAMkeNZ6uXHo_WtGv4qPgNMxmAAk,4134
|
|
743
743
|
localstack/services/sns/filter.py,sha256=aHkd3oF2RTvuHiFZvVv1dD2qVpLUQkAeU2hJBQnW4xU,22990
|
|
744
744
|
localstack/services/sns/models.py,sha256=X0CMwm04vwIIK2Kj9ooP_2van1cA5fMvualDiq6guf4,6888
|
|
@@ -754,9 +754,9 @@ localstack/services/sns/resource_providers/aws_sns_topic_plugin.py,sha256=6I9qK7
|
|
|
754
754
|
localstack/services/sns/resource_providers/aws_sns_topicpolicy.py,sha256=su9pOM3M0sh24yGSdrm-QjM5G7B0n7zh4b3__KcR5Co,3471
|
|
755
755
|
localstack/services/sns/resource_providers/aws_sns_topicpolicy.schema.json,sha256=Q5XQbEaVKxIfvm_6GlYzl3BtezcE6hET8MuJmlGwohY,1677
|
|
756
756
|
localstack/services/sns/resource_providers/aws_sns_topicpolicy_plugin.py,sha256=7VfQhlKCLiYpI9_6qo2pKm4Al-ihxtoOGlpC7sWcTmc,527
|
|
757
|
-
localstack/services/sns/v2/models.py,sha256=
|
|
758
|
-
localstack/services/sns/v2/provider.py,sha256=
|
|
759
|
-
localstack/services/sns/v2/utils.py,sha256=
|
|
757
|
+
localstack/services/sns/v2/models.py,sha256=8BdDHP_2DzcHrorNCQeWIdjRbb1LgIZhYI4QN98oYOI,5958
|
|
758
|
+
localstack/services/sns/v2/provider.py,sha256=_FTSfNsV-UQoOaAdVFYw74hUNgmMoT0FshXzj4KRpPY,36423
|
|
759
|
+
localstack/services/sns/v2/utils.py,sha256=vAjuY4JKk4PbPYoE1dPL_Sl_X3nfZ_gd5w3VDheZCkw,5223
|
|
760
760
|
localstack/services/sqs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
761
761
|
localstack/services/sqs/constants.py,sha256=9MLAOW4-hcbZlP2qYMY3giUnubHD_mgoORT0nh5W04Q,2826
|
|
762
762
|
localstack/services/sqs/developer_api.py,sha256=fNQNMqCkDyvobRm8g4-ErXjSYQ4O-myYobXA_RneC9o,8004
|
|
@@ -1265,7 +1265,7 @@ localstack/utils/analytics/metrics/counter.py,sha256=AYXcJreYYOsdV6PuG-Muzjuu3N3
|
|
|
1265
1265
|
localstack/utils/analytics/metrics/publisher.py,sha256=Y-oOFi3eVjPE4PoSdk6pvtBdhv0yqBafWJARFXc_7Z4,1178
|
|
1266
1266
|
localstack/utils/analytics/metrics/registry.py,sha256=LMMGNlxYX3I3IeRC2-84B2ehlqA2EBb4Ic1ZP8-n8y4,2822
|
|
1267
1267
|
localstack/utils/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1268
|
-
localstack/utils/aws/arns.py,sha256=
|
|
1268
|
+
localstack/utils/aws/arns.py,sha256=a-Yuzin_ZKxKdkzhF3Q9geTz-GemzzOr5WKkxsk2_H4,16960
|
|
1269
1269
|
localstack/utils/aws/aws_responses.py,sha256=67jljsYMkZndlIR53LqIbO4Yl1AXf_L0KP6XFaFARPI,7507
|
|
1270
1270
|
localstack/utils/aws/aws_stack.py,sha256=S9SGuTM7RtGIuUMFz27mZGlu1JRe06SLv2U7HJD4AuI,3517
|
|
1271
1271
|
localstack/utils/aws/client.py,sha256=wSAc_uxVfAUtoQokxpghqHEylN0G88SfMaFr5XrtQJA,2926
|
|
@@ -1294,13 +1294,13 @@ localstack/utils/server/tcp_proxy.py,sha256=y2NJAmvftTiAYsLU_8qe4W5LGqwUw21i90Pu
|
|
|
1294
1294
|
localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1295
1295
|
localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
|
|
1296
1296
|
localstack/utils/xray/traceid.py,sha256=GKO-R2sMMjlrH2UaLPXlQlZ6flbE7ZKb6IZMtMu_M5U,1110
|
|
1297
|
-
localstack_core-4.9.3.
|
|
1298
|
-
localstack_core-4.9.3.
|
|
1299
|
-
localstack_core-4.9.3.
|
|
1300
|
-
localstack_core-4.9.3.
|
|
1301
|
-
localstack_core-4.9.3.
|
|
1302
|
-
localstack_core-4.9.3.
|
|
1303
|
-
localstack_core-4.9.3.
|
|
1304
|
-
localstack_core-4.9.3.
|
|
1305
|
-
localstack_core-4.9.3.
|
|
1306
|
-
localstack_core-4.9.3.
|
|
1297
|
+
localstack_core-4.9.3.dev77.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
|
|
1298
|
+
localstack_core-4.9.3.dev77.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
|
|
1299
|
+
localstack_core-4.9.3.dev77.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
|
|
1300
|
+
localstack_core-4.9.3.dev77.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
|
|
1301
|
+
localstack_core-4.9.3.dev77.dist-info/METADATA,sha256=hRsR8N9FMWlcD3O-OJWNrUunY9tVOFs0rSwpmGmErmQ,5885
|
|
1302
|
+
localstack_core-4.9.3.dev77.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1303
|
+
localstack_core-4.9.3.dev77.dist-info/entry_points.txt,sha256=anY8pmIzuIGekvmviJDlEJFFJmKLbXyYs4-QDOtrZmk,20840
|
|
1304
|
+
localstack_core-4.9.3.dev77.dist-info/plux.json,sha256=VpHjOykw00Sa5lWvWa96oI5ejuwwlbJwaQsu0V4XfAg,21067
|
|
1305
|
+
localstack_core-4.9.3.dev77.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
|
|
1306
|
+
localstack_core-4.9.3.dev77.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"localstack.cloudformation.resource_providers": ["AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "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::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "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::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "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::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::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "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::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "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::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "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::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin"], "localstack.packages": ["dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_package", "vosk/community=localstack.services.transcribe.plugins:vosk_package", "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", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package"], "localstack.hooks.on_infra_start": ["init_response_mutation_handler=localstack.aws.handlers.response:init_response_mutation_handler", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server", "eager_load_services=localstack.services.plugins:eager_load_services", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_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", "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", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.hooks.on_infra_shutdown": ["stop_server=localstack.dns.plugins:stop_server", "publish_metrics=localstack.utils.analytics.metrics.publisher:publish_metrics", "remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "run_on_after_service_shutdown_handlers=localstack.runtime.shutdown:run_on_after_service_shutdown_handlers", "run_shutdown_handlers=localstack.runtime.shutdown:run_shutdown_handlers", "shutdown_services=localstack.runtime.shutdown:shutdown_services"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "localstack.utils.catalog": ["aws-catalog-remote-state=localstack.utils.catalog.catalog:AwsCatalogRemoteStatePlugin", "aws-catalog-runtime-only=localstack.utils.catalog.catalog:AwsCatalogRuntimePlugin"], "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.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.init.runner": ["py=localstack.runtime.init:PythonScriptRunner", "sh=localstack.runtime.init:ShellScriptRunner"], "localstack.hooks.configure_localstack_container": ["_mount_machine_file=localstack.utils.analytics.metadata:_mount_machine_file"], "localstack.hooks.prepare_host": ["prepare_host_machine_id=localstack.utils.analytics.metadata:prepare_host_machine_id"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"localstack.cloudformation.resource_providers": ["AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "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::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "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::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"], "localstack.hooks.on_infra_start": ["delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "init_response_mutation_handler=localstack.aws.handlers.response:init_response_mutation_handler", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "eager_load_services=localstack.services.plugins:eager_load_services", "_patch_botocore_endpoint_in_memory=localstack.aws.client:_patch_botocore_endpoint_in_memory", "_patch_botocore_json_parser=localstack.aws.client:_patch_botocore_json_parser", "_patch_cbor2=localstack.aws.client:_patch_cbor2", "conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server"], "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", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_package", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package", "lambda-java-libs/community=localstack.services.lambda_.plugins:lambda_java_libs", "lambda-runtime/community=localstack.services.lambda_.plugins:lambda_runtime_package", "vosk/community=localstack.services.transcribe.plugins:vosk_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_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: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.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", "publish_provider_assignment=localstack.utils.analytics.service_providers:publish_provider_assignment"], "localstack.hooks.on_infra_shutdown": ["_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints", "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", "stop_server=localstack.dns.plugins:stop_server"], "localstack.utils.catalog": ["aws-catalog-remote-state=localstack.utils.catalog.catalog:AwsCatalogRemoteStatePlugin", "aws-catalog-runtime-only=localstack.utils.catalog.catalog:AwsCatalogRuntimePlugin"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"]}
|
|
File without changes
|
{localstack_core-4.9.3.dev76.data → localstack_core-4.9.3.dev77.data}/scripts/localstack-supervisor
RENAMED
|
File without changes
|
{localstack_core-4.9.3.dev76.data → localstack_core-4.9.3.dev77.data}/scripts/localstack.bat
RENAMED
|
File without changes
|
|
File without changes
|
{localstack_core-4.9.3.dev76.dist-info → localstack_core-4.9.3.dev77.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{localstack_core-4.9.3.dev76.dist-info → localstack_core-4.9.3.dev77.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
{localstack_core-4.9.3.dev76.dist-info → localstack_core-4.9.3.dev77.dist-info}/top_level.txt
RENAMED
|
File without changes
|