collibra-connector 1.0.19__py3-none-any.whl → 1.1.1__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.
- collibra_connector/__init__.py +284 -4
- collibra_connector/api/Asset.py +301 -3
- collibra_connector/api/Attribute.py +204 -0
- collibra_connector/api/Base.py +2 -2
- collibra_connector/api/Relation.py +216 -0
- collibra_connector/api/Responsibility.py +5 -5
- collibra_connector/api/Search.py +102 -0
- collibra_connector/api/Workflow.py +50 -16
- collibra_connector/api/__init__.py +23 -13
- collibra_connector/async_connector.py +930 -0
- collibra_connector/cli.py +597 -0
- collibra_connector/connector.py +270 -48
- collibra_connector/helpers.py +845 -0
- collibra_connector/lineage.py +716 -0
- collibra_connector/models.py +897 -0
- collibra_connector/py.typed +0 -0
- collibra_connector/telemetry.py +576 -0
- collibra_connector/testing.py +806 -0
- collibra_connector-1.1.1.dist-info/METADATA +540 -0
- collibra_connector-1.1.1.dist-info/RECORD +32 -0
- {collibra_connector-1.0.19.dist-info → collibra_connector-1.1.1.dist-info}/WHEEL +1 -1
- collibra_connector-1.1.1.dist-info/entry_points.txt +2 -0
- collibra_connector-1.0.19.dist-info/METADATA +0 -157
- collibra_connector-1.0.19.dist-info/RECORD +0 -21
- {collibra_connector-1.0.19.dist-info → collibra_connector-1.1.1.dist-info}/licenses/LICENSE +0 -0
- {collibra_connector-1.0.19.dist-info → collibra_connector-1.1.1.dist-info}/top_level.txt +0 -0
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
from .Asset import Asset
|
|
2
|
-
from .
|
|
2
|
+
from .Attribute import Attribute
|
|
3
3
|
from .Community import Community
|
|
4
|
-
from .Comment import Comment
|
|
5
4
|
from .Domain import Domain
|
|
6
|
-
from .
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
ForbiddenError,
|
|
10
|
-
NotFoundError,
|
|
11
|
-
ServerError
|
|
12
|
-
)
|
|
5
|
+
from .User import User
|
|
6
|
+
from .Responsibility import Responsibility
|
|
7
|
+
from .Workflow import Workflow
|
|
13
8
|
from .Metadata import Metadata
|
|
14
|
-
from .
|
|
9
|
+
from .Comment import Comment
|
|
15
10
|
from .Relation import Relation
|
|
16
|
-
from .
|
|
17
|
-
from .User import User
|
|
11
|
+
from .OutputModule import OutputModule
|
|
18
12
|
from .Utils import Utils
|
|
19
|
-
from .
|
|
13
|
+
from .Search import Search
|
|
14
|
+
|
|
15
|
+
__all__ = [
|
|
16
|
+
"Asset",
|
|
17
|
+
"Attribute",
|
|
18
|
+
"Community",
|
|
19
|
+
"Domain",
|
|
20
|
+
"User",
|
|
21
|
+
"Responsibility",
|
|
22
|
+
"Workflow",
|
|
23
|
+
"Metadata",
|
|
24
|
+
"Comment",
|
|
25
|
+
"Relation",
|
|
26
|
+
"OutputModule",
|
|
27
|
+
"Utils",
|
|
28
|
+
"Search"
|
|
29
|
+
]
|