localstack-core 4.7.1.dev49__py3-none-any.whl → 4.7.1.dev50__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/aws/handlers/internal_requests.py +6 -1
- localstack/aws/spec.py +3 -2
- localstack/services/apigateway/legacy/invocations.py +4 -3
- localstack/services/apigateway/next_gen/execute_api/handlers/method_request.py +7 -2
- localstack/services/cloudformation/engine/template_deployer.py +4 -2
- localstack/services/cloudformation/provider.py +3 -3
- localstack/services/cloudwatch/alarm_scheduler.py +4 -1
- localstack/services/dynamodb/server.py +1 -1
- localstack/services/firehose/provider.py +14 -4
- localstack/services/lambda_/invocation/lambda_service.py +5 -1
- localstack/services/lambda_/provider.py +2 -2
- localstack/services/opensearch/provider.py +2 -1
- localstack/services/plugins.py +5 -1
- localstack/services/s3/notifications.py +18 -7
- localstack/services/s3/website_hosting.py +4 -2
- localstack/services/ses/provider.py +2 -2
- localstack/services/sns/executor.py +9 -2
- localstack/services/sns/publisher.py +8 -3
- localstack/services/sqs/provider.py +16 -5
- localstack/services/sqs/query_api.py +1 -1
- localstack/services/stepfunctions/backend/execution.py +2 -1
- localstack/services/transcribe/provider.py +6 -1
- localstack/utils/analytics/metadata.py +4 -1
- localstack/utils/http.py +2 -1
- localstack/utils/net.py +6 -1
- localstack/version.py +2 -2
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.7.1.dev50.dist-info}/METADATA +1 -1
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.7.1.dev50.dist-info}/RECORD +36 -36
- localstack_core-4.7.1.dev50.dist-info/plux.json +1 -0
- localstack_core-4.7.1.dev49.dist-info/plux.json +0 -1
- {localstack_core-4.7.1.dev49.data → localstack_core-4.7.1.dev50.data}/scripts/localstack +0 -0
- {localstack_core-4.7.1.dev49.data → localstack_core-4.7.1.dev50.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.7.1.dev49.data → localstack_core-4.7.1.dev50.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.7.1.dev50.dist-info}/WHEEL +0 -0
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.7.1.dev50.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.7.1.dev50.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.7.1.dev49.dist-info → localstack_core-4.7.1.dev50.dist-info}/top_level.txt +0 -0
|
@@ -20,7 +20,12 @@ class InternalRequestParamsEnricher(Handler):
|
|
|
20
20
|
try:
|
|
21
21
|
dto = MappingProxyType(load_dto(header))
|
|
22
22
|
except Exception as e:
|
|
23
|
-
LOG.
|
|
23
|
+
LOG.error(
|
|
24
|
+
"Error loading request parameters '%s', Error: %s",
|
|
25
|
+
header,
|
|
26
|
+
e,
|
|
27
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
28
|
+
)
|
|
24
29
|
return
|
|
25
30
|
|
|
26
31
|
context.internal_request_params = dto
|
localstack/aws/spec.py
CHANGED
|
@@ -343,8 +343,9 @@ def get_service_catalog() -> ServiceCatalog:
|
|
|
343
343
|
index = build_service_index_cache(cache_catalog_file)
|
|
344
344
|
return ServiceCatalog(index)
|
|
345
345
|
except Exception:
|
|
346
|
-
LOG.
|
|
347
|
-
"error while processing service catalog index cache, falling back to lazy-loaded index"
|
|
346
|
+
LOG.error(
|
|
347
|
+
"error while processing service catalog index cache, falling back to lazy-loaded index",
|
|
348
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
348
349
|
)
|
|
349
350
|
return ServiceCatalog()
|
|
350
351
|
|
|
@@ -142,8 +142,9 @@ class RequestValidator:
|
|
|
142
142
|
# try to get the resolved model first
|
|
143
143
|
resolved_schema = model_resolver.get_resolved_model()
|
|
144
144
|
if not resolved_schema:
|
|
145
|
-
LOG.
|
|
146
|
-
"An exception occurred while trying to validate the request: could not find the model"
|
|
145
|
+
LOG.error(
|
|
146
|
+
"An exception occurred while trying to validate the request: could not find the model",
|
|
147
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
147
148
|
)
|
|
148
149
|
return False
|
|
149
150
|
|
|
@@ -334,7 +335,7 @@ def invoke_rest_api_integration(invocation_context: ApiInvocationContext):
|
|
|
334
335
|
return e.to_response()
|
|
335
336
|
except Exception as e:
|
|
336
337
|
msg = f"Error invoking integration for API Gateway ID '{invocation_context.api_id}': {e}"
|
|
337
|
-
LOG.
|
|
338
|
+
LOG.error(msg, exc_info=LOG.isEnabledFor(logging.DEBUG))
|
|
338
339
|
return make_error_response(msg, 400)
|
|
339
340
|
|
|
340
341
|
|
|
@@ -50,7 +50,11 @@ class MethodRequestHandler(RestApiGatewayHandler):
|
|
|
50
50
|
# check if there is a validator for this request
|
|
51
51
|
if not (validator := rest_api.validators.get(request_validator_id)):
|
|
52
52
|
# TODO Should we raise an exception instead?
|
|
53
|
-
LOG.
|
|
53
|
+
LOG.error(
|
|
54
|
+
"No validator were found with matching id: '%s'",
|
|
55
|
+
request_validator_id,
|
|
56
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
57
|
+
)
|
|
54
58
|
return
|
|
55
59
|
|
|
56
60
|
if self.should_validate_request(validator) and (
|
|
@@ -87,9 +91,10 @@ class MethodRequestHandler(RestApiGatewayHandler):
|
|
|
87
91
|
# try to get the resolved model first
|
|
88
92
|
resolved_schema = model_resolver.get_resolved_model()
|
|
89
93
|
if not resolved_schema:
|
|
90
|
-
LOG.
|
|
94
|
+
LOG.error(
|
|
91
95
|
"An exception occurred while trying to validate the request: could not resolve the model '%s'",
|
|
92
96
|
model_name,
|
|
97
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
93
98
|
)
|
|
94
99
|
return False
|
|
95
100
|
|
|
@@ -1479,10 +1479,11 @@ class TemplateDeployer:
|
|
|
1479
1479
|
# correct order yet.
|
|
1480
1480
|
continue
|
|
1481
1481
|
case OperationStatus.FAILED:
|
|
1482
|
-
LOG.
|
|
1482
|
+
LOG.error(
|
|
1483
1483
|
"Failed to delete resource with id %s. Reason: %s",
|
|
1484
1484
|
resource_id,
|
|
1485
1485
|
event.message or "unknown",
|
|
1486
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
1486
1487
|
)
|
|
1487
1488
|
case OperationStatus.IN_PROGRESS:
|
|
1488
1489
|
# the resource provider executor should not return this state, so
|
|
@@ -1494,10 +1495,11 @@ class TemplateDeployer:
|
|
|
1494
1495
|
raise Exception(f"Use of unsupported status found: {other_status}")
|
|
1495
1496
|
|
|
1496
1497
|
except Exception as e:
|
|
1497
|
-
LOG.
|
|
1498
|
+
LOG.error(
|
|
1498
1499
|
"Failed to delete resource with id %s. Final exception: %s",
|
|
1499
1500
|
resource_id,
|
|
1500
1501
|
e,
|
|
1502
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
1501
1503
|
)
|
|
1502
1504
|
|
|
1503
1505
|
# update status
|
|
@@ -306,7 +306,7 @@ class CloudformationProvider(CloudformationApi):
|
|
|
306
306
|
except Exception as e:
|
|
307
307
|
stack.set_stack_status("CREATE_FAILED")
|
|
308
308
|
msg = 'Unable to create stack "%s": %s' % (stack.stack_name, e)
|
|
309
|
-
LOG.
|
|
309
|
+
LOG.error("%s", exc_info=LOG.isEnabledFor(logging.DEBUG))
|
|
310
310
|
raise ValidationError(msg) from e
|
|
311
311
|
|
|
312
312
|
return CreateStackOutput(StackId=stack.stack_id)
|
|
@@ -423,7 +423,7 @@ class CloudformationProvider(CloudformationApi):
|
|
|
423
423
|
except Exception as e:
|
|
424
424
|
stack.set_stack_status("UPDATE_FAILED")
|
|
425
425
|
msg = f'Unable to update stack "{stack_name}": {e}'
|
|
426
|
-
LOG.
|
|
426
|
+
LOG.error("%s", msg, exc_info=LOG.isEnabledFor(logging.DEBUG))
|
|
427
427
|
raise ValidationError(msg) from e
|
|
428
428
|
|
|
429
429
|
return UpdateStackOutput(StackId=stack.stack_id)
|
|
@@ -1052,7 +1052,7 @@ class CloudformationProvider(CloudformationApi):
|
|
|
1052
1052
|
Description=valid_template.get("Description"), Parameters=parameters
|
|
1053
1053
|
)
|
|
1054
1054
|
except Exception as e:
|
|
1055
|
-
LOG.
|
|
1055
|
+
LOG.error("Error validating template", exc_info=LOG.isEnabledFor(logging.DEBUG))
|
|
1056
1056
|
raise ValidationError("Template Validation Error") from e
|
|
1057
1057
|
|
|
1058
1058
|
# =======================================
|
|
@@ -69,7 +69,10 @@ class AlarmScheduler:
|
|
|
69
69
|
schedule_period = evaluation_periods * period
|
|
70
70
|
|
|
71
71
|
def on_error(e):
|
|
72
|
-
LOG.
|
|
72
|
+
if LOG.isEnabledFor(logging.DEBUG):
|
|
73
|
+
LOG.exception("Error executing scheduled alarm", exc_info=e)
|
|
74
|
+
else:
|
|
75
|
+
LOG.error("Error executing scheduled alarm")
|
|
73
76
|
|
|
74
77
|
task = self.scheduler.schedule(
|
|
75
78
|
func=calculate_alarm_state,
|
|
@@ -219,7 +219,7 @@ class DynamodbServer(Server):
|
|
|
219
219
|
aws_secret_access_key=DEFAULT_AWS_ACCOUNT_ID,
|
|
220
220
|
).dynamodb.list_tables()
|
|
221
221
|
except Exception:
|
|
222
|
-
LOG.
|
|
222
|
+
LOG.error("DynamoDB health check failed", exc_info=LOG.isEnabledFor(logging.DEBUG))
|
|
223
223
|
if expect_shutdown:
|
|
224
224
|
assert out is None
|
|
225
225
|
else:
|
|
@@ -706,7 +706,11 @@ class FirehoseProvider(FirehoseApi):
|
|
|
706
706
|
try:
|
|
707
707
|
requests.post(url, json=record_to_send, headers=headers)
|
|
708
708
|
except Exception as e:
|
|
709
|
-
LOG.
|
|
709
|
+
LOG.error(
|
|
710
|
+
"Unable to put Firehose records to HTTP endpoint %s.",
|
|
711
|
+
url,
|
|
712
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
713
|
+
)
|
|
710
714
|
raise e
|
|
711
715
|
if "RedshiftDestinationDescription" in destination:
|
|
712
716
|
s3_dest_desc = destination["RedshiftDestinationDescription"][
|
|
@@ -782,7 +786,11 @@ class FirehoseProvider(FirehoseApi):
|
|
|
782
786
|
try:
|
|
783
787
|
db_connection.create(index=search_db_index, id=obj_id, body=body)
|
|
784
788
|
except Exception as e:
|
|
785
|
-
LOG.
|
|
789
|
+
LOG.error(
|
|
790
|
+
"Unable to put record to stream %s.",
|
|
791
|
+
delivery_stream_name,
|
|
792
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
793
|
+
)
|
|
786
794
|
raise e
|
|
787
795
|
|
|
788
796
|
def _add_missing_record_attributes(self, records: list[dict]) -> None:
|
|
@@ -860,9 +868,10 @@ class FirehoseProvider(FirehoseApi):
|
|
|
860
868
|
LOG.debug("Publishing to S3 destination: %s. Data: %s", bucket, batched_data)
|
|
861
869
|
s3.put_object(Bucket=bucket, Key=obj_path, Body=batched_data)
|
|
862
870
|
except Exception as e:
|
|
863
|
-
LOG.
|
|
871
|
+
LOG.error(
|
|
864
872
|
"Unable to put records %s to s3 bucket.",
|
|
865
873
|
records,
|
|
874
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
866
875
|
)
|
|
867
876
|
raise e
|
|
868
877
|
|
|
@@ -917,9 +926,10 @@ class FirehoseProvider(FirehoseApi):
|
|
|
917
926
|
)
|
|
918
927
|
redshift_data.execute_statement(Parameters=row_to_insert, **execute_statement)
|
|
919
928
|
except Exception as e:
|
|
920
|
-
LOG.
|
|
929
|
+
LOG.error(
|
|
921
930
|
"Unable to put records %s to redshift cluster.",
|
|
922
931
|
row_to_insert,
|
|
932
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
923
933
|
)
|
|
924
934
|
raise e
|
|
925
935
|
|
|
@@ -478,7 +478,11 @@ class LambdaService:
|
|
|
478
478
|
] = new_version_state
|
|
479
479
|
|
|
480
480
|
except Exception:
|
|
481
|
-
LOG.
|
|
481
|
+
LOG.error(
|
|
482
|
+
"Failed to update function version for arn %s",
|
|
483
|
+
function_arn,
|
|
484
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
485
|
+
)
|
|
482
486
|
|
|
483
487
|
def update_alias(self, old_alias: VersionAlias, new_alias: VersionAlias, function: Function):
|
|
484
488
|
# if pointer changed, need to restart provisioned
|
|
@@ -313,7 +313,7 @@ class LambdaProvider(LambdaApi, ServiceLifecycleHook):
|
|
|
313
313
|
LOG.warning(
|
|
314
314
|
"Failed to restore function version %s",
|
|
315
315
|
fn_version.id.qualified_arn(),
|
|
316
|
-
exc_info=
|
|
316
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
317
317
|
)
|
|
318
318
|
# restore provisioned concurrency per function considering both versions and aliases
|
|
319
319
|
for (
|
|
@@ -344,7 +344,7 @@ class LambdaProvider(LambdaApi, ServiceLifecycleHook):
|
|
|
344
344
|
"Failed to restore provisioned concurrency %s for function %s",
|
|
345
345
|
provisioned_config,
|
|
346
346
|
fn_arn,
|
|
347
|
-
exc_info=
|
|
347
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
348
348
|
)
|
|
349
349
|
|
|
350
350
|
for esm in state.event_source_mappings.values():
|
|
@@ -466,10 +466,11 @@ class OpensearchProvider(OpensearchApi, ServiceLifecycleHook):
|
|
|
466
466
|
preferred_port=preferred_port,
|
|
467
467
|
)
|
|
468
468
|
except Exception:
|
|
469
|
-
LOG.
|
|
469
|
+
LOG.error(
|
|
470
470
|
"Could not restore domain %s in region %s.",
|
|
471
471
|
domain_name,
|
|
472
472
|
region,
|
|
473
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
473
474
|
)
|
|
474
475
|
|
|
475
476
|
def on_before_state_reset(self):
|
localstack/services/plugins.py
CHANGED
|
@@ -708,4 +708,8 @@ def eager_load_services():
|
|
|
708
708
|
except ServiceDisabled as e:
|
|
709
709
|
LOG.debug("%s", e)
|
|
710
710
|
except Exception:
|
|
711
|
-
LOG.
|
|
711
|
+
LOG.error(
|
|
712
|
+
"could not load service plugin %s",
|
|
713
|
+
api,
|
|
714
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
715
|
+
)
|
|
@@ -402,8 +402,14 @@ class SqsNotifier(BaseNotifier):
|
|
|
402
402
|
queue_url = sqs_client.get_queue_url(
|
|
403
403
|
QueueName=arn_data["resource"], QueueOwnerAWSAccountId=arn_data["account"]
|
|
404
404
|
)["QueueUrl"]
|
|
405
|
-
except ClientError:
|
|
406
|
-
|
|
405
|
+
except ClientError as e:
|
|
406
|
+
code = e.response["Error"]["Code"]
|
|
407
|
+
LOG.error(
|
|
408
|
+
"Could not validate the notification destination %s: %s",
|
|
409
|
+
target_arn,
|
|
410
|
+
code,
|
|
411
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
412
|
+
)
|
|
407
413
|
raise _create_invalid_argument_exc(
|
|
408
414
|
"Unable to validate the following destination configurations",
|
|
409
415
|
name=target_arn,
|
|
@@ -454,10 +460,11 @@ class SqsNotifier(BaseNotifier):
|
|
|
454
460
|
MessageSystemAttributes=system_attributes,
|
|
455
461
|
)
|
|
456
462
|
except Exception:
|
|
457
|
-
LOG.
|
|
463
|
+
LOG.error(
|
|
458
464
|
'Unable to send notification for S3 bucket "%s" to SQS queue "%s"',
|
|
459
465
|
ctx.bucket_name,
|
|
460
466
|
parsed_arn["resource"],
|
|
467
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
461
468
|
)
|
|
462
469
|
|
|
463
470
|
|
|
@@ -536,10 +543,11 @@ class SnsNotifier(BaseNotifier):
|
|
|
536
543
|
Subject="Amazon S3 Notification",
|
|
537
544
|
)
|
|
538
545
|
except Exception:
|
|
539
|
-
LOG.
|
|
546
|
+
LOG.error(
|
|
540
547
|
'Unable to send notification for S3 bucket "%s" to SNS topic "%s"',
|
|
541
548
|
ctx.bucket_name,
|
|
542
549
|
topic_arn,
|
|
550
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
543
551
|
)
|
|
544
552
|
|
|
545
553
|
|
|
@@ -604,10 +612,11 @@ class LambdaNotifier(BaseNotifier):
|
|
|
604
612
|
Payload=payload,
|
|
605
613
|
)
|
|
606
614
|
except Exception:
|
|
607
|
-
LOG.
|
|
615
|
+
LOG.error(
|
|
608
616
|
'Unable to send notification for S3 bucket "%s" to Lambda function "%s".',
|
|
609
617
|
ctx.bucket_name,
|
|
610
618
|
lambda_arn,
|
|
619
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
611
620
|
)
|
|
612
621
|
|
|
613
622
|
|
|
@@ -729,8 +738,10 @@ class EventBridgeNotifier(BaseNotifier):
|
|
|
729
738
|
try:
|
|
730
739
|
events_client.put_events(Entries=[entry])
|
|
731
740
|
except Exception:
|
|
732
|
-
LOG.
|
|
733
|
-
'Unable to send notification for S3 bucket "%s" to EventBridge',
|
|
741
|
+
LOG.error(
|
|
742
|
+
'Unable to send notification for S3 bucket "%s" to EventBridge',
|
|
743
|
+
ctx.bucket_name,
|
|
744
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
734
745
|
)
|
|
735
746
|
|
|
736
747
|
|
|
@@ -93,8 +93,10 @@ class S3WebsiteHostingHandler:
|
|
|
93
93
|
return Response(response_body, status=e.response["ResponseMetadata"]["HTTPStatusCode"])
|
|
94
94
|
|
|
95
95
|
except Exception:
|
|
96
|
-
LOG.
|
|
97
|
-
"Exception encountered while trying to serve s3-website at %s",
|
|
96
|
+
LOG.error(
|
|
97
|
+
"Exception encountered while trying to serve s3-website at %s",
|
|
98
|
+
request.url,
|
|
99
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
98
100
|
)
|
|
99
101
|
return Response(_create_500_error_string(), status=500)
|
|
100
102
|
|
|
@@ -626,7 +626,7 @@ class SNSEmitter:
|
|
|
626
626
|
Subject="Amazon SES Email Event Notification",
|
|
627
627
|
)
|
|
628
628
|
except ClientError:
|
|
629
|
-
LOGGER.
|
|
629
|
+
LOGGER.error("sending SNS message", exc_info=LOGGER.isEnabledFor(logging.DEBUG))
|
|
630
630
|
|
|
631
631
|
def emit_delivery_event(self, payload: EventDestinationPayload, sns_topic_arn: str):
|
|
632
632
|
now = datetime.now(tz=UTC)
|
|
@@ -659,7 +659,7 @@ class SNSEmitter:
|
|
|
659
659
|
Subject="Amazon SES Email Event Notification",
|
|
660
660
|
)
|
|
661
661
|
except ClientError:
|
|
662
|
-
LOGGER.
|
|
662
|
+
LOGGER.error("sending SNS message", exc_info=LOGGER.isEnabledFor(logging.DEBUG))
|
|
663
663
|
|
|
664
664
|
@staticmethod
|
|
665
665
|
def _client_for_topic(topic_arn: str) -> "SNSClient":
|
|
@@ -18,7 +18,10 @@ def _worker(work_queue: queue.Queue):
|
|
|
18
18
|
del work_item
|
|
19
19
|
|
|
20
20
|
except Exception:
|
|
21
|
-
LOG.
|
|
21
|
+
LOG.error(
|
|
22
|
+
"Exception in worker",
|
|
23
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
24
|
+
)
|
|
22
25
|
|
|
23
26
|
|
|
24
27
|
class _WorkItem:
|
|
@@ -31,7 +34,11 @@ class _WorkItem:
|
|
|
31
34
|
try:
|
|
32
35
|
self.fn(*self.args, **self.kwargs)
|
|
33
36
|
except Exception:
|
|
34
|
-
LOG.
|
|
37
|
+
LOG.error(
|
|
38
|
+
"Unhandled Exception in while running %s",
|
|
39
|
+
self.fn.__name__,
|
|
40
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
41
|
+
)
|
|
35
42
|
|
|
36
43
|
|
|
37
44
|
class TopicPartitionedThreadPoolExecutor:
|
|
@@ -89,9 +89,10 @@ class TopicPublisher(abc.ABC):
|
|
|
89
89
|
try:
|
|
90
90
|
self._publish(context=context, subscriber=subscriber)
|
|
91
91
|
except Exception:
|
|
92
|
-
LOG.
|
|
92
|
+
LOG.error(
|
|
93
93
|
"An internal error occurred while trying to send the SNS message %s",
|
|
94
94
|
context.message,
|
|
95
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
95
96
|
)
|
|
96
97
|
return
|
|
97
98
|
|
|
@@ -147,9 +148,10 @@ class EndpointPublisher(abc.ABC):
|
|
|
147
148
|
try:
|
|
148
149
|
self._publish(context=context, endpoint=endpoint)
|
|
149
150
|
except Exception:
|
|
150
|
-
LOG.
|
|
151
|
+
LOG.error(
|
|
151
152
|
"An internal error occurred while trying to send the SNS message %s",
|
|
152
153
|
context.message,
|
|
154
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
153
155
|
)
|
|
154
156
|
return
|
|
155
157
|
|
|
@@ -295,7 +297,10 @@ class SqsTopicPublisher(TopicPublisher):
|
|
|
295
297
|
)
|
|
296
298
|
kwargs = self.get_sqs_kwargs(msg_context=message_context, subscriber=subscriber)
|
|
297
299
|
except Exception:
|
|
298
|
-
LOG.
|
|
300
|
+
LOG.error(
|
|
301
|
+
"An internal error occurred while trying to format the message for SQS",
|
|
302
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
303
|
+
)
|
|
299
304
|
return
|
|
300
305
|
try:
|
|
301
306
|
queue_url: str = sqs_queue_url_for_arn(subscriber["Endpoint"])
|
|
@@ -405,18 +405,27 @@ class QueueUpdateWorker:
|
|
|
405
405
|
try:
|
|
406
406
|
queue.requeue_inflight_messages()
|
|
407
407
|
except Exception:
|
|
408
|
-
LOG.
|
|
408
|
+
LOG.error(
|
|
409
|
+
"error re-queueing inflight messages",
|
|
410
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
411
|
+
)
|
|
409
412
|
|
|
410
413
|
try:
|
|
411
414
|
queue.enqueue_delayed_messages()
|
|
412
415
|
except Exception:
|
|
413
|
-
LOG.
|
|
416
|
+
LOG.error(
|
|
417
|
+
"error enqueueing delayed messages",
|
|
418
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
419
|
+
)
|
|
414
420
|
|
|
415
421
|
if config.SQS_ENABLE_MESSAGE_RETENTION_PERIOD:
|
|
416
422
|
try:
|
|
417
423
|
queue.remove_expired_messages()
|
|
418
424
|
except Exception:
|
|
419
|
-
LOG.
|
|
425
|
+
LOG.error(
|
|
426
|
+
"error removing expired messages",
|
|
427
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
428
|
+
)
|
|
420
429
|
|
|
421
430
|
def start(self):
|
|
422
431
|
with self.mutex:
|
|
@@ -697,8 +706,10 @@ class SqsDeveloperEndpoints:
|
|
|
697
706
|
try:
|
|
698
707
|
account_id, region, queue_name = parse_queue_url(service_request.get("QueueUrl"))
|
|
699
708
|
except ValueError:
|
|
700
|
-
LOG.
|
|
701
|
-
"Error while parsing Queue URL from request values: %s",
|
|
709
|
+
LOG.error(
|
|
710
|
+
"Error while parsing Queue URL from request values: %s",
|
|
711
|
+
service_request.get,
|
|
712
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
702
713
|
)
|
|
703
714
|
raise InvalidAddress()
|
|
704
715
|
|
|
@@ -166,7 +166,7 @@ def handle_request(request: Request, region: str) -> Response:
|
|
|
166
166
|
op = service.operation_model(service.operation_names[0])
|
|
167
167
|
return serializer.serialize_error_to_response(e, op, request.headers, request_id)
|
|
168
168
|
except Exception as e:
|
|
169
|
-
LOG.
|
|
169
|
+
LOG.error("exception", exc_info=LOG.isEnabledFor(logging.DEBUG))
|
|
170
170
|
op = service.operation_model(service.operation_names[0])
|
|
171
171
|
return serializer.serialize_error_to_response(
|
|
172
172
|
CommonServiceException(
|
|
@@ -356,10 +356,11 @@ class Execution:
|
|
|
356
356
|
try:
|
|
357
357
|
self._get_events_client().put_events(Entries=[entry])
|
|
358
358
|
except Exception:
|
|
359
|
-
LOG.
|
|
359
|
+
LOG.error(
|
|
360
360
|
"Unable to send notification of Entry='%s' for Step Function execution with Arn='%s' to EventBridge.",
|
|
361
361
|
entry,
|
|
362
362
|
self.exec_arn,
|
|
363
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
363
364
|
)
|
|
364
365
|
|
|
365
366
|
|
|
@@ -412,4 +412,9 @@ class TranscribeProvider(TranscribeApi):
|
|
|
412
412
|
job["FailureReason"] = failure_reason or str(exc)
|
|
413
413
|
job["TranscriptionJobStatus"] = TranscriptionJobStatus.FAILED
|
|
414
414
|
|
|
415
|
-
LOG.
|
|
415
|
+
LOG.error(
|
|
416
|
+
"Transcription job %s failed: %s",
|
|
417
|
+
job_name,
|
|
418
|
+
job["FailureReason"],
|
|
419
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
420
|
+
)
|
|
@@ -148,7 +148,10 @@ def is_license_activated() -> bool:
|
|
|
148
148
|
|
|
149
149
|
return licensingv2.get_licensed_environment().activated
|
|
150
150
|
except Exception:
|
|
151
|
-
LOG.
|
|
151
|
+
LOG.error(
|
|
152
|
+
"Could not determine license activation status",
|
|
153
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
154
|
+
)
|
|
152
155
|
return False
|
|
153
156
|
|
|
154
157
|
|
localstack/utils/http.py
CHANGED
|
@@ -298,11 +298,12 @@ def download_github_artifact(url: str, target_file: str, timeout: int = None):
|
|
|
298
298
|
return True
|
|
299
299
|
except Exception as e:
|
|
300
300
|
if print_error:
|
|
301
|
-
LOG.
|
|
301
|
+
LOG.error(
|
|
302
302
|
"Unable to download Github artifact from %s to %s: %s %s",
|
|
303
303
|
url,
|
|
304
304
|
target_file,
|
|
305
305
|
e,
|
|
306
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
306
307
|
)
|
|
307
308
|
|
|
308
309
|
# if a GitHub API token is set, use it to avoid rate limiting issues
|
localstack/utils/net.py
CHANGED
|
@@ -97,7 +97,12 @@ def is_port_open(
|
|
|
97
97
|
sock.recvfrom(1024)
|
|
98
98
|
except Exception:
|
|
99
99
|
if not quiet:
|
|
100
|
-
LOG.
|
|
100
|
+
LOG.error(
|
|
101
|
+
"Error connecting to UDP port %s:%s",
|
|
102
|
+
host,
|
|
103
|
+
port,
|
|
104
|
+
exc_info=LOG.isEnabledFor(logging.DEBUG),
|
|
105
|
+
)
|
|
101
106
|
return False
|
|
102
107
|
elif nw_protocol == socket.SOCK_STREAM:
|
|
103
108
|
result = sock.connect_ex((host, port))
|
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.7.1.
|
|
21
|
-
__version_tuple__ = version_tuple = (4, 7, 1, '
|
|
20
|
+
__version__ = version = '4.7.1.dev50'
|
|
21
|
+
__version_tuple__ = version_tuple = (4, 7, 1, 'dev50')
|
|
@@ -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=YpGWqeaDOLyXQomQ2ANRiHIEQG1bJK7QusRW6dn_76k,526
|
|
8
8
|
localstack/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
localstack/aws/accounts.py,sha256=102zpGowOxo0S6UGMpfjw14QW7WCLVAGsnFK5xFMLoo,3043
|
|
10
10
|
localstack/aws/app.py,sha256=n9bJCfJRuMz_gLGAH430c3bIQXgUXeWO5NPfcdL2MV8,5145
|
|
@@ -19,7 +19,7 @@ localstack/aws/patches.py,sha256=WIv-N71s6qzlVhnv9BO85Lpi9rGreNROUcSlmq9lrCw,186
|
|
|
19
19
|
localstack/aws/scaffold.py,sha256=tp14vOyO4gCr5hLMqtus99XUDCqLIatsTtnvCYv52vc,20034
|
|
20
20
|
localstack/aws/skeleton.py,sha256=zlbzAEiMV-tS5EQz5MxqflInalK613BrTOFviyT4X5Y,8175
|
|
21
21
|
localstack/aws/spec-patches.json,sha256=9zIgusH52V72SmOaRHTlWcu4aX5GEb2SzX1U9EL7SpU,42563
|
|
22
|
-
localstack/aws/spec.py,sha256=
|
|
22
|
+
localstack/aws/spec.py,sha256=E-CwSd37WUcPJJBqKEJwesnNNl-H2GV8l2OcQP73oxk,14253
|
|
23
23
|
localstack/aws/api/__init__.py,sha256=JspwCauxfTTdLNVAr7AkQaPu1lELdBQ1miB9B9sndOo,297
|
|
24
24
|
localstack/aws/api/core.py,sha256=Tr-4t17Bf-XjOrc0cI2oRcef5tZi-HLXRrMqDKJQQe4,6783
|
|
25
25
|
localstack/aws/api/acm/__init__.py,sha256=67OHJbngmz4nKaXm9grkLW_Rl4RLRCeOBffhh3u1z0k,19079
|
|
@@ -68,7 +68,7 @@ localstack/aws/handlers/codec.py,sha256=PuHaUVXEEjkFKTjoqDrJocUTzVNov_nYPXfkbQf8
|
|
|
68
68
|
localstack/aws/handlers/cors.py,sha256=ZEmcftE_4bpA5avBCRksV-0A9EvLhihGb8j_atB7_7w,10733
|
|
69
69
|
localstack/aws/handlers/fallback.py,sha256=OQ3_joHwbvMOVCYnZOY7HxDi66QdjMe0vhSmPZOZKKQ,1465
|
|
70
70
|
localstack/aws/handlers/internal.py,sha256=KRpheCdyKOcVPIL5hAi0wY2Fo17fKN5xpe5uvcrLOlM,1933
|
|
71
|
-
localstack/aws/handlers/internal_requests.py,sha256=
|
|
71
|
+
localstack/aws/handlers/internal_requests.py,sha256=Af-mm9FSgAM8DCT9t3CcOmYXa6xf1gdt1mih_8btLZI,980
|
|
72
72
|
localstack/aws/handlers/legacy.py,sha256=98-bcDmDOPy4x-l2AFrTbqu217JIoDNnxya6gJ0s2bU,1093
|
|
73
73
|
localstack/aws/handlers/logging.py,sha256=UjZxsrjsjsidxZpHYuGy1U87Hs9bEP05HeGiAMX5_Ro,6055
|
|
74
74
|
localstack/aws/handlers/metric_handler.py,sha256=GkhP4bb9AEtFQjOoiHEQNcXSSQvnwJWdNUHcFmK7WoI,6201
|
|
@@ -177,7 +177,7 @@ localstack/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
177
177
|
localstack/services/edge.py,sha256=3QlAqCMbUX3Ulozho4PBa7PoNFcGKJJT3pqy449u_3g,6795
|
|
178
178
|
localstack/services/internal.py,sha256=V5c_VnRjUmRptCyaRpLxs43zEzH3KxOAnuIvbLH1npk,11812
|
|
179
179
|
localstack/services/moto.py,sha256=r3mqlgtx8RTwAODYUqxfExIr3UzlZUj4l4o81cmIbII,8477
|
|
180
|
-
localstack/services/plugins.py,sha256=
|
|
180
|
+
localstack/services/plugins.py,sha256=NQSrR9HE_tcocPmkyRAq69cmDuHCKtP-kxhp4MsvLU4,25069
|
|
181
181
|
localstack/services/providers.py,sha256=BMmGPAC4qJEI7Hd7Se24CtdflFaILVtoGmmbRj5UPF8,12997
|
|
182
182
|
localstack/services/stores.py,sha256=8z-haWCHjtTQeB2bEqPWnNj7uJYTyAECi0kG3IeotQQ,11652
|
|
183
183
|
localstack/services/acm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -192,7 +192,7 @@ localstack/services/apigateway/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
192
192
|
localstack/services/apigateway/legacy/context.py,sha256=Srs_q3YItn9ylzrR7W64JEGm95HPx4moucc4CpCGpyc,6586
|
|
193
193
|
localstack/services/apigateway/legacy/helpers.py,sha256=8cqv2gVRTg7yrBA-vh4y8Kk4yNyshBQ7-qJSRMvr74A,27634
|
|
194
194
|
localstack/services/apigateway/legacy/integration.py,sha256=5cQbNq4F_Cn5II4qpku7ZzgkvY6pwVI04CZtohBxZrE,48663
|
|
195
|
-
localstack/services/apigateway/legacy/invocations.py,sha256=
|
|
195
|
+
localstack/services/apigateway/legacy/invocations.py,sha256=H6mrZTNQM34mA3DraGNotwvVf-5O-9VZzHj7DJH3-og,15403
|
|
196
196
|
localstack/services/apigateway/legacy/provider.py,sha256=FPTkMUx7G4I_DDoyni1BLmpd2XqKXURGj-H1hQPaWKA,132145
|
|
197
197
|
localstack/services/apigateway/legacy/router_asf.py,sha256=Usj-inyFvTLeDJgspQFl6Ztxcb5gT4gZHVam1XjE-BU,6096
|
|
198
198
|
localstack/services/apigateway/legacy/templates.py,sha256=vRGyjywWwOlwVFOoltJ1JEl0AdTazMum9WCBUHAtHT4,15034
|
|
@@ -218,7 +218,7 @@ localstack/services/apigateway/next_gen/execute_api/handlers/gateway_exception.p
|
|
|
218
218
|
localstack/services/apigateway/next_gen/execute_api/handlers/integration.py,sha256=kHt1hHHj_y9MpTjs1uIwq9zxDxlVqbLZx0E2tjnz_Fo,1097
|
|
219
219
|
localstack/services/apigateway/next_gen/execute_api/handlers/integration_request.py,sha256=c0UQ0GRC7_2CdCicqf-_rpBGwG4AOWY89gXQtN_YJzw,15749
|
|
220
220
|
localstack/services/apigateway/next_gen/execute_api/handlers/integration_response.py,sha256=bBhk6Nokk16DX_nCDyzsI2__4E-TUmBZ_Lzp4MliWnk,13640
|
|
221
|
-
localstack/services/apigateway/next_gen/execute_api/handlers/method_request.py,sha256=
|
|
221
|
+
localstack/services/apigateway/next_gen/execute_api/handlers/method_request.py,sha256=x3IAQbq6xKj64QuRq9lujkehB0i_lbmLoI2Pv9mUeCY,5806
|
|
222
222
|
localstack/services/apigateway/next_gen/execute_api/handlers/method_response.py,sha256=bgBNX1r9ZoZywh9bfx6XuYq5_GvYQGmhcdx-nhMKlGg,3264
|
|
223
223
|
localstack/services/apigateway/next_gen/execute_api/handlers/parse.py,sha256=KOpsPh7p3FoQhPDLbnWTZcIN_ENv3HoNzNCTj3hj8W8,8671
|
|
224
224
|
localstack/services/apigateway/next_gen/execute_api/handlers/resource_router.py,sha256=MBtNFGcu9_0_EkCphlBMGDi34jUN9800hJ6U7-nkiLs,6549
|
|
@@ -289,7 +289,7 @@ localstack/services/cloudformation/deploy.html,sha256=g_t0nI5Z44bsPYFynbisF3GLl8
|
|
|
289
289
|
localstack/services/cloudformation/deploy_ui.py,sha256=w5v_pfn62TG72JiwRibmfCKXFiZKB4qPxxWfXgxscDE,1671
|
|
290
290
|
localstack/services/cloudformation/deployment_utils.py,sha256=YCWYGAKjZlmjKC7VgtN1UvUSuh8RSht_aWfCkvVAFSQ,10182
|
|
291
291
|
localstack/services/cloudformation/plugins.py,sha256=8E1i9U65RnjZJoXz214ceV8OXcnpHNU44unK3raXkWs,336
|
|
292
|
-
localstack/services/cloudformation/provider.py,sha256=
|
|
292
|
+
localstack/services/cloudformation/provider.py,sha256=0pHRDkcRaBSowvIIdtF92ESp0AP0KBd3DcfW0mwHLPA,53035
|
|
293
293
|
localstack/services/cloudformation/provider_utils.py,sha256=QVIJPnaoY8BaQPQvfZUOgf-AYNAwVVH9hf9ZCtpCPLM,10054
|
|
294
294
|
localstack/services/cloudformation/resource_provider.py,sha256=ORwN3rRow6XvxN6zZnly7FdzW75wsfEKapPx0yZM89g,23161
|
|
295
295
|
localstack/services/cloudformation/service_models.py,sha256=uo2sr2PIazsdE0-PfdoaaG9BEbKpjPP8ChCIJfX0pm8,5186
|
|
@@ -303,7 +303,7 @@ localstack/services/cloudformation/engine/policy_loader.py,sha256=MjnNEzPTVl9HeB
|
|
|
303
303
|
localstack/services/cloudformation/engine/quirks.py,sha256=5Cb-prQ1vEeqo532CYrUvZ-WAGggqH3fvrJy2C8R8HM,4247
|
|
304
304
|
localstack/services/cloudformation/engine/resource_ordering.py,sha256=m6jr17h61y4kKzGc3l07qe-daDyLgwhsnAyvF6Wv2xg,4066
|
|
305
305
|
localstack/services/cloudformation/engine/schema.py,sha256=MSI4Pi_06u4BNdynToOLohx3jM4b6esGJl77xRdZ73s,494
|
|
306
|
-
localstack/services/cloudformation/engine/template_deployer.py,sha256=
|
|
306
|
+
localstack/services/cloudformation/engine/template_deployer.py,sha256=gTsMmZ2q5ROPyJaPP-efRNhxrFfsGJU2cWuRQvc9kpQ,64451
|
|
307
307
|
localstack/services/cloudformation/engine/template_preparer.py,sha256=aRSBHDTzF3dkTjJUkaVtDRd21LXpgq5jW6ml7jIIVCM,1802
|
|
308
308
|
localstack/services/cloudformation/engine/template_utils.py,sha256=DNmyAia9Z-C5rvUEaw6mzc0ycLUqwbUcYtc67fwMrdw,20411
|
|
309
309
|
localstack/services/cloudformation/engine/transformers.py,sha256=tH0xOUmOXq3dAYKj2MieQ9F8szNcNxAmaemHIIyMDcY,18434
|
|
@@ -341,7 +341,7 @@ localstack/services/cloudformation/v2/provider.py,sha256=mDW15iOnkb91Vqos0Kjueo2
|
|
|
341
341
|
localstack/services/cloudformation/v2/types.py,sha256=YOKERHmgRjK3RCjqKwQ3ZxZKfa0D-Uwjt2W9GaFDkiM,864
|
|
342
342
|
localstack/services/cloudformation/v2/utils.py,sha256=xy4Lcp4X8XGJ0OKfnsE7pnfMcFrtIH0Chw35qwjhZuw,148
|
|
343
343
|
localstack/services/cloudwatch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
|
-
localstack/services/cloudwatch/alarm_scheduler.py,sha256=
|
|
344
|
+
localstack/services/cloudwatch/alarm_scheduler.py,sha256=HPzQgZvDVXIXaEkjJ39L-jBwlOi_-ZlAyJ3D_suWngk,15761
|
|
345
345
|
localstack/services/cloudwatch/cloudwatch_database_helper.py,sha256=IK_MgxG3xTkpKbBe-Buv_6wUuHEc3MGQOqMAqHoEOzk,17270
|
|
346
346
|
localstack/services/cloudwatch/models.py,sha256=y3JPWSZcDofSbkr2orW9pWD1cC4meP7mQ4YbYkVfGx8,3957
|
|
347
347
|
localstack/services/cloudwatch/provider.py,sha256=diPAcNAbPSFfoz6hFkQpOvjXjlF28Wx39rDTbFoB8aI,19180
|
|
@@ -360,7 +360,7 @@ localstack/services/dynamodb/models.py,sha256=HVCbm5TbF5QJ-OLs2lCRL0vAr5Yj5buvhl
|
|
|
360
360
|
localstack/services/dynamodb/packages.py,sha256=ZH805zI1ZLRb4-rKgu9RTArdvbEYpdEizSXm_fGhOdo,4022
|
|
361
361
|
localstack/services/dynamodb/plugins.py,sha256=DraVGanzrytMltMMrDTg8CiDUosbnIuujjrT25Y7H3E,234
|
|
362
362
|
localstack/services/dynamodb/provider.py,sha256=s_VjdT5J7UHxRoayJQNN_RgNK2kKf4K-PgTDIswET7M,97746
|
|
363
|
-
localstack/services/dynamodb/server.py,sha256=
|
|
363
|
+
localstack/services/dynamodb/server.py,sha256=lk7-XOwdCh8wtkyaGAUu7V5q9aZLMFJPNmJWzoom10g,8357
|
|
364
364
|
localstack/services/dynamodb/utils.py,sha256=_ww13-O7FEGLADvZNI4rt9AW8VTxo1jCBSRl7QMAt6g,14829
|
|
365
365
|
localstack/services/dynamodb/resource_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
366
366
|
localstack/services/dynamodb/resource_providers/aws_dynamodb_globaltable.py,sha256=2-pz2IEEweSE2Fu2hAqrWtrdeHSwYs1cy_yB7ZdMUnM,14478
|
|
@@ -478,7 +478,7 @@ localstack/services/events/v1/provider.py,sha256=Ne9cRIll_cDmt0ttSQgS1KDU-C2-ray
|
|
|
478
478
|
localstack/services/firehose/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
479
|
localstack/services/firehose/mappers.py,sha256=5JjiKl0-QT7GU6PzDaSMaF8ZNctl7-_N2WONZ4bDM_M,6844
|
|
480
480
|
localstack/services/firehose/models.py,sha256=mXj6mvNK45LH0XqbDAabJZXZo_lA8-gX67QL88k5WYk,595
|
|
481
|
-
localstack/services/firehose/provider.py,sha256=
|
|
481
|
+
localstack/services/firehose/provider.py,sha256=SXJxaoiZlofNi-6Wi0nlb61d_PSJ2lMOwdpGGMEp5Hk,41714
|
|
482
482
|
localstack/services/iam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
483
483
|
localstack/services/iam/iam_patches.py,sha256=Gh2twoTyDJWREVBrbxSikBecdDckiHZgZeHwerCMNek,4600
|
|
484
484
|
localstack/services/iam/provider.py,sha256=iBHEHTWD-cqePyFF71mvxzni00AFV9QH0WdhKjFyYdk,30022
|
|
@@ -551,7 +551,7 @@ localstack/services/lambda_/ldm.py,sha256=a5EJ5BFQbImAOgCcLBY20R-wQPL0UuLqG5mNhn
|
|
|
551
551
|
localstack/services/lambda_/networking.py,sha256=H9fq1aYThqXZkOi0fCoJrHI9rm19qgUVxFe3vYloN08,938
|
|
552
552
|
localstack/services/lambda_/packages.py,sha256=6Hd1TeD5b1Tg_3AO3tYay3-fNiAC_UBRFTyW-_k2AnA,3941
|
|
553
553
|
localstack/services/lambda_/plugins.py,sha256=eZsdzZqgEG9EZpd3W8TUdoydTpPXl6JBzJgDx_qeFUU,1275
|
|
554
|
-
localstack/services/lambda_/provider.py,sha256=
|
|
554
|
+
localstack/services/lambda_/provider.py,sha256=qoAdHjJzFw9rXwGpSc29Hulr1OXRtpwgXMj3aaYOO-8,190331
|
|
555
555
|
localstack/services/lambda_/provider_utils.py,sha256=-vM__pt5qIVhTiPA05N2P0P_pQpwyZggyRuL_QvsQHs,3210
|
|
556
556
|
localstack/services/lambda_/runtimes.py,sha256=CUWjucs33wY3W3FHB23Oq5xJRM1vw-AgsIxWID63ss8,8300
|
|
557
557
|
localstack/services/lambda_/urlrouter.py,sha256=LNIXNbAKbGdkbfZsKCVrbdtkc0uZzqdYjLpF1jAoCIA,8960
|
|
@@ -585,7 +585,7 @@ localstack/services/lambda_/invocation/execution_environment.py,sha256=v5drFAa1B
|
|
|
585
585
|
localstack/services/lambda_/invocation/executor_endpoint.py,sha256=v_tsvn4HqbjtO2vhYUq7TxVzb7zNgMF2snxntjgBqrk,11018
|
|
586
586
|
localstack/services/lambda_/invocation/internal_sqs_queue.py,sha256=cci8K5GxvW_Sg0EhKMQvCglklqSs4MLnyWzELEQpU5k,7341
|
|
587
587
|
localstack/services/lambda_/invocation/lambda_models.py,sha256=CCSWgFETM0dpu9QTgPNRSnVWPqQWIFrrEjDSC0cxO10,19771
|
|
588
|
-
localstack/services/lambda_/invocation/lambda_service.py,sha256=
|
|
588
|
+
localstack/services/lambda_/invocation/lambda_service.py,sha256=q274qpHs2OBIR4PlLEzgeaQ-rBhT-Tl0BYgNVyNVs8o,30705
|
|
589
589
|
localstack/services/lambda_/invocation/logs.py,sha256=TD2oSyKAizn5_KHbnav1Rh_hITKxLV8RSrHR7lYgOUM,3798
|
|
590
590
|
localstack/services/lambda_/invocation/metrics.py,sha256=IOzQguI3v8xl47FP6jMZYL3g9k-NIZEkvldAImdXljQ,1134
|
|
591
591
|
localstack/services/lambda_/invocation/models.py,sha256=22B5_QfiDj2Imjwhf9u7PGDWevQpn83AE84fpBRA6Ts,1084
|
|
@@ -644,7 +644,7 @@ localstack/services/opensearch/cluster_manager.py,sha256=YF1SFcM05SS0OPVXI1Z1Nyn
|
|
|
644
644
|
localstack/services/opensearch/models.py,sha256=lk68jGwZPGxyUgvc2qkLZHsLT_-ixs5CpLT-kNq_4YM,606
|
|
645
645
|
localstack/services/opensearch/packages.py,sha256=j_nvACYdFuLe0km7EqEHRG6fY0NLFxgTnGUIH6tY-og,16143
|
|
646
646
|
localstack/services/opensearch/plugins.py,sha256=uLySso81LpRvM7oC68nfOPXUsZ27JRIxpwoya4Dw-48,222
|
|
647
|
-
localstack/services/opensearch/provider.py,sha256=
|
|
647
|
+
localstack/services/opensearch/provider.py,sha256=2a37THYb6A0iMzhu_FNGGSHvYSZpdARLTWY6FezekOg,28033
|
|
648
648
|
localstack/services/opensearch/versions.py,sha256=LHJqK6e9D1Y9oujlJIHdwhYz94m_IgHt-lAszokQ7AE,10557
|
|
649
649
|
localstack/services/opensearch/resource_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
650
650
|
localstack/services/opensearch/resource_providers/aws_elasticsearch_domain.py,sha256=dpfjJM4-SFEMVnEEP54nTWg0szAHsacHTY43lOxZH9k,6784
|
|
@@ -688,12 +688,12 @@ localstack/services/s3/constants.py,sha256=8Pmp5K_EK4OUQ5GChIR7n9Rzf3iHRp2ecKSAP
|
|
|
688
688
|
localstack/services/s3/cors.py,sha256=8t9Ghr8G05d0JHocIYCBvx-K_t-59zJ9KqIdrboZTY0,13530
|
|
689
689
|
localstack/services/s3/exceptions.py,sha256=zQ6p5a1ROqI79gxTpTa-wktKu41d6cOdbgl24FAoN-A,1942
|
|
690
690
|
localstack/services/s3/models.py,sha256=uu1KF4WpR5NHXjd5l3mRFF2Sz_95_hd-OpJ62qrSttM,30794
|
|
691
|
-
localstack/services/s3/notifications.py,sha256=
|
|
691
|
+
localstack/services/s3/notifications.py,sha256=3N2pnxZyQqIB41c-VPHOwlus9w7bvM1RrjXtWs6FMco,32581
|
|
692
692
|
localstack/services/s3/presigned_url.py,sha256=Tfb49Ze7wphO67kXig8tvJ0JjaBlASUPwe3uZbL5c7I,39529
|
|
693
693
|
localstack/services/s3/provider.py,sha256=3L-S5dzhi4ITL6KHvv81iTI7htCdZa8WG6lbznAW7MQ,198140
|
|
694
694
|
localstack/services/s3/utils.py,sha256=GlLoLe2cIZtauCX2fwRDKVr1PVVavtvY7WrrftIFmAs,39138
|
|
695
695
|
localstack/services/s3/validation.py,sha256=oj9Ezh4YuzMIgpboOG8yUKtFYQIIc2XwJqHF6cEsbu0,19966
|
|
696
|
-
localstack/services/s3/website_hosting.py,sha256=
|
|
696
|
+
localstack/services/s3/website_hosting.py,sha256=I4cE7omiN7EBQjdlvueSb_DaD8cwEZxeh7K-H_We30k,16672
|
|
697
697
|
localstack/services/s3/resource_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
698
698
|
localstack/services/s3/resource_providers/aws_s3_bucket.py,sha256=usTd16U_pw5MG3DBCLNNFQfwWiW5iAPvsT-OGQRjm9k,22770
|
|
699
699
|
localstack/services/s3/resource_providers/aws_s3_bucket.schema.json,sha256=2I5RNOI03clyzounhkVgLkdSgRSP4FWZTVMT1FD_m4c,52629
|
|
@@ -733,7 +733,7 @@ localstack/services/secretsmanager/resource_providers/aws_secretsmanager_secrett
|
|
|
733
733
|
localstack/services/secretsmanager/resource_providers/aws_secretsmanager_secrettargetattachment_plugin.py,sha256=PZcpUwLUmkp4d_s_rHWnRRtCpQFwIMrMaVlRpyYvb-8,648
|
|
734
734
|
localstack/services/ses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
735
735
|
localstack/services/ses/models.py,sha256=JWBQNutfTFSCNZFHteAckqwDLy5W6Ctz5kmRcPBENMY,578
|
|
736
|
-
localstack/services/ses/provider.py,sha256=
|
|
736
|
+
localstack/services/ses/provider.py,sha256=_0FspFr7e2odWoeaW1BPyhkHTLi39eoY5bknY9qT2PQ,25380
|
|
737
737
|
localstack/services/ses/resource_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
738
738
|
localstack/services/ses/resource_providers/aws_ses_emailidentity.py,sha256=dqFQ9sJL8ecyP-5XgYrFQOe_NAsFF7GbgTbQ6JtPZHs,5108
|
|
739
739
|
localstack/services/ses/resource_providers/aws_ses_emailidentity.schema.json,sha256=V2e0GQp6xp8kjmyaBe-uTVl3_Za3DDrKXoDyA5ZCcTI,6093
|
|
@@ -742,11 +742,11 @@ localstack/services/sns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
742
742
|
localstack/services/sns/analytics.py,sha256=ecVRQ1l722ppZiKPny3m3rbNM0SKxO90rdyYWE5SI78,379
|
|
743
743
|
localstack/services/sns/certificate.py,sha256=g30Pi4CMu9u4hFTGUPua6JG5f-kOFmRIJdDu0RpIj7I,1882
|
|
744
744
|
localstack/services/sns/constants.py,sha256=iAQLU6qVkA6DumYytm3pHkNLzjh4BubXHIHBK91Ix_M,1216
|
|
745
|
-
localstack/services/sns/executor.py,sha256=
|
|
745
|
+
localstack/services/sns/executor.py,sha256=VRaoalDYwo-K_1iDAMkeNZ6uXHo_WtGv4qPgNMxmAAk,4134
|
|
746
746
|
localstack/services/sns/filter.py,sha256=aHkd3oF2RTvuHiFZvVv1dD2qVpLUQkAeU2hJBQnW4xU,22990
|
|
747
747
|
localstack/services/sns/models.py,sha256=X0CMwm04vwIIK2Kj9ooP_2van1cA5fMvualDiq6guf4,6888
|
|
748
748
|
localstack/services/sns/provider.py,sha256=DYhjkhALUnq-5dVRagjgGChd5mbJgeMFQIwLtES1pL4,59339
|
|
749
|
-
localstack/services/sns/publisher.py,sha256=
|
|
749
|
+
localstack/services/sns/publisher.py,sha256=N2G66DScUTV8qV9C5B9uu-Kr1Fm9s1IxMqSuaZxOpCI,59590
|
|
750
750
|
localstack/services/sns/resource_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
751
751
|
localstack/services/sns/resource_providers/aws_sns_subscription.py,sha256=P5GLQV8MaZTEG173SmK2UsOo6Ofnd9S2ET9XIhSQvTI,5283
|
|
752
752
|
localstack/services/sns/resource_providers/aws_sns_subscription.schema.json,sha256=3Ro_73uHocAWgjsekaflOty3RzzVlO5Ch1I_Tmua71E,1059
|
|
@@ -761,8 +761,8 @@ localstack/services/sqs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
761
761
|
localstack/services/sqs/constants.py,sha256=8zZY2Y4ndotcUKlWXaNhEJjQEOwfp-jAHRzfne2hcgA,2825
|
|
762
762
|
localstack/services/sqs/exceptions.py,sha256=aMmTD1Mex37NKndt6_hpj_d0JAZeN3eX0g7r8BlNO7M,570
|
|
763
763
|
localstack/services/sqs/models.py,sha256=SCVM7-XJJDAmWRK-T8mz2IdFvK8lbDcDQbBke3KSdWs,50469
|
|
764
|
-
localstack/services/sqs/provider.py,sha256=
|
|
765
|
-
localstack/services/sqs/query_api.py,sha256=
|
|
764
|
+
localstack/services/sqs/provider.py,sha256=piLNLFCdlddL5x1OP8HIxUpRAKQ9njIjLBA8Yi7evik,76455
|
|
765
|
+
localstack/services/sqs/query_api.py,sha256=cTNoJ3p1kXfBCmZ9z9kObVf6ubNbR826fer0VZWY9-A,8538
|
|
766
766
|
localstack/services/sqs/queue.py,sha256=Y5lVjrv71WTDU75VevTOKHSkfVzF1k_j1X0AOZ0-Xz4,1730
|
|
767
767
|
localstack/services/sqs/utils.py,sha256=_s_SC5pI6zZwOcf5PqyMoAPbSkCMi1kOoqF-F5-MgG4,6707
|
|
768
768
|
localstack/services/sqs/resource_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1125,7 +1125,7 @@ localstack/services/stepfunctions/asl/utils/json_path.py,sha256=OCUalPcKgP4I-qiS
|
|
|
1125
1125
|
localstack/services/stepfunctions/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1126
1126
|
localstack/services/stepfunctions/backend/activity.py,sha256=3lODhDKAMYBWCNu83Ld-noxgSDHpTcylUtwK70EXMPI,1346
|
|
1127
1127
|
localstack/services/stepfunctions/backend/alias.py,sha256=gd4TV3OywrMD_edKs2yZds8GDjz5fONUEHO-k15Tnak,4527
|
|
1128
|
-
localstack/services/stepfunctions/backend/execution.py,sha256=
|
|
1128
|
+
localstack/services/stepfunctions/backend/execution.py,sha256=T2-9koMBiYqPDFySf2WNxTCWnNt09ruOJh45oDNSUjs,16827
|
|
1129
1129
|
localstack/services/stepfunctions/backend/execution_worker.py,sha256=SHtLrfRCHNopmpuv31HHbZXCsaau4mE-xNa1rRB6ASM,5159
|
|
1130
1130
|
localstack/services/stepfunctions/backend/execution_worker_comm.py,sha256=61yq2i_KAPFZj-f6kd5TETR0VT2xkOLmaOUkwxnuIvw,387
|
|
1131
1131
|
localstack/services/stepfunctions/backend/state_machine.py,sha256=Beg86W6-p8Kg9ZvEMsnPOSSpyfNMY_6CV-gaAUNpupU,9473
|
|
@@ -1154,7 +1154,7 @@ localstack/services/transcribe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
1154
1154
|
localstack/services/transcribe/models.py,sha256=7gbIhel8jlEfyjaJwoKnJ-YwJIUrVJxtMCVWVyjJQEU,404
|
|
1155
1155
|
localstack/services/transcribe/packages.py,sha256=X1WhKDLvvRdbW8K4XyeVBHDoKh7wh8nee69OVx97v34,691
|
|
1156
1156
|
localstack/services/transcribe/plugins.py,sha256=LxtNr2H09k9yU2-brBkGhAp7NkOJ-3FB1PBh95myzxA,282
|
|
1157
|
-
localstack/services/transcribe/provider.py,sha256=
|
|
1157
|
+
localstack/services/transcribe/provider.py,sha256=xVi1yCP1yat06WeaS47VAwq1gnZTA1RyKThrlcuAGF0,16140
|
|
1158
1158
|
localstack/state/__init__.py,sha256=NMe0_TFQJm3Oo39iHk5OnqCHnEQYchXPHupUGTHrcqs,307
|
|
1159
1159
|
localstack/state/core.py,sha256=J8gCieHH-By0CFUmeIud4BSJxna2Q_cElmzVe2dxqJo,4196
|
|
1160
1160
|
localstack/state/inspect.py,sha256=lns1WDAA3j-8GuWnu0rMwJGA4zs_AzA4qZcN4QgbId0,4214
|
|
@@ -1222,12 +1222,12 @@ localstack/utils/docker_utils.py,sha256=gN1SLrQ76nZel6upyxx_sEcI97v_18XJLI8k36WJ
|
|
|
1222
1222
|
localstack/utils/event_matcher.py,sha256=_DtCZI0ba4Zcit_-TwCUSIG_NXiYgIjmWbuKuMrsZkk,2024
|
|
1223
1223
|
localstack/utils/files.py,sha256=5fdQLiLzh2ovwDfjr-K80IaPojzghPHhu4E4jxlsb0Q,9545
|
|
1224
1224
|
localstack/utils/functions.py,sha256=02gBo3o4cii3W5jztgbn7DN9OjipG3DydjU1DVffJlU,2968
|
|
1225
|
-
localstack/utils/http.py,sha256=
|
|
1225
|
+
localstack/utils/http.py,sha256=3tyS2bb0cU8tLQKIaTvDqUqeYfyVBl_-NJKWA6Wdjwg,11742
|
|
1226
1226
|
localstack/utils/id_generator.py,sha256=ncGLyjA8QOy-2n16bBf3B_oTI1Kck1-RJcTLcJEvQHA,1697
|
|
1227
1227
|
localstack/utils/iputils.py,sha256=L89jtcvs5ugeAiBvBXKSqnmm2E_huMCIitCfg2AdE5s,2111
|
|
1228
1228
|
localstack/utils/java.py,sha256=3a5lN_j6wOxAR_OVAMtyPkX4_FDRbl5usqGgabQRs3k,3099
|
|
1229
1229
|
localstack/utils/json.py,sha256=A-b0MnDd-udqNGA7Cy4gsK9YjJF92ZVCy0cc4z4TUSY,6310
|
|
1230
|
-
localstack/utils/net.py,sha256=
|
|
1230
|
+
localstack/utils/net.py,sha256=f7ofcbwSdW5NeVzp8d1pLhjZQuptPyov9s-0nQ-U4dk,19924
|
|
1231
1231
|
localstack/utils/no_exit_argument_parser.py,sha256=EQF2fl3Y7_l3-BN9JYJjeUE_zfjWFtWGSdZYzjg98Rc,812
|
|
1232
1232
|
localstack/utils/numbers.py,sha256=vdFVDa4Wn93Hoqi5Hh5dak8pi1wLPSjs3IUbtODBCbE,1288
|
|
1233
1233
|
localstack/utils/objects.py,sha256=gzVkPvh-nhQrcuJ8sY5__C7Mj9EOr654ZmCHE9CJwQQ,7241
|
|
@@ -1252,7 +1252,7 @@ localstack/utils/analytics/cli.py,sha256=sC2AGovCMzFXtXpYfAwwi9UtZWRXyeuNC8cE1bM
|
|
|
1252
1252
|
localstack/utils/analytics/client.py,sha256=eJqnDSsO1LaRX245kB2o4G-GYilkyZK1c5tEsYtwd_E,3413
|
|
1253
1253
|
localstack/utils/analytics/events.py,sha256=hnWUzQzpe4FDsyWTblAzroxPUUsJHcwTKf-htOZ3Uh4,576
|
|
1254
1254
|
localstack/utils/analytics/logger.py,sha256=-sA_zjptY7o2kOXP2sDduQPzfNwULYIRnoqwKGgsg2Q,1397
|
|
1255
|
-
localstack/utils/analytics/metadata.py,sha256=
|
|
1255
|
+
localstack/utils/analytics/metadata.py,sha256=0bgzwxXaIAo9YoS1TIK99Js5qN-GgUxSD6V7BsDjmrk,7224
|
|
1256
1256
|
localstack/utils/analytics/publisher.py,sha256=DWYvIuvRSTOIt9vG70uPSNtKwT2CNAQe_cHx8i40NZM,8623
|
|
1257
1257
|
localstack/utils/analytics/service_request_aggregator.py,sha256=4JS17F9aQVaLHr5s1cbb3UcrZtwl3-TAcBYswcPMI4U,3914
|
|
1258
1258
|
localstack/utils/analytics/metrics/__init__.py,sha256=APJa7ulgGseR4dl4EPAhKOEuXxxNiP0f_MwLbNmgc4Y,233
|
|
@@ -1286,13 +1286,13 @@ localstack/utils/server/tcp_proxy.py,sha256=rR6d5jR0ozDvIlpHiqW0cfyY9a2fRGdOzyA8
|
|
|
1286
1286
|
localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1287
1287
|
localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
|
|
1288
1288
|
localstack/utils/xray/traceid.py,sha256=SQSsMV2rhbTNK6ceIoozZYuGU7Fg687EXcgqxoDl1Fw,1106
|
|
1289
|
-
localstack_core-4.7.1.
|
|
1290
|
-
localstack_core-4.7.1.
|
|
1291
|
-
localstack_core-4.7.1.
|
|
1292
|
-
localstack_core-4.7.1.
|
|
1293
|
-
localstack_core-4.7.1.
|
|
1294
|
-
localstack_core-4.7.1.
|
|
1295
|
-
localstack_core-4.7.1.
|
|
1296
|
-
localstack_core-4.7.1.
|
|
1297
|
-
localstack_core-4.7.1.
|
|
1298
|
-
localstack_core-4.7.1.
|
|
1289
|
+
localstack_core-4.7.1.dev50.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
|
|
1290
|
+
localstack_core-4.7.1.dev50.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
|
|
1291
|
+
localstack_core-4.7.1.dev50.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
|
|
1292
|
+
localstack_core-4.7.1.dev50.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
|
|
1293
|
+
localstack_core-4.7.1.dev50.dist-info/METADATA,sha256=4vIo7cJ2JdXcuhgMaTcqCUnBOhcRv_K582jEyDYBRsQ,5570
|
|
1294
|
+
localstack_core-4.7.1.dev50.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1295
|
+
localstack_core-4.7.1.dev50.dist-info/entry_points.txt,sha256=-GFtw80qM_1GQIDUcyqXojJvnqvP_8lK1Vc-M9ShaJE,20668
|
|
1296
|
+
localstack_core-4.7.1.dev50.dist-info/plux.json,sha256=jHkmx1K4iq_GWGbILQIXDqkdsweifR5NXfzX1HU_MNw,20891
|
|
1297
|
+
localstack_core-4.7.1.dev50.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
|
|
1298
|
+
localstack_core-4.7.1.dev50.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"localstack.cloudformation.resource_providers": ["AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "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::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "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::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "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::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "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::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "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::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin"], "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", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server", "_patch_botocore_endpoint_in_memory=localstack.aws.client:_patch_botocore_endpoint_in_memory", "_patch_botocore_json_parser=localstack.aws.client:_patch_botocore_json_parser", "_patch_cbor2=localstack.aws.client:_patch_cbor2", "eager_load_services=localstack.services.plugins:eager_load_services", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui", "conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "init_response_mutation_handler=localstack.aws.handlers.response:init_response_mutation_handler", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info"], "localstack.packages": ["kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package", "vosk/community=localstack.services.transcribe.plugins:vosk_package", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package", "lambda-java-libs/community=localstack.services.lambda_.plugins:lambda_java_libs", "lambda-runtime/community=localstack.services.lambda_.plugins:lambda_runtime_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "terraform/community=localstack.packages.plugins:terraform_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_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.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.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.init.runner": ["py=localstack.runtime.init:PythonScriptRunner", "sh=localstack.runtime.init:ShellScriptRunner"], "localstack.hooks.on_infra_ready": ["_run_init_scripts_on_ready=localstack.runtime.init:_run_init_scripts_on_ready"], "localstack.runtime.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.runtime.components": ["aws=localstack.aws.components:AwsComponents"]}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"localstack.cloudformation.resource_providers": ["AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "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::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "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::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "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::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "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::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin"], "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", "remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints", "publish_metrics=localstack.utils.analytics.metrics.publisher:publish_metrics", "stop_server=localstack.dns.plugins:stop_server"], "localstack.hooks.on_infra_start": ["_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "eager_load_services=localstack.services.plugins:eager_load_services", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "init_response_mutation_handler=localstack.aws.handlers.response:init_response_mutation_handler", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration", "_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", "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", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui"], "localstack.aws.provider": ["acm:default=localstack.services.providers:acm", "apigateway:default=localstack.services.providers:apigateway", "apigateway:legacy=localstack.services.providers:apigateway_legacy", "apigateway:next_gen=localstack.services.providers:apigateway_next_gen", "config:default=localstack.services.providers:awsconfig", "cloudformation:default=localstack.services.providers:cloudformation", "cloudformation:engine-v2=localstack.services.providers:cloudformation_v2", "cloudwatch:default=localstack.services.providers:cloudwatch", "cloudwatch:v1=localstack.services.providers:cloudwatch_v1", "cloudwatch:v2=localstack.services.providers:cloudwatch_v2", "dynamodb:default=localstack.services.providers:dynamodb", "dynamodb:v2=localstack.services.providers:dynamodb_v2", "dynamodbstreams:default=localstack.services.providers:dynamodbstreams", "dynamodbstreams:v2=localstack.services.providers:dynamodbstreams_v2", "ec2:default=localstack.services.providers:ec2", "es:default=localstack.services.providers:es", "events:default=localstack.services.providers:events", "events:legacy=localstack.services.providers:events_legacy", "events:v1=localstack.services.providers:events_v1", "events:v2=localstack.services.providers:events_v2", "firehose:default=localstack.services.providers:firehose", "iam:default=localstack.services.providers:iam", "kinesis:default=localstack.services.providers:kinesis", "kms:default=localstack.services.providers:kms", "lambda:default=localstack.services.providers:lambda_", "lambda:asf=localstack.services.providers:lambda_asf", "lambda:v2=localstack.services.providers:lambda_v2", "logs:default=localstack.services.providers:logs", "opensearch:default=localstack.services.providers:opensearch", "redshift:default=localstack.services.providers:redshift", "resource-groups:default=localstack.services.providers:resource_groups", "resourcegroupstaggingapi:default=localstack.services.providers:resourcegroupstaggingapi", "route53:default=localstack.services.providers:route53", "route53resolver:default=localstack.services.providers:route53resolver", "s3:default=localstack.services.providers:s3", "s3control:default=localstack.services.providers:s3control", "scheduler:default=localstack.services.providers:scheduler", "secretsmanager:default=localstack.services.providers:secretsmanager", "ses:default=localstack.services.providers:ses", "sns:default=localstack.services.providers:sns", "sqs:default=localstack.services.providers:sqs", "ssm:default=localstack.services.providers:ssm", "stepfunctions:default=localstack.services.providers:stepfunctions", "stepfunctions:v2=localstack.services.providers:stepfunctions_v2", "sts:default=localstack.services.providers:sts", "support:default=localstack.services.providers:support", "swf:default=localstack.services.providers:swf", "transcribe:default=localstack.services.providers:transcribe"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.packages": ["vosk/community=localstack.services.transcribe.plugins:vosk_package", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package", "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", "lambda-java-libs/community=localstack.services.lambda_.plugins:lambda_java_libs", "lambda-runtime/community=localstack.services.lambda_.plugins:lambda_runtime_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_package", "kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "localstack.hooks.configure_localstack_container": ["_mount_machine_file=localstack.utils.analytics.metadata:_mount_machine_file"], "localstack.hooks.prepare_host": ["prepare_host_machine_id=localstack.utils.analytics.metadata:prepare_host_machine_id"]}
|
|
File without changes
|
{localstack_core-4.7.1.dev49.data → localstack_core-4.7.1.dev50.data}/scripts/localstack-supervisor
RENAMED
|
File without changes
|
{localstack_core-4.7.1.dev49.data → localstack_core-4.7.1.dev50.data}/scripts/localstack.bat
RENAMED
|
File without changes
|
|
File without changes
|
{localstack_core-4.7.1.dev49.dist-info → localstack_core-4.7.1.dev50.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{localstack_core-4.7.1.dev49.dist-info → localstack_core-4.7.1.dev50.dist-info}/licenses/LICENSE.txt
RENAMED
|
File without changes
|
{localstack_core-4.7.1.dev49.dist-info → localstack_core-4.7.1.dev50.dist-info}/top_level.txt
RENAMED
|
File without changes
|