acryl-datahub-cloud 0.3.12rc1__py3-none-any.whl → 0.3.12rc4__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/datahub_forms_notifications/forms_notifications_source.py +559 -0
- acryl_datahub_cloud/datahub_forms_notifications/get_search_results_total.gql +14 -0
- acryl_datahub_cloud/datahub_forms_notifications/query.py +17 -0
- acryl_datahub_cloud/datahub_forms_notifications/scroll_forms_for_notification.gql +29 -0
- acryl_datahub_cloud/datahub_forms_notifications/send_form_notification_request.gql +5 -0
- acryl_datahub_cloud/datahub_usage_reporting/query_builder.py +48 -8
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +49 -40
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +1842 -1786
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/form/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/notification/__init__.py +19 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +24861 -24050
- acryl_datahub_cloud/metadata/schema_classes.py +1031 -631
- acryl_datahub_cloud/metadata/schemas/ApplicationKey.avsc +31 -0
- acryl_datahub_cloud/metadata/schemas/ApplicationProperties.avsc +72 -0
- acryl_datahub_cloud/metadata/schemas/Applications.avsc +38 -0
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +40 -7
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +27 -6
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +31 -7
- acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc +14 -0
- acryl_datahub_cloud/metadata/schemas/ChartKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/ConstraintInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/ContainerKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DashboardKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataFlowKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/DataJobKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/DataProductProperties.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/FormAssignmentStatus.avsc +36 -0
- acryl_datahub_cloud/metadata/schemas/FormInfo.avsc +6 -0
- acryl_datahub_cloud/metadata/schemas/FormKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/FormNotifications.avsc +69 -0
- acryl_datahub_cloud/metadata/schemas/FormSettings.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +22 -0
- acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +12 -1
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +27 -6
- acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +1 -0
- acryl_datahub_cloud/notifications/__init__.py +0 -0
- acryl_datahub_cloud/notifications/notification_recipient_builder.py +399 -0
- acryl_datahub_cloud/sdk/__init__.py +29 -0
- acryl_datahub_cloud/{_sdk_extras → sdk}/assertion.py +501 -193
- acryl_datahub_cloud/sdk/assertion_input/__init__.py +0 -0
- acryl_datahub_cloud/{_sdk_extras → sdk/assertion_input}/assertion_input.py +733 -189
- acryl_datahub_cloud/sdk/assertion_input/freshness_assertion_input.py +261 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_column_metric_assertion_input.py +947 -0
- acryl_datahub_cloud/sdk/assertions_client.py +1639 -0
- acryl_datahub_cloud/sdk/entities/__init__.py +0 -0
- acryl_datahub_cloud/{_sdk_extras → sdk}/entities/assertion.py +5 -2
- acryl_datahub_cloud/{_sdk_extras → sdk}/subscription_client.py +146 -33
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc4.dist-info}/METADATA +48 -43
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc4.dist-info}/RECORD +72 -54
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc4.dist-info}/entry_points.txt +1 -0
- acryl_datahub_cloud/_sdk_extras/__init__.py +0 -19
- acryl_datahub_cloud/_sdk_extras/assertions_client.py +0 -717
- /acryl_datahub_cloud/{_sdk_extras/entities → datahub_forms_notifications}/__init__.py +0 -0
- /acryl_datahub_cloud/{_sdk_extras → sdk}/entities/monitor.py +0 -0
- /acryl_datahub_cloud/{_sdk_extras → sdk}/entities/subscription.py +0 -0
- /acryl_datahub_cloud/{_sdk_extras → sdk}/errors.py +0 -0
- /acryl_datahub_cloud/{_sdk_extras → sdk}/resolver_client.py +0 -0
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc4.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12rc1.dist-info → acryl_datahub_cloud-0.3.12rc4.dist-info}/top_level.txt +0 -0
|
@@ -1929,6 +1929,136 @@ class MonitorAnomalyEventClass(_Aspect):
|
|
|
1929
1929
|
self._inner_dict['lastUpdated'] = value
|
|
1930
1930
|
|
|
1931
1931
|
|
|
1932
|
+
class ApplicationKeyClass(_Aspect):
|
|
1933
|
+
"""Key for a Query"""
|
|
1934
|
+
|
|
1935
|
+
|
|
1936
|
+
ASPECT_NAME = 'applicationKey'
|
|
1937
|
+
ASPECT_INFO = {'keyForEntity': 'application', 'entityCategory': 'core', 'entityAspects': ['applicationProperties', 'ownership', 'glossaryTerms', 'globalTags', 'domains', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
1938
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.ApplicationKey")
|
|
1939
|
+
|
|
1940
|
+
def __init__(self,
|
|
1941
|
+
id: str,
|
|
1942
|
+
):
|
|
1943
|
+
super().__init__()
|
|
1944
|
+
|
|
1945
|
+
self.id = id
|
|
1946
|
+
|
|
1947
|
+
def _restore_defaults(self) -> None:
|
|
1948
|
+
self.id = str()
|
|
1949
|
+
|
|
1950
|
+
|
|
1951
|
+
@property
|
|
1952
|
+
def id(self) -> str:
|
|
1953
|
+
"""A unique id for the Application."""
|
|
1954
|
+
return self._inner_dict.get('id') # type: ignore
|
|
1955
|
+
|
|
1956
|
+
@id.setter
|
|
1957
|
+
def id(self, value: str) -> None:
|
|
1958
|
+
self._inner_dict['id'] = value
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
class ApplicationPropertiesClass(_Aspect):
|
|
1962
|
+
"""The main properties of an Application"""
|
|
1963
|
+
|
|
1964
|
+
|
|
1965
|
+
ASPECT_NAME = 'applicationProperties'
|
|
1966
|
+
ASPECT_INFO = {}
|
|
1967
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.ApplicationProperties")
|
|
1968
|
+
|
|
1969
|
+
def __init__(self,
|
|
1970
|
+
customProperties: Optional[Dict[str, str]]=None,
|
|
1971
|
+
externalUrl: Union[None, str]=None,
|
|
1972
|
+
name: Union[None, str]=None,
|
|
1973
|
+
description: Union[None, str]=None,
|
|
1974
|
+
):
|
|
1975
|
+
super().__init__()
|
|
1976
|
+
|
|
1977
|
+
if customProperties is None:
|
|
1978
|
+
# default: {}
|
|
1979
|
+
self.customProperties = dict()
|
|
1980
|
+
else:
|
|
1981
|
+
self.customProperties = customProperties
|
|
1982
|
+
self.externalUrl = externalUrl
|
|
1983
|
+
self.name = name
|
|
1984
|
+
self.description = description
|
|
1985
|
+
|
|
1986
|
+
def _restore_defaults(self) -> None:
|
|
1987
|
+
self.customProperties = dict()
|
|
1988
|
+
self.externalUrl = self.RECORD_SCHEMA.fields_dict["externalUrl"].default
|
|
1989
|
+
self.name = self.RECORD_SCHEMA.fields_dict["name"].default
|
|
1990
|
+
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
1991
|
+
|
|
1992
|
+
|
|
1993
|
+
@property
|
|
1994
|
+
def customProperties(self) -> Dict[str, str]:
|
|
1995
|
+
"""Custom property bag."""
|
|
1996
|
+
return self._inner_dict.get('customProperties') # type: ignore
|
|
1997
|
+
|
|
1998
|
+
@customProperties.setter
|
|
1999
|
+
def customProperties(self, value: Dict[str, str]) -> None:
|
|
2000
|
+
self._inner_dict['customProperties'] = value
|
|
2001
|
+
|
|
2002
|
+
|
|
2003
|
+
@property
|
|
2004
|
+
def externalUrl(self) -> Union[None, str]:
|
|
2005
|
+
"""URL where the reference exist"""
|
|
2006
|
+
return self._inner_dict.get('externalUrl') # type: ignore
|
|
2007
|
+
|
|
2008
|
+
@externalUrl.setter
|
|
2009
|
+
def externalUrl(self, value: Union[None, str]) -> None:
|
|
2010
|
+
self._inner_dict['externalUrl'] = value
|
|
2011
|
+
|
|
2012
|
+
|
|
2013
|
+
@property
|
|
2014
|
+
def name(self) -> Union[None, str]:
|
|
2015
|
+
"""Display name of the Application"""
|
|
2016
|
+
return self._inner_dict.get('name') # type: ignore
|
|
2017
|
+
|
|
2018
|
+
@name.setter
|
|
2019
|
+
def name(self, value: Union[None, str]) -> None:
|
|
2020
|
+
self._inner_dict['name'] = value
|
|
2021
|
+
|
|
2022
|
+
|
|
2023
|
+
@property
|
|
2024
|
+
def description(self) -> Union[None, str]:
|
|
2025
|
+
"""Documentation of the application"""
|
|
2026
|
+
return self._inner_dict.get('description') # type: ignore
|
|
2027
|
+
|
|
2028
|
+
@description.setter
|
|
2029
|
+
def description(self, value: Union[None, str]) -> None:
|
|
2030
|
+
self._inner_dict['description'] = value
|
|
2031
|
+
|
|
2032
|
+
|
|
2033
|
+
class ApplicationsClass(_Aspect):
|
|
2034
|
+
"""Links from an Asset to its Applications"""
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
ASPECT_NAME = 'applications'
|
|
2038
|
+
ASPECT_INFO = {}
|
|
2039
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.Applications")
|
|
2040
|
+
|
|
2041
|
+
def __init__(self,
|
|
2042
|
+
applications: List[str],
|
|
2043
|
+
):
|
|
2044
|
+
super().__init__()
|
|
2045
|
+
|
|
2046
|
+
self.applications = applications
|
|
2047
|
+
|
|
2048
|
+
def _restore_defaults(self) -> None:
|
|
2049
|
+
self.applications = list()
|
|
2050
|
+
|
|
2051
|
+
|
|
2052
|
+
@property
|
|
2053
|
+
def applications(self) -> List[str]:
|
|
2054
|
+
"""The Applications attached to an Asset"""
|
|
2055
|
+
return self._inner_dict.get('applications') # type: ignore
|
|
2056
|
+
|
|
2057
|
+
@applications.setter
|
|
2058
|
+
def applications(self, value: List[str]) -> None:
|
|
2059
|
+
self._inner_dict['applications'] = value
|
|
2060
|
+
|
|
2061
|
+
|
|
1932
2062
|
class AdjustmentAlgorithmClass(object):
|
|
1933
2063
|
"""The adjustment algorithm to use when determining the threshold for an assertion."""
|
|
1934
2064
|
|
|
@@ -6632,6 +6762,7 @@ class AssertionsSummaryClass(_Aspect):
|
|
|
6632
6762
|
def __init__(self,
|
|
6633
6763
|
failingAssertions: Optional[List[str]]=None,
|
|
6634
6764
|
passingAssertions: Optional[List[str]]=None,
|
|
6765
|
+
lastAssertionResultAt: Union[None, int]=None,
|
|
6635
6766
|
passingAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
|
|
6636
6767
|
failingAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
|
|
6637
6768
|
erroringAssertionDetails: Optional[List["AssertionSummaryDetailsClass"]]=None,
|
|
@@ -6648,6 +6779,7 @@ class AssertionsSummaryClass(_Aspect):
|
|
|
6648
6779
|
self.passingAssertions = list()
|
|
6649
6780
|
else:
|
|
6650
6781
|
self.passingAssertions = passingAssertions
|
|
6782
|
+
self.lastAssertionResultAt = lastAssertionResultAt
|
|
6651
6783
|
if passingAssertionDetails is None:
|
|
6652
6784
|
# default: []
|
|
6653
6785
|
self.passingAssertionDetails = list()
|
|
@@ -6667,6 +6799,7 @@ class AssertionsSummaryClass(_Aspect):
|
|
|
6667
6799
|
def _restore_defaults(self) -> None:
|
|
6668
6800
|
self.failingAssertions = list()
|
|
6669
6801
|
self.passingAssertions = list()
|
|
6802
|
+
self.lastAssertionResultAt = self.RECORD_SCHEMA.fields_dict["lastAssertionResultAt"].default
|
|
6670
6803
|
self.passingAssertionDetails = list()
|
|
6671
6804
|
self.failingAssertionDetails = list()
|
|
6672
6805
|
self.erroringAssertionDetails = list()
|
|
@@ -6694,6 +6827,16 @@ class AssertionsSummaryClass(_Aspect):
|
|
|
6694
6827
|
self._inner_dict['passingAssertions'] = value
|
|
6695
6828
|
|
|
6696
6829
|
|
|
6830
|
+
@property
|
|
6831
|
+
def lastAssertionResultAt(self) -> Union[None, int]:
|
|
6832
|
+
"""The last time an assertion was run."""
|
|
6833
|
+
return self._inner_dict.get('lastAssertionResultAt') # type: ignore
|
|
6834
|
+
|
|
6835
|
+
@lastAssertionResultAt.setter
|
|
6836
|
+
def lastAssertionResultAt(self, value: Union[None, int]) -> None:
|
|
6837
|
+
self._inner_dict['lastAssertionResultAt'] = value
|
|
6838
|
+
|
|
6839
|
+
|
|
6697
6840
|
@property
|
|
6698
6841
|
def passingAssertionDetails(self) -> List["AssertionSummaryDetailsClass"]:
|
|
6699
6842
|
"""Summary details about the set of passing assertions"""
|
|
@@ -14282,7 +14425,7 @@ class DataProductKeyClass(_Aspect):
|
|
|
14282
14425
|
|
|
14283
14426
|
|
|
14284
14427
|
ASPECT_NAME = 'dataProductKey'
|
|
14285
|
-
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'share', 'origin']}
|
|
14428
|
+
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'applications', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'share', 'origin']}
|
|
14286
14429
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataproduct.DataProductKey")
|
|
14287
14430
|
|
|
14288
14431
|
def __init__(self,
|
|
@@ -14373,7 +14516,7 @@ class DataProductPropertiesClass(_Aspect):
|
|
|
14373
14516
|
|
|
14374
14517
|
@property
|
|
14375
14518
|
def description(self) -> Union[None, str]:
|
|
14376
|
-
"""Documentation of the
|
|
14519
|
+
"""Documentation of the data product"""
|
|
14377
14520
|
return self._inner_dict.get('description') # type: ignore
|
|
14378
14521
|
|
|
14379
14522
|
@description.setter
|
|
@@ -17430,6 +17573,8 @@ class NotificationTemplateTypeClass(object):
|
|
|
17430
17573
|
|
|
17431
17574
|
BROADCAST_PROPOSAL_STATUS_CHANGE = "BROADCAST_PROPOSAL_STATUS_CHANGE"
|
|
17432
17575
|
|
|
17576
|
+
BROADCAST_COMPLIANCE_FORM_PUBLISH = "BROADCAST_COMPLIANCE_FORM_PUBLISH"
|
|
17577
|
+
|
|
17433
17578
|
INVALID_TEMPLATE = "INVALID_TEMPLATE"
|
|
17434
17579
|
|
|
17435
17580
|
|
|
@@ -18233,6 +18378,17 @@ class RemoteExecutorPoolStatusClass(object):
|
|
|
18233
18378
|
|
|
18234
18379
|
|
|
18235
18380
|
|
|
18381
|
+
class AssignmentStatusClass(object):
|
|
18382
|
+
# No docs available.
|
|
18383
|
+
|
|
18384
|
+
IN_PROGRESS = "IN_PROGRESS"
|
|
18385
|
+
"""Assets are currently being assigned"""
|
|
18386
|
+
|
|
18387
|
+
COMPLETE = "COMPLETE"
|
|
18388
|
+
"""Assets assignment is complete"""
|
|
18389
|
+
|
|
18390
|
+
|
|
18391
|
+
|
|
18236
18392
|
class DomainParamsClass(DictWrapper):
|
|
18237
18393
|
"""Information specific to glossary terms prompts."""
|
|
18238
18394
|
|
|
@@ -18361,6 +18517,48 @@ class FormActorAssignmentClass(DictWrapper):
|
|
|
18361
18517
|
self._inner_dict['users'] = value
|
|
18362
18518
|
|
|
18363
18519
|
|
|
18520
|
+
class FormAssignmentStatusClass(_Aspect):
|
|
18521
|
+
# No docs available.
|
|
18522
|
+
|
|
18523
|
+
|
|
18524
|
+
ASPECT_NAME = 'formAssignmentStatus'
|
|
18525
|
+
ASPECT_INFO = {}
|
|
18526
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.form.FormAssignmentStatus")
|
|
18527
|
+
|
|
18528
|
+
def __init__(self,
|
|
18529
|
+
status: Union[str, "AssignmentStatusClass"],
|
|
18530
|
+
timestamp: Union[None, int]=None,
|
|
18531
|
+
):
|
|
18532
|
+
super().__init__()
|
|
18533
|
+
|
|
18534
|
+
self.status = status
|
|
18535
|
+
self.timestamp = timestamp
|
|
18536
|
+
|
|
18537
|
+
def _restore_defaults(self) -> None:
|
|
18538
|
+
self.status = AssignmentStatusClass.IN_PROGRESS
|
|
18539
|
+
self.timestamp = self.RECORD_SCHEMA.fields_dict["timestamp"].default
|
|
18540
|
+
|
|
18541
|
+
|
|
18542
|
+
@property
|
|
18543
|
+
def status(self) -> Union[str, "AssignmentStatusClass"]:
|
|
18544
|
+
"""Notification settings for a form"""
|
|
18545
|
+
return self._inner_dict.get('status') # type: ignore
|
|
18546
|
+
|
|
18547
|
+
@status.setter
|
|
18548
|
+
def status(self, value: Union[str, "AssignmentStatusClass"]) -> None:
|
|
18549
|
+
self._inner_dict['status'] = value
|
|
18550
|
+
|
|
18551
|
+
|
|
18552
|
+
@property
|
|
18553
|
+
def timestamp(self) -> Union[None, int]:
|
|
18554
|
+
"""Timestamp this aspect was last updated at"""
|
|
18555
|
+
return self._inner_dict.get('timestamp') # type: ignore
|
|
18556
|
+
|
|
18557
|
+
@timestamp.setter
|
|
18558
|
+
def timestamp(self, value: Union[None, int]) -> None:
|
|
18559
|
+
self._inner_dict['timestamp'] = value
|
|
18560
|
+
|
|
18561
|
+
|
|
18364
18562
|
class FormInfoClass(_Aspect):
|
|
18365
18563
|
"""Information about a form to help with filling out metadata on entities."""
|
|
18366
18564
|
|
|
@@ -21827,7 +22025,7 @@ class ChartKeyClass(_Aspect):
|
|
|
21827
22025
|
|
|
21828
22026
|
|
|
21829
22027
|
ASPECT_NAME = 'chartKey'
|
|
21830
|
-
ASPECT_INFO = {'keyForEntity': 'chart', 'entityCategory': 'core', 'entityAspects': ['chartInfo', 'editableChartProperties', 'chartQuery', 'inputFields', 'chartUsageStatistics', 'embed', 'browsePaths', 'domains', 'container', 'deprecation', 'ownership', 'status', 'institutionalMemory', 'dataPlatformInstance', 'globalTags', 'glossaryTerms', 'browsePathsV2', 'subTypes', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults', 'usageFeatures', 'lineageFeatures', 'proposals', 'share', 'origin', 'documentation']}
|
|
22028
|
+
ASPECT_INFO = {'keyForEntity': 'chart', 'entityCategory': 'core', 'entityAspects': ['chartInfo', 'editableChartProperties', 'chartQuery', 'inputFields', 'chartUsageStatistics', 'embed', 'browsePaths', 'domains', 'applications', 'container', 'deprecation', 'ownership', 'status', 'institutionalMemory', 'dataPlatformInstance', 'globalTags', 'glossaryTerms', 'browsePathsV2', 'subTypes', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults', 'usageFeatures', 'lineageFeatures', 'proposals', 'share', 'origin', 'documentation']}
|
|
21831
22029
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.ChartKey")
|
|
21832
22030
|
|
|
21833
22031
|
def __init__(self,
|
|
@@ -21898,7 +22096,7 @@ class ContainerKeyClass(_Aspect):
|
|
|
21898
22096
|
|
|
21899
22097
|
|
|
21900
22098
|
ASPECT_NAME = 'containerKey'
|
|
21901
|
-
ASPECT_INFO = {'keyForEntity': 'container', 'entityCategory': 'core', 'entityAspects': ['containerProperties', 'editableContainerProperties', 'dataPlatformInstance', 'subTypes', 'ownership', 'deprecation', 'container', 'globalTags', 'glossaryTerms', 'institutionalMemory', 'browsePaths', 'status', 'domains', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'access', 'proposals', 'share', 'origin', 'documentation'], 'entityDoc': 'A container of related data assets.'}
|
|
22099
|
+
ASPECT_INFO = {'keyForEntity': 'container', 'entityCategory': 'core', 'entityAspects': ['containerProperties', 'editableContainerProperties', 'dataPlatformInstance', 'subTypes', 'ownership', 'deprecation', 'container', 'globalTags', 'glossaryTerms', 'institutionalMemory', 'browsePaths', 'status', 'domains', 'applications', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'access', 'proposals', 'share', 'origin', 'documentation'], 'entityDoc': 'A container of related data assets.'}
|
|
21902
22100
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.ContainerKey")
|
|
21903
22101
|
|
|
21904
22102
|
def __init__(self,
|
|
@@ -21927,7 +22125,7 @@ class CorpGroupKeyClass(_Aspect):
|
|
|
21927
22125
|
|
|
21928
22126
|
|
|
21929
22127
|
ASPECT_NAME = 'corpGroupKey'
|
|
21930
|
-
ASPECT_INFO = {'keyForEntity': 'corpGroup', 'entityCategory': '_unset_', 'entityAspects': ['corpGroupInfo', 'corpGroupEditableInfo', 'globalTags', 'ownership', 'status', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'corpGroupSettings', 'share'], 'entityDoc': 'CorpGroup represents an identity of a group of users in the enterprise.'}
|
|
22128
|
+
ASPECT_INFO = {'keyForEntity': 'corpGroup', 'entityCategory': '_unset_', 'entityAspects': ['corpGroupInfo', 'corpGroupEditableInfo', 'globalTags', 'ownership', 'status', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'corpGroupSettings', 'share', 'formNotifications'], 'entityDoc': 'CorpGroup represents an identity of a group of users in the enterprise.'}
|
|
21931
22129
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.CorpGroupKey")
|
|
21932
22130
|
|
|
21933
22131
|
def __init__(self,
|
|
@@ -21956,7 +22154,7 @@ class CorpUserKeyClass(_Aspect):
|
|
|
21956
22154
|
|
|
21957
22155
|
|
|
21958
22156
|
ASPECT_NAME = 'corpUserKey'
|
|
21959
|
-
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'slackUserInfo', 'share'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
22157
|
+
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'slackUserInfo', 'share', 'formNotifications'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
21960
22158
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.CorpUserKey")
|
|
21961
22159
|
|
|
21962
22160
|
def __init__(self,
|
|
@@ -21985,7 +22183,7 @@ class DashboardKeyClass(_Aspect):
|
|
|
21985
22183
|
|
|
21986
22184
|
|
|
21987
22185
|
ASPECT_NAME = 'dashboardKey'
|
|
21988
|
-
ASPECT_INFO = {'keyForEntity': 'dashboard', 'entityCategory': '_unset_', 'entityAspects': ['domains', 'container', 'deprecation', 'dashboardUsageStatistics', 'inputFields', 'subTypes', 'embed', 'dashboardInfo', 'editableDashboardProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults', 'usageFeatures', 'lineageFeatures', 'proposals', 'share', 'origin', 'documentation']}
|
|
22186
|
+
ASPECT_INFO = {'keyForEntity': 'dashboard', 'entityCategory': '_unset_', 'entityAspects': ['domains', 'applications', 'container', 'deprecation', 'dashboardUsageStatistics', 'inputFields', 'subTypes', 'embed', 'dashboardInfo', 'editableDashboardProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults', 'usageFeatures', 'lineageFeatures', 'proposals', 'share', 'origin', 'documentation']}
|
|
21989
22187
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DashboardKey")
|
|
21990
22188
|
|
|
21991
22189
|
def __init__(self,
|
|
@@ -22056,7 +22254,7 @@ class DataFlowKeyClass(_Aspect):
|
|
|
22056
22254
|
|
|
22057
22255
|
|
|
22058
22256
|
ASPECT_NAME = 'dataFlowKey'
|
|
22059
|
-
ASPECT_INFO = {'keyForEntity': 'dataFlow', 'entityCategory': 'core', 'entityAspects': ['domains', 'deprecation', 'versionInfo', 'dataFlowInfo', 'editableDataFlowProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'subTypes', 'testResults', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
22257
|
+
ASPECT_INFO = {'keyForEntity': 'dataFlow', 'entityCategory': 'core', 'entityAspects': ['domains', 'applications', 'deprecation', 'versionInfo', 'dataFlowInfo', 'editableDataFlowProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'subTypes', 'testResults', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
22060
22258
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataFlowKey")
|
|
22061
22259
|
|
|
22062
22260
|
def __init__(self,
|
|
@@ -22530,7 +22728,7 @@ class DataJobKeyClass(_Aspect):
|
|
|
22530
22728
|
|
|
22531
22729
|
|
|
22532
22730
|
ASPECT_NAME = 'dataJobKey'
|
|
22533
|
-
ASPECT_INFO = {'keyForEntity': 'dataJob', 'entityCategory': '_unset_', 'entityAspects': ['datahubIngestionRunSummary', 'datahubIngestionCheckpoint', 'domains', 'deprecation', 'versionInfo', 'dataJobInfo', 'dataJobInputOutput', 'editableDataJobProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'forms', 'subTypes', 'incidentsSummary', 'testResults', 'dataTransformLogic', 'proposals', 'anomaliesSummary', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
22731
|
+
ASPECT_INFO = {'keyForEntity': 'dataJob', 'entityCategory': '_unset_', 'entityAspects': ['datahubIngestionRunSummary', 'datahubIngestionCheckpoint', 'domains', 'applications', 'deprecation', 'versionInfo', 'dataJobInfo', 'dataJobInputOutput', 'editableDataJobProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'forms', 'subTypes', 'incidentsSummary', 'testResults', 'dataTransformLogic', 'proposals', 'anomaliesSummary', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
22534
22732
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataJobKey")
|
|
22535
22733
|
|
|
22536
22734
|
def __init__(self,
|
|
@@ -22728,7 +22926,7 @@ class DatasetKeyClass(_Aspect):
|
|
|
22728
22926
|
|
|
22729
22927
|
|
|
22730
22928
|
ASPECT_NAME = 'datasetKey'
|
|
22731
|
-
ASPECT_INFO = {'keyForEntity': 'dataset', 'entityCategory': 'core', 'entityAspects': ['viewProperties', 'subTypes', 'datasetProfile', 'datasetUsageStatistics', 'operation', 'domains', 'schemaMetadata', 'status', 'container', 'deprecation', 'testResults', 'siblings', 'embed', 'incidentsSummary', 'datasetProperties', 'editableDatasetProperties', 'datasetDeprecation', 'datasetUpstreamLineage', 'upstreamLineage', 'institutionalMemory', 'ownership', 'editableSchemaMetadata', 'globalTags', 'glossaryTerms', 'browsePaths', 'dataPlatformInstance', 'browsePathsV2', 'access', 'structuredProperties', 'forms', 'partitionsSummary', 'versionProperties', 'icebergCatalogInfo', 'inferredNeighbors', 'inferredMetadata', 'schemaFieldsInferredMetadata', 'schemaFieldsInferredNeighbors', 'assertionsSummary', 'usageFeatures', 'storageFeatures', 'lineageFeatures', 'proposals', 'schemaProposals', 'anomaliesSummary', 'share', 'origin', 'documentation', 'entityInferenceMetadata'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
|
|
22929
|
+
ASPECT_INFO = {'keyForEntity': 'dataset', 'entityCategory': 'core', 'entityAspects': ['viewProperties', 'subTypes', 'datasetProfile', 'datasetUsageStatistics', 'operation', 'domains', 'applications', 'schemaMetadata', 'status', 'container', 'deprecation', 'testResults', 'siblings', 'embed', 'incidentsSummary', 'datasetProperties', 'editableDatasetProperties', 'datasetDeprecation', 'datasetUpstreamLineage', 'upstreamLineage', 'institutionalMemory', 'ownership', 'editableSchemaMetadata', 'globalTags', 'glossaryTerms', 'browsePaths', 'dataPlatformInstance', 'browsePathsV2', 'access', 'structuredProperties', 'forms', 'partitionsSummary', 'versionProperties', 'icebergCatalogInfo', 'inferredNeighbors', 'inferredMetadata', 'schemaFieldsInferredMetadata', 'schemaFieldsInferredNeighbors', 'assertionsSummary', 'usageFeatures', 'storageFeatures', 'lineageFeatures', 'proposals', 'schemaProposals', 'anomaliesSummary', 'share', 'origin', 'documentation', 'entityInferenceMetadata'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
|
|
22732
22930
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DatasetKey")
|
|
22733
22931
|
|
|
22734
22932
|
def __init__(self,
|
|
@@ -22870,7 +23068,7 @@ class FormKeyClass(_Aspect):
|
|
|
22870
23068
|
|
|
22871
23069
|
|
|
22872
23070
|
ASPECT_NAME = 'formKey'
|
|
22873
|
-
ASPECT_INFO = {'keyForEntity': 'form', 'entityCategory': 'core', 'entityAspects': ['formInfo', 'dynamicFormAssignment', 'ownership', 'formSettings']}
|
|
23071
|
+
ASPECT_INFO = {'keyForEntity': 'form', 'entityCategory': 'core', 'entityAspects': ['formInfo', 'dynamicFormAssignment', 'ownership', 'formSettings', 'formAssignmentStatus']}
|
|
22874
23072
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.FormKey")
|
|
22875
23073
|
|
|
22876
23074
|
def __init__(self,
|
|
@@ -22989,7 +23187,7 @@ class GlossaryTermKeyClass(_Aspect):
|
|
|
22989
23187
|
|
|
22990
23188
|
|
|
22991
23189
|
ASPECT_NAME = 'glossaryTermKey'
|
|
22992
|
-
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'share', 'origin']}
|
|
23190
|
+
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'applications', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'share', 'origin']}
|
|
22993
23191
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.GlossaryTermKey")
|
|
22994
23192
|
|
|
22995
23193
|
def __init__(self,
|
|
@@ -23105,7 +23303,7 @@ class MLFeatureKeyClass(_Aspect):
|
|
|
23105
23303
|
|
|
23106
23304
|
|
|
23107
23305
|
ASPECT_NAME = 'mlFeatureKey'
|
|
23108
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation', 'incidentsSummary']}
|
|
23306
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'applications', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation', 'incidentsSummary']}
|
|
23109
23307
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureKey")
|
|
23110
23308
|
|
|
23111
23309
|
def __init__(self,
|
|
@@ -23147,7 +23345,7 @@ class MLFeatureTableKeyClass(_Aspect):
|
|
|
23147
23345
|
|
|
23148
23346
|
|
|
23149
23347
|
ASPECT_NAME = 'mlFeatureTableKey'
|
|
23150
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
23348
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'applications', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
23151
23349
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureTableKey")
|
|
23152
23350
|
|
|
23153
23351
|
def __init__(self,
|
|
@@ -23244,7 +23442,7 @@ class MLModelGroupKeyClass(_Aspect):
|
|
|
23244
23442
|
|
|
23245
23443
|
|
|
23246
23444
|
ASPECT_NAME = 'mlModelGroupKey'
|
|
23247
|
-
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'container', 'institutionalMemory', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
23445
|
+
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'applications', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'container', 'institutionalMemory', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation']}
|
|
23248
23446
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelGroupKey")
|
|
23249
23447
|
|
|
23250
23448
|
def __init__(self,
|
|
@@ -23299,7 +23497,7 @@ class MLModelKeyClass(_Aspect):
|
|
|
23299
23497
|
|
|
23300
23498
|
|
|
23301
23499
|
ASPECT_NAME = 'mlModelKey'
|
|
23302
|
-
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties', 'subTypes', 'container', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation', 'incidentsSummary']}
|
|
23500
|
+
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'applications', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties', 'subTypes', 'container', 'proposals', 'share', 'origin', 'lineageFeatures', 'documentation', 'incidentsSummary']}
|
|
23303
23501
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelKey")
|
|
23304
23502
|
|
|
23305
23503
|
def __init__(self,
|
|
@@ -23354,7 +23552,7 @@ class MLPrimaryKeyKeyClass(_Aspect):
|
|
|
23354
23552
|
|
|
23355
23553
|
|
|
23356
23554
|
ASPECT_NAME = 'mlPrimaryKeyKey'
|
|
23357
|
-
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures']}
|
|
23555
|
+
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'applications', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'proposals', 'share', 'origin', 'lineageFeatures']}
|
|
23358
23556
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLPrimaryKeyKey")
|
|
23359
23557
|
|
|
23360
23558
|
def __init__(self,
|
|
@@ -23467,7 +23665,7 @@ class NotebookKeyClass(_Aspect):
|
|
|
23467
23665
|
|
|
23468
23666
|
|
|
23469
23667
|
ASPECT_NAME = 'notebookKey'
|
|
23470
|
-
ASPECT_INFO = {'keyForEntity': 'notebook', 'entityCategory': '_unset_', 'entityAspects': ['notebookInfo', 'notebookContent', 'editableNotebookProperties', 'ownership', 'status', 'globalTags', 'glossaryTerms', 'browsePaths', 'institutionalMemory', 'domains', 'subTypes', 'dataPlatformInstance', 'browsePathsV2', 'testResults', 'proposals', 'share', 'origin', 'documentation'], 'entityDoc': 'Notebook represents a combination of query, text, chart and etc. This is in BETA version'}
|
|
23668
|
+
ASPECT_INFO = {'keyForEntity': 'notebook', 'entityCategory': '_unset_', 'entityAspects': ['notebookInfo', 'notebookContent', 'editableNotebookProperties', 'ownership', 'status', 'globalTags', 'glossaryTerms', 'browsePaths', 'institutionalMemory', 'domains', 'applications', 'subTypes', 'dataPlatformInstance', 'browsePathsV2', 'testResults', 'proposals', 'share', 'origin', 'documentation'], 'entityDoc': 'Notebook represents a combination of query, text, chart and etc. This is in BETA version'}
|
|
23471
23669
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.NotebookKey")
|
|
23472
23670
|
|
|
23473
23671
|
def __init__(self,
|
|
@@ -30488,6 +30686,119 @@ class TextCellClass(DictWrapper):
|
|
|
30488
30686
|
self._inner_dict['text'] = value
|
|
30489
30687
|
|
|
30490
30688
|
|
|
30689
|
+
class FormNotificationDetailsClass(DictWrapper):
|
|
30690
|
+
"""Info about all of the notifications a user has received for a given form"""
|
|
30691
|
+
|
|
30692
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.notification.FormNotificationDetails")
|
|
30693
|
+
def __init__(self,
|
|
30694
|
+
formUrn: str,
|
|
30695
|
+
notificationLog: Optional[List["FormNotificationEntryClass"]]=None,
|
|
30696
|
+
):
|
|
30697
|
+
super().__init__()
|
|
30698
|
+
|
|
30699
|
+
self.formUrn = formUrn
|
|
30700
|
+
if notificationLog is None:
|
|
30701
|
+
# default: []
|
|
30702
|
+
self.notificationLog = list()
|
|
30703
|
+
else:
|
|
30704
|
+
self.notificationLog = notificationLog
|
|
30705
|
+
|
|
30706
|
+
def _restore_defaults(self) -> None:
|
|
30707
|
+
self.formUrn = str()
|
|
30708
|
+
self.notificationLog = list()
|
|
30709
|
+
|
|
30710
|
+
|
|
30711
|
+
@property
|
|
30712
|
+
def formUrn(self) -> str:
|
|
30713
|
+
"""The urn of the form that these notification details are on behalf of"""
|
|
30714
|
+
return self._inner_dict.get('formUrn') # type: ignore
|
|
30715
|
+
|
|
30716
|
+
@formUrn.setter
|
|
30717
|
+
def formUrn(self, value: str) -> None:
|
|
30718
|
+
self._inner_dict['formUrn'] = value
|
|
30719
|
+
|
|
30720
|
+
|
|
30721
|
+
@property
|
|
30722
|
+
def notificationLog(self) -> List["FormNotificationEntryClass"]:
|
|
30723
|
+
"""The list of details per notification sent on behalf of this form"""
|
|
30724
|
+
return self._inner_dict.get('notificationLog') # type: ignore
|
|
30725
|
+
|
|
30726
|
+
@notificationLog.setter
|
|
30727
|
+
def notificationLog(self, value: List["FormNotificationEntryClass"]) -> None:
|
|
30728
|
+
self._inner_dict['notificationLog'] = value
|
|
30729
|
+
|
|
30730
|
+
|
|
30731
|
+
class FormNotificationEntryClass(DictWrapper):
|
|
30732
|
+
"""Info about a specific form notification"""
|
|
30733
|
+
|
|
30734
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.notification.FormNotificationEntry")
|
|
30735
|
+
def __init__(self,
|
|
30736
|
+
time: int,
|
|
30737
|
+
notificationType: str,
|
|
30738
|
+
):
|
|
30739
|
+
super().__init__()
|
|
30740
|
+
|
|
30741
|
+
self.time = time
|
|
30742
|
+
self.notificationType = notificationType
|
|
30743
|
+
|
|
30744
|
+
def _restore_defaults(self) -> None:
|
|
30745
|
+
self.time = int()
|
|
30746
|
+
self.notificationType = str()
|
|
30747
|
+
|
|
30748
|
+
|
|
30749
|
+
@property
|
|
30750
|
+
def time(self) -> int:
|
|
30751
|
+
"""The time at which this notification was sent in milliseconds"""
|
|
30752
|
+
return self._inner_dict.get('time') # type: ignore
|
|
30753
|
+
|
|
30754
|
+
@time.setter
|
|
30755
|
+
def time(self, value: int) -> None:
|
|
30756
|
+
self._inner_dict['time'] = value
|
|
30757
|
+
|
|
30758
|
+
|
|
30759
|
+
@property
|
|
30760
|
+
def notificationType(self) -> str:
|
|
30761
|
+
"""The notification scenario type for this notification record"""
|
|
30762
|
+
return self._inner_dict.get('notificationType') # type: ignore
|
|
30763
|
+
|
|
30764
|
+
@notificationType.setter
|
|
30765
|
+
def notificationType(self, value: str) -> None:
|
|
30766
|
+
self._inner_dict['notificationType'] = value
|
|
30767
|
+
|
|
30768
|
+
|
|
30769
|
+
class FormNotificationsClass(_Aspect):
|
|
30770
|
+
"""The history of notifications sent to this actor on behalf of forms"""
|
|
30771
|
+
|
|
30772
|
+
|
|
30773
|
+
ASPECT_NAME = 'formNotifications'
|
|
30774
|
+
ASPECT_INFO = {}
|
|
30775
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.notification.FormNotifications")
|
|
30776
|
+
|
|
30777
|
+
def __init__(self,
|
|
30778
|
+
notificationDetails: Optional[List["FormNotificationDetailsClass"]]=None,
|
|
30779
|
+
):
|
|
30780
|
+
super().__init__()
|
|
30781
|
+
|
|
30782
|
+
if notificationDetails is None:
|
|
30783
|
+
# default: []
|
|
30784
|
+
self.notificationDetails = list()
|
|
30785
|
+
else:
|
|
30786
|
+
self.notificationDetails = notificationDetails
|
|
30787
|
+
|
|
30788
|
+
def _restore_defaults(self) -> None:
|
|
30789
|
+
self.notificationDetails = list()
|
|
30790
|
+
|
|
30791
|
+
|
|
30792
|
+
@property
|
|
30793
|
+
def notificationDetails(self) -> List["FormNotificationDetailsClass"]:
|
|
30794
|
+
"""List of details for notifications for each form"""
|
|
30795
|
+
return self._inner_dict.get('notificationDetails') # type: ignore
|
|
30796
|
+
|
|
30797
|
+
@notificationDetails.setter
|
|
30798
|
+
def notificationDetails(self, value: List["FormNotificationDetailsClass"]) -> None:
|
|
30799
|
+
self._inner_dict['notificationDetails'] = value
|
|
30800
|
+
|
|
30801
|
+
|
|
30491
30802
|
class OwnershipTypeInfoClass(_Aspect):
|
|
30492
30803
|
"""Information about an ownership type"""
|
|
30493
30804
|
|
|
@@ -31102,6 +31413,7 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
31102
31413
|
resources: Union[None, List[str]]=None,
|
|
31103
31414
|
allResources: Optional[bool]=None,
|
|
31104
31415
|
filter: Union[None, "PolicyMatchFilterClass"]=None,
|
|
31416
|
+
policyConstraints: Union[None, "PolicyMatchFilterClass"]=None,
|
|
31105
31417
|
):
|
|
31106
31418
|
super().__init__()
|
|
31107
31419
|
|
|
@@ -31113,12 +31425,14 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
31113
31425
|
else:
|
|
31114
31426
|
self.allResources = allResources
|
|
31115
31427
|
self.filter = filter
|
|
31428
|
+
self.policyConstraints = policyConstraints
|
|
31116
31429
|
|
|
31117
31430
|
def _restore_defaults(self) -> None:
|
|
31118
31431
|
self.type = self.RECORD_SCHEMA.fields_dict["type"].default
|
|
31119
31432
|
self.resources = self.RECORD_SCHEMA.fields_dict["resources"].default
|
|
31120
31433
|
self.allResources = self.RECORD_SCHEMA.fields_dict["allResources"].default
|
|
31121
31434
|
self.filter = self.RECORD_SCHEMA.fields_dict["filter"].default
|
|
31435
|
+
self.policyConstraints = self.RECORD_SCHEMA.fields_dict["policyConstraints"].default
|
|
31122
31436
|
|
|
31123
31437
|
|
|
31124
31438
|
@property
|
|
@@ -31163,6 +31477,16 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
31163
31477
|
self._inner_dict['filter'] = value
|
|
31164
31478
|
|
|
31165
31479
|
|
|
31480
|
+
@property
|
|
31481
|
+
def policyConstraints(self) -> Union[None, "PolicyMatchFilterClass"]:
|
|
31482
|
+
"""Constraints around what sub-resources operations are allowed to modify, i.e. NOT_EQUALS - cannot modify a particular defined tag, EQUALS - can only modify a particular defined tag, STARTS_WITH - can only modify a tag starting with xyz"""
|
|
31483
|
+
return self._inner_dict.get('policyConstraints') # type: ignore
|
|
31484
|
+
|
|
31485
|
+
@policyConstraints.setter
|
|
31486
|
+
def policyConstraints(self, value: Union[None, "PolicyMatchFilterClass"]) -> None:
|
|
31487
|
+
self._inner_dict['policyConstraints'] = value
|
|
31488
|
+
|
|
31489
|
+
|
|
31166
31490
|
class DataHubRoleInfoClass(_Aspect):
|
|
31167
31491
|
"""Information about a DataHub Role."""
|
|
31168
31492
|
|
|
@@ -31231,6 +31555,9 @@ class PolicyMatchConditionClass(object):
|
|
|
31231
31555
|
STARTS_WITH = "STARTS_WITH"
|
|
31232
31556
|
"""Whether the field value starts with the value"""
|
|
31233
31557
|
|
|
31558
|
+
NOT_EQUALS = "NOT_EQUALS"
|
|
31559
|
+
"""Whether the field does not match the value"""
|
|
31560
|
+
|
|
31234
31561
|
|
|
31235
31562
|
|
|
31236
31563
|
class PolicyMatchCriterionClass(DictWrapper):
|
|
@@ -33921,6 +34248,35 @@ class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
|
33921
34248
|
self._inner_dict['columnPropagationEnabled'] = value
|
|
33922
34249
|
|
|
33923
34250
|
|
|
34251
|
+
class DocumentationAiSettingsClass(DictWrapper):
|
|
34252
|
+
"""Settings related to AI-powered documentation."""
|
|
34253
|
+
|
|
34254
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.DocumentationAiSettings")
|
|
34255
|
+
def __init__(self,
|
|
34256
|
+
enabled: Optional[bool]=None,
|
|
34257
|
+
):
|
|
34258
|
+
super().__init__()
|
|
34259
|
+
|
|
34260
|
+
if enabled is None:
|
|
34261
|
+
# default: True
|
|
34262
|
+
self.enabled = self.RECORD_SCHEMA.fields_dict["enabled"].default
|
|
34263
|
+
else:
|
|
34264
|
+
self.enabled = enabled
|
|
34265
|
+
|
|
34266
|
+
def _restore_defaults(self) -> None:
|
|
34267
|
+
self.enabled = self.RECORD_SCHEMA.fields_dict["enabled"].default
|
|
34268
|
+
|
|
34269
|
+
|
|
34270
|
+
@property
|
|
34271
|
+
def enabled(self) -> bool:
|
|
34272
|
+
"""Whether or not AI-generated documentation is enabled."""
|
|
34273
|
+
return self._inner_dict.get('enabled') # type: ignore
|
|
34274
|
+
|
|
34275
|
+
@enabled.setter
|
|
34276
|
+
def enabled(self, value: bool) -> None:
|
|
34277
|
+
self._inner_dict['enabled'] = value
|
|
34278
|
+
|
|
34279
|
+
|
|
33924
34280
|
class EmailIntegrationSettingsClass(DictWrapper):
|
|
33925
34281
|
"""Email integration settings. Enabled by default and only disable-able via the application configs."""
|
|
33926
34282
|
|
|
@@ -34079,6 +34435,7 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
34079
34435
|
sso: Union[None, "SsoSettingsClass"]=None,
|
|
34080
34436
|
views: Union[None, "GlobalViewsSettingsClass"]=None,
|
|
34081
34437
|
docPropagation: Optional[Union["DocPropagationFeatureSettingsClass", None]]=None,
|
|
34438
|
+
documentationAi: Union[None, "DocumentationAiSettingsClass"]=None,
|
|
34082
34439
|
visual: Union[None, "GlobalVisualSettingsClass"]=None,
|
|
34083
34440
|
):
|
|
34084
34441
|
super().__init__()
|
|
@@ -34092,6 +34449,7 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
34092
34449
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
34093
34450
|
else:
|
|
34094
34451
|
self.docPropagation = docPropagation
|
|
34452
|
+
self.documentationAi = documentationAi
|
|
34095
34453
|
self.visual = visual
|
|
34096
34454
|
|
|
34097
34455
|
def _restore_defaults(self) -> None:
|
|
@@ -34100,6 +34458,7 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
34100
34458
|
self.sso = self.RECORD_SCHEMA.fields_dict["sso"].default
|
|
34101
34459
|
self.views = self.RECORD_SCHEMA.fields_dict["views"].default
|
|
34102
34460
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
34461
|
+
self.documentationAi = self.RECORD_SCHEMA.fields_dict["documentationAi"].default
|
|
34103
34462
|
self.visual = self.RECORD_SCHEMA.fields_dict["visual"].default
|
|
34104
34463
|
|
|
34105
34464
|
|
|
@@ -34153,6 +34512,16 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
34153
34512
|
self._inner_dict['docPropagation'] = value
|
|
34154
34513
|
|
|
34155
34514
|
|
|
34515
|
+
@property
|
|
34516
|
+
def documentationAi(self) -> Union[None, "DocumentationAiSettingsClass"]:
|
|
34517
|
+
"""Settings related to AI-powered documentation."""
|
|
34518
|
+
return self._inner_dict.get('documentationAi') # type: ignore
|
|
34519
|
+
|
|
34520
|
+
@documentationAi.setter
|
|
34521
|
+
def documentationAi(self, value: Union[None, "DocumentationAiSettingsClass"]) -> None:
|
|
34522
|
+
self._inner_dict['documentationAi'] = value
|
|
34523
|
+
|
|
34524
|
+
|
|
34156
34525
|
@property
|
|
34157
34526
|
def visual(self) -> Union[None, "GlobalVisualSettingsClass"]:
|
|
34158
34527
|
"""Global settings related to the UI and what's displayed in the app"""
|
|
@@ -37282,6 +37651,9 @@ __SCHEMA_TYPES = {
|
|
|
37282
37651
|
'com.linkedin.pegasus2avro.anomaly.AnomalySourceProperties': AnomalySourcePropertiesClass,
|
|
37283
37652
|
'com.linkedin.pegasus2avro.anomaly.AnomalySourceType': AnomalySourceTypeClass,
|
|
37284
37653
|
'com.linkedin.pegasus2avro.anomaly.MonitorAnomalyEvent': MonitorAnomalyEventClass,
|
|
37654
|
+
'com.linkedin.pegasus2avro.application.ApplicationKey': ApplicationKeyClass,
|
|
37655
|
+
'com.linkedin.pegasus2avro.application.ApplicationProperties': ApplicationPropertiesClass,
|
|
37656
|
+
'com.linkedin.pegasus2avro.application.Applications': ApplicationsClass,
|
|
37285
37657
|
'com.linkedin.pegasus2avro.assertion.AdjustmentAlgorithm': AdjustmentAlgorithmClass,
|
|
37286
37658
|
'com.linkedin.pegasus2avro.assertion.AssertionAction': AssertionActionClass,
|
|
37287
37659
|
'com.linkedin.pegasus2avro.assertion.AssertionActionType': AssertionActionTypeClass,
|
|
@@ -37558,9 +37930,11 @@ __SCHEMA_TYPES = {
|
|
|
37558
37930
|
'com.linkedin.pegasus2avro.executorpool.RemoteExecutorPoolInfo': RemoteExecutorPoolInfoClass,
|
|
37559
37931
|
'com.linkedin.pegasus2avro.executorpool.RemoteExecutorPoolState': RemoteExecutorPoolStateClass,
|
|
37560
37932
|
'com.linkedin.pegasus2avro.executorpool.RemoteExecutorPoolStatus': RemoteExecutorPoolStatusClass,
|
|
37933
|
+
'com.linkedin.pegasus2avro.form.AssignmentStatus': AssignmentStatusClass,
|
|
37561
37934
|
'com.linkedin.pegasus2avro.form.DomainParams': DomainParamsClass,
|
|
37562
37935
|
'com.linkedin.pegasus2avro.form.DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
37563
37936
|
'com.linkedin.pegasus2avro.form.FormActorAssignment': FormActorAssignmentClass,
|
|
37937
|
+
'com.linkedin.pegasus2avro.form.FormAssignmentStatus': FormAssignmentStatusClass,
|
|
37564
37938
|
'com.linkedin.pegasus2avro.form.FormInfo': FormInfoClass,
|
|
37565
37939
|
'com.linkedin.pegasus2avro.form.FormNotificationSettings': FormNotificationSettingsClass,
|
|
37566
37940
|
'com.linkedin.pegasus2avro.form.FormPrompt': FormPromptClass,
|
|
@@ -37815,6 +38189,9 @@ __SCHEMA_TYPES = {
|
|
|
37815
38189
|
'com.linkedin.pegasus2avro.notebook.NotebookInfo': NotebookInfoClass,
|
|
37816
38190
|
'com.linkedin.pegasus2avro.notebook.QueryCell': QueryCellClass,
|
|
37817
38191
|
'com.linkedin.pegasus2avro.notebook.TextCell': TextCellClass,
|
|
38192
|
+
'com.linkedin.pegasus2avro.notification.FormNotificationDetails': FormNotificationDetailsClass,
|
|
38193
|
+
'com.linkedin.pegasus2avro.notification.FormNotificationEntry': FormNotificationEntryClass,
|
|
38194
|
+
'com.linkedin.pegasus2avro.notification.FormNotifications': FormNotificationsClass,
|
|
37818
38195
|
'com.linkedin.pegasus2avro.ownership.OwnershipTypeInfo': OwnershipTypeInfoClass,
|
|
37819
38196
|
'com.linkedin.pegasus2avro.persona.DataHubPersonaInfo': DataHubPersonaInfoClass,
|
|
37820
38197
|
'com.linkedin.pegasus2avro.platform.event.v1.EntityChangeEvent': EntityChangeEventClass,
|
|
@@ -37888,6 +38265,7 @@ __SCHEMA_TYPES = {
|
|
|
37888
38265
|
'com.linkedin.pegasus2avro.settings.NotificationSetting': NotificationSettingClass,
|
|
37889
38266
|
'com.linkedin.pegasus2avro.settings.NotificationSettingValue': NotificationSettingValueClass,
|
|
37890
38267
|
'com.linkedin.pegasus2avro.settings.global.DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
38268
|
+
'com.linkedin.pegasus2avro.settings.global.DocumentationAiSettings': DocumentationAiSettingsClass,
|
|
37891
38269
|
'com.linkedin.pegasus2avro.settings.global.EmailIntegrationSettings': EmailIntegrationSettingsClass,
|
|
37892
38270
|
'com.linkedin.pegasus2avro.settings.global.GlobalIncidentsSettings': GlobalIncidentsSettingsClass,
|
|
37893
38271
|
'com.linkedin.pegasus2avro.settings.global.GlobalIntegrationSettings': GlobalIntegrationSettingsClass,
|
|
@@ -37990,6 +38368,9 @@ __SCHEMA_TYPES = {
|
|
|
37990
38368
|
'AnomalySourceProperties': AnomalySourcePropertiesClass,
|
|
37991
38369
|
'AnomalySourceType': AnomalySourceTypeClass,
|
|
37992
38370
|
'MonitorAnomalyEvent': MonitorAnomalyEventClass,
|
|
38371
|
+
'ApplicationKey': ApplicationKeyClass,
|
|
38372
|
+
'ApplicationProperties': ApplicationPropertiesClass,
|
|
38373
|
+
'Applications': ApplicationsClass,
|
|
37993
38374
|
'AdjustmentAlgorithm': AdjustmentAlgorithmClass,
|
|
37994
38375
|
'AssertionAction': AssertionActionClass,
|
|
37995
38376
|
'AssertionActionType': AssertionActionTypeClass,
|
|
@@ -38266,9 +38647,11 @@ __SCHEMA_TYPES = {
|
|
|
38266
38647
|
'RemoteExecutorPoolInfo': RemoteExecutorPoolInfoClass,
|
|
38267
38648
|
'RemoteExecutorPoolState': RemoteExecutorPoolStateClass,
|
|
38268
38649
|
'RemoteExecutorPoolStatus': RemoteExecutorPoolStatusClass,
|
|
38650
|
+
'AssignmentStatus': AssignmentStatusClass,
|
|
38269
38651
|
'DomainParams': DomainParamsClass,
|
|
38270
38652
|
'DynamicFormAssignment': DynamicFormAssignmentClass,
|
|
38271
38653
|
'FormActorAssignment': FormActorAssignmentClass,
|
|
38654
|
+
'FormAssignmentStatus': FormAssignmentStatusClass,
|
|
38272
38655
|
'FormInfo': FormInfoClass,
|
|
38273
38656
|
'FormNotificationSettings': FormNotificationSettingsClass,
|
|
38274
38657
|
'FormPrompt': FormPromptClass,
|
|
@@ -38523,6 +38906,9 @@ __SCHEMA_TYPES = {
|
|
|
38523
38906
|
'NotebookInfo': NotebookInfoClass,
|
|
38524
38907
|
'QueryCell': QueryCellClass,
|
|
38525
38908
|
'TextCell': TextCellClass,
|
|
38909
|
+
'FormNotificationDetails': FormNotificationDetailsClass,
|
|
38910
|
+
'FormNotificationEntry': FormNotificationEntryClass,
|
|
38911
|
+
'FormNotifications': FormNotificationsClass,
|
|
38526
38912
|
'OwnershipTypeInfo': OwnershipTypeInfoClass,
|
|
38527
38913
|
'DataHubPersonaInfo': DataHubPersonaInfoClass,
|
|
38528
38914
|
'EntityChangeEvent': EntityChangeEventClass,
|
|
@@ -38596,6 +38982,7 @@ __SCHEMA_TYPES = {
|
|
|
38596
38982
|
'NotificationSetting': NotificationSettingClass,
|
|
38597
38983
|
'NotificationSettingValue': NotificationSettingValueClass,
|
|
38598
38984
|
'DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
38985
|
+
'DocumentationAiSettings': DocumentationAiSettingsClass,
|
|
38599
38986
|
'EmailIntegrationSettings': EmailIntegrationSettingsClass,
|
|
38600
38987
|
'GlobalIncidentsSettings': GlobalIncidentsSettingsClass,
|
|
38601
38988
|
'GlobalIntegrationSettings': GlobalIntegrationSettingsClass,
|
|
@@ -38672,277 +39059,282 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
38672
39059
|
|
|
38673
39060
|
|
|
38674
39061
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
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,
|
|
38689
|
-
BusinessAttributeInfoClass,
|
|
38690
|
-
BusinessAttributesClass,
|
|
38691
|
-
BusinessAttributeKeyClass,
|
|
38692
|
-
SystemMetadataClass,
|
|
38693
|
-
PlatformResourceKeyClass,
|
|
38694
|
-
PlatformResourceInfoClass,
|
|
38695
|
-
DataHubSecretValueClass,
|
|
38696
|
-
DataHubViewInfoClass,
|
|
38697
|
-
PostInfoClass,
|
|
38698
|
-
IncidentActivityEventClass,
|
|
38699
|
-
IncidentSourceClass,
|
|
38700
|
-
IncidentInfoClass,
|
|
38701
|
-
IncidentNotificationDetailsClass,
|
|
38702
|
-
SubscriptionInfoClass,
|
|
38703
|
-
EntityTypeInfoClass,
|
|
38704
|
-
EntityTypeKeyClass,
|
|
38705
|
-
DataHubConnectionDetailsClass,
|
|
38706
|
-
DataHubPolicyInfoClass,
|
|
38707
|
-
DataHubRoleInfoClass,
|
|
38708
|
-
StructuredPropertiesClass,
|
|
38709
39062
|
StructuredPropertyKeyClass,
|
|
38710
|
-
StructuredPropertyDefinitionClass,
|
|
38711
39063
|
StructuredPropertySettingsClass,
|
|
38712
|
-
|
|
38713
|
-
|
|
38714
|
-
|
|
38715
|
-
|
|
38716
|
-
|
|
38717
|
-
|
|
39064
|
+
StructuredPropertyDefinitionClass,
|
|
39065
|
+
StructuredPropertiesClass,
|
|
39066
|
+
IcebergWarehouseInfoClass,
|
|
39067
|
+
DataPlatformInstancePropertiesClass,
|
|
39068
|
+
DataPlatformInfoClass,
|
|
39069
|
+
SlackUserInfoClass,
|
|
38718
39070
|
SchemaMetadataClass,
|
|
38719
39071
|
SchemaProposalsClass,
|
|
38720
39072
|
EditableSchemaMetadataClass,
|
|
38721
|
-
|
|
38722
|
-
|
|
38723
|
-
|
|
38724
|
-
|
|
38725
|
-
|
|
38726
|
-
|
|
38727
|
-
|
|
38728
|
-
|
|
38729
|
-
|
|
38730
|
-
|
|
38731
|
-
|
|
38732
|
-
|
|
38733
|
-
|
|
38734
|
-
|
|
38735
|
-
|
|
38736
|
-
|
|
38737
|
-
|
|
38738
|
-
|
|
38739
|
-
|
|
38740
|
-
|
|
38741
|
-
|
|
38742
|
-
|
|
38743
|
-
|
|
38744
|
-
|
|
38745
|
-
|
|
38746
|
-
|
|
39073
|
+
DataHubViewInfoClass,
|
|
39074
|
+
GlobalSettingsInfoClass,
|
|
39075
|
+
EditableContainerPropertiesClass,
|
|
39076
|
+
ContainerClass,
|
|
39077
|
+
ContainerPropertiesClass,
|
|
39078
|
+
DataHubIngestionSourceInfoClass,
|
|
39079
|
+
InferredNeighborsClass,
|
|
39080
|
+
SchemaFieldsInferredNeighborsClass,
|
|
39081
|
+
SchemaFieldsInferredMetadataClass,
|
|
39082
|
+
InferredMetadataClass,
|
|
39083
|
+
MLModelFactorPromptsClass,
|
|
39084
|
+
MLMetricClass,
|
|
39085
|
+
SourceCodeClass,
|
|
39086
|
+
MLFeaturePropertiesClass,
|
|
39087
|
+
CaveatsAndRecommendationsClass,
|
|
39088
|
+
MLModelGroupPropertiesClass,
|
|
39089
|
+
EditableMLModelPropertiesClass,
|
|
39090
|
+
QuantitativeAnalysesClass,
|
|
39091
|
+
MLTrainingRunPropertiesClass,
|
|
39092
|
+
EditableMLFeatureTablePropertiesClass,
|
|
39093
|
+
EditableMLPrimaryKeyPropertiesClass,
|
|
39094
|
+
MLHyperParamClass,
|
|
39095
|
+
EvaluationDataClass,
|
|
39096
|
+
EditableMLModelGroupPropertiesClass,
|
|
39097
|
+
IntendedUseClass,
|
|
39098
|
+
TrainingDataClass,
|
|
39099
|
+
EditableMLFeaturePropertiesClass,
|
|
39100
|
+
MetricsClass,
|
|
39101
|
+
MLModelDeploymentPropertiesClass,
|
|
39102
|
+
EthicalConsiderationsClass,
|
|
39103
|
+
MLModelPropertiesClass,
|
|
39104
|
+
MLFeatureTablePropertiesClass,
|
|
39105
|
+
MLPrimaryKeyPropertiesClass,
|
|
39106
|
+
PostInfoClass,
|
|
39107
|
+
AiInferenceMetadataClass,
|
|
39108
|
+
EntityInferenceMetadataClass,
|
|
39109
|
+
RecommendationModuleClass,
|
|
38747
39110
|
ActionRequestKeyClass,
|
|
38748
|
-
LinkPreviewKeyClass,
|
|
38749
|
-
ConstraintKeyClass,
|
|
38750
39111
|
RoleKeyClass,
|
|
39112
|
+
DataProcessInstanceKeyClass,
|
|
39113
|
+
LinkPreviewKeyClass,
|
|
39114
|
+
DataHubActionKeyClass,
|
|
39115
|
+
CorpGroupKeyClass,
|
|
39116
|
+
MLFeatureKeyClass,
|
|
39117
|
+
InviteTokenKeyClass,
|
|
38751
39118
|
DataHubStepStateKeyClass,
|
|
39119
|
+
DataHubPersonaKeyClass,
|
|
39120
|
+
DataContractKeyClass,
|
|
39121
|
+
DataHubConnectionKeyClass,
|
|
39122
|
+
RecommendationModuleKeyClass,
|
|
39123
|
+
DataHubPolicyKeyClass,
|
|
39124
|
+
ConstraintKeyClass,
|
|
38752
39125
|
MonitorKeyClass,
|
|
38753
|
-
|
|
38754
|
-
|
|
39126
|
+
CorpUserKeyClass,
|
|
39127
|
+
AnomalyKeyClass,
|
|
39128
|
+
MLModelDeploymentKeyClass,
|
|
39129
|
+
ContainerKeyClass,
|
|
38755
39130
|
SchemaFieldKeyClass,
|
|
38756
|
-
|
|
39131
|
+
NotebookKeyClass,
|
|
39132
|
+
MLModelKeyClass,
|
|
39133
|
+
RemoteExecutorGlobalConfigKeyClass,
|
|
39134
|
+
DataPlatformInstanceKeyClass,
|
|
39135
|
+
DataHubIngestionSourceKeyClass,
|
|
39136
|
+
ChartKeyClass,
|
|
39137
|
+
AssertionKeyClass,
|
|
38757
39138
|
DataJobKeyClass,
|
|
38758
39139
|
GenericEntityKeyClass,
|
|
38759
|
-
|
|
38760
|
-
MLModelDeploymentKeyClass,
|
|
38761
|
-
RemoteExecutorGlobalConfigKeyClass,
|
|
39140
|
+
ExecutionRequestKeyClass,
|
|
38762
39141
|
DataHubAccessTokenKeyClass,
|
|
38763
|
-
|
|
39142
|
+
QueryKeyClass,
|
|
38764
39143
|
VersionSetKeyClass,
|
|
39144
|
+
DataHubMetricCubeKeyClass,
|
|
39145
|
+
DataPlatformKeyClass,
|
|
39146
|
+
OwnershipTypeKeyClass,
|
|
39147
|
+
GlossaryTermKeyClass,
|
|
39148
|
+
FormKeyClass,
|
|
39149
|
+
DataHubOpenAPISchemaKeyClass,
|
|
39150
|
+
DataFlowKeyClass,
|
|
39151
|
+
DataHubUpgradeKeyClass,
|
|
39152
|
+
MonitorSuiteKeyClass,
|
|
38765
39153
|
DataHubViewKeyClass,
|
|
38766
|
-
MLFeatureKeyClass,
|
|
38767
|
-
NotebookKeyClass,
|
|
38768
39154
|
GlossaryNodeKeyClass,
|
|
39155
|
+
TagKeyClass,
|
|
39156
|
+
DashboardKeyClass,
|
|
38769
39157
|
RemoteExecutorPoolKeyClass,
|
|
38770
|
-
DataHubActionKeyClass,
|
|
38771
|
-
ContainerKeyClass,
|
|
38772
|
-
MLPrimaryKeyKeyClass,
|
|
38773
|
-
MonitorSuiteKeyClass,
|
|
38774
|
-
DataHubMetricCubeKeyClass,
|
|
38775
|
-
InviteTokenKeyClass,
|
|
38776
|
-
DataHubPersonaKeyClass,
|
|
38777
|
-
DomainKeyClass,
|
|
38778
|
-
FormKeyClass,
|
|
38779
|
-
TelemetryKeyClass,
|
|
38780
|
-
DataHubConnectionKeyClass,
|
|
38781
|
-
ERModelRelationshipKeyClass,
|
|
38782
|
-
CorpGroupKeyClass,
|
|
38783
39158
|
IncidentKeyClass,
|
|
38784
|
-
PostKeyClass,
|
|
38785
|
-
DataHubUpgradeKeyClass,
|
|
38786
|
-
GlobalSettingsKeyClass,
|
|
38787
|
-
DataHubRetentionKeyClass,
|
|
38788
|
-
AssertionKeyClass,
|
|
38789
39159
|
MLFeatureTableKeyClass,
|
|
39160
|
+
MLPrimaryKeyKeyClass,
|
|
39161
|
+
DataHubRetentionKeyClass,
|
|
39162
|
+
DatasetKeyClass,
|
|
38790
39163
|
TestKeyClass,
|
|
38791
|
-
|
|
38792
|
-
|
|
38793
|
-
|
|
38794
|
-
|
|
39164
|
+
ERModelRelationshipKeyClass,
|
|
39165
|
+
GlobalSettingsKeyClass,
|
|
39166
|
+
DomainKeyClass,
|
|
39167
|
+
PostKeyClass,
|
|
38795
39168
|
RemoteExecutorKeyClass,
|
|
38796
|
-
|
|
38797
|
-
|
|
38798
|
-
DataHubSecretKeyClass,
|
|
38799
|
-
CorpUserKeyClass,
|
|
38800
|
-
ChartKeyClass,
|
|
38801
|
-
MLModelKeyClass,
|
|
38802
|
-
DashboardKeyClass,
|
|
39169
|
+
TelemetryKeyClass,
|
|
39170
|
+
DataHubRoleKeyClass,
|
|
38803
39171
|
SubscriptionKeyClass,
|
|
38804
|
-
|
|
38805
|
-
|
|
38806
|
-
|
|
39172
|
+
DataProcessKeyClass,
|
|
39173
|
+
DataHubSecretKeyClass,
|
|
39174
|
+
MLModelGroupKeyClass,
|
|
39175
|
+
UsageFeaturesClass,
|
|
39176
|
+
StorageFeaturesClass,
|
|
39177
|
+
LineageFeaturesClass,
|
|
39178
|
+
CostFeaturesClass,
|
|
39179
|
+
DataTypeInfoClass,
|
|
39180
|
+
DataTypeKeyClass,
|
|
39181
|
+
MonitorTimeseriesStateClass,
|
|
39182
|
+
MonitorSuiteInfoClass,
|
|
39183
|
+
MonitorInfoClass,
|
|
39184
|
+
SchemaFieldAliasesClass,
|
|
39185
|
+
SchemaFieldInfoClass,
|
|
39186
|
+
DataHubRetentionConfigClass,
|
|
39187
|
+
DataHubStepStatePropertiesClass,
|
|
38807
39188
|
GlossaryNodeInfoClass,
|
|
39189
|
+
GlossaryTermInfoClass,
|
|
38808
39190
|
GlossaryRelatedTermsClass,
|
|
38809
|
-
|
|
38810
|
-
|
|
38811
|
-
|
|
38812
|
-
|
|
38813
|
-
|
|
38814
|
-
|
|
38815
|
-
|
|
38816
|
-
|
|
38817
|
-
|
|
38818
|
-
|
|
38819
|
-
|
|
38820
|
-
|
|
38821
|
-
|
|
38822
|
-
|
|
38823
|
-
|
|
38824
|
-
|
|
38825
|
-
SourceCodeClass,
|
|
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,
|
|
39191
|
+
SubscriptionInfoClass,
|
|
39192
|
+
IncidentNotificationDetailsClass,
|
|
39193
|
+
IncidentInfoClass,
|
|
39194
|
+
IncidentActivityEventClass,
|
|
39195
|
+
IncidentSourceClass,
|
|
39196
|
+
SystemMetadataClass,
|
|
39197
|
+
BatchTestRunEventClass,
|
|
39198
|
+
TestResultsClass,
|
|
39199
|
+
TestInfoClass,
|
|
39200
|
+
EntityTypeKeyClass,
|
|
39201
|
+
EntityTypeInfoClass,
|
|
39202
|
+
BusinessAttributeKeyClass,
|
|
39203
|
+
BusinessAttributesClass,
|
|
39204
|
+
BusinessAttributeInfoClass,
|
|
39205
|
+
DataHubUpgradeResultClass,
|
|
39206
|
+
DataHubUpgradeRequestClass,
|
|
38843
39207
|
DataProductPropertiesClass,
|
|
38844
39208
|
DataProductKeyClass,
|
|
38845
|
-
|
|
38846
|
-
|
|
38847
|
-
|
|
38848
|
-
|
|
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,
|
|
38863
|
-
LinkPreviewInfoClass,
|
|
38864
|
-
DataHubPersonaInfoClass,
|
|
38865
|
-
OwnershipTypeInfoClass,
|
|
38866
|
-
DataTypeKeyClass,
|
|
38867
|
-
DataTypeInfoClass,
|
|
38868
|
-
ExecutionRequestResultClass,
|
|
38869
|
-
ExecutionRequestInputClass,
|
|
38870
|
-
ExecutionRequestSignalClass,
|
|
38871
|
-
DataHubIngestionSourceInfoClass,
|
|
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,
|
|
39209
|
+
CostClass,
|
|
39210
|
+
ShareClass,
|
|
39211
|
+
IncidentsSummaryClass,
|
|
39212
|
+
GlobalTagsClass,
|
|
38891
39213
|
OwnershipClass,
|
|
38892
|
-
GlossaryTermsClass,
|
|
38893
|
-
FormsClass,
|
|
38894
|
-
DocumentationClass,
|
|
38895
|
-
DeprecationClass,
|
|
38896
39214
|
InstitutionalMemoryClass,
|
|
38897
|
-
DataPlatformInstanceClass,
|
|
38898
39215
|
AnomaliesSummaryClass,
|
|
38899
|
-
|
|
38900
|
-
|
|
38901
|
-
|
|
38902
|
-
|
|
39216
|
+
FormsClass,
|
|
39217
|
+
AccessClass,
|
|
39218
|
+
BrowsePathsClass,
|
|
39219
|
+
OriginClass,
|
|
39220
|
+
DataPlatformInstanceClass,
|
|
38903
39221
|
OperationClass,
|
|
39222
|
+
DisplayPropertiesClass,
|
|
39223
|
+
ProposalsClass,
|
|
39224
|
+
BrowsePathsV2Class,
|
|
39225
|
+
AssertionsSummaryClass,
|
|
39226
|
+
DataTransformLogicClass,
|
|
39227
|
+
GlossaryTermsClass,
|
|
39228
|
+
DeprecationClass,
|
|
39229
|
+
StatusClass,
|
|
39230
|
+
VersionPropertiesClass,
|
|
38904
39231
|
SubTypesClass,
|
|
38905
|
-
SiblingsClass,
|
|
38906
|
-
ShareClass,
|
|
38907
|
-
AccessClass,
|
|
38908
|
-
GlobalTagsClass,
|
|
38909
|
-
CostClass,
|
|
38910
39232
|
InputFieldsClass,
|
|
38911
|
-
ProposalsClass,
|
|
38912
39233
|
EmbedClass,
|
|
38913
|
-
|
|
38914
|
-
|
|
38915
|
-
|
|
38916
|
-
|
|
38917
|
-
|
|
38918
|
-
|
|
39234
|
+
SiblingsClass,
|
|
39235
|
+
DocumentationClass,
|
|
39236
|
+
DashboardUsageStatisticsClass,
|
|
39237
|
+
EditableDashboardPropertiesClass,
|
|
39238
|
+
DashboardInfoClass,
|
|
39239
|
+
VersionSetPropertiesClass,
|
|
39240
|
+
RolePropertiesClass,
|
|
39241
|
+
ActorsClass,
|
|
39242
|
+
DataJobInfoClass,
|
|
39243
|
+
EditableDataJobPropertiesClass,
|
|
39244
|
+
VersionInfoClass,
|
|
39245
|
+
EditableDataFlowPropertiesClass,
|
|
39246
|
+
DataJobInputOutputClass,
|
|
39247
|
+
DataFlowInfoClass,
|
|
39248
|
+
DatahubIngestionCheckpointClass,
|
|
39249
|
+
DatahubIngestionRunSummaryClass,
|
|
39250
|
+
QueryUsageStatisticsClass,
|
|
39251
|
+
QueryPropertiesClass,
|
|
39252
|
+
QuerySubjectsClass,
|
|
39253
|
+
QueryUsageFeaturesClass,
|
|
39254
|
+
RemoteExecutorPoolInfoClass,
|
|
39255
|
+
FormNotificationsClass,
|
|
39256
|
+
ActionRequestArchivedClass,
|
|
39257
|
+
ActionRequestInfoClass,
|
|
39258
|
+
ActionRequestStatusClass,
|
|
38919
39259
|
CorpGroupSettingsClass,
|
|
38920
|
-
|
|
39260
|
+
CorpUserStatusClass,
|
|
39261
|
+
CorpUserCredentialsClass,
|
|
39262
|
+
CorpUserInfoClass,
|
|
38921
39263
|
CorpGroupEditableInfoClass,
|
|
39264
|
+
GroupMembershipClass,
|
|
38922
39265
|
CorpUserEditableInfoClass,
|
|
38923
|
-
CorpUserInfoClass,
|
|
38924
|
-
RoleMembershipClass,
|
|
38925
|
-
CorpUserCredentialsClass,
|
|
38926
39266
|
CorpUserSettingsClass,
|
|
38927
|
-
NativeGroupMembershipClass,
|
|
38928
|
-
GroupMembershipClass,
|
|
38929
39267
|
CorpGroupInfoClass,
|
|
38930
|
-
|
|
38931
|
-
|
|
38932
|
-
|
|
38933
|
-
|
|
38934
|
-
|
|
38935
|
-
|
|
38936
|
-
|
|
38937
|
-
|
|
38938
|
-
|
|
38939
|
-
|
|
38940
|
-
|
|
38941
|
-
|
|
39268
|
+
RoleMembershipClass,
|
|
39269
|
+
NativeGroupMembershipClass,
|
|
39270
|
+
InviteTokenClass,
|
|
39271
|
+
UpstreamLineageClass,
|
|
39272
|
+
SchemaFieldProfileClass,
|
|
39273
|
+
DatasetUsageStatisticsClass,
|
|
39274
|
+
DatasetDeprecationClass,
|
|
39275
|
+
DatasetPropertiesClass,
|
|
39276
|
+
EditableDatasetPropertiesClass,
|
|
39277
|
+
IcebergCatalogInfoClass,
|
|
39278
|
+
PartitionsSummaryClass,
|
|
39279
|
+
ViewPropertiesClass,
|
|
39280
|
+
DatasetProfileClass,
|
|
39281
|
+
DatasetUpstreamLineageClass,
|
|
39282
|
+
DataHubPersonaInfoClass,
|
|
39283
|
+
TelemetryClientIdClass,
|
|
38942
39284
|
EditableERModelRelationshipPropertiesClass,
|
|
39285
|
+
ERModelRelationshipPropertiesClass,
|
|
39286
|
+
DataHubRoleInfoClass,
|
|
39287
|
+
DataHubPolicyInfoClass,
|
|
39288
|
+
ApplicationKeyClass,
|
|
39289
|
+
ApplicationPropertiesClass,
|
|
39290
|
+
ApplicationsClass,
|
|
39291
|
+
DataHubAccessTokenInfoClass,
|
|
39292
|
+
RemoteExecutorStatusClass,
|
|
39293
|
+
DataHubConnectionDetailsClass,
|
|
38943
39294
|
NotebookContentClass,
|
|
39295
|
+
EditableNotebookPropertiesClass,
|
|
38944
39296
|
NotebookInfoClass,
|
|
38945
|
-
|
|
39297
|
+
AssertionRunEventClass,
|
|
39298
|
+
AssertionRunSummaryClass,
|
|
39299
|
+
AssertionDryRunEventClass,
|
|
39300
|
+
AssertionActionsClass,
|
|
39301
|
+
AssertionInferenceDetailsClass,
|
|
39302
|
+
AssertionInfoClass,
|
|
39303
|
+
AssertionAnalyticsRunEventClass,
|
|
39304
|
+
LinkPreviewInfoClass,
|
|
39305
|
+
DataContractPropertiesClass,
|
|
39306
|
+
DataContractStatusClass,
|
|
39307
|
+
DataProcessInfoClass,
|
|
39308
|
+
DataProcessInstanceRunEventClass,
|
|
39309
|
+
DataProcessInstanceOutputClass,
|
|
39310
|
+
DataProcessInstancePropertiesClass,
|
|
39311
|
+
DataProcessInstanceInputClass,
|
|
39312
|
+
DataProcessInstanceRelationshipsClass,
|
|
39313
|
+
DomainPropertiesClass,
|
|
39314
|
+
DomainsClass,
|
|
39315
|
+
DataHubActionInfoClass,
|
|
39316
|
+
DataHubActionStatusClass,
|
|
39317
|
+
MonitorAnomalyEventClass,
|
|
39318
|
+
ChartQueryClass,
|
|
39319
|
+
EditableChartPropertiesClass,
|
|
39320
|
+
ChartUsageStatisticsClass,
|
|
39321
|
+
ChartInfoClass,
|
|
39322
|
+
DataHubMetricCubeEventClass,
|
|
39323
|
+
DataHubMetricCubeDefinitionClass,
|
|
39324
|
+
ConstraintInfoClass,
|
|
39325
|
+
TagPropertiesClass,
|
|
39326
|
+
PlatformResourceKeyClass,
|
|
39327
|
+
PlatformResourceInfoClass,
|
|
39328
|
+
RemoteExecutorPoolGlobalConfigClass,
|
|
39329
|
+
OwnershipTypeInfoClass,
|
|
39330
|
+
DataHubSecretValueClass,
|
|
39331
|
+
ExecutionRequestResultClass,
|
|
39332
|
+
ExecutionRequestInputClass,
|
|
39333
|
+
ExecutionRequestSignalClass,
|
|
39334
|
+
FormAssignmentStatusClass,
|
|
39335
|
+
FormInfoClass,
|
|
39336
|
+
DynamicFormAssignmentClass,
|
|
39337
|
+
FormSettingsClass
|
|
38946
39338
|
]
|
|
38947
39339
|
|
|
38948
39340
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -38954,492 +39346,500 @@ from typing import Literal
|
|
|
38954
39346
|
from typing_extensions import TypedDict
|
|
38955
39347
|
|
|
38956
39348
|
class AspectBag(TypedDict, total=False):
|
|
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
|
|
38971
|
-
businessAttributeInfo: BusinessAttributeInfoClass
|
|
38972
|
-
businessAttributes: BusinessAttributesClass
|
|
38973
|
-
businessAttributeKey: BusinessAttributeKeyClass
|
|
38974
|
-
systemMetadata: SystemMetadataClass
|
|
38975
|
-
platformResourceKey: PlatformResourceKeyClass
|
|
38976
|
-
platformResourceInfo: PlatformResourceInfoClass
|
|
38977
|
-
dataHubSecretValue: DataHubSecretValueClass
|
|
38978
|
-
dataHubViewInfo: DataHubViewInfoClass
|
|
38979
|
-
postInfo: PostInfoClass
|
|
38980
|
-
incidentActivityEvent: IncidentActivityEventClass
|
|
38981
|
-
incidentSource: IncidentSourceClass
|
|
38982
|
-
incidentInfo: IncidentInfoClass
|
|
38983
|
-
incidentNotificationDetails: IncidentNotificationDetailsClass
|
|
38984
|
-
subscriptionInfo: SubscriptionInfoClass
|
|
38985
|
-
entityTypeInfo: EntityTypeInfoClass
|
|
38986
|
-
entityTypeKey: EntityTypeKeyClass
|
|
38987
|
-
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
38988
|
-
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
38989
|
-
dataHubRoleInfo: DataHubRoleInfoClass
|
|
38990
|
-
structuredProperties: StructuredPropertiesClass
|
|
38991
39349
|
structuredPropertyKey: StructuredPropertyKeyClass
|
|
38992
|
-
propertyDefinition: StructuredPropertyDefinitionClass
|
|
38993
39350
|
structuredPropertySettings: StructuredPropertySettingsClass
|
|
38994
|
-
|
|
38995
|
-
|
|
38996
|
-
|
|
38997
|
-
|
|
38998
|
-
|
|
38999
|
-
|
|
39351
|
+
propertyDefinition: StructuredPropertyDefinitionClass
|
|
39352
|
+
structuredProperties: StructuredPropertiesClass
|
|
39353
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
39354
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
39355
|
+
dataPlatformInfo: DataPlatformInfoClass
|
|
39356
|
+
slackUserInfo: SlackUserInfoClass
|
|
39000
39357
|
schemaMetadata: SchemaMetadataClass
|
|
39001
39358
|
schemaProposals: SchemaProposalsClass
|
|
39002
39359
|
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
39003
|
-
|
|
39004
|
-
|
|
39005
|
-
|
|
39006
|
-
|
|
39007
|
-
|
|
39008
|
-
|
|
39009
|
-
|
|
39010
|
-
|
|
39011
|
-
|
|
39012
|
-
|
|
39013
|
-
|
|
39014
|
-
|
|
39015
|
-
|
|
39016
|
-
|
|
39017
|
-
|
|
39018
|
-
|
|
39019
|
-
|
|
39020
|
-
|
|
39021
|
-
|
|
39022
|
-
|
|
39023
|
-
|
|
39024
|
-
|
|
39025
|
-
|
|
39026
|
-
|
|
39027
|
-
|
|
39028
|
-
|
|
39360
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
39361
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
39362
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
39363
|
+
container: ContainerClass
|
|
39364
|
+
containerProperties: ContainerPropertiesClass
|
|
39365
|
+
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
39366
|
+
inferredNeighbors: InferredNeighborsClass
|
|
39367
|
+
schemaFieldsInferredNeighbors: SchemaFieldsInferredNeighborsClass
|
|
39368
|
+
schemaFieldsInferredMetadata: SchemaFieldsInferredMetadataClass
|
|
39369
|
+
inferredMetadata: InferredMetadataClass
|
|
39370
|
+
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
39371
|
+
mlMetric: MLMetricClass
|
|
39372
|
+
sourceCode: SourceCodeClass
|
|
39373
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
39374
|
+
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
39375
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
39376
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
39377
|
+
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
39378
|
+
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
39379
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
39380
|
+
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
39381
|
+
mlHyperParam: MLHyperParamClass
|
|
39382
|
+
mlModelEvaluationData: EvaluationDataClass
|
|
39383
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
39384
|
+
intendedUse: IntendedUseClass
|
|
39385
|
+
mlModelTrainingData: TrainingDataClass
|
|
39386
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
39387
|
+
mlModelMetrics: MetricsClass
|
|
39388
|
+
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
39389
|
+
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
39390
|
+
mlModelProperties: MLModelPropertiesClass
|
|
39391
|
+
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
39392
|
+
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
39393
|
+
postInfo: PostInfoClass
|
|
39394
|
+
aiInferenceMetadata: AiInferenceMetadataClass
|
|
39395
|
+
entityInferenceMetadata: EntityInferenceMetadataClass
|
|
39396
|
+
recommendationModule: RecommendationModuleClass
|
|
39029
39397
|
actionRequestKey: ActionRequestKeyClass
|
|
39030
|
-
linkPreviewKey: LinkPreviewKeyClass
|
|
39031
|
-
constraintKey: ConstraintKeyClass
|
|
39032
39398
|
roleKey: RoleKeyClass
|
|
39399
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
39400
|
+
linkPreviewKey: LinkPreviewKeyClass
|
|
39401
|
+
dataHubActionKey: DataHubActionKeyClass
|
|
39402
|
+
corpGroupKey: CorpGroupKeyClass
|
|
39403
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
39404
|
+
inviteTokenKey: InviteTokenKeyClass
|
|
39033
39405
|
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
39406
|
+
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
39407
|
+
dataContractKey: DataContractKeyClass
|
|
39408
|
+
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
39409
|
+
recommendationModuleKey: RecommendationModuleKeyClass
|
|
39410
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
39411
|
+
constraintKey: ConstraintKeyClass
|
|
39034
39412
|
monitorKey: MonitorKeyClass
|
|
39035
|
-
|
|
39036
|
-
|
|
39413
|
+
corpUserKey: CorpUserKeyClass
|
|
39414
|
+
anomalyKey: AnomalyKeyClass
|
|
39415
|
+
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
39416
|
+
containerKey: ContainerKeyClass
|
|
39037
39417
|
schemaFieldKey: SchemaFieldKeyClass
|
|
39038
|
-
|
|
39418
|
+
notebookKey: NotebookKeyClass
|
|
39419
|
+
mlModelKey: MLModelKeyClass
|
|
39420
|
+
dataHubRemoteExecutorGlobalConfigKey: RemoteExecutorGlobalConfigKeyClass
|
|
39421
|
+
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
39422
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
39423
|
+
chartKey: ChartKeyClass
|
|
39424
|
+
assertionKey: AssertionKeyClass
|
|
39039
39425
|
dataJobKey: DataJobKeyClass
|
|
39040
39426
|
genericEntityKey: GenericEntityKeyClass
|
|
39041
|
-
|
|
39042
|
-
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
39043
|
-
dataHubRemoteExecutorGlobalConfigKey: RemoteExecutorGlobalConfigKeyClass
|
|
39427
|
+
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
39044
39428
|
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
39045
|
-
|
|
39429
|
+
queryKey: QueryKeyClass
|
|
39046
39430
|
versionSetKey: VersionSetKeyClass
|
|
39431
|
+
dataHubMetricCubeKey: DataHubMetricCubeKeyClass
|
|
39432
|
+
dataPlatformKey: DataPlatformKeyClass
|
|
39433
|
+
ownershipTypeKey: OwnershipTypeKeyClass
|
|
39434
|
+
glossaryTermKey: GlossaryTermKeyClass
|
|
39435
|
+
formKey: FormKeyClass
|
|
39436
|
+
dataHubOpenAPISchemaKey: DataHubOpenAPISchemaKeyClass
|
|
39437
|
+
dataFlowKey: DataFlowKeyClass
|
|
39438
|
+
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
39439
|
+
monitorSuiteKey: MonitorSuiteKeyClass
|
|
39047
39440
|
dataHubViewKey: DataHubViewKeyClass
|
|
39048
|
-
mlFeatureKey: MLFeatureKeyClass
|
|
39049
|
-
notebookKey: NotebookKeyClass
|
|
39050
39441
|
glossaryNodeKey: GlossaryNodeKeyClass
|
|
39442
|
+
tagKey: TagKeyClass
|
|
39443
|
+
dashboardKey: DashboardKeyClass
|
|
39051
39444
|
dataHubRemoteExecutorPoolKey: RemoteExecutorPoolKeyClass
|
|
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
|
|
39062
|
-
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
39063
|
-
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
39064
|
-
corpGroupKey: CorpGroupKeyClass
|
|
39065
39445
|
incidentKey: IncidentKeyClass
|
|
39066
|
-
postKey: PostKeyClass
|
|
39067
|
-
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
39068
|
-
globalSettingsKey: GlobalSettingsKeyClass
|
|
39069
|
-
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
39070
|
-
assertionKey: AssertionKeyClass
|
|
39071
39446
|
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
39447
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
39448
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
39449
|
+
datasetKey: DatasetKeyClass
|
|
39072
39450
|
testKey: TestKeyClass
|
|
39073
|
-
|
|
39074
|
-
|
|
39075
|
-
|
|
39076
|
-
|
|
39451
|
+
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
39452
|
+
globalSettingsKey: GlobalSettingsKeyClass
|
|
39453
|
+
domainKey: DomainKeyClass
|
|
39454
|
+
postKey: PostKeyClass
|
|
39077
39455
|
dataHubRemoteExecutorKey: RemoteExecutorKeyClass
|
|
39078
|
-
|
|
39079
|
-
|
|
39080
|
-
dataHubSecretKey: DataHubSecretKeyClass
|
|
39081
|
-
corpUserKey: CorpUserKeyClass
|
|
39082
|
-
chartKey: ChartKeyClass
|
|
39083
|
-
mlModelKey: MLModelKeyClass
|
|
39084
|
-
dashboardKey: DashboardKeyClass
|
|
39456
|
+
telemetryKey: TelemetryKeyClass
|
|
39457
|
+
dataHubRoleKey: DataHubRoleKeyClass
|
|
39085
39458
|
subscriptionKey: SubscriptionKeyClass
|
|
39086
|
-
|
|
39087
|
-
|
|
39088
|
-
|
|
39459
|
+
dataProcessKey: DataProcessKeyClass
|
|
39460
|
+
dataHubSecretKey: DataHubSecretKeyClass
|
|
39461
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
39462
|
+
usageFeatures: UsageFeaturesClass
|
|
39463
|
+
storageFeatures: StorageFeaturesClass
|
|
39464
|
+
lineageFeatures: LineageFeaturesClass
|
|
39465
|
+
costFeatures: CostFeaturesClass
|
|
39466
|
+
dataTypeInfo: DataTypeInfoClass
|
|
39467
|
+
dataTypeKey: DataTypeKeyClass
|
|
39468
|
+
monitorTimeseriesState: MonitorTimeseriesStateClass
|
|
39469
|
+
monitorSuiteInfo: MonitorSuiteInfoClass
|
|
39470
|
+
monitorInfo: MonitorInfoClass
|
|
39471
|
+
schemaFieldAliases: SchemaFieldAliasesClass
|
|
39472
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
39473
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
39474
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
39089
39475
|
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
39476
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
39090
39477
|
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
39091
|
-
|
|
39092
|
-
|
|
39093
|
-
|
|
39094
|
-
|
|
39095
|
-
|
|
39096
|
-
|
|
39097
|
-
|
|
39098
|
-
|
|
39099
|
-
|
|
39100
|
-
|
|
39101
|
-
|
|
39102
|
-
|
|
39103
|
-
|
|
39104
|
-
|
|
39105
|
-
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
39106
|
-
mlModelTrainingData: TrainingDataClass
|
|
39107
|
-
sourceCode: SourceCodeClass
|
|
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
|
|
39145
|
-
linkPreviewInfo: LinkPreviewInfoClass
|
|
39146
|
-
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
39147
|
-
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
39148
|
-
dataTypeKey: DataTypeKeyClass
|
|
39149
|
-
dataTypeInfo: DataTypeInfoClass
|
|
39150
|
-
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
39151
|
-
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
39152
|
-
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
39153
|
-
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
39154
|
-
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
39155
|
-
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
39478
|
+
subscriptionInfo: SubscriptionInfoClass
|
|
39479
|
+
incidentNotificationDetails: IncidentNotificationDetailsClass
|
|
39480
|
+
incidentInfo: IncidentInfoClass
|
|
39481
|
+
incidentActivityEvent: IncidentActivityEventClass
|
|
39482
|
+
incidentSource: IncidentSourceClass
|
|
39483
|
+
systemMetadata: SystemMetadataClass
|
|
39484
|
+
batchTestRunEvent: BatchTestRunEventClass
|
|
39485
|
+
testResults: TestResultsClass
|
|
39486
|
+
testInfo: TestInfoClass
|
|
39487
|
+
entityTypeKey: EntityTypeKeyClass
|
|
39488
|
+
entityTypeInfo: EntityTypeInfoClass
|
|
39489
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
39490
|
+
businessAttributes: BusinessAttributesClass
|
|
39491
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
39156
39492
|
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
39157
39493
|
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
39158
|
-
|
|
39159
|
-
|
|
39160
|
-
|
|
39161
|
-
|
|
39162
|
-
|
|
39163
|
-
|
|
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
|
|
39494
|
+
dataProductProperties: DataProductPropertiesClass
|
|
39495
|
+
dataProductKey: DataProductKeyClass
|
|
39496
|
+
cost: CostClass
|
|
39497
|
+
share: ShareClass
|
|
39498
|
+
incidentsSummary: IncidentsSummaryClass
|
|
39499
|
+
globalTags: GlobalTagsClass
|
|
39173
39500
|
ownership: OwnershipClass
|
|
39174
|
-
glossaryTerms: GlossaryTermsClass
|
|
39175
|
-
forms: FormsClass
|
|
39176
|
-
documentation: DocumentationClass
|
|
39177
|
-
deprecation: DeprecationClass
|
|
39178
39501
|
institutionalMemory: InstitutionalMemoryClass
|
|
39179
|
-
dataPlatformInstance: DataPlatformInstanceClass
|
|
39180
39502
|
anomaliesSummary: AnomaliesSummaryClass
|
|
39181
|
-
|
|
39182
|
-
|
|
39183
|
-
|
|
39184
|
-
|
|
39503
|
+
forms: FormsClass
|
|
39504
|
+
access: AccessClass
|
|
39505
|
+
browsePaths: BrowsePathsClass
|
|
39506
|
+
origin: OriginClass
|
|
39507
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
39185
39508
|
operation: OperationClass
|
|
39509
|
+
displayProperties: DisplayPropertiesClass
|
|
39510
|
+
proposals: ProposalsClass
|
|
39511
|
+
browsePathsV2: BrowsePathsV2Class
|
|
39512
|
+
assertionsSummary: AssertionsSummaryClass
|
|
39513
|
+
dataTransformLogic: DataTransformLogicClass
|
|
39514
|
+
glossaryTerms: GlossaryTermsClass
|
|
39515
|
+
deprecation: DeprecationClass
|
|
39516
|
+
status: StatusClass
|
|
39517
|
+
versionProperties: VersionPropertiesClass
|
|
39186
39518
|
subTypes: SubTypesClass
|
|
39187
|
-
siblings: SiblingsClass
|
|
39188
|
-
share: ShareClass
|
|
39189
|
-
access: AccessClass
|
|
39190
|
-
globalTags: GlobalTagsClass
|
|
39191
|
-
cost: CostClass
|
|
39192
39519
|
inputFields: InputFieldsClass
|
|
39193
|
-
proposals: ProposalsClass
|
|
39194
39520
|
embed: EmbedClass
|
|
39195
|
-
|
|
39196
|
-
|
|
39197
|
-
|
|
39198
|
-
|
|
39199
|
-
|
|
39200
|
-
|
|
39521
|
+
siblings: SiblingsClass
|
|
39522
|
+
documentation: DocumentationClass
|
|
39523
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
39524
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
39525
|
+
dashboardInfo: DashboardInfoClass
|
|
39526
|
+
versionSetProperties: VersionSetPropertiesClass
|
|
39527
|
+
roleProperties: RolePropertiesClass
|
|
39528
|
+
actors: ActorsClass
|
|
39529
|
+
dataJobInfo: DataJobInfoClass
|
|
39530
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
39531
|
+
versionInfo: VersionInfoClass
|
|
39532
|
+
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
39533
|
+
dataJobInputOutput: DataJobInputOutputClass
|
|
39534
|
+
dataFlowInfo: DataFlowInfoClass
|
|
39535
|
+
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
39536
|
+
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
39537
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
39538
|
+
queryProperties: QueryPropertiesClass
|
|
39539
|
+
querySubjects: QuerySubjectsClass
|
|
39540
|
+
queryUsageFeatures: QueryUsageFeaturesClass
|
|
39541
|
+
dataHubRemoteExecutorPoolInfo: RemoteExecutorPoolInfoClass
|
|
39542
|
+
formNotifications: FormNotificationsClass
|
|
39543
|
+
actionRequestArchived: ActionRequestArchivedClass
|
|
39544
|
+
actionRequestInfo: ActionRequestInfoClass
|
|
39545
|
+
actionRequestStatus: ActionRequestStatusClass
|
|
39201
39546
|
corpGroupSettings: CorpGroupSettingsClass
|
|
39202
|
-
|
|
39547
|
+
corpUserStatus: CorpUserStatusClass
|
|
39548
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
39549
|
+
corpUserInfo: CorpUserInfoClass
|
|
39203
39550
|
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
39551
|
+
groupMembership: GroupMembershipClass
|
|
39204
39552
|
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
39205
|
-
corpUserInfo: CorpUserInfoClass
|
|
39206
|
-
roleMembership: RoleMembershipClass
|
|
39207
|
-
corpUserCredentials: CorpUserCredentialsClass
|
|
39208
39553
|
corpUserSettings: CorpUserSettingsClass
|
|
39209
|
-
nativeGroupMembership: NativeGroupMembershipClass
|
|
39210
|
-
groupMembership: GroupMembershipClass
|
|
39211
39554
|
corpGroupInfo: CorpGroupInfoClass
|
|
39212
|
-
|
|
39213
|
-
|
|
39214
|
-
|
|
39215
|
-
|
|
39216
|
-
|
|
39217
|
-
|
|
39218
|
-
|
|
39219
|
-
|
|
39220
|
-
|
|
39221
|
-
|
|
39222
|
-
|
|
39223
|
-
|
|
39555
|
+
roleMembership: RoleMembershipClass
|
|
39556
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
39557
|
+
inviteToken: InviteTokenClass
|
|
39558
|
+
upstreamLineage: UpstreamLineageClass
|
|
39559
|
+
schemaFieldProfile: SchemaFieldProfileClass
|
|
39560
|
+
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
39561
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
39562
|
+
datasetProperties: DatasetPropertiesClass
|
|
39563
|
+
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
39564
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
39565
|
+
partitionsSummary: PartitionsSummaryClass
|
|
39566
|
+
viewProperties: ViewPropertiesClass
|
|
39567
|
+
datasetProfile: DatasetProfileClass
|
|
39568
|
+
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
39569
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
39570
|
+
telemetryClientId: TelemetryClientIdClass
|
|
39224
39571
|
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
39572
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
39573
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
39574
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
39575
|
+
applicationKey: ApplicationKeyClass
|
|
39576
|
+
applicationProperties: ApplicationPropertiesClass
|
|
39577
|
+
applications: ApplicationsClass
|
|
39578
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
39579
|
+
dataHubRemoteExecutorStatus: RemoteExecutorStatusClass
|
|
39580
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
39225
39581
|
notebookContent: NotebookContentClass
|
|
39226
|
-
notebookInfo: NotebookInfoClass
|
|
39227
39582
|
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
39583
|
+
notebookInfo: NotebookInfoClass
|
|
39584
|
+
assertionRunEvent: AssertionRunEventClass
|
|
39585
|
+
assertionRunSummary: AssertionRunSummaryClass
|
|
39586
|
+
assertionDryRunEvent: AssertionDryRunEventClass
|
|
39587
|
+
assertionActions: AssertionActionsClass
|
|
39588
|
+
assertionInferenceDetails: AssertionInferenceDetailsClass
|
|
39589
|
+
assertionInfo: AssertionInfoClass
|
|
39590
|
+
assertionAnalyticsRunEvent: AssertionAnalyticsRunEventClass
|
|
39591
|
+
linkPreviewInfo: LinkPreviewInfoClass
|
|
39592
|
+
dataContractProperties: DataContractPropertiesClass
|
|
39593
|
+
dataContractStatus: DataContractStatusClass
|
|
39594
|
+
dataProcessInfo: DataProcessInfoClass
|
|
39595
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
39596
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
39597
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
39598
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
39599
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
39600
|
+
domainProperties: DomainPropertiesClass
|
|
39601
|
+
domains: DomainsClass
|
|
39602
|
+
dataHubActionInfo: DataHubActionInfoClass
|
|
39603
|
+
dataHubActionStatus: DataHubActionStatusClass
|
|
39604
|
+
monitorAnomalyEvent: MonitorAnomalyEventClass
|
|
39605
|
+
chartQuery: ChartQueryClass
|
|
39606
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
39607
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
39608
|
+
chartInfo: ChartInfoClass
|
|
39609
|
+
dataHubMetricCubeEvent: DataHubMetricCubeEventClass
|
|
39610
|
+
dataHubMetricCubeDefinition: DataHubMetricCubeDefinitionClass
|
|
39611
|
+
constraintInfo: ConstraintInfoClass
|
|
39612
|
+
tagProperties: TagPropertiesClass
|
|
39613
|
+
platformResourceKey: PlatformResourceKeyClass
|
|
39614
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
39615
|
+
dataHubRemoteExecutorPoolGlobalConfig: RemoteExecutorPoolGlobalConfigClass
|
|
39616
|
+
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
39617
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
39618
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
39619
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
39620
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
39621
|
+
formAssignmentStatus: FormAssignmentStatusClass
|
|
39622
|
+
formInfo: FormInfoClass
|
|
39623
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
39624
|
+
formSettings: FormSettingsClass
|
|
39228
39625
|
|
|
39229
39626
|
|
|
39230
39627
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
39231
|
-
'businessAttribute': BusinessAttributeKeyClass,
|
|
39232
|
-
'platformResource': PlatformResourceKeyClass,
|
|
39233
|
-
'entityType': EntityTypeKeyClass,
|
|
39234
39628
|
'structuredProperty': StructuredPropertyKeyClass,
|
|
39235
|
-
'recommendationModule': RecommendationModuleKeyClass,
|
|
39236
|
-
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
39237
|
-
'tag': TagKeyClass,
|
|
39238
|
-
'dataset': DatasetKeyClass,
|
|
39239
|
-
'dataPlatform': DataPlatformKeyClass,
|
|
39240
|
-
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
39241
|
-
'ownershipType': OwnershipTypeKeyClass,
|
|
39242
39629
|
'actionRequest': ActionRequestKeyClass,
|
|
39243
|
-
'linkPreview': LinkPreviewKeyClass,
|
|
39244
|
-
'constraint': ConstraintKeyClass,
|
|
39245
39630
|
'role': RoleKeyClass,
|
|
39631
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
39632
|
+
'linkPreview': LinkPreviewKeyClass,
|
|
39633
|
+
'dataHubAction': DataHubActionKeyClass,
|
|
39634
|
+
'corpGroup': CorpGroupKeyClass,
|
|
39635
|
+
'mlFeature': MLFeatureKeyClass,
|
|
39636
|
+
'inviteToken': InviteTokenKeyClass,
|
|
39246
39637
|
'dataHubStepState': DataHubStepStateKeyClass,
|
|
39638
|
+
'dataHubPersona': DataHubPersonaKeyClass,
|
|
39639
|
+
'dataContract': DataContractKeyClass,
|
|
39640
|
+
'dataHubConnection': DataHubConnectionKeyClass,
|
|
39641
|
+
'recommendationModule': RecommendationModuleKeyClass,
|
|
39642
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
39643
|
+
'constraint': ConstraintKeyClass,
|
|
39247
39644
|
'monitor': MonitorKeyClass,
|
|
39248
|
-
'
|
|
39249
|
-
'dataHubRole': DataHubRoleKeyClass,
|
|
39250
|
-
'schemaField': SchemaFieldKeyClass,
|
|
39251
|
-
'dataFlow': DataFlowKeyClass,
|
|
39252
|
-
'dataJob': DataJobKeyClass,
|
|
39253
|
-
'dataProcess': DataProcessKeyClass,
|
|
39645
|
+
'corpuser': CorpUserKeyClass,
|
|
39254
39646
|
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
39647
|
+
'container': ContainerKeyClass,
|
|
39648
|
+
'schemaField': SchemaFieldKeyClass,
|
|
39649
|
+
'notebook': NotebookKeyClass,
|
|
39650
|
+
'mlModel': MLModelKeyClass,
|
|
39255
39651
|
'dataHubRemoteExecutorGlobalConfig': RemoteExecutorGlobalConfigKeyClass,
|
|
39652
|
+
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
39653
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
39654
|
+
'chart': ChartKeyClass,
|
|
39655
|
+
'assertion': AssertionKeyClass,
|
|
39656
|
+
'dataJob': DataJobKeyClass,
|
|
39657
|
+
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
39256
39658
|
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
39257
|
-
'
|
|
39659
|
+
'query': QueryKeyClass,
|
|
39258
39660
|
'versionSet': VersionSetKeyClass,
|
|
39661
|
+
'dataHubMetricCube': DataHubMetricCubeKeyClass,
|
|
39662
|
+
'dataPlatform': DataPlatformKeyClass,
|
|
39663
|
+
'ownershipType': OwnershipTypeKeyClass,
|
|
39664
|
+
'glossaryTerm': GlossaryTermKeyClass,
|
|
39665
|
+
'form': FormKeyClass,
|
|
39666
|
+
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
39667
|
+
'dataFlow': DataFlowKeyClass,
|
|
39668
|
+
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
39669
|
+
'monitorSuite': MonitorSuiteKeyClass,
|
|
39259
39670
|
'dataHubView': DataHubViewKeyClass,
|
|
39260
|
-
'mlFeature': MLFeatureKeyClass,
|
|
39261
|
-
'notebook': NotebookKeyClass,
|
|
39262
39671
|
'glossaryNode': GlossaryNodeKeyClass,
|
|
39672
|
+
'tag': TagKeyClass,
|
|
39673
|
+
'dashboard': DashboardKeyClass,
|
|
39263
39674
|
'dataHubRemoteExecutorPool': RemoteExecutorPoolKeyClass,
|
|
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,
|
|
39274
|
-
'dataHubConnection': DataHubConnectionKeyClass,
|
|
39275
|
-
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
39276
|
-
'corpGroup': CorpGroupKeyClass,
|
|
39277
39675
|
'incident': IncidentKeyClass,
|
|
39278
|
-
'post': PostKeyClass,
|
|
39279
|
-
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
39280
|
-
'globalSettings': GlobalSettingsKeyClass,
|
|
39281
|
-
'dataHubRetention': DataHubRetentionKeyClass,
|
|
39282
|
-
'assertion': AssertionKeyClass,
|
|
39283
39676
|
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
39677
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
39678
|
+
'dataHubRetention': DataHubRetentionKeyClass,
|
|
39679
|
+
'dataset': DatasetKeyClass,
|
|
39284
39680
|
'test': TestKeyClass,
|
|
39285
|
-
'
|
|
39286
|
-
'
|
|
39287
|
-
'
|
|
39288
|
-
'
|
|
39681
|
+
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
39682
|
+
'globalSettings': GlobalSettingsKeyClass,
|
|
39683
|
+
'domain': DomainKeyClass,
|
|
39684
|
+
'post': PostKeyClass,
|
|
39289
39685
|
'dataHubRemoteExecutor': RemoteExecutorKeyClass,
|
|
39290
|
-
'
|
|
39291
|
-
'
|
|
39292
|
-
'dataHubSecret': DataHubSecretKeyClass,
|
|
39293
|
-
'corpuser': CorpUserKeyClass,
|
|
39294
|
-
'chart': ChartKeyClass,
|
|
39295
|
-
'mlModel': MLModelKeyClass,
|
|
39296
|
-
'dashboard': DashboardKeyClass,
|
|
39686
|
+
'telemetry': TelemetryKeyClass,
|
|
39687
|
+
'dataHubRole': DataHubRoleKeyClass,
|
|
39297
39688
|
'subscription': SubscriptionKeyClass,
|
|
39689
|
+
'dataProcess': DataProcessKeyClass,
|
|
39690
|
+
'dataHubSecret': DataHubSecretKeyClass,
|
|
39691
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
39692
|
+
'dataType': DataTypeKeyClass,
|
|
39693
|
+
'entityType': EntityTypeKeyClass,
|
|
39694
|
+
'businessAttribute': BusinessAttributeKeyClass,
|
|
39298
39695
|
'dataProduct': DataProductKeyClass,
|
|
39299
|
-
'
|
|
39696
|
+
'application': ApplicationKeyClass,
|
|
39697
|
+
'platformResource': PlatformResourceKeyClass
|
|
39300
39698
|
}
|
|
39301
39699
|
|
|
39302
39700
|
ENTITY_TYPE_NAMES: List[str] = [
|
|
39303
|
-
'businessAttribute',
|
|
39304
|
-
'platformResource',
|
|
39305
|
-
'entityType',
|
|
39306
39701
|
'structuredProperty',
|
|
39307
|
-
'recommendationModule',
|
|
39308
|
-
'dataHubPolicy',
|
|
39309
|
-
'tag',
|
|
39310
|
-
'dataset',
|
|
39311
|
-
'dataPlatform',
|
|
39312
|
-
'dataHubExecutionRequest',
|
|
39313
|
-
'ownershipType',
|
|
39314
39702
|
'actionRequest',
|
|
39315
|
-
'linkPreview',
|
|
39316
|
-
'constraint',
|
|
39317
39703
|
'role',
|
|
39704
|
+
'dataProcessInstance',
|
|
39705
|
+
'linkPreview',
|
|
39706
|
+
'dataHubAction',
|
|
39707
|
+
'corpGroup',
|
|
39708
|
+
'mlFeature',
|
|
39709
|
+
'inviteToken',
|
|
39318
39710
|
'dataHubStepState',
|
|
39711
|
+
'dataHubPersona',
|
|
39712
|
+
'dataContract',
|
|
39713
|
+
'dataHubConnection',
|
|
39714
|
+
'recommendationModule',
|
|
39715
|
+
'dataHubPolicy',
|
|
39716
|
+
'constraint',
|
|
39319
39717
|
'monitor',
|
|
39320
|
-
'
|
|
39321
|
-
'dataHubRole',
|
|
39322
|
-
'schemaField',
|
|
39323
|
-
'dataFlow',
|
|
39324
|
-
'dataJob',
|
|
39325
|
-
'dataProcess',
|
|
39718
|
+
'corpuser',
|
|
39326
39719
|
'mlModelDeployment',
|
|
39720
|
+
'container',
|
|
39721
|
+
'schemaField',
|
|
39722
|
+
'notebook',
|
|
39723
|
+
'mlModel',
|
|
39327
39724
|
'dataHubRemoteExecutorGlobalConfig',
|
|
39725
|
+
'dataPlatformInstance',
|
|
39726
|
+
'dataHubIngestionSource',
|
|
39727
|
+
'chart',
|
|
39728
|
+
'assertion',
|
|
39729
|
+
'dataJob',
|
|
39730
|
+
'dataHubExecutionRequest',
|
|
39328
39731
|
'dataHubAccessToken',
|
|
39329
|
-
'
|
|
39732
|
+
'query',
|
|
39330
39733
|
'versionSet',
|
|
39734
|
+
'dataHubMetricCube',
|
|
39735
|
+
'dataPlatform',
|
|
39736
|
+
'ownershipType',
|
|
39737
|
+
'glossaryTerm',
|
|
39738
|
+
'form',
|
|
39739
|
+
'dataHubOpenAPISchema',
|
|
39740
|
+
'dataFlow',
|
|
39741
|
+
'dataHubUpgrade',
|
|
39742
|
+
'monitorSuite',
|
|
39331
39743
|
'dataHubView',
|
|
39332
|
-
'mlFeature',
|
|
39333
|
-
'notebook',
|
|
39334
39744
|
'glossaryNode',
|
|
39745
|
+
'tag',
|
|
39746
|
+
'dashboard',
|
|
39335
39747
|
'dataHubRemoteExecutorPool',
|
|
39336
|
-
'dataHubAction',
|
|
39337
|
-
'container',
|
|
39338
|
-
'mlPrimaryKey',
|
|
39339
|
-
'monitorSuite',
|
|
39340
|
-
'dataHubMetricCube',
|
|
39341
|
-
'inviteToken',
|
|
39342
|
-
'dataHubPersona',
|
|
39343
|
-
'domain',
|
|
39344
|
-
'form',
|
|
39345
|
-
'telemetry',
|
|
39346
|
-
'dataHubConnection',
|
|
39347
|
-
'erModelRelationship',
|
|
39348
|
-
'corpGroup',
|
|
39349
39748
|
'incident',
|
|
39350
|
-
'post',
|
|
39351
|
-
'dataHubUpgrade',
|
|
39352
|
-
'globalSettings',
|
|
39353
|
-
'dataHubRetention',
|
|
39354
|
-
'assertion',
|
|
39355
39749
|
'mlFeatureTable',
|
|
39750
|
+
'mlPrimaryKey',
|
|
39751
|
+
'dataHubRetention',
|
|
39752
|
+
'dataset',
|
|
39356
39753
|
'test',
|
|
39357
|
-
'
|
|
39358
|
-
'
|
|
39359
|
-
'
|
|
39360
|
-
'
|
|
39754
|
+
'erModelRelationship',
|
|
39755
|
+
'globalSettings',
|
|
39756
|
+
'domain',
|
|
39757
|
+
'post',
|
|
39361
39758
|
'dataHubRemoteExecutor',
|
|
39362
|
-
'
|
|
39363
|
-
'
|
|
39364
|
-
'dataHubSecret',
|
|
39365
|
-
'corpuser',
|
|
39366
|
-
'chart',
|
|
39367
|
-
'mlModel',
|
|
39368
|
-
'dashboard',
|
|
39759
|
+
'telemetry',
|
|
39760
|
+
'dataHubRole',
|
|
39369
39761
|
'subscription',
|
|
39762
|
+
'dataProcess',
|
|
39763
|
+
'dataHubSecret',
|
|
39764
|
+
'mlModelGroup',
|
|
39765
|
+
'dataType',
|
|
39766
|
+
'entityType',
|
|
39767
|
+
'businessAttribute',
|
|
39370
39768
|
'dataProduct',
|
|
39371
|
-
'
|
|
39769
|
+
'application',
|
|
39770
|
+
'platformResource'
|
|
39372
39771
|
]
|
|
39373
39772
|
EntityTypeName = Literal[
|
|
39374
|
-
'businessAttribute',
|
|
39375
|
-
'platformResource',
|
|
39376
|
-
'entityType',
|
|
39377
39773
|
'structuredProperty',
|
|
39378
|
-
'recommendationModule',
|
|
39379
|
-
'dataHubPolicy',
|
|
39380
|
-
'tag',
|
|
39381
|
-
'dataset',
|
|
39382
|
-
'dataPlatform',
|
|
39383
|
-
'dataHubExecutionRequest',
|
|
39384
|
-
'ownershipType',
|
|
39385
39774
|
'actionRequest',
|
|
39386
|
-
'linkPreview',
|
|
39387
|
-
'constraint',
|
|
39388
39775
|
'role',
|
|
39776
|
+
'dataProcessInstance',
|
|
39777
|
+
'linkPreview',
|
|
39778
|
+
'dataHubAction',
|
|
39779
|
+
'corpGroup',
|
|
39780
|
+
'mlFeature',
|
|
39781
|
+
'inviteToken',
|
|
39389
39782
|
'dataHubStepState',
|
|
39783
|
+
'dataHubPersona',
|
|
39784
|
+
'dataContract',
|
|
39785
|
+
'dataHubConnection',
|
|
39786
|
+
'recommendationModule',
|
|
39787
|
+
'dataHubPolicy',
|
|
39788
|
+
'constraint',
|
|
39390
39789
|
'monitor',
|
|
39391
|
-
'
|
|
39392
|
-
'dataHubRole',
|
|
39393
|
-
'schemaField',
|
|
39394
|
-
'dataFlow',
|
|
39395
|
-
'dataJob',
|
|
39396
|
-
'dataProcess',
|
|
39790
|
+
'corpuser',
|
|
39397
39791
|
'mlModelDeployment',
|
|
39792
|
+
'container',
|
|
39793
|
+
'schemaField',
|
|
39794
|
+
'notebook',
|
|
39795
|
+
'mlModel',
|
|
39398
39796
|
'dataHubRemoteExecutorGlobalConfig',
|
|
39797
|
+
'dataPlatformInstance',
|
|
39798
|
+
'dataHubIngestionSource',
|
|
39799
|
+
'chart',
|
|
39800
|
+
'assertion',
|
|
39801
|
+
'dataJob',
|
|
39802
|
+
'dataHubExecutionRequest',
|
|
39399
39803
|
'dataHubAccessToken',
|
|
39400
|
-
'
|
|
39804
|
+
'query',
|
|
39401
39805
|
'versionSet',
|
|
39806
|
+
'dataHubMetricCube',
|
|
39807
|
+
'dataPlatform',
|
|
39808
|
+
'ownershipType',
|
|
39809
|
+
'glossaryTerm',
|
|
39810
|
+
'form',
|
|
39811
|
+
'dataHubOpenAPISchema',
|
|
39812
|
+
'dataFlow',
|
|
39813
|
+
'dataHubUpgrade',
|
|
39814
|
+
'monitorSuite',
|
|
39402
39815
|
'dataHubView',
|
|
39403
|
-
'mlFeature',
|
|
39404
|
-
'notebook',
|
|
39405
39816
|
'glossaryNode',
|
|
39817
|
+
'tag',
|
|
39818
|
+
'dashboard',
|
|
39406
39819
|
'dataHubRemoteExecutorPool',
|
|
39407
|
-
'dataHubAction',
|
|
39408
|
-
'container',
|
|
39409
|
-
'mlPrimaryKey',
|
|
39410
|
-
'monitorSuite',
|
|
39411
|
-
'dataHubMetricCube',
|
|
39412
|
-
'inviteToken',
|
|
39413
|
-
'dataHubPersona',
|
|
39414
|
-
'domain',
|
|
39415
|
-
'form',
|
|
39416
|
-
'telemetry',
|
|
39417
|
-
'dataHubConnection',
|
|
39418
|
-
'erModelRelationship',
|
|
39419
|
-
'corpGroup',
|
|
39420
39820
|
'incident',
|
|
39421
|
-
'post',
|
|
39422
|
-
'dataHubUpgrade',
|
|
39423
|
-
'globalSettings',
|
|
39424
|
-
'dataHubRetention',
|
|
39425
|
-
'assertion',
|
|
39426
39821
|
'mlFeatureTable',
|
|
39822
|
+
'mlPrimaryKey',
|
|
39823
|
+
'dataHubRetention',
|
|
39824
|
+
'dataset',
|
|
39427
39825
|
'test',
|
|
39428
|
-
'
|
|
39429
|
-
'
|
|
39430
|
-
'
|
|
39431
|
-
'
|
|
39826
|
+
'erModelRelationship',
|
|
39827
|
+
'globalSettings',
|
|
39828
|
+
'domain',
|
|
39829
|
+
'post',
|
|
39432
39830
|
'dataHubRemoteExecutor',
|
|
39433
|
-
'
|
|
39434
|
-
'
|
|
39435
|
-
'dataHubSecret',
|
|
39436
|
-
'corpuser',
|
|
39437
|
-
'chart',
|
|
39438
|
-
'mlModel',
|
|
39439
|
-
'dashboard',
|
|
39831
|
+
'telemetry',
|
|
39832
|
+
'dataHubRole',
|
|
39440
39833
|
'subscription',
|
|
39834
|
+
'dataProcess',
|
|
39835
|
+
'dataHubSecret',
|
|
39836
|
+
'mlModelGroup',
|
|
39837
|
+
'dataType',
|
|
39838
|
+
'entityType',
|
|
39839
|
+
'businessAttribute',
|
|
39441
39840
|
'dataProduct',
|
|
39442
|
-
'
|
|
39841
|
+
'application',
|
|
39842
|
+
'platformResource'
|
|
39443
39843
|
]
|
|
39444
39844
|
|
|
39445
39845
|
# fmt: on
|