acryl-datahub-cloud 0.2.13.3.1__tar.gz
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.
- acryl-datahub-cloud-0.2.13.3.1/PKG-INFO +5 -0
- acryl-datahub-cloud-0.2.13.3.1/setup.cfg +4 -0
- acryl-datahub-cloud-0.2.13.3.1/setup.py +21 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/__init__.py +5 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/__init__.py +11 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/events/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/access/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/access/token/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/actionrequest/__init__.py +34 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/anomaly/__init__.py +32 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/assertion/__init__.py +118 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/chart/__init__.py +26 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/common/__init__.py +128 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/common/fieldtransformer/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/connection/__init__.py +18 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/constraint/__init__.py +18 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/container/__init__.py +18 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/dashboard/__init__.py +20 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/datacontract/__init__.py +26 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/datahub/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/datajob/__init__.py +26 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/datajob/azkaban/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/datajob/datahub/__init__.py +18 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/dataplatform/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/dataplatforminstance/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/dataprocess/__init__.py +32 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/dataproduct/__init__.py +18 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/dataset/__init__.py +56 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/datatype/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/domain/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/entitytype/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/event/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/event/notification/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/event/notification/settings/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/events/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/events/metadata/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/execution/__init__.py +22 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/form/__init__.py +26 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/glossary/__init__.py +18 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/identity/__init__.py +40 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/incident/__init__.py +24 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/inferred/__init__.py +38 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/ingestion/__init__.py +18 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/link/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/metadata/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/metadata/key/__init__.py +120 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/metadata/query/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/metadata/query/filter/__init__.py +20 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/metadata/recommendation/__init__.py +26 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/metadata/search/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/metadata/search/features/__init__.py +20 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/metadata/snapshot/__init__.py +56 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/ml/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/ml/metadata/__init__.py +70 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/monitor/__init__.py +46 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/mxe/__init__.py +28 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/notebook/__init__.py +28 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/ownership/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/platform/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/platform/event/__init__.py +10 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/platform/event/v1/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/policy/__init__.py +26 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/post/__init__.py +20 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/query/__init__.py +24 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/retention/__init__.py +20 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/role/__init__.py +18 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/schema/__init__.py +82 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/secret/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/settings/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/settings/global/__init__.py +28 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/step/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/structured/__init__.py +24 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/subscription/__init__.py +22 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/tag/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/telemetry/__init__.py +14 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/test/__init__.py +38 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/timeseries/__init__.py +22 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/upgrade/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/usage/__init__.py +20 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/verification/__init__.py +16 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/com/linkedin/pegasus2avro/view/__init__.py +18 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/schema_classes.py +28936 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud/models/schemas/__init__.py +23 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud.egg-info/PKG-INFO +5 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud.egg-info/SOURCES.txt +90 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud.egg-info/dependency_links.txt +1 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud.egg-info/entry_points.txt +2 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud.egg-info/requires.txt +2 -0
- acryl-datahub-cloud-0.2.13.3.1/src/acryl_datahub_cloud.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Autogenerated by datahub's custom_package_codegen.py
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
|
|
4
|
+
from setuptools import setup
|
|
5
|
+
|
|
6
|
+
_package_name = "acryl-datahub-cloud"
|
|
7
|
+
_package_version = "0.2.13.3.1"
|
|
8
|
+
|
|
9
|
+
setup(
|
|
10
|
+
name=_package_name,
|
|
11
|
+
version=_package_version,
|
|
12
|
+
install_requires=[
|
|
13
|
+
"avro-gen3==0.7.11",
|
|
14
|
+
"acryl-datahub",
|
|
15
|
+
],
|
|
16
|
+
entry_points={
|
|
17
|
+
"datahub.custom_packages": [
|
|
18
|
+
"models=acryl_datahub_cloud.models.schema_classes",
|
|
19
|
+
],
|
|
20
|
+
},
|
|
21
|
+
)
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from ....schema_classes import KafkaAuditHeaderClass
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
KafkaAuditHeader = KafkaAuditHeaderClass
|
|
13
|
+
|
|
14
|
+
# fmt: on
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from ......schema_classes import DataHubAccessTokenInfoClass
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
DataHubAccessTokenInfo = DataHubAccessTokenInfoClass
|
|
13
|
+
|
|
14
|
+
# fmt: on
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import ActionRequestArchivedClass
|
|
10
|
+
from .....schema_classes import ActionRequestInfoClass
|
|
11
|
+
from .....schema_classes import ActionRequestParamsClass
|
|
12
|
+
from .....schema_classes import ActionRequestStatusClass
|
|
13
|
+
from .....schema_classes import CreateGlossaryNodeProposalClass
|
|
14
|
+
from .....schema_classes import CreateGlossaryTermProposalClass
|
|
15
|
+
from .....schema_classes import DataContractProposalClass
|
|
16
|
+
from .....schema_classes import DataContractProposalOperationTypeClass
|
|
17
|
+
from .....schema_classes import DescriptionProposalClass
|
|
18
|
+
from .....schema_classes import GlossaryTermProposalClass
|
|
19
|
+
from .....schema_classes import TagProposalClass
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
ActionRequestArchived = ActionRequestArchivedClass
|
|
23
|
+
ActionRequestInfo = ActionRequestInfoClass
|
|
24
|
+
ActionRequestParams = ActionRequestParamsClass
|
|
25
|
+
ActionRequestStatus = ActionRequestStatusClass
|
|
26
|
+
CreateGlossaryNodeProposal = CreateGlossaryNodeProposalClass
|
|
27
|
+
CreateGlossaryTermProposal = CreateGlossaryTermProposalClass
|
|
28
|
+
DataContractProposal = DataContractProposalClass
|
|
29
|
+
DataContractProposalOperationType = DataContractProposalOperationTypeClass
|
|
30
|
+
DescriptionProposal = DescriptionProposalClass
|
|
31
|
+
GlossaryTermProposal = GlossaryTermProposalClass
|
|
32
|
+
TagProposal = TagProposalClass
|
|
33
|
+
|
|
34
|
+
# fmt: on
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import AnomalyInfoClass
|
|
10
|
+
from .....schema_classes import AnomalyReviewClass
|
|
11
|
+
from .....schema_classes import AnomalyReviewStateClass
|
|
12
|
+
from .....schema_classes import AnomalySourceClass
|
|
13
|
+
from .....schema_classes import AnomalySourcePropertiesClass
|
|
14
|
+
from .....schema_classes import AnomalySourceTypeClass
|
|
15
|
+
from .....schema_classes import AnomalyStateClass
|
|
16
|
+
from .....schema_classes import AnomalyStatusClass
|
|
17
|
+
from .....schema_classes import AnomalyStatusPropertiesClass
|
|
18
|
+
from .....schema_classes import AnomalyTypeClass
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
AnomalyInfo = AnomalyInfoClass
|
|
22
|
+
AnomalyReview = AnomalyReviewClass
|
|
23
|
+
AnomalyReviewState = AnomalyReviewStateClass
|
|
24
|
+
AnomalySource = AnomalySourceClass
|
|
25
|
+
AnomalySourceProperties = AnomalySourcePropertiesClass
|
|
26
|
+
AnomalySourceType = AnomalySourceTypeClass
|
|
27
|
+
AnomalyState = AnomalyStateClass
|
|
28
|
+
AnomalyStatus = AnomalyStatusClass
|
|
29
|
+
AnomalyStatusProperties = AnomalyStatusPropertiesClass
|
|
30
|
+
AnomalyType = AnomalyTypeClass
|
|
31
|
+
|
|
32
|
+
# fmt: on
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import AssertionActionClass
|
|
10
|
+
from .....schema_classes import AssertionActionTypeClass
|
|
11
|
+
from .....schema_classes import AssertionActionsClass
|
|
12
|
+
from .....schema_classes import AssertionDryRunEventClass
|
|
13
|
+
from .....schema_classes import AssertionDryRunResultClass
|
|
14
|
+
from .....schema_classes import AssertionInfoClass
|
|
15
|
+
from .....schema_classes import AssertionResultClass
|
|
16
|
+
from .....schema_classes import AssertionResultErrorClass
|
|
17
|
+
from .....schema_classes import AssertionResultErrorTypeClass
|
|
18
|
+
from .....schema_classes import AssertionResultTypeClass
|
|
19
|
+
from .....schema_classes import AssertionRunEventClass
|
|
20
|
+
from .....schema_classes import AssertionRunStatusClass
|
|
21
|
+
from .....schema_classes import AssertionSourceClass
|
|
22
|
+
from .....schema_classes import AssertionSourceTypeClass
|
|
23
|
+
from .....schema_classes import AssertionStdAggregationClass
|
|
24
|
+
from .....schema_classes import AssertionStdOperatorClass
|
|
25
|
+
from .....schema_classes import AssertionStdParameterClass
|
|
26
|
+
from .....schema_classes import AssertionStdParameterTypeClass
|
|
27
|
+
from .....schema_classes import AssertionStdParametersClass
|
|
28
|
+
from .....schema_classes import AssertionTypeClass
|
|
29
|
+
from .....schema_classes import AssertionValueChangeTypeClass
|
|
30
|
+
from .....schema_classes import BatchSpecClass
|
|
31
|
+
from .....schema_classes import DatasetAssertionInfoClass
|
|
32
|
+
from .....schema_classes import DatasetAssertionScopeClass
|
|
33
|
+
from .....schema_classes import FieldAssertionInfoClass
|
|
34
|
+
from .....schema_classes import FieldAssertionTypeClass
|
|
35
|
+
from .....schema_classes import FieldMetricAssertionClass
|
|
36
|
+
from .....schema_classes import FieldMetricTypeClass
|
|
37
|
+
from .....schema_classes import FieldTransformClass
|
|
38
|
+
from .....schema_classes import FieldTransformTypeClass
|
|
39
|
+
from .....schema_classes import FieldValuesAssertionClass
|
|
40
|
+
from .....schema_classes import FieldValuesFailThresholdClass
|
|
41
|
+
from .....schema_classes import FieldValuesFailThresholdTypeClass
|
|
42
|
+
from .....schema_classes import FixedIntervalScheduleClass
|
|
43
|
+
from .....schema_classes import FreshnessAssertionInfoClass
|
|
44
|
+
from .....schema_classes import FreshnessAssertionScheduleClass
|
|
45
|
+
from .....schema_classes import FreshnessAssertionScheduleTypeClass
|
|
46
|
+
from .....schema_classes import FreshnessAssertionTypeClass
|
|
47
|
+
from .....schema_classes import FreshnessCronScheduleClass
|
|
48
|
+
from .....schema_classes import FreshnessFieldKindClass
|
|
49
|
+
from .....schema_classes import FreshnessFieldSpecClass
|
|
50
|
+
from .....schema_classes import IncrementingSegmentFieldTransformerClass
|
|
51
|
+
from .....schema_classes import IncrementingSegmentFieldTransformerTypeClass
|
|
52
|
+
from .....schema_classes import IncrementingSegmentRowCountChangeClass
|
|
53
|
+
from .....schema_classes import IncrementingSegmentRowCountTotalClass
|
|
54
|
+
from .....schema_classes import IncrementingSegmentSpecClass
|
|
55
|
+
from .....schema_classes import RowCountChangeClass
|
|
56
|
+
from .....schema_classes import RowCountTotalClass
|
|
57
|
+
from .....schema_classes import SchemaAssertionInfoClass
|
|
58
|
+
from .....schema_classes import SqlAssertionInfoClass
|
|
59
|
+
from .....schema_classes import SqlAssertionTypeClass
|
|
60
|
+
from .....schema_classes import VolumeAssertionInfoClass
|
|
61
|
+
from .....schema_classes import VolumeAssertionTypeClass
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
AssertionAction = AssertionActionClass
|
|
65
|
+
AssertionActionType = AssertionActionTypeClass
|
|
66
|
+
AssertionActions = AssertionActionsClass
|
|
67
|
+
AssertionDryRunEvent = AssertionDryRunEventClass
|
|
68
|
+
AssertionDryRunResult = AssertionDryRunResultClass
|
|
69
|
+
AssertionInfo = AssertionInfoClass
|
|
70
|
+
AssertionResult = AssertionResultClass
|
|
71
|
+
AssertionResultError = AssertionResultErrorClass
|
|
72
|
+
AssertionResultErrorType = AssertionResultErrorTypeClass
|
|
73
|
+
AssertionResultType = AssertionResultTypeClass
|
|
74
|
+
AssertionRunEvent = AssertionRunEventClass
|
|
75
|
+
AssertionRunStatus = AssertionRunStatusClass
|
|
76
|
+
AssertionSource = AssertionSourceClass
|
|
77
|
+
AssertionSourceType = AssertionSourceTypeClass
|
|
78
|
+
AssertionStdAggregation = AssertionStdAggregationClass
|
|
79
|
+
AssertionStdOperator = AssertionStdOperatorClass
|
|
80
|
+
AssertionStdParameter = AssertionStdParameterClass
|
|
81
|
+
AssertionStdParameterType = AssertionStdParameterTypeClass
|
|
82
|
+
AssertionStdParameters = AssertionStdParametersClass
|
|
83
|
+
AssertionType = AssertionTypeClass
|
|
84
|
+
AssertionValueChangeType = AssertionValueChangeTypeClass
|
|
85
|
+
BatchSpec = BatchSpecClass
|
|
86
|
+
DatasetAssertionInfo = DatasetAssertionInfoClass
|
|
87
|
+
DatasetAssertionScope = DatasetAssertionScopeClass
|
|
88
|
+
FieldAssertionInfo = FieldAssertionInfoClass
|
|
89
|
+
FieldAssertionType = FieldAssertionTypeClass
|
|
90
|
+
FieldMetricAssertion = FieldMetricAssertionClass
|
|
91
|
+
FieldMetricType = FieldMetricTypeClass
|
|
92
|
+
FieldTransform = FieldTransformClass
|
|
93
|
+
FieldTransformType = FieldTransformTypeClass
|
|
94
|
+
FieldValuesAssertion = FieldValuesAssertionClass
|
|
95
|
+
FieldValuesFailThreshold = FieldValuesFailThresholdClass
|
|
96
|
+
FieldValuesFailThresholdType = FieldValuesFailThresholdTypeClass
|
|
97
|
+
FixedIntervalSchedule = FixedIntervalScheduleClass
|
|
98
|
+
FreshnessAssertionInfo = FreshnessAssertionInfoClass
|
|
99
|
+
FreshnessAssertionSchedule = FreshnessAssertionScheduleClass
|
|
100
|
+
FreshnessAssertionScheduleType = FreshnessAssertionScheduleTypeClass
|
|
101
|
+
FreshnessAssertionType = FreshnessAssertionTypeClass
|
|
102
|
+
FreshnessCronSchedule = FreshnessCronScheduleClass
|
|
103
|
+
FreshnessFieldKind = FreshnessFieldKindClass
|
|
104
|
+
FreshnessFieldSpec = FreshnessFieldSpecClass
|
|
105
|
+
IncrementingSegmentFieldTransformer = IncrementingSegmentFieldTransformerClass
|
|
106
|
+
IncrementingSegmentFieldTransformerType = IncrementingSegmentFieldTransformerTypeClass
|
|
107
|
+
IncrementingSegmentRowCountChange = IncrementingSegmentRowCountChangeClass
|
|
108
|
+
IncrementingSegmentRowCountTotal = IncrementingSegmentRowCountTotalClass
|
|
109
|
+
IncrementingSegmentSpec = IncrementingSegmentSpecClass
|
|
110
|
+
RowCountChange = RowCountChangeClass
|
|
111
|
+
RowCountTotal = RowCountTotalClass
|
|
112
|
+
SchemaAssertionInfo = SchemaAssertionInfoClass
|
|
113
|
+
SqlAssertionInfo = SqlAssertionInfoClass
|
|
114
|
+
SqlAssertionType = SqlAssertionTypeClass
|
|
115
|
+
VolumeAssertionInfo = VolumeAssertionInfoClass
|
|
116
|
+
VolumeAssertionType = VolumeAssertionTypeClass
|
|
117
|
+
|
|
118
|
+
# fmt: on
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import ChartInfoClass
|
|
10
|
+
from .....schema_classes import ChartQueryClass
|
|
11
|
+
from .....schema_classes import ChartQueryTypeClass
|
|
12
|
+
from .....schema_classes import ChartTypeClass
|
|
13
|
+
from .....schema_classes import ChartUsageStatisticsClass
|
|
14
|
+
from .....schema_classes import ChartUserUsageCountsClass
|
|
15
|
+
from .....schema_classes import EditableChartPropertiesClass
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
ChartInfo = ChartInfoClass
|
|
19
|
+
ChartQuery = ChartQueryClass
|
|
20
|
+
ChartQueryType = ChartQueryTypeClass
|
|
21
|
+
ChartType = ChartTypeClass
|
|
22
|
+
ChartUsageStatistics = ChartUsageStatisticsClass
|
|
23
|
+
ChartUserUsageCounts = ChartUserUsageCountsClass
|
|
24
|
+
EditableChartProperties = EditableChartPropertiesClass
|
|
25
|
+
|
|
26
|
+
# fmt: on
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import AccessClass
|
|
10
|
+
from .....schema_classes import AccessLevelClass
|
|
11
|
+
from .....schema_classes import AnomaliesSummaryClass
|
|
12
|
+
from .....schema_classes import AnomalySummaryDetailsClass
|
|
13
|
+
from .....schema_classes import AssertionSummaryDetailsClass
|
|
14
|
+
from .....schema_classes import AssertionsSummaryClass
|
|
15
|
+
from .....schema_classes import AuditStampClass
|
|
16
|
+
from .....schema_classes import BrowsePathEntryClass
|
|
17
|
+
from .....schema_classes import BrowsePathsClass
|
|
18
|
+
from .....schema_classes import BrowsePathsV2Class
|
|
19
|
+
from .....schema_classes import ChangeAuditStampsClass
|
|
20
|
+
from .....schema_classes import CostClass
|
|
21
|
+
from .....schema_classes import CostCostClass
|
|
22
|
+
from .....schema_classes import CostCostDiscriminatorClass
|
|
23
|
+
from .....schema_classes import CostTypeClass
|
|
24
|
+
from .....schema_classes import CronScheduleClass
|
|
25
|
+
from .....schema_classes import DataPlatformInstanceClass
|
|
26
|
+
from .....schema_classes import DeprecationClass
|
|
27
|
+
from .....schema_classes import EdgeClass
|
|
28
|
+
from .....schema_classes import EmbedClass
|
|
29
|
+
from .....schema_classes import FabricTypeClass
|
|
30
|
+
from .....schema_classes import FieldFormPromptAssociationClass
|
|
31
|
+
from .....schema_classes import FormAssociationClass
|
|
32
|
+
from .....schema_classes import FormPromptAssociationClass
|
|
33
|
+
from .....schema_classes import FormPromptFieldAssociationsClass
|
|
34
|
+
from .....schema_classes import FormVerificationAssociationClass
|
|
35
|
+
from .....schema_classes import FormsClass
|
|
36
|
+
from .....schema_classes import GlobalTagsClass
|
|
37
|
+
from .....schema_classes import GlossaryTermAssociationClass
|
|
38
|
+
from .....schema_classes import GlossaryTermsClass
|
|
39
|
+
from .....schema_classes import IncidentSummaryDetailsClass
|
|
40
|
+
from .....schema_classes import IncidentsSummaryClass
|
|
41
|
+
from .....schema_classes import InputFieldClass
|
|
42
|
+
from .....schema_classes import InputFieldsClass
|
|
43
|
+
from .....schema_classes import InstitutionalMemoryClass
|
|
44
|
+
from .....schema_classes import InstitutionalMemoryMetadataClass
|
|
45
|
+
from .....schema_classes import MLFeatureDataTypeClass
|
|
46
|
+
from .....schema_classes import MediaClass
|
|
47
|
+
from .....schema_classes import MediaTypeClass
|
|
48
|
+
from .....schema_classes import OperationClass
|
|
49
|
+
from .....schema_classes import OperationSourceTypeClass
|
|
50
|
+
from .....schema_classes import OperationTypeClass
|
|
51
|
+
from .....schema_classes import OriginClass
|
|
52
|
+
from .....schema_classes import OriginTypeClass
|
|
53
|
+
from .....schema_classes import OwnerClass
|
|
54
|
+
from .....schema_classes import OwnershipClass
|
|
55
|
+
from .....schema_classes import OwnershipSourceClass
|
|
56
|
+
from .....schema_classes import OwnershipSourceTypeClass
|
|
57
|
+
from .....schema_classes import OwnershipTypeClass
|
|
58
|
+
from .....schema_classes import ProposalsClass
|
|
59
|
+
from .....schema_classes import RoleAssociationClass
|
|
60
|
+
from .....schema_classes import SiblingsClass
|
|
61
|
+
from .....schema_classes import StatusClass
|
|
62
|
+
from .....schema_classes import SubTypesClass
|
|
63
|
+
from .....schema_classes import TagAssociationClass
|
|
64
|
+
from .....schema_classes import TimeStampClass
|
|
65
|
+
from .....schema_classes import VersionTagClass
|
|
66
|
+
from .....schema_classes import WindowDurationClass
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
Access = AccessClass
|
|
70
|
+
AccessLevel = AccessLevelClass
|
|
71
|
+
AnomaliesSummary = AnomaliesSummaryClass
|
|
72
|
+
AnomalySummaryDetails = AnomalySummaryDetailsClass
|
|
73
|
+
AssertionSummaryDetails = AssertionSummaryDetailsClass
|
|
74
|
+
AssertionsSummary = AssertionsSummaryClass
|
|
75
|
+
AuditStamp = AuditStampClass
|
|
76
|
+
BrowsePathEntry = BrowsePathEntryClass
|
|
77
|
+
BrowsePaths = BrowsePathsClass
|
|
78
|
+
BrowsePathsV2 = BrowsePathsV2Class
|
|
79
|
+
ChangeAuditStamps = ChangeAuditStampsClass
|
|
80
|
+
Cost = CostClass
|
|
81
|
+
CostCost = CostCostClass
|
|
82
|
+
CostCostDiscriminator = CostCostDiscriminatorClass
|
|
83
|
+
CostType = CostTypeClass
|
|
84
|
+
CronSchedule = CronScheduleClass
|
|
85
|
+
DataPlatformInstance = DataPlatformInstanceClass
|
|
86
|
+
Deprecation = DeprecationClass
|
|
87
|
+
Edge = EdgeClass
|
|
88
|
+
Embed = EmbedClass
|
|
89
|
+
FabricType = FabricTypeClass
|
|
90
|
+
FieldFormPromptAssociation = FieldFormPromptAssociationClass
|
|
91
|
+
FormAssociation = FormAssociationClass
|
|
92
|
+
FormPromptAssociation = FormPromptAssociationClass
|
|
93
|
+
FormPromptFieldAssociations = FormPromptFieldAssociationsClass
|
|
94
|
+
FormVerificationAssociation = FormVerificationAssociationClass
|
|
95
|
+
Forms = FormsClass
|
|
96
|
+
GlobalTags = GlobalTagsClass
|
|
97
|
+
GlossaryTermAssociation = GlossaryTermAssociationClass
|
|
98
|
+
GlossaryTerms = GlossaryTermsClass
|
|
99
|
+
IncidentSummaryDetails = IncidentSummaryDetailsClass
|
|
100
|
+
IncidentsSummary = IncidentsSummaryClass
|
|
101
|
+
InputField = InputFieldClass
|
|
102
|
+
InputFields = InputFieldsClass
|
|
103
|
+
InstitutionalMemory = InstitutionalMemoryClass
|
|
104
|
+
InstitutionalMemoryMetadata = InstitutionalMemoryMetadataClass
|
|
105
|
+
MLFeatureDataType = MLFeatureDataTypeClass
|
|
106
|
+
Media = MediaClass
|
|
107
|
+
MediaType = MediaTypeClass
|
|
108
|
+
Operation = OperationClass
|
|
109
|
+
OperationSourceType = OperationSourceTypeClass
|
|
110
|
+
OperationType = OperationTypeClass
|
|
111
|
+
Origin = OriginClass
|
|
112
|
+
OriginType = OriginTypeClass
|
|
113
|
+
Owner = OwnerClass
|
|
114
|
+
Ownership = OwnershipClass
|
|
115
|
+
OwnershipSource = OwnershipSourceClass
|
|
116
|
+
OwnershipSourceType = OwnershipSourceTypeClass
|
|
117
|
+
OwnershipType = OwnershipTypeClass
|
|
118
|
+
Proposals = ProposalsClass
|
|
119
|
+
RoleAssociation = RoleAssociationClass
|
|
120
|
+
Siblings = SiblingsClass
|
|
121
|
+
Status = StatusClass
|
|
122
|
+
SubTypes = SubTypesClass
|
|
123
|
+
TagAssociation = TagAssociationClass
|
|
124
|
+
TimeStamp = TimeStampClass
|
|
125
|
+
VersionTag = VersionTagClass
|
|
126
|
+
WindowDuration = WindowDurationClass
|
|
127
|
+
|
|
128
|
+
# fmt: on
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from ......schema_classes import TransformationTypeClass
|
|
10
|
+
from ......schema_classes import UDFTransformerClass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
TransformationType = TransformationTypeClass
|
|
14
|
+
UDFTransformer = UDFTransformerClass
|
|
15
|
+
|
|
16
|
+
# fmt: on
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import DataHubConnectionDetailsClass
|
|
10
|
+
from .....schema_classes import DataHubConnectionDetailsTypeClass
|
|
11
|
+
from .....schema_classes import DataHubJsonConnectionClass
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
DataHubConnectionDetails = DataHubConnectionDetailsClass
|
|
15
|
+
DataHubConnectionDetailsType = DataHubConnectionDetailsTypeClass
|
|
16
|
+
DataHubJsonConnection = DataHubJsonConnectionClass
|
|
17
|
+
|
|
18
|
+
# fmt: on
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import ConstraintInfoClass
|
|
10
|
+
from .....schema_classes import ConstraintParamsClass
|
|
11
|
+
from .....schema_classes import GlossaryTermInNodeConstraintClass
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
ConstraintInfo = ConstraintInfoClass
|
|
15
|
+
ConstraintParams = ConstraintParamsClass
|
|
16
|
+
GlossaryTermInNodeConstraint = GlossaryTermInNodeConstraintClass
|
|
17
|
+
|
|
18
|
+
# fmt: on
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import ContainerClass
|
|
10
|
+
from .....schema_classes import ContainerPropertiesClass
|
|
11
|
+
from .....schema_classes import EditableContainerPropertiesClass
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
Container = ContainerClass
|
|
15
|
+
ContainerProperties = ContainerPropertiesClass
|
|
16
|
+
EditableContainerProperties = EditableContainerPropertiesClass
|
|
17
|
+
|
|
18
|
+
# fmt: on
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import DashboardInfoClass
|
|
10
|
+
from .....schema_classes import DashboardUsageStatisticsClass
|
|
11
|
+
from .....schema_classes import DashboardUserUsageCountsClass
|
|
12
|
+
from .....schema_classes import EditableDashboardPropertiesClass
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
DashboardInfo = DashboardInfoClass
|
|
16
|
+
DashboardUsageStatistics = DashboardUsageStatisticsClass
|
|
17
|
+
DashboardUserUsageCounts = DashboardUserUsageCountsClass
|
|
18
|
+
EditableDashboardProperties = EditableDashboardPropertiesClass
|
|
19
|
+
|
|
20
|
+
# fmt: on
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import DataContractPropertiesClass
|
|
10
|
+
from .....schema_classes import DataContractStateClass
|
|
11
|
+
from .....schema_classes import DataContractStatusClass
|
|
12
|
+
from .....schema_classes import DataQualityContractClass
|
|
13
|
+
from .....schema_classes import FreshnessContractClass
|
|
14
|
+
from .....schema_classes import SchemaContractClass
|
|
15
|
+
from .....schema_classes import SlaContractClass
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
DataContractProperties = DataContractPropertiesClass
|
|
19
|
+
DataContractState = DataContractStateClass
|
|
20
|
+
DataContractStatus = DataContractStatusClass
|
|
21
|
+
DataQualityContract = DataQualityContractClass
|
|
22
|
+
FreshnessContract = FreshnessContractClass
|
|
23
|
+
SchemaContract = SchemaContractClass
|
|
24
|
+
SlaContract = SlaContractClass
|
|
25
|
+
|
|
26
|
+
# fmt: on
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import DataHubSearchConfigClass
|
|
10
|
+
from .....schema_classes import SearchFieldTypeClass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
DataHubSearchConfig = DataHubSearchConfigClass
|
|
14
|
+
SearchFieldType = SearchFieldTypeClass
|
|
15
|
+
|
|
16
|
+
# fmt: on
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from .....schema_classes import DataFlowInfoClass
|
|
10
|
+
from .....schema_classes import DataJobInfoClass
|
|
11
|
+
from .....schema_classes import DataJobInputOutputClass
|
|
12
|
+
from .....schema_classes import EditableDataFlowPropertiesClass
|
|
13
|
+
from .....schema_classes import EditableDataJobPropertiesClass
|
|
14
|
+
from .....schema_classes import JobStatusClass
|
|
15
|
+
from .....schema_classes import VersionInfoClass
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
DataFlowInfo = DataFlowInfoClass
|
|
19
|
+
DataJobInfo = DataJobInfoClass
|
|
20
|
+
DataJobInputOutput = DataJobInputOutputClass
|
|
21
|
+
EditableDataFlowProperties = EditableDataFlowPropertiesClass
|
|
22
|
+
EditableDataJobProperties = EditableDataJobPropertiesClass
|
|
23
|
+
JobStatus = JobStatusClass
|
|
24
|
+
VersionInfo = VersionInfoClass
|
|
25
|
+
|
|
26
|
+
# fmt: on
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
from ......schema_classes import AzkabanJobTypeClass
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
AzkabanJobType = AzkabanJobTypeClass
|
|
13
|
+
|
|
14
|
+
# fmt: on
|