localstack-core 4.7.1.dev56__py3-none-any.whl → 4.7.1.dev58__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.

@@ -8,6 +8,7 @@ ArchivalReason = str
8
8
  AttributeName = str
9
9
  AutoScalingPolicyName = str
10
10
  AutoScalingRoleArn = str
11
+ AvailabilityErrorMessage = str
11
12
  Backfilling = bool
12
13
  BackupArn = str
13
14
  BackupName = str
@@ -61,10 +62,12 @@ PartiQLStatement = str
61
62
  PolicyRevisionId = str
62
63
  PositiveIntegerObject = int
63
64
  ProjectionExpression = str
65
+ Reason = str
64
66
  RecoveryPeriodInDays = int
65
67
  RegionName = str
66
68
  ReplicaStatusDescription = str
67
69
  ReplicaStatusPercentProgress = str
70
+ Resource = str
68
71
  ResourceArnString = str
69
72
  ResourcePolicy = str
70
73
  RestoreInProgress = bool
@@ -169,6 +172,11 @@ class ContributorInsightsAction(StrEnum):
169
172
  DISABLE = "DISABLE"
170
173
 
171
174
 
175
+ class ContributorInsightsMode(StrEnum):
176
+ ACCESSED_AND_THROTTLED_KEYS = "ACCESSED_AND_THROTTLED_KEYS"
177
+ THROTTLED_KEYS = "THROTTLED_KEYS"
178
+
179
+
172
180
  class ContributorInsightsStatus(StrEnum):
173
181
  ENABLING = "ENABLING"
174
182
  ENABLED = "ENABLED"
@@ -509,10 +517,19 @@ class PolicyNotFoundException(ServiceException):
509
517
  status_code: int = 400
510
518
 
511
519
 
520
+ class ThrottlingReason(TypedDict, total=False):
521
+ reason: Optional[Reason]
522
+ resource: Optional[Resource]
523
+
524
+
525
+ ThrottlingReasonList = List[ThrottlingReason]
526
+
527
+
512
528
  class ProvisionedThroughputExceededException(ServiceException):
513
529
  code: str = "ProvisionedThroughputExceededException"
514
530
  sender_fault: bool = False
515
531
  status_code: int = 400
532
+ ThrottlingReasons: Optional[ThrottlingReasonList]
516
533
 
517
534
 
518
535
  class ReplicaAlreadyExistsException(ServiceException):
@@ -537,6 +554,7 @@ class RequestLimitExceeded(ServiceException):
537
554
  code: str = "RequestLimitExceeded"
538
555
  sender_fault: bool = False
539
556
  status_code: int = 400
557
+ ThrottlingReasons: Optional[ThrottlingReasonList]
540
558
 
541
559
 
542
560
  class ResourceInUseException(ServiceException):
@@ -569,6 +587,13 @@ class TableNotFoundException(ServiceException):
569
587
  status_code: int = 400
570
588
 
571
589
 
590
+ class ThrottlingException(ServiceException):
591
+ code: str = "ThrottlingException"
592
+ sender_fault: bool = False
593
+ status_code: int = 400
594
+ throttlingReasons: Optional[ThrottlingReasonList]
595
+
596
+
572
597
  class CancellationReason(TypedDict, total=False):
573
598
  Item: Optional[AttributeMap]
574
599
  Code: Optional[Code]
@@ -981,6 +1006,7 @@ class ContributorInsightsSummary(TypedDict, total=False):
981
1006
  TableName: Optional[TableName]
982
1007
  IndexName: Optional[IndexName]
983
1008
  ContributorInsightsStatus: Optional[ContributorInsightsStatus]
1009
+ ContributorInsightsMode: Optional[ContributorInsightsMode]
984
1010
 
985
1011
 
986
1012
  ContributorInsightsSummaries = List[ContributorInsightsSummary]
@@ -1375,6 +1401,7 @@ class DescribeContributorInsightsOutput(TypedDict, total=False):
1375
1401
  ContributorInsightsStatus: Optional[ContributorInsightsStatus]
1376
1402
  LastUpdateDateTime: Optional[LastUpdateDateTime]
1377
1403
  FailureException: Optional[FailureException]
1404
+ ContributorInsightsMode: Optional[ContributorInsightsMode]
1378
1405
 
1379
1406
 
1380
1407
  class DescribeEndpointsRequest(ServiceRequest):
@@ -2200,12 +2227,14 @@ class UpdateContributorInsightsInput(ServiceRequest):
2200
2227
  TableName: TableArn
2201
2228
  IndexName: Optional[IndexName]
2202
2229
  ContributorInsightsAction: ContributorInsightsAction
2230
+ ContributorInsightsMode: Optional[ContributorInsightsMode]
2203
2231
 
2204
2232
 
2205
2233
  class UpdateContributorInsightsOutput(TypedDict, total=False):
2206
2234
  TableName: Optional[TableName]
2207
2235
  IndexName: Optional[IndexName]
2208
2236
  ContributorInsightsStatus: Optional[ContributorInsightsStatus]
2237
+ ContributorInsightsMode: Optional[ContributorInsightsMode]
2209
2238
 
2210
2239
 
2211
2240
  class UpdateGlobalTableInput(ServiceRequest):
@@ -2858,6 +2887,7 @@ class DynamodbApi:
2858
2887
  table_name: TableArn,
2859
2888
  contributor_insights_action: ContributorInsightsAction,
2860
2889
  index_name: IndexName | None = None,
2890
+ contributor_insights_mode: ContributorInsightsMode | None = None,
2861
2891
  **kwargs,
2862
2892
  ) -> UpdateContributorInsightsOutput:
2863
2893
  raise NotImplementedError
@@ -993,6 +993,9 @@ class Ec2InstanceConnectEndpointState(StrEnum):
993
993
  delete_in_progress = "delete-in-progress"
994
994
  delete_complete = "delete-complete"
995
995
  delete_failed = "delete-failed"
996
+ update_in_progress = "update-in-progress"
997
+ update_complete = "update-complete"
998
+ update_failed = "update-failed"
996
999
 
997
1000
 
998
1001
  class EkPubKeyFormat(StrEnum):
@@ -5110,6 +5113,7 @@ class AssociateRouteServerResult(TypedDict, total=False):
5110
5113
 
5111
5114
  class AssociateRouteTableRequest(ServiceRequest):
5112
5115
  GatewayId: Optional[RouteGatewayId]
5116
+ PublicIpv4Pool: Optional[Ipv4PoolEc2Id]
5113
5117
  DryRun: Optional[Boolean]
5114
5118
  SubnetId: Optional[SubnetId]
5115
5119
  RouteTableId: RouteTableId
@@ -6604,6 +6608,7 @@ class DiskImageDescription(TypedDict, total=False):
6604
6608
 
6605
6609
  class ImportVolumeTaskDetails(TypedDict, total=False):
6606
6610
  AvailabilityZone: Optional[String]
6611
+ AvailabilityZoneId: Optional[String]
6607
6612
  BytesConverted: Optional[Long]
6608
6613
  Description: Optional[String]
6609
6614
  Image: Optional[DiskImageDescription]
@@ -6612,6 +6617,7 @@ class ImportVolumeTaskDetails(TypedDict, total=False):
6612
6617
 
6613
6618
  class ImportInstanceVolumeDetailItem(TypedDict, total=False):
6614
6619
  AvailabilityZone: Optional[String]
6620
+ AvailabilityZoneId: Optional[String]
6615
6621
  BytesConverted: Optional[Long]
6616
6622
  Description: Optional[String]
6617
6623
  Image: Optional[DiskImageDescription]
@@ -6888,9 +6894,10 @@ class CreateCustomerGatewayResult(TypedDict, total=False):
6888
6894
 
6889
6895
 
6890
6896
  class CreateDefaultSubnetRequest(ServiceRequest):
6891
- AvailabilityZone: AvailabilityZoneName
6897
+ AvailabilityZone: Optional[AvailabilityZoneName]
6892
6898
  DryRun: Optional[Boolean]
6893
6899
  Ipv6Native: Optional[Boolean]
6900
+ AvailabilityZoneId: Optional[AvailabilityZoneId]
6894
6901
 
6895
6902
 
6896
6903
  class PrivateDnsNameOptionsOnLaunch(TypedDict, total=False):
@@ -7280,6 +7287,7 @@ FleetBlockDeviceMappingRequestList = List[FleetBlockDeviceMappingRequest]
7280
7287
 
7281
7288
 
7282
7289
  class Placement(TypedDict, total=False):
7290
+ AvailabilityZoneId: Optional[AvailabilityZoneId]
7283
7291
  Affinity: Optional[String]
7284
7292
  GroupName: Optional[PlacementGroupName]
7285
7293
  PartitionNumber: Optional[Integer]
@@ -7453,6 +7461,16 @@ class CreateInstanceConnectEndpointRequest(ServiceRequest):
7453
7461
  IpAddressType: Optional[IpAddressType]
7454
7462
 
7455
7463
 
7464
+ class InstanceConnectEndpointDnsNames(TypedDict, total=False):
7465
+ DnsName: Optional[String]
7466
+ FipsDnsName: Optional[String]
7467
+
7468
+
7469
+ class InstanceConnectEndpointPublicDnsNames(TypedDict, total=False):
7470
+ Ipv4: Optional[InstanceConnectEndpointDnsNames]
7471
+ Dualstack: Optional[InstanceConnectEndpointDnsNames]
7472
+
7473
+
7456
7474
  SecurityGroupIdSet = List[SecurityGroupId]
7457
7475
  NetworkInterfaceIdSet = List[String]
7458
7476
 
@@ -7474,6 +7492,7 @@ class Ec2InstanceConnectEndpoint(TypedDict, total=False):
7474
7492
  SecurityGroupIds: Optional[SecurityGroupIdSet]
7475
7493
  Tags: Optional[TagList]
7476
7494
  IpAddressType: Optional[IpAddressType]
7495
+ PublicDnsNames: Optional[InstanceConnectEndpointPublicDnsNames]
7477
7496
 
7478
7497
 
7479
7498
  class CreateInstanceConnectEndpointResult(TypedDict, total=False):
@@ -7873,6 +7892,7 @@ LaunchTemplateTagSpecificationRequestList = List[LaunchTemplateTagSpecificationR
7873
7892
 
7874
7893
  class LaunchTemplatePlacementRequest(TypedDict, total=False):
7875
7894
  AvailabilityZone: Optional[String]
7895
+ AvailabilityZoneId: Optional[AvailabilityZoneId]
7876
7896
  Affinity: Optional[String]
7877
7897
  GroupName: Optional[PlacementGroupName]
7878
7898
  HostId: Optional[DedicatedHostId]
@@ -8168,6 +8188,7 @@ LaunchTemplateTagSpecificationList = List[LaunchTemplateTagSpecification]
8168
8188
 
8169
8189
  class LaunchTemplatePlacement(TypedDict, total=False):
8170
8190
  AvailabilityZone: Optional[String]
8191
+ AvailabilityZoneId: Optional[AvailabilityZoneId]
8171
8192
  Affinity: Optional[String]
8172
8193
  GroupName: Optional[String]
8173
8194
  HostId: Optional[String]
@@ -9132,6 +9153,7 @@ class RouteTableAssociation(TypedDict, total=False):
9132
9153
  RouteTableId: Optional[String]
9133
9154
  SubnetId: Optional[String]
9134
9155
  GatewayId: Optional[String]
9156
+ PublicIpv4Pool: Optional[String]
9135
9157
  AssociationState: Optional[RouteTableAssociationState]
9136
9158
 
9137
9159
 
@@ -10007,7 +10029,8 @@ class CreateVolumePermissionModifications(TypedDict, total=False):
10007
10029
 
10008
10030
 
10009
10031
  class CreateVolumeRequest(ServiceRequest):
10010
- AvailabilityZone: AvailabilityZoneName
10032
+ AvailabilityZone: Optional[AvailabilityZoneName]
10033
+ AvailabilityZoneId: Optional[AvailabilityZoneId]
10011
10034
  Encrypted: Optional[Boolean]
10012
10035
  Iops: Optional[Integer]
10013
10036
  KmsKeyId: Optional[KmsKeyId]
@@ -10210,6 +10233,7 @@ class ServiceConfiguration(TypedDict, total=False):
10210
10233
  ServiceId: Optional[String]
10211
10234
  ServiceName: Optional[String]
10212
10235
  ServiceState: Optional[ServiceState]
10236
+ AvailabilityZoneIds: Optional[ValueStringList]
10213
10237
  AvailabilityZones: Optional[ValueStringList]
10214
10238
  AcceptanceRequired: Optional[Boolean]
10215
10239
  ManagesVpcEndpoints: Optional[Boolean]
@@ -12877,6 +12901,7 @@ InstanceStatusEventList = List[InstanceStatusEvent]
12877
12901
 
12878
12902
  class InstanceStatus(TypedDict, total=False):
12879
12903
  AvailabilityZone: Optional[String]
12904
+ AvailabilityZoneId: Optional[AvailabilityZoneId]
12880
12905
  OutpostArn: Optional[String]
12881
12906
  Operator: Optional[OperatorResponse]
12882
12907
  Events: Optional[InstanceStatusEventList]
@@ -15149,6 +15174,7 @@ class SpotInstanceRequest(TypedDict, total=False):
15149
15174
  LaunchGroup: Optional[String]
15150
15175
  LaunchSpecification: Optional[LaunchSpecification]
15151
15176
  LaunchedAvailabilityZone: Optional[String]
15177
+ LaunchedAvailabilityZoneId: Optional[String]
15152
15178
  ProductDescription: Optional[RIProductDescription]
15153
15179
  SpotInstanceRequestId: Optional[String]
15154
15180
  SpotPrice: Optional[String]
@@ -15174,6 +15200,7 @@ InstanceTypeList = List[InstanceType]
15174
15200
 
15175
15201
 
15176
15202
  class DescribeSpotPriceHistoryRequest(ServiceRequest):
15203
+ AvailabilityZoneId: Optional[AvailabilityZoneId]
15177
15204
  DryRun: Optional[Boolean]
15178
15205
  StartTime: Optional[DateTime]
15179
15206
  EndTime: Optional[DateTime]
@@ -15187,6 +15214,7 @@ class DescribeSpotPriceHistoryRequest(ServiceRequest):
15187
15214
 
15188
15215
  class SpotPrice(TypedDict, total=False):
15189
15216
  AvailabilityZone: Optional[String]
15217
+ AvailabilityZoneId: Optional[String]
15190
15218
  InstanceType: Optional[InstanceType]
15191
15219
  ProductDescription: Optional[RIProductDescription]
15192
15220
  SpotPrice: Optional[String]
@@ -15889,6 +15917,7 @@ VolumeAttachmentList = List[VolumeAttachment]
15889
15917
 
15890
15918
 
15891
15919
  class Volume(TypedDict, total=False):
15920
+ AvailabilityZoneId: Optional[String]
15892
15921
  OutpostArn: Optional[String]
15893
15922
  Iops: Optional[Integer]
15894
15923
  Tags: Optional[TagList]
@@ -16126,6 +16155,7 @@ class ServiceDetail(TypedDict, total=False):
16126
16155
  ServiceId: Optional[String]
16127
16156
  ServiceType: Optional[ServiceTypeDetailSet]
16128
16157
  ServiceRegion: Optional[String]
16158
+ AvailabilityZoneIds: Optional[ValueStringList]
16129
16159
  AvailabilityZones: Optional[ValueStringList]
16130
16160
  Owner: Optional[String]
16131
16161
  BaseEndpointDnsNames: Optional[ValueStringList]
@@ -18361,8 +18391,9 @@ class ImportSnapshotResult(TypedDict, total=False):
18361
18391
 
18362
18392
 
18363
18393
  class ImportVolumeRequest(ServiceRequest):
18394
+ AvailabilityZoneId: Optional[AvailabilityZoneId]
18364
18395
  DryRun: Optional[Boolean]
18365
- AvailabilityZone: String
18396
+ AvailabilityZone: Optional[String]
18366
18397
  Image: DiskImageDetail
18367
18398
  Description: Optional[String]
18368
18399
  Volume: VolumeDetail
@@ -18761,6 +18792,18 @@ class ModifyInstanceCapacityReservationAttributesResult(TypedDict, total=False):
18761
18792
  Return: Optional[Boolean]
18762
18793
 
18763
18794
 
18795
+ class ModifyInstanceConnectEndpointRequest(ServiceRequest):
18796
+ DryRun: Optional[Boolean]
18797
+ InstanceConnectEndpointId: InstanceConnectEndpointId
18798
+ IpAddressType: Optional[IpAddressType]
18799
+ SecurityGroupIds: Optional[SecurityGroupIdStringListRequest]
18800
+ PreserveClientIp: Optional[Boolean]
18801
+
18802
+
18803
+ class ModifyInstanceConnectEndpointResult(TypedDict, total=False):
18804
+ Return: Optional[Boolean]
18805
+
18806
+
18764
18807
  class ModifyInstanceCpuOptionsRequest(ServiceRequest):
18765
18808
  InstanceId: InstanceId
18766
18809
  CoreCount: Integer
@@ -21108,6 +21151,7 @@ class Ec2Api:
21108
21151
  context: RequestContext,
21109
21152
  route_table_id: RouteTableId,
21110
21153
  gateway_id: RouteGatewayId | None = None,
21154
+ public_ipv4_pool: Ipv4PoolEc2Id | None = None,
21111
21155
  dry_run: Boolean | None = None,
21112
21156
  subnet_id: SubnetId | None = None,
21113
21157
  **kwargs,
@@ -21646,9 +21690,10 @@ class Ec2Api:
21646
21690
  def create_default_subnet(
21647
21691
  self,
21648
21692
  context: RequestContext,
21649
- availability_zone: AvailabilityZoneName,
21693
+ availability_zone: AvailabilityZoneName | None = None,
21650
21694
  dry_run: Boolean | None = None,
21651
21695
  ipv6_native: Boolean | None = None,
21696
+ availability_zone_id: AvailabilityZoneId | None = None,
21652
21697
  **kwargs,
21653
21698
  ) -> CreateDefaultSubnetResult:
21654
21699
  raise NotImplementedError
@@ -22699,7 +22744,8 @@ class Ec2Api:
22699
22744
  def create_volume(
22700
22745
  self,
22701
22746
  context: RequestContext,
22702
- availability_zone: AvailabilityZoneName,
22747
+ availability_zone: AvailabilityZoneName | None = None,
22748
+ availability_zone_id: AvailabilityZoneId | None = None,
22703
22749
  encrypted: Boolean | None = None,
22704
22750
  iops: Integer | None = None,
22705
22751
  kms_key_id: KmsKeyId | None = None,
@@ -25330,6 +25376,7 @@ class Ec2Api:
25330
25376
  def describe_spot_price_history(
25331
25377
  self,
25332
25378
  context: RequestContext,
25379
+ availability_zone_id: AvailabilityZoneId | None = None,
25333
25380
  dry_run: Boolean | None = None,
25334
25381
  start_time: DateTime | None = None,
25335
25382
  end_time: DateTime | None = None,
@@ -27266,10 +27313,11 @@ class Ec2Api:
27266
27313
  def import_volume(
27267
27314
  self,
27268
27315
  context: RequestContext,
27269
- availability_zone: String,
27270
27316
  image: DiskImageDetail,
27271
27317
  volume: VolumeDetail,
27318
+ availability_zone_id: AvailabilityZoneId | None = None,
27272
27319
  dry_run: Boolean | None = None,
27320
+ availability_zone: String | None = None,
27273
27321
  description: String | None = None,
27274
27322
  **kwargs,
27275
27323
  ) -> ImportVolumeResult:
@@ -27521,6 +27569,19 @@ class Ec2Api:
27521
27569
  ) -> ModifyInstanceCapacityReservationAttributesResult:
27522
27570
  raise NotImplementedError
27523
27571
 
27572
+ @handler("ModifyInstanceConnectEndpoint")
27573
+ def modify_instance_connect_endpoint(
27574
+ self,
27575
+ context: RequestContext,
27576
+ instance_connect_endpoint_id: InstanceConnectEndpointId,
27577
+ dry_run: Boolean | None = None,
27578
+ ip_address_type: IpAddressType | None = None,
27579
+ security_group_ids: SecurityGroupIdStringListRequest | None = None,
27580
+ preserve_client_ip: Boolean | None = None,
27581
+ **kwargs,
27582
+ ) -> ModifyInstanceConnectEndpointResult:
27583
+ raise NotImplementedError
27584
+
27524
27585
  @handler("ModifyInstanceCpuOptions")
27525
27586
  def modify_instance_cpu_options(
27526
27587
  self,
@@ -254,6 +254,12 @@ class PiiEntityType(StrEnum):
254
254
  ALL = "ALL"
255
255
 
256
256
 
257
+ class Pronouns(StrEnum):
258
+ HE_HIM = "HE_HIM"
259
+ SHE_HER = "SHE_HER"
260
+ THEY_THEM = "THEY_THEM"
261
+
262
+
257
263
  class RedactionOutput(StrEnum):
258
264
  redacted = "redacted"
259
265
  redacted_and_unredacted = "redacted_and_unredacted"
@@ -736,6 +742,7 @@ class MedicalScribeJob(TypedDict, total=False):
736
742
  Settings: Optional[MedicalScribeSettings]
737
743
  DataAccessRoleArn: Optional[DataAccessRoleArn]
738
744
  ChannelDefinitions: Optional[MedicalScribeChannelDefinitions]
745
+ MedicalScribeContextProvided: Optional[Boolean]
739
746
  Tags: Optional[TagList]
740
747
 
741
748
 
@@ -1097,6 +1104,14 @@ class ListVocabularyFiltersResponse(TypedDict, total=False):
1097
1104
  VocabularyFilters: Optional[VocabularyFilters]
1098
1105
 
1099
1106
 
1107
+ class MedicalScribePatientContext(TypedDict, total=False):
1108
+ Pronouns: Optional[Pronouns]
1109
+
1110
+
1111
+ class MedicalScribeContext(TypedDict, total=False):
1112
+ PatientContext: Optional[MedicalScribePatientContext]
1113
+
1114
+
1100
1115
  class StartCallAnalyticsJobRequest(ServiceRequest):
1101
1116
  CallAnalyticsJobName: CallAnalyticsJobName
1102
1117
  Media: Media
@@ -1122,6 +1137,7 @@ class StartMedicalScribeJobRequest(ServiceRequest):
1122
1137
  Settings: MedicalScribeSettings
1123
1138
  ChannelDefinitions: Optional[MedicalScribeChannelDefinitions]
1124
1139
  Tags: Optional[TagList]
1140
+ MedicalScribeContext: Optional[MedicalScribeContext]
1125
1141
 
1126
1142
 
1127
1143
  class StartMedicalScribeJobResponse(TypedDict, total=False):
@@ -1576,6 +1592,7 @@ class TranscribeApi:
1576
1592
  kms_encryption_context: KMSEncryptionContextMap | None = None,
1577
1593
  channel_definitions: MedicalScribeChannelDefinitions | None = None,
1578
1594
  tags: TagList | None = None,
1595
+ medical_scribe_context: MedicalScribeContext | None = None,
1579
1596
  **kwargs,
1580
1597
  ) -> StartMedicalScribeJobResponse:
1581
1598
  raise NotImplementedError
localstack/version.py CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '4.7.1.dev56'
32
- __version_tuple__ = version_tuple = (4, 7, 1, 'dev56')
31
+ __version__ = version = '4.7.1.dev58'
32
+ __version_tuple__ = version_tuple = (4, 7, 1, 'dev58')
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: localstack-core
3
- Version: 4.7.1.dev56
3
+ Version: 4.7.1.dev58
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
@@ -32,8 +32,8 @@ Requires-Dist: requests>=2.20.0
32
32
  Requires-Dist: semver>=2.10
33
33
  Requires-Dist: tailer>=0.4.1
34
34
  Provides-Extra: base-runtime
35
- Requires-Dist: boto3==1.40.6; extra == "base-runtime"
36
- Requires-Dist: botocore==1.40.6; extra == "base-runtime"
35
+ Requires-Dist: boto3==1.40.11; extra == "base-runtime"
36
+ Requires-Dist: botocore==1.40.11; extra == "base-runtime"
37
37
  Requires-Dist: awscrt!=0.27.1,>=0.13.14; extra == "base-runtime"
38
38
  Requires-Dist: cbor2>=5.5.0; extra == "base-runtime"
39
39
  Requires-Dist: dnspython>=1.16.0; extra == "base-runtime"
@@ -51,7 +51,7 @@ Requires-Dist: xmltodict>=0.13.0; extra == "base-runtime"
51
51
  Requires-Dist: rolo>=0.7; extra == "base-runtime"
52
52
  Provides-Extra: runtime
53
53
  Requires-Dist: localstack-core[base-runtime]; extra == "runtime"
54
- Requires-Dist: awscli==1.42.6; extra == "runtime"
54
+ Requires-Dist: awscli==1.42.11; extra == "runtime"
55
55
  Requires-Dist: airspeed-ext>=0.6.3; extra == "runtime"
56
56
  Requires-Dist: kclpy-ext>=3.0.0; extra == "runtime"
57
57
  Requires-Dist: antlr4-python3-runtime==4.13.2; extra == "runtime"
@@ -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=ve1KfAp4F0YMSVBAXNa_T7QSQL9HKsJKYVZ1H5w9K9Q,719
7
+ localstack/version.py,sha256=83KFXf2nmSDkg0gsCK528JQiYd7lEt4zNvzp2O2HAiQ,719
8
8
  localstack/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  localstack/aws/accounts.py,sha256=102zpGowOxo0S6UGMpfjw14QW7WCLVAGsnFK5xFMLoo,3043
10
10
  localstack/aws/app.py,sha256=n9bJCfJRuMz_gLGAH430c3bIQXgUXeWO5NPfcdL2MV8,5145
@@ -28,9 +28,9 @@ localstack/aws/api/cloudcontrol/__init__.py,sha256=rVF7U2eYowakBDklAocYNjDzLtLNZ
28
28
  localstack/aws/api/cloudformation/__init__.py,sha256=mfvcaZOq9es5-lh9g6HG0USXEuxTVliTtTmGp1nYO10,116815
29
29
  localstack/aws/api/cloudwatch/__init__.py,sha256=eNr0RSd2waAg-KzJIBKzIJOgfCGSBCdc8cP39Ux0bNU,45954
30
30
  localstack/aws/api/config/__init__.py,sha256=6ATQPkUBu3_KSrG2siHjh7e-qZq5MgPBcT0SLBe2lLA,144985
31
- localstack/aws/api/dynamodb/__init__.py,sha256=f5MsqBOtX6HVZpjIelKDkpMY01abSLo5-g70ehNPCG4,93582
31
+ localstack/aws/api/dynamodb/__init__.py,sha256=DrFVVZOiEPM2oidelJvhFlq_KFRkyu8OFTGdMG6eM6M,94576
32
32
  localstack/aws/api/dynamodbstreams/__init__.py,sha256=WUSvC51HIBnpDqDLQjCi2zh1HD1GccwsnpLiqcoftik,7316
33
- localstack/aws/api/ec2/__init__.py,sha256=EKVFnTWR8RXwTbw4_OhTPZJpe-tkh2udJmsEws2v5k4,943702
33
+ localstack/aws/api/ec2/__init__.py,sha256=PUwylWd0kUA8p45KSlAzv7ORDJOtzJ5BK6cYn5f0J5Q,946320
34
34
  localstack/aws/api/es/__init__.py,sha256=QQiin0n_ug9gl_tI6noSFBjdmaL4GVv4EOkvoQyOxrk,64252
35
35
  localstack/aws/api/events/__init__.py,sha256=j0hW_k2AeuMn9-1INuYSg6MUV1JRu5c0XuQb_3OU-Iw,61874
36
36
  localstack/aws/api/firehose/__init__.py,sha256=_lCSkVCQ4Y25EHtAAAmbfOjdVK1PlCkH5XeTGtCZPzk,58579
@@ -58,7 +58,7 @@ localstack/aws/api/stepfunctions/__init__.py,sha256=lilSTCkfnwXbBV7pN4T0CTwKLGz3
58
58
  localstack/aws/api/sts/__init__.py,sha256=8iaRjV6MeZGDWt_lpEi7LDHATqQOL2p97HdPmtnFu9o,10971
59
59
  localstack/aws/api/support/__init__.py,sha256=A9Fbi1xRm_ODLXwMZngSDZ6YHtGNtmQt08m38slQ_AY,16953
60
60
  localstack/aws/api/swf/__init__.py,sha256=3uLsB1QtYW3ONFKOkxQo6_BIotbpEqKLJ3u3bdbVkGo,62047
61
- localstack/aws/api/transcribe/__init__.py,sha256=M75VFMOrFyx32UUWqFgQEoL2my92JxwuO1DIRTv0eAE,49716
61
+ localstack/aws/api/transcribe/__init__.py,sha256=oIh5LgOejT1qCgYu4rH97m0XXKcLoRC5fejlOfJB6w4,50200
62
62
  localstack/aws/data/sqs-query/2012-11-05/README.md,sha256=kCa30EG7duD8naEHFmWNYt-mpPzl3Z5oU2YS5sz_4Mg,1117
63
63
  localstack/aws/data/sqs-query/2012-11-05/service-2.json,sha256=QFuVuRqTC82O-uVvrBf5r6Wk-lRm8oCxgLgWRGvRELo,34136
64
64
  localstack/aws/handlers/__init__.py,sha256=qeSfvzPAALcgwDZRQmPQL0ULorMd5CFPmLU09FsEmww,2025
@@ -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.dev56.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
1290
- localstack_core-4.7.1.dev56.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
1291
- localstack_core-4.7.1.dev56.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
1292
- localstack_core-4.7.1.dev56.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
1293
- localstack_core-4.7.1.dev56.dist-info/METADATA,sha256=KxyPeWZ3v27t2cwPWBimu8WNiQ00zRTJkrDTekiRo_s,5570
1294
- localstack_core-4.7.1.dev56.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1295
- localstack_core-4.7.1.dev56.dist-info/entry_points.txt,sha256=-GFtw80qM_1GQIDUcyqXojJvnqvP_8lK1Vc-M9ShaJE,20668
1296
- localstack_core-4.7.1.dev56.dist-info/plux.json,sha256=BUSvd2acvDGX6c3DJbDDUL-Wd7bcWIooUrr0t336Xq4,20891
1297
- localstack_core-4.7.1.dev56.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
1298
- localstack_core-4.7.1.dev56.dist-info/RECORD,,
1289
+ localstack_core-4.7.1.dev58.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
1290
+ localstack_core-4.7.1.dev58.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
1291
+ localstack_core-4.7.1.dev58.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
1292
+ localstack_core-4.7.1.dev58.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
1293
+ localstack_core-4.7.1.dev58.dist-info/METADATA,sha256=8X5kWavJoCahm7s5HZqxGMSHUiaUmcHPbobQJAvgtYQ,5573
1294
+ localstack_core-4.7.1.dev58.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1295
+ localstack_core-4.7.1.dev58.dist-info/entry_points.txt,sha256=-GFtw80qM_1GQIDUcyqXojJvnqvP_8lK1Vc-M9ShaJE,20668
1296
+ localstack_core-4.7.1.dev58.dist-info/plux.json,sha256=ya3ci24ON5aanD-gR3DQMjVivoqBeR1qChBnglqR6fU,20891
1297
+ localstack_core-4.7.1.dev58.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
1298
+ localstack_core-4.7.1.dev58.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+ {"localstack.cloudformation.resource_providers": ["AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "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::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::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::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "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::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "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::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "localstack.hooks.on_infra_shutdown": ["run_on_after_service_shutdown_handlers=localstack.runtime.shutdown:run_on_after_service_shutdown_handlers", "run_shutdown_handlers=localstack.runtime.shutdown:run_shutdown_handlers", "shutdown_services=localstack.runtime.shutdown:shutdown_services", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "stop_server=localstack.dns.plugins:stop_server", "publish_metrics=localstack.utils.analytics.metrics.publisher:publish_metrics", "remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "localstack.hooks.on_infra_start": ["conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "_patch_botocore_endpoint_in_memory=localstack.aws.client:_patch_botocore_endpoint_in_memory", "_patch_botocore_json_parser=localstack.aws.client:_patch_botocore_json_parser", "_patch_cbor2=localstack.aws.client:_patch_cbor2", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui", "_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "eager_load_services=localstack.services.plugins:eager_load_services", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "init_response_mutation_handler=localstack.aws.handlers.response:init_response_mutation_handler", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "register_custom_endpoints=localstack.services.lambda_.plugins:register_custom_endpoints", "validate_configuration=localstack.services.lambda_.plugins:validate_configuration"], "localstack.packages": ["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", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "vosk/community=localstack.services.transcribe.plugins:vosk_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"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"], "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.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.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"]}
@@ -1 +0,0 @@
1
- {"localstack.cloudformation.resource_providers": ["AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "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::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "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::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "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::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "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::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "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::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin"], "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_start": ["conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "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", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui", "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", "_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "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", "_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"], "localstack.packages": ["lambda-java-libs/community=localstack.services.lambda_.plugins:lambda_java_libs", "lambda-runtime/community=localstack.services.lambda_.plugins:lambda_runtime_package", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package", "dynamodb-local/community=localstack.services.dynamodb.plugins:dynamodb_local_package", "vosk/community=localstack.services.transcribe.plugins:vosk_package", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "terraform/community=localstack.packages.plugins:terraform_package", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_package", "elasticsearch/community=localstack.services.es.plugins:elasticsearch_package", "kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package"], "localstack.hooks.on_infra_shutdown": ["remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints", "run_on_after_service_shutdown_handlers=localstack.runtime.shutdown:run_on_after_service_shutdown_handlers", "run_shutdown_handlers=localstack.runtime.shutdown:run_shutdown_handlers", "shutdown_services=localstack.runtime.shutdown:shutdown_services", "stop_server=localstack.dns.plugins:stop_server", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "publish_metrics=localstack.utils.analytics.metrics.publisher:publish_metrics"], "localstack.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "localstack.init.runner": ["py=localstack.runtime.init:PythonScriptRunner", "sh=localstack.runtime.init:ShellScriptRunner"], "localstack.hooks.on_infra_ready": ["_run_init_scripts_on_ready=localstack.runtime.init:_run_init_scripts_on_ready"], "localstack.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"]}