localstack-core 4.13.2.dev90__py3-none-any.whl → 4.13.2.dev92__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 +3 -0
- localstack/aws/api/kms/__init__.py +13 -4
- localstack/aws/api/ssm/__init__.py +13 -1
- localstack/services/kms/provider.py +18 -15
- localstack/services/stepfunctions/asl/jsonata/jsonata.py +5 -6
- localstack/version.py +2 -2
- {localstack_core-4.13.2.dev90.dist-info → localstack_core-4.13.2.dev92.dist-info}/METADATA +4 -4
- {localstack_core-4.13.2.dev90.dist-info → localstack_core-4.13.2.dev92.dist-info}/RECORD +13 -13
- {localstack_core-4.13.2.dev90.data → localstack_core-4.13.2.dev92.data}/scripts/localstack-supervisor +0 -0
- {localstack_core-4.13.2.dev90.dist-info → localstack_core-4.13.2.dev92.dist-info}/WHEEL +0 -0
- {localstack_core-4.13.2.dev90.dist-info → localstack_core-4.13.2.dev92.dist-info}/entry_points.txt +0 -0
- {localstack_core-4.13.2.dev90.dist-info → localstack_core-4.13.2.dev92.dist-info}/licenses/LICENSE.txt +0 -0
- {localstack_core-4.13.2.dev90.dist-info → localstack_core-4.13.2.dev92.dist-info}/top_level.txt +0 -0
|
@@ -10071,6 +10071,7 @@ class CreatePlacementGroupRequest(ServiceRequest):
|
|
|
10071
10071
|
TagSpecifications: TagSpecificationList | None
|
|
10072
10072
|
SpreadLevel: SpreadLevel | None
|
|
10073
10073
|
LinkedGroupId: PlacementGroupId | None
|
|
10074
|
+
Operator: OperatorRequest | None
|
|
10074
10075
|
DryRun: Boolean | None
|
|
10075
10076
|
GroupName: String | None
|
|
10076
10077
|
Strategy: PlacementStrategy | None
|
|
@@ -10086,6 +10087,7 @@ class PlacementGroup(TypedDict, total=False):
|
|
|
10086
10087
|
GroupArn: String | None
|
|
10087
10088
|
SpreadLevel: SpreadLevel | None
|
|
10088
10089
|
LinkedGroupId: PlacementGroupId | None
|
|
10090
|
+
Operator: OperatorResponse | None
|
|
10089
10091
|
|
|
10090
10092
|
|
|
10091
10093
|
class CreatePlacementGroupResult(TypedDict, total=False):
|
|
@@ -24750,6 +24752,7 @@ class Ec2Api:
|
|
|
24750
24752
|
tag_specifications: TagSpecificationList | None = None,
|
|
24751
24753
|
spread_level: SpreadLevel | None = None,
|
|
24752
24754
|
linked_group_id: PlacementGroupId | None = None,
|
|
24755
|
+
operator: OperatorRequest | None = None,
|
|
24753
24756
|
dry_run: Boolean | None = None,
|
|
24754
24757
|
group_name: String | None = None,
|
|
24755
24758
|
strategy: PlacementStrategy | None = None,
|
|
@@ -123,6 +123,10 @@ class DataKeySpec(StrEnum):
|
|
|
123
123
|
AES_128 = "AES_128"
|
|
124
124
|
|
|
125
125
|
|
|
126
|
+
class DryRunModifierType(StrEnum):
|
|
127
|
+
IGNORE_CIPHERTEXT = "IGNORE_CIPHERTEXT"
|
|
128
|
+
|
|
129
|
+
|
|
126
130
|
class EncryptionAlgorithmSpec(StrEnum):
|
|
127
131
|
SYMMETRIC_DEFAULT = "SYMMETRIC_DEFAULT"
|
|
128
132
|
RSAES_OAEP_SHA_1 = "RSAES_OAEP_SHA_1"
|
|
@@ -767,6 +771,7 @@ class CustomKeyStoresListEntry(TypedDict, total=False):
|
|
|
767
771
|
|
|
768
772
|
|
|
769
773
|
CustomKeyStoresList = list[CustomKeyStoresListEntry]
|
|
774
|
+
DryRunModifierList = list[DryRunModifierType]
|
|
770
775
|
|
|
771
776
|
|
|
772
777
|
class RecipientInfo(TypedDict, total=False):
|
|
@@ -775,13 +780,14 @@ class RecipientInfo(TypedDict, total=False):
|
|
|
775
780
|
|
|
776
781
|
|
|
777
782
|
class DecryptRequest(ServiceRequest):
|
|
778
|
-
CiphertextBlob: CiphertextType
|
|
783
|
+
CiphertextBlob: CiphertextType | None
|
|
779
784
|
EncryptionContext: EncryptionContextType | None
|
|
780
785
|
GrantTokens: GrantTokenList | None
|
|
781
786
|
KeyId: KeyIdType | None
|
|
782
787
|
EncryptionAlgorithm: EncryptionAlgorithmSpec | None
|
|
783
788
|
Recipient: RecipientInfo | None
|
|
784
789
|
DryRun: NullableBooleanType | None
|
|
790
|
+
DryRunModifiers: DryRunModifierList | None
|
|
785
791
|
|
|
786
792
|
|
|
787
793
|
PlaintextType = bytes
|
|
@@ -1188,7 +1194,7 @@ class PutKeyPolicyRequest(ServiceRequest):
|
|
|
1188
1194
|
|
|
1189
1195
|
|
|
1190
1196
|
class ReEncryptRequest(ServiceRequest):
|
|
1191
|
-
CiphertextBlob: CiphertextType
|
|
1197
|
+
CiphertextBlob: CiphertextType | None
|
|
1192
1198
|
SourceEncryptionContext: EncryptionContextType | None
|
|
1193
1199
|
SourceKeyId: KeyIdType | None
|
|
1194
1200
|
DestinationKeyId: KeyIdType
|
|
@@ -1197,6 +1203,7 @@ class ReEncryptRequest(ServiceRequest):
|
|
|
1197
1203
|
DestinationEncryptionAlgorithm: EncryptionAlgorithmSpec | None
|
|
1198
1204
|
GrantTokens: GrantTokenList | None
|
|
1199
1205
|
DryRun: NullableBooleanType | None
|
|
1206
|
+
DryRunModifiers: DryRunModifierList | None
|
|
1200
1207
|
|
|
1201
1208
|
|
|
1202
1209
|
class ReEncryptResponse(TypedDict, total=False):
|
|
@@ -1428,13 +1435,14 @@ class KmsApi:
|
|
|
1428
1435
|
def decrypt(
|
|
1429
1436
|
self,
|
|
1430
1437
|
context: RequestContext,
|
|
1431
|
-
ciphertext_blob: CiphertextType,
|
|
1438
|
+
ciphertext_blob: CiphertextType | None = None,
|
|
1432
1439
|
encryption_context: EncryptionContextType | None = None,
|
|
1433
1440
|
grant_tokens: GrantTokenList | None = None,
|
|
1434
1441
|
key_id: KeyIdType | None = None,
|
|
1435
1442
|
encryption_algorithm: EncryptionAlgorithmSpec | None = None,
|
|
1436
1443
|
recipient: RecipientInfo | None = None,
|
|
1437
1444
|
dry_run: NullableBooleanType | None = None,
|
|
1445
|
+
dry_run_modifiers: DryRunModifierList | None = None,
|
|
1438
1446
|
**kwargs,
|
|
1439
1447
|
) -> DecryptResponse:
|
|
1440
1448
|
raise NotImplementedError
|
|
@@ -1765,8 +1773,8 @@ class KmsApi:
|
|
|
1765
1773
|
def re_encrypt(
|
|
1766
1774
|
self,
|
|
1767
1775
|
context: RequestContext,
|
|
1768
|
-
ciphertext_blob: CiphertextType,
|
|
1769
1776
|
destination_key_id: KeyIdType,
|
|
1777
|
+
ciphertext_blob: CiphertextType | None = None,
|
|
1770
1778
|
source_encryption_context: EncryptionContextType | None = None,
|
|
1771
1779
|
source_key_id: KeyIdType | None = None,
|
|
1772
1780
|
destination_encryption_context: EncryptionContextType | None = None,
|
|
@@ -1774,6 +1782,7 @@ class KmsApi:
|
|
|
1774
1782
|
destination_encryption_algorithm: EncryptionAlgorithmSpec | None = None,
|
|
1775
1783
|
grant_tokens: GrantTokenList | None = None,
|
|
1776
1784
|
dry_run: NullableBooleanType | None = None,
|
|
1785
|
+
dry_run_modifiers: DryRunModifierList | None = None,
|
|
1777
1786
|
**kwargs,
|
|
1778
1787
|
) -> ReEncryptResponse:
|
|
1779
1788
|
raise NotImplementedError
|
|
@@ -21,6 +21,7 @@ AllowedPattern = str
|
|
|
21
21
|
ApplyOnlyAtCronInterval = bool
|
|
22
22
|
ApproveAfterDays = int
|
|
23
23
|
Architecture = str
|
|
24
|
+
AssociationDispatchAssumeRoleArn = str
|
|
24
25
|
AssociationExecutionFilterValue = str
|
|
25
26
|
AssociationExecutionId = str
|
|
26
27
|
AssociationExecutionTargetsFilterValue = str
|
|
@@ -2214,6 +2215,7 @@ class AssociationDescription(TypedDict, total=False):
|
|
|
2214
2215
|
TargetMaps: TargetMaps | None
|
|
2215
2216
|
AlarmConfiguration: AlarmConfiguration | None
|
|
2216
2217
|
TriggeredAlarms: AlarmStateInformationList | None
|
|
2218
|
+
AssociationDispatchAssumeRole: AssociationDispatchAssumeRoleArn | None
|
|
2217
2219
|
|
|
2218
2220
|
|
|
2219
2221
|
AssociationDescriptionList = list[AssociationDescription]
|
|
@@ -2299,6 +2301,7 @@ class AssociationVersionInfo(TypedDict, total=False):
|
|
|
2299
2301
|
ScheduleOffset: ScheduleOffset | None
|
|
2300
2302
|
Duration: Duration | None
|
|
2301
2303
|
TargetMaps: TargetMaps | None
|
|
2304
|
+
AssociationDispatchAssumeRole: AssociationDispatchAssumeRoleArn | None
|
|
2302
2305
|
|
|
2303
2306
|
|
|
2304
2307
|
AssociationVersionList = list[AssociationVersionInfo]
|
|
@@ -2823,6 +2826,7 @@ CreateAssociationBatchRequestEntries = list[CreateAssociationBatchRequestEntry]
|
|
|
2823
2826
|
|
|
2824
2827
|
class CreateAssociationBatchRequest(ServiceRequest):
|
|
2825
2828
|
Entries: CreateAssociationBatchRequestEntries
|
|
2829
|
+
AssociationDispatchAssumeRole: AssociationDispatchAssumeRoleArn | None
|
|
2826
2830
|
|
|
2827
2831
|
|
|
2828
2832
|
class FailedCreateAssociation(TypedDict, total=False):
|
|
@@ -2861,6 +2865,7 @@ class CreateAssociationRequest(ServiceRequest):
|
|
|
2861
2865
|
TargetMaps: TargetMaps | None
|
|
2862
2866
|
Tags: TagList | None
|
|
2863
2867
|
AlarmConfiguration: AlarmConfiguration | None
|
|
2868
|
+
AssociationDispatchAssumeRole: AssociationDispatchAssumeRoleArn | None
|
|
2864
2869
|
|
|
2865
2870
|
|
|
2866
2871
|
class CreateAssociationResult(TypedDict, total=False):
|
|
@@ -5747,6 +5752,7 @@ class UpdateAssociationRequest(ServiceRequest):
|
|
|
5747
5752
|
Duration: Duration | None
|
|
5748
5753
|
TargetMaps: TargetMaps | None
|
|
5749
5754
|
AlarmConfiguration: AlarmConfiguration | None
|
|
5755
|
+
AssociationDispatchAssumeRole: AssociationDispatchAssumeRoleArn | None
|
|
5750
5756
|
|
|
5751
5757
|
|
|
5752
5758
|
class UpdateAssociationResult(TypedDict, total=False):
|
|
@@ -6062,13 +6068,18 @@ class SsmApi:
|
|
|
6062
6068
|
target_maps: TargetMaps | None = None,
|
|
6063
6069
|
tags: TagList | None = None,
|
|
6064
6070
|
alarm_configuration: AlarmConfiguration | None = None,
|
|
6071
|
+
association_dispatch_assume_role: AssociationDispatchAssumeRoleArn | None = None,
|
|
6065
6072
|
**kwargs,
|
|
6066
6073
|
) -> CreateAssociationResult:
|
|
6067
6074
|
raise NotImplementedError
|
|
6068
6075
|
|
|
6069
6076
|
@handler("CreateAssociationBatch")
|
|
6070
6077
|
def create_association_batch(
|
|
6071
|
-
self,
|
|
6078
|
+
self,
|
|
6079
|
+
context: RequestContext,
|
|
6080
|
+
entries: CreateAssociationBatchRequestEntries,
|
|
6081
|
+
association_dispatch_assume_role: AssociationDispatchAssumeRoleArn | None = None,
|
|
6082
|
+
**kwargs,
|
|
6072
6083
|
) -> CreateAssociationBatchResult:
|
|
6073
6084
|
raise NotImplementedError
|
|
6074
6085
|
|
|
@@ -7478,6 +7489,7 @@ class SsmApi:
|
|
|
7478
7489
|
duration: Duration | None = None,
|
|
7479
7490
|
target_maps: TargetMaps | None = None,
|
|
7480
7491
|
alarm_configuration: AlarmConfiguration | None = None,
|
|
7492
|
+
association_dispatch_assume_role: AssociationDispatchAssumeRoleArn | None = None,
|
|
7481
7493
|
**kwargs,
|
|
7482
7494
|
) -> UpdateAssociationResult:
|
|
7483
7495
|
raise NotImplementedError
|
|
@@ -36,6 +36,7 @@ from localstack.aws.api.kms import (
|
|
|
36
36
|
DisabledException,
|
|
37
37
|
DisableKeyRequest,
|
|
38
38
|
DisableKeyRotationRequest,
|
|
39
|
+
DryRunModifierList,
|
|
39
40
|
EnableKeyRequest,
|
|
40
41
|
EnableKeyRotationRequest,
|
|
41
42
|
EncryptionAlgorithmSpec,
|
|
@@ -993,15 +994,16 @@ class KmsProvider(KmsApi, ServiceLifecycleHook):
|
|
|
993
994
|
def re_encrypt(
|
|
994
995
|
self,
|
|
995
996
|
context: RequestContext,
|
|
996
|
-
ciphertext_blob: CiphertextType,
|
|
997
997
|
destination_key_id: KeyIdType,
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
998
|
+
ciphertext_blob: CiphertextType | None = None,
|
|
999
|
+
source_encryption_context: EncryptionContextType | None = None,
|
|
1000
|
+
source_key_id: KeyIdType | None = None,
|
|
1001
|
+
destination_encryption_context: EncryptionContextType | None = None,
|
|
1002
|
+
source_encryption_algorithm: EncryptionAlgorithmSpec | None = None,
|
|
1003
|
+
destination_encryption_algorithm: EncryptionAlgorithmSpec | None = None,
|
|
1004
|
+
grant_tokens: GrantTokenList | None = None,
|
|
1005
|
+
dry_run: NullableBooleanType | None = None,
|
|
1006
|
+
dry_run_modifiers: DryRunModifierList | None = None,
|
|
1005
1007
|
**kwargs,
|
|
1006
1008
|
) -> ReEncryptResponse:
|
|
1007
1009
|
# TODO: when implementing, ensure cross-account support for source_key_id and destination_key_id
|
|
@@ -1071,13 +1073,14 @@ class KmsProvider(KmsApi, ServiceLifecycleHook):
|
|
|
1071
1073
|
def decrypt(
|
|
1072
1074
|
self,
|
|
1073
1075
|
context: RequestContext,
|
|
1074
|
-
ciphertext_blob: CiphertextType,
|
|
1075
|
-
encryption_context: EncryptionContextType = None,
|
|
1076
|
-
grant_tokens: GrantTokenList = None,
|
|
1077
|
-
key_id: KeyIdType = None,
|
|
1078
|
-
encryption_algorithm: EncryptionAlgorithmSpec = None,
|
|
1079
|
-
recipient: RecipientInfo = None,
|
|
1080
|
-
dry_run: NullableBooleanType = None,
|
|
1076
|
+
ciphertext_blob: CiphertextType | None = None,
|
|
1077
|
+
encryption_context: EncryptionContextType | None = None,
|
|
1078
|
+
grant_tokens: GrantTokenList | None = None,
|
|
1079
|
+
key_id: KeyIdType | None = None,
|
|
1080
|
+
encryption_algorithm: EncryptionAlgorithmSpec | None = None,
|
|
1081
|
+
recipient: RecipientInfo | None = None,
|
|
1082
|
+
dry_run: NullableBooleanType | None = None,
|
|
1083
|
+
dry_run_modifiers: DryRunModifierList | None = None,
|
|
1081
1084
|
**kwargs,
|
|
1082
1085
|
) -> DecryptResponse:
|
|
1083
1086
|
# In AWS, key_id is only supplied for data encrypted with an asymmetrical algorithm. For symmetrical
|
|
@@ -33,12 +33,11 @@ _PATTERN_VARIABLE_REFERENCE = re.compile(
|
|
|
33
33
|
# allowing escapes
|
|
34
34
|
r"(?:\"(?:\\.|[^\"\\])*\"|\'(?:\\.|[^\'\\])*\')"
|
|
35
35
|
r"|"
|
|
36
|
-
# 3)
|
|
37
|
-
#
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
r"(\$\$|\$[A-Za-z0-9_$]+(?:\.[A-Za-z0-9_][A-Za-z0-9_$]*)*|\$)"
|
|
36
|
+
# 3) Capturing branch for $identifier[.prop…]
|
|
37
|
+
# Requires at least one identifier character after $, so bare $ (the
|
|
38
|
+
# JSONata context variable used in filter predicates like [$ = 1]) is
|
|
39
|
+
# never captured. $$ is captured but filtered out downstream.
|
|
40
|
+
r"(\$[A-Za-z0-9_$]+(?:\.[A-Za-z0-9_][A-Za-z0-9_$]*)*)"
|
|
42
41
|
)
|
|
43
42
|
|
|
44
43
|
_ILLEGAL_VARIABLE_REFERENCES: Final[set[str]] = {"$", "$$"}
|
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.13.2.
|
|
32
|
-
__version_tuple__ = version_tuple = (4, 13, 2, '
|
|
31
|
+
__version__ = version = '4.13.2.dev92'
|
|
32
|
+
__version_tuple__ = version_tuple = (4, 13, 2, 'dev92')
|
|
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.13.2.
|
|
3
|
+
Version: 4.13.2.dev92
|
|
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
|
|
@@ -29,8 +29,8 @@ Requires-Dist: rich>=12.3.0
|
|
|
29
29
|
Requires-Dist: requests>=2.20.0
|
|
30
30
|
Requires-Dist: semver>=2.10
|
|
31
31
|
Provides-Extra: base-runtime
|
|
32
|
-
Requires-Dist: boto3==1.42.
|
|
33
|
-
Requires-Dist: botocore==1.42.
|
|
32
|
+
Requires-Dist: boto3==1.42.54; extra == "base-runtime"
|
|
33
|
+
Requires-Dist: botocore==1.42.54; extra == "base-runtime"
|
|
34
34
|
Requires-Dist: awscrt!=0.27.1,>=0.13.14; extra == "base-runtime"
|
|
35
35
|
Requires-Dist: cbor2>=5.5.0; extra == "base-runtime"
|
|
36
36
|
Requires-Dist: dill==0.3.6; extra == "base-runtime"
|
|
@@ -53,7 +53,7 @@ Requires-Dist: xmltodict>=0.13.0; extra == "base-runtime"
|
|
|
53
53
|
Requires-Dist: rolo>=0.8.1; extra == "base-runtime"
|
|
54
54
|
Provides-Extra: runtime
|
|
55
55
|
Requires-Dist: localstack-core[base-runtime]; extra == "runtime"
|
|
56
|
-
Requires-Dist: awscli==1.44.
|
|
56
|
+
Requires-Dist: awscli==1.44.44; extra == "runtime"
|
|
57
57
|
Requires-Dist: airspeed-ext>=0.6.3; extra == "runtime"
|
|
58
58
|
Requires-Dist: antlr4-python3-runtime==4.13.2; extra == "runtime"
|
|
59
59
|
Requires-Dist: apispec>=5.1.1; extra == "runtime"
|
|
@@ -4,7 +4,7 @@ localstack/deprecations.py,sha256=-3IYgCd6LEC3PjO7hbr3Dg-p0PIS6phjmv1qZnj1uo0,15
|
|
|
4
4
|
localstack/openapi.yaml,sha256=jFUzv-NKkJttxb8HRrmKiNYOmJD-zVfPxG3DDMrRwfg,30865
|
|
5
5
|
localstack/plugins.py,sha256=BIJC9dlo0WbP7lLKkCiGtd_2q5oeqiHZohvoRTcejXM,2457
|
|
6
6
|
localstack/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
localstack/version.py,sha256=
|
|
7
|
+
localstack/version.py,sha256=i479EqC0eL4cRkpXFGS2y_uQGBRMvJfaLu8_xzd8-e8,721
|
|
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
|
|
@@ -31,13 +31,13 @@ localstack/aws/api/cloudwatch/__init__.py,sha256=EkKMnzdb6f2QdQESq2KBH5jTlHs3PLn
|
|
|
31
31
|
localstack/aws/api/config/__init__.py,sha256=p97XBATQcTD7l7xNrEC8vCUk0Lx4PAF_UTDDgTfK1MU,149375
|
|
32
32
|
localstack/aws/api/dynamodb/__init__.py,sha256=6urTfdpWeC1DvLOFqzZdtHHkih7-xB_pjL0MT99XR4Y,93170
|
|
33
33
|
localstack/aws/api/dynamodbstreams/__init__.py,sha256=kGyceJLiBU52m0eVocnzFsseefNnnfnx57vBSa9J5JA,7127
|
|
34
|
-
localstack/aws/api/ec2/__init__.py,sha256=
|
|
34
|
+
localstack/aws/api/ec2/__init__.py,sha256=0nVBFFlnW7vKFEUIT85YAWH1khsgtYCJ44z0RcQf3Mk,1036620
|
|
35
35
|
localstack/aws/api/es/__init__.py,sha256=vPJ_JNt3hw962_nSClIuHlDMNB73tCxTBZOJej-n1PA,63016
|
|
36
36
|
localstack/aws/api/events/__init__.py,sha256=UFHrUm0ve_9jJ70d_-R5jouVX5HE1m7zRkTNCXDqT88,60338
|
|
37
37
|
localstack/aws/api/firehose/__init__.py,sha256=84OAnvu5GfvZsmNFmj9vkhVBBfZfJejUZ2YrMxv1xdM,57037
|
|
38
38
|
localstack/aws/api/iam/__init__.py,sha256=2R1X7x7aPmqY1VtFRLuxRS5gmiMuIBSE5XZZONzAOZ8,121481
|
|
39
39
|
localstack/aws/api/kinesis/__init__.py,sha256=aYO-04WdviH6E1mpMYfoEYzHi7ic3XPlLeCBmALGW_c,34628
|
|
40
|
-
localstack/aws/api/kms/__init__.py,sha256=
|
|
40
|
+
localstack/aws/api/kms/__init__.py,sha256=0zFc5knS4TuSZHZfSspJ_WVBdgaEUM2eCLd4bFVbfuI,57470
|
|
41
41
|
localstack/aws/api/lambda_/__init__.py,sha256=JmcmUwuTQxayD3F2PIovJ3DankTXiRGClWYbxRHHoxo,112115
|
|
42
42
|
localstack/aws/api/logs/__init__.py,sha256=ksqAqholjtG23T3C1-oQYfAziIIKbs2_N9R-eej7pJM,106817
|
|
43
43
|
localstack/aws/api/opensearch/__init__.py,sha256=t2tFWgCtIqYjxoepxhmiqvo0T0l9Vhy-w-O7CAgSI-w,100393
|
|
@@ -54,7 +54,7 @@ localstack/aws/api/secretsmanager/__init__.py,sha256=lpwKUpWzcH4efRKrqifufamTOG6
|
|
|
54
54
|
localstack/aws/api/ses/__init__.py,sha256=fdnbSY9VjAWDECxiPefQlPHysWYXCFuqYuHJhITc6gQ,55879
|
|
55
55
|
localstack/aws/api/sns/__init__.py,sha256=O_SQH14pjw31aJtcMjhm0OWYkOiSDY9eG9pNeDznqYU,28335
|
|
56
56
|
localstack/aws/api/sqs/__init__.py,sha256=8jTBIwmdM1sFOVeyUKWbeJ4nHFNgnbSssRV4hR6LIoc,20840
|
|
57
|
-
localstack/aws/api/ssm/__init__.py,sha256=
|
|
57
|
+
localstack/aws/api/ssm/__init__.py,sha256=v5WYwbThBzFN-qHyTxevj0FLT7aUSGr9rBoc2rPLtW0,234337
|
|
58
58
|
localstack/aws/api/stepfunctions/__init__.py,sha256=MmZD97DMCvIV4zzoJeHvDqq-O7aG0HmO3vB8gIQixBA,49447
|
|
59
59
|
localstack/aws/api/sts/__init__.py,sha256=71-J3yLiVslN9-Nl2FRVoz4pREn9cJYrAGa8Eb8_ucA,13201
|
|
60
60
|
localstack/aws/api/support/__init__.py,sha256=gw1go1h3c__iRyKyXwfCT0urpgAXtjdZFiUX3T2D36c,16677
|
|
@@ -529,7 +529,7 @@ localstack/services/kinesisfirehose/resource_providers/aws_kinesisfirehose_deliv
|
|
|
529
529
|
localstack/services/kms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
530
530
|
localstack/services/kms/exceptions.py,sha256=BgmFaOgGcBheRPQyZFFjn7_W8i6ChJXvJoSh_yV-Ti0,535
|
|
531
531
|
localstack/services/kms/models.py,sha256=8kQG_phM2tSXlK27vYDR8daBIJdL1hcNcThtdGOdk8k,38916
|
|
532
|
-
localstack/services/kms/provider.py,sha256=
|
|
532
|
+
localstack/services/kms/provider.py,sha256=JQ7uRsqgPT-TeLnskp1qCQ9x2tz7tiul2nTmFV6Bx-g,75313
|
|
533
533
|
localstack/services/kms/utils.py,sha256=8fM-jE8gOYJovi6kX2io3k3TQf7A7SWLghdtDLo0KWQ,3483
|
|
534
534
|
localstack/services/kms/resource_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
535
535
|
localstack/services/kms/resource_providers/aws_kms_alias.py,sha256=LsvRlZMrzMlGq1_KcMlxz9RE16tUe7bcqQ3qQYE-vtg,2614
|
|
@@ -1112,7 +1112,7 @@ localstack/services/stepfunctions/asl/eval/test_state/__init__.py,sha256=47DEQpj
|
|
|
1112
1112
|
localstack/services/stepfunctions/asl/eval/test_state/environment.py,sha256=Tm1E9p87eSKC1nHRB5KX_BoUUTbh4wBLskubDucQmJ0,4376
|
|
1113
1113
|
localstack/services/stepfunctions/asl/eval/test_state/program_state.py,sha256=ANRO2rI5RCj4WOcNd0H6gbrLOl68gFjH6UW3RweADN4,837
|
|
1114
1114
|
localstack/services/stepfunctions/asl/jsonata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1115
|
-
localstack/services/stepfunctions/asl/jsonata/jsonata.py,sha256=
|
|
1115
|
+
localstack/services/stepfunctions/asl/jsonata/jsonata.py,sha256=nS32w2NL2f7ZPSJ8FhYlsgTxZ3AItNuKwnuMNDLs08Y,7087
|
|
1116
1116
|
localstack/services/stepfunctions/asl/jsonata/validations.py,sha256=V_LLuknYhZjVRSZfQqtPTSnKHcUce1ZJvQ9_CF88WZk,3419
|
|
1117
1117
|
localstack/services/stepfunctions/asl/parse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1118
1118
|
localstack/services/stepfunctions/asl/parse/asl_parser.py,sha256=DU2XZlpjwFwcrGD_4qs99QvwM99_h9WmIpEIO6R7p-o,2376
|
|
@@ -1311,10 +1311,10 @@ localstack/utils/server/tcp_proxy.py,sha256=y2NJAmvftTiAYsLU_8qe4W5LGqwUw21i90Pu
|
|
|
1311
1311
|
localstack/utils/xray/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1312
1312
|
localstack/utils/xray/trace_header.py,sha256=ahXk9eonq7LpeENwlqUEPj3jDOCiVRixhntQuxNor-Q,6209
|
|
1313
1313
|
localstack/utils/xray/traceid.py,sha256=GKO-R2sMMjlrH2UaLPXlQlZ6flbE7ZKb6IZMtMu_M5U,1110
|
|
1314
|
-
localstack_core-4.13.2.
|
|
1315
|
-
localstack_core-4.13.2.
|
|
1316
|
-
localstack_core-4.13.2.
|
|
1317
|
-
localstack_core-4.13.2.
|
|
1318
|
-
localstack_core-4.13.2.
|
|
1319
|
-
localstack_core-4.13.2.
|
|
1320
|
-
localstack_core-4.13.2.
|
|
1314
|
+
localstack_core-4.13.2.dev92.data/scripts/localstack-supervisor,sha256=nm1Il2d6ASyOB6Vo4CRHd90w7TK9FdRl9VPp0NN6hUk,6378
|
|
1315
|
+
localstack_core-4.13.2.dev92.dist-info/licenses/LICENSE.txt,sha256=3PC-9Z69UsNARuQ980gNR_JsLx8uvMjdG6C7cc4LBYs,606
|
|
1316
|
+
localstack_core-4.13.2.dev92.dist-info/METADATA,sha256=7lk8RgAcC8gCVbUeCjveGE4IF9kQtcG0Jt5w-nxFL9c,5867
|
|
1317
|
+
localstack_core-4.13.2.dev92.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
|
|
1318
|
+
localstack_core-4.13.2.dev92.dist-info/entry_points.txt,sha256=59aAnn8KVHWAHkMg2dOgmgYtRZ-xTX9T4UiIchWgK6k,20975
|
|
1319
|
+
localstack_core-4.13.2.dev92.dist-info/top_level.txt,sha256=3sqmK2lGac8nCy8nwsbS5SpIY_izmtWtgaTFKHYVHbI,11
|
|
1320
|
+
localstack_core-4.13.2.dev92.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{localstack_core-4.13.2.dev90.dist-info → localstack_core-4.13.2.dev92.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{localstack_core-4.13.2.dev90.dist-info → localstack_core-4.13.2.dev92.dist-info}/top_level.txt
RENAMED
|
File without changes
|