acryl-datahub-cloud 0.3.10.4rc2__py3-none-any.whl → 0.3.11__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 +4 -0
- acryl_datahub_cloud/_sdk_extras/assertion.py +15 -0
- acryl_datahub_cloud/_sdk_extras/assertions_client.py +23 -0
- acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py +1 -1
- acryl_datahub_cloud/action_request/action_request_owner_source.py +1 -2
- acryl_datahub_cloud/datahub_reporting/datahub_dataset.py +3 -7
- acryl_datahub_cloud/datahub_reporting/datahub_form_reporting.py +9 -5
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +14 -32
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +1849 -1793
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/monitor/__init__.py +6 -0
- acryl_datahub_cloud/metadata/schema.avsc +25538 -25429
- acryl_datahub_cloud/metadata/schema_classes.py +861 -676
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +25 -0
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +25 -0
- acryl_datahub_cloud/metadata/schemas/DataContractKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataHubOpenAPISchemaKey.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/DataTransformLogic.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/MLModelDeploymentProperties.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +6 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +36 -26
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +58 -0
- acryl_datahub_cloud/metadata/schemas/QueryProperties.avsc +4 -2
- acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +86 -0
- {acryl_datahub_cloud-0.3.10.4rc2.dist-info → acryl_datahub_cloud-0.3.11.dist-info}/METADATA +51 -51
- {acryl_datahub_cloud-0.3.10.4rc2.dist-info → acryl_datahub_cloud-0.3.11.dist-info}/RECORD +33 -28
- {acryl_datahub_cloud-0.3.10.4rc2.dist-info → acryl_datahub_cloud-0.3.11.dist-info}/WHEEL +1 -1
- {acryl_datahub_cloud-0.3.10.4rc2.dist-info → acryl_datahub_cloud-0.3.11.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.10.4rc2.dist-info → acryl_datahub_cloud-0.3.11.dist-info}/top_level.txt +0 -0
|
@@ -1756,37 +1756,24 @@ class AnomalySourcePropertiesClass(DictWrapper):
|
|
|
1756
1756
|
|
|
1757
1757
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.anomaly.AnomalySourceProperties")
|
|
1758
1758
|
def __init__(self,
|
|
1759
|
-
|
|
1760
|
-
metricCubeTimestamp: Union[None, int]=None,
|
|
1759
|
+
assertionMetric: Union[None, "AssertionMetricClass"]=None,
|
|
1761
1760
|
):
|
|
1762
1761
|
super().__init__()
|
|
1763
1762
|
|
|
1764
|
-
self.
|
|
1765
|
-
self.metricCubeTimestamp = metricCubeTimestamp
|
|
1763
|
+
self.assertionMetric = assertionMetric
|
|
1766
1764
|
|
|
1767
1765
|
def _restore_defaults(self) -> None:
|
|
1768
|
-
self.
|
|
1769
|
-
self.metricCubeTimestamp = self.RECORD_SCHEMA.fields_dict["metricCubeTimestamp"].default
|
|
1766
|
+
self.assertionMetric = self.RECORD_SCHEMA.fields_dict["assertionMetric"].default
|
|
1770
1767
|
|
|
1771
1768
|
|
|
1772
1769
|
@property
|
|
1773
|
-
def
|
|
1774
|
-
"""The
|
|
1775
|
-
return self._inner_dict.get('
|
|
1770
|
+
def assertionMetric(self) -> Union[None, "AssertionMetricClass"]:
|
|
1771
|
+
"""The monitor metric associated with the anomaly, if generated from an assertion monitor (the norm)."""
|
|
1772
|
+
return self._inner_dict.get('assertionMetric') # type: ignore
|
|
1776
1773
|
|
|
1777
|
-
@
|
|
1778
|
-
def
|
|
1779
|
-
self._inner_dict['
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
@property
|
|
1783
|
-
def metricCubeTimestamp(self) -> Union[None, int]:
|
|
1784
|
-
"""The timestamp associated with the metric cube value that triggered the anomaly."""
|
|
1785
|
-
return self._inner_dict.get('metricCubeTimestamp') # type: ignore
|
|
1786
|
-
|
|
1787
|
-
@metricCubeTimestamp.setter
|
|
1788
|
-
def metricCubeTimestamp(self, value: Union[None, int]) -> None:
|
|
1789
|
-
self._inner_dict['metricCubeTimestamp'] = value
|
|
1774
|
+
@assertionMetric.setter
|
|
1775
|
+
def assertionMetric(self, value: Union[None, "AssertionMetricClass"]) -> None:
|
|
1776
|
+
self._inner_dict['assertionMetric'] = value
|
|
1790
1777
|
|
|
1791
1778
|
|
|
1792
1779
|
class AnomalySourceTypeClass(object):
|
|
@@ -1808,13 +1795,13 @@ class MonitorAnomalyEventClass(_Aspect):
|
|
|
1808
1795
|
|
|
1809
1796
|
def __init__(self,
|
|
1810
1797
|
timestampMillis: int,
|
|
1811
|
-
state: Union[str, "AnomalyReviewStateClass"],
|
|
1812
1798
|
source: "AnomalySourceClass",
|
|
1813
1799
|
created: "TimeStampClass",
|
|
1814
1800
|
lastUpdated: "TimeStampClass",
|
|
1815
1801
|
eventGranularity: Union[None, "TimeWindowSizeClass"]=None,
|
|
1816
1802
|
partitionSpec: Optional[Union["PartitionSpecClass", None]]=None,
|
|
1817
1803
|
messageId: Union[None, str]=None,
|
|
1804
|
+
state: Union[None, Union[str, "AnomalyReviewStateClass"]]=None,
|
|
1818
1805
|
):
|
|
1819
1806
|
super().__init__()
|
|
1820
1807
|
|
|
@@ -1836,7 +1823,7 @@ class MonitorAnomalyEventClass(_Aspect):
|
|
|
1836
1823
|
self.eventGranularity = self.RECORD_SCHEMA.fields_dict["eventGranularity"].default
|
|
1837
1824
|
self.partitionSpec = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["partitionSpec"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["partitionSpec"].type)
|
|
1838
1825
|
self.messageId = self.RECORD_SCHEMA.fields_dict["messageId"].default
|
|
1839
|
-
self.state =
|
|
1826
|
+
self.state = self.RECORD_SCHEMA.fields_dict["state"].default
|
|
1840
1827
|
self.source = AnomalySourceClass._construct_with_defaults()
|
|
1841
1828
|
self.created = TimeStampClass._construct_with_defaults()
|
|
1842
1829
|
self.lastUpdated = TimeStampClass._construct_with_defaults()
|
|
@@ -1883,13 +1870,13 @@ class MonitorAnomalyEventClass(_Aspect):
|
|
|
1883
1870
|
|
|
1884
1871
|
|
|
1885
1872
|
@property
|
|
1886
|
-
def state(self) -> Union[str, "AnomalyReviewStateClass"]:
|
|
1873
|
+
def state(self) -> Union[None, Union[str, "AnomalyReviewStateClass"]]:
|
|
1887
1874
|
"""The review of the anomaly, based on human-provided feedback.
|
|
1888
1875
|
If this is not present, then the Anomaly has not yet been reviewed."""
|
|
1889
1876
|
return self._inner_dict.get('state') # type: ignore
|
|
1890
1877
|
|
|
1891
1878
|
@state.setter
|
|
1892
|
-
def state(self, value: Union[str, "AnomalyReviewStateClass"]) -> None:
|
|
1879
|
+
def state(self, value: Union[None, Union[str, "AnomalyReviewStateClass"]]) -> None:
|
|
1893
1880
|
self._inner_dict['state'] = value
|
|
1894
1881
|
|
|
1895
1882
|
|
|
@@ -2995,6 +2982,44 @@ class AssertionInfoClass(_Aspect):
|
|
|
2995
2982
|
self._inner_dict['description'] = value
|
|
2996
2983
|
|
|
2997
2984
|
|
|
2985
|
+
class AssertionMetricClass(DictWrapper):
|
|
2986
|
+
# No docs available.
|
|
2987
|
+
|
|
2988
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionMetric")
|
|
2989
|
+
def __init__(self,
|
|
2990
|
+
timestampMs: int,
|
|
2991
|
+
value: float,
|
|
2992
|
+
):
|
|
2993
|
+
super().__init__()
|
|
2994
|
+
|
|
2995
|
+
self.timestampMs = timestampMs
|
|
2996
|
+
self.value = value
|
|
2997
|
+
|
|
2998
|
+
def _restore_defaults(self) -> None:
|
|
2999
|
+
self.timestampMs = int()
|
|
3000
|
+
self.value = float()
|
|
3001
|
+
|
|
3002
|
+
|
|
3003
|
+
@property
|
|
3004
|
+
def timestampMs(self) -> int:
|
|
3005
|
+
"""The timestamp associated with the metric sampling time in milliseconds since epoch"""
|
|
3006
|
+
return self._inner_dict.get('timestampMs') # type: ignore
|
|
3007
|
+
|
|
3008
|
+
@timestampMs.setter
|
|
3009
|
+
def timestampMs(self, value: int) -> None:
|
|
3010
|
+
self._inner_dict['timestampMs'] = value
|
|
3011
|
+
|
|
3012
|
+
|
|
3013
|
+
@property
|
|
3014
|
+
def value(self) -> float:
|
|
3015
|
+
"""The value of the metric that was sampled"""
|
|
3016
|
+
return self._inner_dict.get('value') # type: ignore
|
|
3017
|
+
|
|
3018
|
+
@value.setter
|
|
3019
|
+
def value(self, value: float) -> None:
|
|
3020
|
+
self._inner_dict['value'] = value
|
|
3021
|
+
|
|
3022
|
+
|
|
2998
3023
|
class AssertionMonitorSensitivityClass(DictWrapper):
|
|
2999
3024
|
"""Assertion monitor sensitivity is a measure of how sensitive the assertion monitor is to the assertion condition."""
|
|
3000
3025
|
|
|
@@ -3037,6 +3062,7 @@ class AssertionResultClass(DictWrapper):
|
|
|
3037
3062
|
error: Union[None, "AssertionResultErrorClass"]=None,
|
|
3038
3063
|
parameters: Union[None, "AssertionEvaluationParametersClass"]=None,
|
|
3039
3064
|
assertionInferenceDetails: Union[None, "AssertionInferenceDetailsClass"]=None,
|
|
3065
|
+
metric: Union[None, "AssertionMetricClass"]=None,
|
|
3040
3066
|
):
|
|
3041
3067
|
super().__init__()
|
|
3042
3068
|
|
|
@@ -3052,6 +3078,7 @@ class AssertionResultClass(DictWrapper):
|
|
|
3052
3078
|
self.error = error
|
|
3053
3079
|
self.parameters = parameters
|
|
3054
3080
|
self.assertionInferenceDetails = assertionInferenceDetails
|
|
3081
|
+
self.metric = metric
|
|
3055
3082
|
|
|
3056
3083
|
def _restore_defaults(self) -> None:
|
|
3057
3084
|
self.assertion = self.RECORD_SCHEMA.fields_dict["assertion"].default
|
|
@@ -3066,6 +3093,7 @@ class AssertionResultClass(DictWrapper):
|
|
|
3066
3093
|
self.error = self.RECORD_SCHEMA.fields_dict["error"].default
|
|
3067
3094
|
self.parameters = self.RECORD_SCHEMA.fields_dict["parameters"].default
|
|
3068
3095
|
self.assertionInferenceDetails = self.RECORD_SCHEMA.fields_dict["assertionInferenceDetails"].default
|
|
3096
|
+
self.metric = self.RECORD_SCHEMA.fields_dict["metric"].default
|
|
3069
3097
|
|
|
3070
3098
|
|
|
3071
3099
|
@property
|
|
@@ -3196,6 +3224,19 @@ class AssertionResultClass(DictWrapper):
|
|
|
3196
3224
|
self._inner_dict['assertionInferenceDetails'] = value
|
|
3197
3225
|
|
|
3198
3226
|
|
|
3227
|
+
@property
|
|
3228
|
+
def metric(self) -> Union[None, "AssertionMetricClass"]:
|
|
3229
|
+
"""Information about the metric that was sampled & used when evaluating the assertion.
|
|
3230
|
+
|
|
3231
|
+
Currently, this is only populated for Volume & Field Metric Assertions and used for anomaly
|
|
3232
|
+
logging for Smart Assertions."""
|
|
3233
|
+
return self._inner_dict.get('metric') # type: ignore
|
|
3234
|
+
|
|
3235
|
+
@metric.setter
|
|
3236
|
+
def metric(self, value: Union[None, "AssertionMetricClass"]) -> None:
|
|
3237
|
+
self._inner_dict['metric'] = value
|
|
3238
|
+
|
|
3239
|
+
|
|
3199
3240
|
class AssertionResultErrorClass(DictWrapper):
|
|
3200
3241
|
""" An error encountered when evaluating an AssertionResult"""
|
|
3201
3242
|
|
|
@@ -21870,7 +21911,7 @@ class DataContractKeyClass(_Aspect):
|
|
|
21870
21911
|
|
|
21871
21912
|
|
|
21872
21913
|
ASPECT_NAME = 'dataContractKey'
|
|
21873
|
-
ASPECT_INFO = {'keyForEntity': 'dataContract', 'entityCategory': 'core', 'entityAspects': ['dataContractProperties', 'dataContractStatus', 'status']}
|
|
21914
|
+
ASPECT_INFO = {'keyForEntity': 'dataContract', 'entityCategory': 'core', 'entityAspects': ['dataContractProperties', 'dataContractStatus', 'status', 'structuredProperties']}
|
|
21874
21915
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataContractKey")
|
|
21875
21916
|
|
|
21876
21917
|
def __init__(self,
|
|
@@ -22094,6 +22135,35 @@ class DataHubMetricCubeKeyClass(_Aspect):
|
|
|
22094
22135
|
self._inner_dict['id'] = value
|
|
22095
22136
|
|
|
22096
22137
|
|
|
22138
|
+
class DataHubOpenAPISchemaKeyClass(_Aspect):
|
|
22139
|
+
"""Key for a Query"""
|
|
22140
|
+
|
|
22141
|
+
|
|
22142
|
+
ASPECT_NAME = 'dataHubOpenAPISchemaKey'
|
|
22143
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubOpenAPISchema', 'entityCategory': 'internal', 'entityAspects': ['systemMetadata'], 'entityDoc': 'Contains aspects which are used in OpenAPI requests/responses which are not otherwise present in the data model.'}
|
|
22144
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubOpenAPISchemaKey")
|
|
22145
|
+
|
|
22146
|
+
def __init__(self,
|
|
22147
|
+
id: str,
|
|
22148
|
+
):
|
|
22149
|
+
super().__init__()
|
|
22150
|
+
|
|
22151
|
+
self.id = id
|
|
22152
|
+
|
|
22153
|
+
def _restore_defaults(self) -> None:
|
|
22154
|
+
self.id = str()
|
|
22155
|
+
|
|
22156
|
+
|
|
22157
|
+
@property
|
|
22158
|
+
def id(self) -> str:
|
|
22159
|
+
"""A unique id for the DataHub OpenAPI schema."""
|
|
22160
|
+
return self._inner_dict.get('id') # type: ignore
|
|
22161
|
+
|
|
22162
|
+
@id.setter
|
|
22163
|
+
def id(self, value: str) -> None:
|
|
22164
|
+
self._inner_dict['id'] = value
|
|
22165
|
+
|
|
22166
|
+
|
|
22097
22167
|
class DataHubPersonaKeyClass(_Aspect):
|
|
22098
22168
|
"""Key for a persona type"""
|
|
22099
22169
|
|
|
@@ -28041,15 +28111,18 @@ class AssertionMonitorClass(DictWrapper):
|
|
|
28041
28111
|
def __init__(self,
|
|
28042
28112
|
assertions: List["AssertionEvaluationSpecClass"],
|
|
28043
28113
|
settings: Union[None, "AssertionMonitorSettingsClass"]=None,
|
|
28114
|
+
bootstrapStatus: Union[None, "AssertionMonitorBootstrapStatusClass"]=None,
|
|
28044
28115
|
):
|
|
28045
28116
|
super().__init__()
|
|
28046
28117
|
|
|
28047
28118
|
self.assertions = assertions
|
|
28048
28119
|
self.settings = settings
|
|
28120
|
+
self.bootstrapStatus = bootstrapStatus
|
|
28049
28121
|
|
|
28050
28122
|
def _restore_defaults(self) -> None:
|
|
28051
28123
|
self.assertions = list()
|
|
28052
28124
|
self.settings = self.RECORD_SCHEMA.fields_dict["settings"].default
|
|
28125
|
+
self.bootstrapStatus = self.RECORD_SCHEMA.fields_dict["bootstrapStatus"].default
|
|
28053
28126
|
|
|
28054
28127
|
|
|
28055
28128
|
@property
|
|
@@ -28072,6 +28145,41 @@ class AssertionMonitorClass(DictWrapper):
|
|
|
28072
28145
|
self._inner_dict['settings'] = value
|
|
28073
28146
|
|
|
28074
28147
|
|
|
28148
|
+
@property
|
|
28149
|
+
def bootstrapStatus(self) -> Union[None, "AssertionMonitorBootstrapStatusClass"]:
|
|
28150
|
+
"""The status of the bootstrap actions performed on the assertion."""
|
|
28151
|
+
return self._inner_dict.get('bootstrapStatus') # type: ignore
|
|
28152
|
+
|
|
28153
|
+
@bootstrapStatus.setter
|
|
28154
|
+
def bootstrapStatus(self, value: Union[None, "AssertionMonitorBootstrapStatusClass"]) -> None:
|
|
28155
|
+
self._inner_dict['bootstrapStatus'] = value
|
|
28156
|
+
|
|
28157
|
+
|
|
28158
|
+
class AssertionMonitorBootstrapStatusClass(DictWrapper):
|
|
28159
|
+
# No docs available.
|
|
28160
|
+
|
|
28161
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.monitor.AssertionMonitorBootstrapStatus")
|
|
28162
|
+
def __init__(self,
|
|
28163
|
+
metricsCubeBootstrapStatus: Union[None, "AssertionMonitorMetricsCubeBootstrapStatusClass"]=None,
|
|
28164
|
+
):
|
|
28165
|
+
super().__init__()
|
|
28166
|
+
|
|
28167
|
+
self.metricsCubeBootstrapStatus = metricsCubeBootstrapStatus
|
|
28168
|
+
|
|
28169
|
+
def _restore_defaults(self) -> None:
|
|
28170
|
+
self.metricsCubeBootstrapStatus = self.RECORD_SCHEMA.fields_dict["metricsCubeBootstrapStatus"].default
|
|
28171
|
+
|
|
28172
|
+
|
|
28173
|
+
@property
|
|
28174
|
+
def metricsCubeBootstrapStatus(self) -> Union[None, "AssertionMonitorMetricsCubeBootstrapStatusClass"]:
|
|
28175
|
+
"""Whether the metrics cube for this monitor has been bootstrapped."""
|
|
28176
|
+
return self._inner_dict.get('metricsCubeBootstrapStatus') # type: ignore
|
|
28177
|
+
|
|
28178
|
+
@metricsCubeBootstrapStatus.setter
|
|
28179
|
+
def metricsCubeBootstrapStatus(self, value: Union[None, "AssertionMonitorMetricsCubeBootstrapStatusClass"]) -> None:
|
|
28180
|
+
self._inner_dict['metricsCubeBootstrapStatus'] = value
|
|
28181
|
+
|
|
28182
|
+
|
|
28075
28183
|
class AssertionMonitorCapabilityClass(object):
|
|
28076
28184
|
"""Individual toggle-able capability for an assertion monitor."""
|
|
28077
28185
|
|
|
@@ -28090,6 +28198,59 @@ class AssertionMonitorCapabilityClass(object):
|
|
|
28090
28198
|
|
|
28091
28199
|
|
|
28092
28200
|
|
|
28201
|
+
class AssertionMonitorMetricsCubeBootstrapStateClass(object):
|
|
28202
|
+
# No docs available.
|
|
28203
|
+
|
|
28204
|
+
PENDING = "PENDING"
|
|
28205
|
+
"""The metrics cube for this monitor has not been bootstrapped."""
|
|
28206
|
+
|
|
28207
|
+
FAILED = "FAILED"
|
|
28208
|
+
"""The metrics cube for this monitor has failed to bootstrap."""
|
|
28209
|
+
|
|
28210
|
+
COMPLETED = "COMPLETED"
|
|
28211
|
+
"""The metrics cube for this monitor has been bootstrapped."""
|
|
28212
|
+
|
|
28213
|
+
|
|
28214
|
+
|
|
28215
|
+
class AssertionMonitorMetricsCubeBootstrapStatusClass(DictWrapper):
|
|
28216
|
+
# No docs available.
|
|
28217
|
+
|
|
28218
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.monitor.AssertionMonitorMetricsCubeBootstrapStatus")
|
|
28219
|
+
def __init__(self,
|
|
28220
|
+
state: Union[str, "AssertionMonitorMetricsCubeBootstrapStateClass"],
|
|
28221
|
+
message: Union[None, str]=None,
|
|
28222
|
+
):
|
|
28223
|
+
super().__init__()
|
|
28224
|
+
|
|
28225
|
+
self.state = state
|
|
28226
|
+
self.message = message
|
|
28227
|
+
|
|
28228
|
+
def _restore_defaults(self) -> None:
|
|
28229
|
+
self.state = AssertionMonitorMetricsCubeBootstrapStateClass.PENDING
|
|
28230
|
+
self.message = self.RECORD_SCHEMA.fields_dict["message"].default
|
|
28231
|
+
|
|
28232
|
+
|
|
28233
|
+
@property
|
|
28234
|
+
def state(self) -> Union[str, "AssertionMonitorMetricsCubeBootstrapStateClass"]:
|
|
28235
|
+
"""Whether the metrics cube for this monitor has been bootstrapped."""
|
|
28236
|
+
return self._inner_dict.get('state') # type: ignore
|
|
28237
|
+
|
|
28238
|
+
@state.setter
|
|
28239
|
+
def state(self, value: Union[str, "AssertionMonitorMetricsCubeBootstrapStateClass"]) -> None:
|
|
28240
|
+
self._inner_dict['state'] = value
|
|
28241
|
+
|
|
28242
|
+
|
|
28243
|
+
@property
|
|
28244
|
+
def message(self) -> Union[None, str]:
|
|
28245
|
+
"""The message associated with the bootstrap status.
|
|
28246
|
+
I.e., an error message if the bootstrap failed."""
|
|
28247
|
+
return self._inner_dict.get('message') # type: ignore
|
|
28248
|
+
|
|
28249
|
+
@message.setter
|
|
28250
|
+
def message(self, value: Union[None, str]) -> None:
|
|
28251
|
+
self._inner_dict['message'] = value
|
|
28252
|
+
|
|
28253
|
+
|
|
28093
28254
|
class AssertionMonitorSettingsClass(DictWrapper):
|
|
28094
28255
|
"""General purpose settings for the assertion monitor."""
|
|
28095
28256
|
|
|
@@ -29606,10 +29767,14 @@ class PlatformEventHeaderClass(DictWrapper):
|
|
|
29606
29767
|
self._inner_dict['timestampMillis'] = value
|
|
29607
29768
|
|
|
29608
29769
|
|
|
29609
|
-
class SystemMetadataClass(
|
|
29770
|
+
class SystemMetadataClass(_Aspect):
|
|
29610
29771
|
"""Metadata associated with each metadata change that is processed by the system"""
|
|
29611
|
-
|
|
29772
|
+
|
|
29773
|
+
|
|
29774
|
+
ASPECT_NAME = 'systemMetadata'
|
|
29775
|
+
ASPECT_INFO = {}
|
|
29612
29776
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.mxe.SystemMetadata")
|
|
29777
|
+
|
|
29613
29778
|
def __init__(self,
|
|
29614
29779
|
lastObserved: Optional[Union[int, None]]=None,
|
|
29615
29780
|
runId: Optional[Union[str, None]]=None,
|
|
@@ -31228,6 +31393,9 @@ class QueryLanguageClass(object):
|
|
|
31228
31393
|
SQL = "SQL"
|
|
31229
31394
|
"""A SQL Query"""
|
|
31230
31395
|
|
|
31396
|
+
UNKNOWN = "UNKNOWN"
|
|
31397
|
+
"""Unknown query language"""
|
|
31398
|
+
|
|
31231
31399
|
|
|
31232
31400
|
|
|
31233
31401
|
class QueryPropertiesClass(_Aspect):
|
|
@@ -37007,6 +37175,7 @@ __SCHEMA_TYPES = {
|
|
|
37007
37175
|
'com.linkedin.pegasus2avro.assertion.AssertionExclusionWindowType': AssertionExclusionWindowTypeClass,
|
|
37008
37176
|
'com.linkedin.pegasus2avro.assertion.AssertionInferenceDetails': AssertionInferenceDetailsClass,
|
|
37009
37177
|
'com.linkedin.pegasus2avro.assertion.AssertionInfo': AssertionInfoClass,
|
|
37178
|
+
'com.linkedin.pegasus2avro.assertion.AssertionMetric': AssertionMetricClass,
|
|
37010
37179
|
'com.linkedin.pegasus2avro.assertion.AssertionMonitorSensitivity': AssertionMonitorSensitivityClass,
|
|
37011
37180
|
'com.linkedin.pegasus2avro.assertion.AssertionResult': AssertionResultClass,
|
|
37012
37181
|
'com.linkedin.pegasus2avro.assertion.AssertionResultError': AssertionResultErrorClass,
|
|
@@ -37350,6 +37519,7 @@ __SCHEMA_TYPES = {
|
|
|
37350
37519
|
'com.linkedin.pegasus2avro.metadata.key.DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
37351
37520
|
'com.linkedin.pegasus2avro.metadata.key.DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
37352
37521
|
'com.linkedin.pegasus2avro.metadata.key.DataHubMetricCubeKey': DataHubMetricCubeKeyClass,
|
|
37522
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
37353
37523
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
37354
37524
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
37355
37525
|
'com.linkedin.pegasus2avro.metadata.key.DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -37479,7 +37649,10 @@ __SCHEMA_TYPES = {
|
|
|
37479
37649
|
'com.linkedin.pegasus2avro.monitor.AssertionEvaluationParametersType': AssertionEvaluationParametersTypeClass,
|
|
37480
37650
|
'com.linkedin.pegasus2avro.monitor.AssertionEvaluationSpec': AssertionEvaluationSpecClass,
|
|
37481
37651
|
'com.linkedin.pegasus2avro.monitor.AssertionMonitor': AssertionMonitorClass,
|
|
37652
|
+
'com.linkedin.pegasus2avro.monitor.AssertionMonitorBootstrapStatus': AssertionMonitorBootstrapStatusClass,
|
|
37482
37653
|
'com.linkedin.pegasus2avro.monitor.AssertionMonitorCapability': AssertionMonitorCapabilityClass,
|
|
37654
|
+
'com.linkedin.pegasus2avro.monitor.AssertionMonitorMetricsCubeBootstrapState': AssertionMonitorMetricsCubeBootstrapStateClass,
|
|
37655
|
+
'com.linkedin.pegasus2avro.monitor.AssertionMonitorMetricsCubeBootstrapStatus': AssertionMonitorMetricsCubeBootstrapStatusClass,
|
|
37483
37656
|
'com.linkedin.pegasus2avro.monitor.AssertionMonitorSettings': AssertionMonitorSettingsClass,
|
|
37484
37657
|
'com.linkedin.pegasus2avro.monitor.AuditLogSpec': AuditLogSpecClass,
|
|
37485
37658
|
'com.linkedin.pegasus2avro.monitor.DataHubOperationSpec': DataHubOperationSpecClass,
|
|
@@ -37708,6 +37881,7 @@ __SCHEMA_TYPES = {
|
|
|
37708
37881
|
'AssertionExclusionWindowType': AssertionExclusionWindowTypeClass,
|
|
37709
37882
|
'AssertionInferenceDetails': AssertionInferenceDetailsClass,
|
|
37710
37883
|
'AssertionInfo': AssertionInfoClass,
|
|
37884
|
+
'AssertionMetric': AssertionMetricClass,
|
|
37711
37885
|
'AssertionMonitorSensitivity': AssertionMonitorSensitivityClass,
|
|
37712
37886
|
'AssertionResult': AssertionResultClass,
|
|
37713
37887
|
'AssertionResultError': AssertionResultErrorClass,
|
|
@@ -38051,6 +38225,7 @@ __SCHEMA_TYPES = {
|
|
|
38051
38225
|
'DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
38052
38226
|
'DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
38053
38227
|
'DataHubMetricCubeKey': DataHubMetricCubeKeyClass,
|
|
38228
|
+
'DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
38054
38229
|
'DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
38055
38230
|
'DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
38056
38231
|
'DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -38180,7 +38355,10 @@ __SCHEMA_TYPES = {
|
|
|
38180
38355
|
'AssertionEvaluationParametersType': AssertionEvaluationParametersTypeClass,
|
|
38181
38356
|
'AssertionEvaluationSpec': AssertionEvaluationSpecClass,
|
|
38182
38357
|
'AssertionMonitor': AssertionMonitorClass,
|
|
38358
|
+
'AssertionMonitorBootstrapStatus': AssertionMonitorBootstrapStatusClass,
|
|
38183
38359
|
'AssertionMonitorCapability': AssertionMonitorCapabilityClass,
|
|
38360
|
+
'AssertionMonitorMetricsCubeBootstrapState': AssertionMonitorMetricsCubeBootstrapStateClass,
|
|
38361
|
+
'AssertionMonitorMetricsCubeBootstrapStatus': AssertionMonitorMetricsCubeBootstrapStatusClass,
|
|
38184
38362
|
'AssertionMonitorSettings': AssertionMonitorSettingsClass,
|
|
38185
38363
|
'AuditLogSpec': AuditLogSpecClass,
|
|
38186
38364
|
'DataHubOperationSpec': DataHubOperationSpecClass,
|
|
@@ -38371,765 +38549,772 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
38371
38549
|
|
|
38372
38550
|
|
|
38373
38551
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
38374
|
-
|
|
38375
|
-
|
|
38376
|
-
|
|
38377
|
-
|
|
38378
|
-
|
|
38379
|
-
ActionRequestArchivedClass,
|
|
38380
|
-
ActionRequestInfoClass,
|
|
38381
|
-
MonitorAnomalyEventClass,
|
|
38382
|
-
SchemaFieldsInferredNeighborsClass,
|
|
38383
|
-
SchemaFieldsInferredMetadataClass,
|
|
38384
|
-
InferredMetadataClass,
|
|
38385
|
-
InferredNeighborsClass,
|
|
38386
|
-
ExecutionRequestResultClass,
|
|
38387
|
-
ExecutionRequestInputClass,
|
|
38388
|
-
ExecutionRequestSignalClass,
|
|
38389
|
-
DataPlatformInfoClass,
|
|
38390
|
-
SlackUserInfoClass,
|
|
38391
|
-
VersionSetPropertiesClass,
|
|
38552
|
+
BatchTestRunEventClass,
|
|
38553
|
+
TestResultsClass,
|
|
38554
|
+
TestInfoClass,
|
|
38555
|
+
SchemaFieldAliasesClass,
|
|
38556
|
+
SchemaFieldInfoClass,
|
|
38392
38557
|
GlossaryNodeInfoClass,
|
|
38393
38558
|
GlossaryTermInfoClass,
|
|
38394
38559
|
GlossaryRelatedTermsClass,
|
|
38395
|
-
|
|
38396
|
-
|
|
38397
|
-
DataProcessInstanceInputClass,
|
|
38398
|
-
DataProcessInstanceRunEventClass,
|
|
38399
|
-
DataProcessInstanceRelationshipsClass,
|
|
38400
|
-
DataProcessInstancePropertiesClass,
|
|
38401
|
-
DataProcessInstanceOutputClass,
|
|
38402
|
-
DataProcessInfoClass,
|
|
38403
|
-
DataContractPropertiesClass,
|
|
38404
|
-
DataContractStatusClass,
|
|
38405
|
-
QuerySubjectsClass,
|
|
38406
|
-
QueryUsageFeaturesClass,
|
|
38407
|
-
QueryPropertiesClass,
|
|
38408
|
-
QueryUsageStatisticsClass,
|
|
38409
|
-
DataHubMetricCubeDefinitionClass,
|
|
38410
|
-
DataHubMetricCubeEventClass,
|
|
38411
|
-
NotebookInfoClass,
|
|
38412
|
-
NotebookContentClass,
|
|
38413
|
-
EditableNotebookPropertiesClass,
|
|
38414
|
-
ChartInfoClass,
|
|
38415
|
-
EditableChartPropertiesClass,
|
|
38416
|
-
ChartQueryClass,
|
|
38417
|
-
ChartUsageStatisticsClass,
|
|
38418
|
-
RemoteExecutorPoolInfoClass,
|
|
38419
|
-
DataHubAccessTokenInfoClass,
|
|
38420
|
-
DataHubStepStatePropertiesClass,
|
|
38560
|
+
DomainsClass,
|
|
38561
|
+
DomainPropertiesClass,
|
|
38421
38562
|
DataHubUpgradeResultClass,
|
|
38422
38563
|
DataHubUpgradeRequestClass,
|
|
38423
|
-
|
|
38424
|
-
|
|
38425
|
-
|
|
38426
|
-
|
|
38427
|
-
|
|
38428
|
-
|
|
38429
|
-
|
|
38430
|
-
CorpUserEditableInfoClass,
|
|
38431
|
-
RoleMembershipClass,
|
|
38432
|
-
CorpUserStatusClass,
|
|
38433
|
-
InviteTokenClass,
|
|
38434
|
-
CorpUserSettingsClass,
|
|
38435
|
-
EditableMLFeaturePropertiesClass,
|
|
38564
|
+
SchemaProposalsClass,
|
|
38565
|
+
SchemaMetadataClass,
|
|
38566
|
+
EditableSchemaMetadataClass,
|
|
38567
|
+
MLHyperParamClass,
|
|
38568
|
+
TrainingDataClass,
|
|
38569
|
+
EditableMLModelGroupPropertiesClass,
|
|
38570
|
+
EthicalConsiderationsClass,
|
|
38436
38571
|
MLPrimaryKeyPropertiesClass,
|
|
38437
|
-
|
|
38572
|
+
CaveatsAndRecommendationsClass,
|
|
38438
38573
|
EditableMLFeatureTablePropertiesClass,
|
|
38439
|
-
|
|
38440
|
-
|
|
38441
|
-
MLFeatureTablePropertiesClass,
|
|
38442
|
-
MLHyperParamClass,
|
|
38574
|
+
QuantitativeAnalysesClass,
|
|
38575
|
+
EvaluationDataClass,
|
|
38443
38576
|
MLModelFactorPromptsClass,
|
|
38444
|
-
CaveatsAndRecommendationsClass,
|
|
38445
|
-
EthicalConsiderationsClass,
|
|
38446
38577
|
MLTrainingRunPropertiesClass,
|
|
38447
|
-
|
|
38448
|
-
|
|
38578
|
+
MetricsClass,
|
|
38579
|
+
EditableMLFeaturePropertiesClass,
|
|
38580
|
+
MLModelGroupPropertiesClass,
|
|
38449
38581
|
MLModelDeploymentPropertiesClass,
|
|
38450
|
-
|
|
38451
|
-
|
|
38582
|
+
EditableMLModelPropertiesClass,
|
|
38583
|
+
SourceCodeClass,
|
|
38584
|
+
EditableMLPrimaryKeyPropertiesClass,
|
|
38585
|
+
MLFeaturePropertiesClass,
|
|
38452
38586
|
IntendedUseClass,
|
|
38453
|
-
MLModelGroupPropertiesClass,
|
|
38454
38587
|
MLModelPropertiesClass,
|
|
38455
|
-
|
|
38456
|
-
|
|
38457
|
-
|
|
38458
|
-
|
|
38459
|
-
|
|
38588
|
+
MLMetricClass,
|
|
38589
|
+
MLFeatureTablePropertiesClass,
|
|
38590
|
+
DataHubViewInfoClass,
|
|
38591
|
+
EditableDataFlowPropertiesClass,
|
|
38592
|
+
DataFlowInfoClass,
|
|
38460
38593
|
VersionInfoClass,
|
|
38461
|
-
DataJobInputOutputClass,
|
|
38462
38594
|
EditableDataJobPropertiesClass,
|
|
38595
|
+
DataJobInputOutputClass,
|
|
38463
38596
|
DataJobInfoClass,
|
|
38464
|
-
DataFlowInfoClass,
|
|
38465
|
-
EditableDataFlowPropertiesClass,
|
|
38466
|
-
DatahubIngestionCheckpointClass,
|
|
38467
38597
|
DatahubIngestionRunSummaryClass,
|
|
38468
|
-
|
|
38469
|
-
|
|
38470
|
-
|
|
38471
|
-
|
|
38472
|
-
DomainsClass,
|
|
38473
|
-
DataTypeInfoClass,
|
|
38474
|
-
DataTypeKeyClass,
|
|
38475
|
-
DatasetPropertiesClass,
|
|
38476
|
-
UpstreamLineageClass,
|
|
38477
|
-
DatasetProfileClass,
|
|
38478
|
-
PartitionsSummaryClass,
|
|
38479
|
-
ViewPropertiesClass,
|
|
38480
|
-
IcebergCatalogInfoClass,
|
|
38481
|
-
DatasetDeprecationClass,
|
|
38482
|
-
SchemaFieldProfileClass,
|
|
38483
|
-
EditableDatasetPropertiesClass,
|
|
38484
|
-
DatasetUsageStatisticsClass,
|
|
38485
|
-
DatasetUpstreamLineageClass,
|
|
38486
|
-
BusinessAttributeInfoClass,
|
|
38487
|
-
BusinessAttributeKeyClass,
|
|
38488
|
-
BusinessAttributesClass,
|
|
38489
|
-
StructuredPropertiesClass,
|
|
38490
|
-
StructuredPropertySettingsClass,
|
|
38491
|
-
StructuredPropertyKeyClass,
|
|
38492
|
-
StructuredPropertyDefinitionClass,
|
|
38493
|
-
EntityInferenceMetadataClass,
|
|
38494
|
-
AiInferenceMetadataClass,
|
|
38495
|
-
IcebergWarehouseInfoClass,
|
|
38496
|
-
DataPlatformInstancePropertiesClass,
|
|
38497
|
-
MonitorSuiteInfoClass,
|
|
38498
|
-
MonitorInfoClass,
|
|
38499
|
-
MonitorTimeseriesStateClass,
|
|
38598
|
+
DatahubIngestionCheckpointClass,
|
|
38599
|
+
ActionRequestArchivedClass,
|
|
38600
|
+
ActionRequestInfoClass,
|
|
38601
|
+
ActionRequestStatusClass,
|
|
38500
38602
|
OwnershipTypeInfoClass,
|
|
38501
|
-
PlatformResourceInfoClass,
|
|
38502
|
-
PlatformResourceKeyClass,
|
|
38503
|
-
ConstraintInfoClass,
|
|
38504
|
-
RemoteExecutorStatusClass,
|
|
38505
|
-
AssertionActionsClass,
|
|
38506
|
-
AssertionSummaryClass,
|
|
38507
|
-
AssertionRunEventClass,
|
|
38508
|
-
AssertionInferenceDetailsClass,
|
|
38509
|
-
AssertionAnalyticsRunEventClass,
|
|
38510
|
-
AssertionDryRunEventClass,
|
|
38511
|
-
AssertionInfoClass,
|
|
38512
|
-
EditableContainerPropertiesClass,
|
|
38513
|
-
ContainerPropertiesClass,
|
|
38514
|
-
ContainerClass,
|
|
38515
|
-
LinkPreviewInfoClass,
|
|
38516
|
-
DataHubViewInfoClass,
|
|
38517
|
-
DataHubActionInfoClass,
|
|
38518
|
-
DataHubActionStatusClass,
|
|
38519
38603
|
EntityTypeKeyClass,
|
|
38520
38604
|
EntityTypeInfoClass,
|
|
38521
|
-
|
|
38522
|
-
|
|
38523
|
-
|
|
38524
|
-
|
|
38525
|
-
|
|
38526
|
-
|
|
38527
|
-
|
|
38528
|
-
|
|
38529
|
-
|
|
38530
|
-
|
|
38531
|
-
|
|
38532
|
-
|
|
38533
|
-
|
|
38534
|
-
|
|
38535
|
-
|
|
38536
|
-
|
|
38537
|
-
|
|
38538
|
-
OwnershipClass,
|
|
38539
|
-
DataTransformLogicClass,
|
|
38540
|
-
GlobalTagsClass,
|
|
38541
|
-
VersionPropertiesClass,
|
|
38542
|
-
DeprecationClass,
|
|
38543
|
-
ProposalsClass,
|
|
38544
|
-
BrowsePathsClass,
|
|
38545
|
-
FormsClass,
|
|
38546
|
-
BrowsePathsV2Class,
|
|
38547
|
-
OriginClass,
|
|
38548
|
-
TestResultsClass,
|
|
38549
|
-
BatchTestRunEventClass,
|
|
38550
|
-
TestInfoClass,
|
|
38551
|
-
DataHubPersonaInfoClass,
|
|
38552
|
-
EditableSchemaMetadataClass,
|
|
38553
|
-
SchemaProposalsClass,
|
|
38554
|
-
SchemaMetadataClass,
|
|
38555
|
-
PostInfoClass,
|
|
38556
|
-
SubscriptionInfoClass,
|
|
38557
|
-
TelemetryClientIdClass,
|
|
38558
|
-
DynamicFormAssignmentClass,
|
|
38559
|
-
FormInfoClass,
|
|
38560
|
-
DataHubSecretValueClass,
|
|
38561
|
-
DashboardInfoClass,
|
|
38562
|
-
EditableDashboardPropertiesClass,
|
|
38563
|
-
DashboardUsageStatisticsClass,
|
|
38564
|
-
SchemaFieldInfoClass,
|
|
38565
|
-
SchemaFieldAliasesClass,
|
|
38566
|
-
IncidentInfoClass,
|
|
38567
|
-
IncidentNotificationDetailsClass,
|
|
38568
|
-
IncidentActivityEventClass,
|
|
38569
|
-
IncidentSourceClass,
|
|
38570
|
-
RemoteExecutorPoolGlobalConfigClass,
|
|
38571
|
-
CorpGroupKeyClass,
|
|
38572
|
-
OwnershipTypeKeyClass,
|
|
38573
|
-
GenericEntityKeyClass,
|
|
38574
|
-
RecommendationModuleKeyClass,
|
|
38575
|
-
DataProcessKeyClass,
|
|
38576
|
-
MLFeatureKeyClass,
|
|
38577
|
-
RemoteExecutorGlobalConfigKeyClass,
|
|
38578
|
-
DataHubPersonaKeyClass,
|
|
38579
|
-
DataPlatformInstanceKeyClass,
|
|
38580
|
-
ERModelRelationshipKeyClass,
|
|
38581
|
-
ContainerKeyClass,
|
|
38605
|
+
TagPropertiesClass,
|
|
38606
|
+
ERModelRelationshipPropertiesClass,
|
|
38607
|
+
EditableERModelRelationshipPropertiesClass,
|
|
38608
|
+
DataHubIngestionSourceInfoClass,
|
|
38609
|
+
SystemMetadataClass,
|
|
38610
|
+
ExecutionRequestInputClass,
|
|
38611
|
+
ExecutionRequestSignalClass,
|
|
38612
|
+
ExecutionRequestResultClass,
|
|
38613
|
+
EditableChartPropertiesClass,
|
|
38614
|
+
ChartQueryClass,
|
|
38615
|
+
ChartUsageStatisticsClass,
|
|
38616
|
+
ChartInfoClass,
|
|
38617
|
+
GlobalSettingsInfoClass,
|
|
38618
|
+
DataHubOpenAPISchemaKeyClass,
|
|
38619
|
+
QueryKeyClass,
|
|
38620
|
+
DataJobKeyClass,
|
|
38621
|
+
DataHubAccessTokenKeyClass,
|
|
38582
38622
|
TelemetryKeyClass,
|
|
38583
|
-
DatasetKeyClass,
|
|
38584
|
-
DataHubIngestionSourceKeyClass,
|
|
38585
|
-
DataFlowKeyClass,
|
|
38586
|
-
DataHubSecretKeyClass,
|
|
38587
|
-
DataHubUpgradeKeyClass,
|
|
38588
|
-
DataContractKeyClass,
|
|
38589
|
-
InviteTokenKeyClass,
|
|
38590
|
-
ActionRequestKeyClass,
|
|
38591
38623
|
ChartKeyClass,
|
|
38592
|
-
|
|
38624
|
+
DataHubViewKeyClass,
|
|
38625
|
+
DatasetKeyClass,
|
|
38626
|
+
DataPlatformKeyClass,
|
|
38627
|
+
DataPlatformInstanceKeyClass,
|
|
38628
|
+
DataHubPolicyKeyClass,
|
|
38629
|
+
ExecutionRequestKeyClass,
|
|
38630
|
+
DataHubRetentionKeyClass,
|
|
38631
|
+
DataHubStepStateKeyClass,
|
|
38632
|
+
RecommendationModuleKeyClass,
|
|
38633
|
+
ContainerKeyClass,
|
|
38634
|
+
RoleKeyClass,
|
|
38635
|
+
DataProcessInstanceKeyClass,
|
|
38636
|
+
DomainKeyClass,
|
|
38637
|
+
ERModelRelationshipKeyClass,
|
|
38638
|
+
RemoteExecutorPoolKeyClass,
|
|
38639
|
+
DataHubMetricCubeKeyClass,
|
|
38593
38640
|
GlobalSettingsKeyClass,
|
|
38594
|
-
|
|
38641
|
+
ActionRequestKeyClass,
|
|
38642
|
+
CorpUserKeyClass,
|
|
38643
|
+
GlossaryNodeKeyClass,
|
|
38595
38644
|
SubscriptionKeyClass,
|
|
38596
|
-
|
|
38597
|
-
|
|
38645
|
+
MLPrimaryKeyKeyClass,
|
|
38646
|
+
TestKeyClass,
|
|
38598
38647
|
MLModelGroupKeyClass,
|
|
38599
|
-
|
|
38600
|
-
|
|
38648
|
+
DataFlowKeyClass,
|
|
38649
|
+
DataHubPersonaKeyClass,
|
|
38601
38650
|
MonitorKeyClass,
|
|
38602
|
-
IncidentKeyClass,
|
|
38603
|
-
ConstraintKeyClass,
|
|
38604
|
-
RoleKeyClass,
|
|
38605
|
-
DashboardKeyClass,
|
|
38606
|
-
GlossaryNodeKeyClass,
|
|
38607
|
-
DataHubViewKeyClass,
|
|
38608
|
-
DataHubRetentionKeyClass,
|
|
38609
|
-
RemoteExecutorPoolKeyClass,
|
|
38610
|
-
AnomalyKeyClass,
|
|
38611
|
-
SchemaFieldKeyClass,
|
|
38612
38651
|
VersionSetKeyClass,
|
|
38613
|
-
|
|
38614
|
-
MLPrimaryKeyKeyClass,
|
|
38615
|
-
DataHubAccessTokenKeyClass,
|
|
38616
|
-
LinkPreviewKeyClass,
|
|
38617
|
-
DataHubRoleKeyClass,
|
|
38618
|
-
DataHubMetricCubeKeyClass,
|
|
38619
|
-
DataHubActionKeyClass,
|
|
38620
|
-
DataHubStepStateKeyClass,
|
|
38652
|
+
DataHubUpgradeKeyClass,
|
|
38621
38653
|
AssertionKeyClass,
|
|
38622
|
-
|
|
38623
|
-
|
|
38624
|
-
|
|
38654
|
+
ConstraintKeyClass,
|
|
38655
|
+
CorpGroupKeyClass,
|
|
38656
|
+
GenericEntityKeyClass,
|
|
38657
|
+
DataHubActionKeyClass,
|
|
38658
|
+
DataContractKeyClass,
|
|
38659
|
+
RemoteExecutorGlobalConfigKeyClass,
|
|
38660
|
+
DataHubSecretKeyClass,
|
|
38661
|
+
FormKeyClass,
|
|
38662
|
+
MLFeatureTableKeyClass,
|
|
38663
|
+
SchemaFieldKeyClass,
|
|
38625
38664
|
TagKeyClass,
|
|
38665
|
+
DataProcessKeyClass,
|
|
38666
|
+
GlossaryTermKeyClass,
|
|
38667
|
+
PostKeyClass,
|
|
38668
|
+
DashboardKeyClass,
|
|
38626
38669
|
DataHubConnectionKeyClass,
|
|
38670
|
+
AnomalyKeyClass,
|
|
38671
|
+
MLModelKeyClass,
|
|
38672
|
+
DataHubIngestionSourceKeyClass,
|
|
38627
38673
|
RemoteExecutorKeyClass,
|
|
38628
|
-
|
|
38674
|
+
MLFeatureKeyClass,
|
|
38629
38675
|
MonitorSuiteKeyClass,
|
|
38630
|
-
|
|
38631
|
-
|
|
38632
|
-
|
|
38633
|
-
|
|
38634
|
-
|
|
38635
|
-
|
|
38676
|
+
MLModelDeploymentKeyClass,
|
|
38677
|
+
OwnershipTypeKeyClass,
|
|
38678
|
+
IncidentKeyClass,
|
|
38679
|
+
InviteTokenKeyClass,
|
|
38680
|
+
LinkPreviewKeyClass,
|
|
38681
|
+
NotebookKeyClass,
|
|
38682
|
+
DataHubRoleKeyClass,
|
|
38683
|
+
CostFeaturesClass,
|
|
38636
38684
|
StorageFeaturesClass,
|
|
38637
38685
|
UsageFeaturesClass,
|
|
38638
|
-
|
|
38686
|
+
LineageFeaturesClass,
|
|
38639
38687
|
RecommendationModuleClass,
|
|
38640
|
-
|
|
38641
|
-
|
|
38642
|
-
|
|
38643
|
-
|
|
38644
|
-
|
|
38645
|
-
|
|
38646
|
-
|
|
38647
|
-
|
|
38648
|
-
|
|
38649
|
-
|
|
38650
|
-
|
|
38651
|
-
|
|
38652
|
-
|
|
38653
|
-
|
|
38654
|
-
|
|
38655
|
-
|
|
38656
|
-
|
|
38657
|
-
|
|
38658
|
-
|
|
38659
|
-
|
|
38660
|
-
|
|
38661
|
-
|
|
38662
|
-
|
|
38663
|
-
|
|
38664
|
-
|
|
38665
|
-
|
|
38666
|
-
|
|
38667
|
-
|
|
38668
|
-
|
|
38669
|
-
|
|
38670
|
-
|
|
38671
|
-
|
|
38672
|
-
|
|
38673
|
-
|
|
38674
|
-
|
|
38675
|
-
|
|
38676
|
-
|
|
38677
|
-
|
|
38678
|
-
|
|
38679
|
-
|
|
38680
|
-
|
|
38681
|
-
|
|
38682
|
-
|
|
38683
|
-
|
|
38684
|
-
|
|
38685
|
-
|
|
38686
|
-
|
|
38687
|
-
|
|
38688
|
-
|
|
38689
|
-
|
|
38690
|
-
|
|
38691
|
-
|
|
38692
|
-
|
|
38693
|
-
|
|
38694
|
-
|
|
38695
|
-
|
|
38696
|
-
|
|
38697
|
-
|
|
38698
|
-
|
|
38699
|
-
|
|
38688
|
+
LinkPreviewInfoClass,
|
|
38689
|
+
DataHubActionInfoClass,
|
|
38690
|
+
DataHubActionStatusClass,
|
|
38691
|
+
DataHubSecretValueClass,
|
|
38692
|
+
EntityInferenceMetadataClass,
|
|
38693
|
+
AiInferenceMetadataClass,
|
|
38694
|
+
RemoteExecutorStatusClass,
|
|
38695
|
+
DataPlatformInstancePropertiesClass,
|
|
38696
|
+
IcebergWarehouseInfoClass,
|
|
38697
|
+
DataHubAccessTokenInfoClass,
|
|
38698
|
+
BusinessAttributeKeyClass,
|
|
38699
|
+
BusinessAttributesClass,
|
|
38700
|
+
BusinessAttributeInfoClass,
|
|
38701
|
+
ConstraintInfoClass,
|
|
38702
|
+
TelemetryClientIdClass,
|
|
38703
|
+
StructuredPropertySettingsClass,
|
|
38704
|
+
StructuredPropertiesClass,
|
|
38705
|
+
StructuredPropertyKeyClass,
|
|
38706
|
+
StructuredPropertyDefinitionClass,
|
|
38707
|
+
DataTypeKeyClass,
|
|
38708
|
+
DataTypeInfoClass,
|
|
38709
|
+
ContainerPropertiesClass,
|
|
38710
|
+
ContainerClass,
|
|
38711
|
+
EditableContainerPropertiesClass,
|
|
38712
|
+
DynamicFormAssignmentClass,
|
|
38713
|
+
FormInfoClass,
|
|
38714
|
+
QueryUsageFeaturesClass,
|
|
38715
|
+
QuerySubjectsClass,
|
|
38716
|
+
QueryPropertiesClass,
|
|
38717
|
+
QueryUsageStatisticsClass,
|
|
38718
|
+
EditableNotebookPropertiesClass,
|
|
38719
|
+
NotebookInfoClass,
|
|
38720
|
+
NotebookContentClass,
|
|
38721
|
+
DataPlatformInfoClass,
|
|
38722
|
+
SlackUserInfoClass,
|
|
38723
|
+
EditableDashboardPropertiesClass,
|
|
38724
|
+
DashboardUsageStatisticsClass,
|
|
38725
|
+
DashboardInfoClass,
|
|
38726
|
+
DataProcessInstanceOutputClass,
|
|
38727
|
+
DataProcessInstanceInputClass,
|
|
38728
|
+
DataProcessInstanceRunEventClass,
|
|
38729
|
+
DataProcessInstanceRelationshipsClass,
|
|
38730
|
+
DataProcessInfoClass,
|
|
38731
|
+
DataProcessInstancePropertiesClass,
|
|
38732
|
+
SubscriptionInfoClass,
|
|
38733
|
+
DataHubRetentionConfigClass,
|
|
38734
|
+
RemoteExecutorPoolInfoClass,
|
|
38735
|
+
OperationClass,
|
|
38736
|
+
ShareClass,
|
|
38737
|
+
IncidentsSummaryClass,
|
|
38738
|
+
BrowsePathsClass,
|
|
38739
|
+
DataTransformLogicClass,
|
|
38740
|
+
SubTypesClass,
|
|
38741
|
+
DisplayPropertiesClass,
|
|
38742
|
+
OriginClass,
|
|
38743
|
+
InstitutionalMemoryClass,
|
|
38744
|
+
DeprecationClass,
|
|
38745
|
+
AssertionsSummaryClass,
|
|
38746
|
+
VersionPropertiesClass,
|
|
38747
|
+
OwnershipClass,
|
|
38748
|
+
SiblingsClass,
|
|
38749
|
+
DataPlatformInstanceClass,
|
|
38750
|
+
FormsClass,
|
|
38751
|
+
BrowsePathsV2Class,
|
|
38752
|
+
GlobalTagsClass,
|
|
38753
|
+
GlossaryTermsClass,
|
|
38754
|
+
AccessClass,
|
|
38755
|
+
EmbedClass,
|
|
38756
|
+
StatusClass,
|
|
38757
|
+
AnomaliesSummaryClass,
|
|
38758
|
+
InputFieldsClass,
|
|
38759
|
+
CostClass,
|
|
38760
|
+
DocumentationClass,
|
|
38761
|
+
ProposalsClass,
|
|
38762
|
+
DataProductKeyClass,
|
|
38763
|
+
DataProductPropertiesClass,
|
|
38764
|
+
DataHubConnectionDetailsClass,
|
|
38765
|
+
PlatformResourceInfoClass,
|
|
38766
|
+
PlatformResourceKeyClass,
|
|
38767
|
+
ActorsClass,
|
|
38768
|
+
RolePropertiesClass,
|
|
38769
|
+
RemoteExecutorPoolGlobalConfigClass,
|
|
38770
|
+
AssertionRunEventClass,
|
|
38771
|
+
AssertionAnalyticsRunEventClass,
|
|
38772
|
+
AssertionActionsClass,
|
|
38773
|
+
AssertionInferenceDetailsClass,
|
|
38774
|
+
AssertionInfoClass,
|
|
38775
|
+
AssertionDryRunEventClass,
|
|
38776
|
+
AssertionSummaryClass,
|
|
38777
|
+
MonitorInfoClass,
|
|
38778
|
+
MonitorSuiteInfoClass,
|
|
38779
|
+
MonitorTimeseriesStateClass,
|
|
38780
|
+
DataHubStepStatePropertiesClass,
|
|
38781
|
+
VersionSetPropertiesClass,
|
|
38782
|
+
SchemaFieldsInferredNeighborsClass,
|
|
38783
|
+
InferredMetadataClass,
|
|
38784
|
+
InferredNeighborsClass,
|
|
38785
|
+
SchemaFieldsInferredMetadataClass,
|
|
38786
|
+
IncidentNotificationDetailsClass,
|
|
38787
|
+
IncidentInfoClass,
|
|
38788
|
+
IncidentActivityEventClass,
|
|
38789
|
+
IncidentSourceClass,
|
|
38790
|
+
DataHubPolicyInfoClass,
|
|
38791
|
+
DataHubRoleInfoClass,
|
|
38792
|
+
CorpGroupSettingsClass,
|
|
38793
|
+
CorpUserInfoClass,
|
|
38794
|
+
CorpGroupInfoClass,
|
|
38795
|
+
CorpGroupEditableInfoClass,
|
|
38796
|
+
InviteTokenClass,
|
|
38797
|
+
NativeGroupMembershipClass,
|
|
38798
|
+
RoleMembershipClass,
|
|
38799
|
+
GroupMembershipClass,
|
|
38800
|
+
CorpUserStatusClass,
|
|
38801
|
+
CorpUserCredentialsClass,
|
|
38802
|
+
CorpUserEditableInfoClass,
|
|
38803
|
+
CorpUserSettingsClass,
|
|
38804
|
+
DataHubMetricCubeDefinitionClass,
|
|
38805
|
+
DataHubMetricCubeEventClass,
|
|
38806
|
+
PostInfoClass,
|
|
38807
|
+
DataContractStatusClass,
|
|
38808
|
+
DataContractPropertiesClass,
|
|
38809
|
+
MonitorAnomalyEventClass,
|
|
38810
|
+
DatasetUsageStatisticsClass,
|
|
38811
|
+
EditableDatasetPropertiesClass,
|
|
38812
|
+
UpstreamLineageClass,
|
|
38813
|
+
ViewPropertiesClass,
|
|
38814
|
+
PartitionsSummaryClass,
|
|
38815
|
+
SchemaFieldProfileClass,
|
|
38816
|
+
DatasetProfileClass,
|
|
38817
|
+
DatasetDeprecationClass,
|
|
38818
|
+
DatasetUpstreamLineageClass,
|
|
38819
|
+
DatasetPropertiesClass,
|
|
38820
|
+
IcebergCatalogInfoClass,
|
|
38821
|
+
DataHubPersonaInfoClass
|
|
38822
|
+
]
|
|
38823
|
+
|
|
38824
|
+
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
38825
|
+
aspect.get_aspect_name(): aspect
|
|
38826
|
+
for aspect in ASPECT_CLASSES
|
|
38827
|
+
}
|
|
38828
|
+
|
|
38829
|
+
from typing import Literal
|
|
38830
|
+
from typing_extensions import TypedDict
|
|
38831
|
+
|
|
38832
|
+
class AspectBag(TypedDict, total=False):
|
|
38833
|
+
batchTestRunEvent: BatchTestRunEventClass
|
|
38834
|
+
testResults: TestResultsClass
|
|
38835
|
+
testInfo: TestInfoClass
|
|
38836
|
+
schemaFieldAliases: SchemaFieldAliasesClass
|
|
38837
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
38838
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
38839
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
38840
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
38841
|
+
domains: DomainsClass
|
|
38842
|
+
domainProperties: DomainPropertiesClass
|
|
38700
38843
|
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
38701
38844
|
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
38702
|
-
|
|
38703
|
-
|
|
38704
|
-
|
|
38705
|
-
|
|
38706
|
-
|
|
38707
|
-
|
|
38708
|
-
|
|
38709
|
-
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
38710
|
-
roleMembership: RoleMembershipClass
|
|
38711
|
-
corpUserStatus: CorpUserStatusClass
|
|
38712
|
-
inviteToken: InviteTokenClass
|
|
38713
|
-
corpUserSettings: CorpUserSettingsClass
|
|
38714
|
-
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
38845
|
+
schemaProposals: SchemaProposalsClass
|
|
38846
|
+
schemaMetadata: SchemaMetadataClass
|
|
38847
|
+
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
38848
|
+
mlHyperParam: MLHyperParamClass
|
|
38849
|
+
mlModelTrainingData: TrainingDataClass
|
|
38850
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
38851
|
+
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
38715
38852
|
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
38716
|
-
|
|
38853
|
+
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
38717
38854
|
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
38718
|
-
|
|
38719
|
-
|
|
38720
|
-
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
38721
|
-
mlHyperParam: MLHyperParamClass
|
|
38855
|
+
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
38856
|
+
mlModelEvaluationData: EvaluationDataClass
|
|
38722
38857
|
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
38723
|
-
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
38724
|
-
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
38725
38858
|
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
38726
|
-
|
|
38727
|
-
|
|
38859
|
+
mlModelMetrics: MetricsClass
|
|
38860
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
38861
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
38728
38862
|
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
38729
|
-
|
|
38730
|
-
|
|
38863
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
38864
|
+
sourceCode: SourceCodeClass
|
|
38865
|
+
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
38866
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
38731
38867
|
intendedUse: IntendedUseClass
|
|
38732
|
-
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
38733
38868
|
mlModelProperties: MLModelPropertiesClass
|
|
38734
|
-
|
|
38735
|
-
|
|
38736
|
-
|
|
38737
|
-
|
|
38738
|
-
|
|
38869
|
+
mlMetric: MLMetricClass
|
|
38870
|
+
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
38871
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
38872
|
+
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
38873
|
+
dataFlowInfo: DataFlowInfoClass
|
|
38739
38874
|
versionInfo: VersionInfoClass
|
|
38740
|
-
dataJobInputOutput: DataJobInputOutputClass
|
|
38741
38875
|
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
38876
|
+
dataJobInputOutput: DataJobInputOutputClass
|
|
38742
38877
|
dataJobInfo: DataJobInfoClass
|
|
38743
|
-
dataFlowInfo: DataFlowInfoClass
|
|
38744
|
-
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
38745
|
-
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
38746
38878
|
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
38747
|
-
|
|
38748
|
-
|
|
38749
|
-
|
|
38750
|
-
|
|
38751
|
-
domains: DomainsClass
|
|
38752
|
-
dataTypeInfo: DataTypeInfoClass
|
|
38753
|
-
dataTypeKey: DataTypeKeyClass
|
|
38754
|
-
datasetProperties: DatasetPropertiesClass
|
|
38755
|
-
upstreamLineage: UpstreamLineageClass
|
|
38756
|
-
datasetProfile: DatasetProfileClass
|
|
38757
|
-
partitionsSummary: PartitionsSummaryClass
|
|
38758
|
-
viewProperties: ViewPropertiesClass
|
|
38759
|
-
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
38760
|
-
datasetDeprecation: DatasetDeprecationClass
|
|
38761
|
-
schemaFieldProfile: SchemaFieldProfileClass
|
|
38762
|
-
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
38763
|
-
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
38764
|
-
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
38765
|
-
businessAttributeInfo: BusinessAttributeInfoClass
|
|
38766
|
-
businessAttributeKey: BusinessAttributeKeyClass
|
|
38767
|
-
businessAttributes: BusinessAttributesClass
|
|
38768
|
-
structuredProperties: StructuredPropertiesClass
|
|
38769
|
-
structuredPropertySettings: StructuredPropertySettingsClass
|
|
38770
|
-
structuredPropertyKey: StructuredPropertyKeyClass
|
|
38771
|
-
propertyDefinition: StructuredPropertyDefinitionClass
|
|
38772
|
-
entityInferenceMetadata: EntityInferenceMetadataClass
|
|
38773
|
-
aiInferenceMetadata: AiInferenceMetadataClass
|
|
38774
|
-
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
38775
|
-
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
38776
|
-
monitorSuiteInfo: MonitorSuiteInfoClass
|
|
38777
|
-
monitorInfo: MonitorInfoClass
|
|
38778
|
-
monitorTimeseriesState: MonitorTimeseriesStateClass
|
|
38879
|
+
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
38880
|
+
actionRequestArchived: ActionRequestArchivedClass
|
|
38881
|
+
actionRequestInfo: ActionRequestInfoClass
|
|
38882
|
+
actionRequestStatus: ActionRequestStatusClass
|
|
38779
38883
|
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
38780
|
-
platformResourceInfo: PlatformResourceInfoClass
|
|
38781
|
-
platformResourceKey: PlatformResourceKeyClass
|
|
38782
|
-
constraintInfo: ConstraintInfoClass
|
|
38783
|
-
dataHubRemoteExecutorStatus: RemoteExecutorStatusClass
|
|
38784
|
-
assertionActions: AssertionActionsClass
|
|
38785
|
-
assertionSummary: AssertionSummaryClass
|
|
38786
|
-
assertionRunEvent: AssertionRunEventClass
|
|
38787
|
-
assertionInferenceDetails: AssertionInferenceDetailsClass
|
|
38788
|
-
assertionAnalyticsRunEvent: AssertionAnalyticsRunEventClass
|
|
38789
|
-
assertionDryRunEvent: AssertionDryRunEventClass
|
|
38790
|
-
assertionInfo: AssertionInfoClass
|
|
38791
|
-
editableContainerProperties: EditableContainerPropertiesClass
|
|
38792
|
-
containerProperties: ContainerPropertiesClass
|
|
38793
|
-
container: ContainerClass
|
|
38794
|
-
linkPreviewInfo: LinkPreviewInfoClass
|
|
38795
|
-
dataHubViewInfo: DataHubViewInfoClass
|
|
38796
|
-
dataHubActionInfo: DataHubActionInfoClass
|
|
38797
|
-
dataHubActionStatus: DataHubActionStatusClass
|
|
38798
38884
|
entityTypeKey: EntityTypeKeyClass
|
|
38799
38885
|
entityTypeInfo: EntityTypeInfoClass
|
|
38800
|
-
|
|
38801
|
-
|
|
38802
|
-
|
|
38803
|
-
|
|
38804
|
-
|
|
38805
|
-
|
|
38806
|
-
|
|
38807
|
-
|
|
38808
|
-
|
|
38809
|
-
|
|
38810
|
-
|
|
38811
|
-
|
|
38812
|
-
|
|
38813
|
-
|
|
38814
|
-
|
|
38815
|
-
|
|
38816
|
-
|
|
38817
|
-
ownership: OwnershipClass
|
|
38818
|
-
dataTransformLogic: DataTransformLogicClass
|
|
38819
|
-
globalTags: GlobalTagsClass
|
|
38820
|
-
versionProperties: VersionPropertiesClass
|
|
38821
|
-
deprecation: DeprecationClass
|
|
38822
|
-
proposals: ProposalsClass
|
|
38823
|
-
browsePaths: BrowsePathsClass
|
|
38824
|
-
forms: FormsClass
|
|
38825
|
-
browsePathsV2: BrowsePathsV2Class
|
|
38826
|
-
origin: OriginClass
|
|
38827
|
-
testResults: TestResultsClass
|
|
38828
|
-
batchTestRunEvent: BatchTestRunEventClass
|
|
38829
|
-
testInfo: TestInfoClass
|
|
38830
|
-
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
38831
|
-
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
38832
|
-
schemaProposals: SchemaProposalsClass
|
|
38833
|
-
schemaMetadata: SchemaMetadataClass
|
|
38834
|
-
postInfo: PostInfoClass
|
|
38835
|
-
subscriptionInfo: SubscriptionInfoClass
|
|
38836
|
-
telemetryClientId: TelemetryClientIdClass
|
|
38837
|
-
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
38838
|
-
formInfo: FormInfoClass
|
|
38839
|
-
dataHubSecretValue: DataHubSecretValueClass
|
|
38840
|
-
dashboardInfo: DashboardInfoClass
|
|
38841
|
-
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
38842
|
-
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
38843
|
-
schemafieldInfo: SchemaFieldInfoClass
|
|
38844
|
-
schemaFieldAliases: SchemaFieldAliasesClass
|
|
38845
|
-
incidentInfo: IncidentInfoClass
|
|
38846
|
-
incidentNotificationDetails: IncidentNotificationDetailsClass
|
|
38847
|
-
incidentActivityEvent: IncidentActivityEventClass
|
|
38848
|
-
incidentSource: IncidentSourceClass
|
|
38849
|
-
dataHubRemoteExecutorPoolGlobalConfig: RemoteExecutorPoolGlobalConfigClass
|
|
38850
|
-
corpGroupKey: CorpGroupKeyClass
|
|
38851
|
-
ownershipTypeKey: OwnershipTypeKeyClass
|
|
38852
|
-
genericEntityKey: GenericEntityKeyClass
|
|
38853
|
-
recommendationModuleKey: RecommendationModuleKeyClass
|
|
38854
|
-
dataProcessKey: DataProcessKeyClass
|
|
38855
|
-
mlFeatureKey: MLFeatureKeyClass
|
|
38856
|
-
dataHubRemoteExecutorGlobalConfigKey: RemoteExecutorGlobalConfigKeyClass
|
|
38857
|
-
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
38858
|
-
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
38859
|
-
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
38860
|
-
containerKey: ContainerKeyClass
|
|
38886
|
+
tagProperties: TagPropertiesClass
|
|
38887
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
38888
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
38889
|
+
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
38890
|
+
systemMetadata: SystemMetadataClass
|
|
38891
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
38892
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
38893
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
38894
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
38895
|
+
chartQuery: ChartQueryClass
|
|
38896
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
38897
|
+
chartInfo: ChartInfoClass
|
|
38898
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
38899
|
+
dataHubOpenAPISchemaKey: DataHubOpenAPISchemaKeyClass
|
|
38900
|
+
queryKey: QueryKeyClass
|
|
38901
|
+
dataJobKey: DataJobKeyClass
|
|
38902
|
+
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
38861
38903
|
telemetryKey: TelemetryKeyClass
|
|
38862
|
-
datasetKey: DatasetKeyClass
|
|
38863
|
-
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
38864
|
-
dataFlowKey: DataFlowKeyClass
|
|
38865
|
-
dataHubSecretKey: DataHubSecretKeyClass
|
|
38866
|
-
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
38867
|
-
dataContractKey: DataContractKeyClass
|
|
38868
|
-
inviteTokenKey: InviteTokenKeyClass
|
|
38869
|
-
actionRequestKey: ActionRequestKeyClass
|
|
38870
38904
|
chartKey: ChartKeyClass
|
|
38871
|
-
|
|
38905
|
+
dataHubViewKey: DataHubViewKeyClass
|
|
38906
|
+
datasetKey: DatasetKeyClass
|
|
38907
|
+
dataPlatformKey: DataPlatformKeyClass
|
|
38908
|
+
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
38909
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
38910
|
+
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
38911
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
38912
|
+
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
38913
|
+
recommendationModuleKey: RecommendationModuleKeyClass
|
|
38914
|
+
containerKey: ContainerKeyClass
|
|
38915
|
+
roleKey: RoleKeyClass
|
|
38916
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
38917
|
+
domainKey: DomainKeyClass
|
|
38918
|
+
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
38919
|
+
dataHubRemoteExecutorPoolKey: RemoteExecutorPoolKeyClass
|
|
38920
|
+
dataHubMetricCubeKey: DataHubMetricCubeKeyClass
|
|
38872
38921
|
globalSettingsKey: GlobalSettingsKeyClass
|
|
38873
|
-
|
|
38922
|
+
actionRequestKey: ActionRequestKeyClass
|
|
38923
|
+
corpUserKey: CorpUserKeyClass
|
|
38924
|
+
glossaryNodeKey: GlossaryNodeKeyClass
|
|
38874
38925
|
subscriptionKey: SubscriptionKeyClass
|
|
38875
|
-
|
|
38876
|
-
|
|
38926
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
38927
|
+
testKey: TestKeyClass
|
|
38877
38928
|
mlModelGroupKey: MLModelGroupKeyClass
|
|
38878
|
-
|
|
38879
|
-
|
|
38929
|
+
dataFlowKey: DataFlowKeyClass
|
|
38930
|
+
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
38880
38931
|
monitorKey: MonitorKeyClass
|
|
38881
|
-
incidentKey: IncidentKeyClass
|
|
38882
|
-
constraintKey: ConstraintKeyClass
|
|
38883
|
-
roleKey: RoleKeyClass
|
|
38884
|
-
dashboardKey: DashboardKeyClass
|
|
38885
|
-
glossaryNodeKey: GlossaryNodeKeyClass
|
|
38886
|
-
dataHubViewKey: DataHubViewKeyClass
|
|
38887
|
-
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
38888
|
-
dataHubRemoteExecutorPoolKey: RemoteExecutorPoolKeyClass
|
|
38889
|
-
anomalyKey: AnomalyKeyClass
|
|
38890
|
-
schemaFieldKey: SchemaFieldKeyClass
|
|
38891
38932
|
versionSetKey: VersionSetKeyClass
|
|
38892
|
-
|
|
38893
|
-
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
38894
|
-
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
38895
|
-
linkPreviewKey: LinkPreviewKeyClass
|
|
38896
|
-
dataHubRoleKey: DataHubRoleKeyClass
|
|
38897
|
-
dataHubMetricCubeKey: DataHubMetricCubeKeyClass
|
|
38898
|
-
dataHubActionKey: DataHubActionKeyClass
|
|
38899
|
-
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
38933
|
+
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
38900
38934
|
assertionKey: AssertionKeyClass
|
|
38901
|
-
|
|
38902
|
-
|
|
38903
|
-
|
|
38935
|
+
constraintKey: ConstraintKeyClass
|
|
38936
|
+
corpGroupKey: CorpGroupKeyClass
|
|
38937
|
+
genericEntityKey: GenericEntityKeyClass
|
|
38938
|
+
dataHubActionKey: DataHubActionKeyClass
|
|
38939
|
+
dataContractKey: DataContractKeyClass
|
|
38940
|
+
dataHubRemoteExecutorGlobalConfigKey: RemoteExecutorGlobalConfigKeyClass
|
|
38941
|
+
dataHubSecretKey: DataHubSecretKeyClass
|
|
38942
|
+
formKey: FormKeyClass
|
|
38943
|
+
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
38944
|
+
schemaFieldKey: SchemaFieldKeyClass
|
|
38904
38945
|
tagKey: TagKeyClass
|
|
38946
|
+
dataProcessKey: DataProcessKeyClass
|
|
38947
|
+
glossaryTermKey: GlossaryTermKeyClass
|
|
38948
|
+
postKey: PostKeyClass
|
|
38949
|
+
dashboardKey: DashboardKeyClass
|
|
38905
38950
|
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
38951
|
+
anomalyKey: AnomalyKeyClass
|
|
38952
|
+
mlModelKey: MLModelKeyClass
|
|
38953
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
38906
38954
|
dataHubRemoteExecutorKey: RemoteExecutorKeyClass
|
|
38907
|
-
|
|
38955
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
38908
38956
|
monitorSuiteKey: MonitorSuiteKeyClass
|
|
38909
|
-
|
|
38910
|
-
|
|
38911
|
-
|
|
38912
|
-
|
|
38913
|
-
|
|
38914
|
-
|
|
38957
|
+
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
38958
|
+
ownershipTypeKey: OwnershipTypeKeyClass
|
|
38959
|
+
incidentKey: IncidentKeyClass
|
|
38960
|
+
inviteTokenKey: InviteTokenKeyClass
|
|
38961
|
+
linkPreviewKey: LinkPreviewKeyClass
|
|
38962
|
+
notebookKey: NotebookKeyClass
|
|
38963
|
+
dataHubRoleKey: DataHubRoleKeyClass
|
|
38964
|
+
costFeatures: CostFeaturesClass
|
|
38915
38965
|
storageFeatures: StorageFeaturesClass
|
|
38916
38966
|
usageFeatures: UsageFeaturesClass
|
|
38917
|
-
|
|
38967
|
+
lineageFeatures: LineageFeaturesClass
|
|
38918
38968
|
recommendationModule: RecommendationModuleClass
|
|
38919
|
-
|
|
38920
|
-
|
|
38969
|
+
linkPreviewInfo: LinkPreviewInfoClass
|
|
38970
|
+
dataHubActionInfo: DataHubActionInfoClass
|
|
38971
|
+
dataHubActionStatus: DataHubActionStatusClass
|
|
38972
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
38973
|
+
entityInferenceMetadata: EntityInferenceMetadataClass
|
|
38974
|
+
aiInferenceMetadata: AiInferenceMetadataClass
|
|
38975
|
+
dataHubRemoteExecutorStatus: RemoteExecutorStatusClass
|
|
38976
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
38977
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
38978
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
38979
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
38980
|
+
businessAttributes: BusinessAttributesClass
|
|
38981
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
38982
|
+
constraintInfo: ConstraintInfoClass
|
|
38983
|
+
telemetryClientId: TelemetryClientIdClass
|
|
38984
|
+
structuredPropertySettings: StructuredPropertySettingsClass
|
|
38985
|
+
structuredProperties: StructuredPropertiesClass
|
|
38986
|
+
structuredPropertyKey: StructuredPropertyKeyClass
|
|
38987
|
+
propertyDefinition: StructuredPropertyDefinitionClass
|
|
38988
|
+
dataTypeKey: DataTypeKeyClass
|
|
38989
|
+
dataTypeInfo: DataTypeInfoClass
|
|
38990
|
+
containerProperties: ContainerPropertiesClass
|
|
38991
|
+
container: ContainerClass
|
|
38992
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
38993
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
38994
|
+
formInfo: FormInfoClass
|
|
38995
|
+
queryUsageFeatures: QueryUsageFeaturesClass
|
|
38996
|
+
querySubjects: QuerySubjectsClass
|
|
38997
|
+
queryProperties: QueryPropertiesClass
|
|
38998
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
38999
|
+
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
39000
|
+
notebookInfo: NotebookInfoClass
|
|
39001
|
+
notebookContent: NotebookContentClass
|
|
39002
|
+
dataPlatformInfo: DataPlatformInfoClass
|
|
39003
|
+
slackUserInfo: SlackUserInfoClass
|
|
39004
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
39005
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
39006
|
+
dashboardInfo: DashboardInfoClass
|
|
39007
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
39008
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
39009
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
39010
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
39011
|
+
dataProcessInfo: DataProcessInfoClass
|
|
39012
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
39013
|
+
subscriptionInfo: SubscriptionInfoClass
|
|
39014
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
39015
|
+
dataHubRemoteExecutorPoolInfo: RemoteExecutorPoolInfoClass
|
|
39016
|
+
operation: OperationClass
|
|
39017
|
+
share: ShareClass
|
|
39018
|
+
incidentsSummary: IncidentsSummaryClass
|
|
39019
|
+
browsePaths: BrowsePathsClass
|
|
39020
|
+
dataTransformLogic: DataTransformLogicClass
|
|
39021
|
+
subTypes: SubTypesClass
|
|
39022
|
+
displayProperties: DisplayPropertiesClass
|
|
39023
|
+
origin: OriginClass
|
|
39024
|
+
institutionalMemory: InstitutionalMemoryClass
|
|
39025
|
+
deprecation: DeprecationClass
|
|
39026
|
+
assertionsSummary: AssertionsSummaryClass
|
|
39027
|
+
versionProperties: VersionPropertiesClass
|
|
39028
|
+
ownership: OwnershipClass
|
|
39029
|
+
siblings: SiblingsClass
|
|
39030
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
39031
|
+
forms: FormsClass
|
|
39032
|
+
browsePathsV2: BrowsePathsV2Class
|
|
39033
|
+
globalTags: GlobalTagsClass
|
|
39034
|
+
glossaryTerms: GlossaryTermsClass
|
|
39035
|
+
access: AccessClass
|
|
39036
|
+
embed: EmbedClass
|
|
39037
|
+
status: StatusClass
|
|
39038
|
+
anomaliesSummary: AnomaliesSummaryClass
|
|
39039
|
+
inputFields: InputFieldsClass
|
|
39040
|
+
cost: CostClass
|
|
39041
|
+
documentation: DocumentationClass
|
|
39042
|
+
proposals: ProposalsClass
|
|
39043
|
+
dataProductKey: DataProductKeyClass
|
|
39044
|
+
dataProductProperties: DataProductPropertiesClass
|
|
39045
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
39046
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
39047
|
+
platformResourceKey: PlatformResourceKeyClass
|
|
39048
|
+
actors: ActorsClass
|
|
39049
|
+
roleProperties: RolePropertiesClass
|
|
39050
|
+
dataHubRemoteExecutorPoolGlobalConfig: RemoteExecutorPoolGlobalConfigClass
|
|
39051
|
+
assertionRunEvent: AssertionRunEventClass
|
|
39052
|
+
assertionAnalyticsRunEvent: AssertionAnalyticsRunEventClass
|
|
39053
|
+
assertionActions: AssertionActionsClass
|
|
39054
|
+
assertionInferenceDetails: AssertionInferenceDetailsClass
|
|
39055
|
+
assertionInfo: AssertionInfoClass
|
|
39056
|
+
assertionDryRunEvent: AssertionDryRunEventClass
|
|
39057
|
+
assertionSummary: AssertionSummaryClass
|
|
39058
|
+
monitorInfo: MonitorInfoClass
|
|
39059
|
+
monitorSuiteInfo: MonitorSuiteInfoClass
|
|
39060
|
+
monitorTimeseriesState: MonitorTimeseriesStateClass
|
|
39061
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
39062
|
+
versionSetProperties: VersionSetPropertiesClass
|
|
39063
|
+
schemaFieldsInferredNeighbors: SchemaFieldsInferredNeighborsClass
|
|
39064
|
+
inferredMetadata: InferredMetadataClass
|
|
39065
|
+
inferredNeighbors: InferredNeighborsClass
|
|
39066
|
+
schemaFieldsInferredMetadata: SchemaFieldsInferredMetadataClass
|
|
39067
|
+
incidentNotificationDetails: IncidentNotificationDetailsClass
|
|
39068
|
+
incidentInfo: IncidentInfoClass
|
|
39069
|
+
incidentActivityEvent: IncidentActivityEventClass
|
|
39070
|
+
incidentSource: IncidentSourceClass
|
|
39071
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
39072
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
39073
|
+
corpGroupSettings: CorpGroupSettingsClass
|
|
39074
|
+
corpUserInfo: CorpUserInfoClass
|
|
39075
|
+
corpGroupInfo: CorpGroupInfoClass
|
|
39076
|
+
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
39077
|
+
inviteToken: InviteTokenClass
|
|
39078
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
39079
|
+
roleMembership: RoleMembershipClass
|
|
39080
|
+
groupMembership: GroupMembershipClass
|
|
39081
|
+
corpUserStatus: CorpUserStatusClass
|
|
39082
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
39083
|
+
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
39084
|
+
corpUserSettings: CorpUserSettingsClass
|
|
39085
|
+
dataHubMetricCubeDefinition: DataHubMetricCubeDefinitionClass
|
|
39086
|
+
dataHubMetricCubeEvent: DataHubMetricCubeEventClass
|
|
39087
|
+
postInfo: PostInfoClass
|
|
39088
|
+
dataContractStatus: DataContractStatusClass
|
|
39089
|
+
dataContractProperties: DataContractPropertiesClass
|
|
39090
|
+
monitorAnomalyEvent: MonitorAnomalyEventClass
|
|
39091
|
+
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
39092
|
+
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
39093
|
+
upstreamLineage: UpstreamLineageClass
|
|
39094
|
+
viewProperties: ViewPropertiesClass
|
|
39095
|
+
partitionsSummary: PartitionsSummaryClass
|
|
39096
|
+
schemaFieldProfile: SchemaFieldProfileClass
|
|
39097
|
+
datasetProfile: DatasetProfileClass
|
|
39098
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
39099
|
+
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
39100
|
+
datasetProperties: DatasetPropertiesClass
|
|
39101
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
39102
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
38921
39103
|
|
|
38922
39104
|
|
|
38923
39105
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
38924
|
-
'dataProduct': DataProductKeyClass,
|
|
38925
|
-
'dataType': DataTypeKeyClass,
|
|
38926
|
-
'businessAttribute': BusinessAttributeKeyClass,
|
|
38927
|
-
'structuredProperty': StructuredPropertyKeyClass,
|
|
38928
|
-
'platformResource': PlatformResourceKeyClass,
|
|
38929
39106
|
'entityType': EntityTypeKeyClass,
|
|
38930
|
-
'
|
|
38931
|
-
'
|
|
38932
|
-
'
|
|
38933
|
-
'
|
|
38934
|
-
'mlFeature': MLFeatureKeyClass,
|
|
38935
|
-
'dataHubRemoteExecutorGlobalConfig': RemoteExecutorGlobalConfigKeyClass,
|
|
38936
|
-
'dataHubPersona': DataHubPersonaKeyClass,
|
|
38937
|
-
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
38938
|
-
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
38939
|
-
'container': ContainerKeyClass,
|
|
39107
|
+
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
39108
|
+
'query': QueryKeyClass,
|
|
39109
|
+
'dataJob': DataJobKeyClass,
|
|
39110
|
+
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
38940
39111
|
'telemetry': TelemetryKeyClass,
|
|
38941
|
-
'dataset': DatasetKeyClass,
|
|
38942
|
-
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
38943
|
-
'dataFlow': DataFlowKeyClass,
|
|
38944
|
-
'dataHubSecret': DataHubSecretKeyClass,
|
|
38945
|
-
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
38946
|
-
'dataContract': DataContractKeyClass,
|
|
38947
|
-
'inviteToken': InviteTokenKeyClass,
|
|
38948
|
-
'actionRequest': ActionRequestKeyClass,
|
|
38949
39112
|
'chart': ChartKeyClass,
|
|
38950
|
-
'
|
|
39113
|
+
'dataHubView': DataHubViewKeyClass,
|
|
39114
|
+
'dataset': DatasetKeyClass,
|
|
39115
|
+
'dataPlatform': DataPlatformKeyClass,
|
|
39116
|
+
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
39117
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
39118
|
+
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
39119
|
+
'dataHubRetention': DataHubRetentionKeyClass,
|
|
39120
|
+
'dataHubStepState': DataHubStepStateKeyClass,
|
|
39121
|
+
'recommendationModule': RecommendationModuleKeyClass,
|
|
39122
|
+
'container': ContainerKeyClass,
|
|
39123
|
+
'role': RoleKeyClass,
|
|
39124
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
39125
|
+
'domain': DomainKeyClass,
|
|
39126
|
+
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
39127
|
+
'dataHubRemoteExecutorPool': RemoteExecutorPoolKeyClass,
|
|
39128
|
+
'dataHubMetricCube': DataHubMetricCubeKeyClass,
|
|
38951
39129
|
'globalSettings': GlobalSettingsKeyClass,
|
|
38952
|
-
'
|
|
39130
|
+
'actionRequest': ActionRequestKeyClass,
|
|
39131
|
+
'corpuser': CorpUserKeyClass,
|
|
39132
|
+
'glossaryNode': GlossaryNodeKeyClass,
|
|
38953
39133
|
'subscription': SubscriptionKeyClass,
|
|
38954
|
-
'
|
|
38955
|
-
'
|
|
39134
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
39135
|
+
'test': TestKeyClass,
|
|
38956
39136
|
'mlModelGroup': MLModelGroupKeyClass,
|
|
38957
|
-
'
|
|
38958
|
-
'
|
|
39137
|
+
'dataFlow': DataFlowKeyClass,
|
|
39138
|
+
'dataHubPersona': DataHubPersonaKeyClass,
|
|
38959
39139
|
'monitor': MonitorKeyClass,
|
|
38960
|
-
'incident': IncidentKeyClass,
|
|
38961
|
-
'constraint': ConstraintKeyClass,
|
|
38962
|
-
'role': RoleKeyClass,
|
|
38963
|
-
'dashboard': DashboardKeyClass,
|
|
38964
|
-
'glossaryNode': GlossaryNodeKeyClass,
|
|
38965
|
-
'dataHubView': DataHubViewKeyClass,
|
|
38966
|
-
'dataHubRetention': DataHubRetentionKeyClass,
|
|
38967
|
-
'dataHubRemoteExecutorPool': RemoteExecutorPoolKeyClass,
|
|
38968
|
-
'schemaField': SchemaFieldKeyClass,
|
|
38969
39140
|
'versionSet': VersionSetKeyClass,
|
|
38970
|
-
'
|
|
38971
|
-
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
38972
|
-
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
38973
|
-
'linkPreview': LinkPreviewKeyClass,
|
|
38974
|
-
'dataHubRole': DataHubRoleKeyClass,
|
|
38975
|
-
'dataHubMetricCube': DataHubMetricCubeKeyClass,
|
|
38976
|
-
'dataHubAction': DataHubActionKeyClass,
|
|
38977
|
-
'dataHubStepState': DataHubStepStateKeyClass,
|
|
39141
|
+
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
38978
39142
|
'assertion': AssertionKeyClass,
|
|
38979
|
-
'
|
|
38980
|
-
'
|
|
38981
|
-
'
|
|
39143
|
+
'constraint': ConstraintKeyClass,
|
|
39144
|
+
'corpGroup': CorpGroupKeyClass,
|
|
39145
|
+
'dataHubAction': DataHubActionKeyClass,
|
|
39146
|
+
'dataContract': DataContractKeyClass,
|
|
39147
|
+
'dataHubRemoteExecutorGlobalConfig': RemoteExecutorGlobalConfigKeyClass,
|
|
39148
|
+
'dataHubSecret': DataHubSecretKeyClass,
|
|
39149
|
+
'form': FormKeyClass,
|
|
39150
|
+
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
39151
|
+
'schemaField': SchemaFieldKeyClass,
|
|
38982
39152
|
'tag': TagKeyClass,
|
|
39153
|
+
'dataProcess': DataProcessKeyClass,
|
|
39154
|
+
'glossaryTerm': GlossaryTermKeyClass,
|
|
39155
|
+
'post': PostKeyClass,
|
|
39156
|
+
'dashboard': DashboardKeyClass,
|
|
38983
39157
|
'dataHubConnection': DataHubConnectionKeyClass,
|
|
39158
|
+
'mlModel': MLModelKeyClass,
|
|
39159
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
38984
39160
|
'dataHubRemoteExecutor': RemoteExecutorKeyClass,
|
|
38985
|
-
'
|
|
39161
|
+
'mlFeature': MLFeatureKeyClass,
|
|
38986
39162
|
'monitorSuite': MonitorSuiteKeyClass,
|
|
38987
|
-
'
|
|
38988
|
-
'
|
|
38989
|
-
'
|
|
38990
|
-
'
|
|
38991
|
-
'
|
|
39163
|
+
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
39164
|
+
'ownershipType': OwnershipTypeKeyClass,
|
|
39165
|
+
'incident': IncidentKeyClass,
|
|
39166
|
+
'inviteToken': InviteTokenKeyClass,
|
|
39167
|
+
'linkPreview': LinkPreviewKeyClass,
|
|
39168
|
+
'notebook': NotebookKeyClass,
|
|
39169
|
+
'dataHubRole': DataHubRoleKeyClass,
|
|
39170
|
+
'businessAttribute': BusinessAttributeKeyClass,
|
|
39171
|
+
'structuredProperty': StructuredPropertyKeyClass,
|
|
39172
|
+
'dataType': DataTypeKeyClass,
|
|
39173
|
+
'dataProduct': DataProductKeyClass,
|
|
39174
|
+
'platformResource': PlatformResourceKeyClass
|
|
38992
39175
|
}
|
|
38993
39176
|
|
|
38994
39177
|
ENTITY_TYPE_NAMES: List[str] = [
|
|
38995
|
-
'dataProduct',
|
|
38996
|
-
'dataType',
|
|
38997
|
-
'businessAttribute',
|
|
38998
|
-
'structuredProperty',
|
|
38999
|
-
'platformResource',
|
|
39000
39178
|
'entityType',
|
|
39001
|
-
'
|
|
39002
|
-
'
|
|
39003
|
-
'
|
|
39004
|
-
'
|
|
39005
|
-
'mlFeature',
|
|
39006
|
-
'dataHubRemoteExecutorGlobalConfig',
|
|
39007
|
-
'dataHubPersona',
|
|
39008
|
-
'dataPlatformInstance',
|
|
39009
|
-
'erModelRelationship',
|
|
39010
|
-
'container',
|
|
39179
|
+
'dataHubOpenAPISchema',
|
|
39180
|
+
'query',
|
|
39181
|
+
'dataJob',
|
|
39182
|
+
'dataHubAccessToken',
|
|
39011
39183
|
'telemetry',
|
|
39012
|
-
'dataset',
|
|
39013
|
-
'dataHubIngestionSource',
|
|
39014
|
-
'dataFlow',
|
|
39015
|
-
'dataHubSecret',
|
|
39016
|
-
'dataHubUpgrade',
|
|
39017
|
-
'dataContract',
|
|
39018
|
-
'inviteToken',
|
|
39019
|
-
'actionRequest',
|
|
39020
39184
|
'chart',
|
|
39021
|
-
'
|
|
39185
|
+
'dataHubView',
|
|
39186
|
+
'dataset',
|
|
39187
|
+
'dataPlatform',
|
|
39188
|
+
'dataPlatformInstance',
|
|
39189
|
+
'dataHubPolicy',
|
|
39190
|
+
'dataHubExecutionRequest',
|
|
39191
|
+
'dataHubRetention',
|
|
39192
|
+
'dataHubStepState',
|
|
39193
|
+
'recommendationModule',
|
|
39194
|
+
'container',
|
|
39195
|
+
'role',
|
|
39196
|
+
'dataProcessInstance',
|
|
39197
|
+
'domain',
|
|
39198
|
+
'erModelRelationship',
|
|
39199
|
+
'dataHubRemoteExecutorPool',
|
|
39200
|
+
'dataHubMetricCube',
|
|
39022
39201
|
'globalSettings',
|
|
39023
|
-
'
|
|
39202
|
+
'actionRequest',
|
|
39203
|
+
'corpuser',
|
|
39204
|
+
'glossaryNode',
|
|
39024
39205
|
'subscription',
|
|
39025
|
-
'
|
|
39026
|
-
'
|
|
39206
|
+
'mlPrimaryKey',
|
|
39207
|
+
'test',
|
|
39027
39208
|
'mlModelGroup',
|
|
39028
|
-
'
|
|
39029
|
-
'
|
|
39209
|
+
'dataFlow',
|
|
39210
|
+
'dataHubPersona',
|
|
39030
39211
|
'monitor',
|
|
39031
|
-
'incident',
|
|
39032
|
-
'constraint',
|
|
39033
|
-
'role',
|
|
39034
|
-
'dashboard',
|
|
39035
|
-
'glossaryNode',
|
|
39036
|
-
'dataHubView',
|
|
39037
|
-
'dataHubRetention',
|
|
39038
|
-
'dataHubRemoteExecutorPool',
|
|
39039
|
-
'schemaField',
|
|
39040
39212
|
'versionSet',
|
|
39041
|
-
'
|
|
39042
|
-
'mlPrimaryKey',
|
|
39043
|
-
'dataHubAccessToken',
|
|
39044
|
-
'linkPreview',
|
|
39045
|
-
'dataHubRole',
|
|
39046
|
-
'dataHubMetricCube',
|
|
39047
|
-
'dataHubAction',
|
|
39048
|
-
'dataHubStepState',
|
|
39213
|
+
'dataHubUpgrade',
|
|
39049
39214
|
'assertion',
|
|
39050
|
-
'
|
|
39051
|
-
'
|
|
39052
|
-
'
|
|
39215
|
+
'constraint',
|
|
39216
|
+
'corpGroup',
|
|
39217
|
+
'dataHubAction',
|
|
39218
|
+
'dataContract',
|
|
39219
|
+
'dataHubRemoteExecutorGlobalConfig',
|
|
39220
|
+
'dataHubSecret',
|
|
39221
|
+
'form',
|
|
39222
|
+
'mlFeatureTable',
|
|
39223
|
+
'schemaField',
|
|
39053
39224
|
'tag',
|
|
39225
|
+
'dataProcess',
|
|
39226
|
+
'glossaryTerm',
|
|
39227
|
+
'post',
|
|
39228
|
+
'dashboard',
|
|
39054
39229
|
'dataHubConnection',
|
|
39230
|
+
'mlModel',
|
|
39231
|
+
'dataHubIngestionSource',
|
|
39055
39232
|
'dataHubRemoteExecutor',
|
|
39056
|
-
'
|
|
39233
|
+
'mlFeature',
|
|
39057
39234
|
'monitorSuite',
|
|
39058
|
-
'
|
|
39059
|
-
'
|
|
39060
|
-
'
|
|
39061
|
-
'
|
|
39062
|
-
'
|
|
39063
|
-
|
|
39064
|
-
|
|
39065
|
-
'dataProduct',
|
|
39066
|
-
'dataType',
|
|
39235
|
+
'mlModelDeployment',
|
|
39236
|
+
'ownershipType',
|
|
39237
|
+
'incident',
|
|
39238
|
+
'inviteToken',
|
|
39239
|
+
'linkPreview',
|
|
39240
|
+
'notebook',
|
|
39241
|
+
'dataHubRole',
|
|
39067
39242
|
'businessAttribute',
|
|
39068
39243
|
'structuredProperty',
|
|
39069
|
-
'
|
|
39244
|
+
'dataType',
|
|
39245
|
+
'dataProduct',
|
|
39246
|
+
'platformResource'
|
|
39247
|
+
]
|
|
39248
|
+
EntityTypeName = Literal[
|
|
39070
39249
|
'entityType',
|
|
39071
|
-
'
|
|
39072
|
-
'
|
|
39073
|
-
'
|
|
39074
|
-
'
|
|
39075
|
-
'mlFeature',
|
|
39076
|
-
'dataHubRemoteExecutorGlobalConfig',
|
|
39077
|
-
'dataHubPersona',
|
|
39078
|
-
'dataPlatformInstance',
|
|
39079
|
-
'erModelRelationship',
|
|
39080
|
-
'container',
|
|
39250
|
+
'dataHubOpenAPISchema',
|
|
39251
|
+
'query',
|
|
39252
|
+
'dataJob',
|
|
39253
|
+
'dataHubAccessToken',
|
|
39081
39254
|
'telemetry',
|
|
39082
|
-
'dataset',
|
|
39083
|
-
'dataHubIngestionSource',
|
|
39084
|
-
'dataFlow',
|
|
39085
|
-
'dataHubSecret',
|
|
39086
|
-
'dataHubUpgrade',
|
|
39087
|
-
'dataContract',
|
|
39088
|
-
'inviteToken',
|
|
39089
|
-
'actionRequest',
|
|
39090
39255
|
'chart',
|
|
39091
|
-
'
|
|
39256
|
+
'dataHubView',
|
|
39257
|
+
'dataset',
|
|
39258
|
+
'dataPlatform',
|
|
39259
|
+
'dataPlatformInstance',
|
|
39260
|
+
'dataHubPolicy',
|
|
39261
|
+
'dataHubExecutionRequest',
|
|
39262
|
+
'dataHubRetention',
|
|
39263
|
+
'dataHubStepState',
|
|
39264
|
+
'recommendationModule',
|
|
39265
|
+
'container',
|
|
39266
|
+
'role',
|
|
39267
|
+
'dataProcessInstance',
|
|
39268
|
+
'domain',
|
|
39269
|
+
'erModelRelationship',
|
|
39270
|
+
'dataHubRemoteExecutorPool',
|
|
39271
|
+
'dataHubMetricCube',
|
|
39092
39272
|
'globalSettings',
|
|
39093
|
-
'
|
|
39273
|
+
'actionRequest',
|
|
39274
|
+
'corpuser',
|
|
39275
|
+
'glossaryNode',
|
|
39094
39276
|
'subscription',
|
|
39095
|
-
'
|
|
39096
|
-
'
|
|
39277
|
+
'mlPrimaryKey',
|
|
39278
|
+
'test',
|
|
39097
39279
|
'mlModelGroup',
|
|
39098
|
-
'
|
|
39099
|
-
'
|
|
39280
|
+
'dataFlow',
|
|
39281
|
+
'dataHubPersona',
|
|
39100
39282
|
'monitor',
|
|
39101
|
-
'incident',
|
|
39102
|
-
'constraint',
|
|
39103
|
-
'role',
|
|
39104
|
-
'dashboard',
|
|
39105
|
-
'glossaryNode',
|
|
39106
|
-
'dataHubView',
|
|
39107
|
-
'dataHubRetention',
|
|
39108
|
-
'dataHubRemoteExecutorPool',
|
|
39109
|
-
'schemaField',
|
|
39110
39283
|
'versionSet',
|
|
39111
|
-
'
|
|
39112
|
-
'mlPrimaryKey',
|
|
39113
|
-
'dataHubAccessToken',
|
|
39114
|
-
'linkPreview',
|
|
39115
|
-
'dataHubRole',
|
|
39116
|
-
'dataHubMetricCube',
|
|
39117
|
-
'dataHubAction',
|
|
39118
|
-
'dataHubStepState',
|
|
39284
|
+
'dataHubUpgrade',
|
|
39119
39285
|
'assertion',
|
|
39120
|
-
'
|
|
39121
|
-
'
|
|
39122
|
-
'
|
|
39286
|
+
'constraint',
|
|
39287
|
+
'corpGroup',
|
|
39288
|
+
'dataHubAction',
|
|
39289
|
+
'dataContract',
|
|
39290
|
+
'dataHubRemoteExecutorGlobalConfig',
|
|
39291
|
+
'dataHubSecret',
|
|
39292
|
+
'form',
|
|
39293
|
+
'mlFeatureTable',
|
|
39294
|
+
'schemaField',
|
|
39123
39295
|
'tag',
|
|
39296
|
+
'dataProcess',
|
|
39297
|
+
'glossaryTerm',
|
|
39298
|
+
'post',
|
|
39299
|
+
'dashboard',
|
|
39124
39300
|
'dataHubConnection',
|
|
39301
|
+
'mlModel',
|
|
39302
|
+
'dataHubIngestionSource',
|
|
39125
39303
|
'dataHubRemoteExecutor',
|
|
39126
|
-
'
|
|
39304
|
+
'mlFeature',
|
|
39127
39305
|
'monitorSuite',
|
|
39128
|
-
'
|
|
39129
|
-
'
|
|
39130
|
-
'
|
|
39131
|
-
'
|
|
39132
|
-
'
|
|
39306
|
+
'mlModelDeployment',
|
|
39307
|
+
'ownershipType',
|
|
39308
|
+
'incident',
|
|
39309
|
+
'inviteToken',
|
|
39310
|
+
'linkPreview',
|
|
39311
|
+
'notebook',
|
|
39312
|
+
'dataHubRole',
|
|
39313
|
+
'businessAttribute',
|
|
39314
|
+
'structuredProperty',
|
|
39315
|
+
'dataType',
|
|
39316
|
+
'dataProduct',
|
|
39317
|
+
'platformResource'
|
|
39133
39318
|
]
|
|
39134
39319
|
|
|
39135
39320
|
# fmt: on
|