acryl-datahub-cloud 0.3.12.4rc3__py3-none-any.whl → 0.3.13__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.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/lineage_features/source.py +8 -2
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +168 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +6 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +31 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +25 -0
- acryl_datahub_cloud/metadata/schema.avsc +1543 -275
- acryl_datahub_cloud/metadata/schema_classes.py +2040 -4
- acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +136 -1
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +46 -0
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +25 -0
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +25 -0
- acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +50 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +281 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +175 -0
- acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
- acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +71 -0
- acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +140 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +163 -1
- acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +62 -44
- acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +61 -0
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +25 -0
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +4 -0
- acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +1 -12
- acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +61 -0
- acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
- acryl_datahub_cloud/sdk/assertion/__init__.py +49 -0
- acryl_datahub_cloud/sdk/assertion/assertion_base.py +65 -806
- acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
- acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
- acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
- acryl_datahub_cloud/sdk/assertion/sql_assertion.py +256 -0
- acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +0 -344
- acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +220 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +191 -0
- acryl_datahub_cloud/sdk/assertions_client.py +6 -2
- {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13.dist-info}/METADATA +47 -45
- {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13.dist-info}/RECORD +53 -35
- {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13.dist-info}/top_level.txt +0 -0
|
@@ -45,6 +45,7 @@ SYSTEM_ACTOR = "urn:li:corpuser:__datahub_system"
|
|
|
45
45
|
|
|
46
46
|
class LineageFeaturesSourceConfig(ConfigModel):
|
|
47
47
|
enabled: bool = True
|
|
48
|
+
materialize_entities: bool = False
|
|
48
49
|
search_index: ElasticSearchClientConfig = ElasticSearchClientConfig()
|
|
49
50
|
query_timeout: int = 30
|
|
50
51
|
extract_batch_size: int = 3000
|
|
@@ -77,6 +78,7 @@ class LineageExtractGraphSourceReport(SourceReport, IngestionStageReport):
|
|
|
77
78
|
upstream_count: int = 0
|
|
78
79
|
downstream_count: int = 0
|
|
79
80
|
edges_scanned: int = 0
|
|
81
|
+
skipped_materialized_urns_count: int = 0
|
|
80
82
|
|
|
81
83
|
|
|
82
84
|
@platform_name(id="datahub", platform_name="DataHub")
|
|
@@ -321,15 +323,17 @@ class DataHubLineageFeaturesSource(Source):
|
|
|
321
323
|
f"Failed to cleanup PIT after error: {cleanup_error}"
|
|
322
324
|
)
|
|
323
325
|
raise
|
|
324
|
-
# So previous stage's calculations are done
|
|
325
|
-
self.report.new_stage("Extract lineage features End")
|
|
326
326
|
self._update_report()
|
|
327
327
|
self._delete_pit_with_retry(server, pit)
|
|
328
328
|
|
|
329
|
+
self.report.new_stage("start emission of lineage features")
|
|
329
330
|
# In Python 3.9, can be replaced by `self.self.upstream_counts.keys() | self.downstream_counts.keys()`
|
|
330
331
|
for urn in set(self.upstream_counts.keys()).union(
|
|
331
332
|
self.downstream_counts.keys()
|
|
332
333
|
):
|
|
334
|
+
if (not self.config.materialize_entities) and urn not in self.valid_urns:
|
|
335
|
+
self.report.skipped_materialized_urns_count += 1
|
|
336
|
+
continue
|
|
333
337
|
logger.debug(
|
|
334
338
|
f"{urn}: {self.upstream_counts[urn]}, {self.downstream_counts[urn]}"
|
|
335
339
|
)
|
|
@@ -346,6 +350,8 @@ class DataHubLineageFeaturesSource(Source):
|
|
|
346
350
|
).as_workunit()
|
|
347
351
|
self.report.report_workunit(wu)
|
|
348
352
|
yield wu
|
|
353
|
+
# So previous stage's calculations are done
|
|
354
|
+
self.report.new_stage("end emission of lineage features")
|
|
349
355
|
|
|
350
356
|
def get_report(self) -> SourceReport:
|
|
351
357
|
return self.report
|
|
@@ -1816,6 +1816,62 @@ class VersionSetUrn(_SpecificUrn):
|
|
|
1816
1816
|
def entity_type(self) -> str:
|
|
1817
1817
|
return self._entity_ids[1]
|
|
1818
1818
|
|
|
1819
|
+
if TYPE_CHECKING:
|
|
1820
|
+
from datahub.metadata.schema_classes import ActionWorkflowKeyClass
|
|
1821
|
+
|
|
1822
|
+
class ActionWorkflowUrn(_SpecificUrn):
|
|
1823
|
+
ENTITY_TYPE: ClassVar[Literal["actionWorkflow"]] = "actionWorkflow"
|
|
1824
|
+
_URN_PARTS: ClassVar[int] = 1
|
|
1825
|
+
|
|
1826
|
+
def __init__(self, id: Union["ActionWorkflowUrn", str], *, _allow_coercion: bool = True) -> None:
|
|
1827
|
+
if _allow_coercion:
|
|
1828
|
+
# Field coercion logic (if any is required).
|
|
1829
|
+
if isinstance(id, str):
|
|
1830
|
+
if id.startswith('urn:li:'):
|
|
1831
|
+
try:
|
|
1832
|
+
id = ActionWorkflowUrn.from_string(id)
|
|
1833
|
+
except InvalidUrnError:
|
|
1834
|
+
raise InvalidUrnError(f'Expecting a ActionWorkflowUrn but got {id}')
|
|
1835
|
+
else:
|
|
1836
|
+
id = UrnEncoder.encode_string(id)
|
|
1837
|
+
|
|
1838
|
+
# Validation logic.
|
|
1839
|
+
if not id:
|
|
1840
|
+
raise InvalidUrnError("ActionWorkflowUrn id cannot be empty")
|
|
1841
|
+
if isinstance(id, ActionWorkflowUrn):
|
|
1842
|
+
id = id.id
|
|
1843
|
+
elif isinstance(id, Urn):
|
|
1844
|
+
raise InvalidUrnError(f'Expecting a ActionWorkflowUrn but got {id}')
|
|
1845
|
+
if UrnEncoder.contains_reserved_char(id):
|
|
1846
|
+
raise InvalidUrnError(f'ActionWorkflowUrn id contains reserved characters')
|
|
1847
|
+
|
|
1848
|
+
super().__init__(self.ENTITY_TYPE, [id])
|
|
1849
|
+
|
|
1850
|
+
@classmethod
|
|
1851
|
+
def _parse_ids(cls, entity_ids: List[str]) -> "ActionWorkflowUrn":
|
|
1852
|
+
if len(entity_ids) != cls._URN_PARTS:
|
|
1853
|
+
raise InvalidUrnError(f"ActionWorkflowUrn should have {cls._URN_PARTS} parts, got {len(entity_ids)}: {entity_ids}")
|
|
1854
|
+
return cls(id=entity_ids[0], _allow_coercion=False)
|
|
1855
|
+
|
|
1856
|
+
@classmethod
|
|
1857
|
+
def underlying_key_aspect_type(cls) -> Type["ActionWorkflowKeyClass"]:
|
|
1858
|
+
from datahub.metadata.schema_classes import ActionWorkflowKeyClass
|
|
1859
|
+
|
|
1860
|
+
return ActionWorkflowKeyClass
|
|
1861
|
+
|
|
1862
|
+
def to_key_aspect(self) -> "ActionWorkflowKeyClass":
|
|
1863
|
+
from datahub.metadata.schema_classes import ActionWorkflowKeyClass
|
|
1864
|
+
|
|
1865
|
+
return ActionWorkflowKeyClass(id=self.id)
|
|
1866
|
+
|
|
1867
|
+
@classmethod
|
|
1868
|
+
def from_key_aspect(cls, key_aspect: "ActionWorkflowKeyClass") -> "ActionWorkflowUrn":
|
|
1869
|
+
return cls(id=key_aspect.id)
|
|
1870
|
+
|
|
1871
|
+
@property
|
|
1872
|
+
def id(self) -> str:
|
|
1873
|
+
return self._entity_ids[0]
|
|
1874
|
+
|
|
1819
1875
|
if TYPE_CHECKING:
|
|
1820
1876
|
from datahub.metadata.schema_classes import ChartKeyClass
|
|
1821
1877
|
|
|
@@ -1882,6 +1938,62 @@ class ChartUrn(_SpecificUrn):
|
|
|
1882
1938
|
def chart_id(self) -> str:
|
|
1883
1939
|
return self._entity_ids[1]
|
|
1884
1940
|
|
|
1941
|
+
if TYPE_CHECKING:
|
|
1942
|
+
from datahub.metadata.schema_classes import DataHubPageTemplateKeyClass
|
|
1943
|
+
|
|
1944
|
+
class DataHubPageTemplateUrn(_SpecificUrn):
|
|
1945
|
+
ENTITY_TYPE: ClassVar[Literal["dataHubPageTemplate"]] = "dataHubPageTemplate"
|
|
1946
|
+
_URN_PARTS: ClassVar[int] = 1
|
|
1947
|
+
|
|
1948
|
+
def __init__(self, id: Union["DataHubPageTemplateUrn", str], *, _allow_coercion: bool = True) -> None:
|
|
1949
|
+
if _allow_coercion:
|
|
1950
|
+
# Field coercion logic (if any is required).
|
|
1951
|
+
if isinstance(id, str):
|
|
1952
|
+
if id.startswith('urn:li:'):
|
|
1953
|
+
try:
|
|
1954
|
+
id = DataHubPageTemplateUrn.from_string(id)
|
|
1955
|
+
except InvalidUrnError:
|
|
1956
|
+
raise InvalidUrnError(f'Expecting a DataHubPageTemplateUrn but got {id}')
|
|
1957
|
+
else:
|
|
1958
|
+
id = UrnEncoder.encode_string(id)
|
|
1959
|
+
|
|
1960
|
+
# Validation logic.
|
|
1961
|
+
if not id:
|
|
1962
|
+
raise InvalidUrnError("DataHubPageTemplateUrn id cannot be empty")
|
|
1963
|
+
if isinstance(id, DataHubPageTemplateUrn):
|
|
1964
|
+
id = id.id
|
|
1965
|
+
elif isinstance(id, Urn):
|
|
1966
|
+
raise InvalidUrnError(f'Expecting a DataHubPageTemplateUrn but got {id}')
|
|
1967
|
+
if UrnEncoder.contains_reserved_char(id):
|
|
1968
|
+
raise InvalidUrnError(f'DataHubPageTemplateUrn id contains reserved characters')
|
|
1969
|
+
|
|
1970
|
+
super().__init__(self.ENTITY_TYPE, [id])
|
|
1971
|
+
|
|
1972
|
+
@classmethod
|
|
1973
|
+
def _parse_ids(cls, entity_ids: List[str]) -> "DataHubPageTemplateUrn":
|
|
1974
|
+
if len(entity_ids) != cls._URN_PARTS:
|
|
1975
|
+
raise InvalidUrnError(f"DataHubPageTemplateUrn should have {cls._URN_PARTS} parts, got {len(entity_ids)}: {entity_ids}")
|
|
1976
|
+
return cls(id=entity_ids[0], _allow_coercion=False)
|
|
1977
|
+
|
|
1978
|
+
@classmethod
|
|
1979
|
+
def underlying_key_aspect_type(cls) -> Type["DataHubPageTemplateKeyClass"]:
|
|
1980
|
+
from datahub.metadata.schema_classes import DataHubPageTemplateKeyClass
|
|
1981
|
+
|
|
1982
|
+
return DataHubPageTemplateKeyClass
|
|
1983
|
+
|
|
1984
|
+
def to_key_aspect(self) -> "DataHubPageTemplateKeyClass":
|
|
1985
|
+
from datahub.metadata.schema_classes import DataHubPageTemplateKeyClass
|
|
1986
|
+
|
|
1987
|
+
return DataHubPageTemplateKeyClass(id=self.id)
|
|
1988
|
+
|
|
1989
|
+
@classmethod
|
|
1990
|
+
def from_key_aspect(cls, key_aspect: "DataHubPageTemplateKeyClass") -> "DataHubPageTemplateUrn":
|
|
1991
|
+
return cls(id=key_aspect.id)
|
|
1992
|
+
|
|
1993
|
+
@property
|
|
1994
|
+
def id(self) -> str:
|
|
1995
|
+
return self._entity_ids[0]
|
|
1996
|
+
|
|
1885
1997
|
if TYPE_CHECKING:
|
|
1886
1998
|
from datahub.metadata.schema_classes import OwnershipTypeKeyClass
|
|
1887
1999
|
|
|
@@ -3830,6 +3942,62 @@ class ContainerUrn(_SpecificUrn):
|
|
|
3830
3942
|
def guid(self) -> str:
|
|
3831
3943
|
return self._entity_ids[0]
|
|
3832
3944
|
|
|
3945
|
+
if TYPE_CHECKING:
|
|
3946
|
+
from datahub.metadata.schema_classes import DataHubPageModuleKeyClass
|
|
3947
|
+
|
|
3948
|
+
class DataHubPageModuleUrn(_SpecificUrn):
|
|
3949
|
+
ENTITY_TYPE: ClassVar[Literal["dataHubPageModule"]] = "dataHubPageModule"
|
|
3950
|
+
_URN_PARTS: ClassVar[int] = 1
|
|
3951
|
+
|
|
3952
|
+
def __init__(self, id: Union["DataHubPageModuleUrn", str], *, _allow_coercion: bool = True) -> None:
|
|
3953
|
+
if _allow_coercion:
|
|
3954
|
+
# Field coercion logic (if any is required).
|
|
3955
|
+
if isinstance(id, str):
|
|
3956
|
+
if id.startswith('urn:li:'):
|
|
3957
|
+
try:
|
|
3958
|
+
id = DataHubPageModuleUrn.from_string(id)
|
|
3959
|
+
except InvalidUrnError:
|
|
3960
|
+
raise InvalidUrnError(f'Expecting a DataHubPageModuleUrn but got {id}')
|
|
3961
|
+
else:
|
|
3962
|
+
id = UrnEncoder.encode_string(id)
|
|
3963
|
+
|
|
3964
|
+
# Validation logic.
|
|
3965
|
+
if not id:
|
|
3966
|
+
raise InvalidUrnError("DataHubPageModuleUrn id cannot be empty")
|
|
3967
|
+
if isinstance(id, DataHubPageModuleUrn):
|
|
3968
|
+
id = id.id
|
|
3969
|
+
elif isinstance(id, Urn):
|
|
3970
|
+
raise InvalidUrnError(f'Expecting a DataHubPageModuleUrn but got {id}')
|
|
3971
|
+
if UrnEncoder.contains_reserved_char(id):
|
|
3972
|
+
raise InvalidUrnError(f'DataHubPageModuleUrn id contains reserved characters')
|
|
3973
|
+
|
|
3974
|
+
super().__init__(self.ENTITY_TYPE, [id])
|
|
3975
|
+
|
|
3976
|
+
@classmethod
|
|
3977
|
+
def _parse_ids(cls, entity_ids: List[str]) -> "DataHubPageModuleUrn":
|
|
3978
|
+
if len(entity_ids) != cls._URN_PARTS:
|
|
3979
|
+
raise InvalidUrnError(f"DataHubPageModuleUrn should have {cls._URN_PARTS} parts, got {len(entity_ids)}: {entity_ids}")
|
|
3980
|
+
return cls(id=entity_ids[0], _allow_coercion=False)
|
|
3981
|
+
|
|
3982
|
+
@classmethod
|
|
3983
|
+
def underlying_key_aspect_type(cls) -> Type["DataHubPageModuleKeyClass"]:
|
|
3984
|
+
from datahub.metadata.schema_classes import DataHubPageModuleKeyClass
|
|
3985
|
+
|
|
3986
|
+
return DataHubPageModuleKeyClass
|
|
3987
|
+
|
|
3988
|
+
def to_key_aspect(self) -> "DataHubPageModuleKeyClass":
|
|
3989
|
+
from datahub.metadata.schema_classes import DataHubPageModuleKeyClass
|
|
3990
|
+
|
|
3991
|
+
return DataHubPageModuleKeyClass(id=self.id)
|
|
3992
|
+
|
|
3993
|
+
@classmethod
|
|
3994
|
+
def from_key_aspect(cls, key_aspect: "DataHubPageModuleKeyClass") -> "DataHubPageModuleUrn":
|
|
3995
|
+
return cls(id=key_aspect.id)
|
|
3996
|
+
|
|
3997
|
+
@property
|
|
3998
|
+
def id(self) -> str:
|
|
3999
|
+
return self._entity_ids[0]
|
|
4000
|
+
|
|
3833
4001
|
if TYPE_CHECKING:
|
|
3834
4002
|
from datahub.metadata.schema_classes import EntityTypeKeyClass
|
|
3835
4003
|
|
|
@@ -0,0 +1,53 @@
|
|
|
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
|
+
# isort: skip_file
|
|
10
|
+
from .....schema_classes import ActionWorkflowCategoryClass
|
|
11
|
+
from .....schema_classes import ActionWorkflowEntrypointClass
|
|
12
|
+
from .....schema_classes import ActionWorkflowEntrypointTypeClass
|
|
13
|
+
from .....schema_classes import ActionWorkflowFieldClass
|
|
14
|
+
from .....schema_classes import ActionWorkflowFieldConditionClass
|
|
15
|
+
from .....schema_classes import ActionWorkflowFieldConditionTypeClass
|
|
16
|
+
from .....schema_classes import ActionWorkflowFormClass
|
|
17
|
+
from .....schema_classes import ActionWorkflowFormRequestClass
|
|
18
|
+
from .....schema_classes import ActionWorkflowFormRequestFieldClass
|
|
19
|
+
from .....schema_classes import ActionWorkflowInfoClass
|
|
20
|
+
from .....schema_classes import ActionWorkflowRequestAccessClass
|
|
21
|
+
from .....schema_classes import ActionWorkflowRequestStepStateClass
|
|
22
|
+
from .....schema_classes import ActionWorkflowSingleFieldValueConditionClass
|
|
23
|
+
from .....schema_classes import ActionWorkflowStepClass
|
|
24
|
+
from .....schema_classes import ActionWorkflowStepActorsClass
|
|
25
|
+
from .....schema_classes import ActionWorkflowStepDynamicAssignmentClass
|
|
26
|
+
from .....schema_classes import ActionWorkflowStepDynamicAssignmentTypeClass
|
|
27
|
+
from .....schema_classes import ActionWorkflowStepTypeClass
|
|
28
|
+
from .....schema_classes import ActionWorkflowTriggerClass
|
|
29
|
+
from .....schema_classes import ActionWorkflowTriggerTypeClass
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
ActionWorkflowCategory = ActionWorkflowCategoryClass
|
|
33
|
+
ActionWorkflowEntrypoint = ActionWorkflowEntrypointClass
|
|
34
|
+
ActionWorkflowEntrypointType = ActionWorkflowEntrypointTypeClass
|
|
35
|
+
ActionWorkflowField = ActionWorkflowFieldClass
|
|
36
|
+
ActionWorkflowFieldCondition = ActionWorkflowFieldConditionClass
|
|
37
|
+
ActionWorkflowFieldConditionType = ActionWorkflowFieldConditionTypeClass
|
|
38
|
+
ActionWorkflowForm = ActionWorkflowFormClass
|
|
39
|
+
ActionWorkflowFormRequest = ActionWorkflowFormRequestClass
|
|
40
|
+
ActionWorkflowFormRequestField = ActionWorkflowFormRequestFieldClass
|
|
41
|
+
ActionWorkflowInfo = ActionWorkflowInfoClass
|
|
42
|
+
ActionWorkflowRequestAccess = ActionWorkflowRequestAccessClass
|
|
43
|
+
ActionWorkflowRequestStepState = ActionWorkflowRequestStepStateClass
|
|
44
|
+
ActionWorkflowSingleFieldValueCondition = ActionWorkflowSingleFieldValueConditionClass
|
|
45
|
+
ActionWorkflowStep = ActionWorkflowStepClass
|
|
46
|
+
ActionWorkflowStepActors = ActionWorkflowStepActorsClass
|
|
47
|
+
ActionWorkflowStepDynamicAssignment = ActionWorkflowStepDynamicAssignmentClass
|
|
48
|
+
ActionWorkflowStepDynamicAssignmentType = ActionWorkflowStepDynamicAssignmentTypeClass
|
|
49
|
+
ActionWorkflowStepType = ActionWorkflowStepTypeClass
|
|
50
|
+
ActionWorkflowTrigger = ActionWorkflowTriggerClass
|
|
51
|
+
ActionWorkflowTriggerType = ActionWorkflowTriggerTypeClass
|
|
52
|
+
|
|
53
|
+
# fmt: on
|
|
@@ -21,6 +21,7 @@ from .....schema_classes import AssertionInferenceDetailsClass
|
|
|
21
21
|
from .....schema_classes import AssertionInfoClass
|
|
22
22
|
from .....schema_classes import AssertionMetricClass
|
|
23
23
|
from .....schema_classes import AssertionMonitorSensitivityClass
|
|
24
|
+
from .....schema_classes import AssertionNoteClass
|
|
24
25
|
from .....schema_classes import AssertionResultClass
|
|
25
26
|
from .....schema_classes import AssertionResultErrorClass
|
|
26
27
|
from .....schema_classes import AssertionResultErrorTypeClass
|
|
@@ -87,6 +88,7 @@ AssertionInferenceDetails = AssertionInferenceDetailsClass
|
|
|
87
88
|
AssertionInfo = AssertionInfoClass
|
|
88
89
|
AssertionMetric = AssertionMetricClass
|
|
89
90
|
AssertionMonitorSensitivity = AssertionMonitorSensitivityClass
|
|
91
|
+
AssertionNote = AssertionNoteClass
|
|
90
92
|
AssertionResult = AssertionResultClass
|
|
91
93
|
AssertionResultError = AssertionResultErrorClass
|
|
92
94
|
AssertionResultErrorType = AssertionResultErrorTypeClass
|
|
@@ -13,6 +13,7 @@ from .....schema_classes import CorpGroupSettingsClass
|
|
|
13
13
|
from .....schema_classes import CorpUserAppearanceSettingsClass
|
|
14
14
|
from .....schema_classes import CorpUserCredentialsClass
|
|
15
15
|
from .....schema_classes import CorpUserEditableInfoClass
|
|
16
|
+
from .....schema_classes import CorpUserHomePageSettingsClass
|
|
16
17
|
from .....schema_classes import CorpUserInfoClass
|
|
17
18
|
from .....schema_classes import CorpUserSettingsClass
|
|
18
19
|
from .....schema_classes import CorpUserStatusClass
|
|
@@ -29,6 +30,7 @@ CorpGroupSettings = CorpGroupSettingsClass
|
|
|
29
30
|
CorpUserAppearanceSettings = CorpUserAppearanceSettingsClass
|
|
30
31
|
CorpUserCredentials = CorpUserCredentialsClass
|
|
31
32
|
CorpUserEditableInfo = CorpUserEditableInfoClass
|
|
33
|
+
CorpUserHomePageSettings = CorpUserHomePageSettingsClass
|
|
32
34
|
CorpUserInfo = CorpUserInfoClass
|
|
33
35
|
CorpUserSettings = CorpUserSettingsClass
|
|
34
36
|
CorpUserStatus = CorpUserStatusClass
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
# isort: skip_file
|
|
10
|
+
from .....schema_classes import LogicalParentClass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
LogicalParent = LogicalParentClass
|
|
14
|
+
|
|
15
|
+
# fmt: on
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
# fmt: off
|
|
9
9
|
# isort: skip_file
|
|
10
10
|
from ......schema_classes import ActionRequestKeyClass
|
|
11
|
+
from ......schema_classes import ActionWorkflowKeyClass
|
|
11
12
|
from ......schema_classes import AnomalyKeyClass
|
|
12
13
|
from ......schema_classes import AssertionKeyClass
|
|
13
14
|
from ......schema_classes import ChartKeyClass
|
|
@@ -24,6 +25,8 @@ from ......schema_classes import DataHubConnectionKeyClass
|
|
|
24
25
|
from ......schema_classes import DataHubIngestionSourceKeyClass
|
|
25
26
|
from ......schema_classes import DataHubMetricCubeKeyClass
|
|
26
27
|
from ......schema_classes import DataHubOpenAPISchemaKeyClass
|
|
28
|
+
from ......schema_classes import DataHubPageModuleKeyClass
|
|
29
|
+
from ......schema_classes import DataHubPageTemplateKeyClass
|
|
27
30
|
from ......schema_classes import DataHubPersonaKeyClass
|
|
28
31
|
from ......schema_classes import DataHubPolicyKeyClass
|
|
29
32
|
from ......schema_classes import DataHubRetentionKeyClass
|
|
@@ -75,6 +78,7 @@ from ......schema_classes import VersionSetKeyClass
|
|
|
75
78
|
|
|
76
79
|
|
|
77
80
|
ActionRequestKey = ActionRequestKeyClass
|
|
81
|
+
ActionWorkflowKey = ActionWorkflowKeyClass
|
|
78
82
|
AnomalyKey = AnomalyKeyClass
|
|
79
83
|
AssertionKey = AssertionKeyClass
|
|
80
84
|
ChartKey = ChartKeyClass
|
|
@@ -91,6 +95,8 @@ DataHubConnectionKey = DataHubConnectionKeyClass
|
|
|
91
95
|
DataHubIngestionSourceKey = DataHubIngestionSourceKeyClass
|
|
92
96
|
DataHubMetricCubeKey = DataHubMetricCubeKeyClass
|
|
93
97
|
DataHubOpenAPISchemaKey = DataHubOpenAPISchemaKeyClass
|
|
98
|
+
DataHubPageModuleKey = DataHubPageModuleKeyClass
|
|
99
|
+
DataHubPageTemplateKey = DataHubPageTemplateKeyClass
|
|
94
100
|
DataHubPersonaKey = DataHubPersonaKeyClass
|
|
95
101
|
DataHubPolicyKey = DataHubPolicyKeyClass
|
|
96
102
|
DataHubRetentionKey = DataHubRetentionKeyClass
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
# isort: skip_file
|
|
10
|
+
from .....schema_classes import AssetCollectionModuleParamsClass
|
|
11
|
+
from .....schema_classes import DataHubPageModuleParamsClass
|
|
12
|
+
from .....schema_classes import DataHubPageModulePropertiesClass
|
|
13
|
+
from .....schema_classes import DataHubPageModuleTypeClass
|
|
14
|
+
from .....schema_classes import DataHubPageModuleVisibilityClass
|
|
15
|
+
from .....schema_classes import HierarchyModuleParamsClass
|
|
16
|
+
from .....schema_classes import LinkModuleParamsClass
|
|
17
|
+
from .....schema_classes import PageModuleScopeClass
|
|
18
|
+
from .....schema_classes import RichTextModuleParamsClass
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
AssetCollectionModuleParams = AssetCollectionModuleParamsClass
|
|
22
|
+
DataHubPageModuleParams = DataHubPageModuleParamsClass
|
|
23
|
+
DataHubPageModuleProperties = DataHubPageModulePropertiesClass
|
|
24
|
+
DataHubPageModuleType = DataHubPageModuleTypeClass
|
|
25
|
+
DataHubPageModuleVisibility = DataHubPageModuleVisibilityClass
|
|
26
|
+
HierarchyModuleParams = HierarchyModuleParamsClass
|
|
27
|
+
LinkModuleParams = LinkModuleParamsClass
|
|
28
|
+
PageModuleScope = PageModuleScopeClass
|
|
29
|
+
RichTextModuleParams = RichTextModuleParamsClass
|
|
30
|
+
|
|
31
|
+
# fmt: on
|
|
@@ -7,9 +7,11 @@
|
|
|
7
7
|
# pylint: skip-file
|
|
8
8
|
# fmt: off
|
|
9
9
|
# isort: skip_file
|
|
10
|
+
from ......schema_classes import ApplicationsSettingsClass
|
|
10
11
|
from ......schema_classes import DocPropagationFeatureSettingsClass
|
|
11
12
|
from ......schema_classes import DocumentationAiSettingsClass
|
|
12
13
|
from ......schema_classes import EmailIntegrationSettingsClass
|
|
14
|
+
from ......schema_classes import GlobalHomePageSettingsClass
|
|
13
15
|
from ......schema_classes import GlobalIncidentsSettingsClass
|
|
14
16
|
from ......schema_classes import GlobalIntegrationSettingsClass
|
|
15
17
|
from ......schema_classes import GlobalNotificationSettingsClass
|
|
@@ -22,9 +24,11 @@ from ......schema_classes import SlackIntegrationSettingsClass
|
|
|
22
24
|
from ......schema_classes import SsoSettingsClass
|
|
23
25
|
|
|
24
26
|
|
|
27
|
+
ApplicationsSettings = ApplicationsSettingsClass
|
|
25
28
|
DocPropagationFeatureSettings = DocPropagationFeatureSettingsClass
|
|
26
29
|
DocumentationAiSettings = DocumentationAiSettingsClass
|
|
27
30
|
EmailIntegrationSettings = EmailIntegrationSettingsClass
|
|
31
|
+
GlobalHomePageSettings = GlobalHomePageSettingsClass
|
|
28
32
|
GlobalIncidentsSettings = GlobalIncidentsSettingsClass
|
|
29
33
|
GlobalIntegrationSettings = GlobalIntegrationSettingsClass
|
|
30
34
|
GlobalNotificationSettings = GlobalNotificationSettingsClass
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
# isort: skip_file
|
|
10
|
+
from .....schema_classes import DataHubPageTemplatePropertiesClass
|
|
11
|
+
from .....schema_classes import DataHubPageTemplateRowClass
|
|
12
|
+
from .....schema_classes import DataHubPageTemplateSurfaceClass
|
|
13
|
+
from .....schema_classes import DataHubPageTemplateVisibilityClass
|
|
14
|
+
from .....schema_classes import PageTemplateScopeClass
|
|
15
|
+
from .....schema_classes import PageTemplateSurfaceTypeClass
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
DataHubPageTemplateProperties = DataHubPageTemplatePropertiesClass
|
|
19
|
+
DataHubPageTemplateRow = DataHubPageTemplateRowClass
|
|
20
|
+
DataHubPageTemplateSurface = DataHubPageTemplateSurfaceClass
|
|
21
|
+
DataHubPageTemplateVisibility = DataHubPageTemplateVisibilityClass
|
|
22
|
+
PageTemplateScope = PageTemplateScopeClass
|
|
23
|
+
PageTemplateSurfaceType = PageTemplateSurfaceTypeClass
|
|
24
|
+
|
|
25
|
+
# fmt: on
|