acryl-datahub-cloud 0.3.11.1rc8__py3-none-any.whl → 0.3.12rc3__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/action_request/action_request_owner_source.py +36 -6
- acryl_datahub_cloud/datahub_forms_notifications/__init__.py +0 -0
- acryl_datahub_cloud/datahub_forms_notifications/forms_notifications_source.py +524 -0
- acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
- acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
- acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
- acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
- acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +49 -40
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +2014 -1958
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -2
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +8 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +26713 -26274
- acryl_datahub_cloud/metadata/schema_classes.py +1302 -777
- acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
- acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +72 -0
- acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +220 -208
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +36 -7
- acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +40 -8
- acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +2 -2
- acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +14 -0
- acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
- acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
- acryl_datahub_cloud/metadata/schemas/FormKey.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
- acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +30 -0
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +21 -9
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +39 -10
- acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/Operation.avsc +17 -0
- acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +3 -3
- acryl_datahub_cloud/metadata/schemas/__init__.py +3 -3
- acryl_datahub_cloud/notifications/__init__.py +0 -0
- acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
- acryl_datahub_cloud/sdk/__init__.py +25 -0
- acryl_datahub_cloud/sdk/assertion.py +767 -0
- acryl_datahub_cloud/sdk/assertion_input.py +1335 -0
- acryl_datahub_cloud/sdk/assertions_client.py +1153 -0
- acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
- acryl_datahub_cloud/sdk/entities/assertion.py +425 -0
- acryl_datahub_cloud/sdk/entities/monitor.py +291 -0
- acryl_datahub_cloud/sdk/entities/subscription.py +84 -0
- acryl_datahub_cloud/sdk/errors.py +34 -0
- acryl_datahub_cloud/sdk/resolver_client.py +39 -0
- acryl_datahub_cloud/sdk/subscription_client.py +678 -0
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/METADATA +44 -39
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/RECORD +79 -55
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/entry_points.txt +1 -0
- acryl_datahub_cloud/_sdk_extras/__init__.py +0 -4
- acryl_datahub_cloud/_sdk_extras/assertion.py +0 -15
- acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -23
- {acryl_datahub_cloud-0.3.11.1rc8.dist-info → acryl_datahub_cloud-0.3.12rc3.dist-info}/top_level.txt +0 -0
|
@@ -1699,29 +1699,32 @@ class AnomalyReviewStateClass(object):
|
|
|
1699
1699
|
|
|
1700
1700
|
|
|
1701
1701
|
class AnomalySourceClass(DictWrapper):
|
|
1702
|
-
"""Information about the source of an anomaly raised on an asset."""
|
|
1702
|
+
"""Information about the source of feedback for an anomaly raised on an asset."""
|
|
1703
1703
|
|
|
1704
1704
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.anomaly.AnomalySource")
|
|
1705
1705
|
def __init__(self,
|
|
1706
1706
|
type: Union[str, "AnomalySourceTypeClass"],
|
|
1707
1707
|
sourceUrn: Union[None, str]=None,
|
|
1708
|
+
sourceEventTimestampMillis: Union[None, int]=None,
|
|
1708
1709
|
properties: Union[None, "AnomalySourcePropertiesClass"]=None,
|
|
1709
1710
|
):
|
|
1710
1711
|
super().__init__()
|
|
1711
1712
|
|
|
1712
1713
|
self.type = type
|
|
1713
1714
|
self.sourceUrn = sourceUrn
|
|
1715
|
+
self.sourceEventTimestampMillis = sourceEventTimestampMillis
|
|
1714
1716
|
self.properties = properties
|
|
1715
1717
|
|
|
1716
1718
|
def _restore_defaults(self) -> None:
|
|
1717
1719
|
self.type = AnomalySourceTypeClass.INFERRED_ASSERTION_FAILURE
|
|
1718
1720
|
self.sourceUrn = self.RECORD_SCHEMA.fields_dict["sourceUrn"].default
|
|
1721
|
+
self.sourceEventTimestampMillis = self.RECORD_SCHEMA.fields_dict["sourceEventTimestampMillis"].default
|
|
1719
1722
|
self.properties = self.RECORD_SCHEMA.fields_dict["properties"].default
|
|
1720
1723
|
|
|
1721
1724
|
|
|
1722
1725
|
@property
|
|
1723
1726
|
def type(self) -> Union[str, "AnomalySourceTypeClass"]:
|
|
1724
|
-
"""
|
|
1727
|
+
"""How this feedback was provided."""
|
|
1725
1728
|
return self._inner_dict.get('type') # type: ignore
|
|
1726
1729
|
|
|
1727
1730
|
@type.setter
|
|
@@ -1732,7 +1735,7 @@ class AnomalySourceClass(DictWrapper):
|
|
|
1732
1735
|
@property
|
|
1733
1736
|
def sourceUrn(self) -> Union[None, str]:
|
|
1734
1737
|
"""Reference to an URN related to the source of an anomaly.
|
|
1735
|
-
|
|
1738
|
+
For assertion monitors, this will contain the urn of the source Assertion."""
|
|
1736
1739
|
return self._inner_dict.get('sourceUrn') # type: ignore
|
|
1737
1740
|
|
|
1738
1741
|
@sourceUrn.setter
|
|
@@ -1740,10 +1743,21 @@ class AnomalySourceClass(DictWrapper):
|
|
|
1740
1743
|
self._inner_dict['sourceUrn'] = value
|
|
1741
1744
|
|
|
1742
1745
|
|
|
1746
|
+
@property
|
|
1747
|
+
def sourceEventTimestampMillis(self) -> Union[None, int]:
|
|
1748
|
+
"""The timestamp of the event that triggered the anomaly.
|
|
1749
|
+
For assertion monitors, this will be the timestamp of the assertion run event."""
|
|
1750
|
+
return self._inner_dict.get('sourceEventTimestampMillis') # type: ignore
|
|
1751
|
+
|
|
1752
|
+
@sourceEventTimestampMillis.setter
|
|
1753
|
+
def sourceEventTimestampMillis(self, value: Union[None, int]) -> None:
|
|
1754
|
+
self._inner_dict['sourceEventTimestampMillis'] = value
|
|
1755
|
+
|
|
1756
|
+
|
|
1743
1757
|
@property
|
|
1744
1758
|
def properties(self) -> Union[None, "AnomalySourcePropertiesClass"]:
|
|
1745
|
-
"""Additional properties about the source, for example which
|
|
1746
|
-
of an assertion generated
|
|
1759
|
+
"""Additional properties about the source, for example which metric
|
|
1760
|
+
of an assertion generated the anomaly."""
|
|
1747
1761
|
return self._inner_dict.get('properties') # type: ignore
|
|
1748
1762
|
|
|
1749
1763
|
@properties.setter
|
|
@@ -1780,12 +1794,16 @@ class AnomalySourceTypeClass(object):
|
|
|
1780
1794
|
# No docs available.
|
|
1781
1795
|
|
|
1782
1796
|
INFERRED_ASSERTION_FAILURE = "INFERRED_ASSERTION_FAILURE"
|
|
1783
|
-
"""An assertion has failed, triggering the anomaly."""
|
|
1797
|
+
"""An assertion has failed, triggering the anomaly report."""
|
|
1798
|
+
|
|
1799
|
+
USER_FEEDBACK = "USER_FEEDBACK"
|
|
1800
|
+
"""An anomaly was reported by a user."""
|
|
1784
1801
|
|
|
1785
1802
|
|
|
1786
1803
|
|
|
1787
1804
|
class MonitorAnomalyEventClass(_Aspect):
|
|
1788
|
-
"""
|
|
1805
|
+
"""A feedback log of anomalies detected by a monitor
|
|
1806
|
+
NOTE: this is an immutable log. The most recent entry for a given run can be used to determine the state of the anomaly."""
|
|
1789
1807
|
|
|
1790
1808
|
|
|
1791
1809
|
ASPECT_NAME = 'monitorAnomalyEvent'
|
|
@@ -1892,7 +1910,7 @@ class MonitorAnomalyEventClass(_Aspect):
|
|
|
1892
1910
|
|
|
1893
1911
|
@property
|
|
1894
1912
|
def created(self) -> "TimeStampClass":
|
|
1895
|
-
"""
|
|
1913
|
+
"""@Deprecated: this matches the timestampMillis field in the TimeseriesAspectBase."""
|
|
1896
1914
|
return self._inner_dict.get('created') # type: ignore
|
|
1897
1915
|
|
|
1898
1916
|
@created.setter
|
|
@@ -1902,7 +1920,8 @@ class MonitorAnomalyEventClass(_Aspect):
|
|
|
1902
1920
|
|
|
1903
1921
|
@property
|
|
1904
1922
|
def lastUpdated(self) -> "TimeStampClass":
|
|
1905
|
-
"""The time at which the
|
|
1923
|
+
"""The time at which the anomaly was last updated
|
|
1924
|
+
@Deprecated: this field is not used as this is an immutable log."""
|
|
1906
1925
|
return self._inner_dict.get('lastUpdated') # type: ignore
|
|
1907
1926
|
|
|
1908
1927
|
@lastUpdated.setter
|
|
@@ -1910,6 +1929,136 @@ class MonitorAnomalyEventClass(_Aspect):
|
|
|
1910
1929
|
self._inner_dict['lastUpdated'] = value
|
|
1911
1930
|
|
|
1912
1931
|
|
|
1932
|
+
class ApplicationKeyClass(_Aspect):
|
|
1933
|
+
"""Key for a Query"""
|
|
1934
|
+
|
|
1935
|
+
|
|
1936
|
+
ASPECT_NAME = 'applicationKey'
|
|
1937
|
+
ASPECT_INFO = {'keyForEntity': 'application', 'entityCategory': 'core', 'entityAspects': ['applicationProperties', 'ownership', 'glossaryTerms', 'globalTags', 'domains', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
1938
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.ApplicationKey")
|
|
1939
|
+
|
|
1940
|
+
def __init__(self,
|
|
1941
|
+
id: str,
|
|
1942
|
+
):
|
|
1943
|
+
super().__init__()
|
|
1944
|
+
|
|
1945
|
+
self.id = id
|
|
1946
|
+
|
|
1947
|
+
def _restore_defaults(self) -> None:
|
|
1948
|
+
self.id = str()
|
|
1949
|
+
|
|
1950
|
+
|
|
1951
|
+
@property
|
|
1952
|
+
def id(self) -> str:
|
|
1953
|
+
"""A unique id for the Application."""
|
|
1954
|
+
return self._inner_dict.get('id') # type: ignore
|
|
1955
|
+
|
|
1956
|
+
@id.setter
|
|
1957
|
+
def id(self, value: str) -> None:
|
|
1958
|
+
self._inner_dict['id'] = value
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
class ApplicationPropertiesClass(_Aspect):
|
|
1962
|
+
"""The main properties of an Application"""
|
|
1963
|
+
|
|
1964
|
+
|
|
1965
|
+
ASPECT_NAME = 'applicationProperties'
|
|
1966
|
+
ASPECT_INFO = {}
|
|
1967
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.ApplicationProperties")
|
|
1968
|
+
|
|
1969
|
+
def __init__(self,
|
|
1970
|
+
customProperties: Optional[Dict[str, str]]=None,
|
|
1971
|
+
externalUrl: Union[None, str]=None,
|
|
1972
|
+
name: Union[None, str]=None,
|
|
1973
|
+
description: Union[None, str]=None,
|
|
1974
|
+
):
|
|
1975
|
+
super().__init__()
|
|
1976
|
+
|
|
1977
|
+
if customProperties is None:
|
|
1978
|
+
# default: {}
|
|
1979
|
+
self.customProperties = dict()
|
|
1980
|
+
else:
|
|
1981
|
+
self.customProperties = customProperties
|
|
1982
|
+
self.externalUrl = externalUrl
|
|
1983
|
+
self.name = name
|
|
1984
|
+
self.description = description
|
|
1985
|
+
|
|
1986
|
+
def _restore_defaults(self) -> None:
|
|
1987
|
+
self.customProperties = dict()
|
|
1988
|
+
self.externalUrl = self.RECORD_SCHEMA.fields_dict["externalUrl"].default
|
|
1989
|
+
self.name = self.RECORD_SCHEMA.fields_dict["name"].default
|
|
1990
|
+
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
1991
|
+
|
|
1992
|
+
|
|
1993
|
+
@property
|
|
1994
|
+
def customProperties(self) -> Dict[str, str]:
|
|
1995
|
+
"""Custom property bag."""
|
|
1996
|
+
return self._inner_dict.get('customProperties') # type: ignore
|
|
1997
|
+
|
|
1998
|
+
@customProperties.setter
|
|
1999
|
+
def customProperties(self, value: Dict[str, str]) -> None:
|
|
2000
|
+
self._inner_dict['customProperties'] = value
|
|
2001
|
+
|
|
2002
|
+
|
|
2003
|
+
@property
|
|
2004
|
+
def externalUrl(self) -> Union[None, str]:
|
|
2005
|
+
"""URL where the reference exist"""
|
|
2006
|
+
return self._inner_dict.get('externalUrl') # type: ignore
|
|
2007
|
+
|
|
2008
|
+
@externalUrl.setter
|
|
2009
|
+
def externalUrl(self, value: Union[None, str]) -> None:
|
|
2010
|
+
self._inner_dict['externalUrl'] = value
|
|
2011
|
+
|
|
2012
|
+
|
|
2013
|
+
@property
|
|
2014
|
+
def name(self) -> Union[None, str]:
|
|
2015
|
+
"""Display name of the Application"""
|
|
2016
|
+
return self._inner_dict.get('name') # type: ignore
|
|
2017
|
+
|
|
2018
|
+
@name.setter
|
|
2019
|
+
def name(self, value: Union[None, str]) -> None:
|
|
2020
|
+
self._inner_dict['name'] = value
|
|
2021
|
+
|
|
2022
|
+
|
|
2023
|
+
@property
|
|
2024
|
+
def description(self) -> Union[None, str]:
|
|
2025
|
+
"""Documentation of the application"""
|
|
2026
|
+
return self._inner_dict.get('description') # type: ignore
|
|
2027
|
+
|
|
2028
|
+
@description.setter
|
|
2029
|
+
def description(self, value: Union[None, str]) -> None:
|
|
2030
|
+
self._inner_dict['description'] = value
|
|
2031
|
+
|
|
2032
|
+
|
|
2033
|
+
class ApplicationsClass(_Aspect):
|
|
2034
|
+
"""Links from an Asset to its Applications"""
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
ASPECT_NAME = 'applications'
|
|
2038
|
+
ASPECT_INFO = {}
|
|
2039
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.Applications")
|
|
2040
|
+
|
|
2041
|
+
def __init__(self,
|
|
2042
|
+
applications: List[str],
|
|
2043
|
+
):
|
|
2044
|
+
super().__init__()
|
|
2045
|
+
|
|
2046
|
+
self.applications = applications
|
|
2047
|
+
|
|
2048
|
+
def _restore_defaults(self) -> None:
|
|
2049
|
+
self.applications = list()
|
|
2050
|
+
|
|
2051
|
+
|
|
2052
|
+
@property
|
|
2053
|
+
def applications(self) -> List[str]:
|
|
2054
|
+
"""The Applications attached to an Asset"""
|
|
2055
|
+
return self._inner_dict.get('applications') # type: ignore
|
|
2056
|
+
|
|
2057
|
+
@applications.setter
|
|
2058
|
+
def applications(self, value: List[str]) -> None:
|
|
2059
|
+
self._inner_dict['applications'] = value
|
|
2060
|
+
|
|
2061
|
+
|
|
1913
2062
|
class AdjustmentAlgorithmClass(object):
|
|
1914
2063
|
"""The adjustment algorithm to use when determining the threshold for an assertion."""
|
|
1915
2064
|
|
|
@@ -2132,15 +2281,17 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2132
2281
|
asserteeUrn: str,
|
|
2133
2282
|
assertionUrn: str,
|
|
2134
2283
|
status: Union[str, "AssertionRunStatusClass"],
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2284
|
+
creator: Union[None, str]=None,
|
|
2285
|
+
asserteeDomains: Union[None, List[str]]=None,
|
|
2286
|
+
asserteeDataProducts: Union[None, List[str]]=None,
|
|
2287
|
+
asserteeTags: Union[None, List[str]]=None,
|
|
2288
|
+
asserteeGlossaryTerms: Union[None, List[str]]=None,
|
|
2289
|
+
asserteeOwners: Union[None, List[str]]=None,
|
|
2290
|
+
asserteeDataPlatform: Union[None, str]=None,
|
|
2291
|
+
asserteeDataPlatformInstance: Union[None, str]=None,
|
|
2292
|
+
asserteeSchemaFieldGlossaryTerms: Union[None, List[str]]=None,
|
|
2293
|
+
asserteeSchemaFieldTags: Union[None, List[str]]=None,
|
|
2141
2294
|
result: Union[None, "AssertionResultClass"]=None,
|
|
2142
|
-
runtimeContext: Union[None, Dict[str, str]]=None,
|
|
2143
|
-
batchSpec: Union[None, "BatchSpecClass"]=None,
|
|
2144
2295
|
eventGranularity: Union[None, "TimeWindowSizeClass"]=None,
|
|
2145
2296
|
partitionSpec: Optional[Union["PartitionSpecClass", None]]=None,
|
|
2146
2297
|
messageId: Union[None, str]=None,
|
|
@@ -2148,20 +2299,22 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2148
2299
|
super().__init__()
|
|
2149
2300
|
|
|
2150
2301
|
self.type = type
|
|
2151
|
-
self.
|
|
2152
|
-
self.
|
|
2153
|
-
self.
|
|
2154
|
-
self.
|
|
2155
|
-
self.
|
|
2156
|
-
self.
|
|
2302
|
+
self.creator = creator
|
|
2303
|
+
self.asserteeDomains = asserteeDomains
|
|
2304
|
+
self.asserteeDataProducts = asserteeDataProducts
|
|
2305
|
+
self.asserteeTags = asserteeTags
|
|
2306
|
+
self.asserteeGlossaryTerms = asserteeGlossaryTerms
|
|
2307
|
+
self.asserteeOwners = asserteeOwners
|
|
2308
|
+
self.asserteeDataPlatform = asserteeDataPlatform
|
|
2309
|
+
self.asserteeDataPlatformInstance = asserteeDataPlatformInstance
|
|
2310
|
+
self.asserteeSchemaFieldGlossaryTerms = asserteeSchemaFieldGlossaryTerms
|
|
2311
|
+
self.asserteeSchemaFieldTags = asserteeSchemaFieldTags
|
|
2157
2312
|
self.timestampMillis = timestampMillis
|
|
2158
2313
|
self.runId = runId
|
|
2159
2314
|
self.asserteeUrn = asserteeUrn
|
|
2160
2315
|
self.assertionUrn = assertionUrn
|
|
2161
2316
|
self.status = status
|
|
2162
2317
|
self.result = result
|
|
2163
|
-
self.runtimeContext = runtimeContext
|
|
2164
|
-
self.batchSpec = batchSpec
|
|
2165
2318
|
self.eventGranularity = eventGranularity
|
|
2166
2319
|
if partitionSpec is None:
|
|
2167
2320
|
# default: {'partition': 'FULL_TABLE_SNAPSHOT', 'type': 'FULL_TABLE', 'timePartition': None}
|
|
@@ -2172,20 +2325,22 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2172
2325
|
|
|
2173
2326
|
def _restore_defaults(self) -> None:
|
|
2174
2327
|
self.type = AssertionTypeClass.DATASET
|
|
2175
|
-
self.
|
|
2176
|
-
self.
|
|
2177
|
-
self.
|
|
2178
|
-
self.
|
|
2179
|
-
self.
|
|
2180
|
-
self.
|
|
2328
|
+
self.creator = self.RECORD_SCHEMA.fields_dict["creator"].default
|
|
2329
|
+
self.asserteeDomains = self.RECORD_SCHEMA.fields_dict["asserteeDomains"].default
|
|
2330
|
+
self.asserteeDataProducts = self.RECORD_SCHEMA.fields_dict["asserteeDataProducts"].default
|
|
2331
|
+
self.asserteeTags = self.RECORD_SCHEMA.fields_dict["asserteeTags"].default
|
|
2332
|
+
self.asserteeGlossaryTerms = self.RECORD_SCHEMA.fields_dict["asserteeGlossaryTerms"].default
|
|
2333
|
+
self.asserteeOwners = self.RECORD_SCHEMA.fields_dict["asserteeOwners"].default
|
|
2334
|
+
self.asserteeDataPlatform = self.RECORD_SCHEMA.fields_dict["asserteeDataPlatform"].default
|
|
2335
|
+
self.asserteeDataPlatformInstance = self.RECORD_SCHEMA.fields_dict["asserteeDataPlatformInstance"].default
|
|
2336
|
+
self.asserteeSchemaFieldGlossaryTerms = self.RECORD_SCHEMA.fields_dict["asserteeSchemaFieldGlossaryTerms"].default
|
|
2337
|
+
self.asserteeSchemaFieldTags = self.RECORD_SCHEMA.fields_dict["asserteeSchemaFieldTags"].default
|
|
2181
2338
|
self.timestampMillis = int()
|
|
2182
2339
|
self.runId = str()
|
|
2183
2340
|
self.asserteeUrn = str()
|
|
2184
2341
|
self.assertionUrn = str()
|
|
2185
2342
|
self.status = AssertionRunStatusClass.COMPLETE
|
|
2186
2343
|
self.result = self.RECORD_SCHEMA.fields_dict["result"].default
|
|
2187
|
-
self.runtimeContext = self.RECORD_SCHEMA.fields_dict["runtimeContext"].default
|
|
2188
|
-
self.batchSpec = self.RECORD_SCHEMA.fields_dict["batchSpec"].default
|
|
2189
2344
|
self.eventGranularity = self.RECORD_SCHEMA.fields_dict["eventGranularity"].default
|
|
2190
2345
|
self.partitionSpec = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["partitionSpec"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["partitionSpec"].type)
|
|
2191
2346
|
self.messageId = self.RECORD_SCHEMA.fields_dict["messageId"].default
|
|
@@ -2202,64 +2357,104 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2202
2357
|
|
|
2203
2358
|
|
|
2204
2359
|
@property
|
|
2205
|
-
def
|
|
2360
|
+
def creator(self) -> Union[None, str]:
|
|
2361
|
+
"""Creator of the assertion."""
|
|
2362
|
+
return self._inner_dict.get('creator') # type: ignore
|
|
2363
|
+
|
|
2364
|
+
@creator.setter
|
|
2365
|
+
def creator(self, value: Union[None, str]) -> None:
|
|
2366
|
+
self._inner_dict['creator'] = value
|
|
2367
|
+
|
|
2368
|
+
|
|
2369
|
+
@property
|
|
2370
|
+
def asserteeDomains(self) -> Union[None, List[str]]:
|
|
2206
2371
|
"""The Domains attached to the entity's parent Asset"""
|
|
2207
|
-
return self._inner_dict.get('
|
|
2372
|
+
return self._inner_dict.get('asserteeDomains') # type: ignore
|
|
2208
2373
|
|
|
2209
|
-
@
|
|
2210
|
-
def
|
|
2211
|
-
self._inner_dict['
|
|
2374
|
+
@asserteeDomains.setter
|
|
2375
|
+
def asserteeDomains(self, value: Union[None, List[str]]) -> None:
|
|
2376
|
+
self._inner_dict['asserteeDomains'] = value
|
|
2212
2377
|
|
|
2213
2378
|
|
|
2214
2379
|
@property
|
|
2215
|
-
def
|
|
2380
|
+
def asserteeDataProducts(self) -> Union[None, List[str]]:
|
|
2216
2381
|
"""The Data Products attached to the entity's parent Asset"""
|
|
2217
|
-
return self._inner_dict.get('
|
|
2382
|
+
return self._inner_dict.get('asserteeDataProducts') # type: ignore
|
|
2218
2383
|
|
|
2219
|
-
@
|
|
2220
|
-
def
|
|
2221
|
-
self._inner_dict['
|
|
2384
|
+
@asserteeDataProducts.setter
|
|
2385
|
+
def asserteeDataProducts(self, value: Union[None, List[str]]) -> None:
|
|
2386
|
+
self._inner_dict['asserteeDataProducts'] = value
|
|
2222
2387
|
|
|
2223
2388
|
|
|
2224
2389
|
@property
|
|
2225
|
-
def
|
|
2390
|
+
def asserteeTags(self) -> Union[None, List[str]]:
|
|
2226
2391
|
"""The Tags attached to the entity's parent Asset"""
|
|
2227
|
-
return self._inner_dict.get('
|
|
2392
|
+
return self._inner_dict.get('asserteeTags') # type: ignore
|
|
2393
|
+
|
|
2394
|
+
@asserteeTags.setter
|
|
2395
|
+
def asserteeTags(self, value: Union[None, List[str]]) -> None:
|
|
2396
|
+
self._inner_dict['asserteeTags'] = value
|
|
2397
|
+
|
|
2398
|
+
|
|
2399
|
+
@property
|
|
2400
|
+
def asserteeGlossaryTerms(self) -> Union[None, List[str]]:
|
|
2401
|
+
"""The Glossary Terms attached to the entity's parent Asset"""
|
|
2402
|
+
return self._inner_dict.get('asserteeGlossaryTerms') # type: ignore
|
|
2228
2403
|
|
|
2229
|
-
@
|
|
2230
|
-
def
|
|
2231
|
-
self._inner_dict['
|
|
2404
|
+
@asserteeGlossaryTerms.setter
|
|
2405
|
+
def asserteeGlossaryTerms(self, value: Union[None, List[str]]) -> None:
|
|
2406
|
+
self._inner_dict['asserteeGlossaryTerms'] = value
|
|
2232
2407
|
|
|
2233
2408
|
|
|
2234
2409
|
@property
|
|
2235
|
-
def
|
|
2410
|
+
def asserteeOwners(self) -> Union[None, List[str]]:
|
|
2236
2411
|
"""Parent Owner URN, e.g. urn:li:corpuser:ldap, urn:li:corpGroup:group_name, and urn:li:multiProduct:mp_name
|
|
2237
2412
|
(Caveat: only corpuser is currently supported in the frontend.)"""
|
|
2238
|
-
return self._inner_dict.get('
|
|
2413
|
+
return self._inner_dict.get('asserteeOwners') # type: ignore
|
|
2239
2414
|
|
|
2240
|
-
@
|
|
2241
|
-
def
|
|
2242
|
-
self._inner_dict['
|
|
2415
|
+
@asserteeOwners.setter
|
|
2416
|
+
def asserteeOwners(self, value: Union[None, List[str]]) -> None:
|
|
2417
|
+
self._inner_dict['asserteeOwners'] = value
|
|
2243
2418
|
|
|
2244
2419
|
|
|
2245
2420
|
@property
|
|
2246
|
-
def
|
|
2421
|
+
def asserteeDataPlatform(self) -> Union[None, str]:
|
|
2247
2422
|
"""Data Platform for parent"""
|
|
2248
|
-
return self._inner_dict.get('
|
|
2423
|
+
return self._inner_dict.get('asserteeDataPlatform') # type: ignore
|
|
2249
2424
|
|
|
2250
|
-
@
|
|
2251
|
-
def
|
|
2252
|
-
self._inner_dict['
|
|
2425
|
+
@asserteeDataPlatform.setter
|
|
2426
|
+
def asserteeDataPlatform(self, value: Union[None, str]) -> None:
|
|
2427
|
+
self._inner_dict['asserteeDataPlatform'] = value
|
|
2253
2428
|
|
|
2254
2429
|
|
|
2255
2430
|
@property
|
|
2256
|
-
def
|
|
2431
|
+
def asserteeDataPlatformInstance(self) -> Union[None, str]:
|
|
2257
2432
|
"""Instance of the parent's data platform (e.g. db instance)"""
|
|
2258
|
-
return self._inner_dict.get('
|
|
2433
|
+
return self._inner_dict.get('asserteeDataPlatformInstance') # type: ignore
|
|
2259
2434
|
|
|
2260
|
-
@
|
|
2261
|
-
def
|
|
2262
|
-
self._inner_dict['
|
|
2435
|
+
@asserteeDataPlatformInstance.setter
|
|
2436
|
+
def asserteeDataPlatformInstance(self, value: Union[None, str]) -> None:
|
|
2437
|
+
self._inner_dict['asserteeDataPlatformInstance'] = value
|
|
2438
|
+
|
|
2439
|
+
|
|
2440
|
+
@property
|
|
2441
|
+
def asserteeSchemaFieldGlossaryTerms(self) -> Union[None, List[str]]:
|
|
2442
|
+
"""Only provided if the Assertion is of type 'Column'. The glossary terms associated with the target column."""
|
|
2443
|
+
return self._inner_dict.get('asserteeSchemaFieldGlossaryTerms') # type: ignore
|
|
2444
|
+
|
|
2445
|
+
@asserteeSchemaFieldGlossaryTerms.setter
|
|
2446
|
+
def asserteeSchemaFieldGlossaryTerms(self, value: Union[None, List[str]]) -> None:
|
|
2447
|
+
self._inner_dict['asserteeSchemaFieldGlossaryTerms'] = value
|
|
2448
|
+
|
|
2449
|
+
|
|
2450
|
+
@property
|
|
2451
|
+
def asserteeSchemaFieldTags(self) -> Union[None, List[str]]:
|
|
2452
|
+
"""Only provided if the Assertion is of type 'Column'. The tags associated with the target column."""
|
|
2453
|
+
return self._inner_dict.get('asserteeSchemaFieldTags') # type: ignore
|
|
2454
|
+
|
|
2455
|
+
@asserteeSchemaFieldTags.setter
|
|
2456
|
+
def asserteeSchemaFieldTags(self, value: Union[None, List[str]]) -> None:
|
|
2457
|
+
self._inner_dict['asserteeSchemaFieldTags'] = value
|
|
2263
2458
|
|
|
2264
2459
|
|
|
2265
2460
|
@property
|
|
@@ -2322,26 +2517,6 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2322
2517
|
self._inner_dict['result'] = value
|
|
2323
2518
|
|
|
2324
2519
|
|
|
2325
|
-
@property
|
|
2326
|
-
def runtimeContext(self) -> Union[None, Dict[str, str]]:
|
|
2327
|
-
"""Runtime parameters of evaluation"""
|
|
2328
|
-
return self._inner_dict.get('runtimeContext') # type: ignore
|
|
2329
|
-
|
|
2330
|
-
@runtimeContext.setter
|
|
2331
|
-
def runtimeContext(self, value: Union[None, Dict[str, str]]) -> None:
|
|
2332
|
-
self._inner_dict['runtimeContext'] = value
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
@property
|
|
2336
|
-
def batchSpec(self) -> Union[None, "BatchSpecClass"]:
|
|
2337
|
-
"""Specification of the batch which this run is evaluating"""
|
|
2338
|
-
return self._inner_dict.get('batchSpec') # type: ignore
|
|
2339
|
-
|
|
2340
|
-
@batchSpec.setter
|
|
2341
|
-
def batchSpec(self, value: Union[None, "BatchSpecClass"]) -> None:
|
|
2342
|
-
self._inner_dict['batchSpec'] = value
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
2520
|
@property
|
|
2346
2521
|
def eventGranularity(self) -> Union[None, "TimeWindowSizeClass"]:
|
|
2347
2522
|
"""Granularity of the event if applicable"""
|
|
@@ -3497,6 +3672,62 @@ class AssertionRunStatusClass(object):
|
|
|
3497
3672
|
|
|
3498
3673
|
|
|
3499
3674
|
|
|
3675
|
+
class AssertionRunSummaryClass(_Aspect):
|
|
3676
|
+
"""Derived.
|
|
3677
|
+
Tracks the latest summary details of an assertion."""
|
|
3678
|
+
|
|
3679
|
+
|
|
3680
|
+
ASPECT_NAME = 'assertionRunSummary'
|
|
3681
|
+
ASPECT_INFO = {}
|
|
3682
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionRunSummary")
|
|
3683
|
+
|
|
3684
|
+
def __init__(self,
|
|
3685
|
+
lastFailedAtMillis: Union[None, int]=None,
|
|
3686
|
+
lastErroredAtMillis: Union[None, int]=None,
|
|
3687
|
+
lastPassedAtMillis: Union[None, int]=None,
|
|
3688
|
+
):
|
|
3689
|
+
super().__init__()
|
|
3690
|
+
|
|
3691
|
+
self.lastFailedAtMillis = lastFailedAtMillis
|
|
3692
|
+
self.lastErroredAtMillis = lastErroredAtMillis
|
|
3693
|
+
self.lastPassedAtMillis = lastPassedAtMillis
|
|
3694
|
+
|
|
3695
|
+
def _restore_defaults(self) -> None:
|
|
3696
|
+
self.lastFailedAtMillis = self.RECORD_SCHEMA.fields_dict["lastFailedAtMillis"].default
|
|
3697
|
+
self.lastErroredAtMillis = self.RECORD_SCHEMA.fields_dict["lastErroredAtMillis"].default
|
|
3698
|
+
self.lastPassedAtMillis = self.RECORD_SCHEMA.fields_dict["lastPassedAtMillis"].default
|
|
3699
|
+
|
|
3700
|
+
|
|
3701
|
+
@property
|
|
3702
|
+
def lastFailedAtMillis(self) -> Union[None, int]:
|
|
3703
|
+
"""The last failure event timestamp field as epoch at UTC in milliseconds."""
|
|
3704
|
+
return self._inner_dict.get('lastFailedAtMillis') # type: ignore
|
|
3705
|
+
|
|
3706
|
+
@lastFailedAtMillis.setter
|
|
3707
|
+
def lastFailedAtMillis(self, value: Union[None, int]) -> None:
|
|
3708
|
+
self._inner_dict['lastFailedAtMillis'] = value
|
|
3709
|
+
|
|
3710
|
+
|
|
3711
|
+
@property
|
|
3712
|
+
def lastErroredAtMillis(self) -> Union[None, int]:
|
|
3713
|
+
"""The last error event timestamp field as epoch at UTC in milliseconds."""
|
|
3714
|
+
return self._inner_dict.get('lastErroredAtMillis') # type: ignore
|
|
3715
|
+
|
|
3716
|
+
@lastErroredAtMillis.setter
|
|
3717
|
+
def lastErroredAtMillis(self, value: Union[None, int]) -> None:
|
|
3718
|
+
self._inner_dict['lastErroredAtMillis'] = value
|
|
3719
|
+
|
|
3720
|
+
|
|
3721
|
+
@property
|
|
3722
|
+
def lastPassedAtMillis(self) -> Union[None, int]:
|
|
3723
|
+
"""The last pass event timestamp field as epoch at UTC in milliseconds."""
|
|
3724
|
+
return self._inner_dict.get('lastPassedAtMillis') # type: ignore
|
|
3725
|
+
|
|
3726
|
+
@lastPassedAtMillis.setter
|
|
3727
|
+
def lastPassedAtMillis(self, value: Union[None, int]) -> None:
|
|
3728
|
+
self._inner_dict['lastPassedAtMillis'] = value
|
|
3729
|
+
|
|
3730
|
+
|
|
3500
3731
|
class AssertionSourceClass(DictWrapper):
|
|
3501
3732
|
"""The source of an assertion"""
|
|
3502
3733
|
|
|
@@ -3775,62 +4006,6 @@ class AssertionStdParametersClass(DictWrapper):
|
|
|
3775
4006
|
self._inner_dict['minValue'] = value
|
|
3776
4007
|
|
|
3777
4008
|
|
|
3778
|
-
class AssertionSummaryClass(_Aspect):
|
|
3779
|
-
"""Derived.
|
|
3780
|
-
Tracks the latest summary details of an assertion."""
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
ASPECT_NAME = 'assertionSummary'
|
|
3784
|
-
ASPECT_INFO = {}
|
|
3785
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionSummary")
|
|
3786
|
-
|
|
3787
|
-
def __init__(self,
|
|
3788
|
-
lastFailedAtMillis: Union[None, int]=None,
|
|
3789
|
-
lastErroredAtMillis: Union[None, int]=None,
|
|
3790
|
-
lastPassedAtMillis: Union[None, int]=None,
|
|
3791
|
-
):
|
|
3792
|
-
super().__init__()
|
|
3793
|
-
|
|
3794
|
-
self.lastFailedAtMillis = lastFailedAtMillis
|
|
3795
|
-
self.lastErroredAtMillis = lastErroredAtMillis
|
|
3796
|
-
self.lastPassedAtMillis = lastPassedAtMillis
|
|
3797
|
-
|
|
3798
|
-
def _restore_defaults(self) -> None:
|
|
3799
|
-
self.lastFailedAtMillis = self.RECORD_SCHEMA.fields_dict["lastFailedAtMillis"].default
|
|
3800
|
-
self.lastErroredAtMillis = self.RECORD_SCHEMA.fields_dict["lastErroredAtMillis"].default
|
|
3801
|
-
self.lastPassedAtMillis = self.RECORD_SCHEMA.fields_dict["lastPassedAtMillis"].default
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
@property
|
|
3805
|
-
def lastFailedAtMillis(self) -> Union[None, int]:
|
|
3806
|
-
"""The last failure event timestamp field as epoch at UTC in milliseconds."""
|
|
3807
|
-
return self._inner_dict.get('lastFailedAtMillis') # type: ignore
|
|
3808
|
-
|
|
3809
|
-
@lastFailedAtMillis.setter
|
|
3810
|
-
def lastFailedAtMillis(self, value: Union[None, int]) -> None:
|
|
3811
|
-
self._inner_dict['lastFailedAtMillis'] = value
|
|
3812
|
-
|
|
3813
|
-
|
|
3814
|
-
@property
|
|
3815
|
-
def lastErroredAtMillis(self) -> Union[None, int]:
|
|
3816
|
-
"""The last error event timestamp field as epoch at UTC in milliseconds."""
|
|
3817
|
-
return self._inner_dict.get('lastErroredAtMillis') # type: ignore
|
|
3818
|
-
|
|
3819
|
-
@lastErroredAtMillis.setter
|
|
3820
|
-
def lastErroredAtMillis(self, value: Union[None, int]) -> None:
|
|
3821
|
-
self._inner_dict['lastErroredAtMillis'] = value
|
|
3822
|
-
|
|
3823
|
-
|
|
3824
|
-
@property
|
|
3825
|
-
def lastPassedAtMillis(self) -> Union[None, int]:
|
|
3826
|
-
"""The last pass event timestamp field as epoch at UTC in milliseconds."""
|
|
3827
|
-
return self._inner_dict.get('lastPassedAtMillis') # type: ignore
|
|
3828
|
-
|
|
3829
|
-
@lastPassedAtMillis.setter
|
|
3830
|
-
def lastPassedAtMillis(self, value: Union[None, int]) -> None:
|
|
3831
|
-
self._inner_dict['lastPassedAtMillis'] = value
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
4009
|
class AssertionTypeClass(object):
|
|
3835
4010
|
"""Type of assertion. Assertion types can evolve to span Datasets, Flows (Pipelines), Models, Features etc."""
|
|
3836
4011
|
|
|
@@ -4287,7 +4462,7 @@ class FieldMetricAssertionClass(DictWrapper):
|
|
|
4287
4462
|
|
|
4288
4463
|
@property
|
|
4289
4464
|
def field(self) -> "SchemaFieldSpecClass":
|
|
4290
|
-
"""The field under evaluation"""
|
|
4465
|
+
"""The field path under evaluation"""
|
|
4291
4466
|
return self._inner_dict.get('field') # type: ignore
|
|
4292
4467
|
|
|
4293
4468
|
@field.setter
|
|
@@ -6587,6 +6762,7 @@ class AssertionsSummaryClass(_Aspect):
|
|
|
6587
6762
|
def __init__(self,
|
|
6588
6763
|
failingAssertions: Optional[List[str]]=None,
|
|
6589
6764
|
passingAssertions: Optional[List[str]]=None,
|
|
6765
|
+
lastAssertionResultAt: Union[None, int]=None,
|
|
6590
6766
|
passingAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
|
|
6591
6767
|
failingAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
|
|
6592
6768
|
erroringAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
|
|
@@ -6603,6 +6779,7 @@ class AssertionsSummaryClass(_Aspect):
|
|
|
6603
6779
|
self.passingAssertions = list()
|
|
6604
6780
|
else:
|
|
6605
6781
|
self.passingAssertions = passingAssertions
|
|
6782
|
+
self.lastAssertionResultAt = lastAssertionResultAt
|
|
6606
6783
|
if passingAssertionDetails is None:
|
|
6607
6784
|
# default: []
|
|
6608
6785
|
self.passingAssertionDetails = list()
|
|
@@ -6622,6 +6799,7 @@ class AssertionsSummaryClass(_Aspect):
|
|
|
6622
6799
|
def _restore_defaults(self) -> None:
|
|
6623
6800
|
self.failingAssertions = list()
|
|
6624
6801
|
self.passingAssertions = list()
|
|
6802
|
+
self.lastAssertionResultAt = self.RECORD_SCHEMA.fields_dict["lastAssertionResultAt"].default
|
|
6625
6803
|
self.passingAssertionDetails = list()
|
|
6626
6804
|
self.failingAssertionDetails = list()
|
|
6627
6805
|
self.erroringAssertionDetails = list()
|
|
@@ -6649,6 +6827,16 @@ class AssertionsSummaryClass(_Aspect):
|
|
|
6649
6827
|
self._inner_dict['passingAssertions'] = value
|
|
6650
6828
|
|
|
6651
6829
|
|
|
6830
|
+
@property
|
|
6831
|
+
def lastAssertionResultAt(self) -> Union[None, int]:
|
|
6832
|
+
"""The last time an assertion was run."""
|
|
6833
|
+
return self._inner_dict.get('lastAssertionResultAt') # type: ignore
|
|
6834
|
+
|
|
6835
|
+
@lastAssertionResultAt.setter
|
|
6836
|
+
def lastAssertionResultAt(self, value: Union[None, int]) -> None:
|
|
6837
|
+
self._inner_dict['lastAssertionResultAt'] = value
|
|
6838
|
+
|
|
6839
|
+
|
|
6652
6840
|
@property
|
|
6653
6841
|
def passingAssertionDetails(self) -> List["AssertionSummaryDetailsClass"]:
|
|
6654
6842
|
"""Summary details about the set of passing assertions"""
|
|
@@ -8789,6 +8977,7 @@ class OperationClass(_Aspect):
|
|
|
8789
8977
|
sourceType: Union[None, Union[str, "OperationSourceTypeClass"]]=None,
|
|
8790
8978
|
source: Union[None, "OperationSourceDetailsClass"]=None,
|
|
8791
8979
|
customProperties: Union[None, Dict[str, str]]=None,
|
|
8980
|
+
queries: Union[None, List[str]]=None,
|
|
8792
8981
|
):
|
|
8793
8982
|
super().__init__()
|
|
8794
8983
|
|
|
@@ -8809,6 +8998,7 @@ class OperationClass(_Aspect):
|
|
|
8809
8998
|
self.source = source
|
|
8810
8999
|
self.customProperties = customProperties
|
|
8811
9000
|
self.lastUpdatedTimestamp = lastUpdatedTimestamp
|
|
9001
|
+
self.queries = queries
|
|
8812
9002
|
|
|
8813
9003
|
def _restore_defaults(self) -> None:
|
|
8814
9004
|
self.timestampMillis = int()
|
|
@@ -8824,6 +9014,7 @@ class OperationClass(_Aspect):
|
|
|
8824
9014
|
self.source = self.RECORD_SCHEMA.fields_dict["source"].default
|
|
8825
9015
|
self.customProperties = self.RECORD_SCHEMA.fields_dict["customProperties"].default
|
|
8826
9016
|
self.lastUpdatedTimestamp = int()
|
|
9017
|
+
self.queries = self.RECORD_SCHEMA.fields_dict["queries"].default
|
|
8827
9018
|
|
|
8828
9019
|
|
|
8829
9020
|
@property
|
|
@@ -8957,6 +9148,16 @@ class OperationClass(_Aspect):
|
|
|
8957
9148
|
self._inner_dict['lastUpdatedTimestamp'] = value
|
|
8958
9149
|
|
|
8959
9150
|
|
|
9151
|
+
@property
|
|
9152
|
+
def queries(self) -> Union[None, List[str]]:
|
|
9153
|
+
"""Which queries were used in this operation."""
|
|
9154
|
+
return self._inner_dict.get('queries') # type: ignore
|
|
9155
|
+
|
|
9156
|
+
@queries.setter
|
|
9157
|
+
def queries(self, value: Union[None, List[str]]) -> None:
|
|
9158
|
+
self._inner_dict['queries'] = value
|
|
9159
|
+
|
|
9160
|
+
|
|
8960
9161
|
class OperationSourceDetailsClass(DictWrapper):
|
|
8961
9162
|
"""Additional details about the origins of a captured source-platform Operation."""
|
|
8962
9163
|
|
|
@@ -14224,7 +14425,7 @@ class DataProductKeyClass(_Aspect):
|
|
|
14224
14425
|
|
|
14225
14426
|
|
|
14226
14427
|
ASPECT_NAME = 'dataProductKey'
|
|
14227
|
-
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'share', 'origin']}
|
|
14428
|
+
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'applications', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'share', 'origin']}
|
|
14228
14429
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataproduct.DataProductKey")
|
|
14229
14430
|
|
|
14230
14431
|
def __init__(self,
|
|
@@ -14315,7 +14516,7 @@ class DataProductPropertiesClass(_Aspect):
|
|
|
14315
14516
|
|
|
14316
14517
|
@property
|
|
14317
14518
|
def description(self) -> Union[None, str]:
|
|
14318
|
-
"""Documentation of the
|
|
14519
|
+
"""Documentation of the data product"""
|
|
14319
14520
|
return self._inner_dict.get('description') # type: ignore
|
|
14320
14521
|
|
|
14321
14522
|
@description.setter
|
|
@@ -17372,6 +17573,8 @@ class NotificationTemplateTypeClass(object):
|
|
|
17372
17573
|
|
|
17373
17574
|
BROADCAST_PROPOSAL_STATUS_CHANGE = "BROADCAST_PROPOSAL_STATUS_CHANGE"
|
|
17374
17575
|
|
|
17576
|
+
BROADCAST_COMPLIANCE_FORM_PUBLISH = "BROADCAST_COMPLIANCE_FORM_PUBLISH"
|
|
17577
|
+
|
|
17375
17578
|
INVALID_TEMPLATE = "INVALID_TEMPLATE"
|
|
17376
17579
|
|
|
17377
17580
|
|
|
@@ -18175,6 +18378,17 @@ class RemoteExecutorPoolStatusClass(object):
|
|
|
18175
18378
|
|
|
18176
18379
|
|
|
18177
18380
|
|
|
18381
|
+
class AssignmentStatusClass(object):
|
|
18382
|
+
# No docs available.
|
|
18383
|
+
|
|
18384
|
+
IN_PROGRESS = "IN_PROGRESS"
|
|
18385
|
+
"""Assets are currently being assigned"""
|
|
18386
|
+
|
|
18387
|
+
COMPLETE = "COMPLETE"
|
|
18388
|
+
"""Assets assignment is complete"""
|
|
18389
|
+
|
|
18390
|
+
|
|
18391
|
+
|
|
18178
18392
|
class DomainParamsClass(DictWrapper):
|
|
18179
18393
|
"""Information specific to glossary terms prompts."""
|
|
18180
18394
|
|
|
@@ -18303,6 +18517,48 @@ class FormActorAssignmentClass(DictWrapper):
|
|
|
18303
18517
|
self._inner_dict['users'] = value
|
|
18304
18518
|
|
|
18305
18519
|
|
|
18520
|
+
class FormAssignmentStatusClass(_Aspect):
|
|
18521
|
+
# No docs available.
|
|
18522
|
+
|
|
18523
|
+
|
|
18524
|
+
ASPECT_NAME = 'formAssignmentStatus'
|
|
18525
|
+
ASPECT_INFO = {}
|
|
18526
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.form.FormAssignmentStatus")
|
|
18527
|
+
|
|
18528
|
+
def __init__(self,
|
|
18529
|
+
status: Union[str, "AssignmentStatusClass"],
|
|
18530
|
+
timestamp: Union[None, int]=None,
|
|
18531
|
+
):
|
|
18532
|
+
super().__init__()
|
|
18533
|
+
|
|
18534
|
+
self.status = status
|
|
18535
|
+
self.timestamp = timestamp
|
|
18536
|
+
|
|
18537
|
+
def _restore_defaults(self) -> None:
|
|
18538
|
+
self.status = AssignmentStatusClass.IN_PROGRESS
|
|
18539
|
+
self.timestamp = self.RECORD_SCHEMA.fields_dict["timestamp"].default
|
|
18540
|
+
|
|
18541
|
+
|
|
18542
|
+
@property
|
|
18543
|
+
def status(self) -> Union[str, "AssignmentStatusClass"]:
|
|
18544
|
+
"""Notification settings for a form"""
|
|
18545
|
+
return self._inner_dict.get('status') # type: ignore
|
|
18546
|
+
|
|
18547
|
+
@status.setter
|
|
18548
|
+
def status(self, value: Union[str, "AssignmentStatusClass"]) -> None:
|
|
18549
|
+
self._inner_dict['status'] = value
|
|
18550
|
+
|
|
18551
|
+
|
|
18552
|
+
@property
|
|
18553
|
+
def timestamp(self) -> Union[None, int]:
|
|
18554
|
+
"""Timestamp this aspect was last updated at"""
|
|
18555
|
+
return self._inner_dict.get('timestamp') # type: ignore
|
|
18556
|
+
|
|
18557
|
+
@timestamp.setter
|
|
18558
|
+
def timestamp(self, value: Union[None, int]) -> None:
|
|
18559
|
+
self._inner_dict['timestamp'] = value
|
|
18560
|
+
|
|
18561
|
+
|
|
18306
18562
|
class FormInfoClass(_Aspect):
|
|
18307
18563
|
"""Information about a form to help with filling out metadata on entities."""
|
|
18308
18564
|
|
|
@@ -18439,6 +18695,35 @@ class FormInfoClass(_Aspect):
|
|
|
18439
18695
|
self._inner_dict['lastModified'] = value
|
|
18440
18696
|
|
|
18441
18697
|
|
|
18698
|
+
class FormNotificationSettingsClass(DictWrapper):
|
|
18699
|
+
# No docs available.
|
|
18700
|
+
|
|
18701
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.form.FormNotificationSettings")
|
|
18702
|
+
def __init__(self,
|
|
18703
|
+
notifyAssigneesOnPublish: Optional[bool]=None,
|
|
18704
|
+
):
|
|
18705
|
+
super().__init__()
|
|
18706
|
+
|
|
18707
|
+
if notifyAssigneesOnPublish is None:
|
|
18708
|
+
# default: False
|
|
18709
|
+
self.notifyAssigneesOnPublish = self.RECORD_SCHEMA.fields_dict["notifyAssigneesOnPublish"].default
|
|
18710
|
+
else:
|
|
18711
|
+
self.notifyAssigneesOnPublish = notifyAssigneesOnPublish
|
|
18712
|
+
|
|
18713
|
+
def _restore_defaults(self) -> None:
|
|
18714
|
+
self.notifyAssigneesOnPublish = self.RECORD_SCHEMA.fields_dict["notifyAssigneesOnPublish"].default
|
|
18715
|
+
|
|
18716
|
+
|
|
18717
|
+
@property
|
|
18718
|
+
def notifyAssigneesOnPublish(self) -> bool:
|
|
18719
|
+
"""Whether to notify the assignees of the form when it is published."""
|
|
18720
|
+
return self._inner_dict.get('notifyAssigneesOnPublish') # type: ignore
|
|
18721
|
+
|
|
18722
|
+
@notifyAssigneesOnPublish.setter
|
|
18723
|
+
def notifyAssigneesOnPublish(self, value: bool) -> None:
|
|
18724
|
+
self._inner_dict['notifyAssigneesOnPublish'] = value
|
|
18725
|
+
|
|
18726
|
+
|
|
18442
18727
|
class FormPromptClass(DictWrapper):
|
|
18443
18728
|
"""A prompt to present to the user to encourage filling out metadata"""
|
|
18444
18729
|
|
|
@@ -18605,6 +18890,35 @@ class FormPromptTypeClass(object):
|
|
|
18605
18890
|
|
|
18606
18891
|
|
|
18607
18892
|
|
|
18893
|
+
class FormSettingsClass(_Aspect):
|
|
18894
|
+
# No docs available.
|
|
18895
|
+
|
|
18896
|
+
|
|
18897
|
+
ASPECT_NAME = 'formSettings'
|
|
18898
|
+
ASPECT_INFO = {}
|
|
18899
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.form.FormSettings")
|
|
18900
|
+
|
|
18901
|
+
def __init__(self,
|
|
18902
|
+
notificationSettings: "FormNotificationSettingsClass",
|
|
18903
|
+
):
|
|
18904
|
+
super().__init__()
|
|
18905
|
+
|
|
18906
|
+
self.notificationSettings = notificationSettings
|
|
18907
|
+
|
|
18908
|
+
def _restore_defaults(self) -> None:
|
|
18909
|
+
self.notificationSettings = FormNotificationSettingsClass._construct_with_defaults()
|
|
18910
|
+
|
|
18911
|
+
|
|
18912
|
+
@property
|
|
18913
|
+
def notificationSettings(self) -> "FormNotificationSettingsClass":
|
|
18914
|
+
"""Notification settings for a form"""
|
|
18915
|
+
return self._inner_dict.get('notificationSettings') # type: ignore
|
|
18916
|
+
|
|
18917
|
+
@notificationSettings.setter
|
|
18918
|
+
def notificationSettings(self, value: "FormNotificationSettingsClass") -> None:
|
|
18919
|
+
self._inner_dict['notificationSettings'] = value
|
|
18920
|
+
|
|
18921
|
+
|
|
18608
18922
|
class FormStateClass(object):
|
|
18609
18923
|
# No docs available.
|
|
18610
18924
|
|
|
@@ -21682,7 +21996,7 @@ class AssertionKeyClass(_Aspect):
|
|
|
21682
21996
|
|
|
21683
21997
|
|
|
21684
21998
|
ASPECT_NAME = 'assertionKey'
|
|
21685
|
-
ASPECT_INFO = {'keyForEntity': 'assertion', 'entityCategory': 'core', 'entityAspects': ['assertionInfo', 'dataPlatformInstance', 'assertionRunEvent', 'assertionActions', 'status', 'globalTags', 'lineageFeatures', '
|
|
21999
|
+
ASPECT_INFO = {'keyForEntity': 'assertion', 'entityCategory': 'core', 'entityAspects': ['assertionInfo', 'dataPlatformInstance', 'assertionRunEvent', 'assertionActions', 'status', 'globalTags', 'lineageFeatures', 'assertionRunSummary', 'assertionAnalyticsRunEvent', 'assertionDryRunEvent', 'assertionInferenceDetails'], 'entityDoc': 'Assertion represents a data quality rule applied on one or more dataset.'}
|
|
21686
22000
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.AssertionKey")
|
|
21687
22001
|
|
|
21688
22002
|
def __init__(self,
|
|
@@ -21711,7 +22025,7 @@ class ChartKeyClass(_Aspect):
|
|
|
21711
22025
|
|
|
21712
22026
|
|
|
21713
22027
|
ASPECT_NAME = 'chartKey'
|
|
21714
|
-
ASPECT_INFO = {'keyForEntity': 'chart', 'entityCategory': 'core', 'entityAspects': ['chartInfo', 'editableChartProperties', 'chartQuery', 'inputFields', 'chartUsageStatistics', 'embed', 'browsePaths', 'domains', 'container', 'deprecation', 'ownership', 'status', 'institutionalMemory', 'dataPlatformInstance', 'globalTags', 'glossaryTerms', 'browsePathsV2', 'subTypes', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults', 'usageFeatures', 'lineageFeatures', 'proposals', 'share', 'origin', 'documentation']}
|
|
22028
|
+
ASPECT_INFO = {'keyForEntity': 'chart', 'entityCategory': 'core', 'entityAspects': ['chartInfo', 'editableChartProperties', 'chartQuery', 'inputFields', 'chartUsageStatistics', 'embed', 'browsePaths', 'domains', 'applications', 'container', 'deprecation', 'ownership', 'status', 'institutionalMemory', 'dataPlatformInstance', 'globalTags', 'glossaryTerms', 'browsePathsV2', 'subTypes', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults', 'usageFeatures', 'lineageFeatures', 'proposals', 'share', 'origin', 'documentation']}
|
|
21715
22029
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.ChartKey")
|
|
21716
22030
|
|
|
21717
22031
|
def __init__(self,
|
|
@@ -21782,7 +22096,7 @@ class ContainerKeyClass(_Aspect):
|
|
|
21782
22096
|
|
|
21783
22097
|
|
|
21784
22098
|
ASPECT_NAME = 'containerKey'
|
|
21785
|
-
ASPECT_INFO = {'keyForEntity': 'container', 'entityCategory': 'core', 'entityAspects': ['containerProperties', 'editableContainerProperties', 'dataPlatformInstance', 'subTypes', 'ownership', 'deprecation', 'container', 'globalTags', 'glossaryTerms', 'institutionalMemory', 'browsePaths', 'status', 'domains', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'access', 'proposals', 'share', 'origin', 'documentation'], 'entityDoc': 'A container of related data assets.'}
|
|
22099
|
+
ASPECT_INFO = {'keyForEntity': 'container', 'entityCategory': 'core', 'entityAspects': ['containerProperties', 'editableContainerProperties', 'dataPlatformInstance', 'subTypes', 'ownership', 'deprecation', 'container', 'globalTags', 'glossaryTerms', 'institutionalMemory', 'browsePaths', 'status', 'domains', 'applications', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'access', 'proposals', 'share', 'origin', 'documentation'], 'entityDoc': 'A container of related data assets.'}
|
|
21786
22100
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.ContainerKey")
|
|
21787
22101
|
|
|
21788
22102
|
def __init__(self,
|
|
@@ -21811,7 +22125,7 @@ class CorpGroupKeyClass(_Aspect):
|
|
|
21811
22125
|
|
|
21812
22126
|
|
|
21813
22127
|
ASPECT_NAME = 'corpGroupKey'
|
|
21814
|
-
ASPECT_INFO = {'keyForEntity': 'corpGroup', 'entityCategory': '_unset_', 'entityAspects': ['corpGroupInfo', 'corpGroupEditableInfo', 'globalTags', 'ownership', 'status', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'corpGroupSettings', 'share'], 'entityDoc': 'CorpGroup represents an identity of a group of users in the enterprise.'}
|
|
22128
|
+
ASPECT_INFO = {'keyForEntity': 'corpGroup', 'entityCategory': '_unset_', 'entityAspects': ['corpGroupInfo', 'corpGroupEditableInfo', 'globalTags', 'ownership', 'status', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'corpGroupSettings', 'share', 'formNotifications'], 'entityDoc': 'CorpGroup represents an identity of a group of users in the enterprise.'}
|
|
21815
22129
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.CorpGroupKey")
|
|
21816
22130
|
|
|
21817
22131
|
def __init__(self,
|
|
@@ -21840,7 +22154,7 @@ class CorpUserKeyClass(_Aspect):
|
|
|
21840
22154
|
|
|
21841
22155
|
|
|
21842
22156
|
ASPECT_NAME = 'corpUserKey'
|
|
21843
|
-
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'slackUserInfo', 'share'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
22157
|
+
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'slackUserInfo', 'share', 'formNotifications'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
21844
22158
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.CorpUserKey")
|
|
21845
22159
|
|
|
21846
22160
|
def __init__(self,
|
|
@@ -21869,7 +22183,7 @@ class DashboardKeyClass(_Aspect):
|
|
|
21869
22183
|
|
|
21870
22184
|
|
|
21871
22185
|
ASPECT_NAME = 'dashboardKey'
|
|
21872
|
-
ASPECT_INFO = {'keyForEntity': 'dashboard', 'entityCategory': '_unset_', 'entityAspects': ['domains', 'container', 'deprecation', 'dashboardUsageStatistics', 'inputFields', 'subTypes', 'embed', 'dashboardInfo', 'editableDashboardProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults', 'usageFeatures', 'lineageFeatures', 'proposals', 'share', 'origin', 'documentation']}
|
|
22186
|
+
ASPECT_INFO = {'keyForEntity': 'dashboard', 'entityCategory': '_unset_', 'entityAspects': ['domains', 'applications', 'container', 'deprecation', 'dashboardUsageStatistics', 'inputFields', 'subTypes', 'embed', 'dashboardInfo', 'editableDashboardProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults', 'usageFeatures', 'lineageFeatures', 'proposals', 'share', 'origin', 'documentation']}
|
|
21873
22187
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DashboardKey")
|
|
21874
22188
|
|
|
21875
22189
|
def __init__(self,
|
|
@@ -21940,7 +22254,7 @@ class DataFlowKeyClass(_Aspect):
|
|
|
21940
22254
|
|
|
21941
22255
|
|
|
21942
22256
|
ASPECT_NAME = 'dataFlowKey'
|
|
21943
|
-
ASPECT_INFO = {'keyForEntity': 'dataFlow', 'entityCategory': 'core', 'entityAspects': ['domains', 'deprecation', 'versionInfo', 'dataFlowInfo', 'editableDataFlowProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'subTypes', 'testResults', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
22257
|
+
ASPECT_INFO = {'keyForEntity': 'dataFlow', 'entityCategory': 'core', 'entityAspects': ['domains', 'applications', 'deprecation', 'versionInfo', 'dataFlowInfo', 'editableDataFlowProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'subTypes', 'testResults', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
21944
22258
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataFlowKey")
|
|
21945
22259
|
|
|
21946
22260
|
def __init__(self,
|
|
@@ -22082,7 +22396,7 @@ class DataHubIngestionSourceKeyClass(_Aspect):
|
|
|
22082
22396
|
|
|
22083
22397
|
|
|
22084
22398
|
ASPECT_NAME = 'dataHubIngestionSourceKey'
|
|
22085
|
-
ASPECT_INFO = {'keyForEntity': 'dataHubIngestionSource', 'entityCategory': 'internal', 'entityAspects': ['dataHubIngestionSourceInfo']}
|
|
22399
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubIngestionSource', 'entityCategory': 'internal', 'entityAspects': ['dataHubIngestionSourceInfo', 'ownership']}
|
|
22086
22400
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubIngestionSourceKey")
|
|
22087
22401
|
|
|
22088
22402
|
def __init__(self,
|
|
@@ -22414,7 +22728,7 @@ class DataJobKeyClass(_Aspect):
|
|
|
22414
22728
|
|
|
22415
22729
|
|
|
22416
22730
|
ASPECT_NAME = 'dataJobKey'
|
|
22417
|
-
ASPECT_INFO = {'keyForEntity': 'dataJob', 'entityCategory': '_unset_', 'entityAspects': ['datahubIngestionRunSummary', 'datahubIngestionCheckpoint', 'domains', 'deprecation', 'versionInfo', 'dataJobInfo', 'dataJobInputOutput', 'editableDataJobProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'forms', 'subTypes', 'incidentsSummary', 'testResults', 'dataTransformLogic', 'proposals', 'anomaliesSummary', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
22731
|
+
ASPECT_INFO = {'keyForEntity': 'dataJob', 'entityCategory': '_unset_', 'entityAspects': ['datahubIngestionRunSummary', 'datahubIngestionCheckpoint', 'domains', 'applications', 'deprecation', 'versionInfo', 'dataJobInfo', 'dataJobInputOutput', 'editableDataJobProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'forms', 'subTypes', 'incidentsSummary', 'testResults', 'dataTransformLogic', 'proposals', 'anomaliesSummary', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
22418
22732
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataJobKey")
|
|
22419
22733
|
|
|
22420
22734
|
def __init__(self,
|
|
@@ -22612,7 +22926,7 @@ class DatasetKeyClass(_Aspect):
|
|
|
22612
22926
|
|
|
22613
22927
|
|
|
22614
22928
|
ASPECT_NAME = 'datasetKey'
|
|
22615
|
-
ASPECT_INFO = {'keyForEntity': 'dataset', 'entityCategory': 'core', 'entityAspects': ['viewProperties', 'subTypes', 'datasetProfile', 'datasetUsageStatistics', 'operation', 'domains', 'schemaMetadata', 'status', 'container', 'deprecation', 'testResults', 'siblings', 'embed', 'incidentsSummary', 'datasetProperties', 'editableDatasetProperties', 'datasetDeprecation', 'datasetUpstreamLineage', 'upstreamLineage', 'institutionalMemory', 'ownership', 'editableSchemaMetadata', 'globalTags', 'glossaryTerms', 'browsePaths', 'dataPlatformInstance', 'browsePathsV2', 'access', 'structuredProperties', 'forms', 'partitionsSummary', 'versionProperties', 'icebergCatalogInfo', 'inferredNeighbors', 'inferredMetadata', 'schemaFieldsInferredMetadata', 'schemaFieldsInferredNeighbors', 'assertionsSummary', 'usageFeatures', 'storageFeatures', 'lineageFeatures', 'proposals', 'schemaProposals', 'anomaliesSummary', 'share', 'origin', 'documentation', 'entityInferenceMetadata'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
|
|
22929
|
+
ASPECT_INFO = {'keyForEntity': 'dataset', 'entityCategory': 'core', 'entityAspects': ['viewProperties', 'subTypes', 'datasetProfile', 'datasetUsageStatistics', 'operation', 'domains', 'applications', 'schemaMetadata', 'status', 'container', 'deprecation', 'testResults', 'siblings', 'embed', 'incidentsSummary', 'datasetProperties', 'editableDatasetProperties', 'datasetDeprecation', 'datasetUpstreamLineage', 'upstreamLineage', 'institutionalMemory', 'ownership', 'editableSchemaMetadata', 'globalTags', 'glossaryTerms', 'browsePaths', 'dataPlatformInstance', 'browsePathsV2', 'access', 'structuredProperties', 'forms', 'partitionsSummary', 'versionProperties', 'icebergCatalogInfo', 'inferredNeighbors', 'inferredMetadata', 'schemaFieldsInferredMetadata', 'schemaFieldsInferredNeighbors', 'assertionsSummary', 'usageFeatures', 'storageFeatures', 'lineageFeatures', 'proposals', 'schemaProposals', 'anomaliesSummary', 'share', 'origin', 'documentation', 'entityInferenceMetadata'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
|
|
22616
22930
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DatasetKey")
|
|
22617
22931
|
|
|
22618
22932
|
def __init__(self,
|
|
@@ -22754,7 +23068,7 @@ class FormKeyClass(_Aspect):
|
|
|
22754
23068
|
|
|
22755
23069
|
|
|
22756
23070
|
ASPECT_NAME = 'formKey'
|
|
22757
|
-
ASPECT_INFO = {'keyForEntity': 'form', 'entityCategory': 'core', 'entityAspects': ['formInfo', 'dynamicFormAssignment', 'ownership']}
|
|
23071
|
+
ASPECT_INFO = {'keyForEntity': 'form', 'entityCategory': 'core', 'entityAspects': ['formInfo', 'dynamicFormAssignment', 'ownership', 'formSettings', 'formAssignmentStatus']}
|
|
22758
23072
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.FormKey")
|
|
22759
23073
|
|
|
22760
23074
|
def __init__(self,
|
|
@@ -22873,7 +23187,7 @@ class GlossaryTermKeyClass(_Aspect):
|
|
|
22873
23187
|
|
|
22874
23188
|
|
|
22875
23189
|
ASPECT_NAME = 'glossaryTermKey'
|
|
22876
|
-
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'share', 'origin']}
|
|
23190
|
+
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'applications', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'share', 'origin']}
|
|
22877
23191
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.GlossaryTermKey")
|
|
22878
23192
|
|
|
22879
23193
|
def __init__(self,
|
|
@@ -22989,7 +23303,7 @@ class MLFeatureKeyClass(_Aspect):
|
|
|
22989
23303
|
|
|
22990
23304
|
|
|
22991
23305
|
ASPECT_NAME = 'mlFeatureKey'
|
|
22992
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation', 'incidentsSummary']}
|
|
23306
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'applications', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation', 'incidentsSummary']}
|
|
22993
23307
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureKey")
|
|
22994
23308
|
|
|
22995
23309
|
def __init__(self,
|
|
@@ -23031,7 +23345,7 @@ class MLFeatureTableKeyClass(_Aspect):
|
|
|
23031
23345
|
|
|
23032
23346
|
|
|
23033
23347
|
ASPECT_NAME = 'mlFeatureTableKey'
|
|
23034
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
23348
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'applications', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
23035
23349
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureTableKey")
|
|
23036
23350
|
|
|
23037
23351
|
def __init__(self,
|
|
@@ -23128,7 +23442,7 @@ class MLModelGroupKeyClass(_Aspect):
|
|
|
23128
23442
|
|
|
23129
23443
|
|
|
23130
23444
|
ASPECT_NAME = 'mlModelGroupKey'
|
|
23131
|
-
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'container', 'institutionalMemory', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
23445
|
+
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'applications', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'container', 'institutionalMemory', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
23132
23446
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelGroupKey")
|
|
23133
23447
|
|
|
23134
23448
|
def __init__(self,
|
|
@@ -23183,7 +23497,7 @@ class MLModelKeyClass(_Aspect):
|
|
|
23183
23497
|
|
|
23184
23498
|
|
|
23185
23499
|
ASPECT_NAME = 'mlModelKey'
|
|
23186
|
-
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties', 'subTypes', 'container', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation', 'incidentsSummary']}
|
|
23500
|
+
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'applications', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties', 'subTypes', 'container', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation', 'incidentsSummary']}
|
|
23187
23501
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelKey")
|
|
23188
23502
|
|
|
23189
23503
|
def __init__(self,
|
|
@@ -23238,7 +23552,7 @@ class MLPrimaryKeyKeyClass(_Aspect):
|
|
|
23238
23552
|
|
|
23239
23553
|
|
|
23240
23554
|
ASPECT_NAME = 'mlPrimaryKeyKey'
|
|
23241
|
-
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures']}
|
|
23555
|
+
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'applications', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures']}
|
|
23242
23556
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLPrimaryKeyKey")
|
|
23243
23557
|
|
|
23244
23558
|
def __init__(self,
|
|
@@ -23351,7 +23665,7 @@ class NotebookKeyClass(_Aspect):
|
|
|
23351
23665
|
|
|
23352
23666
|
|
|
23353
23667
|
ASPECT_NAME = 'notebookKey'
|
|
23354
|
-
ASPECT_INFO = {'keyForEntity': 'notebook', 'entityCategory': '_unset_', 'entityAspects': ['notebookInfo', 'notebookContent', 'editableNotebookProperties', 'ownership', 'status', 'globalTags', 'glossaryTerms', 'browsePaths', 'institutionalMemory', 'domains', 'subTypes', 'dataPlatformInstance', 'browsePathsV2', 'testResults', 'proposals', 'share', 'origin', 'documentation'], 'entityDoc': 'Notebook represents a combination of query, text, chart and etc. This is in BETA version'}
|
|
23668
|
+
ASPECT_INFO = {'keyForEntity': 'notebook', 'entityCategory': '_unset_', 'entityAspects': ['notebookInfo', 'notebookContent', 'editableNotebookProperties', 'ownership', 'status', 'globalTags', 'glossaryTerms', 'browsePaths', 'institutionalMemory', 'domains', 'applications', 'subTypes', 'dataPlatformInstance', 'browsePathsV2', 'testResults', 'proposals', 'share', 'origin', 'documentation'], 'entityDoc': 'Notebook represents a combination of query, text, chart and etc. This is in BETA version'}
|
|
23355
23669
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.NotebookKey")
|
|
23356
23670
|
|
|
23357
23671
|
def __init__(self,
|
|
@@ -28127,7 +28441,9 @@ class AssertionMonitorClass(DictWrapper):
|
|
|
28127
28441
|
|
|
28128
28442
|
@property
|
|
28129
28443
|
def assertions(self) -> List["AssertionEvaluationSpecClass"]:
|
|
28130
|
-
"""Specs for each assertion to evaluate
|
|
28444
|
+
"""Specs for each assertion to evaluate
|
|
28445
|
+
This will always have 1 reference. Modelling error caused it to be an array.
|
|
28446
|
+
If it is != 1 then we have data corruption."""
|
|
28131
28447
|
return self._inner_dict.get('assertions') # type: ignore
|
|
28132
28448
|
|
|
28133
28449
|
@assertions.setter
|
|
@@ -28791,7 +29107,8 @@ class MonitorModeClass(object):
|
|
|
28791
29107
|
|
|
28792
29108
|
PASSIVE = "PASSIVE"
|
|
28793
29109
|
"""The monitor is running in passive mode.
|
|
28794
|
-
For assertion monitors, this means that assertions will be run in dry mode.
|
|
29110
|
+
For assertion monitors, this means that assertions will be run in dry mode.
|
|
29111
|
+
This is for internal troubleshooting purposes."""
|
|
28795
29112
|
|
|
28796
29113
|
|
|
28797
29114
|
|
|
@@ -29244,7 +29561,7 @@ class MonitorTypeClass(object):
|
|
|
29244
29561
|
"""A monitor responsible for evaluating Assertions."""
|
|
29245
29562
|
|
|
29246
29563
|
FRESHNESS = "FRESHNESS"
|
|
29247
|
-
"""A monitor responsible for evaluating system freshness monitors"""
|
|
29564
|
+
"""A monitor responsible for evaluating system freshness monitors - This is not used"""
|
|
29248
29565
|
|
|
29249
29566
|
|
|
29250
29567
|
|
|
@@ -30369,6 +30686,119 @@ class TextCellClass(DictWrapper):
|
|
|
30369
30686
|
self._inner_dict['text'] = value
|
|
30370
30687
|
|
|
30371
30688
|
|
|
30689
|
+
class FormNotificationDetailsClass(DictWrapper):
|
|
30690
|
+
"""Info about all of the notifications a user has received for a given form"""
|
|
30691
|
+
|
|
30692
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.notification.FormNotificationDetails")
|
|
30693
|
+
def __init__(self,
|
|
30694
|
+
formUrn: str,
|
|
30695
|
+
notificationLog: Optional[List["FormNotificationEntryClass"]]=None,
|
|
30696
|
+
):
|
|
30697
|
+
super().__init__()
|
|
30698
|
+
|
|
30699
|
+
self.formUrn = formUrn
|
|
30700
|
+
if notificationLog is None:
|
|
30701
|
+
# default: []
|
|
30702
|
+
self.notificationLog = list()
|
|
30703
|
+
else:
|
|
30704
|
+
self.notificationLog = notificationLog
|
|
30705
|
+
|
|
30706
|
+
def _restore_defaults(self) -> None:
|
|
30707
|
+
self.formUrn = str()
|
|
30708
|
+
self.notificationLog = list()
|
|
30709
|
+
|
|
30710
|
+
|
|
30711
|
+
@property
|
|
30712
|
+
def formUrn(self) -> str:
|
|
30713
|
+
"""The urn of the form that these notification details are on behalf of"""
|
|
30714
|
+
return self._inner_dict.get('formUrn') # type: ignore
|
|
30715
|
+
|
|
30716
|
+
@formUrn.setter
|
|
30717
|
+
def formUrn(self, value: str) -> None:
|
|
30718
|
+
self._inner_dict['formUrn'] = value
|
|
30719
|
+
|
|
30720
|
+
|
|
30721
|
+
@property
|
|
30722
|
+
def notificationLog(self) -> List["FormNotificationEntryClass"]:
|
|
30723
|
+
"""The list of details per notification sent on behalf of this form"""
|
|
30724
|
+
return self._inner_dict.get('notificationLog') # type: ignore
|
|
30725
|
+
|
|
30726
|
+
@notificationLog.setter
|
|
30727
|
+
def notificationLog(self, value: List["FormNotificationEntryClass"]) -> None:
|
|
30728
|
+
self._inner_dict['notificationLog'] = value
|
|
30729
|
+
|
|
30730
|
+
|
|
30731
|
+
class FormNotificationEntryClass(DictWrapper):
|
|
30732
|
+
"""Info about a specific form notification"""
|
|
30733
|
+
|
|
30734
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.notification.FormNotificationEntry")
|
|
30735
|
+
def __init__(self,
|
|
30736
|
+
time: int,
|
|
30737
|
+
notificationType: str,
|
|
30738
|
+
):
|
|
30739
|
+
super().__init__()
|
|
30740
|
+
|
|
30741
|
+
self.time = time
|
|
30742
|
+
self.notificationType = notificationType
|
|
30743
|
+
|
|
30744
|
+
def _restore_defaults(self) -> None:
|
|
30745
|
+
self.time = int()
|
|
30746
|
+
self.notificationType = str()
|
|
30747
|
+
|
|
30748
|
+
|
|
30749
|
+
@property
|
|
30750
|
+
def time(self) -> int:
|
|
30751
|
+
"""The time at which this notification was sent in milliseconds"""
|
|
30752
|
+
return self._inner_dict.get('time') # type: ignore
|
|
30753
|
+
|
|
30754
|
+
@time.setter
|
|
30755
|
+
def time(self, value: int) -> None:
|
|
30756
|
+
self._inner_dict['time'] = value
|
|
30757
|
+
|
|
30758
|
+
|
|
30759
|
+
@property
|
|
30760
|
+
def notificationType(self) -> str:
|
|
30761
|
+
"""The notification scenario type for this notification record"""
|
|
30762
|
+
return self._inner_dict.get('notificationType') # type: ignore
|
|
30763
|
+
|
|
30764
|
+
@notificationType.setter
|
|
30765
|
+
def notificationType(self, value: str) -> None:
|
|
30766
|
+
self._inner_dict['notificationType'] = value
|
|
30767
|
+
|
|
30768
|
+
|
|
30769
|
+
class FormNotificationsClass(_Aspect):
|
|
30770
|
+
"""The history of notifications sent to this actor on behalf of forms"""
|
|
30771
|
+
|
|
30772
|
+
|
|
30773
|
+
ASPECT_NAME = 'formNotifications'
|
|
30774
|
+
ASPECT_INFO = {}
|
|
30775
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.notification.FormNotifications")
|
|
30776
|
+
|
|
30777
|
+
def __init__(self,
|
|
30778
|
+
notificationDetails: Optional[List["FormNotificationDetailsClass"]]=None,
|
|
30779
|
+
):
|
|
30780
|
+
super().__init__()
|
|
30781
|
+
|
|
30782
|
+
if notificationDetails is None:
|
|
30783
|
+
# default: []
|
|
30784
|
+
self.notificationDetails = list()
|
|
30785
|
+
else:
|
|
30786
|
+
self.notificationDetails = notificationDetails
|
|
30787
|
+
|
|
30788
|
+
def _restore_defaults(self) -> None:
|
|
30789
|
+
self.notificationDetails = list()
|
|
30790
|
+
|
|
30791
|
+
|
|
30792
|
+
@property
|
|
30793
|
+
def notificationDetails(self) -> List["FormNotificationDetailsClass"]:
|
|
30794
|
+
"""List of details for notifications for each form"""
|
|
30795
|
+
return self._inner_dict.get('notificationDetails') # type: ignore
|
|
30796
|
+
|
|
30797
|
+
@notificationDetails.setter
|
|
30798
|
+
def notificationDetails(self, value: List["FormNotificationDetailsClass"]) -> None:
|
|
30799
|
+
self._inner_dict['notificationDetails'] = value
|
|
30800
|
+
|
|
30801
|
+
|
|
30372
30802
|
class OwnershipTypeInfoClass(_Aspect):
|
|
30373
30803
|
"""Information about an ownership type"""
|
|
30374
30804
|
|
|
@@ -30983,6 +31413,7 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
30983
31413
|
resources: Union[None, List[str]]=None,
|
|
30984
31414
|
allResources: Optional[bool]=None,
|
|
30985
31415
|
filter: Union[None, "PolicyMatchFilterClass"]=None,
|
|
31416
|
+
policyConstraints: Union[None, "PolicyMatchFilterClass"]=None,
|
|
30986
31417
|
):
|
|
30987
31418
|
super().__init__()
|
|
30988
31419
|
|
|
@@ -30994,12 +31425,14 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
30994
31425
|
else:
|
|
30995
31426
|
self.allResources = allResources
|
|
30996
31427
|
self.filter = filter
|
|
31428
|
+
self.policyConstraints = policyConstraints
|
|
30997
31429
|
|
|
30998
31430
|
def _restore_defaults(self) -> None:
|
|
30999
31431
|
self.type = self.RECORD_SCHEMA.fields_dict["type"].default
|
|
31000
31432
|
self.resources = self.RECORD_SCHEMA.fields_dict["resources"].default
|
|
31001
31433
|
self.allResources = self.RECORD_SCHEMA.fields_dict["allResources"].default
|
|
31002
31434
|
self.filter = self.RECORD_SCHEMA.fields_dict["filter"].default
|
|
31435
|
+
self.policyConstraints = self.RECORD_SCHEMA.fields_dict["policyConstraints"].default
|
|
31003
31436
|
|
|
31004
31437
|
|
|
31005
31438
|
@property
|
|
@@ -31044,6 +31477,16 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
31044
31477
|
self._inner_dict['filter'] = value
|
|
31045
31478
|
|
|
31046
31479
|
|
|
31480
|
+
@property
|
|
31481
|
+
def policyConstraints(self) -> Union[None, "PolicyMatchFilterClass"]:
|
|
31482
|
+
"""Constraints around what sub-resources operations are allowed to modify, i.e. NOT_EQUALS - cannot modify a particular defined tag, EQUALS - can only modify a particular defined tag, STARTS_WITH - can only modify a tag starting with xyz"""
|
|
31483
|
+
return self._inner_dict.get('policyConstraints') # type: ignore
|
|
31484
|
+
|
|
31485
|
+
@policyConstraints.setter
|
|
31486
|
+
def policyConstraints(self, value: Union[None, "PolicyMatchFilterClass"]) -> None:
|
|
31487
|
+
self._inner_dict['policyConstraints'] = value
|
|
31488
|
+
|
|
31489
|
+
|
|
31047
31490
|
class DataHubRoleInfoClass(_Aspect):
|
|
31048
31491
|
"""Information about a DataHub Role."""
|
|
31049
31492
|
|
|
@@ -31112,6 +31555,9 @@ class PolicyMatchConditionClass(object):
|
|
|
31112
31555
|
STARTS_WITH = "STARTS_WITH"
|
|
31113
31556
|
"""Whether the field value starts with the value"""
|
|
31114
31557
|
|
|
31558
|
+
NOT_EQUALS = "NOT_EQUALS"
|
|
31559
|
+
"""Whether the field does not match the value"""
|
|
31560
|
+
|
|
31115
31561
|
|
|
31116
31562
|
|
|
31117
31563
|
class PolicyMatchCriterionClass(DictWrapper):
|
|
@@ -33802,6 +34248,35 @@ class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
|
33802
34248
|
self._inner_dict['columnPropagationEnabled'] = value
|
|
33803
34249
|
|
|
33804
34250
|
|
|
34251
|
+
class DocumentationAiSettingsClass(DictWrapper):
|
|
34252
|
+
"""Settings related to AI-powered documentation."""
|
|
34253
|
+
|
|
34254
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.DocumentationAiSettings")
|
|
34255
|
+
def __init__(self,
|
|
34256
|
+
enabled: Optional[bool]=None,
|
|
34257
|
+
):
|
|
34258
|
+
super().__init__()
|
|
34259
|
+
|
|
34260
|
+
if enabled is None:
|
|
34261
|
+
# default: True
|
|
34262
|
+
self.enabled = self.RECORD_SCHEMA.fields_dict["enabled"].default
|
|
34263
|
+
else:
|
|
34264
|
+
self.enabled = enabled
|
|
34265
|
+
|
|
34266
|
+
def _restore_defaults(self) -> None:
|
|
34267
|
+
self.enabled = self.RECORD_SCHEMA.fields_dict["enabled"].default
|
|
34268
|
+
|
|
34269
|
+
|
|
34270
|
+
@property
|
|
34271
|
+
def enabled(self) -> bool:
|
|
34272
|
+
"""Whether or not AI-generated documentation is enabled."""
|
|
34273
|
+
return self._inner_dict.get('enabled') # type: ignore
|
|
34274
|
+
|
|
34275
|
+
@enabled.setter
|
|
34276
|
+
def enabled(self, value: bool) -> None:
|
|
34277
|
+
self._inner_dict['enabled'] = value
|
|
34278
|
+
|
|
34279
|
+
|
|
33805
34280
|
class EmailIntegrationSettingsClass(DictWrapper):
|
|
33806
34281
|
"""Email integration settings. Enabled by default and only disable-able via the application configs."""
|
|
33807
34282
|
|
|
@@ -33960,6 +34435,7 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
33960
34435
|
sso: Union[None, "SsoSettingsClass"]=None,
|
|
33961
34436
|
views: Union[None, "GlobalViewsSettingsClass"]=None,
|
|
33962
34437
|
docPropagation: Optional[Union["DocPropagationFeatureSettingsClass", None]]=None,
|
|
34438
|
+
documentationAi: Union[None, "DocumentationAiSettingsClass"]=None,
|
|
33963
34439
|
visual: Union[None, "GlobalVisualSettingsClass"]=None,
|
|
33964
34440
|
):
|
|
33965
34441
|
super().__init__()
|
|
@@ -33973,6 +34449,7 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
33973
34449
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
33974
34450
|
else:
|
|
33975
34451
|
self.docPropagation = docPropagation
|
|
34452
|
+
self.documentationAi = documentationAi
|
|
33976
34453
|
self.visual = visual
|
|
33977
34454
|
|
|
33978
34455
|
def _restore_defaults(self) -> None:
|
|
@@ -33981,6 +34458,7 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
33981
34458
|
self.sso = self.RECORD_SCHEMA.fields_dict["sso"].default
|
|
33982
34459
|
self.views = self.RECORD_SCHEMA.fields_dict["views"].default
|
|
33983
34460
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
34461
|
+
self.documentationAi = self.RECORD_SCHEMA.fields_dict["documentationAi"].default
|
|
33984
34462
|
self.visual = self.RECORD_SCHEMA.fields_dict["visual"].default
|
|
33985
34463
|
|
|
33986
34464
|
|
|
@@ -34034,6 +34512,16 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
34034
34512
|
self._inner_dict['docPropagation'] = value
|
|
34035
34513
|
|
|
34036
34514
|
|
|
34515
|
+
@property
|
|
34516
|
+
def documentationAi(self) -> Union[None, "DocumentationAiSettingsClass"]:
|
|
34517
|
+
"""Settings related to AI-powered documentation."""
|
|
34518
|
+
return self._inner_dict.get('documentationAi') # type: ignore
|
|
34519
|
+
|
|
34520
|
+
@documentationAi.setter
|
|
34521
|
+
def documentationAi(self, value: Union[None, "DocumentationAiSettingsClass"]) -> None:
|
|
34522
|
+
self._inner_dict['documentationAi'] = value
|
|
34523
|
+
|
|
34524
|
+
|
|
34037
34525
|
@property
|
|
34038
34526
|
def visual(self) -> Union[None, "GlobalVisualSettingsClass"]:
|
|
34039
34527
|
"""Global settings related to the UI and what's displayed in the app"""
|
|
@@ -35154,7 +35642,7 @@ class EntityChangeDetailsFilterClass(DictWrapper):
|
|
|
35154
35642
|
|
|
35155
35643
|
|
|
35156
35644
|
class EntityChangeTypeClass(object):
|
|
35157
|
-
"""Enum to define change types that can trigger a subscription."""
|
|
35645
|
+
"""Enum to define change types that can trigger a notification for a subscription."""
|
|
35158
35646
|
|
|
35159
35647
|
OPERATION_COLUMN_ADDED = "OPERATION_COLUMN_ADDED"
|
|
35160
35648
|
"""Schema changes."""
|
|
@@ -35263,7 +35751,7 @@ class SubscriptionInfoClass(_Aspect):
|
|
|
35263
35751
|
|
|
35264
35752
|
@property
|
|
35265
35753
|
def actorUrn(self) -> str:
|
|
35266
|
-
"""Actor Urn"""
|
|
35754
|
+
"""Actor Urn who will be notified """
|
|
35267
35755
|
return self._inner_dict.get('actorUrn') # type: ignore
|
|
35268
35756
|
|
|
35269
35757
|
@actorUrn.setter
|
|
@@ -35313,7 +35801,7 @@ class SubscriptionInfoClass(_Aspect):
|
|
|
35313
35801
|
|
|
35314
35802
|
@property
|
|
35315
35803
|
def entityUrn(self) -> Union[None, str]:
|
|
35316
|
-
"""Optional entity Urn"""
|
|
35804
|
+
"""Optional entity Urn - top level for now (Dataset, container etc. )"""
|
|
35317
35805
|
return self._inner_dict.get('entityUrn') # type: ignore
|
|
35318
35806
|
|
|
35319
35807
|
@entityUrn.setter
|
|
@@ -37163,6 +37651,9 @@ __SCHEMA_TYPES = {
|
|
|
37163
37651
|
'com.linkedin.pegasus2avro.anomaly.AnomalySourceProperties': AnomalySourcePropertiesClass,
|
|
37164
37652
|
'com.linkedin.pegasus2avro.anomaly.AnomalySourceType': AnomalySourceTypeClass,
|
|
37165
37653
|
'com.linkedin.pegasus2avro.anomaly.MonitorAnomalyEvent': MonitorAnomalyEventClass,
|
|
37654
|
+
'com.linkedin.pegasus2avro.application.ApplicationKey': ApplicationKeyClass,
|
|
37655
|
+
'com.linkedin.pegasus2avro.application.ApplicationProperties': ApplicationPropertiesClass,
|
|
37656
|
+
'com.linkedin.pegasus2avro.application.Applications': ApplicationsClass,
|
|
37166
37657
|
'com.linkedin.pegasus2avro.assertion.AdjustmentAlgorithm': AdjustmentAlgorithmClass,
|
|
37167
37658
|
'com.linkedin.pegasus2avro.assertion.AssertionAction': AssertionActionClass,
|
|
37168
37659
|
'com.linkedin.pegasus2avro.assertion.AssertionActionType': AssertionActionTypeClass,
|
|
@@ -37183,6 +37674,7 @@ __SCHEMA_TYPES = {
|
|
|
37183
37674
|
'com.linkedin.pegasus2avro.assertion.AssertionResultType': AssertionResultTypeClass,
|
|
37184
37675
|
'com.linkedin.pegasus2avro.assertion.AssertionRunEvent': AssertionRunEventClass,
|
|
37185
37676
|
'com.linkedin.pegasus2avro.assertion.AssertionRunStatus': AssertionRunStatusClass,
|
|
37677
|
+
'com.linkedin.pegasus2avro.assertion.AssertionRunSummary': AssertionRunSummaryClass,
|
|
37186
37678
|
'com.linkedin.pegasus2avro.assertion.AssertionSource': AssertionSourceClass,
|
|
37187
37679
|
'com.linkedin.pegasus2avro.assertion.AssertionSourceType': AssertionSourceTypeClass,
|
|
37188
37680
|
'com.linkedin.pegasus2avro.assertion.AssertionStdAggregation': AssertionStdAggregationClass,
|
|
@@ -37190,7 +37682,6 @@ __SCHEMA_TYPES = {
|
|
|
37190
37682
|
'com.linkedin.pegasus2avro.assertion.AssertionStdParameter': AssertionStdParameterClass,
|
|
37191
37683
|
'com.linkedin.pegasus2avro.assertion.AssertionStdParameterType': AssertionStdParameterTypeClass,
|
|
37192
37684
|
'com.linkedin.pegasus2avro.assertion.AssertionStdParameters': AssertionStdParametersClass,
|
|
37193
|
-
'com.linkedin.pegasus2avro.assertion.AssertionSummary': AssertionSummaryClass,
|
|
37194
37685
|
'com.linkedin.pegasus2avro.assertion.AssertionType': AssertionTypeClass,
|
|
37195
37686
|
'com.linkedin.pegasus2avro.assertion.AssertionValueChangeType': AssertionValueChangeTypeClass,
|
|
37196
37687
|
'com.linkedin.pegasus2avro.assertion.BatchSpec': BatchSpecClass,
|
|
@@ -37439,12 +37930,16 @@ __SCHEMA_TYPES = {
|
|
|
37439
37930
|
'com.linkedin.pegasus2avro.executorpool.RemoteExecutorPoolInfo': RemoteExecutorPoolInfoClass,
|
|
37440
37931
|
'com.linkedin.pegasus2avro.executorpool.RemoteExecutorPoolState': RemoteExecutorPoolStateClass,
|
|
37441
37932
|
'com.linkedin.pegasus2avro.executorpool.RemoteExecutorPoolStatus': RemoteExecutorPoolStatusClass,
|
|
37933
|
+
'com.linkedin.pegasus2avro.form.AssignmentStatus': AssignmentStatusClass,
|
|
37442
37934
|
'com.linkedin.pegasus2avro.form.DomainParams': DomainParamsClass,
|
|
37443
37935
|
'com.linkedin.pegasus2avro.form.DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
37444
37936
|
'com.linkedin.pegasus2avro.form.FormActorAssignment': FormActorAssignmentClass,
|
|
37937
|
+
'com.linkedin.pegasus2avro.form.FormAssignmentStatus': FormAssignmentStatusClass,
|
|
37445
37938
|
'com.linkedin.pegasus2avro.form.FormInfo': FormInfoClass,
|
|
37939
|
+
'com.linkedin.pegasus2avro.form.FormNotificationSettings': FormNotificationSettingsClass,
|
|
37446
37940
|
'com.linkedin.pegasus2avro.form.FormPrompt': FormPromptClass,
|
|
37447
37941
|
'com.linkedin.pegasus2avro.form.FormPromptType': FormPromptTypeClass,
|
|
37942
|
+
'com.linkedin.pegasus2avro.form.FormSettings': FormSettingsClass,
|
|
37448
37943
|
'com.linkedin.pegasus2avro.form.FormState': FormStateClass,
|
|
37449
37944
|
'com.linkedin.pegasus2avro.form.FormStatus': FormStatusClass,
|
|
37450
37945
|
'com.linkedin.pegasus2avro.form.FormType': FormTypeClass,
|
|
@@ -37694,6 +38189,9 @@ __SCHEMA_TYPES = {
|
|
|
37694
38189
|
'com.linkedin.pegasus2avro.notebook.NotebookInfo': NotebookInfoClass,
|
|
37695
38190
|
'com.linkedin.pegasus2avro.notebook.QueryCell': QueryCellClass,
|
|
37696
38191
|
'com.linkedin.pegasus2avro.notebook.TextCell': TextCellClass,
|
|
38192
|
+
'com.linkedin.pegasus2avro.notification.FormNotificationDetails': FormNotificationDetailsClass,
|
|
38193
|
+
'com.linkedin.pegasus2avro.notification.FormNotificationEntry': FormNotificationEntryClass,
|
|
38194
|
+
'com.linkedin.pegasus2avro.notification.FormNotifications': FormNotificationsClass,
|
|
37697
38195
|
'com.linkedin.pegasus2avro.ownership.OwnershipTypeInfo': OwnershipTypeInfoClass,
|
|
37698
38196
|
'com.linkedin.pegasus2avro.persona.DataHubPersonaInfo': DataHubPersonaInfoClass,
|
|
37699
38197
|
'com.linkedin.pegasus2avro.platform.event.v1.EntityChangeEvent': EntityChangeEventClass,
|
|
@@ -37767,6 +38265,7 @@ __SCHEMA_TYPES = {
|
|
|
37767
38265
|
'com.linkedin.pegasus2avro.settings.NotificationSetting': NotificationSettingClass,
|
|
37768
38266
|
'com.linkedin.pegasus2avro.settings.NotificationSettingValue': NotificationSettingValueClass,
|
|
37769
38267
|
'com.linkedin.pegasus2avro.settings.global.DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
38268
|
+
'com.linkedin.pegasus2avro.settings.global.DocumentationAiSettings': DocumentationAiSettingsClass,
|
|
37770
38269
|
'com.linkedin.pegasus2avro.settings.global.EmailIntegrationSettings': EmailIntegrationSettingsClass,
|
|
37771
38270
|
'com.linkedin.pegasus2avro.settings.global.GlobalIncidentsSettings': GlobalIncidentsSettingsClass,
|
|
37772
38271
|
'com.linkedin.pegasus2avro.settings.global.GlobalIntegrationSettings': GlobalIntegrationSettingsClass,
|
|
@@ -37869,6 +38368,9 @@ __SCHEMA_TYPES = {
|
|
|
37869
38368
|
'AnomalySourceProperties': AnomalySourcePropertiesClass,
|
|
37870
38369
|
'AnomalySourceType': AnomalySourceTypeClass,
|
|
37871
38370
|
'MonitorAnomalyEvent': MonitorAnomalyEventClass,
|
|
38371
|
+
'ApplicationKey': ApplicationKeyClass,
|
|
38372
|
+
'ApplicationProperties': ApplicationPropertiesClass,
|
|
38373
|
+
'Applications': ApplicationsClass,
|
|
37872
38374
|
'AdjustmentAlgorithm': AdjustmentAlgorithmClass,
|
|
37873
38375
|
'AssertionAction': AssertionActionClass,
|
|
37874
38376
|
'AssertionActionType': AssertionActionTypeClass,
|
|
@@ -37889,6 +38391,7 @@ __SCHEMA_TYPES = {
|
|
|
37889
38391
|
'AssertionResultType': AssertionResultTypeClass,
|
|
37890
38392
|
'AssertionRunEvent': AssertionRunEventClass,
|
|
37891
38393
|
'AssertionRunStatus': AssertionRunStatusClass,
|
|
38394
|
+
'AssertionRunSummary': AssertionRunSummaryClass,
|
|
37892
38395
|
'AssertionSource': AssertionSourceClass,
|
|
37893
38396
|
'AssertionSourceType': AssertionSourceTypeClass,
|
|
37894
38397
|
'AssertionStdAggregation': AssertionStdAggregationClass,
|
|
@@ -37896,7 +38399,6 @@ __SCHEMA_TYPES = {
|
|
|
37896
38399
|
'AssertionStdParameter': AssertionStdParameterClass,
|
|
37897
38400
|
'AssertionStdParameterType': AssertionStdParameterTypeClass,
|
|
37898
38401
|
'AssertionStdParameters': AssertionStdParametersClass,
|
|
37899
|
-
'AssertionSummary': AssertionSummaryClass,
|
|
37900
38402
|
'AssertionType': AssertionTypeClass,
|
|
37901
38403
|
'AssertionValueChangeType': AssertionValueChangeTypeClass,
|
|
37902
38404
|
'BatchSpec': BatchSpecClass,
|
|
@@ -38145,12 +38647,16 @@ __SCHEMA_TYPES = {
|
|
|
38145
38647
|
'RemoteExecutorPoolInfo': RemoteExecutorPoolInfoClass,
|
|
38146
38648
|
'RemoteExecutorPoolState': RemoteExecutorPoolStateClass,
|
|
38147
38649
|
'RemoteExecutorPoolStatus': RemoteExecutorPoolStatusClass,
|
|
38650
|
+
'AssignmentStatus': AssignmentStatusClass,
|
|
38148
38651
|
'DomainParams': DomainParamsClass,
|
|
38149
38652
|
'DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
38150
38653
|
'FormActorAssignment': FormActorAssignmentClass,
|
|
38654
|
+
'FormAssignmentStatus': FormAssignmentStatusClass,
|
|
38151
38655
|
'FormInfo': FormInfoClass,
|
|
38656
|
+
'FormNotificationSettings': FormNotificationSettingsClass,
|
|
38152
38657
|
'FormPrompt': FormPromptClass,
|
|
38153
38658
|
'FormPromptType': FormPromptTypeClass,
|
|
38659
|
+
'FormSettings': FormSettingsClass,
|
|
38154
38660
|
'FormState': FormStateClass,
|
|
38155
38661
|
'FormStatus': FormStatusClass,
|
|
38156
38662
|
'FormType': FormTypeClass,
|
|
@@ -38400,6 +38906,9 @@ __SCHEMA_TYPES = {
|
|
|
38400
38906
|
'NotebookInfo': NotebookInfoClass,
|
|
38401
38907
|
'QueryCell': QueryCellClass,
|
|
38402
38908
|
'TextCell': TextCellClass,
|
|
38909
|
+
'FormNotificationDetails': FormNotificationDetailsClass,
|
|
38910
|
+
'FormNotificationEntry': FormNotificationEntryClass,
|
|
38911
|
+
'FormNotifications': FormNotificationsClass,
|
|
38403
38912
|
'OwnershipTypeInfo': OwnershipTypeInfoClass,
|
|
38404
38913
|
'DataHubPersonaInfo': DataHubPersonaInfoClass,
|
|
38405
38914
|
'EntityChangeEvent': EntityChangeEventClass,
|
|
@@ -38473,6 +38982,7 @@ __SCHEMA_TYPES = {
|
|
|
38473
38982
|
'NotificationSetting': NotificationSettingClass,
|
|
38474
38983
|
'NotificationSettingValue': NotificationSettingValueClass,
|
|
38475
38984
|
'DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
38985
|
+
'DocumentationAiSettings': DocumentationAiSettingsClass,
|
|
38476
38986
|
'EmailIntegrationSettings': EmailIntegrationSettingsClass,
|
|
38477
38987
|
'GlobalIncidentsSettings': GlobalIncidentsSettingsClass,
|
|
38478
38988
|
'GlobalIntegrationSettings': GlobalIntegrationSettingsClass,
|
|
@@ -38549,276 +39059,282 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
38549
39059
|
|
|
38550
39060
|
|
|
38551
39061
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
39062
|
+
StructuredPropertyKeyClass,
|
|
39063
|
+
StructuredPropertySettingsClass,
|
|
39064
|
+
StructuredPropertyDefinitionClass,
|
|
39065
|
+
StructuredPropertiesClass,
|
|
39066
|
+
IcebergWarehouseInfoClass,
|
|
39067
|
+
DataPlatformInstancePropertiesClass,
|
|
39068
|
+
DataPlatformInfoClass,
|
|
39069
|
+
SlackUserInfoClass,
|
|
39070
|
+
SchemaMetadataClass,
|
|
39071
|
+
SchemaProposalsClass,
|
|
39072
|
+
EditableSchemaMetadataClass,
|
|
39073
|
+
DataHubViewInfoClass,
|
|
39074
|
+
GlobalSettingsInfoClass,
|
|
39075
|
+
EditableContainerPropertiesClass,
|
|
39076
|
+
ContainerClass,
|
|
39077
|
+
ContainerPropertiesClass,
|
|
39078
|
+
DataHubIngestionSourceInfoClass,
|
|
38552
39079
|
InferredNeighborsClass,
|
|
38553
39080
|
SchemaFieldsInferredNeighborsClass,
|
|
38554
39081
|
SchemaFieldsInferredMetadataClass,
|
|
38555
39082
|
InferredMetadataClass,
|
|
38556
|
-
|
|
38557
|
-
|
|
38558
|
-
|
|
38559
|
-
|
|
38560
|
-
|
|
38561
|
-
|
|
38562
|
-
|
|
38563
|
-
|
|
38564
|
-
|
|
38565
|
-
|
|
38566
|
-
|
|
38567
|
-
|
|
38568
|
-
|
|
38569
|
-
|
|
38570
|
-
|
|
38571
|
-
|
|
38572
|
-
|
|
38573
|
-
|
|
38574
|
-
|
|
38575
|
-
|
|
38576
|
-
|
|
38577
|
-
|
|
38578
|
-
|
|
38579
|
-
|
|
38580
|
-
|
|
38581
|
-
|
|
38582
|
-
VersionPropertiesClass,
|
|
38583
|
-
QueryUsageFeaturesClass,
|
|
38584
|
-
QueryPropertiesClass,
|
|
38585
|
-
QuerySubjectsClass,
|
|
38586
|
-
QueryUsageStatisticsClass,
|
|
38587
|
-
GlossaryTermInfoClass,
|
|
38588
|
-
GlossaryRelatedTermsClass,
|
|
38589
|
-
GlossaryNodeInfoClass,
|
|
38590
|
-
DataHubPersonaInfoClass,
|
|
38591
|
-
BusinessAttributesClass,
|
|
38592
|
-
BusinessAttributeInfoClass,
|
|
38593
|
-
BusinessAttributeKeyClass,
|
|
38594
|
-
DataHubMetricCubeEventClass,
|
|
38595
|
-
DataHubMetricCubeDefinitionClass,
|
|
38596
|
-
DataHubSecretValueClass,
|
|
38597
|
-
DataContractPropertiesClass,
|
|
38598
|
-
DataContractStatusClass,
|
|
38599
|
-
ExecutionRequestResultClass,
|
|
38600
|
-
ExecutionRequestSignalClass,
|
|
38601
|
-
ExecutionRequestInputClass,
|
|
38602
|
-
ActionRequestArchivedClass,
|
|
38603
|
-
ActionRequestStatusClass,
|
|
38604
|
-
ActionRequestInfoClass,
|
|
38605
|
-
DashboardInfoClass,
|
|
38606
|
-
EditableDashboardPropertiesClass,
|
|
38607
|
-
DashboardUsageStatisticsClass,
|
|
38608
|
-
DataProductPropertiesClass,
|
|
38609
|
-
DataProductKeyClass,
|
|
38610
|
-
EntityTypeKeyClass,
|
|
38611
|
-
EntityTypeInfoClass,
|
|
38612
|
-
RemoteExecutorPoolInfoClass,
|
|
38613
|
-
DataHubUpgradeResultClass,
|
|
38614
|
-
DataHubUpgradeRequestClass,
|
|
38615
|
-
SubscriptionInfoClass,
|
|
38616
|
-
DataProcessInstanceRelationshipsClass,
|
|
38617
|
-
DataProcessInstancePropertiesClass,
|
|
38618
|
-
DataProcessInstanceRunEventClass,
|
|
38619
|
-
DataProcessInstanceInputClass,
|
|
38620
|
-
DataProcessInstanceOutputClass,
|
|
38621
|
-
DataProcessInfoClass,
|
|
38622
|
-
EditableChartPropertiesClass,
|
|
38623
|
-
ChartInfoClass,
|
|
38624
|
-
ChartQueryClass,
|
|
38625
|
-
ChartUsageStatisticsClass,
|
|
38626
|
-
NotebookInfoClass,
|
|
38627
|
-
NotebookContentClass,
|
|
38628
|
-
EditableNotebookPropertiesClass,
|
|
38629
|
-
DomainPropertiesClass,
|
|
38630
|
-
DomainsClass,
|
|
38631
|
-
UsageFeaturesClass,
|
|
38632
|
-
LineageFeaturesClass,
|
|
38633
|
-
StorageFeaturesClass,
|
|
38634
|
-
CostFeaturesClass,
|
|
39083
|
+
MLModelFactorPromptsClass,
|
|
39084
|
+
MLMetricClass,
|
|
39085
|
+
SourceCodeClass,
|
|
39086
|
+
MLFeaturePropertiesClass,
|
|
39087
|
+
CaveatsAndRecommendationsClass,
|
|
39088
|
+
MLModelGroupPropertiesClass,
|
|
39089
|
+
EditableMLModelPropertiesClass,
|
|
39090
|
+
QuantitativeAnalysesClass,
|
|
39091
|
+
MLTrainingRunPropertiesClass,
|
|
39092
|
+
EditableMLFeatureTablePropertiesClass,
|
|
39093
|
+
EditableMLPrimaryKeyPropertiesClass,
|
|
39094
|
+
MLHyperParamClass,
|
|
39095
|
+
EvaluationDataClass,
|
|
39096
|
+
EditableMLModelGroupPropertiesClass,
|
|
39097
|
+
IntendedUseClass,
|
|
39098
|
+
TrainingDataClass,
|
|
39099
|
+
EditableMLFeaturePropertiesClass,
|
|
39100
|
+
MetricsClass,
|
|
39101
|
+
MLModelDeploymentPropertiesClass,
|
|
39102
|
+
EthicalConsiderationsClass,
|
|
39103
|
+
MLModelPropertiesClass,
|
|
39104
|
+
MLFeatureTablePropertiesClass,
|
|
39105
|
+
MLPrimaryKeyPropertiesClass,
|
|
39106
|
+
PostInfoClass,
|
|
39107
|
+
AiInferenceMetadataClass,
|
|
39108
|
+
EntityInferenceMetadataClass,
|
|
38635
39109
|
RecommendationModuleClass,
|
|
38636
|
-
TestKeyClass,
|
|
38637
|
-
CorpUserKeyClass,
|
|
38638
|
-
DataPlatformInstanceKeyClass,
|
|
38639
|
-
NotebookKeyClass,
|
|
38640
|
-
ContainerKeyClass,
|
|
38641
|
-
MLFeatureTableKeyClass,
|
|
38642
|
-
SubscriptionKeyClass,
|
|
38643
|
-
QueryKeyClass,
|
|
38644
|
-
DataHubPolicyKeyClass,
|
|
38645
|
-
ChartKeyClass,
|
|
38646
|
-
GenericEntityKeyClass,
|
|
38647
|
-
DataHubRetentionKeyClass,
|
|
38648
|
-
DataHubSecretKeyClass,
|
|
38649
|
-
RecommendationModuleKeyClass,
|
|
38650
39110
|
ActionRequestKeyClass,
|
|
39111
|
+
RoleKeyClass,
|
|
39112
|
+
DataProcessInstanceKeyClass,
|
|
39113
|
+
LinkPreviewKeyClass,
|
|
39114
|
+
DataHubActionKeyClass,
|
|
38651
39115
|
CorpGroupKeyClass,
|
|
38652
|
-
|
|
38653
|
-
IncidentKeyClass,
|
|
38654
|
-
DataContractKeyClass,
|
|
38655
|
-
FormKeyClass,
|
|
38656
|
-
TagKeyClass,
|
|
38657
|
-
MLPrimaryKeyKeyClass,
|
|
39116
|
+
MLFeatureKeyClass,
|
|
38658
39117
|
InviteTokenKeyClass,
|
|
39118
|
+
DataHubStepStateKeyClass,
|
|
38659
39119
|
DataHubPersonaKeyClass,
|
|
39120
|
+
DataContractKeyClass,
|
|
39121
|
+
DataHubConnectionKeyClass,
|
|
39122
|
+
RecommendationModuleKeyClass,
|
|
39123
|
+
DataHubPolicyKeyClass,
|
|
39124
|
+
ConstraintKeyClass,
|
|
39125
|
+
MonitorKeyClass,
|
|
39126
|
+
CorpUserKeyClass,
|
|
39127
|
+
AnomalyKeyClass,
|
|
39128
|
+
MLModelDeploymentKeyClass,
|
|
39129
|
+
ContainerKeyClass,
|
|
38660
39130
|
SchemaFieldKeyClass,
|
|
38661
|
-
|
|
39131
|
+
NotebookKeyClass,
|
|
39132
|
+
MLModelKeyClass,
|
|
39133
|
+
RemoteExecutorGlobalConfigKeyClass,
|
|
39134
|
+
DataPlatformInstanceKeyClass,
|
|
39135
|
+
DataHubIngestionSourceKeyClass,
|
|
39136
|
+
ChartKeyClass,
|
|
39137
|
+
AssertionKeyClass,
|
|
39138
|
+
DataJobKeyClass,
|
|
39139
|
+
GenericEntityKeyClass,
|
|
38662
39140
|
ExecutionRequestKeyClass,
|
|
39141
|
+
DataHubAccessTokenKeyClass,
|
|
39142
|
+
QueryKeyClass,
|
|
39143
|
+
VersionSetKeyClass,
|
|
38663
39144
|
DataHubMetricCubeKeyClass,
|
|
38664
|
-
DataFlowKeyClass,
|
|
38665
|
-
DataProcessInstanceKeyClass,
|
|
38666
39145
|
DataPlatformKeyClass,
|
|
38667
|
-
ConstraintKeyClass,
|
|
38668
|
-
DataHubViewKeyClass,
|
|
38669
|
-
DashboardKeyClass,
|
|
38670
39146
|
OwnershipTypeKeyClass,
|
|
38671
|
-
|
|
38672
|
-
|
|
38673
|
-
MLModelGroupKeyClass,
|
|
38674
|
-
DatasetKeyClass,
|
|
38675
|
-
DomainKeyClass,
|
|
38676
|
-
RoleKeyClass,
|
|
38677
|
-
MonitorSuiteKeyClass,
|
|
38678
|
-
DataJobKeyClass,
|
|
39147
|
+
GlossaryTermKeyClass,
|
|
39148
|
+
FormKeyClass,
|
|
38679
39149
|
DataHubOpenAPISchemaKeyClass,
|
|
38680
|
-
|
|
38681
|
-
RemoteExecutorKeyClass,
|
|
38682
|
-
DataProcessKeyClass,
|
|
38683
|
-
DataHubIngestionSourceKeyClass,
|
|
39150
|
+
DataFlowKeyClass,
|
|
38684
39151
|
DataHubUpgradeKeyClass,
|
|
38685
|
-
|
|
39152
|
+
MonitorSuiteKeyClass,
|
|
39153
|
+
DataHubViewKeyClass,
|
|
38686
39154
|
GlossaryNodeKeyClass,
|
|
38687
|
-
|
|
38688
|
-
|
|
38689
|
-
GlossaryTermKeyClass,
|
|
39155
|
+
TagKeyClass,
|
|
39156
|
+
DashboardKeyClass,
|
|
38690
39157
|
RemoteExecutorPoolKeyClass,
|
|
38691
|
-
|
|
38692
|
-
|
|
38693
|
-
|
|
38694
|
-
|
|
38695
|
-
|
|
38696
|
-
|
|
38697
|
-
RemoteExecutorGlobalConfigKeyClass,
|
|
38698
|
-
DataHubStepStateKeyClass,
|
|
39158
|
+
IncidentKeyClass,
|
|
39159
|
+
MLFeatureTableKeyClass,
|
|
39160
|
+
MLPrimaryKeyKeyClass,
|
|
39161
|
+
DataHubRetentionKeyClass,
|
|
39162
|
+
DatasetKeyClass,
|
|
39163
|
+
TestKeyClass,
|
|
38699
39164
|
ERModelRelationshipKeyClass,
|
|
38700
|
-
|
|
38701
|
-
|
|
38702
|
-
|
|
39165
|
+
GlobalSettingsKeyClass,
|
|
39166
|
+
DomainKeyClass,
|
|
39167
|
+
PostKeyClass,
|
|
39168
|
+
RemoteExecutorKeyClass,
|
|
39169
|
+
TelemetryKeyClass,
|
|
39170
|
+
DataHubRoleKeyClass,
|
|
39171
|
+
SubscriptionKeyClass,
|
|
39172
|
+
DataProcessKeyClass,
|
|
39173
|
+
DataHubSecretKeyClass,
|
|
39174
|
+
MLModelGroupKeyClass,
|
|
39175
|
+
UsageFeaturesClass,
|
|
39176
|
+
StorageFeaturesClass,
|
|
39177
|
+
LineageFeaturesClass,
|
|
39178
|
+
CostFeaturesClass,
|
|
39179
|
+
DataTypeInfoClass,
|
|
39180
|
+
DataTypeKeyClass,
|
|
39181
|
+
MonitorTimeseriesStateClass,
|
|
38703
39182
|
MonitorSuiteInfoClass,
|
|
38704
39183
|
MonitorInfoClass,
|
|
38705
|
-
|
|
38706
|
-
|
|
38707
|
-
|
|
38708
|
-
EditableSchemaMetadataClass,
|
|
38709
|
-
SchemaProposalsClass,
|
|
38710
|
-
SchemaMetadataClass,
|
|
38711
|
-
DataHubAccessTokenInfoClass,
|
|
38712
|
-
DataHubConnectionDetailsClass,
|
|
38713
|
-
TelemetryClientIdClass,
|
|
38714
|
-
EntityInferenceMetadataClass,
|
|
38715
|
-
AiInferenceMetadataClass,
|
|
38716
|
-
ContainerPropertiesClass,
|
|
38717
|
-
EditableContainerPropertiesClass,
|
|
38718
|
-
ContainerClass,
|
|
39184
|
+
SchemaFieldAliasesClass,
|
|
39185
|
+
SchemaFieldInfoClass,
|
|
39186
|
+
DataHubRetentionConfigClass,
|
|
38719
39187
|
DataHubStepStatePropertiesClass,
|
|
38720
|
-
|
|
38721
|
-
|
|
39188
|
+
GlossaryNodeInfoClass,
|
|
39189
|
+
GlossaryTermInfoClass,
|
|
39190
|
+
GlossaryRelatedTermsClass,
|
|
39191
|
+
SubscriptionInfoClass,
|
|
38722
39192
|
IncidentNotificationDetailsClass,
|
|
38723
39193
|
IncidentInfoClass,
|
|
39194
|
+
IncidentActivityEventClass,
|
|
38724
39195
|
IncidentSourceClass,
|
|
39196
|
+
SystemMetadataClass,
|
|
38725
39197
|
BatchTestRunEventClass,
|
|
38726
39198
|
TestResultsClass,
|
|
38727
39199
|
TestInfoClass,
|
|
38728
|
-
|
|
38729
|
-
|
|
38730
|
-
|
|
38731
|
-
|
|
38732
|
-
|
|
38733
|
-
|
|
38734
|
-
|
|
38735
|
-
|
|
38736
|
-
|
|
38737
|
-
|
|
38738
|
-
|
|
38739
|
-
|
|
38740
|
-
|
|
38741
|
-
|
|
38742
|
-
|
|
38743
|
-
|
|
38744
|
-
|
|
38745
|
-
|
|
38746
|
-
|
|
38747
|
-
|
|
38748
|
-
|
|
38749
|
-
|
|
38750
|
-
|
|
38751
|
-
|
|
38752
|
-
|
|
38753
|
-
|
|
38754
|
-
|
|
38755
|
-
|
|
38756
|
-
|
|
38757
|
-
|
|
38758
|
-
|
|
39200
|
+
EntityTypeKeyClass,
|
|
39201
|
+
EntityTypeInfoClass,
|
|
39202
|
+
BusinessAttributeKeyClass,
|
|
39203
|
+
BusinessAttributesClass,
|
|
39204
|
+
BusinessAttributeInfoClass,
|
|
39205
|
+
DataHubUpgradeResultClass,
|
|
39206
|
+
DataHubUpgradeRequestClass,
|
|
39207
|
+
DataProductPropertiesClass,
|
|
39208
|
+
DataProductKeyClass,
|
|
39209
|
+
CostClass,
|
|
39210
|
+
ShareClass,
|
|
39211
|
+
IncidentsSummaryClass,
|
|
39212
|
+
GlobalTagsClass,
|
|
39213
|
+
OwnershipClass,
|
|
39214
|
+
InstitutionalMemoryClass,
|
|
39215
|
+
AnomaliesSummaryClass,
|
|
39216
|
+
FormsClass,
|
|
39217
|
+
AccessClass,
|
|
39218
|
+
BrowsePathsClass,
|
|
39219
|
+
OriginClass,
|
|
39220
|
+
DataPlatformInstanceClass,
|
|
39221
|
+
OperationClass,
|
|
39222
|
+
DisplayPropertiesClass,
|
|
39223
|
+
ProposalsClass,
|
|
39224
|
+
BrowsePathsV2Class,
|
|
39225
|
+
AssertionsSummaryClass,
|
|
39226
|
+
DataTransformLogicClass,
|
|
39227
|
+
GlossaryTermsClass,
|
|
39228
|
+
DeprecationClass,
|
|
39229
|
+
StatusClass,
|
|
39230
|
+
VersionPropertiesClass,
|
|
39231
|
+
SubTypesClass,
|
|
39232
|
+
InputFieldsClass,
|
|
39233
|
+
EmbedClass,
|
|
39234
|
+
SiblingsClass,
|
|
39235
|
+
DocumentationClass,
|
|
39236
|
+
DashboardUsageStatisticsClass,
|
|
39237
|
+
EditableDashboardPropertiesClass,
|
|
39238
|
+
DashboardInfoClass,
|
|
38759
39239
|
VersionSetPropertiesClass,
|
|
38760
|
-
|
|
38761
|
-
|
|
38762
|
-
AssertionAnalyticsRunEventClass,
|
|
38763
|
-
AssertionInfoClass,
|
|
38764
|
-
AssertionDryRunEventClass,
|
|
38765
|
-
AssertionRunEventClass,
|
|
38766
|
-
AssertionSummaryClass,
|
|
38767
|
-
LinkPreviewInfoClass,
|
|
38768
|
-
ConstraintInfoClass,
|
|
38769
|
-
DynamicFormAssignmentClass,
|
|
38770
|
-
FormInfoClass,
|
|
38771
|
-
PostInfoClass,
|
|
38772
|
-
GlobalSettingsInfoClass,
|
|
38773
|
-
TagPropertiesClass,
|
|
38774
|
-
DataTypeInfoClass,
|
|
38775
|
-
DataTypeKeyClass,
|
|
38776
|
-
DataHubPolicyInfoClass,
|
|
38777
|
-
DataHubRoleInfoClass,
|
|
38778
|
-
EditableDataJobPropertiesClass,
|
|
38779
|
-
EditableDataFlowPropertiesClass,
|
|
39240
|
+
RolePropertiesClass,
|
|
39241
|
+
ActorsClass,
|
|
38780
39242
|
DataJobInfoClass,
|
|
38781
|
-
|
|
39243
|
+
EditableDataJobPropertiesClass,
|
|
38782
39244
|
VersionInfoClass,
|
|
39245
|
+
EditableDataFlowPropertiesClass,
|
|
38783
39246
|
DataJobInputOutputClass,
|
|
39247
|
+
DataFlowInfoClass,
|
|
38784
39248
|
DatahubIngestionCheckpointClass,
|
|
38785
39249
|
DatahubIngestionRunSummaryClass,
|
|
38786
|
-
|
|
38787
|
-
|
|
38788
|
-
|
|
38789
|
-
|
|
39250
|
+
QueryUsageStatisticsClass,
|
|
39251
|
+
QueryPropertiesClass,
|
|
39252
|
+
QuerySubjectsClass,
|
|
39253
|
+
QueryUsageFeaturesClass,
|
|
39254
|
+
RemoteExecutorPoolInfoClass,
|
|
39255
|
+
FormNotificationsClass,
|
|
39256
|
+
ActionRequestArchivedClass,
|
|
39257
|
+
ActionRequestInfoClass,
|
|
39258
|
+
ActionRequestStatusClass,
|
|
39259
|
+
CorpGroupSettingsClass,
|
|
38790
39260
|
CorpUserStatusClass,
|
|
38791
|
-
|
|
39261
|
+
CorpUserCredentialsClass,
|
|
39262
|
+
CorpUserInfoClass,
|
|
39263
|
+
CorpGroupEditableInfoClass,
|
|
38792
39264
|
GroupMembershipClass,
|
|
38793
|
-
InviteTokenClass,
|
|
38794
|
-
CorpGroupSettingsClass,
|
|
38795
39265
|
CorpUserEditableInfoClass,
|
|
38796
39266
|
CorpUserSettingsClass,
|
|
38797
|
-
|
|
38798
|
-
|
|
39267
|
+
CorpGroupInfoClass,
|
|
39268
|
+
RoleMembershipClass,
|
|
38799
39269
|
NativeGroupMembershipClass,
|
|
38800
|
-
|
|
38801
|
-
|
|
38802
|
-
|
|
38803
|
-
StructuredPropertySettingsClass,
|
|
38804
|
-
StructuredPropertyKeyClass,
|
|
38805
|
-
IcebergCatalogInfoClass,
|
|
38806
|
-
DatasetPropertiesClass,
|
|
38807
|
-
DatasetDeprecationClass,
|
|
39270
|
+
InviteTokenClass,
|
|
39271
|
+
UpstreamLineageClass,
|
|
39272
|
+
SchemaFieldProfileClass,
|
|
38808
39273
|
DatasetUsageStatisticsClass,
|
|
39274
|
+
DatasetDeprecationClass,
|
|
39275
|
+
DatasetPropertiesClass,
|
|
38809
39276
|
EditableDatasetPropertiesClass,
|
|
38810
|
-
|
|
38811
|
-
DatasetProfileClass,
|
|
39277
|
+
IcebergCatalogInfoClass,
|
|
38812
39278
|
PartitionsSummaryClass,
|
|
38813
|
-
UpstreamLineageClass,
|
|
38814
|
-
DatasetUpstreamLineageClass,
|
|
38815
39279
|
ViewPropertiesClass,
|
|
38816
|
-
|
|
39280
|
+
DatasetProfileClass,
|
|
39281
|
+
DatasetUpstreamLineageClass,
|
|
39282
|
+
DataHubPersonaInfoClass,
|
|
39283
|
+
TelemetryClientIdClass,
|
|
39284
|
+
EditableERModelRelationshipPropertiesClass,
|
|
39285
|
+
ERModelRelationshipPropertiesClass,
|
|
39286
|
+
DataHubRoleInfoClass,
|
|
39287
|
+
DataHubPolicyInfoClass,
|
|
39288
|
+
ApplicationKeyClass,
|
|
39289
|
+
ApplicationPropertiesClass,
|
|
39290
|
+
ApplicationsClass,
|
|
39291
|
+
DataHubAccessTokenInfoClass,
|
|
39292
|
+
RemoteExecutorStatusClass,
|
|
39293
|
+
DataHubConnectionDetailsClass,
|
|
39294
|
+
NotebookContentClass,
|
|
39295
|
+
EditableNotebookPropertiesClass,
|
|
39296
|
+
NotebookInfoClass,
|
|
39297
|
+
AssertionRunEventClass,
|
|
39298
|
+
AssertionRunSummaryClass,
|
|
39299
|
+
AssertionDryRunEventClass,
|
|
39300
|
+
AssertionActionsClass,
|
|
39301
|
+
AssertionInferenceDetailsClass,
|
|
39302
|
+
AssertionInfoClass,
|
|
39303
|
+
AssertionAnalyticsRunEventClass,
|
|
39304
|
+
LinkPreviewInfoClass,
|
|
39305
|
+
DataContractPropertiesClass,
|
|
39306
|
+
DataContractStatusClass,
|
|
39307
|
+
DataProcessInfoClass,
|
|
39308
|
+
DataProcessInstanceRunEventClass,
|
|
39309
|
+
DataProcessInstanceOutputClass,
|
|
39310
|
+
DataProcessInstancePropertiesClass,
|
|
39311
|
+
DataProcessInstanceInputClass,
|
|
39312
|
+
DataProcessInstanceRelationshipsClass,
|
|
39313
|
+
DomainPropertiesClass,
|
|
39314
|
+
DomainsClass,
|
|
38817
39315
|
DataHubActionInfoClass,
|
|
38818
|
-
|
|
38819
|
-
|
|
39316
|
+
DataHubActionStatusClass,
|
|
39317
|
+
MonitorAnomalyEventClass,
|
|
39318
|
+
ChartQueryClass,
|
|
39319
|
+
EditableChartPropertiesClass,
|
|
39320
|
+
ChartUsageStatisticsClass,
|
|
39321
|
+
ChartInfoClass,
|
|
39322
|
+
DataHubMetricCubeEventClass,
|
|
39323
|
+
DataHubMetricCubeDefinitionClass,
|
|
39324
|
+
ConstraintInfoClass,
|
|
39325
|
+
TagPropertiesClass,
|
|
39326
|
+
PlatformResourceKeyClass,
|
|
38820
39327
|
PlatformResourceInfoClass,
|
|
38821
|
-
|
|
39328
|
+
RemoteExecutorPoolGlobalConfigClass,
|
|
39329
|
+
OwnershipTypeInfoClass,
|
|
39330
|
+
DataHubSecretValueClass,
|
|
39331
|
+
ExecutionRequestResultClass,
|
|
39332
|
+
ExecutionRequestInputClass,
|
|
39333
|
+
ExecutionRequestSignalClass,
|
|
39334
|
+
FormAssignmentStatusClass,
|
|
39335
|
+
FormInfoClass,
|
|
39336
|
+
DynamicFormAssignmentClass,
|
|
39337
|
+
FormSettingsClass
|
|
38822
39338
|
]
|
|
38823
39339
|
|
|
38824
39340
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -38830,490 +39346,499 @@ from typing import Literal
|
|
|
38830
39346
|
from typing_extensions import TypedDict
|
|
38831
39347
|
|
|
38832
39348
|
class AspectBag(TypedDict, total=False):
|
|
39349
|
+
structuredPropertyKey: StructuredPropertyKeyClass
|
|
39350
|
+
structuredPropertySettings: StructuredPropertySettingsClass
|
|
39351
|
+
propertyDefinition: StructuredPropertyDefinitionClass
|
|
39352
|
+
structuredProperties: StructuredPropertiesClass
|
|
39353
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
39354
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
39355
|
+
dataPlatformInfo: DataPlatformInfoClass
|
|
39356
|
+
slackUserInfo: SlackUserInfoClass
|
|
39357
|
+
schemaMetadata: SchemaMetadataClass
|
|
39358
|
+
schemaProposals: SchemaProposalsClass
|
|
39359
|
+
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
39360
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
39361
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
39362
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
39363
|
+
container: ContainerClass
|
|
39364
|
+
containerProperties: ContainerPropertiesClass
|
|
39365
|
+
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
38833
39366
|
inferredNeighbors: InferredNeighborsClass
|
|
38834
39367
|
schemaFieldsInferredNeighbors: SchemaFieldsInferredNeighborsClass
|
|
38835
39368
|
schemaFieldsInferredMetadata: SchemaFieldsInferredMetadataClass
|
|
38836
39369
|
inferredMetadata: InferredMetadataClass
|
|
38837
|
-
|
|
38838
|
-
|
|
38839
|
-
|
|
38840
|
-
|
|
38841
|
-
|
|
38842
|
-
|
|
38843
|
-
|
|
38844
|
-
|
|
38845
|
-
|
|
38846
|
-
|
|
38847
|
-
|
|
38848
|
-
|
|
38849
|
-
|
|
38850
|
-
|
|
38851
|
-
|
|
38852
|
-
|
|
38853
|
-
|
|
38854
|
-
|
|
38855
|
-
|
|
38856
|
-
|
|
38857
|
-
|
|
38858
|
-
|
|
38859
|
-
|
|
38860
|
-
|
|
38861
|
-
|
|
38862
|
-
|
|
38863
|
-
versionProperties: VersionPropertiesClass
|
|
38864
|
-
queryUsageFeatures: QueryUsageFeaturesClass
|
|
38865
|
-
queryProperties: QueryPropertiesClass
|
|
38866
|
-
querySubjects: QuerySubjectsClass
|
|
38867
|
-
queryUsageStatistics: QueryUsageStatisticsClass
|
|
38868
|
-
glossaryTermInfo: GlossaryTermInfoClass
|
|
38869
|
-
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
38870
|
-
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
38871
|
-
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
38872
|
-
businessAttributes: BusinessAttributesClass
|
|
38873
|
-
businessAttributeInfo: BusinessAttributeInfoClass
|
|
38874
|
-
businessAttributeKey: BusinessAttributeKeyClass
|
|
38875
|
-
dataHubMetricCubeEvent: DataHubMetricCubeEventClass
|
|
38876
|
-
dataHubMetricCubeDefinition: DataHubMetricCubeDefinitionClass
|
|
38877
|
-
dataHubSecretValue: DataHubSecretValueClass
|
|
38878
|
-
dataContractProperties: DataContractPropertiesClass
|
|
38879
|
-
dataContractStatus: DataContractStatusClass
|
|
38880
|
-
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
38881
|
-
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
38882
|
-
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
38883
|
-
actionRequestArchived: ActionRequestArchivedClass
|
|
38884
|
-
actionRequestStatus: ActionRequestStatusClass
|
|
38885
|
-
actionRequestInfo: ActionRequestInfoClass
|
|
38886
|
-
dashboardInfo: DashboardInfoClass
|
|
38887
|
-
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
38888
|
-
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
38889
|
-
dataProductProperties: DataProductPropertiesClass
|
|
38890
|
-
dataProductKey: DataProductKeyClass
|
|
38891
|
-
entityTypeKey: EntityTypeKeyClass
|
|
38892
|
-
entityTypeInfo: EntityTypeInfoClass
|
|
38893
|
-
dataHubRemoteExecutorPoolInfo: RemoteExecutorPoolInfoClass
|
|
38894
|
-
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
38895
|
-
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
38896
|
-
subscriptionInfo: SubscriptionInfoClass
|
|
38897
|
-
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
38898
|
-
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
38899
|
-
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
38900
|
-
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
38901
|
-
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
38902
|
-
dataProcessInfo: DataProcessInfoClass
|
|
38903
|
-
editableChartProperties: EditableChartPropertiesClass
|
|
38904
|
-
chartInfo: ChartInfoClass
|
|
38905
|
-
chartQuery: ChartQueryClass
|
|
38906
|
-
chartUsageStatistics: ChartUsageStatisticsClass
|
|
38907
|
-
notebookInfo: NotebookInfoClass
|
|
38908
|
-
notebookContent: NotebookContentClass
|
|
38909
|
-
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
38910
|
-
domainProperties: DomainPropertiesClass
|
|
38911
|
-
domains: DomainsClass
|
|
38912
|
-
usageFeatures: UsageFeaturesClass
|
|
38913
|
-
lineageFeatures: LineageFeaturesClass
|
|
38914
|
-
storageFeatures: StorageFeaturesClass
|
|
38915
|
-
costFeatures: CostFeaturesClass
|
|
39370
|
+
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
39371
|
+
mlMetric: MLMetricClass
|
|
39372
|
+
sourceCode: SourceCodeClass
|
|
39373
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
39374
|
+
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
39375
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
39376
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
39377
|
+
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
39378
|
+
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
39379
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
39380
|
+
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
39381
|
+
mlHyperParam: MLHyperParamClass
|
|
39382
|
+
mlModelEvaluationData: EvaluationDataClass
|
|
39383
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
39384
|
+
intendedUse: IntendedUseClass
|
|
39385
|
+
mlModelTrainingData: TrainingDataClass
|
|
39386
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
39387
|
+
mlModelMetrics: MetricsClass
|
|
39388
|
+
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
39389
|
+
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
39390
|
+
mlModelProperties: MLModelPropertiesClass
|
|
39391
|
+
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
39392
|
+
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
39393
|
+
postInfo: PostInfoClass
|
|
39394
|
+
aiInferenceMetadata: AiInferenceMetadataClass
|
|
39395
|
+
entityInferenceMetadata: EntityInferenceMetadataClass
|
|
38916
39396
|
recommendationModule: RecommendationModuleClass
|
|
38917
|
-
testKey: TestKeyClass
|
|
38918
|
-
corpUserKey: CorpUserKeyClass
|
|
38919
|
-
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
38920
|
-
notebookKey: NotebookKeyClass
|
|
38921
|
-
containerKey: ContainerKeyClass
|
|
38922
|
-
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
38923
|
-
subscriptionKey: SubscriptionKeyClass
|
|
38924
|
-
queryKey: QueryKeyClass
|
|
38925
|
-
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
38926
|
-
chartKey: ChartKeyClass
|
|
38927
|
-
genericEntityKey: GenericEntityKeyClass
|
|
38928
|
-
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
38929
|
-
dataHubSecretKey: DataHubSecretKeyClass
|
|
38930
|
-
recommendationModuleKey: RecommendationModuleKeyClass
|
|
38931
39397
|
actionRequestKey: ActionRequestKeyClass
|
|
39398
|
+
roleKey: RoleKeyClass
|
|
39399
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
39400
|
+
linkPreviewKey: LinkPreviewKeyClass
|
|
39401
|
+
dataHubActionKey: DataHubActionKeyClass
|
|
38932
39402
|
corpGroupKey: CorpGroupKeyClass
|
|
38933
|
-
|
|
38934
|
-
incidentKey: IncidentKeyClass
|
|
38935
|
-
dataContractKey: DataContractKeyClass
|
|
38936
|
-
formKey: FormKeyClass
|
|
38937
|
-
tagKey: TagKeyClass
|
|
38938
|
-
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
39403
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
38939
39404
|
inviteTokenKey: InviteTokenKeyClass
|
|
39405
|
+
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
38940
39406
|
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
39407
|
+
dataContractKey: DataContractKeyClass
|
|
39408
|
+
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
39409
|
+
recommendationModuleKey: RecommendationModuleKeyClass
|
|
39410
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
39411
|
+
constraintKey: ConstraintKeyClass
|
|
39412
|
+
monitorKey: MonitorKeyClass
|
|
39413
|
+
corpUserKey: CorpUserKeyClass
|
|
39414
|
+
anomalyKey: AnomalyKeyClass
|
|
39415
|
+
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
39416
|
+
containerKey: ContainerKeyClass
|
|
38941
39417
|
schemaFieldKey: SchemaFieldKeyClass
|
|
38942
|
-
|
|
39418
|
+
notebookKey: NotebookKeyClass
|
|
39419
|
+
mlModelKey: MLModelKeyClass
|
|
39420
|
+
dataHubRemoteExecutorGlobalConfigKey: RemoteExecutorGlobalConfigKeyClass
|
|
39421
|
+
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
39422
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
39423
|
+
chartKey: ChartKeyClass
|
|
39424
|
+
assertionKey: AssertionKeyClass
|
|
39425
|
+
dataJobKey: DataJobKeyClass
|
|
39426
|
+
genericEntityKey: GenericEntityKeyClass
|
|
38943
39427
|
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
39428
|
+
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
39429
|
+
queryKey: QueryKeyClass
|
|
39430
|
+
versionSetKey: VersionSetKeyClass
|
|
38944
39431
|
dataHubMetricCubeKey: DataHubMetricCubeKeyClass
|
|
38945
|
-
dataFlowKey: DataFlowKeyClass
|
|
38946
|
-
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
38947
39432
|
dataPlatformKey: DataPlatformKeyClass
|
|
38948
|
-
constraintKey: ConstraintKeyClass
|
|
38949
|
-
dataHubViewKey: DataHubViewKeyClass
|
|
38950
|
-
dashboardKey: DashboardKeyClass
|
|
38951
39433
|
ownershipTypeKey: OwnershipTypeKeyClass
|
|
38952
|
-
|
|
38953
|
-
|
|
38954
|
-
mlModelGroupKey: MLModelGroupKeyClass
|
|
38955
|
-
datasetKey: DatasetKeyClass
|
|
38956
|
-
domainKey: DomainKeyClass
|
|
38957
|
-
roleKey: RoleKeyClass
|
|
38958
|
-
monitorSuiteKey: MonitorSuiteKeyClass
|
|
38959
|
-
dataJobKey: DataJobKeyClass
|
|
39434
|
+
glossaryTermKey: GlossaryTermKeyClass
|
|
39435
|
+
formKey: FormKeyClass
|
|
38960
39436
|
dataHubOpenAPISchemaKey: DataHubOpenAPISchemaKeyClass
|
|
38961
|
-
|
|
38962
|
-
dataHubRemoteExecutorKey: RemoteExecutorKeyClass
|
|
38963
|
-
dataProcessKey: DataProcessKeyClass
|
|
38964
|
-
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
39437
|
+
dataFlowKey: DataFlowKeyClass
|
|
38965
39438
|
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
38966
|
-
|
|
39439
|
+
monitorSuiteKey: MonitorSuiteKeyClass
|
|
39440
|
+
dataHubViewKey: DataHubViewKeyClass
|
|
38967
39441
|
glossaryNodeKey: GlossaryNodeKeyClass
|
|
38968
|
-
|
|
38969
|
-
|
|
38970
|
-
glossaryTermKey: GlossaryTermKeyClass
|
|
39442
|
+
tagKey: TagKeyClass
|
|
39443
|
+
dashboardKey: DashboardKeyClass
|
|
38971
39444
|
dataHubRemoteExecutorPoolKey: RemoteExecutorPoolKeyClass
|
|
38972
|
-
|
|
38973
|
-
|
|
38974
|
-
|
|
38975
|
-
|
|
38976
|
-
|
|
38977
|
-
|
|
38978
|
-
dataHubRemoteExecutorGlobalConfigKey: RemoteExecutorGlobalConfigKeyClass
|
|
38979
|
-
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
39445
|
+
incidentKey: IncidentKeyClass
|
|
39446
|
+
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
39447
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
39448
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
39449
|
+
datasetKey: DatasetKeyClass
|
|
39450
|
+
testKey: TestKeyClass
|
|
38980
39451
|
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
38981
|
-
|
|
38982
|
-
|
|
38983
|
-
|
|
39452
|
+
globalSettingsKey: GlobalSettingsKeyClass
|
|
39453
|
+
domainKey: DomainKeyClass
|
|
39454
|
+
postKey: PostKeyClass
|
|
39455
|
+
dataHubRemoteExecutorKey: RemoteExecutorKeyClass
|
|
39456
|
+
telemetryKey: TelemetryKeyClass
|
|
39457
|
+
dataHubRoleKey: DataHubRoleKeyClass
|
|
39458
|
+
subscriptionKey: SubscriptionKeyClass
|
|
39459
|
+
dataProcessKey: DataProcessKeyClass
|
|
39460
|
+
dataHubSecretKey: DataHubSecretKeyClass
|
|
39461
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
39462
|
+
usageFeatures: UsageFeaturesClass
|
|
39463
|
+
storageFeatures: StorageFeaturesClass
|
|
39464
|
+
lineageFeatures: LineageFeaturesClass
|
|
39465
|
+
costFeatures: CostFeaturesClass
|
|
39466
|
+
dataTypeInfo: DataTypeInfoClass
|
|
39467
|
+
dataTypeKey: DataTypeKeyClass
|
|
39468
|
+
monitorTimeseriesState: MonitorTimeseriesStateClass
|
|
38984
39469
|
monitorSuiteInfo: MonitorSuiteInfoClass
|
|
38985
39470
|
monitorInfo: MonitorInfoClass
|
|
38986
|
-
|
|
38987
|
-
|
|
38988
|
-
|
|
38989
|
-
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
38990
|
-
schemaProposals: SchemaProposalsClass
|
|
38991
|
-
schemaMetadata: SchemaMetadataClass
|
|
38992
|
-
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
38993
|
-
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
38994
|
-
telemetryClientId: TelemetryClientIdClass
|
|
38995
|
-
entityInferenceMetadata: EntityInferenceMetadataClass
|
|
38996
|
-
aiInferenceMetadata: AiInferenceMetadataClass
|
|
38997
|
-
containerProperties: ContainerPropertiesClass
|
|
38998
|
-
editableContainerProperties: EditableContainerPropertiesClass
|
|
38999
|
-
container: ContainerClass
|
|
39471
|
+
schemaFieldAliases: SchemaFieldAliasesClass
|
|
39472
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
39473
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
39000
39474
|
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
39001
|
-
|
|
39002
|
-
|
|
39475
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
39476
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
39477
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
39478
|
+
subscriptionInfo: SubscriptionInfoClass
|
|
39003
39479
|
incidentNotificationDetails: IncidentNotificationDetailsClass
|
|
39004
39480
|
incidentInfo: IncidentInfoClass
|
|
39481
|
+
incidentActivityEvent: IncidentActivityEventClass
|
|
39005
39482
|
incidentSource: IncidentSourceClass
|
|
39483
|
+
systemMetadata: SystemMetadataClass
|
|
39006
39484
|
batchTestRunEvent: BatchTestRunEventClass
|
|
39007
39485
|
testResults: TestResultsClass
|
|
39008
39486
|
testInfo: TestInfoClass
|
|
39009
|
-
|
|
39010
|
-
|
|
39011
|
-
|
|
39012
|
-
|
|
39013
|
-
|
|
39014
|
-
|
|
39015
|
-
|
|
39016
|
-
|
|
39017
|
-
|
|
39018
|
-
|
|
39019
|
-
|
|
39020
|
-
|
|
39021
|
-
|
|
39022
|
-
|
|
39023
|
-
|
|
39024
|
-
|
|
39025
|
-
|
|
39026
|
-
|
|
39027
|
-
|
|
39028
|
-
|
|
39029
|
-
|
|
39030
|
-
|
|
39031
|
-
|
|
39032
|
-
|
|
39033
|
-
|
|
39034
|
-
|
|
39035
|
-
|
|
39036
|
-
|
|
39037
|
-
|
|
39038
|
-
|
|
39039
|
-
|
|
39487
|
+
entityTypeKey: EntityTypeKeyClass
|
|
39488
|
+
entityTypeInfo: EntityTypeInfoClass
|
|
39489
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
39490
|
+
businessAttributes: BusinessAttributesClass
|
|
39491
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
39492
|
+
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
39493
|
+
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
39494
|
+
dataProductProperties: DataProductPropertiesClass
|
|
39495
|
+
dataProductKey: DataProductKeyClass
|
|
39496
|
+
cost: CostClass
|
|
39497
|
+
share: ShareClass
|
|
39498
|
+
incidentsSummary: IncidentsSummaryClass
|
|
39499
|
+
globalTags: GlobalTagsClass
|
|
39500
|
+
ownership: OwnershipClass
|
|
39501
|
+
institutionalMemory: InstitutionalMemoryClass
|
|
39502
|
+
anomaliesSummary: AnomaliesSummaryClass
|
|
39503
|
+
forms: FormsClass
|
|
39504
|
+
access: AccessClass
|
|
39505
|
+
browsePaths: BrowsePathsClass
|
|
39506
|
+
origin: OriginClass
|
|
39507
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
39508
|
+
operation: OperationClass
|
|
39509
|
+
displayProperties: DisplayPropertiesClass
|
|
39510
|
+
proposals: ProposalsClass
|
|
39511
|
+
browsePathsV2: BrowsePathsV2Class
|
|
39512
|
+
assertionsSummary: AssertionsSummaryClass
|
|
39513
|
+
dataTransformLogic: DataTransformLogicClass
|
|
39514
|
+
glossaryTerms: GlossaryTermsClass
|
|
39515
|
+
deprecation: DeprecationClass
|
|
39516
|
+
status: StatusClass
|
|
39517
|
+
versionProperties: VersionPropertiesClass
|
|
39518
|
+
subTypes: SubTypesClass
|
|
39519
|
+
inputFields: InputFieldsClass
|
|
39520
|
+
embed: EmbedClass
|
|
39521
|
+
siblings: SiblingsClass
|
|
39522
|
+
documentation: DocumentationClass
|
|
39523
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
39524
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
39525
|
+
dashboardInfo: DashboardInfoClass
|
|
39040
39526
|
versionSetProperties: VersionSetPropertiesClass
|
|
39041
|
-
|
|
39042
|
-
|
|
39043
|
-
assertionAnalyticsRunEvent: AssertionAnalyticsRunEventClass
|
|
39044
|
-
assertionInfo: AssertionInfoClass
|
|
39045
|
-
assertionDryRunEvent: AssertionDryRunEventClass
|
|
39046
|
-
assertionRunEvent: AssertionRunEventClass
|
|
39047
|
-
assertionSummary: AssertionSummaryClass
|
|
39048
|
-
linkPreviewInfo: LinkPreviewInfoClass
|
|
39049
|
-
constraintInfo: ConstraintInfoClass
|
|
39050
|
-
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
39051
|
-
formInfo: FormInfoClass
|
|
39052
|
-
postInfo: PostInfoClass
|
|
39053
|
-
globalSettingsInfo: GlobalSettingsInfoClass
|
|
39054
|
-
tagProperties: TagPropertiesClass
|
|
39055
|
-
dataTypeInfo: DataTypeInfoClass
|
|
39056
|
-
dataTypeKey: DataTypeKeyClass
|
|
39057
|
-
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
39058
|
-
dataHubRoleInfo: DataHubRoleInfoClass
|
|
39059
|
-
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
39060
|
-
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
39527
|
+
roleProperties: RolePropertiesClass
|
|
39528
|
+
actors: ActorsClass
|
|
39061
39529
|
dataJobInfo: DataJobInfoClass
|
|
39062
|
-
|
|
39530
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
39063
39531
|
versionInfo: VersionInfoClass
|
|
39532
|
+
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
39064
39533
|
dataJobInputOutput: DataJobInputOutputClass
|
|
39534
|
+
dataFlowInfo: DataFlowInfoClass
|
|
39065
39535
|
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
39066
39536
|
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
39067
|
-
|
|
39068
|
-
|
|
39069
|
-
|
|
39070
|
-
|
|
39537
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
39538
|
+
queryProperties: QueryPropertiesClass
|
|
39539
|
+
querySubjects: QuerySubjectsClass
|
|
39540
|
+
queryUsageFeatures: QueryUsageFeaturesClass
|
|
39541
|
+
dataHubRemoteExecutorPoolInfo: RemoteExecutorPoolInfoClass
|
|
39542
|
+
formNotifications: FormNotificationsClass
|
|
39543
|
+
actionRequestArchived: ActionRequestArchivedClass
|
|
39544
|
+
actionRequestInfo: ActionRequestInfoClass
|
|
39545
|
+
actionRequestStatus: ActionRequestStatusClass
|
|
39546
|
+
corpGroupSettings: CorpGroupSettingsClass
|
|
39071
39547
|
corpUserStatus: CorpUserStatusClass
|
|
39072
|
-
|
|
39548
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
39549
|
+
corpUserInfo: CorpUserInfoClass
|
|
39550
|
+
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
39073
39551
|
groupMembership: GroupMembershipClass
|
|
39074
|
-
inviteToken: InviteTokenClass
|
|
39075
|
-
corpGroupSettings: CorpGroupSettingsClass
|
|
39076
39552
|
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
39077
39553
|
corpUserSettings: CorpUserSettingsClass
|
|
39078
|
-
|
|
39079
|
-
|
|
39554
|
+
corpGroupInfo: CorpGroupInfoClass
|
|
39555
|
+
roleMembership: RoleMembershipClass
|
|
39080
39556
|
nativeGroupMembership: NativeGroupMembershipClass
|
|
39081
|
-
|
|
39082
|
-
|
|
39083
|
-
|
|
39084
|
-
structuredPropertySettings: StructuredPropertySettingsClass
|
|
39085
|
-
structuredPropertyKey: StructuredPropertyKeyClass
|
|
39086
|
-
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
39087
|
-
datasetProperties: DatasetPropertiesClass
|
|
39088
|
-
datasetDeprecation: DatasetDeprecationClass
|
|
39557
|
+
inviteToken: InviteTokenClass
|
|
39558
|
+
upstreamLineage: UpstreamLineageClass
|
|
39559
|
+
schemaFieldProfile: SchemaFieldProfileClass
|
|
39089
39560
|
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
39561
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
39562
|
+
datasetProperties: DatasetPropertiesClass
|
|
39090
39563
|
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
39091
|
-
|
|
39092
|
-
datasetProfile: DatasetProfileClass
|
|
39564
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
39093
39565
|
partitionsSummary: PartitionsSummaryClass
|
|
39094
|
-
upstreamLineage: UpstreamLineageClass
|
|
39095
|
-
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
39096
39566
|
viewProperties: ViewPropertiesClass
|
|
39097
|
-
|
|
39567
|
+
datasetProfile: DatasetProfileClass
|
|
39568
|
+
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
39569
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
39570
|
+
telemetryClientId: TelemetryClientIdClass
|
|
39571
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
39572
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
39573
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
39574
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
39575
|
+
applicationKey: ApplicationKeyClass
|
|
39576
|
+
applicationProperties: ApplicationPropertiesClass
|
|
39577
|
+
applications: ApplicationsClass
|
|
39578
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
39579
|
+
dataHubRemoteExecutorStatus: RemoteExecutorStatusClass
|
|
39580
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
39581
|
+
notebookContent: NotebookContentClass
|
|
39582
|
+
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
39583
|
+
notebookInfo: NotebookInfoClass
|
|
39584
|
+
assertionRunEvent: AssertionRunEventClass
|
|
39585
|
+
assertionRunSummary: AssertionRunSummaryClass
|
|
39586
|
+
assertionDryRunEvent: AssertionDryRunEventClass
|
|
39587
|
+
assertionActions: AssertionActionsClass
|
|
39588
|
+
assertionInferenceDetails: AssertionInferenceDetailsClass
|
|
39589
|
+
assertionInfo: AssertionInfoClass
|
|
39590
|
+
assertionAnalyticsRunEvent: AssertionAnalyticsRunEventClass
|
|
39591
|
+
linkPreviewInfo: LinkPreviewInfoClass
|
|
39592
|
+
dataContractProperties: DataContractPropertiesClass
|
|
39593
|
+
dataContractStatus: DataContractStatusClass
|
|
39594
|
+
dataProcessInfo: DataProcessInfoClass
|
|
39595
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
39596
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
39597
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
39598
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
39599
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
39600
|
+
domainProperties: DomainPropertiesClass
|
|
39601
|
+
domains: DomainsClass
|
|
39098
39602
|
dataHubActionInfo: DataHubActionInfoClass
|
|
39099
|
-
|
|
39100
|
-
|
|
39101
|
-
|
|
39603
|
+
dataHubActionStatus: DataHubActionStatusClass
|
|
39604
|
+
monitorAnomalyEvent: MonitorAnomalyEventClass
|
|
39605
|
+
chartQuery: ChartQueryClass
|
|
39606
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
39607
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
39608
|
+
chartInfo: ChartInfoClass
|
|
39609
|
+
dataHubMetricCubeEvent: DataHubMetricCubeEventClass
|
|
39610
|
+
dataHubMetricCubeDefinition: DataHubMetricCubeDefinitionClass
|
|
39611
|
+
constraintInfo: ConstraintInfoClass
|
|
39612
|
+
tagProperties: TagPropertiesClass
|
|
39102
39613
|
platformResourceKey: PlatformResourceKeyClass
|
|
39614
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
39615
|
+
dataHubRemoteExecutorPoolGlobalConfig: RemoteExecutorPoolGlobalConfigClass
|
|
39616
|
+
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
39617
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
39618
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
39619
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
39620
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
39621
|
+
formAssignmentStatus: FormAssignmentStatusClass
|
|
39622
|
+
formInfo: FormInfoClass
|
|
39623
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
39624
|
+
formSettings: FormSettingsClass
|
|
39103
39625
|
|
|
39104
39626
|
|
|
39105
39627
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
39106
|
-
'
|
|
39107
|
-
'dataProduct': DataProductKeyClass,
|
|
39108
|
-
'entityType': EntityTypeKeyClass,
|
|
39109
|
-
'test': TestKeyClass,
|
|
39110
|
-
'corpuser': CorpUserKeyClass,
|
|
39111
|
-
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
39112
|
-
'notebook': NotebookKeyClass,
|
|
39113
|
-
'container': ContainerKeyClass,
|
|
39114
|
-
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
39115
|
-
'subscription': SubscriptionKeyClass,
|
|
39116
|
-
'query': QueryKeyClass,
|
|
39117
|
-
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
39118
|
-
'chart': ChartKeyClass,
|
|
39119
|
-
'dataHubRetention': DataHubRetentionKeyClass,
|
|
39120
|
-
'dataHubSecret': DataHubSecretKeyClass,
|
|
39121
|
-
'recommendationModule': RecommendationModuleKeyClass,
|
|
39628
|
+
'structuredProperty': StructuredPropertyKeyClass,
|
|
39122
39629
|
'actionRequest': ActionRequestKeyClass,
|
|
39630
|
+
'role': RoleKeyClass,
|
|
39631
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
39632
|
+
'linkPreview': LinkPreviewKeyClass,
|
|
39633
|
+
'dataHubAction': DataHubActionKeyClass,
|
|
39123
39634
|
'corpGroup': CorpGroupKeyClass,
|
|
39124
|
-
'
|
|
39125
|
-
'incident': IncidentKeyClass,
|
|
39126
|
-
'dataContract': DataContractKeyClass,
|
|
39127
|
-
'form': FormKeyClass,
|
|
39128
|
-
'tag': TagKeyClass,
|
|
39129
|
-
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
39635
|
+
'mlFeature': MLFeatureKeyClass,
|
|
39130
39636
|
'inviteToken': InviteTokenKeyClass,
|
|
39637
|
+
'dataHubStepState': DataHubStepStateKeyClass,
|
|
39131
39638
|
'dataHubPersona': DataHubPersonaKeyClass,
|
|
39639
|
+
'dataContract': DataContractKeyClass,
|
|
39640
|
+
'dataHubConnection': DataHubConnectionKeyClass,
|
|
39641
|
+
'recommendationModule': RecommendationModuleKeyClass,
|
|
39642
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
39643
|
+
'constraint': ConstraintKeyClass,
|
|
39644
|
+
'monitor': MonitorKeyClass,
|
|
39645
|
+
'corpuser': CorpUserKeyClass,
|
|
39646
|
+
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
39647
|
+
'container': ContainerKeyClass,
|
|
39132
39648
|
'schemaField': SchemaFieldKeyClass,
|
|
39133
|
-
'
|
|
39649
|
+
'notebook': NotebookKeyClass,
|
|
39650
|
+
'mlModel': MLModelKeyClass,
|
|
39651
|
+
'dataHubRemoteExecutorGlobalConfig': RemoteExecutorGlobalConfigKeyClass,
|
|
39652
|
+
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
39653
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
39654
|
+
'chart': ChartKeyClass,
|
|
39655
|
+
'assertion': AssertionKeyClass,
|
|
39656
|
+
'dataJob': DataJobKeyClass,
|
|
39134
39657
|
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
39658
|
+
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
39659
|
+
'query': QueryKeyClass,
|
|
39660
|
+
'versionSet': VersionSetKeyClass,
|
|
39135
39661
|
'dataHubMetricCube': DataHubMetricCubeKeyClass,
|
|
39136
|
-
'dataFlow': DataFlowKeyClass,
|
|
39137
|
-
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
39138
39662
|
'dataPlatform': DataPlatformKeyClass,
|
|
39139
|
-
'constraint': ConstraintKeyClass,
|
|
39140
|
-
'dataHubView': DataHubViewKeyClass,
|
|
39141
|
-
'dashboard': DashboardKeyClass,
|
|
39142
39663
|
'ownershipType': OwnershipTypeKeyClass,
|
|
39143
|
-
'
|
|
39144
|
-
'
|
|
39145
|
-
'mlModelGroup': MLModelGroupKeyClass,
|
|
39146
|
-
'dataset': DatasetKeyClass,
|
|
39147
|
-
'domain': DomainKeyClass,
|
|
39148
|
-
'role': RoleKeyClass,
|
|
39149
|
-
'monitorSuite': MonitorSuiteKeyClass,
|
|
39150
|
-
'dataJob': DataJobKeyClass,
|
|
39664
|
+
'glossaryTerm': GlossaryTermKeyClass,
|
|
39665
|
+
'form': FormKeyClass,
|
|
39151
39666
|
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
39152
|
-
'
|
|
39153
|
-
'dataHubRemoteExecutor': RemoteExecutorKeyClass,
|
|
39154
|
-
'dataProcess': DataProcessKeyClass,
|
|
39155
|
-
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
39667
|
+
'dataFlow': DataFlowKeyClass,
|
|
39156
39668
|
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
39157
|
-
'
|
|
39669
|
+
'monitorSuite': MonitorSuiteKeyClass,
|
|
39670
|
+
'dataHubView': DataHubViewKeyClass,
|
|
39158
39671
|
'glossaryNode': GlossaryNodeKeyClass,
|
|
39159
|
-
'
|
|
39160
|
-
'
|
|
39161
|
-
'glossaryTerm': GlossaryTermKeyClass,
|
|
39672
|
+
'tag': TagKeyClass,
|
|
39673
|
+
'dashboard': DashboardKeyClass,
|
|
39162
39674
|
'dataHubRemoteExecutorPool': RemoteExecutorPoolKeyClass,
|
|
39163
|
-
'
|
|
39164
|
-
'
|
|
39165
|
-
'
|
|
39166
|
-
'
|
|
39167
|
-
'
|
|
39168
|
-
'
|
|
39169
|
-
'dataHubStepState': DataHubStepStateKeyClass,
|
|
39675
|
+
'incident': IncidentKeyClass,
|
|
39676
|
+
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
39677
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
39678
|
+
'dataHubRetention': DataHubRetentionKeyClass,
|
|
39679
|
+
'dataset': DatasetKeyClass,
|
|
39680
|
+
'test': TestKeyClass,
|
|
39170
39681
|
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
39171
|
-
'
|
|
39682
|
+
'globalSettings': GlobalSettingsKeyClass,
|
|
39683
|
+
'domain': DomainKeyClass,
|
|
39684
|
+
'post': PostKeyClass,
|
|
39685
|
+
'dataHubRemoteExecutor': RemoteExecutorKeyClass,
|
|
39686
|
+
'telemetry': TelemetryKeyClass,
|
|
39687
|
+
'dataHubRole': DataHubRoleKeyClass,
|
|
39688
|
+
'subscription': SubscriptionKeyClass,
|
|
39689
|
+
'dataProcess': DataProcessKeyClass,
|
|
39690
|
+
'dataHubSecret': DataHubSecretKeyClass,
|
|
39691
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
39172
39692
|
'dataType': DataTypeKeyClass,
|
|
39173
|
-
'
|
|
39693
|
+
'entityType': EntityTypeKeyClass,
|
|
39694
|
+
'businessAttribute': BusinessAttributeKeyClass,
|
|
39695
|
+
'dataProduct': DataProductKeyClass,
|
|
39696
|
+
'application': ApplicationKeyClass,
|
|
39174
39697
|
'platformResource': PlatformResourceKeyClass
|
|
39175
39698
|
}
|
|
39176
39699
|
|
|
39177
39700
|
ENTITY_TYPE_NAMES: List[str] = [
|
|
39178
|
-
'
|
|
39179
|
-
'dataProduct',
|
|
39180
|
-
'entityType',
|
|
39181
|
-
'test',
|
|
39182
|
-
'corpuser',
|
|
39183
|
-
'dataPlatformInstance',
|
|
39184
|
-
'notebook',
|
|
39185
|
-
'container',
|
|
39186
|
-
'mlFeatureTable',
|
|
39187
|
-
'subscription',
|
|
39188
|
-
'query',
|
|
39189
|
-
'dataHubPolicy',
|
|
39190
|
-
'chart',
|
|
39191
|
-
'dataHubRetention',
|
|
39192
|
-
'dataHubSecret',
|
|
39193
|
-
'recommendationModule',
|
|
39701
|
+
'structuredProperty',
|
|
39194
39702
|
'actionRequest',
|
|
39703
|
+
'role',
|
|
39704
|
+
'dataProcessInstance',
|
|
39705
|
+
'linkPreview',
|
|
39706
|
+
'dataHubAction',
|
|
39195
39707
|
'corpGroup',
|
|
39196
|
-
'
|
|
39197
|
-
'incident',
|
|
39198
|
-
'dataContract',
|
|
39199
|
-
'form',
|
|
39200
|
-
'tag',
|
|
39201
|
-
'mlPrimaryKey',
|
|
39708
|
+
'mlFeature',
|
|
39202
39709
|
'inviteToken',
|
|
39710
|
+
'dataHubStepState',
|
|
39203
39711
|
'dataHubPersona',
|
|
39712
|
+
'dataContract',
|
|
39713
|
+
'dataHubConnection',
|
|
39714
|
+
'recommendationModule',
|
|
39715
|
+
'dataHubPolicy',
|
|
39716
|
+
'constraint',
|
|
39717
|
+
'monitor',
|
|
39718
|
+
'corpuser',
|
|
39719
|
+
'mlModelDeployment',
|
|
39720
|
+
'container',
|
|
39204
39721
|
'schemaField',
|
|
39205
|
-
'
|
|
39722
|
+
'notebook',
|
|
39723
|
+
'mlModel',
|
|
39724
|
+
'dataHubRemoteExecutorGlobalConfig',
|
|
39725
|
+
'dataPlatformInstance',
|
|
39726
|
+
'dataHubIngestionSource',
|
|
39727
|
+
'chart',
|
|
39728
|
+
'assertion',
|
|
39729
|
+
'dataJob',
|
|
39206
39730
|
'dataHubExecutionRequest',
|
|
39731
|
+
'dataHubAccessToken',
|
|
39732
|
+
'query',
|
|
39733
|
+
'versionSet',
|
|
39207
39734
|
'dataHubMetricCube',
|
|
39208
|
-
'dataFlow',
|
|
39209
|
-
'dataProcessInstance',
|
|
39210
39735
|
'dataPlatform',
|
|
39211
|
-
'constraint',
|
|
39212
|
-
'dataHubView',
|
|
39213
|
-
'dashboard',
|
|
39214
39736
|
'ownershipType',
|
|
39215
|
-
'
|
|
39216
|
-
'
|
|
39217
|
-
'mlModelGroup',
|
|
39218
|
-
'dataset',
|
|
39219
|
-
'domain',
|
|
39220
|
-
'role',
|
|
39221
|
-
'monitorSuite',
|
|
39222
|
-
'dataJob',
|
|
39737
|
+
'glossaryTerm',
|
|
39738
|
+
'form',
|
|
39223
39739
|
'dataHubOpenAPISchema',
|
|
39224
|
-
'
|
|
39225
|
-
'dataHubRemoteExecutor',
|
|
39226
|
-
'dataProcess',
|
|
39227
|
-
'dataHubIngestionSource',
|
|
39740
|
+
'dataFlow',
|
|
39228
39741
|
'dataHubUpgrade',
|
|
39229
|
-
'
|
|
39742
|
+
'monitorSuite',
|
|
39743
|
+
'dataHubView',
|
|
39230
39744
|
'glossaryNode',
|
|
39231
|
-
'
|
|
39232
|
-
'
|
|
39233
|
-
'glossaryTerm',
|
|
39745
|
+
'tag',
|
|
39746
|
+
'dashboard',
|
|
39234
39747
|
'dataHubRemoteExecutorPool',
|
|
39235
|
-
'
|
|
39236
|
-
'
|
|
39237
|
-
'
|
|
39238
|
-
'
|
|
39239
|
-
'
|
|
39240
|
-
'
|
|
39241
|
-
'dataHubStepState',
|
|
39748
|
+
'incident',
|
|
39749
|
+
'mlFeatureTable',
|
|
39750
|
+
'mlPrimaryKey',
|
|
39751
|
+
'dataHubRetention',
|
|
39752
|
+
'dataset',
|
|
39753
|
+
'test',
|
|
39242
39754
|
'erModelRelationship',
|
|
39243
|
-
'
|
|
39755
|
+
'globalSettings',
|
|
39756
|
+
'domain',
|
|
39757
|
+
'post',
|
|
39758
|
+
'dataHubRemoteExecutor',
|
|
39759
|
+
'telemetry',
|
|
39760
|
+
'dataHubRole',
|
|
39761
|
+
'subscription',
|
|
39762
|
+
'dataProcess',
|
|
39763
|
+
'dataHubSecret',
|
|
39764
|
+
'mlModelGroup',
|
|
39244
39765
|
'dataType',
|
|
39245
|
-
'
|
|
39766
|
+
'entityType',
|
|
39767
|
+
'businessAttribute',
|
|
39768
|
+
'dataProduct',
|
|
39769
|
+
'application',
|
|
39246
39770
|
'platformResource'
|
|
39247
39771
|
]
|
|
39248
39772
|
EntityTypeName = Literal[
|
|
39249
|
-
'
|
|
39250
|
-
'dataProduct',
|
|
39251
|
-
'entityType',
|
|
39252
|
-
'test',
|
|
39253
|
-
'corpuser',
|
|
39254
|
-
'dataPlatformInstance',
|
|
39255
|
-
'notebook',
|
|
39256
|
-
'container',
|
|
39257
|
-
'mlFeatureTable',
|
|
39258
|
-
'subscription',
|
|
39259
|
-
'query',
|
|
39260
|
-
'dataHubPolicy',
|
|
39261
|
-
'chart',
|
|
39262
|
-
'dataHubRetention',
|
|
39263
|
-
'dataHubSecret',
|
|
39264
|
-
'recommendationModule',
|
|
39773
|
+
'structuredProperty',
|
|
39265
39774
|
'actionRequest',
|
|
39775
|
+
'role',
|
|
39776
|
+
'dataProcessInstance',
|
|
39777
|
+
'linkPreview',
|
|
39778
|
+
'dataHubAction',
|
|
39266
39779
|
'corpGroup',
|
|
39267
|
-
'
|
|
39268
|
-
'incident',
|
|
39269
|
-
'dataContract',
|
|
39270
|
-
'form',
|
|
39271
|
-
'tag',
|
|
39272
|
-
'mlPrimaryKey',
|
|
39780
|
+
'mlFeature',
|
|
39273
39781
|
'inviteToken',
|
|
39782
|
+
'dataHubStepState',
|
|
39274
39783
|
'dataHubPersona',
|
|
39784
|
+
'dataContract',
|
|
39785
|
+
'dataHubConnection',
|
|
39786
|
+
'recommendationModule',
|
|
39787
|
+
'dataHubPolicy',
|
|
39788
|
+
'constraint',
|
|
39789
|
+
'monitor',
|
|
39790
|
+
'corpuser',
|
|
39791
|
+
'mlModelDeployment',
|
|
39792
|
+
'container',
|
|
39275
39793
|
'schemaField',
|
|
39276
|
-
'
|
|
39794
|
+
'notebook',
|
|
39795
|
+
'mlModel',
|
|
39796
|
+
'dataHubRemoteExecutorGlobalConfig',
|
|
39797
|
+
'dataPlatformInstance',
|
|
39798
|
+
'dataHubIngestionSource',
|
|
39799
|
+
'chart',
|
|
39800
|
+
'assertion',
|
|
39801
|
+
'dataJob',
|
|
39277
39802
|
'dataHubExecutionRequest',
|
|
39803
|
+
'dataHubAccessToken',
|
|
39804
|
+
'query',
|
|
39805
|
+
'versionSet',
|
|
39278
39806
|
'dataHubMetricCube',
|
|
39279
|
-
'dataFlow',
|
|
39280
|
-
'dataProcessInstance',
|
|
39281
39807
|
'dataPlatform',
|
|
39282
|
-
'constraint',
|
|
39283
|
-
'dataHubView',
|
|
39284
|
-
'dashboard',
|
|
39285
39808
|
'ownershipType',
|
|
39286
|
-
'
|
|
39287
|
-
'
|
|
39288
|
-
'mlModelGroup',
|
|
39289
|
-
'dataset',
|
|
39290
|
-
'domain',
|
|
39291
|
-
'role',
|
|
39292
|
-
'monitorSuite',
|
|
39293
|
-
'dataJob',
|
|
39809
|
+
'glossaryTerm',
|
|
39810
|
+
'form',
|
|
39294
39811
|
'dataHubOpenAPISchema',
|
|
39295
|
-
'
|
|
39296
|
-
'dataHubRemoteExecutor',
|
|
39297
|
-
'dataProcess',
|
|
39298
|
-
'dataHubIngestionSource',
|
|
39812
|
+
'dataFlow',
|
|
39299
39813
|
'dataHubUpgrade',
|
|
39300
|
-
'
|
|
39814
|
+
'monitorSuite',
|
|
39815
|
+
'dataHubView',
|
|
39301
39816
|
'glossaryNode',
|
|
39302
|
-
'
|
|
39303
|
-
'
|
|
39304
|
-
'glossaryTerm',
|
|
39817
|
+
'tag',
|
|
39818
|
+
'dashboard',
|
|
39305
39819
|
'dataHubRemoteExecutorPool',
|
|
39306
|
-
'
|
|
39307
|
-
'
|
|
39308
|
-
'
|
|
39309
|
-
'
|
|
39310
|
-
'
|
|
39311
|
-
'
|
|
39312
|
-
'dataHubStepState',
|
|
39820
|
+
'incident',
|
|
39821
|
+
'mlFeatureTable',
|
|
39822
|
+
'mlPrimaryKey',
|
|
39823
|
+
'dataHubRetention',
|
|
39824
|
+
'dataset',
|
|
39825
|
+
'test',
|
|
39313
39826
|
'erModelRelationship',
|
|
39314
|
-
'
|
|
39827
|
+
'globalSettings',
|
|
39828
|
+
'domain',
|
|
39829
|
+
'post',
|
|
39830
|
+
'dataHubRemoteExecutor',
|
|
39831
|
+
'telemetry',
|
|
39832
|
+
'dataHubRole',
|
|
39833
|
+
'subscription',
|
|
39834
|
+
'dataProcess',
|
|
39835
|
+
'dataHubSecret',
|
|
39836
|
+
'mlModelGroup',
|
|
39315
39837
|
'dataType',
|
|
39316
|
-
'
|
|
39838
|
+
'entityType',
|
|
39839
|
+
'businessAttribute',
|
|
39840
|
+
'dataProduct',
|
|
39841
|
+
'application',
|
|
39317
39842
|
'platformResource'
|
|
39318
39843
|
]
|
|
39319
39844
|
|