datamasque-python 1.0.1__py3-none-any.whl → 1.0.2__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.
- datamasque/client/__init__.py +2 -0
- datamasque/client/models/connection.py +9 -0
- {datamasque_python-1.0.1.dist-info → datamasque_python-1.0.2.dist-info}/METADATA +1 -1
- {datamasque_python-1.0.1.dist-info → datamasque_python-1.0.2.dist-info}/RECORD +6 -6
- {datamasque_python-1.0.1.dist-info → datamasque_python-1.0.2.dist-info}/WHEEL +0 -0
- {datamasque_python-1.0.1.dist-info → datamasque_python-1.0.2.dist-info}/licenses/LICENSE +0 -0
datamasque/client/__init__.py
CHANGED
|
@@ -30,6 +30,7 @@ from datamasque.client.models.connection import (
|
|
|
30
30
|
ConnectionId,
|
|
31
31
|
DatabaseConnectionConfig,
|
|
32
32
|
DatabaseType,
|
|
33
|
+
DatabricksDeltaS3ConnectionConfig,
|
|
33
34
|
DynamoConnectionConfig,
|
|
34
35
|
FileConnectionConfig,
|
|
35
36
|
MongoConnectionConfig,
|
|
@@ -128,6 +129,7 @@ __all__ = [
|
|
|
128
129
|
"DataMasqueUserError",
|
|
129
130
|
"DatabaseConnectionConfig",
|
|
130
131
|
"DatabaseType",
|
|
132
|
+
"DatabricksDeltaS3ConnectionConfig",
|
|
131
133
|
"DiscoveryMatch",
|
|
132
134
|
"DynamoConnectionConfig",
|
|
133
135
|
"FailedToStartError",
|
|
@@ -391,10 +391,19 @@ class MountedShareConnectionConfig(FileConnectionConfig):
|
|
|
391
391
|
type: Literal["mounted_share_connection"] = "mounted_share_connection"
|
|
392
392
|
|
|
393
393
|
|
|
394
|
+
class DatabricksDeltaS3ConnectionConfig(FileConnectionConfig):
|
|
395
|
+
"""Connection configuration for Databricks Delta tables stored in S3."""
|
|
396
|
+
|
|
397
|
+
type: Literal["databricks_delta_s3_connection"] = "databricks_delta_s3_connection"
|
|
398
|
+
bucket: str = ""
|
|
399
|
+
iam_role_arn: Optional[str] = None
|
|
400
|
+
|
|
401
|
+
|
|
394
402
|
FILE_TYPE_MAP: dict[str, type[FileConnectionConfig]] = {
|
|
395
403
|
"s3_connection": S3ConnectionConfig,
|
|
396
404
|
"azure_blob_connection": AzureConnectionConfig,
|
|
397
405
|
"mounted_share_connection": MountedShareConnectionConfig,
|
|
406
|
+
"databricks_delta_s3_connection": DatabricksDeltaS3ConnectionConfig,
|
|
398
407
|
}
|
|
399
408
|
|
|
400
409
|
DB_TYPE_MAP: dict[str, type[ConnectionConfig]] = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: datamasque-python
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: Official Python client for the DataMasque data-masking API.
|
|
5
5
|
Project-URL: Homepage, https://datamasque.com/
|
|
6
6
|
Project-URL: Documentation, https://datamasque-python.readthedocs.io/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
datamasque/client/__init__.py,sha256=
|
|
1
|
+
datamasque/client/__init__.py,sha256=kEWW_L7t0J2gsBC9zwLUN3p8I2p26RqGHXo02aI3WRI,5486
|
|
2
2
|
datamasque/client/base.py,sha256=he-ObABs_rpXV_KSMmrtJ73D-9lb0giAK029lN5qB3Y,11817
|
|
3
3
|
datamasque/client/connections.py,sha256=EFinx8fJRme0mTxuWY3d29UnmUFbsQhMaUQT0Ma2PK4,2885
|
|
4
4
|
datamasque/client/discovery.py,sha256=uA8h6vRqsxSAzSAV9bebJwU47XINlaVy7V1nTYDiaCM,12634
|
|
@@ -14,7 +14,7 @@ datamasque/client/runs.py,sha256=ZPSkkuyqMiwy7dLbWZ1PAEKaesKLeNRX7xEJGfzieVg,742
|
|
|
14
14
|
datamasque/client/settings.py,sha256=Ui8AyR2XdoW8MZ9FIrGn2jm8DLzUGWIL8i2DOTvu7hc,2898
|
|
15
15
|
datamasque/client/users.py,sha256=VCUo2CJyOw4-aO_3mp_w_0BcSoa6-h1HcReMcAMyumw,3701
|
|
16
16
|
datamasque/client/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
datamasque/client/models/connection.py,sha256=
|
|
17
|
+
datamasque/client/models/connection.py,sha256=mQtWLAKcExbOkMymKmadprdWLbXl0V9aFZ4Zla2v0jc,15091
|
|
18
18
|
datamasque/client/models/data_selection.py,sha256=406yyUZ5NmLBSql2lYM1gsTWY5GWmnutmF-DjznAoLc,1904
|
|
19
19
|
datamasque/client/models/discovery.py,sha256=BawKusPuhyt0gRRnWKYf-ZKF7V54GxkhgYIrEQ6XkOs,7283
|
|
20
20
|
datamasque/client/models/dm_instance.py,sha256=yjjpHZJTFhJp3lAinTEffgKrxnadrJys1EuhO77wQcA,1561
|
|
@@ -27,7 +27,7 @@ datamasque/client/models/ruleset_library.py,sha256=gIqb6yn4-f9i2OydOLk1cd0zId9nG
|
|
|
27
27
|
datamasque/client/models/runs.py,sha256=oVYo9jp9s5LjWts0LKsYpX3HUBmrVwuuzDqFtQmTjvo,5673
|
|
28
28
|
datamasque/client/models/status.py,sha256=rjH6YSwAHoOUaUCADwvMhuKd0ygT0c2w2Ek5SV8PWD8,1984
|
|
29
29
|
datamasque/client/models/user.py,sha256=UGAUzgJkf78m24_zFXXoA99zdut48BXkX_ivV8yq1Vc,2043
|
|
30
|
-
datamasque_python-1.0.
|
|
31
|
-
datamasque_python-1.0.
|
|
32
|
-
datamasque_python-1.0.
|
|
33
|
-
datamasque_python-1.0.
|
|
30
|
+
datamasque_python-1.0.2.dist-info/METADATA,sha256=-D8IeXp8l_ZzTAp2gEjNBppqtyaXrz-j1SWOqTUJscI,4187
|
|
31
|
+
datamasque_python-1.0.2.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
32
|
+
datamasque_python-1.0.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
33
|
+
datamasque_python-1.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|