localstack-core 4.4.1.dev59__py3-none-any.whl → 4.4.1.dev65__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.
- localstack/aws/api/ec2/__init__.py +70 -2
- localstack/aws/api/s3/__init__.py +2 -0
- localstack/services/cloudformation/engine/v2/change_set_model.py +107 -146
- localstack/services/cloudformation/engine/v2/change_set_model_describer.py +41 -22
- localstack/services/cloudformation/engine/v2/change_set_model_executor.py +51 -23
- localstack/services/cloudformation/engine/v2/change_set_model_preproc.py +244 -123
- localstack/services/cloudformation/engine/v2/change_set_model_visitor.py +16 -1
- localstack/services/s3/provider.py +3 -2
- localstack/services/sns/provider.py +27 -9
- localstack/testing/pytest/cloudformation/fixtures.py +13 -1
- localstack/version.py +2 -2
- {localstack_core-4.4.1.dev59.dist-info → localstack_core-4.4.1.dev65.dist-info}/METADATA +3 -3
- {localstack_core-4.4.1.dev59.dist-info → localstack_core-4.4.1.dev65.dist-info}/RECORD +21 -21
- localstack_core-4.4.1.dev65.dist-info/plux.json +1 -0
- localstack_core-4.4.1.dev59.dist-info/plux.json +0 -1
- {localstack_core-4.4.1.dev59.data → localstack_core-4.4.1.dev65.data}/scripts/localstack +0 -0
- {localstack_core-4.4.1.dev59.data → localstack_core-4.4.1.dev65.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.4.1.dev59.data → localstack_core-4.4.1.dev65.data}/scripts/localstack.bat +0 -0
- {localstack_core-4.4.1.dev59.dist-info → localstack_core-4.4.1.dev65.dist-info}/WHEEL +0 -0
- {localstack_core-4.4.1.dev59.dist-info → localstack_core-4.4.1.dev65.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.4.1.dev59.dist-info → localstack_core-4.4.1.dev65.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.4.1.dev59.dist-info → localstack_core-4.4.1.dev65.dist-info}/top_level.txt +0 -0
@@ -3342,6 +3342,14 @@ class SnapshotLocationEnum(StrEnum):
|
|
3342
3342
|
local = "local"
|
3343
3343
|
|
3344
3344
|
|
3345
|
+
class SnapshotReturnCodes(StrEnum):
|
3346
|
+
success = "success"
|
3347
|
+
skipped = "skipped"
|
3348
|
+
missing_permissions = "missing-permissions"
|
3349
|
+
internal_error = "internal-error"
|
3350
|
+
client_error = "client-error"
|
3351
|
+
|
3352
|
+
|
3345
3353
|
class SnapshotState(StrEnum):
|
3346
3354
|
pending = "pending"
|
3347
3355
|
completed = "completed"
|
@@ -3905,6 +3913,12 @@ class VpnStaticRouteSource(StrEnum):
|
|
3905
3913
|
Static = "Static"
|
3906
3914
|
|
3907
3915
|
|
3916
|
+
class VpnTunnelProvisioningStatus(StrEnum):
|
3917
|
+
available = "available"
|
3918
|
+
pending = "pending"
|
3919
|
+
failed = "failed"
|
3920
|
+
|
3921
|
+
|
3908
3922
|
class WeekDay(StrEnum):
|
3909
3923
|
sunday = "sunday"
|
3910
3924
|
monday = "monday"
|
@@ -4538,6 +4552,18 @@ class ActiveInstance(TypedDict, total=False):
|
|
4538
4552
|
ActiveInstanceSet = List[ActiveInstance]
|
4539
4553
|
|
4540
4554
|
|
4555
|
+
class ActiveVpnTunnelStatus(TypedDict, total=False):
|
4556
|
+
Phase1EncryptionAlgorithm: Optional[String]
|
4557
|
+
Phase2EncryptionAlgorithm: Optional[String]
|
4558
|
+
Phase1IntegrityAlgorithm: Optional[String]
|
4559
|
+
Phase2IntegrityAlgorithm: Optional[String]
|
4560
|
+
Phase1DHGroup: Optional[Integer]
|
4561
|
+
Phase2DHGroup: Optional[Integer]
|
4562
|
+
IkeVersion: Optional[String]
|
4563
|
+
ProvisioningStatus: Optional[VpnTunnelProvisioningStatus]
|
4564
|
+
ProvisioningStatusReason: Optional[String]
|
4565
|
+
|
4566
|
+
|
4541
4567
|
class AddIpamOperatingRegion(TypedDict, total=False):
|
4542
4568
|
RegionName: Optional[String]
|
4543
4569
|
|
@@ -10236,6 +10262,7 @@ class CreateVpnConnectionRequest(ServiceRequest):
|
|
10236
10262
|
VpnGatewayId: Optional[VpnGatewayId]
|
10237
10263
|
TransitGatewayId: Optional[TransitGatewayId]
|
10238
10264
|
TagSpecifications: Optional[TagSpecificationList]
|
10265
|
+
PreSharedKeyStorage: Optional[String]
|
10239
10266
|
DryRun: Optional[Boolean]
|
10240
10267
|
Options: Optional[VpnConnectionOptionsSpecification]
|
10241
10268
|
|
@@ -10364,6 +10391,7 @@ class VpnConnection(TypedDict, total=False):
|
|
10364
10391
|
Routes: Optional[VpnStaticRouteList]
|
10365
10392
|
Tags: Optional[TagList]
|
10366
10393
|
VgwTelemetry: Optional[VgwTelemetryList]
|
10394
|
+
PreSharedKeyArn: Optional[String]
|
10367
10395
|
VpnConnectionId: Optional[String]
|
10368
10396
|
State: Optional[VpnState]
|
10369
10397
|
CustomerGatewayConfiguration: Optional[customerGatewayConfiguration]
|
@@ -10968,6 +10996,14 @@ class DeleteSnapshotRequest(ServiceRequest):
|
|
10968
10996
|
DryRun: Optional[Boolean]
|
10969
10997
|
|
10970
10998
|
|
10999
|
+
class DeleteSnapshotReturnCode(TypedDict, total=False):
|
11000
|
+
SnapshotId: Optional[SnapshotId]
|
11001
|
+
ReturnCode: Optional[SnapshotReturnCodes]
|
11002
|
+
|
11003
|
+
|
11004
|
+
DeleteSnapshotResultSet = List[DeleteSnapshotReturnCode]
|
11005
|
+
|
11006
|
+
|
10971
11007
|
class DeleteSpotDatafeedSubscriptionRequest(ServiceRequest):
|
10972
11008
|
DryRun: Optional[Boolean]
|
10973
11009
|
|
@@ -11300,11 +11336,13 @@ class DeprovisionPublicIpv4PoolCidrResult(TypedDict, total=False):
|
|
11300
11336
|
|
11301
11337
|
class DeregisterImageRequest(ServiceRequest):
|
11302
11338
|
ImageId: ImageId
|
11339
|
+
DeleteAssociatedSnapshots: Optional[Boolean]
|
11303
11340
|
DryRun: Optional[Boolean]
|
11304
11341
|
|
11305
11342
|
|
11306
11343
|
class DeregisterImageResult(TypedDict, total=False):
|
11307
|
-
|
11344
|
+
Return: Optional[Boolean]
|
11345
|
+
DeleteSnapshotResults: Optional[DeleteSnapshotResultSet]
|
11308
11346
|
|
11309
11347
|
|
11310
11348
|
InstanceTagKeySet = List[String]
|
@@ -16904,6 +16942,16 @@ class ExportVerifiedAccessInstanceClientConfigurationResult(TypedDict, total=Fal
|
|
16904
16942
|
OpenVpnConfigurations: Optional[VerifiedAccessInstanceOpenVpnClientConfigurationList]
|
16905
16943
|
|
16906
16944
|
|
16945
|
+
class GetActiveVpnTunnelStatusRequest(ServiceRequest):
|
16946
|
+
VpnConnectionId: VpnConnectionId
|
16947
|
+
VpnTunnelOutsideIpAddress: String
|
16948
|
+
DryRun: Optional[Boolean]
|
16949
|
+
|
16950
|
+
|
16951
|
+
class GetActiveVpnTunnelStatusResult(TypedDict, total=False):
|
16952
|
+
ActiveVpnTunnelStatus: Optional[ActiveVpnTunnelStatus]
|
16953
|
+
|
16954
|
+
|
16907
16955
|
class GetAllowedImagesSettingsRequest(ServiceRequest):
|
16908
16956
|
DryRun: Optional[Boolean]
|
16909
16957
|
|
@@ -17930,6 +17978,7 @@ class GetVpnConnectionDeviceSampleConfigurationRequest(ServiceRequest):
|
|
17930
17978
|
VpnConnectionId: VpnConnectionId
|
17931
17979
|
VpnConnectionDeviceTypeId: VpnConnectionDeviceTypeId
|
17932
17980
|
InternetKeyExchangeVersion: Optional[String]
|
17981
|
+
SampleType: Optional[String]
|
17933
17982
|
DryRun: Optional[Boolean]
|
17934
17983
|
|
17935
17984
|
|
@@ -19487,6 +19536,7 @@ class ModifyVpnTunnelOptionsRequest(ServiceRequest):
|
|
19487
19536
|
TunnelOptions: ModifyVpnTunnelOptionsSpecification
|
19488
19537
|
DryRun: Optional[Boolean]
|
19489
19538
|
SkipTunnelReplacement: Optional[Boolean]
|
19539
|
+
PreSharedKeyStorage: Optional[String]
|
19490
19540
|
|
19491
19541
|
|
19492
19542
|
class ModifyVpnTunnelOptionsResult(TypedDict, total=False):
|
@@ -23506,7 +23556,12 @@ class Ec2Api:
|
|
23506
23556
|
|
23507
23557
|
@handler("DeregisterImage")
|
23508
23558
|
def deregister_image(
|
23509
|
-
self,
|
23559
|
+
self,
|
23560
|
+
context: RequestContext,
|
23561
|
+
image_id: ImageId,
|
23562
|
+
delete_associated_snapshots: Boolean | None = None,
|
23563
|
+
dry_run: Boolean | None = None,
|
23564
|
+
**kwargs,
|
23510
23565
|
) -> DeregisterImageResult:
|
23511
23566
|
raise NotImplementedError
|
23512
23567
|
|
@@ -26315,6 +26370,17 @@ class Ec2Api:
|
|
26315
26370
|
) -> ExportVerifiedAccessInstanceClientConfigurationResult:
|
26316
26371
|
raise NotImplementedError
|
26317
26372
|
|
26373
|
+
@handler("GetActiveVpnTunnelStatus")
|
26374
|
+
def get_active_vpn_tunnel_status(
|
26375
|
+
self,
|
26376
|
+
context: RequestContext,
|
26377
|
+
vpn_connection_id: VpnConnectionId,
|
26378
|
+
vpn_tunnel_outside_ip_address: String,
|
26379
|
+
dry_run: Boolean | None = None,
|
26380
|
+
**kwargs,
|
26381
|
+
) -> GetActiveVpnTunnelStatusResult:
|
26382
|
+
raise NotImplementedError
|
26383
|
+
|
26318
26384
|
@handler("GetAllowedImagesSettings")
|
26319
26385
|
def get_allowed_images_settings(
|
26320
26386
|
self, context: RequestContext, dry_run: Boolean | None = None, **kwargs
|
@@ -26918,6 +26984,7 @@ class Ec2Api:
|
|
26918
26984
|
vpn_connection_id: VpnConnectionId,
|
26919
26985
|
vpn_connection_device_type_id: VpnConnectionDeviceTypeId,
|
26920
26986
|
internet_key_exchange_version: String | None = None,
|
26987
|
+
sample_type: String | None = None,
|
26921
26988
|
dry_run: Boolean | None = None,
|
26922
26989
|
**kwargs,
|
26923
26990
|
) -> GetVpnConnectionDeviceSampleConfigurationResult:
|
@@ -28036,6 +28103,7 @@ class Ec2Api:
|
|
28036
28103
|
tunnel_options: ModifyVpnTunnelOptionsSpecification,
|
28037
28104
|
dry_run: Boolean | None = None,
|
28038
28105
|
skip_tunnel_replacement: Boolean | None = None,
|
28106
|
+
pre_shared_key_storage: String | None = None,
|
28039
28107
|
**kwargs,
|
28040
28108
|
) -> ModifyVpnTunnelOptionsResult:
|
28041
28109
|
raise NotImplementedError
|
@@ -3139,6 +3139,7 @@ class PutBucketOwnershipControlsRequest(ServiceRequest):
|
|
3139
3139
|
ContentMD5: Optional[ContentMD5]
|
3140
3140
|
ExpectedBucketOwner: Optional[AccountId]
|
3141
3141
|
OwnershipControls: OwnershipControls
|
3142
|
+
ChecksumAlgorithm: Optional[ChecksumAlgorithm]
|
3142
3143
|
|
3143
3144
|
|
3144
3145
|
class PutBucketPolicyRequest(ServiceRequest):
|
@@ -4695,6 +4696,7 @@ class S3Api:
|
|
4695
4696
|
ownership_controls: OwnershipControls,
|
4696
4697
|
content_md5: ContentMD5 | None = None,
|
4697
4698
|
expected_bucket_owner: AccountId | None = None,
|
4699
|
+
checksum_algorithm: ChecksumAlgorithm | None = None,
|
4698
4700
|
**kwargs,
|
4699
4701
|
) -> None:
|
4700
4702
|
raise NotImplementedError
|