localstack-core 4.3.1.dev27__py3-none-any.whl → 4.3.1.dev28__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.
@@ -36,6 +36,7 @@ EndpointStateReason = str
36
36
  EndpointUrl = str
37
37
  ErrorCode = str
38
38
  ErrorMessage = str
39
+ EventBusArn = str
39
40
  EventBusDescription = str
40
41
  EventBusName = str
41
42
  EventBusNameOrArn = str
@@ -329,7 +330,7 @@ Long = int
329
330
 
330
331
  class Archive(TypedDict, total=False):
331
332
  ArchiveName: Optional[ArchiveName]
332
- EventSourceArn: Optional[Arn]
333
+ EventSourceArn: Optional[EventBusArn]
333
334
  State: Optional[ArchiveState]
334
335
  StateReason: Optional[ArchiveStateReason]
335
336
  RetentionDays: Optional[RetentionDays]
@@ -497,10 +498,11 @@ class CreateApiDestinationResponse(TypedDict, total=False):
497
498
 
498
499
  class CreateArchiveRequest(ServiceRequest):
499
500
  ArchiveName: ArchiveName
500
- EventSourceArn: Arn
501
+ EventSourceArn: EventBusArn
501
502
  Description: Optional[ArchiveDescription]
502
503
  EventPattern: Optional[EventPattern]
503
504
  RetentionDays: Optional[RetentionDays]
505
+ KmsKeyIdentifier: Optional[KmsKeyIdentifier]
504
506
 
505
507
 
506
508
  class CreateArchiveResponse(TypedDict, total=False):
@@ -730,11 +732,12 @@ class DescribeArchiveRequest(ServiceRequest):
730
732
  class DescribeArchiveResponse(TypedDict, total=False):
731
733
  ArchiveArn: Optional[ArchiveArn]
732
734
  ArchiveName: Optional[ArchiveName]
733
- EventSourceArn: Optional[Arn]
735
+ EventSourceArn: Optional[EventBusArn]
734
736
  Description: Optional[ArchiveDescription]
735
737
  EventPattern: Optional[EventPattern]
736
738
  State: Optional[ArchiveState]
737
739
  StateReason: Optional[ArchiveStateReason]
740
+ KmsKeyIdentifier: Optional[KmsKeyIdentifier]
738
741
  RetentionDays: Optional[RetentionDays]
739
742
  SizeBytes: Optional[Long]
740
743
  EventCount: Optional[Long]
@@ -836,7 +839,7 @@ class DescribeReplayResponse(TypedDict, total=False):
836
839
  Description: Optional[ReplayDescription]
837
840
  State: Optional[ReplayState]
838
841
  StateReason: Optional[ReplayStateReason]
839
- EventSourceArn: Optional[Arn]
842
+ EventSourceArn: Optional[ArchiveArn]
840
843
  Destination: Optional[ReplayDestination]
841
844
  EventStartTime: Optional[Timestamp]
842
845
  EventEndTime: Optional[Timestamp]
@@ -994,7 +997,7 @@ class ListApiDestinationsResponse(TypedDict, total=False):
994
997
 
995
998
  class ListArchivesRequest(ServiceRequest):
996
999
  NamePrefix: Optional[ArchiveName]
997
- EventSourceArn: Optional[Arn]
1000
+ EventSourceArn: Optional[EventBusArn]
998
1001
  State: Optional[ArchiveState]
999
1002
  NextToken: Optional[NextToken]
1000
1003
  Limit: Optional[LimitMax100]
@@ -1094,14 +1097,14 @@ class ListPartnerEventSourcesResponse(TypedDict, total=False):
1094
1097
  class ListReplaysRequest(ServiceRequest):
1095
1098
  NamePrefix: Optional[ReplayName]
1096
1099
  State: Optional[ReplayState]
1097
- EventSourceArn: Optional[Arn]
1100
+ EventSourceArn: Optional[ArchiveArn]
1098
1101
  NextToken: Optional[NextToken]
1099
1102
  Limit: Optional[LimitMax100]
1100
1103
 
1101
1104
 
1102
1105
  class Replay(TypedDict, total=False):
1103
1106
  ReplayName: Optional[ReplayName]
1104
- EventSourceArn: Optional[Arn]
1107
+ EventSourceArn: Optional[ArchiveArn]
1105
1108
  State: Optional[ReplayState]
1106
1109
  StateReason: Optional[ReplayStateReason]
1107
1110
  EventStartTime: Optional[Timestamp]
@@ -1391,7 +1394,7 @@ class RemoveTargetsResponse(TypedDict, total=False):
1391
1394
  class StartReplayRequest(ServiceRequest):
1392
1395
  ReplayName: ReplayName
1393
1396
  Description: Optional[ReplayDescription]
1394
- EventSourceArn: Arn
1397
+ EventSourceArn: ArchiveArn
1395
1398
  EventStartTime: Timestamp
1396
1399
  EventEndTime: Timestamp
1397
1400
  Destination: ReplayDestination
@@ -1455,6 +1458,7 @@ class UpdateArchiveRequest(ServiceRequest):
1455
1458
  Description: Optional[ArchiveDescription]
1456
1459
  EventPattern: Optional[EventPattern]
1457
1460
  RetentionDays: Optional[RetentionDays]
1461
+ KmsKeyIdentifier: Optional[KmsKeyIdentifier]
1458
1462
 
1459
1463
 
1460
1464
  class UpdateArchiveResponse(TypedDict, total=False):
@@ -1581,10 +1585,11 @@ class EventsApi:
1581
1585
  self,
1582
1586
  context: RequestContext,
1583
1587
  archive_name: ArchiveName,
1584
- event_source_arn: Arn,
1588
+ event_source_arn: EventBusArn,
1585
1589
  description: ArchiveDescription = None,
1586
1590
  event_pattern: EventPattern = None,
1587
1591
  retention_days: RetentionDays = None,
1592
+ kms_key_identifier: KmsKeyIdentifier = None,
1588
1593
  **kwargs,
1589
1594
  ) -> CreateArchiveResponse:
1590
1595
  raise NotImplementedError
@@ -1788,7 +1793,7 @@ class EventsApi:
1788
1793
  self,
1789
1794
  context: RequestContext,
1790
1795
  name_prefix: ArchiveName = None,
1791
- event_source_arn: Arn = None,
1796
+ event_source_arn: EventBusArn = None,
1792
1797
  state: ArchiveState = None,
1793
1798
  next_token: NextToken = None,
1794
1799
  limit: LimitMax100 = None,
@@ -1870,7 +1875,7 @@ class EventsApi:
1870
1875
  context: RequestContext,
1871
1876
  name_prefix: ReplayName = None,
1872
1877
  state: ReplayState = None,
1873
- event_source_arn: Arn = None,
1878
+ event_source_arn: ArchiveArn = None,
1874
1879
  next_token: NextToken = None,
1875
1880
  limit: LimitMax100 = None,
1876
1881
  **kwargs,
@@ -2004,7 +2009,7 @@ class EventsApi:
2004
2009
  self,
2005
2010
  context: RequestContext,
2006
2011
  replay_name: ReplayName,
2007
- event_source_arn: Arn,
2012
+ event_source_arn: ArchiveArn,
2008
2013
  event_start_time: Timestamp,
2009
2014
  event_end_time: Timestamp,
2010
2015
  destination: ReplayDestination,
@@ -2053,6 +2058,7 @@ class EventsApi:
2053
2058
  description: ArchiveDescription = None,
2054
2059
  event_pattern: EventPattern = None,
2055
2060
  retention_days: RetentionDays = None,
2061
+ kms_key_identifier: KmsKeyIdentifier = None,
2056
2062
  **kwargs,
2057
2063
  ) -> UpdateArchiveResponse:
2058
2064
  raise NotImplementedError
@@ -277,6 +277,8 @@ class ResourceRecordSetRegion(StrEnum):
277
277
  ap_southeast_5 = "ap-southeast-5"
278
278
  mx_central_1 = "mx-central-1"
279
279
  ap_southeast_7 = "ap-southeast-7"
280
+ us_gov_east_1 = "us-gov-east-1"
281
+ us_gov_west_1 = "us-gov-west-1"
280
282
 
281
283
 
282
284
  class ReusableDelegationSetLimitType(StrEnum):
@@ -405,6 +405,17 @@ class S3StorageClass(StrEnum):
405
405
  GLACIER_IR = "GLACIER_IR"
406
406
 
407
407
 
408
+ class ScopePermission(StrEnum):
409
+ GetObject = "GetObject"
410
+ GetObjectAttributes = "GetObjectAttributes"
411
+ ListMultipartUploadParts = "ListMultipartUploadParts"
412
+ ListBucket = "ListBucket"
413
+ ListBucketMultipartUploads = "ListBucketMultipartUploads"
414
+ PutObject = "PutObject"
415
+ DeleteObject = "DeleteObject"
416
+ AbortMultipartUpload = "AbortMultipartUpload"
417
+
418
+
408
419
  class SseKmsEncryptedObjectsStatus(StrEnum):
409
420
  Enabled = "Enabled"
410
421
  Disabled = "Disabled"
@@ -824,6 +835,15 @@ class CreateAccessPointForObjectLambdaResult(TypedDict, total=False):
824
835
  Alias: Optional[ObjectLambdaAccessPointAlias]
825
836
 
826
837
 
838
+ ScopePermissionList = List[ScopePermission]
839
+ PrefixesList = List[Prefix]
840
+
841
+
842
+ class Scope(TypedDict, total=False):
843
+ Prefixes: Optional[PrefixesList]
844
+ Permissions: Optional[ScopePermissionList]
845
+
846
+
827
847
  class CreateAccessPointRequest(ServiceRequest):
828
848
  AccountId: AccountId
829
849
  Name: AccessPointName
@@ -831,6 +851,7 @@ class CreateAccessPointRequest(ServiceRequest):
831
851
  VpcConfiguration: Optional[VpcConfiguration]
832
852
  PublicAccessBlockConfiguration: Optional[PublicAccessBlockConfiguration]
833
853
  BucketAccountId: Optional[AccountId]
854
+ Scope: Optional[Scope]
834
855
 
835
856
 
836
857
  class CreateAccessPointResult(TypedDict, total=False):
@@ -1222,6 +1243,11 @@ class DeleteAccessPointRequest(ServiceRequest):
1222
1243
  Name: AccessPointName
1223
1244
 
1224
1245
 
1246
+ class DeleteAccessPointScopeRequest(ServiceRequest):
1247
+ AccountId: AccountId
1248
+ Name: AccessPointName
1249
+
1250
+
1225
1251
  class DeleteBucketLifecycleConfigurationRequest(ServiceRequest):
1226
1252
  AccountId: AccountId
1227
1253
  Bucket: BucketName
@@ -1561,6 +1587,15 @@ class GetAccessPointResult(TypedDict, total=False):
1561
1587
  BucketAccountId: Optional[AccountId]
1562
1588
 
1563
1589
 
1590
+ class GetAccessPointScopeRequest(ServiceRequest):
1591
+ AccountId: AccountId
1592
+ Name: AccessPointName
1593
+
1594
+
1595
+ class GetAccessPointScopeResult(TypedDict, total=False):
1596
+ Scope: Optional[Scope]
1597
+
1598
+
1564
1599
  class GetBucketLifecycleConfigurationRequest(ServiceRequest):
1565
1600
  AccountId: AccountId
1566
1601
  Bucket: BucketName
@@ -1965,6 +2000,18 @@ class ListAccessGrantsResult(TypedDict, total=False):
1965
2000
  AccessGrantsList: Optional[AccessGrantsList]
1966
2001
 
1967
2002
 
2003
+ class ListAccessPointsForDirectoryBucketsRequest(ServiceRequest):
2004
+ AccountId: AccountId
2005
+ DirectoryBucket: Optional[BucketName]
2006
+ NextToken: Optional[NonEmptyMaxLength1024String]
2007
+ MaxResults: Optional[MaxResults]
2008
+
2009
+
2010
+ class ListAccessPointsForDirectoryBucketsResult(TypedDict, total=False):
2011
+ AccessPointList: Optional[AccessPointList]
2012
+ NextToken: Optional[NonEmptyMaxLength1024String]
2013
+
2014
+
1968
2015
  class ListAccessPointsForObjectLambdaRequest(ServiceRequest):
1969
2016
  AccountId: AccountId
1970
2017
  NextToken: Optional[NonEmptyMaxLength1024String]
@@ -2137,6 +2184,12 @@ class PutAccessPointPolicyRequest(ServiceRequest):
2137
2184
  Policy: Policy
2138
2185
 
2139
2186
 
2187
+ class PutAccessPointScopeRequest(ServiceRequest):
2188
+ AccountId: AccountId
2189
+ Name: AccessPointName
2190
+ Scope: Scope
2191
+
2192
+
2140
2193
  class PutBucketLifecycleConfigurationRequest(ServiceRequest):
2141
2194
  AccountId: AccountId
2142
2195
  Bucket: BucketName
@@ -2360,6 +2413,7 @@ class S3ControlApi:
2360
2413
  vpc_configuration: VpcConfiguration = None,
2361
2414
  public_access_block_configuration: PublicAccessBlockConfiguration = None,
2362
2415
  bucket_account_id: AccountId = None,
2416
+ scope: Scope = None,
2363
2417
  **kwargs,
2364
2418
  ) -> CreateAccessPointResult:
2365
2419
  raise NotImplementedError
@@ -2498,6 +2552,12 @@ class S3ControlApi:
2498
2552
  ) -> None:
2499
2553
  raise NotImplementedError
2500
2554
 
2555
+ @handler("DeleteAccessPointScope")
2556
+ def delete_access_point_scope(
2557
+ self, context: RequestContext, account_id: AccountId, name: AccessPointName, **kwargs
2558
+ ) -> None:
2559
+ raise NotImplementedError
2560
+
2501
2561
  @handler("DeleteBucket")
2502
2562
  def delete_bucket(
2503
2563
  self, context: RequestContext, account_id: AccountId, bucket: BucketName, **kwargs
@@ -2687,6 +2747,12 @@ class S3ControlApi:
2687
2747
  ) -> GetAccessPointPolicyStatusForObjectLambdaResult:
2688
2748
  raise NotImplementedError
2689
2749
 
2750
+ @handler("GetAccessPointScope")
2751
+ def get_access_point_scope(
2752
+ self, context: RequestContext, account_id: AccountId, name: AccessPointName, **kwargs
2753
+ ) -> GetAccessPointScopeResult:
2754
+ raise NotImplementedError
2755
+
2690
2756
  @handler("GetBucket")
2691
2757
  def get_bucket(
2692
2758
  self, context: RequestContext, account_id: AccountId, bucket: BucketName, **kwargs
@@ -2858,6 +2924,18 @@ class S3ControlApi:
2858
2924
  ) -> ListAccessPointsResult:
2859
2925
  raise NotImplementedError
2860
2926
 
2927
+ @handler("ListAccessPointsForDirectoryBuckets")
2928
+ def list_access_points_for_directory_buckets(
2929
+ self,
2930
+ context: RequestContext,
2931
+ account_id: AccountId,
2932
+ directory_bucket: BucketName = None,
2933
+ next_token: NonEmptyMaxLength1024String = None,
2934
+ max_results: MaxResults = None,
2935
+ **kwargs,
2936
+ ) -> ListAccessPointsForDirectoryBucketsResult:
2937
+ raise NotImplementedError
2938
+
2861
2939
  @handler("ListAccessPointsForObjectLambda")
2862
2940
  def list_access_points_for_object_lambda(
2863
2941
  self,
@@ -2987,6 +3065,17 @@ class S3ControlApi:
2987
3065
  ) -> None:
2988
3066
  raise NotImplementedError
2989
3067
 
3068
+ @handler("PutAccessPointScope")
3069
+ def put_access_point_scope(
3070
+ self,
3071
+ context: RequestContext,
3072
+ account_id: AccountId,
3073
+ name: AccessPointName,
3074
+ scope: Scope,
3075
+ **kwargs,
3076
+ ) -> None:
3077
+ raise NotImplementedError
3078
+
2990
3079
  @handler("PutBucketLifecycleConfiguration")
2991
3080
  def put_bucket_lifecycle_configuration(
2992
3081
  self,
@@ -177,6 +177,7 @@ class LanguageCode(StrEnum):
177
177
  uk_UA = "uk-UA"
178
178
  uz_UZ = "uz-UZ"
179
179
  wo_SN = "wo-SN"
180
+ zh_HK = "zh-HK"
180
181
  zu_ZA = "zu-ZA"
181
182
 
182
183
 
@@ -44,6 +44,7 @@ from localstack.aws.api.events import (
44
44
  DescribeReplayResponse,
45
45
  DescribeRuleResponse,
46
46
  EndpointId,
47
+ EventBusArn,
47
48
  EventBusDescription,
48
49
  EventBusList,
49
50
  EventBusName,
@@ -921,12 +922,14 @@ class EventsProvider(EventsApi, ServiceLifecycleHook):
921
922
  self,
922
923
  context: RequestContext,
923
924
  archive_name: ArchiveName,
924
- event_source_arn: Arn,
925
+ event_source_arn: EventBusArn,
925
926
  description: ArchiveDescription = None,
926
927
  event_pattern: EventPattern = None,
927
928
  retention_days: RetentionDays = None,
929
+ kms_key_identifier: KmsKeyIdentifier = None,
928
930
  **kwargs,
929
931
  ) -> CreateArchiveResponse:
932
+ # TODO add support for kms_key_identifier
930
933
  region = context.region
931
934
  account_id = context.account_id
932
935
  store = self.get_store(region, account_id)
@@ -1022,8 +1025,10 @@ class EventsProvider(EventsApi, ServiceLifecycleHook):
1022
1025
  description: ArchiveDescription = None,
1023
1026
  event_pattern: EventPattern = None,
1024
1027
  retention_days: RetentionDays = None,
1028
+ kms_key_identifier: KmsKeyIdentifier = None,
1025
1029
  **kwargs,
1026
1030
  ) -> UpdateArchiveResponse:
1031
+ # TODO add support for kms_key_identifier
1027
1032
  region = context.region
1028
1033
  account_id = context.account_id
1029
1034
  store = self.get_store(region, account_id)
localstack/version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '4.3.1.dev27'
21
- __version_tuple__ = version_tuple = (4, 3, 1, 'dev27')
20
+ __version__ = version = '4.3.1.dev28'
21
+ __version_tuple__ = version_tuple = (4, 3, 1, 'dev28')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: localstack-core
3
- Version: 4.3.1.dev27
3
+ Version: 4.3.1.dev28
4
4
  Summary: The core library and runtime of LocalStack
5
5
  Author-email: LocalStack Contributors <info@localstack.cloud>
6
6
  License-Expression: Apache-2.0
@@ -31,8 +31,8 @@ Requires-Dist: requests>=2.20.0
31
31
  Requires-Dist: semver>=2.10
32
32
  Requires-Dist: tailer>=0.4.1
33
33
  Provides-Extra: base-runtime
34
- Requires-Dist: boto3==1.37.23; extra == "base-runtime"
35
- Requires-Dist: botocore==1.37.23; extra == "base-runtime"
34
+ Requires-Dist: boto3==1.37.28; extra == "base-runtime"
35
+ Requires-Dist: botocore==1.37.28; extra == "base-runtime"
36
36
  Requires-Dist: awscrt>=0.13.14; extra == "base-runtime"
37
37
  Requires-Dist: cbor2>=5.5.0; extra == "base-runtime"
38
38
  Requires-Dist: dnspython>=1.16.0; extra == "base-runtime"
@@ -3,7 +3,7 @@ localstack/constants.py,sha256=bBh6djh4x37MrS8az8LizX_APMZ56XdtJHCnZdOnmeg,6867
3
3
  localstack/deprecations.py,sha256=t3zeaZaHhKYM8snP1wRZhpvAy6MbB12Vqv5hK78bwJ0,15162
4
4
  localstack/openapi.yaml,sha256=B803NmpwsxG8PHpHrdZYBrUYjnrRh7B_JX0XuNynuFs,30237
5
5
  localstack/plugins.py,sha256=BIJC9dlo0WbP7lLKkCiGtd_2q5oeqiHZohvoRTcejXM,2457
6
- localstack/version.py,sha256=ppXPG_hhLIAU9fGO35fYnx7682vMxkli_DkdFS2_Iqo,526
6
+ localstack/version.py,sha256=mIczpfhCG5xI2eROwVmno7cO0jYQyTD9JGgj6fP5B_M,526
7
7
  localstack/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  localstack/aws/accounts.py,sha256=102zpGowOxo0S6UGMpfjw14QW7WCLVAGsnFK5xFMLoo,3043
9
9
  localstack/aws/app.py,sha256=n9bJCfJRuMz_gLGAH430c3bIQXgUXeWO5NPfcdL2MV8,5145
@@ -29,9 +29,9 @@ localstack/aws/api/cloudwatch/__init__.py,sha256=Ep6Z3t6StIsKHCtvkvAroODVxxWvG5X
29
29
  localstack/aws/api/config/__init__.py,sha256=_34oLgPd2zFkD0EnDM4jVy90rmtW7CcVWtfHoVYAjxU,141276
30
30
  localstack/aws/api/dynamodb/__init__.py,sha256=ilFvq01MyOaHdrK9TTA_WQZ1291iGCWnXI-odC0yeyQ,91143
31
31
  localstack/aws/api/dynamodbstreams/__init__.py,sha256=Xfnce5gsHC4omBJrNsCi3F7TJpuvqn9K7rC5EL-y4UQ,6999
32
- localstack/aws/api/ec2/__init__.py,sha256=pdNny1WSWiP5jvBz35-EQikC3G-vLRYqs3dD6RrHGnM,881402
32
+ localstack/aws/api/ec2/__init__.py,sha256=HdmMKUcA0o75YJ6D8z6uPSvLTLm7PWdTSjtnxz_I9sU,898639
33
33
  localstack/aws/api/es/__init__.py,sha256=T5wz0U7jtm2ZjRJkkBHG8qRR8n2Hy51LeCAN25EeMjg,63675
34
- localstack/aws/api/events/__init__.py,sha256=JbURTIxg4p0Sc2Ot88MQy6WvGfi2bw1lS0pt7I2hU-k,60015
34
+ localstack/aws/api/events/__init__.py,sha256=NAeyTwa1zwJeHn-Akm5Tt2Mzp_V_86eRcboIOIwOivw,60376
35
35
  localstack/aws/api/firehose/__init__.py,sha256=iM9_VTHDwtqtupKPBCqAQIh6Xk9ziM4rEEsxPRMN6RM,58271
36
36
  localstack/aws/api/iam/__init__.py,sha256=4d-fX9uElIfPB50HZu4fWukK5TUYAuYgkA0uRj3e8sY,111582
37
37
  localstack/aws/api/kinesis/__init__.py,sha256=-j6BrAfBDGLuLes5KH9CZFH07KVGQAcino5jnKxvdek,27313
@@ -43,10 +43,10 @@ localstack/aws/api/pipes/__init__.py,sha256=pZMhYeqT6BxUk-pweK6TWS9gLdy7GJbQLfid
43
43
  localstack/aws/api/redshift/__init__.py,sha256=ItgcsfPYX6gqh46DEZtea4LyLYBG1qsWcrM8H0mSTj0,155612
44
44
  localstack/aws/api/resource_groups/__init__.py,sha256=H3pCHqBPqYo6xZv5Fl_D5zysditrUUMFVnSSXq-Gkos,20748
45
45
  localstack/aws/api/resourcegroupstaggingapi/__init__.py,sha256=dd6ALIXvx-upFiNwPcUh2z3o6BIS3QQeA6muY_sYtcE,8660
46
- localstack/aws/api/route53/__init__.py,sha256=k1F-_tdQRkpCvzXcwm9CidY7hBGvs9-HRO6phtpPUns,70405
46
+ localstack/aws/api/route53/__init__.py,sha256=-6NLhbmOpibPyX9l-uO8VYYI_uvdKtVy58rWKou_L5Y,70477
47
47
  localstack/aws/api/route53resolver/__init__.py,sha256=FE-qMvF9jGzkHkehM3I0PGeQxfvo9AY9r01ZrJZCeaQ,59895
48
48
  localstack/aws/api/s3/__init__.py,sha256=-cOQEkj288KBrLt3QVS5IxnZv9pNdN2l8loHrRspmQY,153351
49
- localstack/aws/api/s3control/__init__.py,sha256=OdMlB5vrBwTnOkXqqKRRW59fmDY_uU0O2oDCMBC3wdI,91575
49
+ localstack/aws/api/s3control/__init__.py,sha256=jPuMuxHjZ4FOPxjPYmIxqZ1n-F9qInaDBV7BcksZx3w,94159
50
50
  localstack/aws/api/scheduler/__init__.py,sha256=GLuwphVHkUAzKwj8Pw6TZ1tiFyafL19nhknSTS8R1js,15554
51
51
  localstack/aws/api/secretsmanager/__init__.py,sha256=5dunc0wMBtVn7gwz4Fu4TkE6aaEfJHqNp5zpaorFElY,23577
52
52
  localstack/aws/api/ses/__init__.py,sha256=u3J6qgzcWVmDw2-5Oq6aUxdlVHt9zJhavibW_IWQKrs,56094
@@ -57,7 +57,7 @@ localstack/aws/api/stepfunctions/__init__.py,sha256=PFeCgVj6pjDJv0yGtNs0CtX3Dy-Q
57
57
  localstack/aws/api/sts/__init__.py,sha256=7KOzJgPUJ63JUcYv19O-Z_bOtSuz2y7nxZ86lbzfRUw,10796
58
58
  localstack/aws/api/support/__init__.py,sha256=2w1BEVB9Gt_iVM9t9-RBwx0W6PH89gJpM0z7R-KYeI0,16813
59
59
  localstack/aws/api/swf/__init__.py,sha256=psYajfPiMrmkVnfdUTQVh8csj4OItae-avnQw66y8dE,61426
60
- localstack/aws/api/transcribe/__init__.py,sha256=IjW3ipiQFLwHXYg5asx8NrHGr95JeFKKcorb-vT8yKE,48988
60
+ localstack/aws/api/transcribe/__init__.py,sha256=dJ58wOU_uZBYhjkfa7O6d20h-IyUf5JwjvsiBFm6xnw,49008
61
61
  localstack/aws/data/sqs-query/2012-11-05/README.md,sha256=kCa30EG7duD8naEHFmWNYt-mpPzl3Z5oU2YS5sz_4Mg,1117
62
62
  localstack/aws/data/sqs-query/2012-11-05/service-2.json,sha256=QFuVuRqTC82O-uVvrBf5r6Wk-lRm8oCxgLgWRGvRELo,34136
63
63
  localstack/aws/handlers/__init__.py,sha256=qeSfvzPAALcgwDZRQmPQL0ULorMd5CFPmLU09FsEmww,2025
@@ -439,7 +439,7 @@ localstack/services/events/connection.py,sha256=mISkJ3_5SmaCopVCi2J7fEvd-MdBOA0S
439
439
  localstack/services/events/event_bus.py,sha256=GMTyJdc6mwH5uQYKPR799oZec9hKEXhssCGUiQalC8M,4184
440
440
  localstack/services/events/event_rule_engine.py,sha256=y00JStGykaVwqtsuYlgLnEVs0m5zAzrCrVWnJJIuyLs,27360
441
441
  localstack/services/events/models.py,sha256=pb4EtFmE7B_34AJ4yT9LxzXv26BH6Gd9k0PfO3mRm_c,9812
442
- localstack/services/events/provider.py,sha256=PsbePjLgRBJ02KXl4whHgtmaE2Odfv6O-BuYURvMzMA,73552
442
+ localstack/services/events/provider.py,sha256=L8CNHV4pDgbK0csySy7WNKkBTZIqBh6tLvZHMNqxXJg,73783
443
443
  localstack/services/events/replay.py,sha256=0IVRvH6J6zLKke4mu7ANDr-4iNdXYu3xMiM90fTjpGE,2981
444
444
  localstack/services/events/rule.py,sha256=u-8WE8tdtxvFs5cKpemofdUkOOe36diF0X90Cq_Bdl0,10187
445
445
  localstack/services/events/scheduler.py,sha256=nBx5g1CyNJQOLAyeNgGznc9A4sxREX1S6WnqbBc_YGc,4255
@@ -1268,13 +1268,13 @@ localstack/utils/server/tcp_proxy.py,sha256=rR6d5jR0ozDvIlpHiqW0cfyY9a2fRGdOzyA8
1268
1268
  localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1269
1269
  localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
1270
1270
  localstack/utils/xray/traceid.py,sha256=SQSsMV2rhbTNK6ceIoozZYuGU7Fg687EXcgqxoDl1Fw,1106
1271
- localstack_core-4.3.1.dev27.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
1272
- localstack_core-4.3.1.dev27.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
1273
- localstack_core-4.3.1.dev27.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
1274
- localstack_core-4.3.1.dev27.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
1275
- localstack_core-4.3.1.dev27.dist-info/METADATA,sha256=enl6joha1KjeoZbS3EgWL8aznADN-ASeewBF_Qq09wE,5506
1276
- localstack_core-4.3.1.dev27.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1277
- localstack_core-4.3.1.dev27.dist-info/entry_points.txt,sha256=UqGFR0MPKa2sfresdqiCpqBZuWyRxCb3UG77oPVMzVA,20564
1278
- localstack_core-4.3.1.dev27.dist-info/plux.json,sha256=g3hOrAL9zKpTLJ5lkdX5FoR0vm8kl8NIcHAFqo0nT6k,20786
1279
- localstack_core-4.3.1.dev27.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
1280
- localstack_core-4.3.1.dev27.dist-info/RECORD,,
1271
+ localstack_core-4.3.1.dev28.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
1272
+ localstack_core-4.3.1.dev28.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
1273
+ localstack_core-4.3.1.dev28.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
1274
+ localstack_core-4.3.1.dev28.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
1275
+ localstack_core-4.3.1.dev28.dist-info/METADATA,sha256=4clAgRruIhTfoJsDOfEsSoevqjN4fiUFMjwCQp31m8w,5506
1276
+ localstack_core-4.3.1.dev28.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
1277
+ localstack_core-4.3.1.dev28.dist-info/entry_points.txt,sha256=UqGFR0MPKa2sfresdqiCpqBZuWyRxCb3UG77oPVMzVA,20564
1278
+ localstack_core-4.3.1.dev28.dist-info/plux.json,sha256=-hwrJvI3_OzYuFwaIQWl3MPRRb68Adu2YuhowR6UrpU,20786
1279
+ localstack_core-4.3.1.dev28.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
1280
+ localstack_core-4.3.1.dev28.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+ {"localstack.cloudformation.resource_providers": ["AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "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::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "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::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "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::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin"], "localstack.init.runner": ["py=localstack.runtime.init:PythonScriptRunner", "sh=localstack.runtime.init:ShellScriptRunner"], "localstack.hooks.on_infra_ready": ["_run_init_scripts_on_ready=localstack.runtime.init:_run_init_scripts_on_ready"], "localstack.hooks.on_infra_shutdown": ["_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "aggregate_and_send=localstack.utils.analytics.usage:aggregate_and_send", "run_on_after_service_shutdown_handlers=localstack.runtime.shutdown:run_on_after_service_shutdown_handlers", "run_shutdown_handlers=localstack.runtime.shutdown:run_shutdown_handlers", "shutdown_services=localstack.runtime.shutdown:shutdown_services", "publish_metrics=localstack.utils.analytics.metrics:publish_metrics", "stop_server=localstack.dns.plugins:stop_server", "remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints"], "localstack.hooks.on_infra_start": ["_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "_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", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "localstack.packages": ["jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "terraform/community=localstack.packages.plugins:terraform_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", "kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_package"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.hooks.configure_localstack_container": ["_mount_machine_file=localstack.utils.analytics.metadata:_mount_machine_file"], "localstack.hooks.prepare_host": ["prepare_host_machine_id=localstack.utils.analytics.metadata:prepare_host_machine_id"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "localstack.aws.provider": ["acm:default=localstack.services.providers:acm", "apigateway:default=localstack.services.providers:apigateway", "apigateway:legacy=localstack.services.providers:apigateway_legacy", "apigateway:next_gen=localstack.services.providers:apigateway_next_gen", "config:default=localstack.services.providers:awsconfig", "cloudformation:default=localstack.services.providers:cloudformation", "cloudformation:engine-v2=localstack.services.providers:cloudformation_v2", "cloudwatch:default=localstack.services.providers:cloudwatch", "cloudwatch:v1=localstack.services.providers:cloudwatch_v1", "cloudwatch:v2=localstack.services.providers:cloudwatch_v2", "dynamodb:default=localstack.services.providers:dynamodb", "dynamodb:v2=localstack.services.providers:dynamodb_v2", "dynamodbstreams:default=localstack.services.providers:dynamodbstreams", "dynamodbstreams:v2=localstack.services.providers:dynamodbstreams_v2", "ec2:default=localstack.services.providers:ec2", "es:default=localstack.services.providers:es", "events:default=localstack.services.providers:events", "events:legacy=localstack.services.providers:events_legacy", "events:v1=localstack.services.providers:events_v1", "events:v2=localstack.services.providers:events_v2", "firehose:default=localstack.services.providers:firehose", "iam:default=localstack.services.providers:iam", "kinesis:default=localstack.services.providers:kinesis", "kms:default=localstack.services.providers:kms", "lambda:default=localstack.services.providers:lambda_", "lambda:asf=localstack.services.providers:lambda_asf", "lambda:v2=localstack.services.providers:lambda_v2", "logs:default=localstack.services.providers:logs", "opensearch:default=localstack.services.providers:opensearch", "redshift:default=localstack.services.providers:redshift", "resource-groups:default=localstack.services.providers:resource_groups", "resourcegroupstaggingapi:default=localstack.services.providers:resourcegroupstaggingapi", "route53:default=localstack.services.providers:route53", "route53resolver:default=localstack.services.providers:route53resolver", "s3:default=localstack.services.providers:s3", "s3control:default=localstack.services.providers:s3control", "scheduler:default=localstack.services.providers:scheduler", "secretsmanager:default=localstack.services.providers:secretsmanager", "ses:default=localstack.services.providers:ses", "sns:default=localstack.services.providers:sns", "sqs:default=localstack.services.providers:sqs", "ssm:default=localstack.services.providers:ssm", "stepfunctions:default=localstack.services.providers:stepfunctions", "stepfunctions:v2=localstack.services.providers:stepfunctions_v2", "sts:default=localstack.services.providers:sts", "support:default=localstack.services.providers:support", "swf:default=localstack.services.providers:swf", "transcribe:default=localstack.services.providers:transcribe"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"]}
@@ -1 +0,0 @@
1
- {"localstack.cloudformation.resource_providers": ["AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "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::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "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::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "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::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "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::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "localstack.hooks.on_infra_start": ["register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui", "conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "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", "_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", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "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", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server"], "localstack.init.runner": ["py=localstack.runtime.init:PythonScriptRunner", "sh=localstack.runtime.init:ShellScriptRunner"], "localstack.hooks.on_infra_ready": ["_run_init_scripts_on_ready=localstack.runtime.init:_run_init_scripts_on_ready"], "localstack.hooks.on_infra_shutdown": ["_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "run_on_after_service_shutdown_handlers=localstack.runtime.shutdown:run_on_after_service_shutdown_handlers", "run_shutdown_handlers=localstack.runtime.shutdown:run_shutdown_handlers", "shutdown_services=localstack.runtime.shutdown:shutdown_services", "aggregate_and_send=localstack.utils.analytics.usage:aggregate_and_send", "remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints", "publish_metrics=localstack.utils.analytics.metrics:publish_metrics", "stop_server=localstack.dns.plugins:stop_server"], "localstack.packages": ["vosk/community=localstack.services.transcribe.plugins:vosk_package", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_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", "terraform/community=localstack.packages.plugins:terraform_package", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package"], "localstack.hooks.configure_localstack_container": ["_mount_machine_file=localstack.utils.analytics.metadata:_mount_machine_file"], "localstack.hooks.prepare_host": ["prepare_host_machine_id=localstack.utils.analytics.metadata:prepare_host_machine_id"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.aws.provider": ["acm:default=localstack.services.providers:acm", "apigateway:default=localstack.services.providers:apigateway", "apigateway:legacy=localstack.services.providers:apigateway_legacy", "apigateway:next_gen=localstack.services.providers:apigateway_next_gen", "config:default=localstack.services.providers:awsconfig", "cloudformation:default=localstack.services.providers:cloudformation", "cloudformation:engine-v2=localstack.services.providers:cloudformation_v2", "cloudwatch:default=localstack.services.providers:cloudwatch", "cloudwatch:v1=localstack.services.providers:cloudwatch_v1", "cloudwatch:v2=localstack.services.providers:cloudwatch_v2", "dynamodb:default=localstack.services.providers:dynamodb", "dynamodb:v2=localstack.services.providers:dynamodb_v2", "dynamodbstreams:default=localstack.services.providers:dynamodbstreams", "dynamodbstreams:v2=localstack.services.providers:dynamodbstreams_v2", "ec2:default=localstack.services.providers:ec2", "es:default=localstack.services.providers:es", "events:default=localstack.services.providers:events", "events:legacy=localstack.services.providers:events_legacy", "events:v1=localstack.services.providers:events_v1", "events:v2=localstack.services.providers:events_v2", "firehose:default=localstack.services.providers:firehose", "iam:default=localstack.services.providers:iam", "kinesis:default=localstack.services.providers:kinesis", "kms:default=localstack.services.providers:kms", "lambda:default=localstack.services.providers:lambda_", "lambda:asf=localstack.services.providers:lambda_asf", "lambda:v2=localstack.services.providers:lambda_v2", "logs:default=localstack.services.providers:logs", "opensearch:default=localstack.services.providers:opensearch", "redshift:default=localstack.services.providers:redshift", "resource-groups:default=localstack.services.providers:resource_groups", "resourcegroupstaggingapi:default=localstack.services.providers:resourcegroupstaggingapi", "route53:default=localstack.services.providers:route53", "route53resolver:default=localstack.services.providers:route53resolver", "s3:default=localstack.services.providers:s3", "s3control:default=localstack.services.providers:s3control", "scheduler:default=localstack.services.providers:scheduler", "secretsmanager:default=localstack.services.providers:secretsmanager", "ses:default=localstack.services.providers:ses", "sns:default=localstack.services.providers:sns", "sqs:default=localstack.services.providers:sqs", "ssm:default=localstack.services.providers:ssm", "stepfunctions:default=localstack.services.providers:stepfunctions", "stepfunctions:v2=localstack.services.providers:stepfunctions_v2", "sts:default=localstack.services.providers:sts", "support:default=localstack.services.providers:support", "swf:default=localstack.services.providers:swf", "transcribe:default=localstack.services.providers:transcribe"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"]}