acryl-datahub-cloud 0.3.11.1rc7__py3-none-any.whl → 0.3.12rc1__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/_sdk_extras/__init__.py +17 -2
- acryl_datahub_cloud/_sdk_extras/assertion.py +603 -8
- acryl_datahub_cloud/_sdk_extras/assertion_input.py +1074 -0
- acryl_datahub_cloud/_sdk_extras/assertions_client.py +705 -11
- acryl_datahub_cloud/_sdk_extras/entities/__init__.py +0 -0
- acryl_datahub_cloud/_sdk_extras/entities/assertion.py +425 -0
- acryl_datahub_cloud/_sdk_extras/entities/monitor.py +291 -0
- acryl_datahub_cloud/_sdk_extras/entities/subscription.py +84 -0
- acryl_datahub_cloud/_sdk_extras/errors.py +34 -0
- acryl_datahub_cloud/_sdk_extras/resolver_client.py +39 -0
- acryl_datahub_cloud/_sdk_extras/subscription_client.py +565 -0
- acryl_datahub_cloud/action_request/action_request_owner_source.py +36 -6
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +2023 -2023
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -2
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +4 -0
- acryl_datahub_cloud/metadata/schema.avsc +24889 -25252
- acryl_datahub_cloud/metadata/schema_classes.py +1133 -1008
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +189 -201
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +9 -1
- acryl_datahub_cloud/metadata/schemas/{AssertionSummary.avsc → AssertionRunSummary.avsc} +2 -2
- acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/FormKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +27 -0
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +21 -9
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +12 -4
- acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +1 -1
- 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-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/METADATA +46 -46
- {acryl_datahub_cloud-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/RECORD +37 -28
- {acryl_datahub_cloud-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12rc1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.11.1rc7.dist-info → acryl_datahub_cloud-0.3.12rc1.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
|
|
@@ -2132,15 +2151,17 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2132
2151
|
asserteeUrn: str,
|
|
2133
2152
|
assertionUrn: str,
|
|
2134
2153
|
status: Union[str, "AssertionRunStatusClass"],
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2154
|
+
creator: Union[None, str]=None,
|
|
2155
|
+
asserteeDomains: Union[None, List[str]]=None,
|
|
2156
|
+
asserteeDataProducts: Union[None, List[str]]=None,
|
|
2157
|
+
asserteeTags: Union[None, List[str]]=None,
|
|
2158
|
+
asserteeGlossaryTerms: Union[None, List[str]]=None,
|
|
2159
|
+
asserteeOwners: Union[None, List[str]]=None,
|
|
2160
|
+
asserteeDataPlatform: Union[None, str]=None,
|
|
2161
|
+
asserteeDataPlatformInstance: Union[None, str]=None,
|
|
2162
|
+
asserteeSchemaFieldGlossaryTerms: Union[None, List[str]]=None,
|
|
2163
|
+
asserteeSchemaFieldTags: Union[None, List[str]]=None,
|
|
2141
2164
|
result: Union[None, "AssertionResultClass"]=None,
|
|
2142
|
-
runtimeContext: Union[None, Dict[str, str]]=None,
|
|
2143
|
-
batchSpec: Union[None, "BatchSpecClass"]=None,
|
|
2144
2165
|
eventGranularity: Union[None, "TimeWindowSizeClass"]=None,
|
|
2145
2166
|
partitionSpec: Optional[Union["PartitionSpecClass", None]]=None,
|
|
2146
2167
|
messageId: Union[None, str]=None,
|
|
@@ -2148,20 +2169,22 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2148
2169
|
super().__init__()
|
|
2149
2170
|
|
|
2150
2171
|
self.type = type
|
|
2151
|
-
self.
|
|
2152
|
-
self.
|
|
2153
|
-
self.
|
|
2154
|
-
self.
|
|
2155
|
-
self.
|
|
2156
|
-
self.
|
|
2172
|
+
self.creator = creator
|
|
2173
|
+
self.asserteeDomains = asserteeDomains
|
|
2174
|
+
self.asserteeDataProducts = asserteeDataProducts
|
|
2175
|
+
self.asserteeTags = asserteeTags
|
|
2176
|
+
self.asserteeGlossaryTerms = asserteeGlossaryTerms
|
|
2177
|
+
self.asserteeOwners = asserteeOwners
|
|
2178
|
+
self.asserteeDataPlatform = asserteeDataPlatform
|
|
2179
|
+
self.asserteeDataPlatformInstance = asserteeDataPlatformInstance
|
|
2180
|
+
self.asserteeSchemaFieldGlossaryTerms = asserteeSchemaFieldGlossaryTerms
|
|
2181
|
+
self.asserteeSchemaFieldTags = asserteeSchemaFieldTags
|
|
2157
2182
|
self.timestampMillis = timestampMillis
|
|
2158
2183
|
self.runId = runId
|
|
2159
2184
|
self.asserteeUrn = asserteeUrn
|
|
2160
2185
|
self.assertionUrn = assertionUrn
|
|
2161
2186
|
self.status = status
|
|
2162
2187
|
self.result = result
|
|
2163
|
-
self.runtimeContext = runtimeContext
|
|
2164
|
-
self.batchSpec = batchSpec
|
|
2165
2188
|
self.eventGranularity = eventGranularity
|
|
2166
2189
|
if partitionSpec is None:
|
|
2167
2190
|
# default: {'partition': 'FULL_TABLE_SNAPSHOT', 'type': 'FULL_TABLE', 'timePartition': None}
|
|
@@ -2172,20 +2195,22 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2172
2195
|
|
|
2173
2196
|
def _restore_defaults(self) -> None:
|
|
2174
2197
|
self.type = AssertionTypeClass.DATASET
|
|
2175
|
-
self.
|
|
2176
|
-
self.
|
|
2177
|
-
self.
|
|
2178
|
-
self.
|
|
2179
|
-
self.
|
|
2180
|
-
self.
|
|
2198
|
+
self.creator = self.RECORD_SCHEMA.fields_dict["creator"].default
|
|
2199
|
+
self.asserteeDomains = self.RECORD_SCHEMA.fields_dict["asserteeDomains"].default
|
|
2200
|
+
self.asserteeDataProducts = self.RECORD_SCHEMA.fields_dict["asserteeDataProducts"].default
|
|
2201
|
+
self.asserteeTags = self.RECORD_SCHEMA.fields_dict["asserteeTags"].default
|
|
2202
|
+
self.asserteeGlossaryTerms = self.RECORD_SCHEMA.fields_dict["asserteeGlossaryTerms"].default
|
|
2203
|
+
self.asserteeOwners = self.RECORD_SCHEMA.fields_dict["asserteeOwners"].default
|
|
2204
|
+
self.asserteeDataPlatform = self.RECORD_SCHEMA.fields_dict["asserteeDataPlatform"].default
|
|
2205
|
+
self.asserteeDataPlatformInstance = self.RECORD_SCHEMA.fields_dict["asserteeDataPlatformInstance"].default
|
|
2206
|
+
self.asserteeSchemaFieldGlossaryTerms = self.RECORD_SCHEMA.fields_dict["asserteeSchemaFieldGlossaryTerms"].default
|
|
2207
|
+
self.asserteeSchemaFieldTags = self.RECORD_SCHEMA.fields_dict["asserteeSchemaFieldTags"].default
|
|
2181
2208
|
self.timestampMillis = int()
|
|
2182
2209
|
self.runId = str()
|
|
2183
2210
|
self.asserteeUrn = str()
|
|
2184
2211
|
self.assertionUrn = str()
|
|
2185
2212
|
self.status = AssertionRunStatusClass.COMPLETE
|
|
2186
2213
|
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
2214
|
self.eventGranularity = self.RECORD_SCHEMA.fields_dict["eventGranularity"].default
|
|
2190
2215
|
self.partitionSpec = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["partitionSpec"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["partitionSpec"].type)
|
|
2191
2216
|
self.messageId = self.RECORD_SCHEMA.fields_dict["messageId"].default
|
|
@@ -2202,64 +2227,104 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2202
2227
|
|
|
2203
2228
|
|
|
2204
2229
|
@property
|
|
2205
|
-
def
|
|
2230
|
+
def creator(self) -> Union[None, str]:
|
|
2231
|
+
"""Creator of the assertion."""
|
|
2232
|
+
return self._inner_dict.get('creator') # type: ignore
|
|
2233
|
+
|
|
2234
|
+
@creator.setter
|
|
2235
|
+
def creator(self, value: Union[None, str]) -> None:
|
|
2236
|
+
self._inner_dict['creator'] = value
|
|
2237
|
+
|
|
2238
|
+
|
|
2239
|
+
@property
|
|
2240
|
+
def asserteeDomains(self) -> Union[None, List[str]]:
|
|
2206
2241
|
"""The Domains attached to the entity's parent Asset"""
|
|
2207
|
-
return self._inner_dict.get('
|
|
2242
|
+
return self._inner_dict.get('asserteeDomains') # type: ignore
|
|
2208
2243
|
|
|
2209
|
-
@
|
|
2210
|
-
def
|
|
2211
|
-
self._inner_dict['
|
|
2244
|
+
@asserteeDomains.setter
|
|
2245
|
+
def asserteeDomains(self, value: Union[None, List[str]]) -> None:
|
|
2246
|
+
self._inner_dict['asserteeDomains'] = value
|
|
2212
2247
|
|
|
2213
2248
|
|
|
2214
2249
|
@property
|
|
2215
|
-
def
|
|
2250
|
+
def asserteeDataProducts(self) -> Union[None, List[str]]:
|
|
2216
2251
|
"""The Data Products attached to the entity's parent Asset"""
|
|
2217
|
-
return self._inner_dict.get('
|
|
2252
|
+
return self._inner_dict.get('asserteeDataProducts') # type: ignore
|
|
2218
2253
|
|
|
2219
|
-
@
|
|
2220
|
-
def
|
|
2221
|
-
self._inner_dict['
|
|
2254
|
+
@asserteeDataProducts.setter
|
|
2255
|
+
def asserteeDataProducts(self, value: Union[None, List[str]]) -> None:
|
|
2256
|
+
self._inner_dict['asserteeDataProducts'] = value
|
|
2222
2257
|
|
|
2223
2258
|
|
|
2224
2259
|
@property
|
|
2225
|
-
def
|
|
2260
|
+
def asserteeTags(self) -> Union[None, List[str]]:
|
|
2226
2261
|
"""The Tags attached to the entity's parent Asset"""
|
|
2227
|
-
return self._inner_dict.get('
|
|
2262
|
+
return self._inner_dict.get('asserteeTags') # type: ignore
|
|
2228
2263
|
|
|
2229
|
-
@
|
|
2230
|
-
def
|
|
2231
|
-
self._inner_dict['
|
|
2264
|
+
@asserteeTags.setter
|
|
2265
|
+
def asserteeTags(self, value: Union[None, List[str]]) -> None:
|
|
2266
|
+
self._inner_dict['asserteeTags'] = value
|
|
2232
2267
|
|
|
2233
2268
|
|
|
2234
2269
|
@property
|
|
2235
|
-
def
|
|
2270
|
+
def asserteeGlossaryTerms(self) -> Union[None, List[str]]:
|
|
2271
|
+
"""The Glossary Terms attached to the entity's parent Asset"""
|
|
2272
|
+
return self._inner_dict.get('asserteeGlossaryTerms') # type: ignore
|
|
2273
|
+
|
|
2274
|
+
@asserteeGlossaryTerms.setter
|
|
2275
|
+
def asserteeGlossaryTerms(self, value: Union[None, List[str]]) -> None:
|
|
2276
|
+
self._inner_dict['asserteeGlossaryTerms'] = value
|
|
2277
|
+
|
|
2278
|
+
|
|
2279
|
+
@property
|
|
2280
|
+
def asserteeOwners(self) -> Union[None, List[str]]:
|
|
2236
2281
|
"""Parent Owner URN, e.g. urn:li:corpuser:ldap, urn:li:corpGroup:group_name, and urn:li:multiProduct:mp_name
|
|
2237
2282
|
(Caveat: only corpuser is currently supported in the frontend.)"""
|
|
2238
|
-
return self._inner_dict.get('
|
|
2283
|
+
return self._inner_dict.get('asserteeOwners') # type: ignore
|
|
2239
2284
|
|
|
2240
|
-
@
|
|
2241
|
-
def
|
|
2242
|
-
self._inner_dict['
|
|
2285
|
+
@asserteeOwners.setter
|
|
2286
|
+
def asserteeOwners(self, value: Union[None, List[str]]) -> None:
|
|
2287
|
+
self._inner_dict['asserteeOwners'] = value
|
|
2243
2288
|
|
|
2244
2289
|
|
|
2245
2290
|
@property
|
|
2246
|
-
def
|
|
2291
|
+
def asserteeDataPlatform(self) -> Union[None, str]:
|
|
2247
2292
|
"""Data Platform for parent"""
|
|
2248
|
-
return self._inner_dict.get('
|
|
2293
|
+
return self._inner_dict.get('asserteeDataPlatform') # type: ignore
|
|
2249
2294
|
|
|
2250
|
-
@
|
|
2251
|
-
def
|
|
2252
|
-
self._inner_dict['
|
|
2295
|
+
@asserteeDataPlatform.setter
|
|
2296
|
+
def asserteeDataPlatform(self, value: Union[None, str]) -> None:
|
|
2297
|
+
self._inner_dict['asserteeDataPlatform'] = value
|
|
2253
2298
|
|
|
2254
2299
|
|
|
2255
2300
|
@property
|
|
2256
|
-
def
|
|
2301
|
+
def asserteeDataPlatformInstance(self) -> Union[None, str]:
|
|
2257
2302
|
"""Instance of the parent's data platform (e.g. db instance)"""
|
|
2258
|
-
return self._inner_dict.get('
|
|
2303
|
+
return self._inner_dict.get('asserteeDataPlatformInstance') # type: ignore
|
|
2259
2304
|
|
|
2260
|
-
@
|
|
2261
|
-
def
|
|
2262
|
-
self._inner_dict['
|
|
2305
|
+
@asserteeDataPlatformInstance.setter
|
|
2306
|
+
def asserteeDataPlatformInstance(self, value: Union[None, str]) -> None:
|
|
2307
|
+
self._inner_dict['asserteeDataPlatformInstance'] = value
|
|
2308
|
+
|
|
2309
|
+
|
|
2310
|
+
@property
|
|
2311
|
+
def asserteeSchemaFieldGlossaryTerms(self) -> Union[None, List[str]]:
|
|
2312
|
+
"""Only provided if the Assertion is of type 'Column'. The glossary terms associated with the target column."""
|
|
2313
|
+
return self._inner_dict.get('asserteeSchemaFieldGlossaryTerms') # type: ignore
|
|
2314
|
+
|
|
2315
|
+
@asserteeSchemaFieldGlossaryTerms.setter
|
|
2316
|
+
def asserteeSchemaFieldGlossaryTerms(self, value: Union[None, List[str]]) -> None:
|
|
2317
|
+
self._inner_dict['asserteeSchemaFieldGlossaryTerms'] = value
|
|
2318
|
+
|
|
2319
|
+
|
|
2320
|
+
@property
|
|
2321
|
+
def asserteeSchemaFieldTags(self) -> Union[None, List[str]]:
|
|
2322
|
+
"""Only provided if the Assertion is of type 'Column'. The tags associated with the target column."""
|
|
2323
|
+
return self._inner_dict.get('asserteeSchemaFieldTags') # type: ignore
|
|
2324
|
+
|
|
2325
|
+
@asserteeSchemaFieldTags.setter
|
|
2326
|
+
def asserteeSchemaFieldTags(self, value: Union[None, List[str]]) -> None:
|
|
2327
|
+
self._inner_dict['asserteeSchemaFieldTags'] = value
|
|
2263
2328
|
|
|
2264
2329
|
|
|
2265
2330
|
@property
|
|
@@ -2322,26 +2387,6 @@ class AssertionAnalyticsRunEventClass(_Aspect):
|
|
|
2322
2387
|
self._inner_dict['result'] = value
|
|
2323
2388
|
|
|
2324
2389
|
|
|
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
2390
|
@property
|
|
2346
2391
|
def eventGranularity(self) -> Union[None, "TimeWindowSizeClass"]:
|
|
2347
2392
|
"""Granularity of the event if applicable"""
|
|
@@ -3497,292 +3542,14 @@ class AssertionRunStatusClass(object):
|
|
|
3497
3542
|
|
|
3498
3543
|
|
|
3499
3544
|
|
|
3500
|
-
class
|
|
3501
|
-
"""The source of an assertion"""
|
|
3502
|
-
|
|
3503
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionSource")
|
|
3504
|
-
def __init__(self,
|
|
3505
|
-
type: Union[str, "AssertionSourceTypeClass"],
|
|
3506
|
-
created: Union[None, "AuditStampClass"]=None,
|
|
3507
|
-
):
|
|
3508
|
-
super().__init__()
|
|
3509
|
-
|
|
3510
|
-
self.type = type
|
|
3511
|
-
self.created = created
|
|
3512
|
-
|
|
3513
|
-
def _restore_defaults(self) -> None:
|
|
3514
|
-
self.type = AssertionSourceTypeClass.NATIVE
|
|
3515
|
-
self.created = self.RECORD_SCHEMA.fields_dict["created"].default
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
@property
|
|
3519
|
-
def type(self) -> Union[str, "AssertionSourceTypeClass"]:
|
|
3520
|
-
"""The type of the Assertion Source"""
|
|
3521
|
-
return self._inner_dict.get('type') # type: ignore
|
|
3522
|
-
|
|
3523
|
-
@type.setter
|
|
3524
|
-
def type(self, value: Union[str, "AssertionSourceTypeClass"]) -> None:
|
|
3525
|
-
self._inner_dict['type'] = value
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
@property
|
|
3529
|
-
def created(self) -> Union[None, "AuditStampClass"]:
|
|
3530
|
-
"""The time at which the assertion was initially created and the author who created it.
|
|
3531
|
-
This field is only present for Native assertions created after this field was introduced."""
|
|
3532
|
-
return self._inner_dict.get('created') # type: ignore
|
|
3533
|
-
|
|
3534
|
-
@created.setter
|
|
3535
|
-
def created(self, value: Union[None, "AuditStampClass"]) -> None:
|
|
3536
|
-
self._inner_dict['created'] = value
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
class AssertionSourceTypeClass(object):
|
|
3540
|
-
# No docs available.
|
|
3541
|
-
|
|
3542
|
-
NATIVE = "NATIVE"
|
|
3543
|
-
"""The assertion was defined natively on DataHub by a user.
|
|
3544
|
-
DataHub Cloud only"""
|
|
3545
|
-
|
|
3546
|
-
EXTERNAL = "EXTERNAL"
|
|
3547
|
-
"""The assertion was defined and managed externally of DataHub."""
|
|
3548
|
-
|
|
3549
|
-
INFERRED = "INFERRED"
|
|
3550
|
-
"""The assertion was inferred, e.g. from offline AI / ML models.
|
|
3551
|
-
DataHub Cloud only"""
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
class AssertionStdAggregationClass(object):
|
|
3556
|
-
"""The function that is applied to the aggregation input (schema, rows, column values) before evaluating an operator."""
|
|
3557
|
-
|
|
3558
|
-
ROW_COUNT = "ROW_COUNT"
|
|
3559
|
-
"""Assertion is applied on number of rows."""
|
|
3560
|
-
|
|
3561
|
-
COLUMNS = "COLUMNS"
|
|
3562
|
-
"""Assertion is applied on all columns."""
|
|
3563
|
-
|
|
3564
|
-
COLUMN_COUNT = "COLUMN_COUNT"
|
|
3565
|
-
"""Assertion is applied on number of columns."""
|
|
3566
|
-
|
|
3567
|
-
IDENTITY = "IDENTITY"
|
|
3568
|
-
"""Assertion is applied on individual column value. (No aggregation)"""
|
|
3569
|
-
|
|
3570
|
-
MEAN = "MEAN"
|
|
3571
|
-
"""Assertion is applied on column mean"""
|
|
3572
|
-
|
|
3573
|
-
MEDIAN = "MEDIAN"
|
|
3574
|
-
"""Assertion is applied on column median"""
|
|
3575
|
-
|
|
3576
|
-
UNIQUE_COUNT = "UNIQUE_COUNT"
|
|
3577
|
-
"""Assertion is applied on number of distinct values in column"""
|
|
3578
|
-
|
|
3579
|
-
UNIQUE_PROPORTION = "UNIQUE_PROPORTION"
|
|
3580
|
-
"""Assertion is applied on proportion of distinct values in column"""
|
|
3581
|
-
|
|
3582
|
-
UNIQUE_PROPOTION = "UNIQUE_PROPOTION"
|
|
3583
|
-
"""Assertion is applied on proportion of distinct values in column
|
|
3584
|
-
|
|
3585
|
-
Deprecated! Use UNIQUE_PROPORTION instead."""
|
|
3586
|
-
|
|
3587
|
-
NULL_COUNT = "NULL_COUNT"
|
|
3588
|
-
"""Assertion is applied on number of null values in column"""
|
|
3589
|
-
|
|
3590
|
-
NULL_PROPORTION = "NULL_PROPORTION"
|
|
3591
|
-
"""Assertion is applied on proportion of null values in column"""
|
|
3592
|
-
|
|
3593
|
-
STDDEV = "STDDEV"
|
|
3594
|
-
"""Assertion is applied on column std deviation"""
|
|
3595
|
-
|
|
3596
|
-
MIN = "MIN"
|
|
3597
|
-
"""Assertion is applied on column min"""
|
|
3598
|
-
|
|
3599
|
-
MAX = "MAX"
|
|
3600
|
-
"""Assertion is applied on column std deviation"""
|
|
3601
|
-
|
|
3602
|
-
SUM = "SUM"
|
|
3603
|
-
"""Assertion is applied on column sum"""
|
|
3604
|
-
|
|
3605
|
-
_NATIVE_ = "_NATIVE_"
|
|
3606
|
-
"""Other"""
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
class AssertionStdOperatorClass(object):
|
|
3611
|
-
"""A boolean operator that is applied on the input to an assertion, after an aggregation function has been applied."""
|
|
3612
|
-
|
|
3613
|
-
BETWEEN = "BETWEEN"
|
|
3614
|
-
"""Value being asserted is between min_value and max_value. Requires 'minValue' & 'maxValue' parameters."""
|
|
3615
|
-
|
|
3616
|
-
LESS_THAN = "LESS_THAN"
|
|
3617
|
-
"""Value being asserted is less than a max value. Requires 'value' parameter."""
|
|
3618
|
-
|
|
3619
|
-
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO"
|
|
3620
|
-
"""Value being asserted is less than or equal to some value. Requires 'value' parameter."""
|
|
3621
|
-
|
|
3622
|
-
GREATER_THAN = "GREATER_THAN"
|
|
3623
|
-
"""Value being asserted is greater than some value. Requires 'value' parameter."""
|
|
3624
|
-
|
|
3625
|
-
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO"
|
|
3626
|
-
"""Value being asserted is greater than or equal to some value. Requires 'value' parameter."""
|
|
3627
|
-
|
|
3628
|
-
EQUAL_TO = "EQUAL_TO"
|
|
3629
|
-
"""Value being asserted is equal to value. Requires 'value' parameter."""
|
|
3630
|
-
|
|
3631
|
-
NOT_EQUAL_TO = "NOT_EQUAL_TO"
|
|
3632
|
-
"""Value being asserted is not equal to value. Requires 'value' parameter."""
|
|
3633
|
-
|
|
3634
|
-
NULL = "NULL"
|
|
3635
|
-
"""Value being asserted is null. Requires no parameters."""
|
|
3636
|
-
|
|
3637
|
-
NOT_NULL = "NOT_NULL"
|
|
3638
|
-
"""Value being asserted is not null. Requires no parameters."""
|
|
3639
|
-
|
|
3640
|
-
CONTAIN = "CONTAIN"
|
|
3641
|
-
"""Value being asserted contains value. Requires 'value' parameter."""
|
|
3642
|
-
|
|
3643
|
-
END_WITH = "END_WITH"
|
|
3644
|
-
"""Value being asserted ends with value. Requires 'value' parameter."""
|
|
3645
|
-
|
|
3646
|
-
START_WITH = "START_WITH"
|
|
3647
|
-
"""Value being asserted starts with value. Requires 'value' parameter."""
|
|
3648
|
-
|
|
3649
|
-
REGEX_MATCH = "REGEX_MATCH"
|
|
3650
|
-
"""Value being asserted matches the regex value. Requires 'value' parameter."""
|
|
3651
|
-
|
|
3652
|
-
IN = "IN"
|
|
3653
|
-
"""Value being asserted is one of the array values. Requires 'value' parameter."""
|
|
3654
|
-
|
|
3655
|
-
NOT_IN = "NOT_IN"
|
|
3656
|
-
"""Value being asserted is not in one of the array values. Requires 'value' parameter."""
|
|
3657
|
-
|
|
3658
|
-
IS_TRUE = "IS_TRUE"
|
|
3659
|
-
"""Value being asserted is true. Requires no parameters."""
|
|
3660
|
-
|
|
3661
|
-
IS_FALSE = "IS_FALSE"
|
|
3662
|
-
"""Value being asserted is false. Requires no parameters."""
|
|
3663
|
-
|
|
3664
|
-
_NATIVE_ = "_NATIVE_"
|
|
3665
|
-
"""Other"""
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
class AssertionStdParameterClass(DictWrapper):
|
|
3670
|
-
"""Single parameter for AssertionStdOperators."""
|
|
3671
|
-
|
|
3672
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionStdParameter")
|
|
3673
|
-
def __init__(self,
|
|
3674
|
-
value: str,
|
|
3675
|
-
type: Union[str, "AssertionStdParameterTypeClass"],
|
|
3676
|
-
):
|
|
3677
|
-
super().__init__()
|
|
3678
|
-
|
|
3679
|
-
self.value = value
|
|
3680
|
-
self.type = type
|
|
3681
|
-
|
|
3682
|
-
def _restore_defaults(self) -> None:
|
|
3683
|
-
self.value = str()
|
|
3684
|
-
self.type = AssertionStdParameterTypeClass.STRING
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
@property
|
|
3688
|
-
def value(self) -> str:
|
|
3689
|
-
"""The parameter value"""
|
|
3690
|
-
return self._inner_dict.get('value') # type: ignore
|
|
3691
|
-
|
|
3692
|
-
@value.setter
|
|
3693
|
-
def value(self, value: str) -> None:
|
|
3694
|
-
self._inner_dict['value'] = value
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
@property
|
|
3698
|
-
def type(self) -> Union[str, "AssertionStdParameterTypeClass"]:
|
|
3699
|
-
"""The type of the parameter"""
|
|
3700
|
-
return self._inner_dict.get('type') # type: ignore
|
|
3701
|
-
|
|
3702
|
-
@type.setter
|
|
3703
|
-
def type(self, value: Union[str, "AssertionStdParameterTypeClass"]) -> None:
|
|
3704
|
-
self._inner_dict['type'] = value
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
class AssertionStdParameterTypeClass(object):
|
|
3708
|
-
# No docs available.
|
|
3709
|
-
|
|
3710
|
-
STRING = "STRING"
|
|
3711
|
-
"""A string value"""
|
|
3712
|
-
|
|
3713
|
-
NUMBER = "NUMBER"
|
|
3714
|
-
"""A numeric value"""
|
|
3715
|
-
|
|
3716
|
-
LIST = "LIST"
|
|
3717
|
-
"""A list of values. When used, value should be formatted as a serialized JSON array."""
|
|
3718
|
-
|
|
3719
|
-
SET = "SET"
|
|
3720
|
-
"""A set of values. When used, value should be formatted as a serialized JSON array."""
|
|
3721
|
-
|
|
3722
|
-
UNKNOWN = "UNKNOWN"
|
|
3723
|
-
"""A value of unknown type"""
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
class AssertionStdParametersClass(DictWrapper):
|
|
3728
|
-
"""Parameters for AssertionStdOperators."""
|
|
3729
|
-
|
|
3730
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionStdParameters")
|
|
3731
|
-
def __init__(self,
|
|
3732
|
-
value: Union[None, "AssertionStdParameterClass"]=None,
|
|
3733
|
-
maxValue: Union[None, "AssertionStdParameterClass"]=None,
|
|
3734
|
-
minValue: Union[None, "AssertionStdParameterClass"]=None,
|
|
3735
|
-
):
|
|
3736
|
-
super().__init__()
|
|
3737
|
-
|
|
3738
|
-
self.value = value
|
|
3739
|
-
self.maxValue = maxValue
|
|
3740
|
-
self.minValue = minValue
|
|
3741
|
-
|
|
3742
|
-
def _restore_defaults(self) -> None:
|
|
3743
|
-
self.value = self.RECORD_SCHEMA.fields_dict["value"].default
|
|
3744
|
-
self.maxValue = self.RECORD_SCHEMA.fields_dict["maxValue"].default
|
|
3745
|
-
self.minValue = self.RECORD_SCHEMA.fields_dict["minValue"].default
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
@property
|
|
3749
|
-
def value(self) -> Union[None, "AssertionStdParameterClass"]:
|
|
3750
|
-
"""The value parameter of an assertion"""
|
|
3751
|
-
return self._inner_dict.get('value') # type: ignore
|
|
3752
|
-
|
|
3753
|
-
@value.setter
|
|
3754
|
-
def value(self, value: Union[None, "AssertionStdParameterClass"]) -> None:
|
|
3755
|
-
self._inner_dict['value'] = value
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
@property
|
|
3759
|
-
def maxValue(self) -> Union[None, "AssertionStdParameterClass"]:
|
|
3760
|
-
"""The maxValue parameter of an assertion"""
|
|
3761
|
-
return self._inner_dict.get('maxValue') # type: ignore
|
|
3762
|
-
|
|
3763
|
-
@maxValue.setter
|
|
3764
|
-
def maxValue(self, value: Union[None, "AssertionStdParameterClass"]) -> None:
|
|
3765
|
-
self._inner_dict['maxValue'] = value
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
@property
|
|
3769
|
-
def minValue(self) -> Union[None, "AssertionStdParameterClass"]:
|
|
3770
|
-
"""The minValue parameter of an assertion"""
|
|
3771
|
-
return self._inner_dict.get('minValue') # type: ignore
|
|
3772
|
-
|
|
3773
|
-
@minValue.setter
|
|
3774
|
-
def minValue(self, value: Union[None, "AssertionStdParameterClass"]) -> None:
|
|
3775
|
-
self._inner_dict['minValue'] = value
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
class AssertionSummaryClass(_Aspect):
|
|
3545
|
+
class AssertionRunSummaryClass(_Aspect):
|
|
3779
3546
|
"""Derived.
|
|
3780
3547
|
Tracks the latest summary details of an assertion."""
|
|
3781
3548
|
|
|
3782
3549
|
|
|
3783
|
-
ASPECT_NAME = '
|
|
3550
|
+
ASPECT_NAME = 'assertionRunSummary'
|
|
3784
3551
|
ASPECT_INFO = {}
|
|
3785
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.
|
|
3552
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionRunSummary")
|
|
3786
3553
|
|
|
3787
3554
|
def __init__(self,
|
|
3788
3555
|
lastFailedAtMillis: Union[None, int]=None,
|
|
@@ -3831,6 +3598,284 @@ class AssertionSummaryClass(_Aspect):
|
|
|
3831
3598
|
self._inner_dict['lastPassedAtMillis'] = value
|
|
3832
3599
|
|
|
3833
3600
|
|
|
3601
|
+
class AssertionSourceClass(DictWrapper):
|
|
3602
|
+
"""The source of an assertion"""
|
|
3603
|
+
|
|
3604
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionSource")
|
|
3605
|
+
def __init__(self,
|
|
3606
|
+
type: Union[str, "AssertionSourceTypeClass"],
|
|
3607
|
+
created: Union[None, "AuditStampClass"]=None,
|
|
3608
|
+
):
|
|
3609
|
+
super().__init__()
|
|
3610
|
+
|
|
3611
|
+
self.type = type
|
|
3612
|
+
self.created = created
|
|
3613
|
+
|
|
3614
|
+
def _restore_defaults(self) -> None:
|
|
3615
|
+
self.type = AssertionSourceTypeClass.NATIVE
|
|
3616
|
+
self.created = self.RECORD_SCHEMA.fields_dict["created"].default
|
|
3617
|
+
|
|
3618
|
+
|
|
3619
|
+
@property
|
|
3620
|
+
def type(self) -> Union[str, "AssertionSourceTypeClass"]:
|
|
3621
|
+
"""The type of the Assertion Source"""
|
|
3622
|
+
return self._inner_dict.get('type') # type: ignore
|
|
3623
|
+
|
|
3624
|
+
@type.setter
|
|
3625
|
+
def type(self, value: Union[str, "AssertionSourceTypeClass"]) -> None:
|
|
3626
|
+
self._inner_dict['type'] = value
|
|
3627
|
+
|
|
3628
|
+
|
|
3629
|
+
@property
|
|
3630
|
+
def created(self) -> Union[None, "AuditStampClass"]:
|
|
3631
|
+
"""The time at which the assertion was initially created and the author who created it.
|
|
3632
|
+
This field is only present for Native assertions created after this field was introduced."""
|
|
3633
|
+
return self._inner_dict.get('created') # type: ignore
|
|
3634
|
+
|
|
3635
|
+
@created.setter
|
|
3636
|
+
def created(self, value: Union[None, "AuditStampClass"]) -> None:
|
|
3637
|
+
self._inner_dict['created'] = value
|
|
3638
|
+
|
|
3639
|
+
|
|
3640
|
+
class AssertionSourceTypeClass(object):
|
|
3641
|
+
# No docs available.
|
|
3642
|
+
|
|
3643
|
+
NATIVE = "NATIVE"
|
|
3644
|
+
"""The assertion was defined natively on DataHub by a user.
|
|
3645
|
+
DataHub Cloud only"""
|
|
3646
|
+
|
|
3647
|
+
EXTERNAL = "EXTERNAL"
|
|
3648
|
+
"""The assertion was defined and managed externally of DataHub."""
|
|
3649
|
+
|
|
3650
|
+
INFERRED = "INFERRED"
|
|
3651
|
+
"""The assertion was inferred, e.g. from offline AI / ML models.
|
|
3652
|
+
DataHub Cloud only"""
|
|
3653
|
+
|
|
3654
|
+
|
|
3655
|
+
|
|
3656
|
+
class AssertionStdAggregationClass(object):
|
|
3657
|
+
"""The function that is applied to the aggregation input (schema, rows, column values) before evaluating an operator."""
|
|
3658
|
+
|
|
3659
|
+
ROW_COUNT = "ROW_COUNT"
|
|
3660
|
+
"""Assertion is applied on number of rows."""
|
|
3661
|
+
|
|
3662
|
+
COLUMNS = "COLUMNS"
|
|
3663
|
+
"""Assertion is applied on all columns."""
|
|
3664
|
+
|
|
3665
|
+
COLUMN_COUNT = "COLUMN_COUNT"
|
|
3666
|
+
"""Assertion is applied on number of columns."""
|
|
3667
|
+
|
|
3668
|
+
IDENTITY = "IDENTITY"
|
|
3669
|
+
"""Assertion is applied on individual column value. (No aggregation)"""
|
|
3670
|
+
|
|
3671
|
+
MEAN = "MEAN"
|
|
3672
|
+
"""Assertion is applied on column mean"""
|
|
3673
|
+
|
|
3674
|
+
MEDIAN = "MEDIAN"
|
|
3675
|
+
"""Assertion is applied on column median"""
|
|
3676
|
+
|
|
3677
|
+
UNIQUE_COUNT = "UNIQUE_COUNT"
|
|
3678
|
+
"""Assertion is applied on number of distinct values in column"""
|
|
3679
|
+
|
|
3680
|
+
UNIQUE_PROPORTION = "UNIQUE_PROPORTION"
|
|
3681
|
+
"""Assertion is applied on proportion of distinct values in column"""
|
|
3682
|
+
|
|
3683
|
+
UNIQUE_PROPOTION = "UNIQUE_PROPOTION"
|
|
3684
|
+
"""Assertion is applied on proportion of distinct values in column
|
|
3685
|
+
|
|
3686
|
+
Deprecated! Use UNIQUE_PROPORTION instead."""
|
|
3687
|
+
|
|
3688
|
+
NULL_COUNT = "NULL_COUNT"
|
|
3689
|
+
"""Assertion is applied on number of null values in column"""
|
|
3690
|
+
|
|
3691
|
+
NULL_PROPORTION = "NULL_PROPORTION"
|
|
3692
|
+
"""Assertion is applied on proportion of null values in column"""
|
|
3693
|
+
|
|
3694
|
+
STDDEV = "STDDEV"
|
|
3695
|
+
"""Assertion is applied on column std deviation"""
|
|
3696
|
+
|
|
3697
|
+
MIN = "MIN"
|
|
3698
|
+
"""Assertion is applied on column min"""
|
|
3699
|
+
|
|
3700
|
+
MAX = "MAX"
|
|
3701
|
+
"""Assertion is applied on column std deviation"""
|
|
3702
|
+
|
|
3703
|
+
SUM = "SUM"
|
|
3704
|
+
"""Assertion is applied on column sum"""
|
|
3705
|
+
|
|
3706
|
+
_NATIVE_ = "_NATIVE_"
|
|
3707
|
+
"""Other"""
|
|
3708
|
+
|
|
3709
|
+
|
|
3710
|
+
|
|
3711
|
+
class AssertionStdOperatorClass(object):
|
|
3712
|
+
"""A boolean operator that is applied on the input to an assertion, after an aggregation function has been applied."""
|
|
3713
|
+
|
|
3714
|
+
BETWEEN = "BETWEEN"
|
|
3715
|
+
"""Value being asserted is between min_value and max_value. Requires 'minValue' & 'maxValue' parameters."""
|
|
3716
|
+
|
|
3717
|
+
LESS_THAN = "LESS_THAN"
|
|
3718
|
+
"""Value being asserted is less than a max value. Requires 'value' parameter."""
|
|
3719
|
+
|
|
3720
|
+
LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO"
|
|
3721
|
+
"""Value being asserted is less than or equal to some value. Requires 'value' parameter."""
|
|
3722
|
+
|
|
3723
|
+
GREATER_THAN = "GREATER_THAN"
|
|
3724
|
+
"""Value being asserted is greater than some value. Requires 'value' parameter."""
|
|
3725
|
+
|
|
3726
|
+
GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO"
|
|
3727
|
+
"""Value being asserted is greater than or equal to some value. Requires 'value' parameter."""
|
|
3728
|
+
|
|
3729
|
+
EQUAL_TO = "EQUAL_TO"
|
|
3730
|
+
"""Value being asserted is equal to value. Requires 'value' parameter."""
|
|
3731
|
+
|
|
3732
|
+
NOT_EQUAL_TO = "NOT_EQUAL_TO"
|
|
3733
|
+
"""Value being asserted is not equal to value. Requires 'value' parameter."""
|
|
3734
|
+
|
|
3735
|
+
NULL = "NULL"
|
|
3736
|
+
"""Value being asserted is null. Requires no parameters."""
|
|
3737
|
+
|
|
3738
|
+
NOT_NULL = "NOT_NULL"
|
|
3739
|
+
"""Value being asserted is not null. Requires no parameters."""
|
|
3740
|
+
|
|
3741
|
+
CONTAIN = "CONTAIN"
|
|
3742
|
+
"""Value being asserted contains value. Requires 'value' parameter."""
|
|
3743
|
+
|
|
3744
|
+
END_WITH = "END_WITH"
|
|
3745
|
+
"""Value being asserted ends with value. Requires 'value' parameter."""
|
|
3746
|
+
|
|
3747
|
+
START_WITH = "START_WITH"
|
|
3748
|
+
"""Value being asserted starts with value. Requires 'value' parameter."""
|
|
3749
|
+
|
|
3750
|
+
REGEX_MATCH = "REGEX_MATCH"
|
|
3751
|
+
"""Value being asserted matches the regex value. Requires 'value' parameter."""
|
|
3752
|
+
|
|
3753
|
+
IN = "IN"
|
|
3754
|
+
"""Value being asserted is one of the array values. Requires 'value' parameter."""
|
|
3755
|
+
|
|
3756
|
+
NOT_IN = "NOT_IN"
|
|
3757
|
+
"""Value being asserted is not in one of the array values. Requires 'value' parameter."""
|
|
3758
|
+
|
|
3759
|
+
IS_TRUE = "IS_TRUE"
|
|
3760
|
+
"""Value being asserted is true. Requires no parameters."""
|
|
3761
|
+
|
|
3762
|
+
IS_FALSE = "IS_FALSE"
|
|
3763
|
+
"""Value being asserted is false. Requires no parameters."""
|
|
3764
|
+
|
|
3765
|
+
_NATIVE_ = "_NATIVE_"
|
|
3766
|
+
"""Other"""
|
|
3767
|
+
|
|
3768
|
+
|
|
3769
|
+
|
|
3770
|
+
class AssertionStdParameterClass(DictWrapper):
|
|
3771
|
+
"""Single parameter for AssertionStdOperators."""
|
|
3772
|
+
|
|
3773
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionStdParameter")
|
|
3774
|
+
def __init__(self,
|
|
3775
|
+
value: str,
|
|
3776
|
+
type: Union[str, "AssertionStdParameterTypeClass"],
|
|
3777
|
+
):
|
|
3778
|
+
super().__init__()
|
|
3779
|
+
|
|
3780
|
+
self.value = value
|
|
3781
|
+
self.type = type
|
|
3782
|
+
|
|
3783
|
+
def _restore_defaults(self) -> None:
|
|
3784
|
+
self.value = str()
|
|
3785
|
+
self.type = AssertionStdParameterTypeClass.STRING
|
|
3786
|
+
|
|
3787
|
+
|
|
3788
|
+
@property
|
|
3789
|
+
def value(self) -> str:
|
|
3790
|
+
"""The parameter value"""
|
|
3791
|
+
return self._inner_dict.get('value') # type: ignore
|
|
3792
|
+
|
|
3793
|
+
@value.setter
|
|
3794
|
+
def value(self, value: str) -> None:
|
|
3795
|
+
self._inner_dict['value'] = value
|
|
3796
|
+
|
|
3797
|
+
|
|
3798
|
+
@property
|
|
3799
|
+
def type(self) -> Union[str, "AssertionStdParameterTypeClass"]:
|
|
3800
|
+
"""The type of the parameter"""
|
|
3801
|
+
return self._inner_dict.get('type') # type: ignore
|
|
3802
|
+
|
|
3803
|
+
@type.setter
|
|
3804
|
+
def type(self, value: Union[str, "AssertionStdParameterTypeClass"]) -> None:
|
|
3805
|
+
self._inner_dict['type'] = value
|
|
3806
|
+
|
|
3807
|
+
|
|
3808
|
+
class AssertionStdParameterTypeClass(object):
|
|
3809
|
+
# No docs available.
|
|
3810
|
+
|
|
3811
|
+
STRING = "STRING"
|
|
3812
|
+
"""A string value"""
|
|
3813
|
+
|
|
3814
|
+
NUMBER = "NUMBER"
|
|
3815
|
+
"""A numeric value"""
|
|
3816
|
+
|
|
3817
|
+
LIST = "LIST"
|
|
3818
|
+
"""A list of values. When used, value should be formatted as a serialized JSON array."""
|
|
3819
|
+
|
|
3820
|
+
SET = "SET"
|
|
3821
|
+
"""A set of values. When used, value should be formatted as a serialized JSON array."""
|
|
3822
|
+
|
|
3823
|
+
UNKNOWN = "UNKNOWN"
|
|
3824
|
+
"""A value of unknown type"""
|
|
3825
|
+
|
|
3826
|
+
|
|
3827
|
+
|
|
3828
|
+
class AssertionStdParametersClass(DictWrapper):
|
|
3829
|
+
"""Parameters for AssertionStdOperators."""
|
|
3830
|
+
|
|
3831
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionStdParameters")
|
|
3832
|
+
def __init__(self,
|
|
3833
|
+
value: Union[None, "AssertionStdParameterClass"]=None,
|
|
3834
|
+
maxValue: Union[None, "AssertionStdParameterClass"]=None,
|
|
3835
|
+
minValue: Union[None, "AssertionStdParameterClass"]=None,
|
|
3836
|
+
):
|
|
3837
|
+
super().__init__()
|
|
3838
|
+
|
|
3839
|
+
self.value = value
|
|
3840
|
+
self.maxValue = maxValue
|
|
3841
|
+
self.minValue = minValue
|
|
3842
|
+
|
|
3843
|
+
def _restore_defaults(self) -> None:
|
|
3844
|
+
self.value = self.RECORD_SCHEMA.fields_dict["value"].default
|
|
3845
|
+
self.maxValue = self.RECORD_SCHEMA.fields_dict["maxValue"].default
|
|
3846
|
+
self.minValue = self.RECORD_SCHEMA.fields_dict["minValue"].default
|
|
3847
|
+
|
|
3848
|
+
|
|
3849
|
+
@property
|
|
3850
|
+
def value(self) -> Union[None, "AssertionStdParameterClass"]:
|
|
3851
|
+
"""The value parameter of an assertion"""
|
|
3852
|
+
return self._inner_dict.get('value') # type: ignore
|
|
3853
|
+
|
|
3854
|
+
@value.setter
|
|
3855
|
+
def value(self, value: Union[None, "AssertionStdParameterClass"]) -> None:
|
|
3856
|
+
self._inner_dict['value'] = value
|
|
3857
|
+
|
|
3858
|
+
|
|
3859
|
+
@property
|
|
3860
|
+
def maxValue(self) -> Union[None, "AssertionStdParameterClass"]:
|
|
3861
|
+
"""The maxValue parameter of an assertion"""
|
|
3862
|
+
return self._inner_dict.get('maxValue') # type: ignore
|
|
3863
|
+
|
|
3864
|
+
@maxValue.setter
|
|
3865
|
+
def maxValue(self, value: Union[None, "AssertionStdParameterClass"]) -> None:
|
|
3866
|
+
self._inner_dict['maxValue'] = value
|
|
3867
|
+
|
|
3868
|
+
|
|
3869
|
+
@property
|
|
3870
|
+
def minValue(self) -> Union[None, "AssertionStdParameterClass"]:
|
|
3871
|
+
"""The minValue parameter of an assertion"""
|
|
3872
|
+
return self._inner_dict.get('minValue') # type: ignore
|
|
3873
|
+
|
|
3874
|
+
@minValue.setter
|
|
3875
|
+
def minValue(self, value: Union[None, "AssertionStdParameterClass"]) -> None:
|
|
3876
|
+
self._inner_dict['minValue'] = value
|
|
3877
|
+
|
|
3878
|
+
|
|
3834
3879
|
class AssertionTypeClass(object):
|
|
3835
3880
|
"""Type of assertion. Assertion types can evolve to span Datasets, Flows (Pipelines), Models, Features etc."""
|
|
3836
3881
|
|
|
@@ -4287,7 +4332,7 @@ class FieldMetricAssertionClass(DictWrapper):
|
|
|
4287
4332
|
|
|
4288
4333
|
@property
|
|
4289
4334
|
def field(self) -> "SchemaFieldSpecClass":
|
|
4290
|
-
"""The field under evaluation"""
|
|
4335
|
+
"""The field path under evaluation"""
|
|
4291
4336
|
return self._inner_dict.get('field') # type: ignore
|
|
4292
4337
|
|
|
4293
4338
|
@field.setter
|
|
@@ -8789,6 +8834,7 @@ class OperationClass(_Aspect):
|
|
|
8789
8834
|
sourceType: Union[None, Union[str, "OperationSourceTypeClass"]]=None,
|
|
8790
8835
|
source: Union[None, "OperationSourceDetailsClass"]=None,
|
|
8791
8836
|
customProperties: Union[None, Dict[str, str]]=None,
|
|
8837
|
+
queries: Union[None, List[str]]=None,
|
|
8792
8838
|
):
|
|
8793
8839
|
super().__init__()
|
|
8794
8840
|
|
|
@@ -8809,6 +8855,7 @@ class OperationClass(_Aspect):
|
|
|
8809
8855
|
self.source = source
|
|
8810
8856
|
self.customProperties = customProperties
|
|
8811
8857
|
self.lastUpdatedTimestamp = lastUpdatedTimestamp
|
|
8858
|
+
self.queries = queries
|
|
8812
8859
|
|
|
8813
8860
|
def _restore_defaults(self) -> None:
|
|
8814
8861
|
self.timestampMillis = int()
|
|
@@ -8824,6 +8871,7 @@ class OperationClass(_Aspect):
|
|
|
8824
8871
|
self.source = self.RECORD_SCHEMA.fields_dict["source"].default
|
|
8825
8872
|
self.customProperties = self.RECORD_SCHEMA.fields_dict["customProperties"].default
|
|
8826
8873
|
self.lastUpdatedTimestamp = int()
|
|
8874
|
+
self.queries = self.RECORD_SCHEMA.fields_dict["queries"].default
|
|
8827
8875
|
|
|
8828
8876
|
|
|
8829
8877
|
@property
|
|
@@ -8957,6 +9005,16 @@ class OperationClass(_Aspect):
|
|
|
8957
9005
|
self._inner_dict['lastUpdatedTimestamp'] = value
|
|
8958
9006
|
|
|
8959
9007
|
|
|
9008
|
+
@property
|
|
9009
|
+
def queries(self) -> Union[None, List[str]]:
|
|
9010
|
+
"""Which queries were used in this operation."""
|
|
9011
|
+
return self._inner_dict.get('queries') # type: ignore
|
|
9012
|
+
|
|
9013
|
+
@queries.setter
|
|
9014
|
+
def queries(self, value: Union[None, List[str]]) -> None:
|
|
9015
|
+
self._inner_dict['queries'] = value
|
|
9016
|
+
|
|
9017
|
+
|
|
8960
9018
|
class OperationSourceDetailsClass(DictWrapper):
|
|
8961
9019
|
"""Additional details about the origins of a captured source-platform Operation."""
|
|
8962
9020
|
|
|
@@ -18439,6 +18497,35 @@ class FormInfoClass(_Aspect):
|
|
|
18439
18497
|
self._inner_dict['lastModified'] = value
|
|
18440
18498
|
|
|
18441
18499
|
|
|
18500
|
+
class FormNotificationSettingsClass(DictWrapper):
|
|
18501
|
+
# No docs available.
|
|
18502
|
+
|
|
18503
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.form.FormNotificationSettings")
|
|
18504
|
+
def __init__(self,
|
|
18505
|
+
notifyAssigneesOnPublish: Optional[bool]=None,
|
|
18506
|
+
):
|
|
18507
|
+
super().__init__()
|
|
18508
|
+
|
|
18509
|
+
if notifyAssigneesOnPublish is None:
|
|
18510
|
+
# default: False
|
|
18511
|
+
self.notifyAssigneesOnPublish = self.RECORD_SCHEMA.fields_dict["notifyAssigneesOnPublish"].default
|
|
18512
|
+
else:
|
|
18513
|
+
self.notifyAssigneesOnPublish = notifyAssigneesOnPublish
|
|
18514
|
+
|
|
18515
|
+
def _restore_defaults(self) -> None:
|
|
18516
|
+
self.notifyAssigneesOnPublish = self.RECORD_SCHEMA.fields_dict["notifyAssigneesOnPublish"].default
|
|
18517
|
+
|
|
18518
|
+
|
|
18519
|
+
@property
|
|
18520
|
+
def notifyAssigneesOnPublish(self) -> bool:
|
|
18521
|
+
"""Whether to notify the assignees of the form when it is published."""
|
|
18522
|
+
return self._inner_dict.get('notifyAssigneesOnPublish') # type: ignore
|
|
18523
|
+
|
|
18524
|
+
@notifyAssigneesOnPublish.setter
|
|
18525
|
+
def notifyAssigneesOnPublish(self, value: bool) -> None:
|
|
18526
|
+
self._inner_dict['notifyAssigneesOnPublish'] = value
|
|
18527
|
+
|
|
18528
|
+
|
|
18442
18529
|
class FormPromptClass(DictWrapper):
|
|
18443
18530
|
"""A prompt to present to the user to encourage filling out metadata"""
|
|
18444
18531
|
|
|
@@ -18605,6 +18692,35 @@ class FormPromptTypeClass(object):
|
|
|
18605
18692
|
|
|
18606
18693
|
|
|
18607
18694
|
|
|
18695
|
+
class FormSettingsClass(_Aspect):
|
|
18696
|
+
# No docs available.
|
|
18697
|
+
|
|
18698
|
+
|
|
18699
|
+
ASPECT_NAME = 'formSettings'
|
|
18700
|
+
ASPECT_INFO = {}
|
|
18701
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.form.FormSettings")
|
|
18702
|
+
|
|
18703
|
+
def __init__(self,
|
|
18704
|
+
notificationSettings: "FormNotificationSettingsClass",
|
|
18705
|
+
):
|
|
18706
|
+
super().__init__()
|
|
18707
|
+
|
|
18708
|
+
self.notificationSettings = notificationSettings
|
|
18709
|
+
|
|
18710
|
+
def _restore_defaults(self) -> None:
|
|
18711
|
+
self.notificationSettings = FormNotificationSettingsClass._construct_with_defaults()
|
|
18712
|
+
|
|
18713
|
+
|
|
18714
|
+
@property
|
|
18715
|
+
def notificationSettings(self) -> "FormNotificationSettingsClass":
|
|
18716
|
+
"""Notification settings for a form"""
|
|
18717
|
+
return self._inner_dict.get('notificationSettings') # type: ignore
|
|
18718
|
+
|
|
18719
|
+
@notificationSettings.setter
|
|
18720
|
+
def notificationSettings(self, value: "FormNotificationSettingsClass") -> None:
|
|
18721
|
+
self._inner_dict['notificationSettings'] = value
|
|
18722
|
+
|
|
18723
|
+
|
|
18608
18724
|
class FormStateClass(object):
|
|
18609
18725
|
# No docs available.
|
|
18610
18726
|
|
|
@@ -21682,7 +21798,7 @@ class AssertionKeyClass(_Aspect):
|
|
|
21682
21798
|
|
|
21683
21799
|
|
|
21684
21800
|
ASPECT_NAME = 'assertionKey'
|
|
21685
|
-
ASPECT_INFO = {'keyForEntity': 'assertion', 'entityCategory': 'core', 'entityAspects': ['assertionInfo', 'dataPlatformInstance', 'assertionRunEvent', 'assertionActions', 'status', 'globalTags', 'lineageFeatures', '
|
|
21801
|
+
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
21802
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.AssertionKey")
|
|
21687
21803
|
|
|
21688
21804
|
def __init__(self,
|
|
@@ -22082,7 +22198,7 @@ class DataHubIngestionSourceKeyClass(_Aspect):
|
|
|
22082
22198
|
|
|
22083
22199
|
|
|
22084
22200
|
ASPECT_NAME = 'dataHubIngestionSourceKey'
|
|
22085
|
-
ASPECT_INFO = {'keyForEntity': 'dataHubIngestionSource', 'entityCategory': 'internal', 'entityAspects': ['dataHubIngestionSourceInfo']}
|
|
22201
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubIngestionSource', 'entityCategory': 'internal', 'entityAspects': ['dataHubIngestionSourceInfo', 'ownership']}
|
|
22086
22202
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubIngestionSourceKey")
|
|
22087
22203
|
|
|
22088
22204
|
def __init__(self,
|
|
@@ -22754,7 +22870,7 @@ class FormKeyClass(_Aspect):
|
|
|
22754
22870
|
|
|
22755
22871
|
|
|
22756
22872
|
ASPECT_NAME = 'formKey'
|
|
22757
|
-
ASPECT_INFO = {'keyForEntity': 'form', 'entityCategory': 'core', 'entityAspects': ['formInfo', 'dynamicFormAssignment', 'ownership']}
|
|
22873
|
+
ASPECT_INFO = {'keyForEntity': 'form', 'entityCategory': 'core', 'entityAspects': ['formInfo', 'dynamicFormAssignment', 'ownership', 'formSettings']}
|
|
22758
22874
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.FormKey")
|
|
22759
22875
|
|
|
22760
22876
|
def __init__(self,
|
|
@@ -28127,7 +28243,9 @@ class AssertionMonitorClass(DictWrapper):
|
|
|
28127
28243
|
|
|
28128
28244
|
@property
|
|
28129
28245
|
def assertions(self) -> List["AssertionEvaluationSpecClass"]:
|
|
28130
|
-
"""Specs for each assertion to evaluate
|
|
28246
|
+
"""Specs for each assertion to evaluate
|
|
28247
|
+
This will always have 1 reference. Modelling error caused it to be an array.
|
|
28248
|
+
If it is != 1 then we have data corruption."""
|
|
28131
28249
|
return self._inner_dict.get('assertions') # type: ignore
|
|
28132
28250
|
|
|
28133
28251
|
@assertions.setter
|
|
@@ -28791,7 +28909,8 @@ class MonitorModeClass(object):
|
|
|
28791
28909
|
|
|
28792
28910
|
PASSIVE = "PASSIVE"
|
|
28793
28911
|
"""The monitor is running in passive mode.
|
|
28794
|
-
For assertion monitors, this means that assertions will be run in dry mode.
|
|
28912
|
+
For assertion monitors, this means that assertions will be run in dry mode.
|
|
28913
|
+
This is for internal troubleshooting purposes."""
|
|
28795
28914
|
|
|
28796
28915
|
|
|
28797
28916
|
|
|
@@ -29244,7 +29363,7 @@ class MonitorTypeClass(object):
|
|
|
29244
29363
|
"""A monitor responsible for evaluating Assertions."""
|
|
29245
29364
|
|
|
29246
29365
|
FRESHNESS = "FRESHNESS"
|
|
29247
|
-
"""A monitor responsible for evaluating system freshness monitors"""
|
|
29366
|
+
"""A monitor responsible for evaluating system freshness monitors - This is not used"""
|
|
29248
29367
|
|
|
29249
29368
|
|
|
29250
29369
|
|
|
@@ -35154,7 +35273,7 @@ class EntityChangeDetailsFilterClass(DictWrapper):
|
|
|
35154
35273
|
|
|
35155
35274
|
|
|
35156
35275
|
class EntityChangeTypeClass(object):
|
|
35157
|
-
"""Enum to define change types that can trigger a subscription."""
|
|
35276
|
+
"""Enum to define change types that can trigger a notification for a subscription."""
|
|
35158
35277
|
|
|
35159
35278
|
OPERATION_COLUMN_ADDED = "OPERATION_COLUMN_ADDED"
|
|
35160
35279
|
"""Schema changes."""
|
|
@@ -35263,7 +35382,7 @@ class SubscriptionInfoClass(_Aspect):
|
|
|
35263
35382
|
|
|
35264
35383
|
@property
|
|
35265
35384
|
def actorUrn(self) -> str:
|
|
35266
|
-
"""Actor Urn"""
|
|
35385
|
+
"""Actor Urn who will be notified """
|
|
35267
35386
|
return self._inner_dict.get('actorUrn') # type: ignore
|
|
35268
35387
|
|
|
35269
35388
|
@actorUrn.setter
|
|
@@ -35313,7 +35432,7 @@ class SubscriptionInfoClass(_Aspect):
|
|
|
35313
35432
|
|
|
35314
35433
|
@property
|
|
35315
35434
|
def entityUrn(self) -> Union[None, str]:
|
|
35316
|
-
"""Optional entity Urn"""
|
|
35435
|
+
"""Optional entity Urn - top level for now (Dataset, container etc. )"""
|
|
35317
35436
|
return self._inner_dict.get('entityUrn') # type: ignore
|
|
35318
35437
|
|
|
35319
35438
|
@entityUrn.setter
|
|
@@ -37183,6 +37302,7 @@ __SCHEMA_TYPES = {
|
|
|
37183
37302
|
'com.linkedin.pegasus2avro.assertion.AssertionResultType': AssertionResultTypeClass,
|
|
37184
37303
|
'com.linkedin.pegasus2avro.assertion.AssertionRunEvent': AssertionRunEventClass,
|
|
37185
37304
|
'com.linkedin.pegasus2avro.assertion.AssertionRunStatus': AssertionRunStatusClass,
|
|
37305
|
+
'com.linkedin.pegasus2avro.assertion.AssertionRunSummary': AssertionRunSummaryClass,
|
|
37186
37306
|
'com.linkedin.pegasus2avro.assertion.AssertionSource': AssertionSourceClass,
|
|
37187
37307
|
'com.linkedin.pegasus2avro.assertion.AssertionSourceType': AssertionSourceTypeClass,
|
|
37188
37308
|
'com.linkedin.pegasus2avro.assertion.AssertionStdAggregation': AssertionStdAggregationClass,
|
|
@@ -37190,7 +37310,6 @@ __SCHEMA_TYPES = {
|
|
|
37190
37310
|
'com.linkedin.pegasus2avro.assertion.AssertionStdParameter': AssertionStdParameterClass,
|
|
37191
37311
|
'com.linkedin.pegasus2avro.assertion.AssertionStdParameterType': AssertionStdParameterTypeClass,
|
|
37192
37312
|
'com.linkedin.pegasus2avro.assertion.AssertionStdParameters': AssertionStdParametersClass,
|
|
37193
|
-
'com.linkedin.pegasus2avro.assertion.AssertionSummary': AssertionSummaryClass,
|
|
37194
37313
|
'com.linkedin.pegasus2avro.assertion.AssertionType': AssertionTypeClass,
|
|
37195
37314
|
'com.linkedin.pegasus2avro.assertion.AssertionValueChangeType': AssertionValueChangeTypeClass,
|
|
37196
37315
|
'com.linkedin.pegasus2avro.assertion.BatchSpec': BatchSpecClass,
|
|
@@ -37443,8 +37562,10 @@ __SCHEMA_TYPES = {
|
|
|
37443
37562
|
'com.linkedin.pegasus2avro.form.DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
37444
37563
|
'com.linkedin.pegasus2avro.form.FormActorAssignment': FormActorAssignmentClass,
|
|
37445
37564
|
'com.linkedin.pegasus2avro.form.FormInfo': FormInfoClass,
|
|
37565
|
+
'com.linkedin.pegasus2avro.form.FormNotificationSettings': FormNotificationSettingsClass,
|
|
37446
37566
|
'com.linkedin.pegasus2avro.form.FormPrompt': FormPromptClass,
|
|
37447
37567
|
'com.linkedin.pegasus2avro.form.FormPromptType': FormPromptTypeClass,
|
|
37568
|
+
'com.linkedin.pegasus2avro.form.FormSettings': FormSettingsClass,
|
|
37448
37569
|
'com.linkedin.pegasus2avro.form.FormState': FormStateClass,
|
|
37449
37570
|
'com.linkedin.pegasus2avro.form.FormStatus': FormStatusClass,
|
|
37450
37571
|
'com.linkedin.pegasus2avro.form.FormType': FormTypeClass,
|
|
@@ -37889,6 +38010,7 @@ __SCHEMA_TYPES = {
|
|
|
37889
38010
|
'AssertionResultType': AssertionResultTypeClass,
|
|
37890
38011
|
'AssertionRunEvent': AssertionRunEventClass,
|
|
37891
38012
|
'AssertionRunStatus': AssertionRunStatusClass,
|
|
38013
|
+
'AssertionRunSummary': AssertionRunSummaryClass,
|
|
37892
38014
|
'AssertionSource': AssertionSourceClass,
|
|
37893
38015
|
'AssertionSourceType': AssertionSourceTypeClass,
|
|
37894
38016
|
'AssertionStdAggregation': AssertionStdAggregationClass,
|
|
@@ -37896,7 +38018,6 @@ __SCHEMA_TYPES = {
|
|
|
37896
38018
|
'AssertionStdParameter': AssertionStdParameterClass,
|
|
37897
38019
|
'AssertionStdParameterType': AssertionStdParameterTypeClass,
|
|
37898
38020
|
'AssertionStdParameters': AssertionStdParametersClass,
|
|
37899
|
-
'AssertionSummary': AssertionSummaryClass,
|
|
37900
38021
|
'AssertionType': AssertionTypeClass,
|
|
37901
38022
|
'AssertionValueChangeType': AssertionValueChangeTypeClass,
|
|
37902
38023
|
'BatchSpec': BatchSpecClass,
|
|
@@ -38149,8 +38270,10 @@ __SCHEMA_TYPES = {
|
|
|
38149
38270
|
'DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
38150
38271
|
'FormActorAssignment': FormActorAssignmentClass,
|
|
38151
38272
|
'FormInfo': FormInfoClass,
|
|
38273
|
+
'FormNotificationSettings': FormNotificationSettingsClass,
|
|
38152
38274
|
'FormPrompt': FormPromptClass,
|
|
38153
38275
|
'FormPromptType': FormPromptTypeClass,
|
|
38276
|
+
'FormSettings': FormSettingsClass,
|
|
38154
38277
|
'FormState': FormStateClass,
|
|
38155
38278
|
'FormStatus': FormStatusClass,
|
|
38156
38279
|
'FormType': FormTypeClass,
|
|
@@ -38549,276 +38672,277 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
38549
38672
|
|
|
38550
38673
|
|
|
38551
38674
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
38552
|
-
|
|
38553
|
-
|
|
38554
|
-
|
|
38555
|
-
|
|
38556
|
-
|
|
38557
|
-
|
|
38558
|
-
|
|
38559
|
-
|
|
38560
|
-
|
|
38561
|
-
|
|
38562
|
-
|
|
38563
|
-
|
|
38564
|
-
|
|
38565
|
-
|
|
38566
|
-
SiblingsClass,
|
|
38567
|
-
OwnershipClass,
|
|
38568
|
-
GlobalTagsClass,
|
|
38569
|
-
CostClass,
|
|
38570
|
-
FormsClass,
|
|
38571
|
-
DataPlatformInstanceClass,
|
|
38572
|
-
DataTransformLogicClass,
|
|
38573
|
-
OperationClass,
|
|
38574
|
-
InstitutionalMemoryClass,
|
|
38575
|
-
StatusClass,
|
|
38576
|
-
OriginClass,
|
|
38577
|
-
SubTypesClass,
|
|
38578
|
-
DocumentationClass,
|
|
38579
|
-
EmbedClass,
|
|
38580
|
-
BrowsePathsClass,
|
|
38581
|
-
ProposalsClass,
|
|
38582
|
-
VersionPropertiesClass,
|
|
38583
|
-
QueryUsageFeaturesClass,
|
|
38584
|
-
QueryPropertiesClass,
|
|
38585
|
-
QuerySubjectsClass,
|
|
38586
|
-
QueryUsageStatisticsClass,
|
|
38587
|
-
GlossaryTermInfoClass,
|
|
38588
|
-
GlossaryRelatedTermsClass,
|
|
38589
|
-
GlossaryNodeInfoClass,
|
|
38590
|
-
DataHubPersonaInfoClass,
|
|
38591
|
-
BusinessAttributesClass,
|
|
38675
|
+
ActorsClass,
|
|
38676
|
+
RolePropertiesClass,
|
|
38677
|
+
VersionSetPropertiesClass,
|
|
38678
|
+
ActionRequestStatusClass,
|
|
38679
|
+
ActionRequestArchivedClass,
|
|
38680
|
+
ActionRequestInfoClass,
|
|
38681
|
+
TelemetryClientIdClass,
|
|
38682
|
+
DataPlatformInfoClass,
|
|
38683
|
+
SlackUserInfoClass,
|
|
38684
|
+
ChartQueryClass,
|
|
38685
|
+
ChartInfoClass,
|
|
38686
|
+
ChartUsageStatisticsClass,
|
|
38687
|
+
EditableChartPropertiesClass,
|
|
38688
|
+
RemoteExecutorStatusClass,
|
|
38592
38689
|
BusinessAttributeInfoClass,
|
|
38690
|
+
BusinessAttributesClass,
|
|
38593
38691
|
BusinessAttributeKeyClass,
|
|
38594
|
-
|
|
38595
|
-
|
|
38692
|
+
SystemMetadataClass,
|
|
38693
|
+
PlatformResourceKeyClass,
|
|
38694
|
+
PlatformResourceInfoClass,
|
|
38596
38695
|
DataHubSecretValueClass,
|
|
38597
|
-
|
|
38598
|
-
|
|
38599
|
-
|
|
38600
|
-
|
|
38601
|
-
|
|
38602
|
-
|
|
38603
|
-
|
|
38604
|
-
ActionRequestInfoClass,
|
|
38605
|
-
DashboardInfoClass,
|
|
38606
|
-
EditableDashboardPropertiesClass,
|
|
38607
|
-
DashboardUsageStatisticsClass,
|
|
38608
|
-
DataProductPropertiesClass,
|
|
38609
|
-
DataProductKeyClass,
|
|
38610
|
-
EntityTypeKeyClass,
|
|
38696
|
+
DataHubViewInfoClass,
|
|
38697
|
+
PostInfoClass,
|
|
38698
|
+
IncidentActivityEventClass,
|
|
38699
|
+
IncidentSourceClass,
|
|
38700
|
+
IncidentInfoClass,
|
|
38701
|
+
IncidentNotificationDetailsClass,
|
|
38702
|
+
SubscriptionInfoClass,
|
|
38611
38703
|
EntityTypeInfoClass,
|
|
38704
|
+
EntityTypeKeyClass,
|
|
38705
|
+
DataHubConnectionDetailsClass,
|
|
38706
|
+
DataHubPolicyInfoClass,
|
|
38707
|
+
DataHubRoleInfoClass,
|
|
38708
|
+
StructuredPropertiesClass,
|
|
38709
|
+
StructuredPropertyKeyClass,
|
|
38710
|
+
StructuredPropertyDefinitionClass,
|
|
38711
|
+
StructuredPropertySettingsClass,
|
|
38712
|
+
RemoteExecutorPoolGlobalConfigClass,
|
|
38713
|
+
MonitorInfoClass,
|
|
38714
|
+
MonitorSuiteInfoClass,
|
|
38715
|
+
MonitorTimeseriesStateClass,
|
|
38716
|
+
EntityInferenceMetadataClass,
|
|
38717
|
+
AiInferenceMetadataClass,
|
|
38718
|
+
SchemaMetadataClass,
|
|
38719
|
+
SchemaProposalsClass,
|
|
38720
|
+
EditableSchemaMetadataClass,
|
|
38721
|
+
TagPropertiesClass,
|
|
38722
|
+
AssertionRunEventClass,
|
|
38723
|
+
AssertionInfoClass,
|
|
38724
|
+
AssertionActionsClass,
|
|
38725
|
+
AssertionRunSummaryClass,
|
|
38726
|
+
AssertionInferenceDetailsClass,
|
|
38727
|
+
AssertionDryRunEventClass,
|
|
38728
|
+
AssertionAnalyticsRunEventClass,
|
|
38729
|
+
FormSettingsClass,
|
|
38730
|
+
DynamicFormAssignmentClass,
|
|
38731
|
+
FormInfoClass,
|
|
38732
|
+
MonitorAnomalyEventClass,
|
|
38612
38733
|
RemoteExecutorPoolInfoClass,
|
|
38613
|
-
|
|
38614
|
-
|
|
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,
|
|
38734
|
+
SchemaFieldInfoClass,
|
|
38735
|
+
SchemaFieldAliasesClass,
|
|
38632
38736
|
LineageFeaturesClass,
|
|
38633
|
-
StorageFeaturesClass,
|
|
38634
38737
|
CostFeaturesClass,
|
|
38635
|
-
|
|
38636
|
-
|
|
38637
|
-
CorpUserKeyClass,
|
|
38638
|
-
DataPlatformInstanceKeyClass,
|
|
38639
|
-
NotebookKeyClass,
|
|
38640
|
-
ContainerKeyClass,
|
|
38641
|
-
MLFeatureTableKeyClass,
|
|
38642
|
-
SubscriptionKeyClass,
|
|
38643
|
-
QueryKeyClass,
|
|
38644
|
-
DataHubPolicyKeyClass,
|
|
38645
|
-
ChartKeyClass,
|
|
38646
|
-
GenericEntityKeyClass,
|
|
38647
|
-
DataHubRetentionKeyClass,
|
|
38648
|
-
DataHubSecretKeyClass,
|
|
38738
|
+
StorageFeaturesClass,
|
|
38739
|
+
UsageFeaturesClass,
|
|
38649
38740
|
RecommendationModuleKeyClass,
|
|
38650
|
-
|
|
38651
|
-
CorpGroupKeyClass,
|
|
38652
|
-
DataHubRoleKeyClass,
|
|
38653
|
-
IncidentKeyClass,
|
|
38654
|
-
DataContractKeyClass,
|
|
38655
|
-
FormKeyClass,
|
|
38741
|
+
DataHubPolicyKeyClass,
|
|
38656
38742
|
TagKeyClass,
|
|
38657
|
-
|
|
38658
|
-
InviteTokenKeyClass,
|
|
38659
|
-
DataHubPersonaKeyClass,
|
|
38660
|
-
SchemaFieldKeyClass,
|
|
38661
|
-
DataHubAccessTokenKeyClass,
|
|
38662
|
-
ExecutionRequestKeyClass,
|
|
38663
|
-
DataHubMetricCubeKeyClass,
|
|
38664
|
-
DataFlowKeyClass,
|
|
38665
|
-
DataProcessInstanceKeyClass,
|
|
38743
|
+
DatasetKeyClass,
|
|
38666
38744
|
DataPlatformKeyClass,
|
|
38667
|
-
|
|
38668
|
-
DataHubViewKeyClass,
|
|
38669
|
-
DashboardKeyClass,
|
|
38745
|
+
ExecutionRequestKeyClass,
|
|
38670
38746
|
OwnershipTypeKeyClass,
|
|
38671
|
-
|
|
38672
|
-
|
|
38673
|
-
|
|
38674
|
-
DatasetKeyClass,
|
|
38675
|
-
DomainKeyClass,
|
|
38747
|
+
ActionRequestKeyClass,
|
|
38748
|
+
LinkPreviewKeyClass,
|
|
38749
|
+
ConstraintKeyClass,
|
|
38676
38750
|
RoleKeyClass,
|
|
38677
|
-
|
|
38751
|
+
DataHubStepStateKeyClass,
|
|
38752
|
+
MonitorKeyClass,
|
|
38753
|
+
QueryKeyClass,
|
|
38754
|
+
DataHubRoleKeyClass,
|
|
38755
|
+
SchemaFieldKeyClass,
|
|
38756
|
+
DataFlowKeyClass,
|
|
38678
38757
|
DataJobKeyClass,
|
|
38679
|
-
|
|
38680
|
-
VersionSetKeyClass,
|
|
38681
|
-
RemoteExecutorKeyClass,
|
|
38758
|
+
GenericEntityKeyClass,
|
|
38682
38759
|
DataProcessKeyClass,
|
|
38683
|
-
DataHubIngestionSourceKeyClass,
|
|
38684
|
-
DataHubUpgradeKeyClass,
|
|
38685
|
-
AssertionKeyClass,
|
|
38686
|
-
GlossaryNodeKeyClass,
|
|
38687
38760
|
MLModelDeploymentKeyClass,
|
|
38688
|
-
|
|
38761
|
+
RemoteExecutorGlobalConfigKeyClass,
|
|
38762
|
+
DataHubAccessTokenKeyClass,
|
|
38689
38763
|
GlossaryTermKeyClass,
|
|
38764
|
+
VersionSetKeyClass,
|
|
38765
|
+
DataHubViewKeyClass,
|
|
38766
|
+
MLFeatureKeyClass,
|
|
38767
|
+
NotebookKeyClass,
|
|
38768
|
+
GlossaryNodeKeyClass,
|
|
38690
38769
|
RemoteExecutorPoolKeyClass,
|
|
38691
|
-
LinkPreviewKeyClass,
|
|
38692
|
-
AnomalyKeyClass,
|
|
38693
|
-
TelemetryKeyClass,
|
|
38694
|
-
GlobalSettingsKeyClass,
|
|
38695
38770
|
DataHubActionKeyClass,
|
|
38771
|
+
ContainerKeyClass,
|
|
38772
|
+
MLPrimaryKeyKeyClass,
|
|
38773
|
+
MonitorSuiteKeyClass,
|
|
38774
|
+
DataHubMetricCubeKeyClass,
|
|
38775
|
+
InviteTokenKeyClass,
|
|
38776
|
+
DataHubPersonaKeyClass,
|
|
38777
|
+
DomainKeyClass,
|
|
38778
|
+
FormKeyClass,
|
|
38779
|
+
TelemetryKeyClass,
|
|
38696
38780
|
DataHubConnectionKeyClass,
|
|
38697
|
-
RemoteExecutorGlobalConfigKeyClass,
|
|
38698
|
-
DataHubStepStateKeyClass,
|
|
38699
38781
|
ERModelRelationshipKeyClass,
|
|
38700
|
-
|
|
38701
|
-
|
|
38702
|
-
|
|
38703
|
-
|
|
38704
|
-
|
|
38705
|
-
|
|
38706
|
-
|
|
38707
|
-
|
|
38708
|
-
|
|
38709
|
-
|
|
38710
|
-
|
|
38711
|
-
|
|
38712
|
-
|
|
38713
|
-
|
|
38714
|
-
|
|
38715
|
-
|
|
38716
|
-
|
|
38717
|
-
|
|
38718
|
-
|
|
38719
|
-
|
|
38720
|
-
|
|
38721
|
-
|
|
38722
|
-
|
|
38723
|
-
|
|
38724
|
-
|
|
38725
|
-
|
|
38726
|
-
|
|
38727
|
-
|
|
38728
|
-
|
|
38729
|
-
RemoteExecutorStatusClass,
|
|
38730
|
-
ActorsClass,
|
|
38731
|
-
RolePropertiesClass,
|
|
38732
|
-
MonitorAnomalyEventClass,
|
|
38733
|
-
RemoteExecutorPoolGlobalConfigClass,
|
|
38734
|
-
ERModelRelationshipPropertiesClass,
|
|
38735
|
-
EditableERModelRelationshipPropertiesClass,
|
|
38736
|
-
EditableMLFeaturePropertiesClass,
|
|
38737
|
-
MLModelPropertiesClass,
|
|
38738
|
-
MLHyperParamClass,
|
|
38739
|
-
TrainingDataClass,
|
|
38740
|
-
MLFeatureTablePropertiesClass,
|
|
38741
|
-
MLModelGroupPropertiesClass,
|
|
38782
|
+
CorpGroupKeyClass,
|
|
38783
|
+
IncidentKeyClass,
|
|
38784
|
+
PostKeyClass,
|
|
38785
|
+
DataHubUpgradeKeyClass,
|
|
38786
|
+
GlobalSettingsKeyClass,
|
|
38787
|
+
DataHubRetentionKeyClass,
|
|
38788
|
+
AssertionKeyClass,
|
|
38789
|
+
MLFeatureTableKeyClass,
|
|
38790
|
+
TestKeyClass,
|
|
38791
|
+
DataHubIngestionSourceKeyClass,
|
|
38792
|
+
DataContractKeyClass,
|
|
38793
|
+
DataPlatformInstanceKeyClass,
|
|
38794
|
+
DataProcessInstanceKeyClass,
|
|
38795
|
+
RemoteExecutorKeyClass,
|
|
38796
|
+
MLModelGroupKeyClass,
|
|
38797
|
+
DataHubOpenAPISchemaKeyClass,
|
|
38798
|
+
DataHubSecretKeyClass,
|
|
38799
|
+
CorpUserKeyClass,
|
|
38800
|
+
ChartKeyClass,
|
|
38801
|
+
MLModelKeyClass,
|
|
38802
|
+
DashboardKeyClass,
|
|
38803
|
+
SubscriptionKeyClass,
|
|
38804
|
+
AnomalyKeyClass,
|
|
38805
|
+
RecommendationModuleClass,
|
|
38806
|
+
GlossaryTermInfoClass,
|
|
38807
|
+
GlossaryNodeInfoClass,
|
|
38808
|
+
GlossaryRelatedTermsClass,
|
|
38809
|
+
DataHubRetentionConfigClass,
|
|
38810
|
+
MetricsClass,
|
|
38742
38811
|
CaveatsAndRecommendationsClass,
|
|
38743
|
-
MLModelFactorPromptsClass,
|
|
38744
|
-
MLMetricClass,
|
|
38745
|
-
QuantitativeAnalysesClass,
|
|
38746
|
-
MLFeaturePropertiesClass,
|
|
38747
38812
|
MLModelDeploymentPropertiesClass,
|
|
38748
|
-
|
|
38749
|
-
|
|
38813
|
+
EthicalConsiderationsClass,
|
|
38814
|
+
MLFeaturePropertiesClass,
|
|
38815
|
+
MLMetricClass,
|
|
38750
38816
|
MLPrimaryKeyPropertiesClass,
|
|
38817
|
+
MLFeatureTablePropertiesClass,
|
|
38818
|
+
MLModelGroupPropertiesClass,
|
|
38751
38819
|
EditableMLModelGroupPropertiesClass,
|
|
38752
38820
|
EvaluationDataClass,
|
|
38753
|
-
EditableMLPrimaryKeyPropertiesClass,
|
|
38754
38821
|
MLTrainingRunPropertiesClass,
|
|
38755
|
-
|
|
38756
|
-
|
|
38822
|
+
MLHyperParamClass,
|
|
38823
|
+
EditableMLPrimaryKeyPropertiesClass,
|
|
38824
|
+
TrainingDataClass,
|
|
38757
38825
|
SourceCodeClass,
|
|
38758
|
-
|
|
38759
|
-
|
|
38760
|
-
|
|
38761
|
-
|
|
38762
|
-
|
|
38763
|
-
|
|
38764
|
-
|
|
38765
|
-
|
|
38766
|
-
|
|
38826
|
+
QuantitativeAnalysesClass,
|
|
38827
|
+
MLModelFactorPromptsClass,
|
|
38828
|
+
EditableMLModelPropertiesClass,
|
|
38829
|
+
EditableMLFeaturePropertiesClass,
|
|
38830
|
+
MLModelPropertiesClass,
|
|
38831
|
+
EditableMLFeatureTablePropertiesClass,
|
|
38832
|
+
IntendedUseClass,
|
|
38833
|
+
DataProcessInstanceRunEventClass,
|
|
38834
|
+
DataProcessInstanceRelationshipsClass,
|
|
38835
|
+
DataProcessInstanceOutputClass,
|
|
38836
|
+
DataProcessInstancePropertiesClass,
|
|
38837
|
+
DataProcessInfoClass,
|
|
38838
|
+
DataProcessInstanceInputClass,
|
|
38839
|
+
QueryPropertiesClass,
|
|
38840
|
+
QueryUsageFeaturesClass,
|
|
38841
|
+
QueryUsageStatisticsClass,
|
|
38842
|
+
QuerySubjectsClass,
|
|
38843
|
+
DataProductPropertiesClass,
|
|
38844
|
+
DataProductKeyClass,
|
|
38845
|
+
PartitionsSummaryClass,
|
|
38846
|
+
DatasetUpstreamLineageClass,
|
|
38847
|
+
DatasetProfileClass,
|
|
38848
|
+
DatasetDeprecationClass,
|
|
38849
|
+
ViewPropertiesClass,
|
|
38850
|
+
SchemaFieldProfileClass,
|
|
38851
|
+
DatasetPropertiesClass,
|
|
38852
|
+
DatasetUsageStatisticsClass,
|
|
38853
|
+
UpstreamLineageClass,
|
|
38854
|
+
EditableDatasetPropertiesClass,
|
|
38855
|
+
IcebergCatalogInfoClass,
|
|
38856
|
+
DashboardInfoClass,
|
|
38857
|
+
DashboardUsageStatisticsClass,
|
|
38858
|
+
EditableDashboardPropertiesClass,
|
|
38859
|
+
InferredMetadataClass,
|
|
38860
|
+
InferredNeighborsClass,
|
|
38861
|
+
SchemaFieldsInferredMetadataClass,
|
|
38862
|
+
SchemaFieldsInferredNeighborsClass,
|
|
38767
38863
|
LinkPreviewInfoClass,
|
|
38768
|
-
|
|
38769
|
-
|
|
38770
|
-
FormInfoClass,
|
|
38771
|
-
PostInfoClass,
|
|
38772
|
-
GlobalSettingsInfoClass,
|
|
38773
|
-
TagPropertiesClass,
|
|
38774
|
-
DataTypeInfoClass,
|
|
38864
|
+
DataHubPersonaInfoClass,
|
|
38865
|
+
OwnershipTypeInfoClass,
|
|
38775
38866
|
DataTypeKeyClass,
|
|
38776
|
-
|
|
38777
|
-
|
|
38778
|
-
|
|
38779
|
-
|
|
38780
|
-
DataJobInfoClass,
|
|
38781
|
-
DataFlowInfoClass,
|
|
38782
|
-
VersionInfoClass,
|
|
38783
|
-
DataJobInputOutputClass,
|
|
38784
|
-
DatahubIngestionCheckpointClass,
|
|
38785
|
-
DatahubIngestionRunSummaryClass,
|
|
38786
|
-
SystemMetadataClass,
|
|
38787
|
-
DataHubRetentionConfigClass,
|
|
38867
|
+
DataTypeInfoClass,
|
|
38868
|
+
ExecutionRequestResultClass,
|
|
38869
|
+
ExecutionRequestInputClass,
|
|
38870
|
+
ExecutionRequestSignalClass,
|
|
38788
38871
|
DataHubIngestionSourceInfoClass,
|
|
38789
|
-
|
|
38872
|
+
DataPlatformInstancePropertiesClass,
|
|
38873
|
+
IcebergWarehouseInfoClass,
|
|
38874
|
+
DataHubUpgradeResultClass,
|
|
38875
|
+
DataHubUpgradeRequestClass,
|
|
38876
|
+
DataHubMetricCubeEventClass,
|
|
38877
|
+
DataHubMetricCubeDefinitionClass,
|
|
38878
|
+
ConstraintInfoClass,
|
|
38879
|
+
GlobalSettingsInfoClass,
|
|
38880
|
+
ContainerClass,
|
|
38881
|
+
EditableContainerPropertiesClass,
|
|
38882
|
+
ContainerPropertiesClass,
|
|
38883
|
+
DomainPropertiesClass,
|
|
38884
|
+
DomainsClass,
|
|
38885
|
+
DataHubStepStatePropertiesClass,
|
|
38886
|
+
DataContractStatusClass,
|
|
38887
|
+
DataContractPropertiesClass,
|
|
38888
|
+
DataHubAccessTokenInfoClass,
|
|
38889
|
+
DataTransformLogicClass,
|
|
38890
|
+
StatusClass,
|
|
38891
|
+
OwnershipClass,
|
|
38892
|
+
GlossaryTermsClass,
|
|
38893
|
+
FormsClass,
|
|
38894
|
+
DocumentationClass,
|
|
38895
|
+
DeprecationClass,
|
|
38896
|
+
InstitutionalMemoryClass,
|
|
38897
|
+
DataPlatformInstanceClass,
|
|
38898
|
+
AnomaliesSummaryClass,
|
|
38899
|
+
VersionPropertiesClass,
|
|
38900
|
+
AssertionsSummaryClass,
|
|
38901
|
+
IncidentsSummaryClass,
|
|
38902
|
+
BrowsePathsV2Class,
|
|
38903
|
+
OperationClass,
|
|
38904
|
+
SubTypesClass,
|
|
38905
|
+
SiblingsClass,
|
|
38906
|
+
ShareClass,
|
|
38907
|
+
AccessClass,
|
|
38908
|
+
GlobalTagsClass,
|
|
38909
|
+
CostClass,
|
|
38910
|
+
InputFieldsClass,
|
|
38911
|
+
ProposalsClass,
|
|
38912
|
+
EmbedClass,
|
|
38913
|
+
OriginClass,
|
|
38914
|
+
BrowsePathsClass,
|
|
38915
|
+
DisplayPropertiesClass,
|
|
38916
|
+
DataHubActionInfoClass,
|
|
38917
|
+
DataHubActionStatusClass,
|
|
38790
38918
|
CorpUserStatusClass,
|
|
38791
|
-
CorpGroupInfoClass,
|
|
38792
|
-
GroupMembershipClass,
|
|
38793
|
-
InviteTokenClass,
|
|
38794
38919
|
CorpGroupSettingsClass,
|
|
38795
|
-
|
|
38796
|
-
CorpUserSettingsClass,
|
|
38920
|
+
InviteTokenClass,
|
|
38797
38921
|
CorpGroupEditableInfoClass,
|
|
38922
|
+
CorpUserEditableInfoClass,
|
|
38798
38923
|
CorpUserInfoClass,
|
|
38799
|
-
|
|
38924
|
+
RoleMembershipClass,
|
|
38800
38925
|
CorpUserCredentialsClass,
|
|
38801
|
-
|
|
38802
|
-
|
|
38803
|
-
|
|
38804
|
-
|
|
38805
|
-
|
|
38806
|
-
|
|
38807
|
-
|
|
38808
|
-
|
|
38809
|
-
|
|
38810
|
-
|
|
38811
|
-
|
|
38812
|
-
|
|
38813
|
-
|
|
38814
|
-
|
|
38815
|
-
|
|
38816
|
-
|
|
38817
|
-
|
|
38818
|
-
|
|
38819
|
-
|
|
38820
|
-
|
|
38821
|
-
PlatformResourceKeyClass
|
|
38926
|
+
CorpUserSettingsClass,
|
|
38927
|
+
NativeGroupMembershipClass,
|
|
38928
|
+
GroupMembershipClass,
|
|
38929
|
+
CorpGroupInfoClass,
|
|
38930
|
+
TestResultsClass,
|
|
38931
|
+
TestInfoClass,
|
|
38932
|
+
BatchTestRunEventClass,
|
|
38933
|
+
VersionInfoClass,
|
|
38934
|
+
DataJobInputOutputClass,
|
|
38935
|
+
EditableDataJobPropertiesClass,
|
|
38936
|
+
EditableDataFlowPropertiesClass,
|
|
38937
|
+
DataFlowInfoClass,
|
|
38938
|
+
DataJobInfoClass,
|
|
38939
|
+
DatahubIngestionRunSummaryClass,
|
|
38940
|
+
DatahubIngestionCheckpointClass,
|
|
38941
|
+
ERModelRelationshipPropertiesClass,
|
|
38942
|
+
EditableERModelRelationshipPropertiesClass,
|
|
38943
|
+
NotebookContentClass,
|
|
38944
|
+
NotebookInfoClass,
|
|
38945
|
+
EditableNotebookPropertiesClass
|
|
38822
38946
|
]
|
|
38823
38947
|
|
|
38824
38948
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -38830,491 +38954,492 @@ from typing import Literal
|
|
|
38830
38954
|
from typing_extensions import TypedDict
|
|
38831
38955
|
|
|
38832
38956
|
class AspectBag(TypedDict, total=False):
|
|
38833
|
-
|
|
38834
|
-
|
|
38835
|
-
|
|
38836
|
-
|
|
38837
|
-
|
|
38838
|
-
|
|
38839
|
-
|
|
38840
|
-
|
|
38841
|
-
|
|
38842
|
-
|
|
38843
|
-
|
|
38844
|
-
|
|
38845
|
-
|
|
38846
|
-
|
|
38847
|
-
siblings: SiblingsClass
|
|
38848
|
-
ownership: OwnershipClass
|
|
38849
|
-
globalTags: GlobalTagsClass
|
|
38850
|
-
cost: CostClass
|
|
38851
|
-
forms: FormsClass
|
|
38852
|
-
dataPlatformInstance: DataPlatformInstanceClass
|
|
38853
|
-
dataTransformLogic: DataTransformLogicClass
|
|
38854
|
-
operation: OperationClass
|
|
38855
|
-
institutionalMemory: InstitutionalMemoryClass
|
|
38856
|
-
status: StatusClass
|
|
38857
|
-
origin: OriginClass
|
|
38858
|
-
subTypes: SubTypesClass
|
|
38859
|
-
documentation: DocumentationClass
|
|
38860
|
-
embed: EmbedClass
|
|
38861
|
-
browsePaths: BrowsePathsClass
|
|
38862
|
-
proposals: ProposalsClass
|
|
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
|
|
38957
|
+
actors: ActorsClass
|
|
38958
|
+
roleProperties: RolePropertiesClass
|
|
38959
|
+
versionSetProperties: VersionSetPropertiesClass
|
|
38960
|
+
actionRequestStatus: ActionRequestStatusClass
|
|
38961
|
+
actionRequestArchived: ActionRequestArchivedClass
|
|
38962
|
+
actionRequestInfo: ActionRequestInfoClass
|
|
38963
|
+
telemetryClientId: TelemetryClientIdClass
|
|
38964
|
+
dataPlatformInfo: DataPlatformInfoClass
|
|
38965
|
+
slackUserInfo: SlackUserInfoClass
|
|
38966
|
+
chartQuery: ChartQueryClass
|
|
38967
|
+
chartInfo: ChartInfoClass
|
|
38968
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
38969
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
38970
|
+
dataHubRemoteExecutorStatus: RemoteExecutorStatusClass
|
|
38873
38971
|
businessAttributeInfo: BusinessAttributeInfoClass
|
|
38972
|
+
businessAttributes: BusinessAttributesClass
|
|
38874
38973
|
businessAttributeKey: BusinessAttributeKeyClass
|
|
38875
|
-
|
|
38876
|
-
|
|
38974
|
+
systemMetadata: SystemMetadataClass
|
|
38975
|
+
platformResourceKey: PlatformResourceKeyClass
|
|
38976
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
38877
38977
|
dataHubSecretValue: DataHubSecretValueClass
|
|
38878
|
-
|
|
38879
|
-
|
|
38880
|
-
|
|
38881
|
-
|
|
38882
|
-
|
|
38883
|
-
|
|
38884
|
-
|
|
38885
|
-
actionRequestInfo: ActionRequestInfoClass
|
|
38886
|
-
dashboardInfo: DashboardInfoClass
|
|
38887
|
-
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
38888
|
-
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
38889
|
-
dataProductProperties: DataProductPropertiesClass
|
|
38890
|
-
dataProductKey: DataProductKeyClass
|
|
38891
|
-
entityTypeKey: EntityTypeKeyClass
|
|
38978
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
38979
|
+
postInfo: PostInfoClass
|
|
38980
|
+
incidentActivityEvent: IncidentActivityEventClass
|
|
38981
|
+
incidentSource: IncidentSourceClass
|
|
38982
|
+
incidentInfo: IncidentInfoClass
|
|
38983
|
+
incidentNotificationDetails: IncidentNotificationDetailsClass
|
|
38984
|
+
subscriptionInfo: SubscriptionInfoClass
|
|
38892
38985
|
entityTypeInfo: EntityTypeInfoClass
|
|
38986
|
+
entityTypeKey: EntityTypeKeyClass
|
|
38987
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
38988
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
38989
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
38990
|
+
structuredProperties: StructuredPropertiesClass
|
|
38991
|
+
structuredPropertyKey: StructuredPropertyKeyClass
|
|
38992
|
+
propertyDefinition: StructuredPropertyDefinitionClass
|
|
38993
|
+
structuredPropertySettings: StructuredPropertySettingsClass
|
|
38994
|
+
dataHubRemoteExecutorPoolGlobalConfig: RemoteExecutorPoolGlobalConfigClass
|
|
38995
|
+
monitorInfo: MonitorInfoClass
|
|
38996
|
+
monitorSuiteInfo: MonitorSuiteInfoClass
|
|
38997
|
+
monitorTimeseriesState: MonitorTimeseriesStateClass
|
|
38998
|
+
entityInferenceMetadata: EntityInferenceMetadataClass
|
|
38999
|
+
aiInferenceMetadata: AiInferenceMetadataClass
|
|
39000
|
+
schemaMetadata: SchemaMetadataClass
|
|
39001
|
+
schemaProposals: SchemaProposalsClass
|
|
39002
|
+
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
39003
|
+
tagProperties: TagPropertiesClass
|
|
39004
|
+
assertionRunEvent: AssertionRunEventClass
|
|
39005
|
+
assertionInfo: AssertionInfoClass
|
|
39006
|
+
assertionActions: AssertionActionsClass
|
|
39007
|
+
assertionRunSummary: AssertionRunSummaryClass
|
|
39008
|
+
assertionInferenceDetails: AssertionInferenceDetailsClass
|
|
39009
|
+
assertionDryRunEvent: AssertionDryRunEventClass
|
|
39010
|
+
assertionAnalyticsRunEvent: AssertionAnalyticsRunEventClass
|
|
39011
|
+
formSettings: FormSettingsClass
|
|
39012
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
39013
|
+
formInfo: FormInfoClass
|
|
39014
|
+
monitorAnomalyEvent: MonitorAnomalyEventClass
|
|
38893
39015
|
dataHubRemoteExecutorPoolInfo: RemoteExecutorPoolInfoClass
|
|
38894
|
-
|
|
38895
|
-
|
|
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
|
|
39016
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
39017
|
+
schemaFieldAliases: SchemaFieldAliasesClass
|
|
38913
39018
|
lineageFeatures: LineageFeaturesClass
|
|
38914
|
-
storageFeatures: StorageFeaturesClass
|
|
38915
39019
|
costFeatures: CostFeaturesClass
|
|
38916
|
-
|
|
38917
|
-
|
|
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
|
|
39020
|
+
storageFeatures: StorageFeaturesClass
|
|
39021
|
+
usageFeatures: UsageFeaturesClass
|
|
38930
39022
|
recommendationModuleKey: RecommendationModuleKeyClass
|
|
38931
|
-
|
|
38932
|
-
corpGroupKey: CorpGroupKeyClass
|
|
38933
|
-
dataHubRoleKey: DataHubRoleKeyClass
|
|
38934
|
-
incidentKey: IncidentKeyClass
|
|
38935
|
-
dataContractKey: DataContractKeyClass
|
|
38936
|
-
formKey: FormKeyClass
|
|
39023
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
38937
39024
|
tagKey: TagKeyClass
|
|
38938
|
-
|
|
38939
|
-
inviteTokenKey: InviteTokenKeyClass
|
|
38940
|
-
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
38941
|
-
schemaFieldKey: SchemaFieldKeyClass
|
|
38942
|
-
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
38943
|
-
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
38944
|
-
dataHubMetricCubeKey: DataHubMetricCubeKeyClass
|
|
38945
|
-
dataFlowKey: DataFlowKeyClass
|
|
38946
|
-
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
39025
|
+
datasetKey: DatasetKeyClass
|
|
38947
39026
|
dataPlatformKey: DataPlatformKeyClass
|
|
38948
|
-
|
|
38949
|
-
dataHubViewKey: DataHubViewKeyClass
|
|
38950
|
-
dashboardKey: DashboardKeyClass
|
|
39027
|
+
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
38951
39028
|
ownershipTypeKey: OwnershipTypeKeyClass
|
|
38952
|
-
|
|
38953
|
-
|
|
38954
|
-
|
|
38955
|
-
datasetKey: DatasetKeyClass
|
|
38956
|
-
domainKey: DomainKeyClass
|
|
39029
|
+
actionRequestKey: ActionRequestKeyClass
|
|
39030
|
+
linkPreviewKey: LinkPreviewKeyClass
|
|
39031
|
+
constraintKey: ConstraintKeyClass
|
|
38957
39032
|
roleKey: RoleKeyClass
|
|
38958
|
-
|
|
39033
|
+
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
39034
|
+
monitorKey: MonitorKeyClass
|
|
39035
|
+
queryKey: QueryKeyClass
|
|
39036
|
+
dataHubRoleKey: DataHubRoleKeyClass
|
|
39037
|
+
schemaFieldKey: SchemaFieldKeyClass
|
|
39038
|
+
dataFlowKey: DataFlowKeyClass
|
|
38959
39039
|
dataJobKey: DataJobKeyClass
|
|
38960
|
-
|
|
38961
|
-
versionSetKey: VersionSetKeyClass
|
|
38962
|
-
dataHubRemoteExecutorKey: RemoteExecutorKeyClass
|
|
39040
|
+
genericEntityKey: GenericEntityKeyClass
|
|
38963
39041
|
dataProcessKey: DataProcessKeyClass
|
|
38964
|
-
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
38965
|
-
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
38966
|
-
assertionKey: AssertionKeyClass
|
|
38967
|
-
glossaryNodeKey: GlossaryNodeKeyClass
|
|
38968
39042
|
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
38969
|
-
|
|
39043
|
+
dataHubRemoteExecutorGlobalConfigKey: RemoteExecutorGlobalConfigKeyClass
|
|
39044
|
+
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
38970
39045
|
glossaryTermKey: GlossaryTermKeyClass
|
|
39046
|
+
versionSetKey: VersionSetKeyClass
|
|
39047
|
+
dataHubViewKey: DataHubViewKeyClass
|
|
39048
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
39049
|
+
notebookKey: NotebookKeyClass
|
|
39050
|
+
glossaryNodeKey: GlossaryNodeKeyClass
|
|
38971
39051
|
dataHubRemoteExecutorPoolKey: RemoteExecutorPoolKeyClass
|
|
38972
|
-
linkPreviewKey: LinkPreviewKeyClass
|
|
38973
|
-
anomalyKey: AnomalyKeyClass
|
|
38974
|
-
telemetryKey: TelemetryKeyClass
|
|
38975
|
-
globalSettingsKey: GlobalSettingsKeyClass
|
|
38976
39052
|
dataHubActionKey: DataHubActionKeyClass
|
|
39053
|
+
containerKey: ContainerKeyClass
|
|
39054
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
39055
|
+
monitorSuiteKey: MonitorSuiteKeyClass
|
|
39056
|
+
dataHubMetricCubeKey: DataHubMetricCubeKeyClass
|
|
39057
|
+
inviteTokenKey: InviteTokenKeyClass
|
|
39058
|
+
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
39059
|
+
domainKey: DomainKeyClass
|
|
39060
|
+
formKey: FormKeyClass
|
|
39061
|
+
telemetryKey: TelemetryKeyClass
|
|
38977
39062
|
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
38978
|
-
dataHubRemoteExecutorGlobalConfigKey: RemoteExecutorGlobalConfigKeyClass
|
|
38979
|
-
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
38980
39063
|
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
38981
|
-
|
|
38982
|
-
|
|
38983
|
-
|
|
38984
|
-
|
|
38985
|
-
|
|
38986
|
-
|
|
38987
|
-
|
|
38988
|
-
|
|
38989
|
-
|
|
38990
|
-
|
|
38991
|
-
|
|
38992
|
-
|
|
38993
|
-
|
|
38994
|
-
|
|
38995
|
-
|
|
38996
|
-
|
|
38997
|
-
|
|
38998
|
-
|
|
38999
|
-
|
|
39000
|
-
|
|
39001
|
-
|
|
39002
|
-
|
|
39003
|
-
|
|
39004
|
-
|
|
39005
|
-
|
|
39006
|
-
|
|
39007
|
-
|
|
39008
|
-
|
|
39009
|
-
|
|
39010
|
-
dataHubRemoteExecutorStatus: RemoteExecutorStatusClass
|
|
39011
|
-
actors: ActorsClass
|
|
39012
|
-
roleProperties: RolePropertiesClass
|
|
39013
|
-
monitorAnomalyEvent: MonitorAnomalyEventClass
|
|
39014
|
-
dataHubRemoteExecutorPoolGlobalConfig: RemoteExecutorPoolGlobalConfigClass
|
|
39015
|
-
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
39016
|
-
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
39017
|
-
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
39018
|
-
mlModelProperties: MLModelPropertiesClass
|
|
39019
|
-
mlHyperParam: MLHyperParamClass
|
|
39020
|
-
mlModelTrainingData: TrainingDataClass
|
|
39021
|
-
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
39022
|
-
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
39064
|
+
corpGroupKey: CorpGroupKeyClass
|
|
39065
|
+
incidentKey: IncidentKeyClass
|
|
39066
|
+
postKey: PostKeyClass
|
|
39067
|
+
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
39068
|
+
globalSettingsKey: GlobalSettingsKeyClass
|
|
39069
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
39070
|
+
assertionKey: AssertionKeyClass
|
|
39071
|
+
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
39072
|
+
testKey: TestKeyClass
|
|
39073
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
39074
|
+
dataContractKey: DataContractKeyClass
|
|
39075
|
+
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
39076
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
39077
|
+
dataHubRemoteExecutorKey: RemoteExecutorKeyClass
|
|
39078
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
39079
|
+
dataHubOpenAPISchemaKey: DataHubOpenAPISchemaKeyClass
|
|
39080
|
+
dataHubSecretKey: DataHubSecretKeyClass
|
|
39081
|
+
corpUserKey: CorpUserKeyClass
|
|
39082
|
+
chartKey: ChartKeyClass
|
|
39083
|
+
mlModelKey: MLModelKeyClass
|
|
39084
|
+
dashboardKey: DashboardKeyClass
|
|
39085
|
+
subscriptionKey: SubscriptionKeyClass
|
|
39086
|
+
anomalyKey: AnomalyKeyClass
|
|
39087
|
+
recommendationModule: RecommendationModuleClass
|
|
39088
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
39089
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
39090
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
39091
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
39092
|
+
mlModelMetrics: MetricsClass
|
|
39023
39093
|
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
39024
|
-
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
39025
|
-
mlMetric: MLMetricClass
|
|
39026
|
-
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
39027
|
-
mlFeatureProperties: MLFeaturePropertiesClass
|
|
39028
39094
|
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
39029
|
-
|
|
39030
|
-
|
|
39095
|
+
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
39096
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
39097
|
+
mlMetric: MLMetricClass
|
|
39031
39098
|
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
39099
|
+
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
39100
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
39032
39101
|
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
39033
39102
|
mlModelEvaluationData: EvaluationDataClass
|
|
39034
|
-
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
39035
39103
|
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
39036
|
-
|
|
39037
|
-
|
|
39104
|
+
mlHyperParam: MLHyperParamClass
|
|
39105
|
+
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
39106
|
+
mlModelTrainingData: TrainingDataClass
|
|
39038
39107
|
sourceCode: SourceCodeClass
|
|
39039
|
-
|
|
39040
|
-
|
|
39041
|
-
|
|
39042
|
-
|
|
39043
|
-
|
|
39044
|
-
|
|
39045
|
-
|
|
39046
|
-
|
|
39047
|
-
|
|
39108
|
+
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
39109
|
+
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
39110
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
39111
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
39112
|
+
mlModelProperties: MLModelPropertiesClass
|
|
39113
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
39114
|
+
intendedUse: IntendedUseClass
|
|
39115
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
39116
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
39117
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
39118
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
39119
|
+
dataProcessInfo: DataProcessInfoClass
|
|
39120
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
39121
|
+
queryProperties: QueryPropertiesClass
|
|
39122
|
+
queryUsageFeatures: QueryUsageFeaturesClass
|
|
39123
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
39124
|
+
querySubjects: QuerySubjectsClass
|
|
39125
|
+
dataProductProperties: DataProductPropertiesClass
|
|
39126
|
+
dataProductKey: DataProductKeyClass
|
|
39127
|
+
partitionsSummary: PartitionsSummaryClass
|
|
39128
|
+
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
39129
|
+
datasetProfile: DatasetProfileClass
|
|
39130
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
39131
|
+
viewProperties: ViewPropertiesClass
|
|
39132
|
+
schemaFieldProfile: SchemaFieldProfileClass
|
|
39133
|
+
datasetProperties: DatasetPropertiesClass
|
|
39134
|
+
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
39135
|
+
upstreamLineage: UpstreamLineageClass
|
|
39136
|
+
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
39137
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
39138
|
+
dashboardInfo: DashboardInfoClass
|
|
39139
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
39140
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
39141
|
+
inferredMetadata: InferredMetadataClass
|
|
39142
|
+
inferredNeighbors: InferredNeighborsClass
|
|
39143
|
+
schemaFieldsInferredMetadata: SchemaFieldsInferredMetadataClass
|
|
39144
|
+
schemaFieldsInferredNeighbors: SchemaFieldsInferredNeighborsClass
|
|
39048
39145
|
linkPreviewInfo: LinkPreviewInfoClass
|
|
39049
|
-
|
|
39050
|
-
|
|
39051
|
-
formInfo: FormInfoClass
|
|
39052
|
-
postInfo: PostInfoClass
|
|
39053
|
-
globalSettingsInfo: GlobalSettingsInfoClass
|
|
39054
|
-
tagProperties: TagPropertiesClass
|
|
39055
|
-
dataTypeInfo: DataTypeInfoClass
|
|
39146
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
39147
|
+
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
39056
39148
|
dataTypeKey: DataTypeKeyClass
|
|
39057
|
-
|
|
39058
|
-
|
|
39059
|
-
|
|
39060
|
-
|
|
39061
|
-
dataJobInfo: DataJobInfoClass
|
|
39062
|
-
dataFlowInfo: DataFlowInfoClass
|
|
39063
|
-
versionInfo: VersionInfoClass
|
|
39064
|
-
dataJobInputOutput: DataJobInputOutputClass
|
|
39065
|
-
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
39066
|
-
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
39067
|
-
systemMetadata: SystemMetadataClass
|
|
39068
|
-
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
39149
|
+
dataTypeInfo: DataTypeInfoClass
|
|
39150
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
39151
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
39152
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
39069
39153
|
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
39070
|
-
|
|
39154
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
39155
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
39156
|
+
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
39157
|
+
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
39158
|
+
dataHubMetricCubeEvent: DataHubMetricCubeEventClass
|
|
39159
|
+
dataHubMetricCubeDefinition: DataHubMetricCubeDefinitionClass
|
|
39160
|
+
constraintInfo: ConstraintInfoClass
|
|
39161
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
39162
|
+
container: ContainerClass
|
|
39163
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
39164
|
+
containerProperties: ContainerPropertiesClass
|
|
39165
|
+
domainProperties: DomainPropertiesClass
|
|
39166
|
+
domains: DomainsClass
|
|
39167
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
39168
|
+
dataContractStatus: DataContractStatusClass
|
|
39169
|
+
dataContractProperties: DataContractPropertiesClass
|
|
39170
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
39171
|
+
dataTransformLogic: DataTransformLogicClass
|
|
39172
|
+
status: StatusClass
|
|
39173
|
+
ownership: OwnershipClass
|
|
39174
|
+
glossaryTerms: GlossaryTermsClass
|
|
39175
|
+
forms: FormsClass
|
|
39176
|
+
documentation: DocumentationClass
|
|
39177
|
+
deprecation: DeprecationClass
|
|
39178
|
+
institutionalMemory: InstitutionalMemoryClass
|
|
39179
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
39180
|
+
anomaliesSummary: AnomaliesSummaryClass
|
|
39181
|
+
versionProperties: VersionPropertiesClass
|
|
39182
|
+
assertionsSummary: AssertionsSummaryClass
|
|
39183
|
+
incidentsSummary: IncidentsSummaryClass
|
|
39184
|
+
browsePathsV2: BrowsePathsV2Class
|
|
39185
|
+
operation: OperationClass
|
|
39186
|
+
subTypes: SubTypesClass
|
|
39187
|
+
siblings: SiblingsClass
|
|
39188
|
+
share: ShareClass
|
|
39189
|
+
access: AccessClass
|
|
39190
|
+
globalTags: GlobalTagsClass
|
|
39191
|
+
cost: CostClass
|
|
39192
|
+
inputFields: InputFieldsClass
|
|
39193
|
+
proposals: ProposalsClass
|
|
39194
|
+
embed: EmbedClass
|
|
39195
|
+
origin: OriginClass
|
|
39196
|
+
browsePaths: BrowsePathsClass
|
|
39197
|
+
displayProperties: DisplayPropertiesClass
|
|
39198
|
+
dataHubActionInfo: DataHubActionInfoClass
|
|
39199
|
+
dataHubActionStatus: DataHubActionStatusClass
|
|
39071
39200
|
corpUserStatus: CorpUserStatusClass
|
|
39072
|
-
corpGroupInfo: CorpGroupInfoClass
|
|
39073
|
-
groupMembership: GroupMembershipClass
|
|
39074
|
-
inviteToken: InviteTokenClass
|
|
39075
39201
|
corpGroupSettings: CorpGroupSettingsClass
|
|
39076
|
-
|
|
39077
|
-
corpUserSettings: CorpUserSettingsClass
|
|
39202
|
+
inviteToken: InviteTokenClass
|
|
39078
39203
|
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
39204
|
+
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
39079
39205
|
corpUserInfo: CorpUserInfoClass
|
|
39080
|
-
|
|
39206
|
+
roleMembership: RoleMembershipClass
|
|
39081
39207
|
corpUserCredentials: CorpUserCredentialsClass
|
|
39082
|
-
|
|
39083
|
-
|
|
39084
|
-
|
|
39085
|
-
|
|
39086
|
-
|
|
39087
|
-
|
|
39088
|
-
|
|
39089
|
-
|
|
39090
|
-
|
|
39091
|
-
|
|
39092
|
-
|
|
39093
|
-
|
|
39094
|
-
|
|
39095
|
-
|
|
39096
|
-
|
|
39097
|
-
|
|
39098
|
-
|
|
39099
|
-
|
|
39100
|
-
|
|
39101
|
-
|
|
39102
|
-
platformResourceKey: PlatformResourceKeyClass
|
|
39208
|
+
corpUserSettings: CorpUserSettingsClass
|
|
39209
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
39210
|
+
groupMembership: GroupMembershipClass
|
|
39211
|
+
corpGroupInfo: CorpGroupInfoClass
|
|
39212
|
+
testResults: TestResultsClass
|
|
39213
|
+
testInfo: TestInfoClass
|
|
39214
|
+
batchTestRunEvent: BatchTestRunEventClass
|
|
39215
|
+
versionInfo: VersionInfoClass
|
|
39216
|
+
dataJobInputOutput: DataJobInputOutputClass
|
|
39217
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
39218
|
+
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
39219
|
+
dataFlowInfo: DataFlowInfoClass
|
|
39220
|
+
dataJobInfo: DataJobInfoClass
|
|
39221
|
+
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
39222
|
+
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
39223
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
39224
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
39225
|
+
notebookContent: NotebookContentClass
|
|
39226
|
+
notebookInfo: NotebookInfoClass
|
|
39227
|
+
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
39103
39228
|
|
|
39104
39229
|
|
|
39105
39230
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
39106
39231
|
'businessAttribute': BusinessAttributeKeyClass,
|
|
39107
|
-
'
|
|
39232
|
+
'platformResource': PlatformResourceKeyClass,
|
|
39108
39233
|
'entityType': EntityTypeKeyClass,
|
|
39109
|
-
'
|
|
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,
|
|
39234
|
+
'structuredProperty': StructuredPropertyKeyClass,
|
|
39121
39235
|
'recommendationModule': RecommendationModuleKeyClass,
|
|
39122
|
-
'
|
|
39123
|
-
'corpGroup': CorpGroupKeyClass,
|
|
39124
|
-
'dataHubRole': DataHubRoleKeyClass,
|
|
39125
|
-
'incident': IncidentKeyClass,
|
|
39126
|
-
'dataContract': DataContractKeyClass,
|
|
39127
|
-
'form': FormKeyClass,
|
|
39236
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
39128
39237
|
'tag': TagKeyClass,
|
|
39129
|
-
'
|
|
39130
|
-
'inviteToken': InviteTokenKeyClass,
|
|
39131
|
-
'dataHubPersona': DataHubPersonaKeyClass,
|
|
39132
|
-
'schemaField': SchemaFieldKeyClass,
|
|
39133
|
-
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
39134
|
-
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
39135
|
-
'dataHubMetricCube': DataHubMetricCubeKeyClass,
|
|
39136
|
-
'dataFlow': DataFlowKeyClass,
|
|
39137
|
-
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
39238
|
+
'dataset': DatasetKeyClass,
|
|
39138
39239
|
'dataPlatform': DataPlatformKeyClass,
|
|
39139
|
-
'
|
|
39140
|
-
'dataHubView': DataHubViewKeyClass,
|
|
39141
|
-
'dashboard': DashboardKeyClass,
|
|
39240
|
+
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
39142
39241
|
'ownershipType': OwnershipTypeKeyClass,
|
|
39143
|
-
'
|
|
39144
|
-
'
|
|
39145
|
-
'
|
|
39146
|
-
'dataset': DatasetKeyClass,
|
|
39147
|
-
'domain': DomainKeyClass,
|
|
39242
|
+
'actionRequest': ActionRequestKeyClass,
|
|
39243
|
+
'linkPreview': LinkPreviewKeyClass,
|
|
39244
|
+
'constraint': ConstraintKeyClass,
|
|
39148
39245
|
'role': RoleKeyClass,
|
|
39149
|
-
'
|
|
39246
|
+
'dataHubStepState': DataHubStepStateKeyClass,
|
|
39247
|
+
'monitor': MonitorKeyClass,
|
|
39248
|
+
'query': QueryKeyClass,
|
|
39249
|
+
'dataHubRole': DataHubRoleKeyClass,
|
|
39250
|
+
'schemaField': SchemaFieldKeyClass,
|
|
39251
|
+
'dataFlow': DataFlowKeyClass,
|
|
39150
39252
|
'dataJob': DataJobKeyClass,
|
|
39151
|
-
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
39152
|
-
'versionSet': VersionSetKeyClass,
|
|
39153
|
-
'dataHubRemoteExecutor': RemoteExecutorKeyClass,
|
|
39154
39253
|
'dataProcess': DataProcessKeyClass,
|
|
39155
|
-
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
39156
|
-
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
39157
|
-
'assertion': AssertionKeyClass,
|
|
39158
|
-
'glossaryNode': GlossaryNodeKeyClass,
|
|
39159
39254
|
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
39160
|
-
'
|
|
39255
|
+
'dataHubRemoteExecutorGlobalConfig': RemoteExecutorGlobalConfigKeyClass,
|
|
39256
|
+
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
39161
39257
|
'glossaryTerm': GlossaryTermKeyClass,
|
|
39258
|
+
'versionSet': VersionSetKeyClass,
|
|
39259
|
+
'dataHubView': DataHubViewKeyClass,
|
|
39260
|
+
'mlFeature': MLFeatureKeyClass,
|
|
39261
|
+
'notebook': NotebookKeyClass,
|
|
39262
|
+
'glossaryNode': GlossaryNodeKeyClass,
|
|
39162
39263
|
'dataHubRemoteExecutorPool': RemoteExecutorPoolKeyClass,
|
|
39163
|
-
'linkPreview': LinkPreviewKeyClass,
|
|
39164
|
-
'telemetry': TelemetryKeyClass,
|
|
39165
|
-
'globalSettings': GlobalSettingsKeyClass,
|
|
39166
39264
|
'dataHubAction': DataHubActionKeyClass,
|
|
39265
|
+
'container': ContainerKeyClass,
|
|
39266
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
39267
|
+
'monitorSuite': MonitorSuiteKeyClass,
|
|
39268
|
+
'dataHubMetricCube': DataHubMetricCubeKeyClass,
|
|
39269
|
+
'inviteToken': InviteTokenKeyClass,
|
|
39270
|
+
'dataHubPersona': DataHubPersonaKeyClass,
|
|
39271
|
+
'domain': DomainKeyClass,
|
|
39272
|
+
'form': FormKeyClass,
|
|
39273
|
+
'telemetry': TelemetryKeyClass,
|
|
39167
39274
|
'dataHubConnection': DataHubConnectionKeyClass,
|
|
39168
|
-
'dataHubRemoteExecutorGlobalConfig': RemoteExecutorGlobalConfigKeyClass,
|
|
39169
|
-
'dataHubStepState': DataHubStepStateKeyClass,
|
|
39170
39275
|
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
39171
|
-
'
|
|
39172
|
-
'
|
|
39173
|
-
'
|
|
39174
|
-
'
|
|
39276
|
+
'corpGroup': CorpGroupKeyClass,
|
|
39277
|
+
'incident': IncidentKeyClass,
|
|
39278
|
+
'post': PostKeyClass,
|
|
39279
|
+
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
39280
|
+
'globalSettings': GlobalSettingsKeyClass,
|
|
39281
|
+
'dataHubRetention': DataHubRetentionKeyClass,
|
|
39282
|
+
'assertion': AssertionKeyClass,
|
|
39283
|
+
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
39284
|
+
'test': TestKeyClass,
|
|
39285
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
39286
|
+
'dataContract': DataContractKeyClass,
|
|
39287
|
+
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
39288
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
39289
|
+
'dataHubRemoteExecutor': RemoteExecutorKeyClass,
|
|
39290
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
39291
|
+
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
39292
|
+
'dataHubSecret': DataHubSecretKeyClass,
|
|
39293
|
+
'corpuser': CorpUserKeyClass,
|
|
39294
|
+
'chart': ChartKeyClass,
|
|
39295
|
+
'mlModel': MLModelKeyClass,
|
|
39296
|
+
'dashboard': DashboardKeyClass,
|
|
39297
|
+
'subscription': SubscriptionKeyClass,
|
|
39298
|
+
'dataProduct': DataProductKeyClass,
|
|
39299
|
+
'dataType': DataTypeKeyClass
|
|
39175
39300
|
}
|
|
39176
39301
|
|
|
39177
39302
|
ENTITY_TYPE_NAMES: List[str] = [
|
|
39178
39303
|
'businessAttribute',
|
|
39179
|
-
'
|
|
39304
|
+
'platformResource',
|
|
39180
39305
|
'entityType',
|
|
39181
|
-
'
|
|
39182
|
-
'corpuser',
|
|
39183
|
-
'dataPlatformInstance',
|
|
39184
|
-
'notebook',
|
|
39185
|
-
'container',
|
|
39186
|
-
'mlFeatureTable',
|
|
39187
|
-
'subscription',
|
|
39188
|
-
'query',
|
|
39189
|
-
'dataHubPolicy',
|
|
39190
|
-
'chart',
|
|
39191
|
-
'dataHubRetention',
|
|
39192
|
-
'dataHubSecret',
|
|
39306
|
+
'structuredProperty',
|
|
39193
39307
|
'recommendationModule',
|
|
39194
|
-
'
|
|
39195
|
-
'corpGroup',
|
|
39196
|
-
'dataHubRole',
|
|
39197
|
-
'incident',
|
|
39198
|
-
'dataContract',
|
|
39199
|
-
'form',
|
|
39308
|
+
'dataHubPolicy',
|
|
39200
39309
|
'tag',
|
|
39201
|
-
'
|
|
39202
|
-
'inviteToken',
|
|
39203
|
-
'dataHubPersona',
|
|
39204
|
-
'schemaField',
|
|
39205
|
-
'dataHubAccessToken',
|
|
39206
|
-
'dataHubExecutionRequest',
|
|
39207
|
-
'dataHubMetricCube',
|
|
39208
|
-
'dataFlow',
|
|
39209
|
-
'dataProcessInstance',
|
|
39310
|
+
'dataset',
|
|
39210
39311
|
'dataPlatform',
|
|
39211
|
-
'
|
|
39212
|
-
'dataHubView',
|
|
39213
|
-
'dashboard',
|
|
39312
|
+
'dataHubExecutionRequest',
|
|
39214
39313
|
'ownershipType',
|
|
39215
|
-
'
|
|
39216
|
-
'
|
|
39217
|
-
'
|
|
39218
|
-
'dataset',
|
|
39219
|
-
'domain',
|
|
39314
|
+
'actionRequest',
|
|
39315
|
+
'linkPreview',
|
|
39316
|
+
'constraint',
|
|
39220
39317
|
'role',
|
|
39221
|
-
'
|
|
39318
|
+
'dataHubStepState',
|
|
39319
|
+
'monitor',
|
|
39320
|
+
'query',
|
|
39321
|
+
'dataHubRole',
|
|
39322
|
+
'schemaField',
|
|
39323
|
+
'dataFlow',
|
|
39222
39324
|
'dataJob',
|
|
39223
|
-
'dataHubOpenAPISchema',
|
|
39224
|
-
'versionSet',
|
|
39225
|
-
'dataHubRemoteExecutor',
|
|
39226
39325
|
'dataProcess',
|
|
39227
|
-
'dataHubIngestionSource',
|
|
39228
|
-
'dataHubUpgrade',
|
|
39229
|
-
'assertion',
|
|
39230
|
-
'glossaryNode',
|
|
39231
39326
|
'mlModelDeployment',
|
|
39232
|
-
'
|
|
39327
|
+
'dataHubRemoteExecutorGlobalConfig',
|
|
39328
|
+
'dataHubAccessToken',
|
|
39233
39329
|
'glossaryTerm',
|
|
39330
|
+
'versionSet',
|
|
39331
|
+
'dataHubView',
|
|
39332
|
+
'mlFeature',
|
|
39333
|
+
'notebook',
|
|
39334
|
+
'glossaryNode',
|
|
39234
39335
|
'dataHubRemoteExecutorPool',
|
|
39235
|
-
'linkPreview',
|
|
39236
|
-
'telemetry',
|
|
39237
|
-
'globalSettings',
|
|
39238
39336
|
'dataHubAction',
|
|
39337
|
+
'container',
|
|
39338
|
+
'mlPrimaryKey',
|
|
39339
|
+
'monitorSuite',
|
|
39340
|
+
'dataHubMetricCube',
|
|
39341
|
+
'inviteToken',
|
|
39342
|
+
'dataHubPersona',
|
|
39343
|
+
'domain',
|
|
39344
|
+
'form',
|
|
39345
|
+
'telemetry',
|
|
39239
39346
|
'dataHubConnection',
|
|
39240
|
-
'dataHubRemoteExecutorGlobalConfig',
|
|
39241
|
-
'dataHubStepState',
|
|
39242
39347
|
'erModelRelationship',
|
|
39243
|
-
'
|
|
39244
|
-
'
|
|
39245
|
-
'
|
|
39246
|
-
'
|
|
39348
|
+
'corpGroup',
|
|
39349
|
+
'incident',
|
|
39350
|
+
'post',
|
|
39351
|
+
'dataHubUpgrade',
|
|
39352
|
+
'globalSettings',
|
|
39353
|
+
'dataHubRetention',
|
|
39354
|
+
'assertion',
|
|
39355
|
+
'mlFeatureTable',
|
|
39356
|
+
'test',
|
|
39357
|
+
'dataHubIngestionSource',
|
|
39358
|
+
'dataContract',
|
|
39359
|
+
'dataPlatformInstance',
|
|
39360
|
+
'dataProcessInstance',
|
|
39361
|
+
'dataHubRemoteExecutor',
|
|
39362
|
+
'mlModelGroup',
|
|
39363
|
+
'dataHubOpenAPISchema',
|
|
39364
|
+
'dataHubSecret',
|
|
39365
|
+
'corpuser',
|
|
39366
|
+
'chart',
|
|
39367
|
+
'mlModel',
|
|
39368
|
+
'dashboard',
|
|
39369
|
+
'subscription',
|
|
39370
|
+
'dataProduct',
|
|
39371
|
+
'dataType'
|
|
39247
39372
|
]
|
|
39248
39373
|
EntityTypeName = Literal[
|
|
39249
39374
|
'businessAttribute',
|
|
39250
|
-
'
|
|
39375
|
+
'platformResource',
|
|
39251
39376
|
'entityType',
|
|
39252
|
-
'
|
|
39253
|
-
'corpuser',
|
|
39254
|
-
'dataPlatformInstance',
|
|
39255
|
-
'notebook',
|
|
39256
|
-
'container',
|
|
39257
|
-
'mlFeatureTable',
|
|
39258
|
-
'subscription',
|
|
39259
|
-
'query',
|
|
39260
|
-
'dataHubPolicy',
|
|
39261
|
-
'chart',
|
|
39262
|
-
'dataHubRetention',
|
|
39263
|
-
'dataHubSecret',
|
|
39377
|
+
'structuredProperty',
|
|
39264
39378
|
'recommendationModule',
|
|
39265
|
-
'
|
|
39266
|
-
'corpGroup',
|
|
39267
|
-
'dataHubRole',
|
|
39268
|
-
'incident',
|
|
39269
|
-
'dataContract',
|
|
39270
|
-
'form',
|
|
39379
|
+
'dataHubPolicy',
|
|
39271
39380
|
'tag',
|
|
39272
|
-
'
|
|
39273
|
-
'inviteToken',
|
|
39274
|
-
'dataHubPersona',
|
|
39275
|
-
'schemaField',
|
|
39276
|
-
'dataHubAccessToken',
|
|
39277
|
-
'dataHubExecutionRequest',
|
|
39278
|
-
'dataHubMetricCube',
|
|
39279
|
-
'dataFlow',
|
|
39280
|
-
'dataProcessInstance',
|
|
39381
|
+
'dataset',
|
|
39281
39382
|
'dataPlatform',
|
|
39282
|
-
'
|
|
39283
|
-
'dataHubView',
|
|
39284
|
-
'dashboard',
|
|
39383
|
+
'dataHubExecutionRequest',
|
|
39285
39384
|
'ownershipType',
|
|
39286
|
-
'
|
|
39287
|
-
'
|
|
39288
|
-
'
|
|
39289
|
-
'dataset',
|
|
39290
|
-
'domain',
|
|
39385
|
+
'actionRequest',
|
|
39386
|
+
'linkPreview',
|
|
39387
|
+
'constraint',
|
|
39291
39388
|
'role',
|
|
39292
|
-
'
|
|
39389
|
+
'dataHubStepState',
|
|
39390
|
+
'monitor',
|
|
39391
|
+
'query',
|
|
39392
|
+
'dataHubRole',
|
|
39393
|
+
'schemaField',
|
|
39394
|
+
'dataFlow',
|
|
39293
39395
|
'dataJob',
|
|
39294
|
-
'dataHubOpenAPISchema',
|
|
39295
|
-
'versionSet',
|
|
39296
|
-
'dataHubRemoteExecutor',
|
|
39297
39396
|
'dataProcess',
|
|
39298
|
-
'dataHubIngestionSource',
|
|
39299
|
-
'dataHubUpgrade',
|
|
39300
|
-
'assertion',
|
|
39301
|
-
'glossaryNode',
|
|
39302
39397
|
'mlModelDeployment',
|
|
39303
|
-
'
|
|
39398
|
+
'dataHubRemoteExecutorGlobalConfig',
|
|
39399
|
+
'dataHubAccessToken',
|
|
39304
39400
|
'glossaryTerm',
|
|
39401
|
+
'versionSet',
|
|
39402
|
+
'dataHubView',
|
|
39403
|
+
'mlFeature',
|
|
39404
|
+
'notebook',
|
|
39405
|
+
'glossaryNode',
|
|
39305
39406
|
'dataHubRemoteExecutorPool',
|
|
39306
|
-
'linkPreview',
|
|
39307
|
-
'telemetry',
|
|
39308
|
-
'globalSettings',
|
|
39309
39407
|
'dataHubAction',
|
|
39408
|
+
'container',
|
|
39409
|
+
'mlPrimaryKey',
|
|
39410
|
+
'monitorSuite',
|
|
39411
|
+
'dataHubMetricCube',
|
|
39412
|
+
'inviteToken',
|
|
39413
|
+
'dataHubPersona',
|
|
39414
|
+
'domain',
|
|
39415
|
+
'form',
|
|
39416
|
+
'telemetry',
|
|
39310
39417
|
'dataHubConnection',
|
|
39311
|
-
'dataHubRemoteExecutorGlobalConfig',
|
|
39312
|
-
'dataHubStepState',
|
|
39313
39418
|
'erModelRelationship',
|
|
39314
|
-
'
|
|
39315
|
-
'
|
|
39316
|
-
'
|
|
39317
|
-
'
|
|
39419
|
+
'corpGroup',
|
|
39420
|
+
'incident',
|
|
39421
|
+
'post',
|
|
39422
|
+
'dataHubUpgrade',
|
|
39423
|
+
'globalSettings',
|
|
39424
|
+
'dataHubRetention',
|
|
39425
|
+
'assertion',
|
|
39426
|
+
'mlFeatureTable',
|
|
39427
|
+
'test',
|
|
39428
|
+
'dataHubIngestionSource',
|
|
39429
|
+
'dataContract',
|
|
39430
|
+
'dataPlatformInstance',
|
|
39431
|
+
'dataProcessInstance',
|
|
39432
|
+
'dataHubRemoteExecutor',
|
|
39433
|
+
'mlModelGroup',
|
|
39434
|
+
'dataHubOpenAPISchema',
|
|
39435
|
+
'dataHubSecret',
|
|
39436
|
+
'corpuser',
|
|
39437
|
+
'chart',
|
|
39438
|
+
'mlModel',
|
|
39439
|
+
'dashboard',
|
|
39440
|
+
'subscription',
|
|
39441
|
+
'dataProduct',
|
|
39442
|
+
'dataType'
|
|
39318
39443
|
]
|
|
39319
39444
|
|
|
39320
39445
|
# fmt: on
|