localstack-core 4.4.1.dev5__py3-none-any.whl → 4.4.1.dev7__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.
@@ -60,6 +60,7 @@ DeclarativePoliciesMaxResults = int
60
60
  DeclarativePoliciesReportId = str
61
61
  DedicatedHostFlag = bool
62
62
  DedicatedHostId = str
63
+ DefaultEnaQueueCountPerInterface = int
63
64
  DefaultNetworkCardIndex = int
64
65
  DefaultingDhcpOptionsId = str
65
66
  DescribeAddressTransfersMaxResults = int
@@ -236,6 +237,8 @@ MaxResults = int
236
237
  MaxResultsParam = int
237
238
  MaximumBandwidthInMbps = int
238
239
  MaximumEfaInterfaces = int
240
+ MaximumEnaQueueCount = int
241
+ MaximumEnaQueueCountPerInterface = int
239
242
  MaximumIops = int
240
243
  MaximumNetworkCards = int
241
244
  MaximumThroughputInMBps = float
@@ -267,6 +270,8 @@ NextToken = str
267
270
  NitroTpmSupportedVersionType = str
268
271
  OfferingId = str
269
272
  OutpostArn = str
273
+ OutpostLagId = str
274
+ OutpostLagMaxResults = int
270
275
  PasswordData = str
271
276
  PeakBandwidthInGbps = float
272
277
  PlacementGroupArn = str
@@ -314,6 +319,8 @@ SecurityGroupName = str
314
319
  SecurityGroupRuleId = str
315
320
  SensitiveUrl = str
316
321
  SensitiveUserData = str
322
+ ServiceLinkMaxResults = int
323
+ ServiceLinkVirtualInterfaceId = str
317
324
  ServiceNetworkArn = str
318
325
  SnapshotCompletionDurationMinutesRequest = int
319
326
  SnapshotCompletionDurationMinutesResponse = int
@@ -1115,6 +1122,11 @@ class FleetType(StrEnum):
1115
1122
  instant = "instant"
1116
1123
 
1117
1124
 
1125
+ class FlexibleEnaQueuesSupport(StrEnum):
1126
+ unsupported = "unsupported"
1127
+ supported = "supported"
1128
+
1129
+
1118
1130
  class FlowLogsResourceType(StrEnum):
1119
1131
  VPC = "VPC"
1120
1132
  Subnet = "Subnet"
@@ -2584,6 +2596,21 @@ class LocalGatewayRouteType(StrEnum):
2584
2596
  propagated = "propagated"
2585
2597
 
2586
2598
 
2599
+ class LocalGatewayVirtualInterfaceConfigurationState(StrEnum):
2600
+ pending = "pending"
2601
+ available = "available"
2602
+ deleting = "deleting"
2603
+ deleted = "deleted"
2604
+
2605
+
2606
+ class LocalGatewayVirtualInterfaceGroupConfigurationState(StrEnum):
2607
+ pending = "pending"
2608
+ incomplete = "incomplete"
2609
+ available = "available"
2610
+ deleting = "deleting"
2611
+ deleted = "deleted"
2612
+
2613
+
2587
2614
  class LocalStorage(StrEnum):
2588
2615
  included = "included"
2589
2616
  required = "required"
@@ -2983,6 +3010,7 @@ class ResourceType(StrEnum):
2983
3010
  network_insights_path = "network-insights-path"
2984
3011
  network_insights_access_scope = "network-insights-access-scope"
2985
3012
  network_insights_access_scope_analysis = "network-insights-access-scope-analysis"
3013
+ outpost_lag = "outpost-lag"
2986
3014
  placement_group = "placement-group"
2987
3015
  prefix_list = "prefix-list"
2988
3016
  replace_root_volume_task = "replace-root-volume-task"
@@ -2990,6 +3018,7 @@ class ResourceType(StrEnum):
2990
3018
  route_table = "route-table"
2991
3019
  security_group = "security-group"
2992
3020
  security_group_rule = "security-group-rule"
3021
+ service_link_virtual_interface = "service-link-virtual-interface"
2993
3022
  snapshot = "snapshot"
2994
3023
  spot_fleet_request = "spot-fleet-request"
2995
3024
  spot_instances_request = "spot-instances-request"
@@ -3173,6 +3202,13 @@ class ServiceConnectivityType(StrEnum):
3173
3202
  ipv6 = "ipv6"
3174
3203
 
3175
3204
 
3205
+ class ServiceLinkVirtualInterfaceConfigurationState(StrEnum):
3206
+ pending = "pending"
3207
+ available = "available"
3208
+ deleting = "deleting"
3209
+ deleted = "deleted"
3210
+
3211
+
3176
3212
  class ServiceManaged(StrEnum):
3177
3213
  alb = "alb"
3178
3214
  nlb = "nlb"
@@ -5129,6 +5165,7 @@ class EnaSrdSpecification(TypedDict, total=False):
5129
5165
  class AttachNetworkInterfaceRequest(ServiceRequest):
5130
5166
  NetworkCardIndex: Optional[Integer]
5131
5167
  EnaSrdSpecification: Optional[EnaSrdSpecification]
5168
+ EnaQueueCount: Optional[Integer]
5132
5169
  DryRun: Optional[Boolean]
5133
5170
  NetworkInterfaceId: NetworkInterfaceId
5134
5171
  InstanceId: InstanceId
@@ -5531,6 +5568,7 @@ class EbsBlockDevice(TypedDict, total=False):
5531
5568
  Throughput: Optional[Integer]
5532
5569
  OutpostArn: Optional[String]
5533
5570
  Encrypted: Optional[Boolean]
5571
+ VolumeInitializationRate: Optional[Integer]
5534
5572
 
5535
5573
 
5536
5574
  class BlockDeviceMapping(TypedDict, total=False):
@@ -7017,7 +7055,7 @@ class FleetLaunchTemplateOverridesRequest(TypedDict, total=False):
7017
7055
  Placement: Optional[Placement]
7018
7056
  BlockDeviceMappings: Optional[FleetBlockDeviceMappingRequestList]
7019
7057
  InstanceRequirements: Optional[InstanceRequirementsRequest]
7020
- ImageId: Optional[ImageId]
7058
+ ImageId: Optional[String]
7021
7059
 
7022
7060
 
7023
7061
  FleetLaunchTemplateOverridesListRequest = List[FleetLaunchTemplateOverridesRequest]
@@ -7661,6 +7699,7 @@ class LaunchTemplateInstanceNetworkInterfaceSpecificationRequest(TypedDict, tota
7661
7699
  PrimaryIpv6: Optional[Boolean]
7662
7700
  EnaSrdSpecification: Optional[EnaSrdSpecificationRequest]
7663
7701
  ConnectionTrackingSpecification: Optional[ConnectionTrackingSpecificationRequest]
7702
+ EnaQueueCount: Optional[Integer]
7664
7703
 
7665
7704
 
7666
7705
  LaunchTemplateInstanceNetworkInterfaceSpecificationRequestList = List[
@@ -7677,6 +7716,7 @@ class LaunchTemplateEbsBlockDeviceRequest(TypedDict, total=False):
7677
7716
  VolumeSize: Optional[Integer]
7678
7717
  VolumeType: Optional[VolumeType]
7679
7718
  Throughput: Optional[Integer]
7719
+ VolumeInitializationRate: Optional[Integer]
7680
7720
 
7681
7721
 
7682
7722
  class LaunchTemplateBlockDeviceMappingRequest(TypedDict, total=False):
@@ -7947,6 +7987,7 @@ class LaunchTemplateInstanceNetworkInterfaceSpecification(TypedDict, total=False
7947
7987
  PrimaryIpv6: Optional[Boolean]
7948
7988
  EnaSrdSpecification: Optional[LaunchTemplateEnaSrdSpecification]
7949
7989
  ConnectionTrackingSpecification: Optional[ConnectionTrackingSpecification]
7990
+ EnaQueueCount: Optional[Integer]
7950
7991
 
7951
7992
 
7952
7993
  LaunchTemplateInstanceNetworkInterfaceSpecificationList = List[
@@ -7963,6 +8004,7 @@ class LaunchTemplateEbsBlockDevice(TypedDict, total=False):
7963
8004
  VolumeSize: Optional[Integer]
7964
8005
  VolumeType: Optional[VolumeType]
7965
8006
  Throughput: Optional[Integer]
8007
+ VolumeInitializationRate: Optional[Integer]
7966
8008
 
7967
8009
 
7968
8010
  class LaunchTemplateBlockDeviceMapping(TypedDict, total=False):
@@ -8138,6 +8180,66 @@ class CreateLocalGatewayRouteTableVpcAssociationResult(TypedDict, total=False):
8138
8180
  LocalGatewayRouteTableVpcAssociation: Optional[LocalGatewayRouteTableVpcAssociation]
8139
8181
 
8140
8182
 
8183
+ class CreateLocalGatewayVirtualInterfaceGroupRequest(ServiceRequest):
8184
+ LocalGatewayId: LocalGatewayId
8185
+ LocalBgpAsn: Optional[Integer]
8186
+ LocalBgpAsnExtended: Optional[Long]
8187
+ TagSpecifications: Optional[TagSpecificationList]
8188
+ DryRun: Optional[Boolean]
8189
+
8190
+
8191
+ LocalGatewayVirtualInterfaceIdSet = List[LocalGatewayVirtualInterfaceId]
8192
+
8193
+
8194
+ class LocalGatewayVirtualInterfaceGroup(TypedDict, total=False):
8195
+ LocalGatewayVirtualInterfaceGroupId: Optional[LocalGatewayVirtualInterfaceGroupId]
8196
+ LocalGatewayVirtualInterfaceIds: Optional[LocalGatewayVirtualInterfaceIdSet]
8197
+ LocalGatewayId: Optional[String]
8198
+ OwnerId: Optional[String]
8199
+ LocalBgpAsn: Optional[Integer]
8200
+ LocalBgpAsnExtended: Optional[Long]
8201
+ LocalGatewayVirtualInterfaceGroupArn: Optional[ResourceArn]
8202
+ Tags: Optional[TagList]
8203
+ ConfigurationState: Optional[LocalGatewayVirtualInterfaceGroupConfigurationState]
8204
+
8205
+
8206
+ class CreateLocalGatewayVirtualInterfaceGroupResult(TypedDict, total=False):
8207
+ LocalGatewayVirtualInterfaceGroup: Optional[LocalGatewayVirtualInterfaceGroup]
8208
+
8209
+
8210
+ class CreateLocalGatewayVirtualInterfaceRequest(ServiceRequest):
8211
+ LocalGatewayVirtualInterfaceGroupId: LocalGatewayVirtualInterfaceGroupId
8212
+ OutpostLagId: OutpostLagId
8213
+ Vlan: Integer
8214
+ LocalAddress: String
8215
+ PeerAddress: String
8216
+ PeerBgpAsn: Optional[Integer]
8217
+ TagSpecifications: Optional[TagSpecificationList]
8218
+ DryRun: Optional[Boolean]
8219
+ PeerBgpAsnExtended: Optional[Long]
8220
+
8221
+
8222
+ class LocalGatewayVirtualInterface(TypedDict, total=False):
8223
+ LocalGatewayVirtualInterfaceId: Optional[LocalGatewayVirtualInterfaceId]
8224
+ LocalGatewayId: Optional[String]
8225
+ LocalGatewayVirtualInterfaceGroupId: Optional[LocalGatewayVirtualInterfaceGroupId]
8226
+ LocalGatewayVirtualInterfaceArn: Optional[ResourceArn]
8227
+ OutpostLagId: Optional[String]
8228
+ Vlan: Optional[Integer]
8229
+ LocalAddress: Optional[String]
8230
+ PeerAddress: Optional[String]
8231
+ LocalBgpAsn: Optional[Integer]
8232
+ PeerBgpAsn: Optional[Integer]
8233
+ PeerBgpAsnExtended: Optional[Long]
8234
+ OwnerId: Optional[String]
8235
+ Tags: Optional[TagList]
8236
+ ConfigurationState: Optional[LocalGatewayVirtualInterfaceConfigurationState]
8237
+
8238
+
8239
+ class CreateLocalGatewayVirtualInterfaceResult(TypedDict, total=False):
8240
+ LocalGatewayVirtualInterface: Optional[LocalGatewayVirtualInterface]
8241
+
8242
+
8141
8243
  class CreateManagedPrefixListRequest(ServiceRequest):
8142
8244
  DryRun: Optional[Boolean]
8143
8245
  PrefixListName: String
@@ -8448,6 +8550,7 @@ class NetworkInterfaceAttachment(TypedDict, total=False):
8448
8550
  InstanceOwnerId: Optional[String]
8449
8551
  Status: Optional[AttachmentStatus]
8450
8552
  EnaSrdSpecification: Optional[AttachmentEnaSrdSpecification]
8553
+ EnaQueueCount: Optional[Integer]
8451
8554
 
8452
8555
 
8453
8556
  class NetworkInterface(TypedDict, total=False):
@@ -8528,6 +8631,7 @@ class CreateReplaceRootVolumeTaskRequest(ServiceRequest):
8528
8631
  TagSpecifications: Optional[TagSpecificationList]
8529
8632
  ImageId: Optional[ImageId]
8530
8633
  DeleteReplacedRootVolume: Optional[Boolean]
8634
+ VolumeInitializationRate: Optional[Long]
8531
8635
 
8532
8636
 
8533
8637
  class ReplaceRootVolumeTask(TypedDict, total=False):
@@ -9626,6 +9730,7 @@ class CreateVolumeRequest(ServiceRequest):
9626
9730
  MultiAttachEnabled: Optional[Boolean]
9627
9731
  Throughput: Optional[Integer]
9628
9732
  ClientToken: Optional[String]
9733
+ VolumeInitializationRate: Optional[Integer]
9629
9734
  Operator: Optional[OperatorRequest]
9630
9735
  DryRun: Optional[Boolean]
9631
9736
 
@@ -10495,6 +10600,24 @@ class DeleteLocalGatewayRouteTableVpcAssociationResult(TypedDict, total=False):
10495
10600
  LocalGatewayRouteTableVpcAssociation: Optional[LocalGatewayRouteTableVpcAssociation]
10496
10601
 
10497
10602
 
10603
+ class DeleteLocalGatewayVirtualInterfaceGroupRequest(ServiceRequest):
10604
+ LocalGatewayVirtualInterfaceGroupId: LocalGatewayVirtualInterfaceGroupId
10605
+ DryRun: Optional[Boolean]
10606
+
10607
+
10608
+ class DeleteLocalGatewayVirtualInterfaceGroupResult(TypedDict, total=False):
10609
+ LocalGatewayVirtualInterfaceGroup: Optional[LocalGatewayVirtualInterfaceGroup]
10610
+
10611
+
10612
+ class DeleteLocalGatewayVirtualInterfaceRequest(ServiceRequest):
10613
+ LocalGatewayVirtualInterfaceId: LocalGatewayVirtualInterfaceId
10614
+ DryRun: Optional[Boolean]
10615
+
10616
+
10617
+ class DeleteLocalGatewayVirtualInterfaceResult(TypedDict, total=False):
10618
+ LocalGatewayVirtualInterface: Optional[LocalGatewayVirtualInterface]
10619
+
10620
+
10498
10621
  class DeleteManagedPrefixListRequest(ServiceRequest):
10499
10622
  DryRun: Optional[Boolean]
10500
10623
  PrefixListId: PrefixListResourceId
@@ -12632,6 +12755,9 @@ class NetworkCardInfo(TypedDict, total=False):
12632
12755
  MaximumNetworkInterfaces: Optional[MaxNetworkInterfaces]
12633
12756
  BaselineBandwidthInGbps: Optional[BaselineBandwidthInGbps]
12634
12757
  PeakBandwidthInGbps: Optional[PeakBandwidthInGbps]
12758
+ DefaultEnaQueueCountPerInterface: Optional[DefaultEnaQueueCountPerInterface]
12759
+ MaximumEnaQueueCount: Optional[MaximumEnaQueueCount]
12760
+ MaximumEnaQueueCountPerInterface: Optional[MaximumEnaQueueCountPerInterface]
12635
12761
 
12636
12762
 
12637
12763
  NetworkCardInfoList = List[NetworkCardInfo]
@@ -12652,6 +12778,7 @@ class NetworkInfo(TypedDict, total=False):
12652
12778
  EncryptionInTransitSupported: Optional[EncryptionInTransitSupported]
12653
12779
  EnaSrdSupported: Optional[EnaSrdSupported]
12654
12780
  BandwidthWeightings: Optional[BandwidthWeightingTypeList]
12781
+ FlexibleEnaQueuesSupport: Optional[FlexibleEnaQueuesSupport]
12655
12782
 
12656
12783
 
12657
12784
  class EbsOptimizedInfo(TypedDict, total=False):
@@ -12862,6 +12989,7 @@ class InstanceNetworkInterfaceAttachment(TypedDict, total=False):
12862
12989
  Status: Optional[AttachmentStatus]
12863
12990
  NetworkCardIndex: Optional[Integer]
12864
12991
  EnaSrdSpecification: Optional[InstanceAttachmentEnaSrdSpecification]
12992
+ EnaQueueCount: Optional[Integer]
12865
12993
 
12866
12994
 
12867
12995
  class InstanceNetworkInterface(TypedDict, total=False):
@@ -13315,17 +13443,6 @@ class DescribeLocalGatewayVirtualInterfaceGroupsRequest(ServiceRequest):
13315
13443
  DryRun: Optional[Boolean]
13316
13444
 
13317
13445
 
13318
- LocalGatewayVirtualInterfaceIdSet = List[LocalGatewayVirtualInterfaceId]
13319
-
13320
-
13321
- class LocalGatewayVirtualInterfaceGroup(TypedDict, total=False):
13322
- LocalGatewayVirtualInterfaceGroupId: Optional[LocalGatewayVirtualInterfaceGroupId]
13323
- LocalGatewayVirtualInterfaceIds: Optional[LocalGatewayVirtualInterfaceIdSet]
13324
- LocalGatewayId: Optional[String]
13325
- OwnerId: Optional[String]
13326
- Tags: Optional[TagList]
13327
-
13328
-
13329
13446
  LocalGatewayVirtualInterfaceGroupSet = List[LocalGatewayVirtualInterfaceGroup]
13330
13447
 
13331
13448
 
@@ -13342,18 +13459,6 @@ class DescribeLocalGatewayVirtualInterfacesRequest(ServiceRequest):
13342
13459
  DryRun: Optional[Boolean]
13343
13460
 
13344
13461
 
13345
- class LocalGatewayVirtualInterface(TypedDict, total=False):
13346
- LocalGatewayVirtualInterfaceId: Optional[LocalGatewayVirtualInterfaceId]
13347
- LocalGatewayId: Optional[String]
13348
- Vlan: Optional[Integer]
13349
- LocalAddress: Optional[String]
13350
- PeerAddress: Optional[String]
13351
- LocalBgpAsn: Optional[Integer]
13352
- PeerBgpAsn: Optional[Integer]
13353
- OwnerId: Optional[String]
13354
- Tags: Optional[TagList]
13355
-
13356
-
13357
13462
  LocalGatewayVirtualInterfaceSet = List[LocalGatewayVirtualInterface]
13358
13463
 
13359
13464
 
@@ -13593,6 +13698,7 @@ class NetworkInsightsAnalysis(TypedDict, total=False):
13593
13698
  NetworkInsightsPathId: Optional[NetworkInsightsPathId]
13594
13699
  AdditionalAccounts: Optional[ValueStringList]
13595
13700
  FilterInArns: Optional[ArnList]
13701
+ FilterOutArns: Optional[ArnList]
13596
13702
  StartDate: Optional[MillisecondDateTime]
13597
13703
  Status: Optional[AnalysisStatus]
13598
13704
  StatusMessage: Optional[String]
@@ -13685,6 +13791,38 @@ class DescribeNetworkInterfacesResult(TypedDict, total=False):
13685
13791
  NextToken: Optional[String]
13686
13792
 
13687
13793
 
13794
+ OutpostLagIdSet = List[OutpostLagId]
13795
+
13796
+
13797
+ class DescribeOutpostLagsRequest(ServiceRequest):
13798
+ OutpostLagIds: Optional[OutpostLagIdSet]
13799
+ Filters: Optional[FilterList]
13800
+ MaxResults: Optional[OutpostLagMaxResults]
13801
+ NextToken: Optional[String]
13802
+ DryRun: Optional[Boolean]
13803
+
13804
+
13805
+ ServiceLinkVirtualInterfaceIdSet = List[ServiceLinkVirtualInterfaceId]
13806
+
13807
+
13808
+ class OutpostLag(TypedDict, total=False):
13809
+ OutpostArn: Optional[String]
13810
+ OwnerId: Optional[String]
13811
+ State: Optional[String]
13812
+ OutpostLagId: Optional[OutpostLagId]
13813
+ LocalGatewayVirtualInterfaceIds: Optional[LocalGatewayVirtualInterfaceIdSet]
13814
+ ServiceLinkVirtualInterfaceIds: Optional[ServiceLinkVirtualInterfaceIdSet]
13815
+ Tags: Optional[TagList]
13816
+
13817
+
13818
+ OutpostLagSet = List[OutpostLag]
13819
+
13820
+
13821
+ class DescribeOutpostLagsResult(TypedDict, total=False):
13822
+ OutpostLags: Optional[OutpostLagSet]
13823
+ NextToken: Optional[String]
13824
+
13825
+
13688
13826
  PlacementGroupStringList = List[PlacementGroupName]
13689
13827
  PlacementGroupIdStringList = List[PlacementGroupId]
13690
13828
 
@@ -14269,6 +14407,37 @@ class DescribeSecurityGroupsResult(TypedDict, total=False):
14269
14407
  SecurityGroups: Optional[SecurityGroupList]
14270
14408
 
14271
14409
 
14410
+ class DescribeServiceLinkVirtualInterfacesRequest(ServiceRequest):
14411
+ ServiceLinkVirtualInterfaceIds: Optional[ServiceLinkVirtualInterfaceIdSet]
14412
+ Filters: Optional[FilterList]
14413
+ MaxResults: Optional[ServiceLinkMaxResults]
14414
+ NextToken: Optional[String]
14415
+ DryRun: Optional[Boolean]
14416
+
14417
+
14418
+ class ServiceLinkVirtualInterface(TypedDict, total=False):
14419
+ ServiceLinkVirtualInterfaceId: Optional[ServiceLinkVirtualInterfaceId]
14420
+ ServiceLinkVirtualInterfaceArn: Optional[ResourceArn]
14421
+ OutpostId: Optional[String]
14422
+ OutpostArn: Optional[String]
14423
+ OwnerId: Optional[String]
14424
+ LocalAddress: Optional[String]
14425
+ PeerAddress: Optional[String]
14426
+ PeerBgpAsn: Optional[Long]
14427
+ Vlan: Optional[Integer]
14428
+ OutpostLagId: Optional[OutpostLagId]
14429
+ Tags: Optional[TagList]
14430
+ ConfigurationState: Optional[ServiceLinkVirtualInterfaceConfigurationState]
14431
+
14432
+
14433
+ ServiceLinkVirtualInterfaceSet = List[ServiceLinkVirtualInterface]
14434
+
14435
+
14436
+ class DescribeServiceLinkVirtualInterfacesResult(TypedDict, total=False):
14437
+ ServiceLinkVirtualInterfaces: Optional[ServiceLinkVirtualInterfaceSet]
14438
+ NextToken: Optional[String]
14439
+
14440
+
14272
14441
  class DescribeSnapshotAttributeRequest(ServiceRequest):
14273
14442
  Attribute: SnapshotAttributeName
14274
14443
  SnapshotId: SnapshotId
@@ -14486,6 +14655,7 @@ class InstanceNetworkInterfaceSpecification(TypedDict, total=False):
14486
14655
  PrimaryIpv6: Optional[Boolean]
14487
14656
  EnaSrdSpecification: Optional[EnaSrdSpecificationRequest]
14488
14657
  ConnectionTrackingSpecification: Optional[ConnectionTrackingSpecificationRequest]
14658
+ EnaQueueCount: Optional[Integer]
14489
14659
 
14490
14660
 
14491
14661
  InstanceNetworkInterfaceSpecificationList = List[InstanceNetworkInterfaceSpecification]
@@ -15362,6 +15532,7 @@ class Volume(TypedDict, total=False):
15362
15532
  Throughput: Optional[Integer]
15363
15533
  SseType: Optional[SSEType]
15364
15534
  Operator: Optional[OperatorResponse]
15535
+ VolumeInitializationRate: Optional[Integer]
15365
15536
  VolumeId: Optional[String]
15366
15537
  Size: Optional[Integer]
15367
15538
  SnapshotId: Optional[String]
@@ -18474,6 +18645,8 @@ class ModifyManagedPrefixListResult(TypedDict, total=False):
18474
18645
 
18475
18646
 
18476
18647
  class NetworkInterfaceAttachmentChanges(TypedDict, total=False):
18648
+ DefaultEnaQueueCount: Optional[Boolean]
18649
+ EnaQueueCount: Optional[Integer]
18477
18650
  AttachmentId: Optional[NetworkInterfaceAttachmentId]
18478
18651
  DeleteOnTermination: Optional[Boolean]
18479
18652
 
@@ -20054,6 +20227,7 @@ class StartNetworkInsightsAnalysisRequest(ServiceRequest):
20054
20227
  NetworkInsightsPathId: NetworkInsightsPathId
20055
20228
  AdditionalAccounts: Optional[ValueStringList]
20056
20229
  FilterInArns: Optional[ArnList]
20230
+ FilterOutArns: Optional[ArnList]
20057
20231
  DryRun: Optional[Boolean]
20058
20232
  TagSpecifications: Optional[TagSpecificationList]
20059
20233
  ClientToken: String
@@ -20655,6 +20829,7 @@ class Ec2Api:
20655
20829
  device_index: Integer,
20656
20830
  network_card_index: Integer = None,
20657
20831
  ena_srd_specification: EnaSrdSpecification = None,
20832
+ ena_queue_count: Integer = None,
20658
20833
  dry_run: Boolean = None,
20659
20834
  **kwargs,
20660
20835
  ) -> AttachNetworkInterfaceResult:
@@ -21382,6 +21557,36 @@ class Ec2Api:
21382
21557
  ) -> CreateLocalGatewayRouteTableVpcAssociationResult:
21383
21558
  raise NotImplementedError
21384
21559
 
21560
+ @handler("CreateLocalGatewayVirtualInterface")
21561
+ def create_local_gateway_virtual_interface(
21562
+ self,
21563
+ context: RequestContext,
21564
+ local_gateway_virtual_interface_group_id: LocalGatewayVirtualInterfaceGroupId,
21565
+ outpost_lag_id: OutpostLagId,
21566
+ vlan: Integer,
21567
+ local_address: String,
21568
+ peer_address: String,
21569
+ peer_bgp_asn: Integer = None,
21570
+ tag_specifications: TagSpecificationList = None,
21571
+ dry_run: Boolean = None,
21572
+ peer_bgp_asn_extended: Long = None,
21573
+ **kwargs,
21574
+ ) -> CreateLocalGatewayVirtualInterfaceResult:
21575
+ raise NotImplementedError
21576
+
21577
+ @handler("CreateLocalGatewayVirtualInterfaceGroup")
21578
+ def create_local_gateway_virtual_interface_group(
21579
+ self,
21580
+ context: RequestContext,
21581
+ local_gateway_id: LocalGatewayId,
21582
+ local_bgp_asn: Integer = None,
21583
+ local_bgp_asn_extended: Long = None,
21584
+ tag_specifications: TagSpecificationList = None,
21585
+ dry_run: Boolean = None,
21586
+ **kwargs,
21587
+ ) -> CreateLocalGatewayVirtualInterfaceGroupResult:
21588
+ raise NotImplementedError
21589
+
21385
21590
  @handler("CreateManagedPrefixList")
21386
21591
  def create_managed_prefix_list(
21387
21592
  self,
@@ -21553,6 +21758,7 @@ class Ec2Api:
21553
21758
  tag_specifications: TagSpecificationList = None,
21554
21759
  image_id: ImageId = None,
21555
21760
  delete_replaced_root_volume: Boolean = None,
21761
+ volume_initialization_rate: Long = None,
21556
21762
  **kwargs,
21557
21763
  ) -> CreateReplaceRootVolumeTaskResult:
21558
21764
  raise NotImplementedError
@@ -22066,6 +22272,7 @@ class Ec2Api:
22066
22272
  multi_attach_enabled: Boolean = None,
22067
22273
  throughput: Integer = None,
22068
22274
  client_token: String = None,
22275
+ volume_initialization_rate: Integer = None,
22069
22276
  operator: OperatorRequest = None,
22070
22277
  dry_run: Boolean = None,
22071
22278
  **kwargs,
@@ -22462,6 +22669,26 @@ class Ec2Api:
22462
22669
  ) -> DeleteLocalGatewayRouteTableVpcAssociationResult:
22463
22670
  raise NotImplementedError
22464
22671
 
22672
+ @handler("DeleteLocalGatewayVirtualInterface")
22673
+ def delete_local_gateway_virtual_interface(
22674
+ self,
22675
+ context: RequestContext,
22676
+ local_gateway_virtual_interface_id: LocalGatewayVirtualInterfaceId,
22677
+ dry_run: Boolean = None,
22678
+ **kwargs,
22679
+ ) -> DeleteLocalGatewayVirtualInterfaceResult:
22680
+ raise NotImplementedError
22681
+
22682
+ @handler("DeleteLocalGatewayVirtualInterfaceGroup")
22683
+ def delete_local_gateway_virtual_interface_group(
22684
+ self,
22685
+ context: RequestContext,
22686
+ local_gateway_virtual_interface_group_id: LocalGatewayVirtualInterfaceGroupId,
22687
+ dry_run: Boolean = None,
22688
+ **kwargs,
22689
+ ) -> DeleteLocalGatewayVirtualInterfaceGroupResult:
22690
+ raise NotImplementedError
22691
+
22465
22692
  @handler("DeleteManagedPrefixList")
22466
22693
  def delete_managed_prefix_list(
22467
22694
  self,
@@ -24212,6 +24439,19 @@ class Ec2Api:
24212
24439
  ) -> DescribeNetworkInterfacesResult:
24213
24440
  raise NotImplementedError
24214
24441
 
24442
+ @handler("DescribeOutpostLags")
24443
+ def describe_outpost_lags(
24444
+ self,
24445
+ context: RequestContext,
24446
+ outpost_lag_ids: OutpostLagIdSet = None,
24447
+ filters: FilterList = None,
24448
+ max_results: OutpostLagMaxResults = None,
24449
+ next_token: String = None,
24450
+ dry_run: Boolean = None,
24451
+ **kwargs,
24452
+ ) -> DescribeOutpostLagsResult:
24453
+ raise NotImplementedError
24454
+
24215
24455
  @handler("DescribePlacementGroups")
24216
24456
  def describe_placement_groups(
24217
24457
  self,
@@ -24471,6 +24711,19 @@ class Ec2Api:
24471
24711
  ) -> DescribeSecurityGroupsResult:
24472
24712
  raise NotImplementedError
24473
24713
 
24714
+ @handler("DescribeServiceLinkVirtualInterfaces")
24715
+ def describe_service_link_virtual_interfaces(
24716
+ self,
24717
+ context: RequestContext,
24718
+ service_link_virtual_interface_ids: ServiceLinkVirtualInterfaceIdSet = None,
24719
+ filters: FilterList = None,
24720
+ max_results: ServiceLinkMaxResults = None,
24721
+ next_token: String = None,
24722
+ dry_run: Boolean = None,
24723
+ **kwargs,
24724
+ ) -> DescribeServiceLinkVirtualInterfacesResult:
24725
+ raise NotImplementedError
24726
+
24474
24727
  @handler("DescribeSnapshotAttribute")
24475
24728
  def describe_snapshot_attribute(
24476
24729
  self,
@@ -28253,6 +28506,7 @@ class Ec2Api:
28253
28506
  client_token: String,
28254
28507
  additional_accounts: ValueStringList = None,
28255
28508
  filter_in_arns: ArnList = None,
28509
+ filter_out_arns: ArnList = None,
28256
28510
  dry_run: Boolean = None,
28257
28511
  tag_specifications: TagSpecificationList = None,
28258
28512
  **kwargs,
@@ -129,6 +129,7 @@ Service = str
129
129
  SessionId = str
130
130
  Source = str
131
131
  SourceTimezone = str
132
+ SplitStringDelimiter = str
132
133
  StartFromHead = bool
133
134
  StatsValue = float
134
135
  Success = bool
@@ -1563,7 +1564,7 @@ class SubstituteString(TypedDict, total=False):
1563
1564
 
1564
1565
  class SplitStringEntry(TypedDict, total=False):
1565
1566
  source: Source
1566
- delimiter: Delimiter
1567
+ delimiter: SplitStringDelimiter
1567
1568
 
1568
1569
 
1569
1570
  SplitStringEntries = List[SplitStringEntry]
@@ -192,10 +192,10 @@ class TranscribeProvider(TranscribeApi):
192
192
  def list_transcription_jobs(
193
193
  self,
194
194
  context: RequestContext,
195
- status: TranscriptionJobStatus = None,
196
- job_name_contains: TranscriptionJobName = None,
197
- next_token: NextToken = None,
198
- max_results: MaxResults = None,
195
+ status: TranscriptionJobStatus | None = None,
196
+ job_name_contains: TranscriptionJobName | None = None,
197
+ next_token: NextToken | None = None,
198
+ max_results: MaxResults | None = None,
199
199
  **kwargs,
200
200
  ) -> ListTranscriptionJobsResponse:
201
201
  store = transcribe_stores[context.account_id][context.region]
@@ -3,8 +3,8 @@ import importlib.util
3
3
  import inspect
4
4
  import pkgutil
5
5
  import re
6
- from types import FunctionType, ModuleType
7
- from typing import Optional, Pattern
6
+ from types import FunctionType, ModuleType, NoneType, UnionType
7
+ from typing import Optional, Pattern, get_args
8
8
 
9
9
 
10
10
  def _import_submodules(
@@ -123,10 +123,45 @@ def check_provider_signature(sub_class: type, base_class: type, method_name: str
123
123
 
124
124
  sub_spec = inspect.getfullargspec(sub_function)
125
125
  base_spec = inspect.getfullargspec(base_function)
126
- assert sub_spec == base_spec, (
127
- f"{sub_class.__name__}#{method_name} breaks with {base_class.__name__}#{method_name}. "
128
- f"This can also be caused by 'from __future__ import annotations' in a provider file!"
126
+
127
+ error_msg = f"{sub_class.__name__}#{method_name} breaks with {base_class.__name__}#{method_name}. This can also be caused by 'from __future__ import annotations' in a provider file!"
128
+
129
+ # Assert that the signature is correct
130
+ assert sub_spec.args == base_spec.args, error_msg
131
+ assert sub_spec.varargs == base_spec.varargs, error_msg
132
+ assert sub_spec.varkw == base_spec.varkw, error_msg
133
+ assert sub_spec.defaults == base_spec.defaults, (
134
+ error_msg + f"\n{sub_spec.defaults} != {base_spec.defaults}"
129
135
  )
136
+ assert sub_spec.kwonlyargs == base_spec.kwonlyargs, error_msg
137
+ assert sub_spec.kwonlydefaults == base_spec.kwonlydefaults, error_msg
138
+
139
+ # Assert that the typing of the implementation is equal to the base
140
+ for kwarg in sub_spec.annotations:
141
+ if kwarg == "return":
142
+ assert sub_spec.annotations[kwarg] == base_spec.annotations[kwarg]
143
+ else:
144
+ # The API currently marks everything as required, and optional args are configured as:
145
+ # arg: ArgType = None
146
+ # which is obviously incorrect.
147
+ # Implementations sometimes do this correctly:
148
+ # arg: ArgType | None = None
149
+ # These should be considered equal, so until the API is fixed, we remove any Optionals
150
+ # This also gives us the flexibility to correct the API without fixing all implementations at the same time
151
+ sub_type = _remove_optional(sub_spec.annotations[kwarg])
152
+ base_type = _remove_optional(base_spec.annotations[kwarg])
153
+ assert sub_type == base_type, (
154
+ f"Types for {kwarg} are different - {sub_type} instead of {base_type}"
155
+ )
156
+
130
157
  except AttributeError:
131
158
  # the function is not defined in the superclass
132
159
  pass
160
+
161
+
162
+ def _remove_optional(_type: type) -> list[type]:
163
+ if type(_type) == UnionType:
164
+ union_types = list(get_args(_type))
165
+ union_types.remove(NoneType)
166
+ return union_types
167
+ return [_type]
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.4.1.dev5'
21
- __version_tuple__ = version_tuple = (4, 4, 1, 'dev5')
20
+ __version__ = version = '4.4.1.dev7'
21
+ __version_tuple__ = version_tuple = (4, 4, 1, 'dev7')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: localstack-core
3
- Version: 4.4.1.dev5
3
+ Version: 4.4.1.dev7
4
4
  Summary: The core library and runtime of LocalStack
5
5
  Author-email: LocalStack Contributors <info@localstack.cloud>
6
6
  License-Expression: Apache-2.0
@@ -31,8 +31,8 @@ Requires-Dist: requests>=2.20.0
31
31
  Requires-Dist: semver>=2.10
32
32
  Requires-Dist: tailer>=0.4.1
33
33
  Provides-Extra: base-runtime
34
- Requires-Dist: boto3==1.38.8; extra == "base-runtime"
35
- Requires-Dist: botocore==1.38.8; extra == "base-runtime"
34
+ Requires-Dist: boto3==1.38.13; extra == "base-runtime"
35
+ Requires-Dist: botocore==1.38.13; extra == "base-runtime"
36
36
  Requires-Dist: awscrt>=0.13.14; extra == "base-runtime"
37
37
  Requires-Dist: cbor2>=5.5.0; extra == "base-runtime"
38
38
  Requires-Dist: dnspython>=1.16.0; extra == "base-runtime"
@@ -4,7 +4,7 @@ localstack/deprecations.py,sha256=mNXTebZ8kSbQjFKz0LbT-g1Kdr0CE8bhEgZfHV3IX0s,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=7NbkUKLN2lb-Z4J0R7gEIVanz7gOqvL9Y7xriyahj3s,524
7
+ localstack/version.py,sha256=2PjaOuy25y-YInevqasIsfHi0zcLnziSm-ciWTHGypc,524
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
@@ -30,7 +30,7 @@ localstack/aws/api/cloudwatch/__init__.py,sha256=Ep6Z3t6StIsKHCtvkvAroODVxxWvG5X
30
30
  localstack/aws/api/config/__init__.py,sha256=_34oLgPd2zFkD0EnDM4jVy90rmtW7CcVWtfHoVYAjxU,141276
31
31
  localstack/aws/api/dynamodb/__init__.py,sha256=ilFvq01MyOaHdrK9TTA_WQZ1291iGCWnXI-odC0yeyQ,91143
32
32
  localstack/aws/api/dynamodbstreams/__init__.py,sha256=Xfnce5gsHC4omBJrNsCi3F7TJpuvqn9K7rC5EL-y4UQ,6999
33
- localstack/aws/api/ec2/__init__.py,sha256=yhOI0jiJJDiklqlOkVrMzmh_Gbc25uTVim3nk5Q5x5U,899605
33
+ localstack/aws/api/ec2/__init__.py,sha256=szHdYiGcWtQZlTv0BfeHT86lQGY6M_xpHqhaCI2SgSs,908593
34
34
  localstack/aws/api/es/__init__.py,sha256=T5wz0U7jtm2ZjRJkkBHG8qRR8n2Hy51LeCAN25EeMjg,63675
35
35
  localstack/aws/api/events/__init__.py,sha256=da5KoBvoTs2iDLJ6y9y61KPpYg_WDAE28fwPsH4Clns,60629
36
36
  localstack/aws/api/firehose/__init__.py,sha256=iM9_VTHDwtqtupKPBCqAQIh6Xk9ziM4rEEsxPRMN6RM,58271
@@ -38,7 +38,7 @@ localstack/aws/api/iam/__init__.py,sha256=4d-fX9uElIfPB50HZu4fWukK5TUYAuYgkA0uRj
38
38
  localstack/aws/api/kinesis/__init__.py,sha256=xlRyrwavEaHByTEqbaUC3gLC66m4FSahK6-J3YMUd5U,28357
39
39
  localstack/aws/api/kms/__init__.py,sha256=IxHz17S0stwf2c2aNwrN0dWQAqXS8eb0rMiztgLHntI,54321
40
40
  localstack/aws/api/lambda_/__init__.py,sha256=ULOkQX0Nrbpaty0SiJPxkgiG1voqjbhqdVMAA6n4sqA,77829
41
- localstack/aws/api/logs/__init__.py,sha256=MVX-NOT3eHezNbvaA7Xbq3UUJDDRCXIxQThr_PT9zF8,82820
41
+ localstack/aws/api/logs/__init__.py,sha256=yJmXQlcUqGQNGxh5O7YTmawyBVCyo9k-6zsFk9gqaa0,82858
42
42
  localstack/aws/api/opensearch/__init__.py,sha256=yGG1TtB373ZVJ6JA8t4h6tfgOcJ-lOdv7W3J6sG3sWU,97556
43
43
  localstack/aws/api/pipes/__init__.py,sha256=pZMhYeqT6BxUk-pweK6TWS9gLdy7GJbQLfidyvuhBJA,33108
44
44
  localstack/aws/api/redshift/__init__.py,sha256=ItgcsfPYX6gqh46DEZtea4LyLYBG1qsWcrM8H0mSTj0,155612
@@ -1148,7 +1148,7 @@ localstack/services/transcribe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
1148
1148
  localstack/services/transcribe/models.py,sha256=bHCuNPrVQpmT_ETZLWVS3tchcJTfIqQM7Wj1vtwjZqY,376
1149
1149
  localstack/services/transcribe/packages.py,sha256=x3YkuYIhg0a3UaxizmEUmqPa_IkunaG3XV291CtrxYs,704
1150
1150
  localstack/services/transcribe/plugins.py,sha256=WKFW9LbAwJOGu6iRXyhK2vdRUvmgowMkefJPYxEkCOY,198
1151
- localstack/services/transcribe/provider.py,sha256=8N6VrecPRohg-jAG2IfbrZ6dN5o90rnEVmiyQP9-thM,15673
1151
+ localstack/services/transcribe/provider.py,sha256=khZsbhI7TQZviqbNyW81DDhYdxCQC2Y5irmbXgbbjsc,15701
1152
1152
  localstack/state/__init__.py,sha256=NMe0_TFQJm3Oo39iHk5OnqCHnEQYchXPHupUGTHrcqs,307
1153
1153
  localstack/state/core.py,sha256=J8gCieHH-By0CFUmeIud4BSJxna2Q_cElmzVe2dxqJo,4196
1154
1154
  localstack/state/inspect.py,sha256=vATK2Bw2u8h1dXWj-5q4esIjwlZ3CTVz2jPhhZngy2U,4236
@@ -1157,7 +1157,7 @@ localstack/state/snapshot.py,sha256=baLAHkL1ql0oFQ6Ch8DVjJImZ2qaSjXOVsDYWvCjg-k,
1157
1157
  localstack/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1158
1158
  localstack/testing/config.py,sha256=3rRbrM9v1RnbHhwOGTvcymDB7Qs1KMxEgaNHwKpOcb4,1239
1159
1159
  localstack/testing/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1160
- localstack/testing/aws/asf_utils.py,sha256=wfMGsD2thQ0gSUaEBZEh4iu1gqq5AAMpfq7Nd-VMGG4,5917
1160
+ localstack/testing/aws/asf_utils.py,sha256=oqx7jjYFdAUxDt1wSSUz3Z5p6TBFz4nGSctcZQIPMNM,7712
1161
1161
  localstack/testing/aws/cloudformation_utils.py,sha256=alTnLbTosyJVhm0CU-OLV_CbLPARLukdAU6SoclLLoY,1466
1162
1162
  localstack/testing/aws/eventbus_utils.py,sha256=iD9fTRlVML8NEMIL3_3UxE3gxs6MBCRht09VozNf52w,1733
1163
1163
  localstack/testing/aws/lambda_utils.py,sha256=HrnADAo88n4zean-DBWq6jWE6hiTp4PJ8vbMVcvEN3k,12372
@@ -1279,13 +1279,13 @@ localstack/utils/server/tcp_proxy.py,sha256=rR6d5jR0ozDvIlpHiqW0cfyY9a2fRGdOzyA8
1279
1279
  localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1280
1280
  localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
1281
1281
  localstack/utils/xray/traceid.py,sha256=SQSsMV2rhbTNK6ceIoozZYuGU7Fg687EXcgqxoDl1Fw,1106
1282
- localstack_core-4.4.1.dev5.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
1283
- localstack_core-4.4.1.dev5.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
1284
- localstack_core-4.4.1.dev5.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
1285
- localstack_core-4.4.1.dev5.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
1286
- localstack_core-4.4.1.dev5.dist-info/METADATA,sha256=t025oinJvEmFVH0e_ipH-chkYWfJAQvOt3_PmWrkxJ8,5527
1287
- localstack_core-4.4.1.dev5.dist-info/WHEEL,sha256=0CuiUZ_p9E4cD6NyLD6UG80LBXYyiSYZOKDm5lp32xk,91
1288
- localstack_core-4.4.1.dev5.dist-info/entry_points.txt,sha256=K5M7il9Vwev64SlQiOaZVUhYpVNIE6IFHiWJ0znpbHQ,20491
1289
- localstack_core-4.4.1.dev5.dist-info/plux.json,sha256=1zpHLhCtrsMa45FZit38LcOIzLDPvTIizfKw5elXED0,20712
1290
- localstack_core-4.4.1.dev5.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
1291
- localstack_core-4.4.1.dev5.dist-info/RECORD,,
1282
+ localstack_core-4.4.1.dev7.data/scripts/localstack,sha256=WyL11vp5CkuP79iIR-L8XT7Cj8nvmxX7XRAgxhbmXNE,529
1283
+ localstack_core-4.4.1.dev7.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
1284
+ localstack_core-4.4.1.dev7.data/scripts/localstack.bat,sha256=tlzZTXtveHkMX_s_fa7VDfvdNdS8iVpEz2ER3uk9B_c,29
1285
+ localstack_core-4.4.1.dev7.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
1286
+ localstack_core-4.4.1.dev7.dist-info/METADATA,sha256=K9se7Um6PfTve6uj-OiFpNMML7v6SnP3uC3-pb4GTs0,5529
1287
+ localstack_core-4.4.1.dev7.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
1288
+ localstack_core-4.4.1.dev7.dist-info/entry_points.txt,sha256=K5M7il9Vwev64SlQiOaZVUhYpVNIE6IFHiWJ0znpbHQ,20491
1289
+ localstack_core-4.4.1.dev7.dist-info/plux.json,sha256=ojmox0ipROLHlGsf4txGmv8Z9jU__pNhqf0vSZrAPI0,20712
1290
+ localstack_core-4.4.1.dev7.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
1291
+ localstack_core-4.4.1.dev7.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.3.1)
2
+ Generator: setuptools (80.4.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -0,0 +1 @@
1
+ {"localstack.cloudformation.resource_providers": ["AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::SSM::Parameter=localstack.services.ssm.resource_providers.aws_ssm_parameter_plugin:SSMParameterProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "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::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "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::EC2::Instance=localstack.services.ec2.resource_providers.aws_ec2_instance_plugin:EC2InstanceProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin"], "localstack.packages": ["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", "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", "kinesis-mock/community=localstack.services.kinesis.plugins:kinesismock_package", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package", "jpype-jsonata/community=localstack.services.stepfunctions.plugins:jpype_jsonata_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_start": ["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", "conditionally_enable_debugger=localstack.dev.debugger.plugins:conditionally_enable_debugger", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "_run_init_scripts_on_start=localstack.runtime.init:_run_init_scripts_on_start", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui", "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", "delete_cached_certificate=localstack.plugins:delete_cached_certificate", "deprecation_warnings=localstack.plugins:deprecation_warnings", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info"], "localstack.hooks.on_infra_shutdown": ["publish_metrics=localstack.utils.analytics.metrics:publish_metrics", "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", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "stop_server=localstack.dns.plugins:stop_server"], "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.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "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.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"]}
@@ -1 +0,0 @@
1
- {"localstack.cloudformation.resource_providers": ["AWS::Logs::LogGroup=localstack.services.logs.resource_providers.aws_logs_loggroup_plugin:LogsLogGroupProviderPlugin", "AWS::EC2::TransitGateway=localstack.services.ec2.resource_providers.aws_ec2_transitgateway_plugin:EC2TransitGatewayProviderPlugin", "AWS::Logs::SubscriptionFilter=localstack.services.logs.resource_providers.aws_logs_subscriptionfilter_plugin:LogsSubscriptionFilterProviderPlugin", "AWS::EC2::VPCGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_vpcgatewayattachment_plugin:EC2VPCGatewayAttachmentProviderPlugin", "AWS::SQS::Queue=localstack.services.sqs.resource_providers.aws_sqs_queue_plugin:SQSQueueProviderPlugin", "AWS::KinesisFirehose::DeliveryStream=localstack.services.kinesisfirehose.resource_providers.aws_kinesisfirehose_deliverystream_plugin:KinesisFirehoseDeliveryStreamProviderPlugin", "AWS::Lambda::Permission=localstack.services.lambda_.resource_providers.aws_lambda_permission_plugin:LambdaPermissionProviderPlugin", "AWS::StepFunctions::Activity=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_activity_plugin:StepFunctionsActivityProviderPlugin", "AWS::ApiGateway::Deployment=localstack.services.apigateway.resource_providers.aws_apigateway_deployment_plugin:ApiGatewayDeploymentProviderPlugin", "AWS::ApiGateway::UsagePlanKey=localstack.services.apigateway.resource_providers.aws_apigateway_usageplankey_plugin:ApiGatewayUsagePlanKeyProviderPlugin", "AWS::Lambda::CodeSigningConfig=localstack.services.lambda_.resource_providers.aws_lambda_codesigningconfig_plugin:LambdaCodeSigningConfigProviderPlugin", "AWS::Lambda::Alias=localstack.services.lambda_.resource_providers.lambda_alias_plugin:LambdaAliasProviderPlugin", "AWS::ApiGateway::Resource=localstack.services.apigateway.resource_providers.aws_apigateway_resource_plugin:ApiGatewayResourceProviderPlugin", "AWS::Scheduler::Schedule=localstack.services.scheduler.resource_providers.aws_scheduler_schedule_plugin:SchedulerScheduleProviderPlugin", "AWS::SNS::TopicPolicy=localstack.services.sns.resource_providers.aws_sns_topicpolicy_plugin:SNSTopicPolicyProviderPlugin", "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::ApiGateway::Method=localstack.services.apigateway.resource_providers.aws_apigateway_method_plugin:ApiGatewayMethodProviderPlugin", "AWS::SSM::MaintenanceWindow=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindow_plugin:SSMMaintenanceWindowProviderPlugin", "AWS::SES::EmailIdentity=localstack.services.ses.resource_providers.aws_ses_emailidentity_plugin:SESEmailIdentityProviderPlugin", "AWS::SSM::PatchBaseline=localstack.services.ssm.resource_providers.aws_ssm_patchbaseline_plugin:SSMPatchBaselineProviderPlugin", "AWS::CloudFormation::WaitCondition=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitcondition_plugin:CloudFormationWaitConditionProviderPlugin", "AWS::ApiGateway::Model=localstack.services.apigateway.resource_providers.aws_apigateway_model_plugin:ApiGatewayModelProviderPlugin", "AWS::IAM::Role=localstack.services.iam.resource_providers.aws_iam_role_plugin:IAMRoleProviderPlugin", "AWS::Kinesis::Stream=localstack.services.kinesis.resource_providers.aws_kinesis_stream_plugin:KinesisStreamProviderPlugin", "AWS::KMS::Key=localstack.services.kms.resource_providers.aws_kms_key_plugin:KMSKeyProviderPlugin", "AWS::EC2::SubnetRouteTableAssociation=localstack.services.ec2.resource_providers.aws_ec2_subnetroutetableassociation_plugin:EC2SubnetRouteTableAssociationProviderPlugin", "AWS::EC2::SecurityGroup=localstack.services.ec2.resource_providers.aws_ec2_securitygroup_plugin:EC2SecurityGroupProviderPlugin", "AWS::ApiGateway::ApiKey=localstack.services.apigateway.resource_providers.aws_apigateway_apikey_plugin:ApiGatewayApiKeyProviderPlugin", "AWS::CDK::Metadata=localstack.services.cdk.resource_providers.cdk_metadata_plugin:LambdaAliasProviderPlugin", "AWS::OpenSearchService::Domain=localstack.services.opensearch.resource_providers.aws_opensearchservice_domain_plugin:OpenSearchServiceDomainProviderPlugin", "AWS::SSM::MaintenanceWindowTarget=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtarget_plugin:SSMMaintenanceWindowTargetProviderPlugin", "AWS::ECR::Repository=localstack.services.ecr.resource_providers.aws_ecr_repository_plugin:ECRRepositoryProviderPlugin", "AWS::EC2::RouteTable=localstack.services.ec2.resource_providers.aws_ec2_routetable_plugin:EC2RouteTableProviderPlugin", "AWS::EC2::NatGateway=localstack.services.ec2.resource_providers.aws_ec2_natgateway_plugin:EC2NatGatewayProviderPlugin", "AWS::DynamoDB::GlobalTable=localstack.services.dynamodb.resource_providers.aws_dynamodb_globaltable_plugin:DynamoDBGlobalTableProviderPlugin", "AWS::StepFunctions::StateMachine=localstack.services.stepfunctions.resource_providers.aws_stepfunctions_statemachine_plugin:StepFunctionsStateMachineProviderPlugin", "AWS::EC2::Subnet=localstack.services.ec2.resource_providers.aws_ec2_subnet_plugin:EC2SubnetProviderPlugin", "AWS::Lambda::Function=localstack.services.lambda_.resource_providers.aws_lambda_function_plugin:LambdaFunctionProviderPlugin", "AWS::Redshift::Cluster=localstack.services.redshift.resource_providers.aws_redshift_cluster_plugin:RedshiftClusterProviderPlugin", "AWS::Lambda::Version=localstack.services.lambda_.resource_providers.aws_lambda_version_plugin:LambdaVersionProviderPlugin", "AWS::Lambda::EventSourceMapping=localstack.services.lambda_.resource_providers.aws_lambda_eventsourcemapping_plugin:LambdaEventSourceMappingProviderPlugin", "AWS::IAM::InstanceProfile=localstack.services.iam.resource_providers.aws_iam_instanceprofile_plugin:IAMInstanceProfileProviderPlugin", "AWS::Route53::RecordSet=localstack.services.route53.resource_providers.aws_route53_recordset_plugin:Route53RecordSetProviderPlugin", "AWS::EC2::VPCEndpoint=localstack.services.ec2.resource_providers.aws_ec2_vpcendpoint_plugin:EC2VPCEndpointProviderPlugin", "AWS::IAM::ServerCertificate=localstack.services.iam.resource_providers.aws_iam_servercertificate_plugin:IAMServerCertificateProviderPlugin", "AWS::EC2::InternetGateway=localstack.services.ec2.resource_providers.aws_ec2_internetgateway_plugin:EC2InternetGatewayProviderPlugin", "AWS::IAM::Policy=localstack.services.iam.resource_providers.aws_iam_policy_plugin:IAMPolicyProviderPlugin", "AWS::Events::EventBus=localstack.services.events.resource_providers.aws_events_eventbus_plugin:EventsEventBusProviderPlugin", "AWS::SecretsManager::Secret=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secret_plugin:SecretsManagerSecretProviderPlugin", "AWS::Lambda::LayerVersionPermission=localstack.services.lambda_.resource_providers.aws_lambda_layerversionpermission_plugin:LambdaLayerVersionPermissionProviderPlugin", "AWS::EC2::Route=localstack.services.ec2.resource_providers.aws_ec2_route_plugin:EC2RouteProviderPlugin", "AWS::EC2::NetworkAcl=localstack.services.ec2.resource_providers.aws_ec2_networkacl_plugin:EC2NetworkAclProviderPlugin", "AWS::IAM::ManagedPolicy=localstack.services.iam.resource_providers.aws_iam_managedpolicy_plugin:IAMManagedPolicyProviderPlugin", "AWS::CloudFormation::Stack=localstack.services.cloudformation.resource_providers.aws_cloudformation_stack_plugin:CloudFormationStackProviderPlugin", "AWS::ResourceGroups::Group=localstack.services.resource_groups.resource_providers.aws_resourcegroups_group_plugin:ResourceGroupsGroupProviderPlugin", "AWS::Kinesis::StreamConsumer=localstack.services.kinesis.resource_providers.aws_kinesis_streamconsumer_plugin:KinesisStreamConsumerProviderPlugin", "AWS::EC2::TransitGatewayAttachment=localstack.services.ec2.resource_providers.aws_ec2_transitgatewayattachment_plugin:EC2TransitGatewayAttachmentProviderPlugin", "AWS::EC2::KeyPair=localstack.services.ec2.resource_providers.aws_ec2_keypair_plugin:EC2KeyPairProviderPlugin", "AWS::IAM::User=localstack.services.iam.resource_providers.aws_iam_user_plugin:IAMUserProviderPlugin", "AWS::CloudFormation::WaitConditionHandle=localstack.services.cloudformation.resource_providers.aws_cloudformation_waitconditionhandle_plugin:CloudFormationWaitConditionHandleProviderPlugin", "AWS::CloudFormation::Macro=localstack.services.cloudformation.resource_providers.aws_cloudformation_macro_plugin:CloudFormationMacroProviderPlugin", "AWS::ApiGateway::DomainName=localstack.services.apigateway.resource_providers.aws_apigateway_domainname_plugin:ApiGatewayDomainNameProviderPlugin", "AWS::CertificateManager::Certificate=localstack.services.certificatemanager.resource_providers.aws_certificatemanager_certificate_plugin:CertificateManagerCertificateProviderPlugin", "AWS::Scheduler::ScheduleGroup=localstack.services.scheduler.resource_providers.aws_scheduler_schedulegroup_plugin:SchedulerScheduleGroupProviderPlugin", "AWS::ApiGateway::BasePathMapping=localstack.services.apigateway.resource_providers.aws_apigateway_basepathmapping_plugin:ApiGatewayBasePathMappingProviderPlugin", "AWS::IAM::Group=localstack.services.iam.resource_providers.aws_iam_group_plugin:IAMGroupProviderPlugin", "AWS::ApiGateway::Stage=localstack.services.apigateway.resource_providers.aws_apigateway_stage_plugin:ApiGatewayStageProviderPlugin", "AWS::IAM::ServiceLinkedRole=localstack.services.iam.resource_providers.aws_iam_servicelinkedrole_plugin:IAMServiceLinkedRoleProviderPlugin", "AWS::IAM::AccessKey=localstack.services.iam.resource_providers.aws_iam_accesskey_plugin:IAMAccessKeyProviderPlugin", "AWS::Lambda::LayerVersion=localstack.services.lambda_.resource_providers.aws_lambda_layerversion_plugin:LambdaLayerVersionProviderPlugin", "AWS::Lambda::EventInvokeConfig=localstack.services.lambda_.resource_providers.aws_lambda_eventinvokeconfig_plugin:LambdaEventInvokeConfigProviderPlugin", "AWS::ApiGateway::RequestValidator=localstack.services.apigateway.resource_providers.aws_apigateway_requestvalidator_plugin:ApiGatewayRequestValidatorProviderPlugin", "AWS::Events::Connection=localstack.services.events.resource_providers.aws_events_connection_plugin:EventsConnectionProviderPlugin", "AWS::SNS::Subscription=localstack.services.sns.resource_providers.aws_sns_subscription_plugin:SNSSubscriptionProviderPlugin", "AWS::CloudWatch::Alarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_alarm_plugin:CloudWatchAlarmProviderPlugin", "AWS::Events::ApiDestination=localstack.services.events.resource_providers.aws_events_apidestination_plugin:EventsApiDestinationProviderPlugin", "AWS::Events::Rule=localstack.services.events.resource_providers.aws_events_rule_plugin:EventsRuleProviderPlugin", "AWS::EC2::VPC=localstack.services.ec2.resource_providers.aws_ec2_vpc_plugin:EC2VPCProviderPlugin", "AWS::SNS::Topic=localstack.services.sns.resource_providers.aws_sns_topic_plugin:SNSTopicProviderPlugin", "AWS::SecretsManager::ResourcePolicy=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_resourcepolicy_plugin:SecretsManagerResourcePolicyProviderPlugin", "AWS::Lambda::Url=localstack.services.lambda_.resource_providers.aws_lambda_url_plugin:LambdaUrlProviderPlugin", "AWS::DynamoDB::Table=localstack.services.dynamodb.resource_providers.aws_dynamodb_table_plugin:DynamoDBTableProviderPlugin", "AWS::SQS::QueuePolicy=localstack.services.sqs.resource_providers.aws_sqs_queuepolicy_plugin:SQSQueuePolicyProviderPlugin", "AWS::Logs::LogStream=localstack.services.logs.resource_providers.aws_logs_logstream_plugin:LogsLogStreamProviderPlugin", "AWS::SecretsManager::RotationSchedule=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_rotationschedule_plugin:SecretsManagerRotationScheduleProviderPlugin", "AWS::KMS::Alias=localstack.services.kms.resource_providers.aws_kms_alias_plugin:KMSAliasProviderPlugin", "AWS::ApiGateway::UsagePlan=localstack.services.apigateway.resource_providers.aws_apigateway_usageplan_plugin:ApiGatewayUsagePlanProviderPlugin", "AWS::Route53::HealthCheck=localstack.services.route53.resource_providers.aws_route53_healthcheck_plugin:Route53HealthCheckProviderPlugin", "AWS::SSM::MaintenanceWindowTask=localstack.services.ssm.resource_providers.aws_ssm_maintenancewindowtask_plugin:SSMMaintenanceWindowTaskProviderPlugin", "AWS::EC2::DHCPOptions=localstack.services.ec2.resource_providers.aws_ec2_dhcpoptions_plugin:EC2DHCPOptionsProviderPlugin", "AWS::EC2::PrefixList=localstack.services.ec2.resource_providers.aws_ec2_prefixlist_plugin:EC2PrefixListProviderPlugin", "AWS::ApiGateway::GatewayResponse=localstack.services.apigateway.resource_providers.aws_apigateway_gatewayresponse_plugin:ApiGatewayGatewayResponseProviderPlugin", "AWS::CloudWatch::CompositeAlarm=localstack.services.cloudwatch.resource_providers.aws_cloudwatch_compositealarm_plugin:CloudWatchCompositeAlarmProviderPlugin", "AWS::ApiGateway::Account=localstack.services.apigateway.resource_providers.aws_apigateway_account_plugin:ApiGatewayAccountProviderPlugin", "AWS::ApiGateway::RestApi=localstack.services.apigateway.resource_providers.aws_apigateway_restapi_plugin:ApiGatewayRestApiProviderPlugin", "AWS::SecretsManager::SecretTargetAttachment=localstack.services.secretsmanager.resource_providers.aws_secretsmanager_secrettargetattachment_plugin:SecretsManagerSecretTargetAttachmentProviderPlugin", "AWS::Events::EventBusPolicy=localstack.services.events.resource_providers.aws_events_eventbuspolicy_plugin:EventsEventBusPolicyProviderPlugin", "AWS::S3::BucketPolicy=localstack.services.s3.resource_providers.aws_s3_bucketpolicy_plugin:S3BucketPolicyProviderPlugin", "AWS::S3::Bucket=localstack.services.s3.resource_providers.aws_s3_bucket_plugin:S3BucketProviderPlugin", "AWS::Elasticsearch::Domain=localstack.services.opensearch.resource_providers.aws_elasticsearch_domain_plugin:ElasticsearchDomainProviderPlugin"], "localstack.packages": ["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", "opensearch/community=localstack.services.opensearch.plugins:opensearch_package", "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", "ffmpeg/community=localstack.packages.plugins:ffmpeg_package", "java/community=localstack.packages.plugins:java_package", "terraform/community=localstack.packages.plugins:terraform_package"], "localstack.hooks.on_infra_start": ["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", "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", "_publish_config_as_analytics_event=localstack.runtime.analytics:_publish_config_as_analytics_event", "_publish_container_info=localstack.runtime.analytics:_publish_container_info", "setup_dns_configuration_on_host=localstack.dns.plugins:setup_dns_configuration_on_host", "start_dns_server=localstack.dns.plugins:start_dns_server", "apply_aws_runtime_patches=localstack.aws.patches:apply_aws_runtime_patches", "apply_runtime_patches=localstack.runtime.patches:apply_runtime_patches", "register_swagger_endpoints=localstack.http.resources.swagger.plugins:register_swagger_endpoints", "register_cloudformation_deploy_ui=localstack.services.cloudformation.plugins:register_cloudformation_deploy_ui"], "localstack.hooks.on_infra_shutdown": ["remove_custom_endpoints=localstack.services.lambda_.plugins:remove_custom_endpoints", "_run_init_scripts_on_shutdown=localstack.runtime.init:_run_init_scripts_on_shutdown", "publish_metrics=localstack.utils.analytics.metrics:publish_metrics", "stop_server=localstack.dns.plugins:stop_server", "run_on_after_service_shutdown_handlers=localstack.runtime.shutdown:run_on_after_service_shutdown_handlers", "run_shutdown_handlers=localstack.runtime.shutdown:run_shutdown_handlers", "shutdown_services=localstack.runtime.shutdown:shutdown_services"], "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.openapi.spec": ["localstack=localstack.plugins:CoreOASPlugin"], "localstack.runtime.server": ["hypercorn=localstack.runtime.server.plugins:HypercornRuntimeServerPlugin", "twisted=localstack.runtime.server.plugins:TwistedRuntimeServerPlugin"], "localstack.hooks.configure_localstack_container": ["_mount_machine_file=localstack.utils.analytics.metadata:_mount_machine_file"], "localstack.hooks.prepare_host": ["prepare_host_machine_id=localstack.utils.analytics.metadata:prepare_host_machine_id"], "localstack.runtime.components": ["aws=localstack.aws.components:AwsComponents"], "localstack.lambda.runtime_executor": ["docker=localstack.services.lambda_.invocation.plugins:DockerRuntimeExecutorPlugin"], "localstack.aws.provider": ["acm:default=localstack.services.providers:acm", "apigateway:default=localstack.services.providers:apigateway", "apigateway:legacy=localstack.services.providers:apigateway_legacy", "apigateway:next_gen=localstack.services.providers:apigateway_next_gen", "config:default=localstack.services.providers:awsconfig", "cloudformation:default=localstack.services.providers:cloudformation", "cloudformation:engine-v2=localstack.services.providers:cloudformation_v2", "cloudwatch:default=localstack.services.providers:cloudwatch", "cloudwatch:v1=localstack.services.providers:cloudwatch_v1", "cloudwatch:v2=localstack.services.providers:cloudwatch_v2", "dynamodb:default=localstack.services.providers:dynamodb", "dynamodb:v2=localstack.services.providers:dynamodb_v2", "dynamodbstreams:default=localstack.services.providers:dynamodbstreams", "dynamodbstreams:v2=localstack.services.providers:dynamodbstreams_v2", "ec2:default=localstack.services.providers:ec2", "es:default=localstack.services.providers:es", "events:default=localstack.services.providers:events", "events:legacy=localstack.services.providers:events_legacy", "events:v1=localstack.services.providers:events_v1", "events:v2=localstack.services.providers:events_v2", "firehose:default=localstack.services.providers:firehose", "iam:default=localstack.services.providers:iam", "kinesis:default=localstack.services.providers:kinesis", "kms:default=localstack.services.providers:kms", "lambda:default=localstack.services.providers:lambda_", "lambda:asf=localstack.services.providers:lambda_asf", "lambda:v2=localstack.services.providers:lambda_v2", "logs:default=localstack.services.providers:logs", "opensearch:default=localstack.services.providers:opensearch", "redshift:default=localstack.services.providers:redshift", "resource-groups:default=localstack.services.providers:resource_groups", "resourcegroupstaggingapi:default=localstack.services.providers:resourcegroupstaggingapi", "route53:default=localstack.services.providers:route53", "route53resolver:default=localstack.services.providers:route53resolver", "s3:default=localstack.services.providers:s3", "s3control:default=localstack.services.providers:s3control", "scheduler:default=localstack.services.providers:scheduler", "secretsmanager:default=localstack.services.providers:secretsmanager", "ses:default=localstack.services.providers:ses", "sns:default=localstack.services.providers:sns", "sqs:default=localstack.services.providers:sqs", "ssm:default=localstack.services.providers:ssm", "stepfunctions:default=localstack.services.providers:stepfunctions", "stepfunctions:v2=localstack.services.providers:stepfunctions_v2", "sts:default=localstack.services.providers:sts", "support:default=localstack.services.providers:support", "swf:default=localstack.services.providers:swf", "transcribe:default=localstack.services.providers:transcribe"]}