acryl-datahub 1.0.0rc4__py3-none-any.whl → 1.0.0rc6__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 might be problematic. Click here for more details.
- {acryl_datahub-1.0.0rc4.dist-info → acryl_datahub-1.0.0rc6.dist-info}/METADATA +2502 -2502
- {acryl_datahub-1.0.0rc4.dist-info → acryl_datahub-1.0.0rc6.dist-info}/RECORD +62 -59
- {acryl_datahub-1.0.0rc4.dist-info → acryl_datahub-1.0.0rc6.dist-info}/WHEEL +1 -1
- datahub/_version.py +1 -1
- datahub/cli/ingest_cli.py +3 -1
- datahub/emitter/mcp_builder.py +4 -1
- datahub/ingestion/api/source_helpers.py +4 -0
- datahub/ingestion/run/pipeline.py +109 -143
- datahub/ingestion/run/sink_callback.py +77 -0
- datahub/ingestion/source/bigquery_v2/bigquery_schema.py +5 -0
- datahub/ingestion/source/bigquery_v2/bigquery_schema_gen.py +7 -4
- datahub/ingestion/source/cassandra/cassandra.py +152 -233
- datahub/ingestion/source/cassandra/cassandra_api.py +11 -4
- datahub/ingestion/source/delta_lake/config.py +8 -1
- datahub/ingestion/source/delta_lake/report.py +4 -2
- datahub/ingestion/source/delta_lake/source.py +20 -5
- datahub/ingestion/source/elastic_search.py +26 -6
- datahub/ingestion/source/feast.py +27 -8
- datahub/ingestion/source/file.py +1 -1
- datahub/ingestion/source/identity/okta.py +1 -2
- datahub/ingestion/source/mlflow.py +30 -7
- datahub/ingestion/source/mode.py +7 -2
- datahub/ingestion/source/neo4j/neo4j_source.py +26 -6
- datahub/ingestion/source/nifi.py +29 -6
- datahub/ingestion/source/openapi_parser.py +46 -14
- datahub/ingestion/source/powerbi_report_server/report_server.py +25 -6
- datahub/ingestion/source/pulsar.py +1 -0
- datahub/ingestion/source/redash.py +29 -6
- datahub/ingestion/source/s3/config.py +3 -1
- datahub/ingestion/source/salesforce.py +28 -6
- datahub/ingestion/source/slack/slack.py +31 -10
- datahub/ingestion/source/snowflake/snowflake_query.py +6 -4
- datahub/ingestion/source/snowflake/snowflake_schema.py +3 -4
- datahub/ingestion/source/sql/oracle.py +34 -0
- datahub/ingestion/source_config/pulsar.py +3 -1
- datahub/ingestion/transformer/pattern_cleanup_ownership.py +25 -7
- datahub/metadata/_schema_classes.py +534 -410
- datahub/metadata/_urns/urn_defs.py +1670 -1670
- datahub/metadata/com/linkedin/pegasus2avro/incident/__init__.py +4 -0
- datahub/metadata/schema.avsc +17379 -17637
- datahub/metadata/schemas/CorpUserInfo.avsc +13 -0
- datahub/metadata/schemas/DataHubIngestionSourceInfo.avsc +8 -3
- datahub/metadata/schemas/IncidentInfo.avsc +130 -46
- datahub/metadata/schemas/MetadataChangeEvent.avsc +13 -0
- datahub/metadata/schemas/__init__.py +3 -3
- datahub/sdk/__init__.py +29 -12
- datahub/sdk/_attribution.py +4 -0
- datahub/sdk/_entity.py +20 -1
- datahub/sdk/_shared.py +163 -13
- datahub/sdk/_utils.py +35 -0
- datahub/sdk/container.py +23 -5
- datahub/sdk/dataset.py +109 -17
- datahub/sdk/main_client.py +17 -0
- datahub/specific/dataset.py +3 -4
- datahub/sql_parsing/_sqlglot_patch.py +2 -10
- datahub/sql_parsing/split_statements.py +20 -13
- datahub/utilities/file_backed_collections.py +3 -14
- datahub/utilities/sentinels.py +22 -0
- datahub/utilities/unified_diff.py +5 -1
- {acryl_datahub-1.0.0rc4.dist-info → acryl_datahub-1.0.0rc6.dist-info}/LICENSE +0 -0
- {acryl_datahub-1.0.0rc4.dist-info → acryl_datahub-1.0.0rc6.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-1.0.0rc4.dist-info → acryl_datahub-1.0.0rc6.dist-info}/top_level.txt +0 -0
|
@@ -13524,6 +13524,7 @@ class CorpUserInfoClass(_Aspect):
|
|
|
13524
13524
|
lastName: Union[None, str]=None,
|
|
13525
13525
|
fullName: Union[None, str]=None,
|
|
13526
13526
|
countryCode: Union[None, str]=None,
|
|
13527
|
+
system: Optional[Union[bool, None]]=None,
|
|
13527
13528
|
):
|
|
13528
13529
|
super().__init__()
|
|
13529
13530
|
|
|
@@ -13543,6 +13544,11 @@ class CorpUserInfoClass(_Aspect):
|
|
|
13543
13544
|
self.lastName = lastName
|
|
13544
13545
|
self.fullName = fullName
|
|
13545
13546
|
self.countryCode = countryCode
|
|
13547
|
+
if system is None:
|
|
13548
|
+
# default: False
|
|
13549
|
+
self.system = self.RECORD_SCHEMA.fields_dict["system"].default
|
|
13550
|
+
else:
|
|
13551
|
+
self.system = system
|
|
13546
13552
|
|
|
13547
13553
|
def _restore_defaults(self) -> None:
|
|
13548
13554
|
self.customProperties = dict()
|
|
@@ -13557,6 +13563,7 @@ class CorpUserInfoClass(_Aspect):
|
|
|
13557
13563
|
self.lastName = self.RECORD_SCHEMA.fields_dict["lastName"].default
|
|
13558
13564
|
self.fullName = self.RECORD_SCHEMA.fields_dict["fullName"].default
|
|
13559
13565
|
self.countryCode = self.RECORD_SCHEMA.fields_dict["countryCode"].default
|
|
13566
|
+
self.system = self.RECORD_SCHEMA.fields_dict["system"].default
|
|
13560
13567
|
|
|
13561
13568
|
|
|
13562
13569
|
@property
|
|
@@ -13679,6 +13686,16 @@ class CorpUserInfoClass(_Aspect):
|
|
|
13679
13686
|
self._inner_dict['countryCode'] = value
|
|
13680
13687
|
|
|
13681
13688
|
|
|
13689
|
+
@property
|
|
13690
|
+
def system(self) -> Union[bool, None]:
|
|
13691
|
+
"""Whether the corpUser is a system user."""
|
|
13692
|
+
return self._inner_dict.get('system') # type: ignore
|
|
13693
|
+
|
|
13694
|
+
@system.setter
|
|
13695
|
+
def system(self, value: Union[bool, None]) -> None:
|
|
13696
|
+
self._inner_dict['system'] = value
|
|
13697
|
+
|
|
13698
|
+
|
|
13682
13699
|
class CorpUserSettingsClass(_Aspect):
|
|
13683
13700
|
"""Settings that a user can customize through the datahub ui"""
|
|
13684
13701
|
|
|
@@ -13918,6 +13935,46 @@ class RoleMembershipClass(_Aspect):
|
|
|
13918
13935
|
self._inner_dict['roles'] = value
|
|
13919
13936
|
|
|
13920
13937
|
|
|
13938
|
+
class IncidentAssigneeClass(DictWrapper):
|
|
13939
|
+
"""The incident assignee type.
|
|
13940
|
+
This is in a record so that we can add additional fields if we need to later (e.g.
|
|
13941
|
+
the type of the assignee."""
|
|
13942
|
+
|
|
13943
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.incident.IncidentAssignee")
|
|
13944
|
+
def __init__(self,
|
|
13945
|
+
actor: str,
|
|
13946
|
+
assignedAt: "AuditStampClass",
|
|
13947
|
+
):
|
|
13948
|
+
super().__init__()
|
|
13949
|
+
|
|
13950
|
+
self.actor = actor
|
|
13951
|
+
self.assignedAt = assignedAt
|
|
13952
|
+
|
|
13953
|
+
def _restore_defaults(self) -> None:
|
|
13954
|
+
self.actor = str()
|
|
13955
|
+
self.assignedAt = AuditStampClass._construct_with_defaults()
|
|
13956
|
+
|
|
13957
|
+
|
|
13958
|
+
@property
|
|
13959
|
+
def actor(self) -> str:
|
|
13960
|
+
"""The user or group assigned to the incident."""
|
|
13961
|
+
return self._inner_dict.get('actor') # type: ignore
|
|
13962
|
+
|
|
13963
|
+
@actor.setter
|
|
13964
|
+
def actor(self, value: str) -> None:
|
|
13965
|
+
self._inner_dict['actor'] = value
|
|
13966
|
+
|
|
13967
|
+
|
|
13968
|
+
@property
|
|
13969
|
+
def assignedAt(self) -> "AuditStampClass":
|
|
13970
|
+
"""The time & actor responsible for assiging the assignee."""
|
|
13971
|
+
return self._inner_dict.get('assignedAt') # type: ignore
|
|
13972
|
+
|
|
13973
|
+
@assignedAt.setter
|
|
13974
|
+
def assignedAt(self, value: "AuditStampClass") -> None:
|
|
13975
|
+
self._inner_dict['assignedAt'] = value
|
|
13976
|
+
|
|
13977
|
+
|
|
13921
13978
|
class IncidentInfoClass(_Aspect):
|
|
13922
13979
|
"""Information about an incident raised on an asset."""
|
|
13923
13980
|
|
|
@@ -13935,7 +13992,9 @@ class IncidentInfoClass(_Aspect):
|
|
|
13935
13992
|
title: Union[None, str]=None,
|
|
13936
13993
|
description: Union[None, str]=None,
|
|
13937
13994
|
priority: Optional[Union[int, None]]=None,
|
|
13995
|
+
assignees: Union[None, List["IncidentAssigneeClass"]]=None,
|
|
13938
13996
|
source: Union[None, "IncidentSourceClass"]=None,
|
|
13997
|
+
startedAt: Union[None, int]=None,
|
|
13939
13998
|
):
|
|
13940
13999
|
super().__init__()
|
|
13941
14000
|
|
|
@@ -13949,8 +14008,10 @@ class IncidentInfoClass(_Aspect):
|
|
|
13949
14008
|
self.priority = self.RECORD_SCHEMA.fields_dict["priority"].default
|
|
13950
14009
|
else:
|
|
13951
14010
|
self.priority = priority
|
|
14011
|
+
self.assignees = assignees
|
|
13952
14012
|
self.status = status
|
|
13953
14013
|
self.source = source
|
|
14014
|
+
self.startedAt = startedAt
|
|
13954
14015
|
self.created = created
|
|
13955
14016
|
|
|
13956
14017
|
def _restore_defaults(self) -> None:
|
|
@@ -13960,8 +14021,10 @@ class IncidentInfoClass(_Aspect):
|
|
|
13960
14021
|
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
13961
14022
|
self.entities = list()
|
|
13962
14023
|
self.priority = self.RECORD_SCHEMA.fields_dict["priority"].default
|
|
14024
|
+
self.assignees = self.RECORD_SCHEMA.fields_dict["assignees"].default
|
|
13963
14025
|
self.status = IncidentStatusClass._construct_with_defaults()
|
|
13964
14026
|
self.source = self.RECORD_SCHEMA.fields_dict["source"].default
|
|
14027
|
+
self.startedAt = self.RECORD_SCHEMA.fields_dict["startedAt"].default
|
|
13965
14028
|
self.created = AuditStampClass._construct_with_defaults()
|
|
13966
14029
|
|
|
13967
14030
|
|
|
@@ -14017,7 +14080,9 @@ class IncidentInfoClass(_Aspect):
|
|
|
14017
14080
|
|
|
14018
14081
|
@property
|
|
14019
14082
|
def priority(self) -> Union[int, None]:
|
|
14020
|
-
"""A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.
|
|
14083
|
+
"""A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.
|
|
14084
|
+
Currently supported: 0 - CRITICAL, 1 - HIGH, 2 - MED, 3 - LOW
|
|
14085
|
+
(We probably should have modeled as an enum)"""
|
|
14021
14086
|
return self._inner_dict.get('priority') # type: ignore
|
|
14022
14087
|
|
|
14023
14088
|
@priority.setter
|
|
@@ -14025,6 +14090,16 @@ class IncidentInfoClass(_Aspect):
|
|
|
14025
14090
|
self._inner_dict['priority'] = value
|
|
14026
14091
|
|
|
14027
14092
|
|
|
14093
|
+
@property
|
|
14094
|
+
def assignees(self) -> Union[None, List["IncidentAssigneeClass"]]:
|
|
14095
|
+
"""The parties assigned with resolving the incident"""
|
|
14096
|
+
return self._inner_dict.get('assignees') # type: ignore
|
|
14097
|
+
|
|
14098
|
+
@assignees.setter
|
|
14099
|
+
def assignees(self, value: Union[None, List["IncidentAssigneeClass"]]) -> None:
|
|
14100
|
+
self._inner_dict['assignees'] = value
|
|
14101
|
+
|
|
14102
|
+
|
|
14028
14103
|
@property
|
|
14029
14104
|
def status(self) -> "IncidentStatusClass":
|
|
14030
14105
|
"""The current status of an incident, i.e. active or inactive."""
|
|
@@ -14045,6 +14120,16 @@ class IncidentInfoClass(_Aspect):
|
|
|
14045
14120
|
self._inner_dict['source'] = value
|
|
14046
14121
|
|
|
14047
14122
|
|
|
14123
|
+
@property
|
|
14124
|
+
def startedAt(self) -> Union[None, int]:
|
|
14125
|
+
"""The time at which the incident actually started (may be before the date it was raised)."""
|
|
14126
|
+
return self._inner_dict.get('startedAt') # type: ignore
|
|
14127
|
+
|
|
14128
|
+
@startedAt.setter
|
|
14129
|
+
def startedAt(self, value: Union[None, int]) -> None:
|
|
14130
|
+
self._inner_dict['startedAt'] = value
|
|
14131
|
+
|
|
14132
|
+
|
|
14048
14133
|
@property
|
|
14049
14134
|
def created(self) -> "AuditStampClass":
|
|
14050
14135
|
"""The time at which the request was initially created"""
|
|
@@ -14108,6 +14193,27 @@ class IncidentSourceTypeClass(object):
|
|
|
14108
14193
|
|
|
14109
14194
|
|
|
14110
14195
|
|
|
14196
|
+
class IncidentStageClass(object):
|
|
14197
|
+
# No docs available.
|
|
14198
|
+
|
|
14199
|
+
TRIAGE = "TRIAGE"
|
|
14200
|
+
"""The impact and priority of the incident is being actively assessed."""
|
|
14201
|
+
|
|
14202
|
+
INVESTIGATION = "INVESTIGATION"
|
|
14203
|
+
"""The incident root cause is being investigated."""
|
|
14204
|
+
|
|
14205
|
+
WORK_IN_PROGRESS = "WORK_IN_PROGRESS"
|
|
14206
|
+
"""The incident is in the remediation stage."""
|
|
14207
|
+
|
|
14208
|
+
FIXED = "FIXED"
|
|
14209
|
+
"""The incident is in the resolved as completed stage."""
|
|
14210
|
+
|
|
14211
|
+
NO_ACTION_REQUIRED = "NO_ACTION_REQUIRED"
|
|
14212
|
+
"""The incident is in the resolved with no action required state, e.g. the
|
|
14213
|
+
incident was a false positive, or was expected."""
|
|
14214
|
+
|
|
14215
|
+
|
|
14216
|
+
|
|
14111
14217
|
class IncidentStateClass(object):
|
|
14112
14218
|
# No docs available.
|
|
14113
14219
|
|
|
@@ -14126,23 +14232,26 @@ class IncidentStatusClass(DictWrapper):
|
|
|
14126
14232
|
def __init__(self,
|
|
14127
14233
|
state: Union[str, "IncidentStateClass"],
|
|
14128
14234
|
lastUpdated: "AuditStampClass",
|
|
14235
|
+
stage: Union[None, Union[str, "IncidentStageClass"]]=None,
|
|
14129
14236
|
message: Union[None, str]=None,
|
|
14130
14237
|
):
|
|
14131
14238
|
super().__init__()
|
|
14132
14239
|
|
|
14133
14240
|
self.state = state
|
|
14241
|
+
self.stage = stage
|
|
14134
14242
|
self.message = message
|
|
14135
14243
|
self.lastUpdated = lastUpdated
|
|
14136
14244
|
|
|
14137
14245
|
def _restore_defaults(self) -> None:
|
|
14138
14246
|
self.state = IncidentStateClass.ACTIVE
|
|
14247
|
+
self.stage = self.RECORD_SCHEMA.fields_dict["stage"].default
|
|
14139
14248
|
self.message = self.RECORD_SCHEMA.fields_dict["message"].default
|
|
14140
14249
|
self.lastUpdated = AuditStampClass._construct_with_defaults()
|
|
14141
14250
|
|
|
14142
14251
|
|
|
14143
14252
|
@property
|
|
14144
14253
|
def state(self) -> Union[str, "IncidentStateClass"]:
|
|
14145
|
-
"""The state of the incident"""
|
|
14254
|
+
"""The top-level state of the incident, whether it's active or resolved."""
|
|
14146
14255
|
return self._inner_dict.get('state') # type: ignore
|
|
14147
14256
|
|
|
14148
14257
|
@state.setter
|
|
@@ -14150,6 +14259,17 @@ class IncidentStatusClass(DictWrapper):
|
|
|
14150
14259
|
self._inner_dict['state'] = value
|
|
14151
14260
|
|
|
14152
14261
|
|
|
14262
|
+
@property
|
|
14263
|
+
def stage(self) -> Union[None, Union[str, "IncidentStageClass"]]:
|
|
14264
|
+
"""The lifecycle stage for the incident - Null means no stage was assigned yet.
|
|
14265
|
+
In the future, we may add CUSTOM here with a customStage string field for user-defined stages."""
|
|
14266
|
+
return self._inner_dict.get('stage') # type: ignore
|
|
14267
|
+
|
|
14268
|
+
@stage.setter
|
|
14269
|
+
def stage(self, value: Union[None, Union[str, "IncidentStageClass"]]) -> None:
|
|
14270
|
+
self._inner_dict['stage'] = value
|
|
14271
|
+
|
|
14272
|
+
|
|
14153
14273
|
@property
|
|
14154
14274
|
def message(self) -> Union[None, str]:
|
|
14155
14275
|
"""Optional message associated with the incident"""
|
|
@@ -25473,9 +25593,11 @@ __SCHEMA_TYPES = {
|
|
|
25473
25593
|
'com.linkedin.pegasus2avro.identity.InviteToken': InviteTokenClass,
|
|
25474
25594
|
'com.linkedin.pegasus2avro.identity.NativeGroupMembership': NativeGroupMembershipClass,
|
|
25475
25595
|
'com.linkedin.pegasus2avro.identity.RoleMembership': RoleMembershipClass,
|
|
25596
|
+
'com.linkedin.pegasus2avro.incident.IncidentAssignee': IncidentAssigneeClass,
|
|
25476
25597
|
'com.linkedin.pegasus2avro.incident.IncidentInfo': IncidentInfoClass,
|
|
25477
25598
|
'com.linkedin.pegasus2avro.incident.IncidentSource': IncidentSourceClass,
|
|
25478
25599
|
'com.linkedin.pegasus2avro.incident.IncidentSourceType': IncidentSourceTypeClass,
|
|
25600
|
+
'com.linkedin.pegasus2avro.incident.IncidentStage': IncidentStageClass,
|
|
25479
25601
|
'com.linkedin.pegasus2avro.incident.IncidentState': IncidentStateClass,
|
|
25480
25602
|
'com.linkedin.pegasus2avro.incident.IncidentStatus': IncidentStatusClass,
|
|
25481
25603
|
'com.linkedin.pegasus2avro.incident.IncidentType': IncidentTypeClass,
|
|
@@ -25951,9 +26073,11 @@ __SCHEMA_TYPES = {
|
|
|
25951
26073
|
'InviteToken': InviteTokenClass,
|
|
25952
26074
|
'NativeGroupMembership': NativeGroupMembershipClass,
|
|
25953
26075
|
'RoleMembership': RoleMembershipClass,
|
|
26076
|
+
'IncidentAssignee': IncidentAssigneeClass,
|
|
25954
26077
|
'IncidentInfo': IncidentInfoClass,
|
|
25955
26078
|
'IncidentSource': IncidentSourceClass,
|
|
25956
26079
|
'IncidentSourceType': IncidentSourceTypeClass,
|
|
26080
|
+
'IncidentStage': IncidentStageClass,
|
|
25957
26081
|
'IncidentState': IncidentStateClass,
|
|
25958
26082
|
'IncidentStatus': IncidentStatusClass,
|
|
25959
26083
|
'IncidentType': IncidentTypeClass,
|
|
@@ -26198,217 +26322,217 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
26198
26322
|
|
|
26199
26323
|
|
|
26200
26324
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
26325
|
+
IcebergCatalogInfoClass,
|
|
26326
|
+
DatasetDeprecationClass,
|
|
26327
|
+
ViewPropertiesClass,
|
|
26328
|
+
PartitionsSummaryClass,
|
|
26329
|
+
DatasetUpstreamLineageClass,
|
|
26330
|
+
DatasetPropertiesClass,
|
|
26331
|
+
UpstreamLineageClass,
|
|
26332
|
+
EditableDatasetPropertiesClass,
|
|
26333
|
+
DatasetProfileClass,
|
|
26334
|
+
DatasetUsageStatisticsClass,
|
|
26335
|
+
GlobalSettingsInfoClass,
|
|
26336
|
+
DataHubStepStatePropertiesClass,
|
|
26337
|
+
BusinessAttributeInfoClass,
|
|
26338
|
+
BusinessAttributesClass,
|
|
26339
|
+
BusinessAttributeKeyClass,
|
|
26340
|
+
QuerySubjectsClass,
|
|
26341
|
+
QueryPropertiesClass,
|
|
26342
|
+
QueryUsageStatisticsClass,
|
|
26343
|
+
DataHubViewInfoClass,
|
|
26344
|
+
DataTypeInfoClass,
|
|
26345
|
+
DataTypeKeyClass,
|
|
26346
|
+
FormInfoClass,
|
|
26347
|
+
DynamicFormAssignmentClass,
|
|
26348
|
+
DataHubConnectionDetailsClass,
|
|
26349
|
+
ExecutionRequestSignalClass,
|
|
26350
|
+
ExecutionRequestInputClass,
|
|
26351
|
+
ExecutionRequestResultClass,
|
|
26352
|
+
GlossaryNodeInfoClass,
|
|
26353
|
+
GlossaryTermInfoClass,
|
|
26354
|
+
GlossaryRelatedTermsClass,
|
|
26355
|
+
TelemetryClientIdClass,
|
|
26201
26356
|
DataHubAccessTokenInfoClass,
|
|
26202
|
-
|
|
26203
|
-
|
|
26204
|
-
|
|
26205
|
-
|
|
26357
|
+
ContainerClass,
|
|
26358
|
+
ContainerPropertiesClass,
|
|
26359
|
+
EditableContainerPropertiesClass,
|
|
26360
|
+
DataHubSecretValueClass,
|
|
26206
26361
|
DataHubUpgradeRequestClass,
|
|
26207
26362
|
DataHubUpgradeResultClass,
|
|
26208
|
-
|
|
26209
|
-
|
|
26210
|
-
|
|
26211
|
-
|
|
26212
|
-
|
|
26213
|
-
|
|
26214
|
-
|
|
26215
|
-
|
|
26216
|
-
|
|
26217
|
-
|
|
26218
|
-
|
|
26219
|
-
|
|
26220
|
-
|
|
26221
|
-
|
|
26222
|
-
NotebookInfoClass,
|
|
26223
|
-
ExecutionRequestResultClass,
|
|
26224
|
-
ExecutionRequestInputClass,
|
|
26225
|
-
ExecutionRequestSignalClass,
|
|
26226
|
-
DataHubStepStatePropertiesClass,
|
|
26227
|
-
DataTransformLogicClass,
|
|
26228
|
-
OwnershipClass,
|
|
26363
|
+
AssertionRunEventClass,
|
|
26364
|
+
AssertionActionsClass,
|
|
26365
|
+
AssertionInfoClass,
|
|
26366
|
+
EditableSchemaMetadataClass,
|
|
26367
|
+
SchemaMetadataClass,
|
|
26368
|
+
DataProductPropertiesClass,
|
|
26369
|
+
DataProductKeyClass,
|
|
26370
|
+
DataContractStatusClass,
|
|
26371
|
+
DataContractPropertiesClass,
|
|
26372
|
+
OperationClass,
|
|
26373
|
+
StatusClass,
|
|
26374
|
+
InstitutionalMemoryClass,
|
|
26375
|
+
AccessClass,
|
|
26376
|
+
DataPlatformInstanceClass,
|
|
26229
26377
|
SiblingsClass,
|
|
26230
|
-
BrowsePathsV2Class,
|
|
26231
26378
|
IncidentsSummaryClass,
|
|
26232
|
-
FormsClass,
|
|
26233
|
-
CostClass,
|
|
26234
|
-
OriginClass,
|
|
26235
|
-
StatusClass,
|
|
26236
26379
|
EmbedClass,
|
|
26237
|
-
|
|
26238
|
-
|
|
26380
|
+
OwnershipClass,
|
|
26381
|
+
SubTypesClass,
|
|
26382
|
+
CostClass,
|
|
26383
|
+
BrowsePathsClass,
|
|
26239
26384
|
VersionPropertiesClass,
|
|
26240
|
-
|
|
26385
|
+
OriginClass,
|
|
26241
26386
|
DeprecationClass,
|
|
26242
|
-
|
|
26243
|
-
InstitutionalMemoryClass,
|
|
26244
|
-
InputFieldsClass,
|
|
26387
|
+
GlossaryTermsClass,
|
|
26245
26388
|
DisplayPropertiesClass,
|
|
26246
|
-
|
|
26389
|
+
BrowsePathsV2Class,
|
|
26247
26390
|
GlobalTagsClass,
|
|
26248
|
-
|
|
26249
|
-
|
|
26250
|
-
|
|
26251
|
-
|
|
26252
|
-
AssertionActionsClass,
|
|
26391
|
+
DataTransformLogicClass,
|
|
26392
|
+
DocumentationClass,
|
|
26393
|
+
InputFieldsClass,
|
|
26394
|
+
FormsClass,
|
|
26253
26395
|
DataPlatformInfoClass,
|
|
26254
|
-
|
|
26255
|
-
|
|
26256
|
-
|
|
26257
|
-
|
|
26258
|
-
|
|
26259
|
-
|
|
26260
|
-
|
|
26261
|
-
|
|
26396
|
+
DataHubPolicyInfoClass,
|
|
26397
|
+
DataHubRoleInfoClass,
|
|
26398
|
+
IncidentSourceClass,
|
|
26399
|
+
IncidentInfoClass,
|
|
26400
|
+
VersionInfoClass,
|
|
26401
|
+
DataJobInfoClass,
|
|
26402
|
+
EditableDataFlowPropertiesClass,
|
|
26403
|
+
EditableDataJobPropertiesClass,
|
|
26404
|
+
DataFlowInfoClass,
|
|
26405
|
+
DataJobInputOutputClass,
|
|
26406
|
+
DatahubIngestionCheckpointClass,
|
|
26407
|
+
DatahubIngestionRunSummaryClass,
|
|
26408
|
+
TelemetryKeyClass,
|
|
26262
26409
|
DataHubAccessTokenKeyClass,
|
|
26263
|
-
|
|
26264
|
-
|
|
26265
|
-
|
|
26266
|
-
PostKeyClass,
|
|
26267
|
-
DataHubSecretKeyClass,
|
|
26268
|
-
DashboardKeyClass,
|
|
26269
|
-
MLModelGroupKeyClass,
|
|
26270
|
-
DatasetKeyClass,
|
|
26410
|
+
DataHubConnectionKeyClass,
|
|
26411
|
+
DataHubRoleKeyClass,
|
|
26412
|
+
MLModelKeyClass,
|
|
26271
26413
|
NotebookKeyClass,
|
|
26272
|
-
DataFlowKeyClass,
|
|
26273
|
-
MLModelDeploymentKeyClass,
|
|
26274
|
-
FormKeyClass,
|
|
26275
|
-
DomainKeyClass,
|
|
26276
|
-
IncidentKeyClass,
|
|
26277
|
-
TagKeyClass,
|
|
26278
26414
|
RoleKeyClass,
|
|
26279
|
-
DataPlatformKeyClass,
|
|
26280
|
-
DataJobKeyClass,
|
|
26281
|
-
DataHubStepStateKeyClass,
|
|
26282
|
-
DataHubViewKeyClass,
|
|
26283
|
-
CorpUserKeyClass,
|
|
26284
|
-
DataHubRetentionKeyClass,
|
|
26285
|
-
DataPlatformInstanceKeyClass,
|
|
26286
|
-
DataHubPersonaKeyClass,
|
|
26287
|
-
ContainerKeyClass,
|
|
26288
|
-
GlossaryNodeKeyClass,
|
|
26289
|
-
DataHubIngestionSourceKeyClass,
|
|
26290
|
-
TestKeyClass,
|
|
26291
|
-
DataHubPolicyKeyClass,
|
|
26292
|
-
CorpGroupKeyClass,
|
|
26293
|
-
DataContractKeyClass,
|
|
26294
26415
|
GlobalSettingsKeyClass,
|
|
26416
|
+
DatasetKeyClass,
|
|
26417
|
+
ChartKeyClass,
|
|
26418
|
+
GlossaryNodeKeyClass,
|
|
26295
26419
|
AssertionKeyClass,
|
|
26420
|
+
ExecutionRequestKeyClass,
|
|
26421
|
+
MLModelGroupKeyClass,
|
|
26422
|
+
MLModelDeploymentKeyClass,
|
|
26423
|
+
DataFlowKeyClass,
|
|
26424
|
+
DataJobKeyClass,
|
|
26425
|
+
CorpGroupKeyClass,
|
|
26426
|
+
DataPlatformKeyClass,
|
|
26427
|
+
CorpUserKeyClass,
|
|
26428
|
+
DashboardKeyClass,
|
|
26429
|
+
MLPrimaryKeyKeyClass,
|
|
26296
26430
|
QueryKeyClass,
|
|
26431
|
+
OwnershipTypeKeyClass,
|
|
26432
|
+
DomainKeyClass,
|
|
26433
|
+
MLFeatureKeyClass,
|
|
26434
|
+
MLFeatureTableKeyClass,
|
|
26435
|
+
DataHubViewKeyClass,
|
|
26297
26436
|
DataHubActionKeyClass,
|
|
26298
|
-
|
|
26299
|
-
|
|
26300
|
-
|
|
26437
|
+
DataHubUpgradeKeyClass,
|
|
26438
|
+
DataHubStepStateKeyClass,
|
|
26439
|
+
ERModelRelationshipKeyClass,
|
|
26440
|
+
DataHubPolicyKeyClass,
|
|
26441
|
+
DataHubRetentionKeyClass,
|
|
26442
|
+
DataContractKeyClass,
|
|
26301
26443
|
DataProcessKeyClass,
|
|
26444
|
+
DataProcessInstanceKeyClass,
|
|
26302
26445
|
GlossaryTermKeyClass,
|
|
26303
|
-
|
|
26304
|
-
|
|
26305
|
-
|
|
26306
|
-
|
|
26307
|
-
|
|
26308
|
-
|
|
26309
|
-
|
|
26310
|
-
|
|
26311
|
-
|
|
26312
|
-
|
|
26313
|
-
|
|
26314
|
-
|
|
26315
|
-
|
|
26316
|
-
|
|
26317
|
-
|
|
26318
|
-
|
|
26319
|
-
|
|
26320
|
-
|
|
26321
|
-
|
|
26322
|
-
|
|
26323
|
-
|
|
26324
|
-
|
|
26325
|
-
|
|
26326
|
-
|
|
26327
|
-
|
|
26328
|
-
MLHyperParamClass,
|
|
26329
|
-
MLTrainingRunPropertiesClass,
|
|
26330
|
-
EditableMLFeaturePropertiesClass,
|
|
26331
|
-
TrainingDataClass,
|
|
26332
|
-
QuantitativeAnalysesClass,
|
|
26333
|
-
MLModelDeploymentPropertiesClass,
|
|
26334
|
-
MetricsClass,
|
|
26335
|
-
EditableMLPrimaryKeyPropertiesClass,
|
|
26336
|
-
MLFeaturePropertiesClass,
|
|
26337
|
-
EditableMLModelPropertiesClass,
|
|
26338
|
-
MLModelPropertiesClass,
|
|
26339
|
-
EditableMLFeatureTablePropertiesClass,
|
|
26340
|
-
SourceCodeClass,
|
|
26341
|
-
EditableMLModelGroupPropertiesClass,
|
|
26342
|
-
MLPrimaryKeyPropertiesClass,
|
|
26343
|
-
MLModelFactorPromptsClass,
|
|
26344
|
-
EvaluationDataClass,
|
|
26345
|
-
MLFeatureTablePropertiesClass,
|
|
26346
|
-
DataHubViewInfoClass,
|
|
26347
|
-
TelemetryClientIdClass,
|
|
26348
|
-
DashboardUsageStatisticsClass,
|
|
26349
|
-
EditableDashboardPropertiesClass,
|
|
26350
|
-
DashboardInfoClass,
|
|
26351
|
-
DataProcessInstanceInputClass,
|
|
26446
|
+
FormKeyClass,
|
|
26447
|
+
SchemaFieldKeyClass,
|
|
26448
|
+
TagKeyClass,
|
|
26449
|
+
PostKeyClass,
|
|
26450
|
+
DataHubIngestionSourceKeyClass,
|
|
26451
|
+
InviteTokenKeyClass,
|
|
26452
|
+
DataHubPersonaKeyClass,
|
|
26453
|
+
ContainerKeyClass,
|
|
26454
|
+
IncidentKeyClass,
|
|
26455
|
+
DataPlatformInstanceKeyClass,
|
|
26456
|
+
TestKeyClass,
|
|
26457
|
+
VersionSetKeyClass,
|
|
26458
|
+
DataHubSecretKeyClass,
|
|
26459
|
+
DataHubPersonaInfoClass,
|
|
26460
|
+
DataPlatformInstancePropertiesClass,
|
|
26461
|
+
IcebergWarehouseInfoClass,
|
|
26462
|
+
DomainsClass,
|
|
26463
|
+
DomainPropertiesClass,
|
|
26464
|
+
OwnershipTypeInfoClass,
|
|
26465
|
+
SchemaFieldInfoClass,
|
|
26466
|
+
SchemaFieldAliasesClass,
|
|
26467
|
+
VersionSetPropertiesClass,
|
|
26468
|
+
TestResultsClass,
|
|
26469
|
+
TestInfoClass,
|
|
26470
|
+
DataProcessInfoClass,
|
|
26352
26471
|
DataProcessInstanceOutputClass,
|
|
26353
26472
|
DataProcessInstanceRelationshipsClass,
|
|
26354
|
-
DataProcessInfoClass,
|
|
26355
|
-
DataProcessInstanceRunEventClass,
|
|
26356
26473
|
DataProcessInstancePropertiesClass,
|
|
26357
|
-
|
|
26358
|
-
|
|
26359
|
-
FormInfoClass,
|
|
26360
|
-
DynamicFormAssignmentClass,
|
|
26361
|
-
DataHubConnectionDetailsClass,
|
|
26362
|
-
DataProductKeyClass,
|
|
26363
|
-
DataProductPropertiesClass,
|
|
26364
|
-
DataHubPersonaInfoClass,
|
|
26365
|
-
EntityTypeInfoClass,
|
|
26474
|
+
DataProcessInstanceInputClass,
|
|
26475
|
+
DataProcessInstanceRunEventClass,
|
|
26366
26476
|
EntityTypeKeyClass,
|
|
26367
|
-
|
|
26477
|
+
EntityTypeInfoClass,
|
|
26478
|
+
EditableERModelRelationshipPropertiesClass,
|
|
26479
|
+
ERModelRelationshipPropertiesClass,
|
|
26480
|
+
CorpUserStatusClass,
|
|
26481
|
+
CorpUserCredentialsClass,
|
|
26482
|
+
CorpUserEditableInfoClass,
|
|
26483
|
+
CorpGroupInfoClass,
|
|
26484
|
+
CorpGroupEditableInfoClass,
|
|
26485
|
+
CorpUserInfoClass,
|
|
26486
|
+
CorpUserSettingsClass,
|
|
26487
|
+
RoleMembershipClass,
|
|
26488
|
+
GroupMembershipClass,
|
|
26489
|
+
NativeGroupMembershipClass,
|
|
26490
|
+
InviteTokenClass,
|
|
26368
26491
|
RolePropertiesClass,
|
|
26369
26492
|
ActorsClass,
|
|
26370
|
-
|
|
26371
|
-
|
|
26372
|
-
|
|
26373
|
-
|
|
26374
|
-
|
|
26375
|
-
|
|
26376
|
-
|
|
26377
|
-
EditableChartPropertiesClass,
|
|
26378
|
-
QueryPropertiesClass,
|
|
26379
|
-
QuerySubjectsClass,
|
|
26380
|
-
QueryUsageStatisticsClass,
|
|
26381
|
-
VersionSetPropertiesClass,
|
|
26493
|
+
PostInfoClass,
|
|
26494
|
+
EditableDashboardPropertiesClass,
|
|
26495
|
+
DashboardInfoClass,
|
|
26496
|
+
DashboardUsageStatisticsClass,
|
|
26497
|
+
NotebookInfoClass,
|
|
26498
|
+
NotebookContentClass,
|
|
26499
|
+
EditableNotebookPropertiesClass,
|
|
26382
26500
|
DataHubIngestionSourceInfoClass,
|
|
26383
|
-
TagPropertiesClass,
|
|
26384
|
-
DomainsClass,
|
|
26385
|
-
DomainPropertiesClass,
|
|
26386
|
-
EditableSchemaMetadataClass,
|
|
26387
|
-
SchemaMetadataClass,
|
|
26388
|
-
GlobalSettingsInfoClass,
|
|
26389
|
-
ViewPropertiesClass,
|
|
26390
|
-
DatasetUpstreamLineageClass,
|
|
26391
|
-
DatasetProfileClass,
|
|
26392
|
-
EditableDatasetPropertiesClass,
|
|
26393
|
-
IcebergCatalogInfoClass,
|
|
26394
|
-
DatasetUsageStatisticsClass,
|
|
26395
|
-
PartitionsSummaryClass,
|
|
26396
|
-
DatasetPropertiesClass,
|
|
26397
|
-
UpstreamLineageClass,
|
|
26398
|
-
DatasetDeprecationClass,
|
|
26399
|
-
EditableContainerPropertiesClass,
|
|
26400
|
-
ContainerClass,
|
|
26401
|
-
ContainerPropertiesClass,
|
|
26402
|
-
SchemaFieldAliasesClass,
|
|
26403
|
-
SchemaFieldInfoClass,
|
|
26404
|
-
PlatformResourceKeyClass,
|
|
26405
|
-
PlatformResourceInfoClass,
|
|
26406
|
-
TestInfoClass,
|
|
26407
|
-
TestResultsClass,
|
|
26408
26501
|
StructuredPropertiesClass,
|
|
26409
26502
|
StructuredPropertyDefinitionClass,
|
|
26410
26503
|
StructuredPropertyKeyClass,
|
|
26411
|
-
StructuredPropertySettingsClass
|
|
26504
|
+
StructuredPropertySettingsClass,
|
|
26505
|
+
TagPropertiesClass,
|
|
26506
|
+
EthicalConsiderationsClass,
|
|
26507
|
+
MLModelDeploymentPropertiesClass,
|
|
26508
|
+
MLPrimaryKeyPropertiesClass,
|
|
26509
|
+
TrainingDataClass,
|
|
26510
|
+
MLModelFactorPromptsClass,
|
|
26511
|
+
QuantitativeAnalysesClass,
|
|
26512
|
+
MLHyperParamClass,
|
|
26513
|
+
EditableMLFeatureTablePropertiesClass,
|
|
26514
|
+
EditableMLPrimaryKeyPropertiesClass,
|
|
26515
|
+
SourceCodeClass,
|
|
26516
|
+
EvaluationDataClass,
|
|
26517
|
+
MLTrainingRunPropertiesClass,
|
|
26518
|
+
EditableMLModelGroupPropertiesClass,
|
|
26519
|
+
MLFeatureTablePropertiesClass,
|
|
26520
|
+
MetricsClass,
|
|
26521
|
+
MLMetricClass,
|
|
26522
|
+
CaveatsAndRecommendationsClass,
|
|
26523
|
+
MLModelGroupPropertiesClass,
|
|
26524
|
+
MLFeaturePropertiesClass,
|
|
26525
|
+
IntendedUseClass,
|
|
26526
|
+
EditableMLFeaturePropertiesClass,
|
|
26527
|
+
MLModelPropertiesClass,
|
|
26528
|
+
EditableMLModelPropertiesClass,
|
|
26529
|
+
PlatformResourceKeyClass,
|
|
26530
|
+
PlatformResourceInfoClass,
|
|
26531
|
+
ChartUsageStatisticsClass,
|
|
26532
|
+
ChartQueryClass,
|
|
26533
|
+
EditableChartPropertiesClass,
|
|
26534
|
+
ChartInfoClass,
|
|
26535
|
+
DataHubRetentionConfigClass
|
|
26412
26536
|
]
|
|
26413
26537
|
|
|
26414
26538
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -26419,277 +26543,277 @@ ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
|
26419
26543
|
from typing_extensions import TypedDict
|
|
26420
26544
|
|
|
26421
26545
|
class AspectBag(TypedDict, total=False):
|
|
26546
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
26547
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
26548
|
+
viewProperties: ViewPropertiesClass
|
|
26549
|
+
partitionsSummary: PartitionsSummaryClass
|
|
26550
|
+
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
26551
|
+
datasetProperties: DatasetPropertiesClass
|
|
26552
|
+
upstreamLineage: UpstreamLineageClass
|
|
26553
|
+
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
26554
|
+
datasetProfile: DatasetProfileClass
|
|
26555
|
+
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
26556
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
26557
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
26558
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
26559
|
+
businessAttributes: BusinessAttributesClass
|
|
26560
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
26561
|
+
querySubjects: QuerySubjectsClass
|
|
26562
|
+
queryProperties: QueryPropertiesClass
|
|
26563
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
26564
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
26565
|
+
dataTypeInfo: DataTypeInfoClass
|
|
26566
|
+
dataTypeKey: DataTypeKeyClass
|
|
26567
|
+
formInfo: FormInfoClass
|
|
26568
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
26569
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
26570
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
26571
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
26572
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
26573
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
26574
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
26575
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
26576
|
+
telemetryClientId: TelemetryClientIdClass
|
|
26422
26577
|
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
26423
|
-
|
|
26424
|
-
|
|
26425
|
-
|
|
26426
|
-
|
|
26578
|
+
container: ContainerClass
|
|
26579
|
+
containerProperties: ContainerPropertiesClass
|
|
26580
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
26581
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
26427
26582
|
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
26428
26583
|
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
26429
|
-
|
|
26430
|
-
|
|
26431
|
-
|
|
26432
|
-
|
|
26433
|
-
|
|
26434
|
-
|
|
26435
|
-
|
|
26436
|
-
|
|
26437
|
-
|
|
26438
|
-
|
|
26439
|
-
|
|
26440
|
-
|
|
26441
|
-
|
|
26442
|
-
|
|
26443
|
-
notebookInfo: NotebookInfoClass
|
|
26444
|
-
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
26445
|
-
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
26446
|
-
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
26447
|
-
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
26448
|
-
dataTransformLogic: DataTransformLogicClass
|
|
26449
|
-
ownership: OwnershipClass
|
|
26584
|
+
assertionRunEvent: AssertionRunEventClass
|
|
26585
|
+
assertionActions: AssertionActionsClass
|
|
26586
|
+
assertionInfo: AssertionInfoClass
|
|
26587
|
+
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
26588
|
+
schemaMetadata: SchemaMetadataClass
|
|
26589
|
+
dataProductProperties: DataProductPropertiesClass
|
|
26590
|
+
dataProductKey: DataProductKeyClass
|
|
26591
|
+
dataContractStatus: DataContractStatusClass
|
|
26592
|
+
dataContractProperties: DataContractPropertiesClass
|
|
26593
|
+
operation: OperationClass
|
|
26594
|
+
status: StatusClass
|
|
26595
|
+
institutionalMemory: InstitutionalMemoryClass
|
|
26596
|
+
access: AccessClass
|
|
26597
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
26450
26598
|
siblings: SiblingsClass
|
|
26451
|
-
browsePathsV2: BrowsePathsV2Class
|
|
26452
26599
|
incidentsSummary: IncidentsSummaryClass
|
|
26453
|
-
forms: FormsClass
|
|
26454
|
-
cost: CostClass
|
|
26455
|
-
origin: OriginClass
|
|
26456
|
-
status: StatusClass
|
|
26457
26600
|
embed: EmbedClass
|
|
26458
|
-
|
|
26459
|
-
|
|
26601
|
+
ownership: OwnershipClass
|
|
26602
|
+
subTypes: SubTypesClass
|
|
26603
|
+
cost: CostClass
|
|
26604
|
+
browsePaths: BrowsePathsClass
|
|
26460
26605
|
versionProperties: VersionPropertiesClass
|
|
26461
|
-
|
|
26606
|
+
origin: OriginClass
|
|
26462
26607
|
deprecation: DeprecationClass
|
|
26463
|
-
|
|
26464
|
-
institutionalMemory: InstitutionalMemoryClass
|
|
26465
|
-
inputFields: InputFieldsClass
|
|
26608
|
+
glossaryTerms: GlossaryTermsClass
|
|
26466
26609
|
displayProperties: DisplayPropertiesClass
|
|
26467
|
-
|
|
26610
|
+
browsePathsV2: BrowsePathsV2Class
|
|
26468
26611
|
globalTags: GlobalTagsClass
|
|
26469
|
-
|
|
26470
|
-
|
|
26471
|
-
|
|
26472
|
-
|
|
26473
|
-
assertionActions: AssertionActionsClass
|
|
26612
|
+
dataTransformLogic: DataTransformLogicClass
|
|
26613
|
+
documentation: DocumentationClass
|
|
26614
|
+
inputFields: InputFieldsClass
|
|
26615
|
+
forms: FormsClass
|
|
26474
26616
|
dataPlatformInfo: DataPlatformInfoClass
|
|
26475
|
-
|
|
26476
|
-
|
|
26477
|
-
|
|
26478
|
-
|
|
26479
|
-
|
|
26480
|
-
|
|
26481
|
-
|
|
26482
|
-
|
|
26617
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
26618
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
26619
|
+
incidentSource: IncidentSourceClass
|
|
26620
|
+
incidentInfo: IncidentInfoClass
|
|
26621
|
+
versionInfo: VersionInfoClass
|
|
26622
|
+
dataJobInfo: DataJobInfoClass
|
|
26623
|
+
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
26624
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
26625
|
+
dataFlowInfo: DataFlowInfoClass
|
|
26626
|
+
dataJobInputOutput: DataJobInputOutputClass
|
|
26627
|
+
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
26628
|
+
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
26629
|
+
telemetryKey: TelemetryKeyClass
|
|
26483
26630
|
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
26484
|
-
|
|
26485
|
-
|
|
26486
|
-
|
|
26487
|
-
postKey: PostKeyClass
|
|
26488
|
-
dataHubSecretKey: DataHubSecretKeyClass
|
|
26489
|
-
dashboardKey: DashboardKeyClass
|
|
26490
|
-
mlModelGroupKey: MLModelGroupKeyClass
|
|
26491
|
-
datasetKey: DatasetKeyClass
|
|
26631
|
+
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
26632
|
+
dataHubRoleKey: DataHubRoleKeyClass
|
|
26633
|
+
mlModelKey: MLModelKeyClass
|
|
26492
26634
|
notebookKey: NotebookKeyClass
|
|
26493
|
-
dataFlowKey: DataFlowKeyClass
|
|
26494
|
-
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
26495
|
-
formKey: FormKeyClass
|
|
26496
|
-
domainKey: DomainKeyClass
|
|
26497
|
-
incidentKey: IncidentKeyClass
|
|
26498
|
-
tagKey: TagKeyClass
|
|
26499
26635
|
roleKey: RoleKeyClass
|
|
26500
|
-
dataPlatformKey: DataPlatformKeyClass
|
|
26501
|
-
dataJobKey: DataJobKeyClass
|
|
26502
|
-
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
26503
|
-
dataHubViewKey: DataHubViewKeyClass
|
|
26504
|
-
corpUserKey: CorpUserKeyClass
|
|
26505
|
-
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
26506
|
-
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
26507
|
-
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
26508
|
-
containerKey: ContainerKeyClass
|
|
26509
|
-
glossaryNodeKey: GlossaryNodeKeyClass
|
|
26510
|
-
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
26511
|
-
testKey: TestKeyClass
|
|
26512
|
-
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
26513
|
-
corpGroupKey: CorpGroupKeyClass
|
|
26514
|
-
dataContractKey: DataContractKeyClass
|
|
26515
26636
|
globalSettingsKey: GlobalSettingsKeyClass
|
|
26637
|
+
datasetKey: DatasetKeyClass
|
|
26638
|
+
chartKey: ChartKeyClass
|
|
26639
|
+
glossaryNodeKey: GlossaryNodeKeyClass
|
|
26516
26640
|
assertionKey: AssertionKeyClass
|
|
26641
|
+
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
26642
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
26643
|
+
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
26644
|
+
dataFlowKey: DataFlowKeyClass
|
|
26645
|
+
dataJobKey: DataJobKeyClass
|
|
26646
|
+
corpGroupKey: CorpGroupKeyClass
|
|
26647
|
+
dataPlatformKey: DataPlatformKeyClass
|
|
26648
|
+
corpUserKey: CorpUserKeyClass
|
|
26649
|
+
dashboardKey: DashboardKeyClass
|
|
26650
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
26517
26651
|
queryKey: QueryKeyClass
|
|
26652
|
+
ownershipTypeKey: OwnershipTypeKeyClass
|
|
26653
|
+
domainKey: DomainKeyClass
|
|
26654
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
26655
|
+
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
26656
|
+
dataHubViewKey: DataHubViewKeyClass
|
|
26518
26657
|
dataHubActionKey: DataHubActionKeyClass
|
|
26519
|
-
|
|
26520
|
-
|
|
26521
|
-
|
|
26658
|
+
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
26659
|
+
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
26660
|
+
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
26661
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
26662
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
26663
|
+
dataContractKey: DataContractKeyClass
|
|
26522
26664
|
dataProcessKey: DataProcessKeyClass
|
|
26665
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
26523
26666
|
glossaryTermKey: GlossaryTermKeyClass
|
|
26524
|
-
|
|
26525
|
-
|
|
26526
|
-
|
|
26527
|
-
|
|
26528
|
-
|
|
26529
|
-
|
|
26530
|
-
|
|
26531
|
-
|
|
26532
|
-
|
|
26533
|
-
|
|
26534
|
-
|
|
26535
|
-
|
|
26536
|
-
|
|
26537
|
-
|
|
26538
|
-
|
|
26539
|
-
|
|
26540
|
-
|
|
26541
|
-
|
|
26542
|
-
|
|
26543
|
-
|
|
26544
|
-
|
|
26545
|
-
|
|
26546
|
-
|
|
26547
|
-
|
|
26548
|
-
|
|
26549
|
-
mlHyperParam: MLHyperParamClass
|
|
26550
|
-
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
26551
|
-
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
26552
|
-
mlModelTrainingData: TrainingDataClass
|
|
26553
|
-
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
26554
|
-
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
26555
|
-
mlModelMetrics: MetricsClass
|
|
26556
|
-
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
26557
|
-
mlFeatureProperties: MLFeaturePropertiesClass
|
|
26558
|
-
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
26559
|
-
mlModelProperties: MLModelPropertiesClass
|
|
26560
|
-
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
26561
|
-
sourceCode: SourceCodeClass
|
|
26562
|
-
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
26563
|
-
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
26564
|
-
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
26565
|
-
mlModelEvaluationData: EvaluationDataClass
|
|
26566
|
-
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
26567
|
-
dataHubViewInfo: DataHubViewInfoClass
|
|
26568
|
-
telemetryClientId: TelemetryClientIdClass
|
|
26569
|
-
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
26570
|
-
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
26571
|
-
dashboardInfo: DashboardInfoClass
|
|
26572
|
-
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
26667
|
+
formKey: FormKeyClass
|
|
26668
|
+
schemaFieldKey: SchemaFieldKeyClass
|
|
26669
|
+
tagKey: TagKeyClass
|
|
26670
|
+
postKey: PostKeyClass
|
|
26671
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
26672
|
+
inviteTokenKey: InviteTokenKeyClass
|
|
26673
|
+
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
26674
|
+
containerKey: ContainerKeyClass
|
|
26675
|
+
incidentKey: IncidentKeyClass
|
|
26676
|
+
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
26677
|
+
testKey: TestKeyClass
|
|
26678
|
+
versionSetKey: VersionSetKeyClass
|
|
26679
|
+
dataHubSecretKey: DataHubSecretKeyClass
|
|
26680
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
26681
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
26682
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
26683
|
+
domains: DomainsClass
|
|
26684
|
+
domainProperties: DomainPropertiesClass
|
|
26685
|
+
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
26686
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
26687
|
+
schemaFieldAliases: SchemaFieldAliasesClass
|
|
26688
|
+
versionSetProperties: VersionSetPropertiesClass
|
|
26689
|
+
testResults: TestResultsClass
|
|
26690
|
+
testInfo: TestInfoClass
|
|
26691
|
+
dataProcessInfo: DataProcessInfoClass
|
|
26573
26692
|
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
26574
26693
|
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
26575
|
-
dataProcessInfo: DataProcessInfoClass
|
|
26576
|
-
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
26577
26694
|
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
26578
|
-
|
|
26579
|
-
|
|
26580
|
-
formInfo: FormInfoClass
|
|
26581
|
-
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
26582
|
-
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
26583
|
-
dataProductKey: DataProductKeyClass
|
|
26584
|
-
dataProductProperties: DataProductPropertiesClass
|
|
26585
|
-
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
26586
|
-
entityTypeInfo: EntityTypeInfoClass
|
|
26695
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
26696
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
26587
26697
|
entityTypeKey: EntityTypeKeyClass
|
|
26588
|
-
|
|
26698
|
+
entityTypeInfo: EntityTypeInfoClass
|
|
26699
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
26700
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
26701
|
+
corpUserStatus: CorpUserStatusClass
|
|
26702
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
26703
|
+
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
26704
|
+
corpGroupInfo: CorpGroupInfoClass
|
|
26705
|
+
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
26706
|
+
corpUserInfo: CorpUserInfoClass
|
|
26707
|
+
corpUserSettings: CorpUserSettingsClass
|
|
26708
|
+
roleMembership: RoleMembershipClass
|
|
26709
|
+
groupMembership: GroupMembershipClass
|
|
26710
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
26711
|
+
inviteToken: InviteTokenClass
|
|
26589
26712
|
roleProperties: RolePropertiesClass
|
|
26590
26713
|
actors: ActorsClass
|
|
26591
|
-
|
|
26592
|
-
|
|
26593
|
-
|
|
26594
|
-
|
|
26595
|
-
|
|
26596
|
-
|
|
26597
|
-
|
|
26598
|
-
editableChartProperties: EditableChartPropertiesClass
|
|
26599
|
-
queryProperties: QueryPropertiesClass
|
|
26600
|
-
querySubjects: QuerySubjectsClass
|
|
26601
|
-
queryUsageStatistics: QueryUsageStatisticsClass
|
|
26602
|
-
versionSetProperties: VersionSetPropertiesClass
|
|
26714
|
+
postInfo: PostInfoClass
|
|
26715
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
26716
|
+
dashboardInfo: DashboardInfoClass
|
|
26717
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
26718
|
+
notebookInfo: NotebookInfoClass
|
|
26719
|
+
notebookContent: NotebookContentClass
|
|
26720
|
+
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
26603
26721
|
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
26604
|
-
tagProperties: TagPropertiesClass
|
|
26605
|
-
domains: DomainsClass
|
|
26606
|
-
domainProperties: DomainPropertiesClass
|
|
26607
|
-
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
26608
|
-
schemaMetadata: SchemaMetadataClass
|
|
26609
|
-
globalSettingsInfo: GlobalSettingsInfoClass
|
|
26610
|
-
viewProperties: ViewPropertiesClass
|
|
26611
|
-
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
26612
|
-
datasetProfile: DatasetProfileClass
|
|
26613
|
-
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
26614
|
-
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
26615
|
-
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
26616
|
-
partitionsSummary: PartitionsSummaryClass
|
|
26617
|
-
datasetProperties: DatasetPropertiesClass
|
|
26618
|
-
upstreamLineage: UpstreamLineageClass
|
|
26619
|
-
datasetDeprecation: DatasetDeprecationClass
|
|
26620
|
-
editableContainerProperties: EditableContainerPropertiesClass
|
|
26621
|
-
container: ContainerClass
|
|
26622
|
-
containerProperties: ContainerPropertiesClass
|
|
26623
|
-
schemaFieldAliases: SchemaFieldAliasesClass
|
|
26624
|
-
schemafieldInfo: SchemaFieldInfoClass
|
|
26625
|
-
platformResourceKey: PlatformResourceKeyClass
|
|
26626
|
-
platformResourceInfo: PlatformResourceInfoClass
|
|
26627
|
-
testInfo: TestInfoClass
|
|
26628
|
-
testResults: TestResultsClass
|
|
26629
26722
|
structuredProperties: StructuredPropertiesClass
|
|
26630
26723
|
propertyDefinition: StructuredPropertyDefinitionClass
|
|
26631
26724
|
structuredPropertyKey: StructuredPropertyKeyClass
|
|
26632
26725
|
structuredPropertySettings: StructuredPropertySettingsClass
|
|
26726
|
+
tagProperties: TagPropertiesClass
|
|
26727
|
+
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
26728
|
+
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
26729
|
+
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
26730
|
+
mlModelTrainingData: TrainingDataClass
|
|
26731
|
+
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
26732
|
+
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
26733
|
+
mlHyperParam: MLHyperParamClass
|
|
26734
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
26735
|
+
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
26736
|
+
sourceCode: SourceCodeClass
|
|
26737
|
+
mlModelEvaluationData: EvaluationDataClass
|
|
26738
|
+
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
26739
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
26740
|
+
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
26741
|
+
mlModelMetrics: MetricsClass
|
|
26742
|
+
mlMetric: MLMetricClass
|
|
26743
|
+
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
26744
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
26745
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
26746
|
+
intendedUse: IntendedUseClass
|
|
26747
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
26748
|
+
mlModelProperties: MLModelPropertiesClass
|
|
26749
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
26750
|
+
platformResourceKey: PlatformResourceKeyClass
|
|
26751
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
26752
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
26753
|
+
chartQuery: ChartQueryClass
|
|
26754
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
26755
|
+
chartInfo: ChartInfoClass
|
|
26756
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
26633
26757
|
|
|
26634
26758
|
|
|
26635
26759
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
26636
|
-
'
|
|
26637
|
-
'
|
|
26638
|
-
'
|
|
26639
|
-
'
|
|
26640
|
-
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
26760
|
+
'businessAttribute': BusinessAttributeKeyClass,
|
|
26761
|
+
'dataType': DataTypeKeyClass,
|
|
26762
|
+
'dataProduct': DataProductKeyClass,
|
|
26763
|
+
'telemetry': TelemetryKeyClass,
|
|
26641
26764
|
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
26642
|
-
'
|
|
26643
|
-
'
|
|
26644
|
-
'
|
|
26645
|
-
'post': PostKeyClass,
|
|
26646
|
-
'dataHubSecret': DataHubSecretKeyClass,
|
|
26647
|
-
'dashboard': DashboardKeyClass,
|
|
26648
|
-
'mlModelGroup': MLModelGroupKeyClass,
|
|
26649
|
-
'dataset': DatasetKeyClass,
|
|
26765
|
+
'dataHubConnection': DataHubConnectionKeyClass,
|
|
26766
|
+
'dataHubRole': DataHubRoleKeyClass,
|
|
26767
|
+
'mlModel': MLModelKeyClass,
|
|
26650
26768
|
'notebook': NotebookKeyClass,
|
|
26651
|
-
'dataFlow': DataFlowKeyClass,
|
|
26652
|
-
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
26653
|
-
'form': FormKeyClass,
|
|
26654
|
-
'domain': DomainKeyClass,
|
|
26655
|
-
'incident': IncidentKeyClass,
|
|
26656
|
-
'tag': TagKeyClass,
|
|
26657
26769
|
'role': RoleKeyClass,
|
|
26658
|
-
'dataPlatform': DataPlatformKeyClass,
|
|
26659
|
-
'dataJob': DataJobKeyClass,
|
|
26660
|
-
'dataHubStepState': DataHubStepStateKeyClass,
|
|
26661
|
-
'dataHubView': DataHubViewKeyClass,
|
|
26662
|
-
'corpuser': CorpUserKeyClass,
|
|
26663
|
-
'dataHubRetention': DataHubRetentionKeyClass,
|
|
26664
|
-
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
26665
|
-
'dataHubPersona': DataHubPersonaKeyClass,
|
|
26666
|
-
'container': ContainerKeyClass,
|
|
26667
|
-
'glossaryNode': GlossaryNodeKeyClass,
|
|
26668
|
-
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
26669
|
-
'test': TestKeyClass,
|
|
26670
|
-
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
26671
|
-
'corpGroup': CorpGroupKeyClass,
|
|
26672
|
-
'dataContract': DataContractKeyClass,
|
|
26673
26770
|
'globalSettings': GlobalSettingsKeyClass,
|
|
26771
|
+
'dataset': DatasetKeyClass,
|
|
26772
|
+
'chart': ChartKeyClass,
|
|
26773
|
+
'glossaryNode': GlossaryNodeKeyClass,
|
|
26674
26774
|
'assertion': AssertionKeyClass,
|
|
26775
|
+
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
26776
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
26777
|
+
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
26778
|
+
'dataFlow': DataFlowKeyClass,
|
|
26779
|
+
'dataJob': DataJobKeyClass,
|
|
26780
|
+
'corpGroup': CorpGroupKeyClass,
|
|
26781
|
+
'dataPlatform': DataPlatformKeyClass,
|
|
26782
|
+
'corpuser': CorpUserKeyClass,
|
|
26783
|
+
'dashboard': DashboardKeyClass,
|
|
26784
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
26675
26785
|
'query': QueryKeyClass,
|
|
26786
|
+
'ownershipType': OwnershipTypeKeyClass,
|
|
26787
|
+
'domain': DomainKeyClass,
|
|
26788
|
+
'mlFeature': MLFeatureKeyClass,
|
|
26789
|
+
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
26790
|
+
'dataHubView': DataHubViewKeyClass,
|
|
26676
26791
|
'dataHubAction': DataHubActionKeyClass,
|
|
26677
|
-
'
|
|
26678
|
-
'
|
|
26679
|
-
'
|
|
26792
|
+
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
26793
|
+
'dataHubStepState': DataHubStepStateKeyClass,
|
|
26794
|
+
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
26795
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
26796
|
+
'dataHubRetention': DataHubRetentionKeyClass,
|
|
26797
|
+
'dataContract': DataContractKeyClass,
|
|
26680
26798
|
'dataProcess': DataProcessKeyClass,
|
|
26799
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
26681
26800
|
'glossaryTerm': GlossaryTermKeyClass,
|
|
26682
|
-
'
|
|
26683
|
-
'
|
|
26684
|
-
'
|
|
26685
|
-
'
|
|
26686
|
-
'
|
|
26687
|
-
'
|
|
26688
|
-
'
|
|
26689
|
-
'
|
|
26801
|
+
'form': FormKeyClass,
|
|
26802
|
+
'schemaField': SchemaFieldKeyClass,
|
|
26803
|
+
'tag': TagKeyClass,
|
|
26804
|
+
'post': PostKeyClass,
|
|
26805
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
26806
|
+
'inviteToken': InviteTokenKeyClass,
|
|
26807
|
+
'dataHubPersona': DataHubPersonaKeyClass,
|
|
26808
|
+
'container': ContainerKeyClass,
|
|
26809
|
+
'incident': IncidentKeyClass,
|
|
26810
|
+
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
26811
|
+
'test': TestKeyClass,
|
|
26812
|
+
'versionSet': VersionSetKeyClass,
|
|
26813
|
+
'dataHubSecret': DataHubSecretKeyClass,
|
|
26690
26814
|
'entityType': EntityTypeKeyClass,
|
|
26691
|
-
'
|
|
26692
|
-
'
|
|
26815
|
+
'structuredProperty': StructuredPropertyKeyClass,
|
|
26816
|
+
'platformResource': PlatformResourceKeyClass
|
|
26693
26817
|
}
|
|
26694
26818
|
|
|
26695
26819
|
# fmt: on
|