acryl-datahub 0.14.1.13rc8__py3-none-any.whl → 0.15.0__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-0.14.1.13rc8.dist-info → acryl_datahub-0.15.0.dist-info}/METADATA +2506 -2456
- {acryl_datahub-0.14.1.13rc8.dist-info → acryl_datahub-0.15.0.dist-info}/RECORD +136 -131
- {acryl_datahub-0.14.1.13rc8.dist-info → acryl_datahub-0.15.0.dist-info}/entry_points.txt +2 -1
- datahub/__init__.py +1 -1
- datahub/api/entities/structuredproperties/structuredproperties.py +123 -146
- datahub/cli/cli_utils.py +2 -0
- datahub/cli/delete_cli.py +103 -24
- datahub/cli/ingest_cli.py +110 -0
- datahub/cli/put_cli.py +1 -1
- datahub/cli/specific/dataproduct_cli.py +1 -1
- datahub/cli/specific/structuredproperties_cli.py +2 -1
- datahub/configuration/common.py +3 -3
- datahub/configuration/git.py +7 -1
- datahub/configuration/kafka_consumer_config.py +31 -1
- datahub/emitter/mcp_patch_builder.py +43 -0
- datahub/emitter/rest_emitter.py +17 -4
- datahub/ingestion/api/incremental_properties_helper.py +69 -0
- datahub/ingestion/api/source.py +6 -1
- datahub/ingestion/api/source_helpers.py +4 -2
- datahub/ingestion/graph/client.py +2 -0
- datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +2 -2
- datahub/ingestion/run/pipeline.py +6 -5
- datahub/ingestion/run/pipeline_config.py +6 -0
- datahub/ingestion/sink/datahub_rest.py +15 -4
- datahub/ingestion/source/abs/source.py +4 -0
- datahub/ingestion/source/aws/aws_common.py +13 -1
- datahub/ingestion/source/aws/sagemaker.py +8 -0
- datahub/ingestion/source/aws/sagemaker_processors/common.py +6 -0
- datahub/ingestion/source/aws/sagemaker_processors/feature_groups.py +9 -4
- datahub/ingestion/source/aws/sagemaker_processors/jobs.py +12 -1
- datahub/ingestion/source/aws/sagemaker_processors/lineage.py +11 -4
- datahub/ingestion/source/aws/sagemaker_processors/models.py +30 -1
- datahub/ingestion/source/bigquery_v2/bigquery_audit.py +1 -1
- datahub/ingestion/source/bigquery_v2/bigquery_schema.py +0 -1
- datahub/ingestion/source/bigquery_v2/bigquery_schema_gen.py +0 -21
- datahub/ingestion/source/bigquery_v2/profiler.py +0 -6
- datahub/ingestion/source/common/subtypes.py +2 -0
- datahub/ingestion/source/csv_enricher.py +1 -1
- datahub/ingestion/source/datahub/datahub_database_reader.py +41 -21
- datahub/ingestion/source/datahub/datahub_source.py +8 -1
- datahub/ingestion/source/dbt/dbt_common.py +7 -61
- datahub/ingestion/source/dremio/dremio_api.py +204 -86
- datahub/ingestion/source/dremio/dremio_aspects.py +19 -15
- datahub/ingestion/source/dremio/dremio_config.py +5 -0
- datahub/ingestion/source/dremio/dremio_datahub_source_mapping.py +2 -0
- datahub/ingestion/source/dremio/dremio_entities.py +4 -0
- datahub/ingestion/source/dremio/dremio_reporting.py +15 -0
- datahub/ingestion/source/dremio/dremio_source.py +7 -2
- datahub/ingestion/source/elastic_search.py +1 -1
- datahub/ingestion/source/feast.py +97 -6
- datahub/ingestion/source/gc/datahub_gc.py +46 -35
- datahub/ingestion/source/gc/dataprocess_cleanup.py +110 -50
- datahub/ingestion/source/gc/soft_deleted_entity_cleanup.py +7 -2
- datahub/ingestion/source/ge_data_profiler.py +46 -9
- datahub/ingestion/source/ge_profiling_config.py +5 -0
- datahub/ingestion/source/iceberg/iceberg.py +12 -5
- datahub/ingestion/source/kafka/kafka.py +39 -19
- datahub/ingestion/source/kafka/kafka_connect.py +81 -51
- datahub/ingestion/source/looker/looker_liquid_tag.py +8 -1
- datahub/ingestion/source/looker/lookml_concept_context.py +1 -2
- datahub/ingestion/source/looker/view_upstream.py +65 -30
- datahub/ingestion/source/metadata/business_glossary.py +35 -18
- datahub/ingestion/source/mode.py +0 -23
- datahub/ingestion/source/neo4j/__init__.py +0 -0
- datahub/ingestion/source/neo4j/neo4j_source.py +331 -0
- datahub/ingestion/source/powerbi/__init__.py +0 -1
- datahub/ingestion/source/powerbi/config.py +3 -3
- datahub/ingestion/source/powerbi/m_query/data_classes.py +36 -15
- datahub/ingestion/source/powerbi/m_query/parser.py +6 -3
- datahub/ingestion/source/powerbi/m_query/pattern_handler.py +912 -0
- datahub/ingestion/source/powerbi/m_query/resolver.py +23 -947
- datahub/ingestion/source/powerbi/m_query/tree_function.py +3 -3
- datahub/ingestion/source/powerbi/m_query/validator.py +9 -3
- datahub/ingestion/source/powerbi/powerbi.py +12 -6
- datahub/ingestion/source/preset.py +1 -0
- datahub/ingestion/source/pulsar.py +21 -2
- datahub/ingestion/source/qlik_sense/data_classes.py +1 -0
- datahub/ingestion/source/redash.py +13 -63
- datahub/ingestion/source/redshift/config.py +1 -0
- datahub/ingestion/source/redshift/redshift.py +3 -0
- datahub/ingestion/source/s3/source.py +2 -3
- datahub/ingestion/source/sigma/data_classes.py +1 -0
- datahub/ingestion/source/sigma/sigma.py +101 -43
- datahub/ingestion/source/snowflake/snowflake_config.py +8 -3
- datahub/ingestion/source/snowflake/snowflake_connection.py +28 -0
- datahub/ingestion/source/snowflake/snowflake_lineage_v2.py +6 -1
- datahub/ingestion/source/snowflake/snowflake_query.py +21 -4
- datahub/ingestion/source/snowflake/snowflake_report.py +1 -0
- datahub/ingestion/source/snowflake/snowflake_schema.py +28 -0
- datahub/ingestion/source/snowflake/snowflake_schema_gen.py +41 -2
- datahub/ingestion/source/snowflake/snowflake_utils.py +46 -6
- datahub/ingestion/source/snowflake/snowflake_v2.py +6 -0
- datahub/ingestion/source/sql/athena.py +46 -22
- datahub/ingestion/source/sql/mssql/source.py +18 -6
- datahub/ingestion/source/sql/sql_common.py +34 -21
- datahub/ingestion/source/sql/sql_report.py +1 -0
- datahub/ingestion/source/sql/sql_types.py +85 -8
- datahub/ingestion/source/state/redundant_run_skip_handler.py +1 -1
- datahub/ingestion/source/superset.py +215 -65
- datahub/ingestion/source/tableau/tableau.py +237 -76
- datahub/ingestion/source/tableau/tableau_common.py +12 -6
- datahub/ingestion/source/tableau/tableau_constant.py +2 -0
- datahub/ingestion/source/tableau/tableau_server_wrapper.py +33 -0
- datahub/ingestion/source/tableau/tableau_validation.py +48 -0
- datahub/ingestion/source/unity/proxy_types.py +1 -0
- datahub/ingestion/source/unity/source.py +4 -0
- datahub/ingestion/source/unity/usage.py +20 -11
- datahub/ingestion/transformer/add_dataset_tags.py +1 -1
- datahub/ingestion/transformer/generic_aspect_transformer.py +1 -1
- datahub/integrations/assertion/common.py +1 -1
- datahub/lite/duckdb_lite.py +12 -17
- datahub/metadata/_schema_classes.py +512 -392
- datahub/metadata/_urns/urn_defs.py +1355 -1355
- datahub/metadata/com/linkedin/pegasus2avro/structured/__init__.py +2 -0
- datahub/metadata/schema.avsc +17222 -17499
- datahub/metadata/schemas/FormInfo.avsc +4 -0
- datahub/metadata/schemas/StructuredPropertyDefinition.avsc +1 -1
- datahub/metadata/schemas/StructuredPropertyKey.avsc +1 -0
- datahub/metadata/schemas/StructuredPropertySettings.avsc +114 -0
- datahub/specific/chart.py +0 -39
- datahub/specific/dashboard.py +0 -39
- datahub/specific/datajob.py +7 -57
- datahub/sql_parsing/schema_resolver.py +23 -0
- datahub/sql_parsing/sql_parsing_aggregator.py +1 -2
- datahub/sql_parsing/sqlglot_lineage.py +55 -14
- datahub/sql_parsing/sqlglot_utils.py +8 -2
- datahub/telemetry/telemetry.py +23 -9
- datahub/testing/compare_metadata_json.py +1 -1
- datahub/testing/doctest.py +12 -0
- datahub/utilities/file_backed_collections.py +35 -2
- datahub/utilities/partition_executor.py +1 -1
- datahub/utilities/urn_encoder.py +2 -1
- datahub/utilities/urns/_urn_base.py +1 -1
- datahub/utilities/urns/structured_properties_urn.py +1 -1
- datahub/utilities/sql_lineage_parser_impl.py +0 -160
- datahub/utilities/sql_parser.py +0 -94
- datahub/utilities/sql_parser_base.py +0 -21
- {acryl_datahub-0.14.1.13rc8.dist-info → acryl_datahub-0.15.0.dist-info}/WHEEL +0 -0
- {acryl_datahub-0.14.1.13rc8.dist-info → acryl_datahub-0.15.0.dist-info}/top_level.txt +0 -0
|
@@ -23267,7 +23267,7 @@ class StructuredPropertyDefinitionClass(_Aspect):
|
|
|
23267
23267
|
|
|
23268
23268
|
@property
|
|
23269
23269
|
def lastModified(self) -> Union[None, "AuditStampClass"]:
|
|
23270
|
-
"""
|
|
23270
|
+
"""Last Modified Audit stamp"""
|
|
23271
23271
|
return self._inner_dict.get('lastModified') # type: ignore
|
|
23272
23272
|
|
|
23273
23273
|
@lastModified.setter
|
|
@@ -23280,7 +23280,7 @@ class StructuredPropertyKeyClass(_Aspect):
|
|
|
23280
23280
|
|
|
23281
23281
|
|
|
23282
23282
|
ASPECT_NAME = 'structuredPropertyKey'
|
|
23283
|
-
ASPECT_INFO = {'keyForEntity': 'structuredProperty', 'entityCategory': 'core', 'entityAspects': ['propertyDefinition', 'institutionalMemory', 'status'], 'entityDoc': 'Structured Property represents a property meant for extending the core model of a logical entity'}
|
|
23283
|
+
ASPECT_INFO = {'keyForEntity': 'structuredProperty', 'entityCategory': 'core', 'entityAspects': ['propertyDefinition', 'structuredPropertySettings', 'institutionalMemory', 'status'], 'entityDoc': 'Structured Property represents a property meant for extending the core model of a logical entity'}
|
|
23284
23284
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.structured.StructuredPropertyKey")
|
|
23285
23285
|
|
|
23286
23286
|
def __init__(self,
|
|
@@ -23304,6 +23304,122 @@ class StructuredPropertyKeyClass(_Aspect):
|
|
|
23304
23304
|
self._inner_dict['id'] = value
|
|
23305
23305
|
|
|
23306
23306
|
|
|
23307
|
+
class StructuredPropertySettingsClass(_Aspect):
|
|
23308
|
+
"""Settings specific to a structured property entity"""
|
|
23309
|
+
|
|
23310
|
+
|
|
23311
|
+
ASPECT_NAME = 'structuredPropertySettings'
|
|
23312
|
+
ASPECT_INFO = {}
|
|
23313
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.structured.StructuredPropertySettings")
|
|
23314
|
+
|
|
23315
|
+
def __init__(self,
|
|
23316
|
+
isHidden: Optional[bool]=None,
|
|
23317
|
+
showInSearchFilters: Optional[bool]=None,
|
|
23318
|
+
showInAssetSummary: Optional[bool]=None,
|
|
23319
|
+
showAsAssetBadge: Optional[bool]=None,
|
|
23320
|
+
showInColumnsTable: Optional[bool]=None,
|
|
23321
|
+
lastModified: Union[None, "AuditStampClass"]=None,
|
|
23322
|
+
):
|
|
23323
|
+
super().__init__()
|
|
23324
|
+
|
|
23325
|
+
if isHidden is None:
|
|
23326
|
+
# default: False
|
|
23327
|
+
self.isHidden = self.RECORD_SCHEMA.fields_dict["isHidden"].default
|
|
23328
|
+
else:
|
|
23329
|
+
self.isHidden = isHidden
|
|
23330
|
+
if showInSearchFilters is None:
|
|
23331
|
+
# default: False
|
|
23332
|
+
self.showInSearchFilters = self.RECORD_SCHEMA.fields_dict["showInSearchFilters"].default
|
|
23333
|
+
else:
|
|
23334
|
+
self.showInSearchFilters = showInSearchFilters
|
|
23335
|
+
if showInAssetSummary is None:
|
|
23336
|
+
# default: False
|
|
23337
|
+
self.showInAssetSummary = self.RECORD_SCHEMA.fields_dict["showInAssetSummary"].default
|
|
23338
|
+
else:
|
|
23339
|
+
self.showInAssetSummary = showInAssetSummary
|
|
23340
|
+
if showAsAssetBadge is None:
|
|
23341
|
+
# default: False
|
|
23342
|
+
self.showAsAssetBadge = self.RECORD_SCHEMA.fields_dict["showAsAssetBadge"].default
|
|
23343
|
+
else:
|
|
23344
|
+
self.showAsAssetBadge = showAsAssetBadge
|
|
23345
|
+
if showInColumnsTable is None:
|
|
23346
|
+
# default: False
|
|
23347
|
+
self.showInColumnsTable = self.RECORD_SCHEMA.fields_dict["showInColumnsTable"].default
|
|
23348
|
+
else:
|
|
23349
|
+
self.showInColumnsTable = showInColumnsTable
|
|
23350
|
+
self.lastModified = lastModified
|
|
23351
|
+
|
|
23352
|
+
def _restore_defaults(self) -> None:
|
|
23353
|
+
self.isHidden = self.RECORD_SCHEMA.fields_dict["isHidden"].default
|
|
23354
|
+
self.showInSearchFilters = self.RECORD_SCHEMA.fields_dict["showInSearchFilters"].default
|
|
23355
|
+
self.showInAssetSummary = self.RECORD_SCHEMA.fields_dict["showInAssetSummary"].default
|
|
23356
|
+
self.showAsAssetBadge = self.RECORD_SCHEMA.fields_dict["showAsAssetBadge"].default
|
|
23357
|
+
self.showInColumnsTable = self.RECORD_SCHEMA.fields_dict["showInColumnsTable"].default
|
|
23358
|
+
self.lastModified = self.RECORD_SCHEMA.fields_dict["lastModified"].default
|
|
23359
|
+
|
|
23360
|
+
|
|
23361
|
+
@property
|
|
23362
|
+
def isHidden(self) -> bool:
|
|
23363
|
+
"""Whether or not this asset should be hidden in the main application"""
|
|
23364
|
+
return self._inner_dict.get('isHidden') # type: ignore
|
|
23365
|
+
|
|
23366
|
+
@isHidden.setter
|
|
23367
|
+
def isHidden(self, value: bool) -> None:
|
|
23368
|
+
self._inner_dict['isHidden'] = value
|
|
23369
|
+
|
|
23370
|
+
|
|
23371
|
+
@property
|
|
23372
|
+
def showInSearchFilters(self) -> bool:
|
|
23373
|
+
"""Whether or not this asset should be displayed as a search filter"""
|
|
23374
|
+
return self._inner_dict.get('showInSearchFilters') # type: ignore
|
|
23375
|
+
|
|
23376
|
+
@showInSearchFilters.setter
|
|
23377
|
+
def showInSearchFilters(self, value: bool) -> None:
|
|
23378
|
+
self._inner_dict['showInSearchFilters'] = value
|
|
23379
|
+
|
|
23380
|
+
|
|
23381
|
+
@property
|
|
23382
|
+
def showInAssetSummary(self) -> bool:
|
|
23383
|
+
"""Whether or not this asset should be displayed in the asset sidebar"""
|
|
23384
|
+
return self._inner_dict.get('showInAssetSummary') # type: ignore
|
|
23385
|
+
|
|
23386
|
+
@showInAssetSummary.setter
|
|
23387
|
+
def showInAssetSummary(self, value: bool) -> None:
|
|
23388
|
+
self._inner_dict['showInAssetSummary'] = value
|
|
23389
|
+
|
|
23390
|
+
|
|
23391
|
+
@property
|
|
23392
|
+
def showAsAssetBadge(self) -> bool:
|
|
23393
|
+
"""Whether or not this asset should be displayed as an asset badge on other
|
|
23394
|
+
asset's headers"""
|
|
23395
|
+
return self._inner_dict.get('showAsAssetBadge') # type: ignore
|
|
23396
|
+
|
|
23397
|
+
@showAsAssetBadge.setter
|
|
23398
|
+
def showAsAssetBadge(self, value: bool) -> None:
|
|
23399
|
+
self._inner_dict['showAsAssetBadge'] = value
|
|
23400
|
+
|
|
23401
|
+
|
|
23402
|
+
@property
|
|
23403
|
+
def showInColumnsTable(self) -> bool:
|
|
23404
|
+
"""Whether or not this asset should be displayed as a column in the schema field table
|
|
23405
|
+
in a Dataset's "Columns" tab."""
|
|
23406
|
+
return self._inner_dict.get('showInColumnsTable') # type: ignore
|
|
23407
|
+
|
|
23408
|
+
@showInColumnsTable.setter
|
|
23409
|
+
def showInColumnsTable(self, value: bool) -> None:
|
|
23410
|
+
self._inner_dict['showInColumnsTable'] = value
|
|
23411
|
+
|
|
23412
|
+
|
|
23413
|
+
@property
|
|
23414
|
+
def lastModified(self) -> Union[None, "AuditStampClass"]:
|
|
23415
|
+
"""Last Modified Audit stamp"""
|
|
23416
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
23417
|
+
|
|
23418
|
+
@lastModified.setter
|
|
23419
|
+
def lastModified(self, value: Union[None, "AuditStampClass"]) -> None:
|
|
23420
|
+
self._inner_dict['lastModified'] = value
|
|
23421
|
+
|
|
23422
|
+
|
|
23307
23423
|
class StructuredPropertyValueAssignmentClass(DictWrapper):
|
|
23308
23424
|
# No docs available.
|
|
23309
23425
|
|
|
@@ -24775,6 +24891,7 @@ __SCHEMA_TYPES = {
|
|
|
24775
24891
|
'com.linkedin.pegasus2avro.structured.StructuredProperties': StructuredPropertiesClass,
|
|
24776
24892
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyDefinition': StructuredPropertyDefinitionClass,
|
|
24777
24893
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyKey': StructuredPropertyKeyClass,
|
|
24894
|
+
'com.linkedin.pegasus2avro.structured.StructuredPropertySettings': StructuredPropertySettingsClass,
|
|
24778
24895
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
24779
24896
|
'com.linkedin.pegasus2avro.tag.TagProperties': TagPropertiesClass,
|
|
24780
24897
|
'com.linkedin.pegasus2avro.telemetry.TelemetryClientId': TelemetryClientIdClass,
|
|
@@ -25240,6 +25357,7 @@ __SCHEMA_TYPES = {
|
|
|
25240
25357
|
'StructuredProperties': StructuredPropertiesClass,
|
|
25241
25358
|
'StructuredPropertyDefinition': StructuredPropertyDefinitionClass,
|
|
25242
25359
|
'StructuredPropertyKey': StructuredPropertyKeyClass,
|
|
25360
|
+
'StructuredPropertySettings': StructuredPropertySettingsClass,
|
|
25243
25361
|
'StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
25244
25362
|
'TagProperties': TagPropertiesClass,
|
|
25245
25363
|
'TelemetryClientId': TelemetryClientIdClass,
|
|
@@ -25273,208 +25391,209 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
25273
25391
|
|
|
25274
25392
|
|
|
25275
25393
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
25394
|
+
TagPropertiesClass,
|
|
25395
|
+
StatusClass,
|
|
25396
|
+
IncidentsSummaryClass,
|
|
25397
|
+
CostClass,
|
|
25398
|
+
BrowsePathsClass,
|
|
25399
|
+
InstitutionalMemoryClass,
|
|
25400
|
+
SubTypesClass,
|
|
25401
|
+
FormsClass,
|
|
25402
|
+
DeprecationClass,
|
|
25403
|
+
GlobalTagsClass,
|
|
25404
|
+
EmbedClass,
|
|
25405
|
+
OperationClass,
|
|
25406
|
+
DataPlatformInstanceClass,
|
|
25407
|
+
GlossaryTermsClass,
|
|
25408
|
+
SiblingsClass,
|
|
25409
|
+
InputFieldsClass,
|
|
25410
|
+
OwnershipClass,
|
|
25411
|
+
DocumentationClass,
|
|
25412
|
+
BrowsePathsV2Class,
|
|
25413
|
+
OriginClass,
|
|
25414
|
+
AccessClass,
|
|
25415
|
+
DataHubAccessTokenInfoClass,
|
|
25416
|
+
GlobalSettingsInfoClass,
|
|
25417
|
+
SchemaMetadataClass,
|
|
25418
|
+
EditableSchemaMetadataClass,
|
|
25419
|
+
DataPlatformInstancePropertiesClass,
|
|
25420
|
+
ERModelRelationshipPropertiesClass,
|
|
25421
|
+
EditableERModelRelationshipPropertiesClass,
|
|
25422
|
+
StructuredPropertyDefinitionClass,
|
|
25423
|
+
StructuredPropertySettingsClass,
|
|
25424
|
+
StructuredPropertyKeyClass,
|
|
25425
|
+
StructuredPropertiesClass,
|
|
25426
|
+
RolePropertiesClass,
|
|
25427
|
+
ActorsClass,
|
|
25428
|
+
DashboardUsageStatisticsClass,
|
|
25429
|
+
EditableDashboardPropertiesClass,
|
|
25430
|
+
DashboardInfoClass,
|
|
25431
|
+
OwnershipTypeInfoClass,
|
|
25432
|
+
GlossaryRelatedTermsClass,
|
|
25433
|
+
GlossaryNodeInfoClass,
|
|
25434
|
+
GlossaryTermInfoClass,
|
|
25276
25435
|
DataHubPersonaInfoClass,
|
|
25436
|
+
SchemaFieldAliasesClass,
|
|
25437
|
+
SchemaFieldInfoClass,
|
|
25438
|
+
DataHubIngestionSourceInfoClass,
|
|
25439
|
+
DataHubRetentionConfigClass,
|
|
25440
|
+
DataPlatformInfoClass,
|
|
25441
|
+
PostInfoClass,
|
|
25442
|
+
EditableChartPropertiesClass,
|
|
25443
|
+
ChartInfoClass,
|
|
25444
|
+
ChartUsageStatisticsClass,
|
|
25445
|
+
ChartQueryClass,
|
|
25446
|
+
FormInfoClass,
|
|
25447
|
+
DynamicFormAssignmentClass,
|
|
25448
|
+
QueryPropertiesClass,
|
|
25449
|
+
QuerySubjectsClass,
|
|
25450
|
+
QueryUsageStatisticsClass,
|
|
25451
|
+
ExecutionRequestResultClass,
|
|
25452
|
+
ExecutionRequestSignalClass,
|
|
25453
|
+
ExecutionRequestInputClass,
|
|
25454
|
+
DataTypeKeyClass,
|
|
25455
|
+
DataTypeInfoClass,
|
|
25456
|
+
DataProcessInstanceInputClass,
|
|
25457
|
+
DataProcessInstanceRunEventClass,
|
|
25458
|
+
DataProcessInstanceOutputClass,
|
|
25459
|
+
DataProcessInstancePropertiesClass,
|
|
25460
|
+
DataProcessInstanceRelationshipsClass,
|
|
25461
|
+
DataProcessInfoClass,
|
|
25462
|
+
DataHubRoleInfoClass,
|
|
25463
|
+
DataHubPolicyInfoClass,
|
|
25464
|
+
MLModelDeploymentPropertiesClass,
|
|
25465
|
+
MLFeatureTablePropertiesClass,
|
|
25466
|
+
TrainingDataClass,
|
|
25467
|
+
IntendedUseClass,
|
|
25468
|
+
EditableMLFeaturePropertiesClass,
|
|
25469
|
+
EvaluationDataClass,
|
|
25470
|
+
MLMetricClass,
|
|
25471
|
+
MLFeaturePropertiesClass,
|
|
25472
|
+
EditableMLFeatureTablePropertiesClass,
|
|
25473
|
+
MetricsClass,
|
|
25474
|
+
EditableMLPrimaryKeyPropertiesClass,
|
|
25475
|
+
SourceCodeClass,
|
|
25476
|
+
EthicalConsiderationsClass,
|
|
25477
|
+
MLPrimaryKeyPropertiesClass,
|
|
25478
|
+
MLModelFactorPromptsClass,
|
|
25479
|
+
EditableMLModelGroupPropertiesClass,
|
|
25480
|
+
MLModelPropertiesClass,
|
|
25481
|
+
CaveatsAndRecommendationsClass,
|
|
25482
|
+
MLHyperParamClass,
|
|
25483
|
+
QuantitativeAnalysesClass,
|
|
25484
|
+
MLModelGroupPropertiesClass,
|
|
25485
|
+
EditableMLModelPropertiesClass,
|
|
25486
|
+
IncidentSourceClass,
|
|
25487
|
+
IncidentInfoClass,
|
|
25488
|
+
DataHubConnectionDetailsClass,
|
|
25489
|
+
DataContractPropertiesClass,
|
|
25490
|
+
DataContractStatusClass,
|
|
25491
|
+
DataHubStepStatePropertiesClass,
|
|
25492
|
+
AssertionRunEventClass,
|
|
25493
|
+
AssertionInfoClass,
|
|
25494
|
+
AssertionActionsClass,
|
|
25277
25495
|
TelemetryClientIdClass,
|
|
25278
|
-
|
|
25279
|
-
|
|
25280
|
-
|
|
25281
|
-
|
|
25496
|
+
DataHubSecretValueClass,
|
|
25497
|
+
DataHubUpgradeRequestClass,
|
|
25498
|
+
DataHubUpgradeResultClass,
|
|
25499
|
+
CorpGroupKeyClass,
|
|
25500
|
+
GlobalSettingsKeyClass,
|
|
25501
|
+
SchemaFieldKeyClass,
|
|
25502
|
+
DataHubStepStateKeyClass,
|
|
25503
|
+
CorpUserKeyClass,
|
|
25282
25504
|
DataHubConnectionKeyClass,
|
|
25505
|
+
DashboardKeyClass,
|
|
25283
25506
|
DataHubRoleKeyClass,
|
|
25284
|
-
|
|
25285
|
-
|
|
25507
|
+
ExecutionRequestKeyClass,
|
|
25508
|
+
DataProcessInstanceKeyClass,
|
|
25509
|
+
DataJobKeyClass,
|
|
25510
|
+
DataFlowKeyClass,
|
|
25511
|
+
DataPlatformKeyClass,
|
|
25512
|
+
TagKeyClass,
|
|
25286
25513
|
NotebookKeyClass,
|
|
25287
|
-
|
|
25288
|
-
DataPlatformInstanceKeyClass,
|
|
25289
|
-
RoleKeyClass,
|
|
25290
|
-
ChartKeyClass,
|
|
25514
|
+
DataHubAccessTokenKeyClass,
|
|
25291
25515
|
ERModelRelationshipKeyClass,
|
|
25516
|
+
OwnershipTypeKeyClass,
|
|
25292
25517
|
QueryKeyClass,
|
|
25518
|
+
AssertionKeyClass,
|
|
25293
25519
|
DataContractKeyClass,
|
|
25520
|
+
DataHubPolicyKeyClass,
|
|
25521
|
+
DataHubActionKeyClass,
|
|
25294
25522
|
ContainerKeyClass,
|
|
25295
|
-
|
|
25523
|
+
DataProcessKeyClass,
|
|
25524
|
+
DataHubViewKeyClass,
|
|
25525
|
+
DataPlatformInstanceKeyClass,
|
|
25526
|
+
RoleKeyClass,
|
|
25527
|
+
FormKeyClass,
|
|
25528
|
+
MLFeatureKeyClass,
|
|
25296
25529
|
PostKeyClass,
|
|
25297
|
-
|
|
25298
|
-
|
|
25299
|
-
|
|
25300
|
-
AssertionKeyClass,
|
|
25301
|
-
DataJobKeyClass,
|
|
25302
|
-
ExecutionRequestKeyClass,
|
|
25303
|
-
TestKeyClass,
|
|
25530
|
+
DatasetKeyClass,
|
|
25531
|
+
MLModelKeyClass,
|
|
25532
|
+
MLPrimaryKeyKeyClass,
|
|
25304
25533
|
MLModelDeploymentKeyClass,
|
|
25305
|
-
MLModelGroupKeyClass,
|
|
25306
|
-
SchemaFieldKeyClass,
|
|
25307
|
-
CorpGroupKeyClass,
|
|
25308
|
-
DataHubUpgradeKeyClass,
|
|
25309
|
-
GlobalSettingsKeyClass,
|
|
25310
25534
|
MLFeatureTableKeyClass,
|
|
25535
|
+
DataHubUpgradeKeyClass,
|
|
25536
|
+
GlossaryNodeKeyClass,
|
|
25311
25537
|
DataHubPersonaKeyClass,
|
|
25312
|
-
|
|
25313
|
-
|
|
25314
|
-
|
|
25538
|
+
DataHubSecretKeyClass,
|
|
25539
|
+
DataHubIngestionSourceKeyClass,
|
|
25540
|
+
DataHubRetentionKeyClass,
|
|
25541
|
+
TestKeyClass,
|
|
25542
|
+
ChartKeyClass,
|
|
25543
|
+
MLModelGroupKeyClass,
|
|
25544
|
+
TelemetryKeyClass,
|
|
25545
|
+
DomainKeyClass,
|
|
25315
25546
|
IncidentKeyClass,
|
|
25316
|
-
DataProcessInstanceKeyClass,
|
|
25317
|
-
DataProcessKeyClass,
|
|
25318
|
-
DataFlowKeyClass,
|
|
25319
|
-
MLPrimaryKeyKeyClass,
|
|
25320
|
-
DataHubAccessTokenKeyClass,
|
|
25321
|
-
DataPlatformKeyClass,
|
|
25322
25547
|
GlossaryTermKeyClass,
|
|
25323
|
-
DatasetKeyClass,
|
|
25324
|
-
DashboardKeyClass,
|
|
25325
|
-
DataHubViewKeyClass,
|
|
25326
25548
|
InviteTokenKeyClass,
|
|
25327
|
-
|
|
25328
|
-
|
|
25329
|
-
|
|
25330
|
-
|
|
25331
|
-
|
|
25332
|
-
|
|
25333
|
-
|
|
25334
|
-
|
|
25335
|
-
|
|
25336
|
-
|
|
25337
|
-
|
|
25338
|
-
|
|
25339
|
-
|
|
25340
|
-
|
|
25341
|
-
|
|
25342
|
-
|
|
25343
|
-
|
|
25344
|
-
GlossaryRelatedTermsClass,
|
|
25345
|
-
OwnershipTypeInfoClass,
|
|
25346
|
-
AssertionRunEventClass,
|
|
25347
|
-
AssertionActionsClass,
|
|
25348
|
-
AssertionInfoClass,
|
|
25349
|
-
BrowsePathsV2Class,
|
|
25350
|
-
InputFieldsClass,
|
|
25351
|
-
AccessClass,
|
|
25352
|
-
OperationClass,
|
|
25353
|
-
DocumentationClass,
|
|
25354
|
-
FormsClass,
|
|
25355
|
-
OriginClass,
|
|
25356
|
-
DataPlatformInstanceClass,
|
|
25357
|
-
GlobalTagsClass,
|
|
25358
|
-
DeprecationClass,
|
|
25359
|
-
CostClass,
|
|
25360
|
-
StatusClass,
|
|
25361
|
-
GlossaryTermsClass,
|
|
25362
|
-
SubTypesClass,
|
|
25363
|
-
BrowsePathsClass,
|
|
25364
|
-
IncidentsSummaryClass,
|
|
25365
|
-
EmbedClass,
|
|
25366
|
-
SiblingsClass,
|
|
25367
|
-
InstitutionalMemoryClass,
|
|
25368
|
-
OwnershipClass,
|
|
25369
|
-
DataTypeInfoClass,
|
|
25370
|
-
DataTypeKeyClass,
|
|
25371
|
-
RolePropertiesClass,
|
|
25372
|
-
ActorsClass,
|
|
25373
|
-
DataHubIngestionSourceInfoClass,
|
|
25374
|
-
SchemaFieldAliasesClass,
|
|
25375
|
-
SchemaFieldInfoClass,
|
|
25376
|
-
BusinessAttributesClass,
|
|
25377
|
-
BusinessAttributeInfoClass,
|
|
25378
|
-
BusinessAttributeKeyClass,
|
|
25379
|
-
PostInfoClass,
|
|
25380
|
-
DataHubStepStatePropertiesClass,
|
|
25381
|
-
EditableDatasetPropertiesClass,
|
|
25549
|
+
CorpUserStatusClass,
|
|
25550
|
+
InviteTokenClass,
|
|
25551
|
+
CorpUserSettingsClass,
|
|
25552
|
+
CorpUserEditableInfoClass,
|
|
25553
|
+
RoleMembershipClass,
|
|
25554
|
+
CorpGroupInfoClass,
|
|
25555
|
+
CorpUserInfoClass,
|
|
25556
|
+
CorpGroupEditableInfoClass,
|
|
25557
|
+
NativeGroupMembershipClass,
|
|
25558
|
+
CorpUserCredentialsClass,
|
|
25559
|
+
GroupMembershipClass,
|
|
25560
|
+
DomainsClass,
|
|
25561
|
+
DomainPropertiesClass,
|
|
25562
|
+
PlatformResourceInfoClass,
|
|
25563
|
+
PlatformResourceKeyClass,
|
|
25564
|
+
EntityTypeInfoClass,
|
|
25565
|
+
EntityTypeKeyClass,
|
|
25382
25566
|
DatasetPropertiesClass,
|
|
25383
25567
|
DatasetProfileClass,
|
|
25384
25568
|
PartitionsSummaryClass,
|
|
25385
25569
|
DatasetUsageStatisticsClass,
|
|
25386
25570
|
UpstreamLineageClass,
|
|
25387
|
-
DatasetDeprecationClass,
|
|
25388
25571
|
DatasetUpstreamLineageClass,
|
|
25572
|
+
DatasetDeprecationClass,
|
|
25389
25573
|
ViewPropertiesClass,
|
|
25390
|
-
|
|
25391
|
-
|
|
25392
|
-
|
|
25393
|
-
|
|
25394
|
-
|
|
25574
|
+
EditableDatasetPropertiesClass,
|
|
25575
|
+
TestInfoClass,
|
|
25576
|
+
TestResultsClass,
|
|
25577
|
+
ContainerClass,
|
|
25578
|
+
EditableContainerPropertiesClass,
|
|
25579
|
+
ContainerPropertiesClass,
|
|
25580
|
+
DataProductPropertiesClass,
|
|
25581
|
+
DataProductKeyClass,
|
|
25582
|
+
BusinessAttributesClass,
|
|
25583
|
+
BusinessAttributeInfoClass,
|
|
25584
|
+
BusinessAttributeKeyClass,
|
|
25585
|
+
NotebookContentClass,
|
|
25586
|
+
EditableNotebookPropertiesClass,
|
|
25587
|
+
NotebookInfoClass,
|
|
25588
|
+
DataHubViewInfoClass,
|
|
25589
|
+
VersionInfoClass,
|
|
25590
|
+
EditableDataJobPropertiesClass,
|
|
25395
25591
|
DataFlowInfoClass,
|
|
25396
25592
|
EditableDataFlowPropertiesClass,
|
|
25397
|
-
DataJobInputOutputClass,
|
|
25398
|
-
VersionInfoClass,
|
|
25399
25593
|
DataJobInfoClass,
|
|
25400
|
-
|
|
25594
|
+
DataJobInputOutputClass,
|
|
25401
25595
|
DatahubIngestionCheckpointClass,
|
|
25402
|
-
DatahubIngestionRunSummaryClass
|
|
25403
|
-
TagPropertiesClass,
|
|
25404
|
-
NotebookContentClass,
|
|
25405
|
-
NotebookInfoClass,
|
|
25406
|
-
EditableNotebookPropertiesClass,
|
|
25407
|
-
DataPlatformInfoClass,
|
|
25408
|
-
DataProcessInstanceOutputClass,
|
|
25409
|
-
DataProcessInfoClass,
|
|
25410
|
-
DataProcessInstanceRelationshipsClass,
|
|
25411
|
-
DataProcessInstancePropertiesClass,
|
|
25412
|
-
DataProcessInstanceRunEventClass,
|
|
25413
|
-
DataProcessInstanceInputClass,
|
|
25414
|
-
DataHubUpgradeResultClass,
|
|
25415
|
-
DataHubUpgradeRequestClass,
|
|
25416
|
-
GroupMembershipClass,
|
|
25417
|
-
CorpUserEditableInfoClass,
|
|
25418
|
-
InviteTokenClass,
|
|
25419
|
-
CorpGroupEditableInfoClass,
|
|
25420
|
-
NativeGroupMembershipClass,
|
|
25421
|
-
CorpUserStatusClass,
|
|
25422
|
-
CorpUserInfoClass,
|
|
25423
|
-
RoleMembershipClass,
|
|
25424
|
-
CorpUserCredentialsClass,
|
|
25425
|
-
CorpUserSettingsClass,
|
|
25426
|
-
CorpGroupInfoClass,
|
|
25427
|
-
DataProductPropertiesClass,
|
|
25428
|
-
DataProductKeyClass,
|
|
25429
|
-
EntityTypeInfoClass,
|
|
25430
|
-
EntityTypeKeyClass,
|
|
25431
|
-
ChartQueryClass,
|
|
25432
|
-
ChartUsageStatisticsClass,
|
|
25433
|
-
EditableChartPropertiesClass,
|
|
25434
|
-
ChartInfoClass,
|
|
25435
|
-
ERModelRelationshipPropertiesClass,
|
|
25436
|
-
EditableERModelRelationshipPropertiesClass,
|
|
25437
|
-
EditableMLPrimaryKeyPropertiesClass,
|
|
25438
|
-
TrainingDataClass,
|
|
25439
|
-
MLPrimaryKeyPropertiesClass,
|
|
25440
|
-
MLModelFactorPromptsClass,
|
|
25441
|
-
CaveatsAndRecommendationsClass,
|
|
25442
|
-
SourceCodeClass,
|
|
25443
|
-
EditableMLModelPropertiesClass,
|
|
25444
|
-
EvaluationDataClass,
|
|
25445
|
-
MLModelPropertiesClass,
|
|
25446
|
-
QuantitativeAnalysesClass,
|
|
25447
|
-
MLModelGroupPropertiesClass,
|
|
25448
|
-
MLFeatureTablePropertiesClass,
|
|
25449
|
-
EditableMLFeatureTablePropertiesClass,
|
|
25450
|
-
EditableMLFeaturePropertiesClass,
|
|
25451
|
-
EditableMLModelGroupPropertiesClass,
|
|
25452
|
-
MLModelDeploymentPropertiesClass,
|
|
25453
|
-
MLFeaturePropertiesClass,
|
|
25454
|
-
MLMetricClass,
|
|
25455
|
-
IntendedUseClass,
|
|
25456
|
-
MLHyperParamClass,
|
|
25457
|
-
MetricsClass,
|
|
25458
|
-
EthicalConsiderationsClass,
|
|
25459
|
-
EditableContainerPropertiesClass,
|
|
25460
|
-
ContainerClass,
|
|
25461
|
-
ContainerPropertiesClass,
|
|
25462
|
-
ExecutionRequestSignalClass,
|
|
25463
|
-
ExecutionRequestResultClass,
|
|
25464
|
-
ExecutionRequestInputClass,
|
|
25465
|
-
DynamicFormAssignmentClass,
|
|
25466
|
-
FormInfoClass,
|
|
25467
|
-
DataHubSecretValueClass,
|
|
25468
|
-
DataHubPolicyInfoClass,
|
|
25469
|
-
DataHubRoleInfoClass,
|
|
25470
|
-
SchemaMetadataClass,
|
|
25471
|
-
EditableSchemaMetadataClass,
|
|
25472
|
-
PlatformResourceInfoClass,
|
|
25473
|
-
PlatformResourceKeyClass,
|
|
25474
|
-
DataHubConnectionDetailsClass,
|
|
25475
|
-
DataPlatformInstancePropertiesClass,
|
|
25476
|
-
DataContractStatusClass,
|
|
25477
|
-
DataContractPropertiesClass
|
|
25596
|
+
DatahubIngestionRunSummaryClass
|
|
25478
25597
|
]
|
|
25479
25598
|
|
|
25480
25599
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -25485,267 +25604,268 @@ ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
|
25485
25604
|
from typing_extensions import TypedDict
|
|
25486
25605
|
|
|
25487
25606
|
class AspectBag(TypedDict, total=False):
|
|
25607
|
+
tagProperties: TagPropertiesClass
|
|
25608
|
+
status: StatusClass
|
|
25609
|
+
incidentsSummary: IncidentsSummaryClass
|
|
25610
|
+
cost: CostClass
|
|
25611
|
+
browsePaths: BrowsePathsClass
|
|
25612
|
+
institutionalMemory: InstitutionalMemoryClass
|
|
25613
|
+
subTypes: SubTypesClass
|
|
25614
|
+
forms: FormsClass
|
|
25615
|
+
deprecation: DeprecationClass
|
|
25616
|
+
globalTags: GlobalTagsClass
|
|
25617
|
+
embed: EmbedClass
|
|
25618
|
+
operation: OperationClass
|
|
25619
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
25620
|
+
glossaryTerms: GlossaryTermsClass
|
|
25621
|
+
siblings: SiblingsClass
|
|
25622
|
+
inputFields: InputFieldsClass
|
|
25623
|
+
ownership: OwnershipClass
|
|
25624
|
+
documentation: DocumentationClass
|
|
25625
|
+
browsePathsV2: BrowsePathsV2Class
|
|
25626
|
+
origin: OriginClass
|
|
25627
|
+
access: AccessClass
|
|
25628
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
25629
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
25630
|
+
schemaMetadata: SchemaMetadataClass
|
|
25631
|
+
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
25632
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
25633
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
25634
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
25635
|
+
propertyDefinition: StructuredPropertyDefinitionClass
|
|
25636
|
+
structuredPropertySettings: StructuredPropertySettingsClass
|
|
25637
|
+
structuredPropertyKey: StructuredPropertyKeyClass
|
|
25638
|
+
structuredProperties: StructuredPropertiesClass
|
|
25639
|
+
roleProperties: RolePropertiesClass
|
|
25640
|
+
actors: ActorsClass
|
|
25641
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
25642
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
25643
|
+
dashboardInfo: DashboardInfoClass
|
|
25644
|
+
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
25645
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
25646
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
25647
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
25488
25648
|
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
25649
|
+
schemaFieldAliases: SchemaFieldAliasesClass
|
|
25650
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
25651
|
+
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
25652
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
25653
|
+
dataPlatformInfo: DataPlatformInfoClass
|
|
25654
|
+
postInfo: PostInfoClass
|
|
25655
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
25656
|
+
chartInfo: ChartInfoClass
|
|
25657
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
25658
|
+
chartQuery: ChartQueryClass
|
|
25659
|
+
formInfo: FormInfoClass
|
|
25660
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
25661
|
+
queryProperties: QueryPropertiesClass
|
|
25662
|
+
querySubjects: QuerySubjectsClass
|
|
25663
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
25664
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
25665
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
25666
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
25667
|
+
dataTypeKey: DataTypeKeyClass
|
|
25668
|
+
dataTypeInfo: DataTypeInfoClass
|
|
25669
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
25670
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
25671
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
25672
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
25673
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
25674
|
+
dataProcessInfo: DataProcessInfoClass
|
|
25675
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
25676
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
25677
|
+
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
25678
|
+
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
25679
|
+
mlModelTrainingData: TrainingDataClass
|
|
25680
|
+
intendedUse: IntendedUseClass
|
|
25681
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
25682
|
+
mlModelEvaluationData: EvaluationDataClass
|
|
25683
|
+
mlMetric: MLMetricClass
|
|
25684
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
25685
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
25686
|
+
mlModelMetrics: MetricsClass
|
|
25687
|
+
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
25688
|
+
sourceCode: SourceCodeClass
|
|
25689
|
+
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
25690
|
+
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
25691
|
+
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
25692
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
25693
|
+
mlModelProperties: MLModelPropertiesClass
|
|
25694
|
+
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
25695
|
+
mlHyperParam: MLHyperParamClass
|
|
25696
|
+
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
25697
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
25698
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
25699
|
+
incidentSource: IncidentSourceClass
|
|
25700
|
+
incidentInfo: IncidentInfoClass
|
|
25701
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
25702
|
+
dataContractProperties: DataContractPropertiesClass
|
|
25703
|
+
dataContractStatus: DataContractStatusClass
|
|
25704
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
25705
|
+
assertionRunEvent: AssertionRunEventClass
|
|
25706
|
+
assertionInfo: AssertionInfoClass
|
|
25707
|
+
assertionActions: AssertionActionsClass
|
|
25489
25708
|
telemetryClientId: TelemetryClientIdClass
|
|
25490
|
-
|
|
25491
|
-
|
|
25492
|
-
|
|
25493
|
-
|
|
25709
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
25710
|
+
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
25711
|
+
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
25712
|
+
corpGroupKey: CorpGroupKeyClass
|
|
25713
|
+
globalSettingsKey: GlobalSettingsKeyClass
|
|
25714
|
+
schemaFieldKey: SchemaFieldKeyClass
|
|
25715
|
+
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
25716
|
+
corpUserKey: CorpUserKeyClass
|
|
25494
25717
|
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
25718
|
+
dashboardKey: DashboardKeyClass
|
|
25495
25719
|
dataHubRoleKey: DataHubRoleKeyClass
|
|
25496
|
-
|
|
25497
|
-
|
|
25720
|
+
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
25721
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
25722
|
+
dataJobKey: DataJobKeyClass
|
|
25723
|
+
dataFlowKey: DataFlowKeyClass
|
|
25724
|
+
dataPlatformKey: DataPlatformKeyClass
|
|
25725
|
+
tagKey: TagKeyClass
|
|
25498
25726
|
notebookKey: NotebookKeyClass
|
|
25499
|
-
|
|
25500
|
-
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
25501
|
-
roleKey: RoleKeyClass
|
|
25502
|
-
chartKey: ChartKeyClass
|
|
25727
|
+
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
25503
25728
|
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
25729
|
+
ownershipTypeKey: OwnershipTypeKeyClass
|
|
25504
25730
|
queryKey: QueryKeyClass
|
|
25731
|
+
assertionKey: AssertionKeyClass
|
|
25505
25732
|
dataContractKey: DataContractKeyClass
|
|
25733
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
25734
|
+
dataHubActionKey: DataHubActionKeyClass
|
|
25506
25735
|
containerKey: ContainerKeyClass
|
|
25507
|
-
|
|
25736
|
+
dataProcessKey: DataProcessKeyClass
|
|
25737
|
+
dataHubViewKey: DataHubViewKeyClass
|
|
25738
|
+
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
25739
|
+
roleKey: RoleKeyClass
|
|
25740
|
+
formKey: FormKeyClass
|
|
25741
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
25508
25742
|
postKey: PostKeyClass
|
|
25509
|
-
|
|
25510
|
-
|
|
25511
|
-
|
|
25512
|
-
assertionKey: AssertionKeyClass
|
|
25513
|
-
dataJobKey: DataJobKeyClass
|
|
25514
|
-
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
25515
|
-
testKey: TestKeyClass
|
|
25743
|
+
datasetKey: DatasetKeyClass
|
|
25744
|
+
mlModelKey: MLModelKeyClass
|
|
25745
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
25516
25746
|
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
25517
|
-
mlModelGroupKey: MLModelGroupKeyClass
|
|
25518
|
-
schemaFieldKey: SchemaFieldKeyClass
|
|
25519
|
-
corpGroupKey: CorpGroupKeyClass
|
|
25520
|
-
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
25521
|
-
globalSettingsKey: GlobalSettingsKeyClass
|
|
25522
25747
|
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
25748
|
+
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
25749
|
+
glossaryNodeKey: GlossaryNodeKeyClass
|
|
25523
25750
|
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
25524
|
-
|
|
25525
|
-
|
|
25526
|
-
|
|
25751
|
+
dataHubSecretKey: DataHubSecretKeyClass
|
|
25752
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
25753
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
25754
|
+
testKey: TestKeyClass
|
|
25755
|
+
chartKey: ChartKeyClass
|
|
25756
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
25757
|
+
telemetryKey: TelemetryKeyClass
|
|
25758
|
+
domainKey: DomainKeyClass
|
|
25527
25759
|
incidentKey: IncidentKeyClass
|
|
25528
|
-
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
25529
|
-
dataProcessKey: DataProcessKeyClass
|
|
25530
|
-
dataFlowKey: DataFlowKeyClass
|
|
25531
|
-
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
25532
|
-
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
25533
|
-
dataPlatformKey: DataPlatformKeyClass
|
|
25534
25760
|
glossaryTermKey: GlossaryTermKeyClass
|
|
25535
|
-
datasetKey: DatasetKeyClass
|
|
25536
|
-
dashboardKey: DashboardKeyClass
|
|
25537
|
-
dataHubViewKey: DataHubViewKeyClass
|
|
25538
25761
|
inviteTokenKey: InviteTokenKeyClass
|
|
25539
|
-
|
|
25540
|
-
|
|
25541
|
-
|
|
25542
|
-
|
|
25543
|
-
|
|
25544
|
-
|
|
25545
|
-
|
|
25546
|
-
|
|
25547
|
-
|
|
25548
|
-
|
|
25549
|
-
|
|
25550
|
-
|
|
25551
|
-
|
|
25552
|
-
|
|
25553
|
-
|
|
25554
|
-
|
|
25555
|
-
|
|
25556
|
-
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
25557
|
-
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
25558
|
-
assertionRunEvent: AssertionRunEventClass
|
|
25559
|
-
assertionActions: AssertionActionsClass
|
|
25560
|
-
assertionInfo: AssertionInfoClass
|
|
25561
|
-
browsePathsV2: BrowsePathsV2Class
|
|
25562
|
-
inputFields: InputFieldsClass
|
|
25563
|
-
access: AccessClass
|
|
25564
|
-
operation: OperationClass
|
|
25565
|
-
documentation: DocumentationClass
|
|
25566
|
-
forms: FormsClass
|
|
25567
|
-
origin: OriginClass
|
|
25568
|
-
dataPlatformInstance: DataPlatformInstanceClass
|
|
25569
|
-
globalTags: GlobalTagsClass
|
|
25570
|
-
deprecation: DeprecationClass
|
|
25571
|
-
cost: CostClass
|
|
25572
|
-
status: StatusClass
|
|
25573
|
-
glossaryTerms: GlossaryTermsClass
|
|
25574
|
-
subTypes: SubTypesClass
|
|
25575
|
-
browsePaths: BrowsePathsClass
|
|
25576
|
-
incidentsSummary: IncidentsSummaryClass
|
|
25577
|
-
embed: EmbedClass
|
|
25578
|
-
siblings: SiblingsClass
|
|
25579
|
-
institutionalMemory: InstitutionalMemoryClass
|
|
25580
|
-
ownership: OwnershipClass
|
|
25581
|
-
dataTypeInfo: DataTypeInfoClass
|
|
25582
|
-
dataTypeKey: DataTypeKeyClass
|
|
25583
|
-
roleProperties: RolePropertiesClass
|
|
25584
|
-
actors: ActorsClass
|
|
25585
|
-
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
25586
|
-
schemaFieldAliases: SchemaFieldAliasesClass
|
|
25587
|
-
schemafieldInfo: SchemaFieldInfoClass
|
|
25588
|
-
businessAttributes: BusinessAttributesClass
|
|
25589
|
-
businessAttributeInfo: BusinessAttributeInfoClass
|
|
25590
|
-
businessAttributeKey: BusinessAttributeKeyClass
|
|
25591
|
-
postInfo: PostInfoClass
|
|
25592
|
-
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
25593
|
-
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
25762
|
+
corpUserStatus: CorpUserStatusClass
|
|
25763
|
+
inviteToken: InviteTokenClass
|
|
25764
|
+
corpUserSettings: CorpUserSettingsClass
|
|
25765
|
+
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
25766
|
+
roleMembership: RoleMembershipClass
|
|
25767
|
+
corpGroupInfo: CorpGroupInfoClass
|
|
25768
|
+
corpUserInfo: CorpUserInfoClass
|
|
25769
|
+
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
25770
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
25771
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
25772
|
+
groupMembership: GroupMembershipClass
|
|
25773
|
+
domains: DomainsClass
|
|
25774
|
+
domainProperties: DomainPropertiesClass
|
|
25775
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
25776
|
+
platformResourceKey: PlatformResourceKeyClass
|
|
25777
|
+
entityTypeInfo: EntityTypeInfoClass
|
|
25778
|
+
entityTypeKey: EntityTypeKeyClass
|
|
25594
25779
|
datasetProperties: DatasetPropertiesClass
|
|
25595
25780
|
datasetProfile: DatasetProfileClass
|
|
25596
25781
|
partitionsSummary: PartitionsSummaryClass
|
|
25597
25782
|
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
25598
25783
|
upstreamLineage: UpstreamLineageClass
|
|
25599
|
-
datasetDeprecation: DatasetDeprecationClass
|
|
25600
25784
|
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
25785
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
25601
25786
|
viewProperties: ViewPropertiesClass
|
|
25602
|
-
|
|
25603
|
-
|
|
25604
|
-
|
|
25605
|
-
|
|
25606
|
-
|
|
25787
|
+
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
25788
|
+
testInfo: TestInfoClass
|
|
25789
|
+
testResults: TestResultsClass
|
|
25790
|
+
container: ContainerClass
|
|
25791
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
25792
|
+
containerProperties: ContainerPropertiesClass
|
|
25793
|
+
dataProductProperties: DataProductPropertiesClass
|
|
25794
|
+
dataProductKey: DataProductKeyClass
|
|
25795
|
+
businessAttributes: BusinessAttributesClass
|
|
25796
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
25797
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
25798
|
+
notebookContent: NotebookContentClass
|
|
25799
|
+
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
25800
|
+
notebookInfo: NotebookInfoClass
|
|
25801
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
25802
|
+
versionInfo: VersionInfoClass
|
|
25803
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
25607
25804
|
dataFlowInfo: DataFlowInfoClass
|
|
25608
25805
|
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
25609
|
-
dataJobInputOutput: DataJobInputOutputClass
|
|
25610
|
-
versionInfo: VersionInfoClass
|
|
25611
25806
|
dataJobInfo: DataJobInfoClass
|
|
25612
|
-
|
|
25807
|
+
dataJobInputOutput: DataJobInputOutputClass
|
|
25613
25808
|
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
25614
25809
|
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
25615
|
-
tagProperties: TagPropertiesClass
|
|
25616
|
-
notebookContent: NotebookContentClass
|
|
25617
|
-
notebookInfo: NotebookInfoClass
|
|
25618
|
-
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
25619
|
-
dataPlatformInfo: DataPlatformInfoClass
|
|
25620
|
-
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
25621
|
-
dataProcessInfo: DataProcessInfoClass
|
|
25622
|
-
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
25623
|
-
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
25624
|
-
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
25625
|
-
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
25626
|
-
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
25627
|
-
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
25628
|
-
groupMembership: GroupMembershipClass
|
|
25629
|
-
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
25630
|
-
inviteToken: InviteTokenClass
|
|
25631
|
-
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
25632
|
-
nativeGroupMembership: NativeGroupMembershipClass
|
|
25633
|
-
corpUserStatus: CorpUserStatusClass
|
|
25634
|
-
corpUserInfo: CorpUserInfoClass
|
|
25635
|
-
roleMembership: RoleMembershipClass
|
|
25636
|
-
corpUserCredentials: CorpUserCredentialsClass
|
|
25637
|
-
corpUserSettings: CorpUserSettingsClass
|
|
25638
|
-
corpGroupInfo: CorpGroupInfoClass
|
|
25639
|
-
dataProductProperties: DataProductPropertiesClass
|
|
25640
|
-
dataProductKey: DataProductKeyClass
|
|
25641
|
-
entityTypeInfo: EntityTypeInfoClass
|
|
25642
|
-
entityTypeKey: EntityTypeKeyClass
|
|
25643
|
-
chartQuery: ChartQueryClass
|
|
25644
|
-
chartUsageStatistics: ChartUsageStatisticsClass
|
|
25645
|
-
editableChartProperties: EditableChartPropertiesClass
|
|
25646
|
-
chartInfo: ChartInfoClass
|
|
25647
|
-
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
25648
|
-
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
25649
|
-
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
25650
|
-
mlModelTrainingData: TrainingDataClass
|
|
25651
|
-
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
25652
|
-
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
25653
|
-
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
25654
|
-
sourceCode: SourceCodeClass
|
|
25655
|
-
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
25656
|
-
mlModelEvaluationData: EvaluationDataClass
|
|
25657
|
-
mlModelProperties: MLModelPropertiesClass
|
|
25658
|
-
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
25659
|
-
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
25660
|
-
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
25661
|
-
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
25662
|
-
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
25663
|
-
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
25664
|
-
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
25665
|
-
mlFeatureProperties: MLFeaturePropertiesClass
|
|
25666
|
-
mlMetric: MLMetricClass
|
|
25667
|
-
intendedUse: IntendedUseClass
|
|
25668
|
-
mlHyperParam: MLHyperParamClass
|
|
25669
|
-
mlModelMetrics: MetricsClass
|
|
25670
|
-
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
25671
|
-
editableContainerProperties: EditableContainerPropertiesClass
|
|
25672
|
-
container: ContainerClass
|
|
25673
|
-
containerProperties: ContainerPropertiesClass
|
|
25674
|
-
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
25675
|
-
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
25676
|
-
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
25677
|
-
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
25678
|
-
formInfo: FormInfoClass
|
|
25679
|
-
dataHubSecretValue: DataHubSecretValueClass
|
|
25680
|
-
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
25681
|
-
dataHubRoleInfo: DataHubRoleInfoClass
|
|
25682
|
-
schemaMetadata: SchemaMetadataClass
|
|
25683
|
-
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
25684
|
-
platformResourceInfo: PlatformResourceInfoClass
|
|
25685
|
-
platformResourceKey: PlatformResourceKeyClass
|
|
25686
|
-
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
25687
|
-
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
25688
|
-
dataContractStatus: DataContractStatusClass
|
|
25689
|
-
dataContractProperties: DataContractPropertiesClass
|
|
25690
25810
|
|
|
25691
25811
|
|
|
25692
25812
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
25813
|
+
'structuredProperty': StructuredPropertyKeyClass,
|
|
25814
|
+
'dataType': DataTypeKeyClass,
|
|
25815
|
+
'corpGroup': CorpGroupKeyClass,
|
|
25816
|
+
'globalSettings': GlobalSettingsKeyClass,
|
|
25817
|
+
'schemaField': SchemaFieldKeyClass,
|
|
25818
|
+
'dataHubStepState': DataHubStepStateKeyClass,
|
|
25819
|
+
'corpuser': CorpUserKeyClass,
|
|
25693
25820
|
'dataHubConnection': DataHubConnectionKeyClass,
|
|
25821
|
+
'dashboard': DashboardKeyClass,
|
|
25694
25822
|
'dataHubRole': DataHubRoleKeyClass,
|
|
25695
|
-
'
|
|
25696
|
-
'
|
|
25823
|
+
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
25824
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
25825
|
+
'dataJob': DataJobKeyClass,
|
|
25826
|
+
'dataFlow': DataFlowKeyClass,
|
|
25827
|
+
'dataPlatform': DataPlatformKeyClass,
|
|
25828
|
+
'tag': TagKeyClass,
|
|
25697
25829
|
'notebook': NotebookKeyClass,
|
|
25698
|
-
'
|
|
25699
|
-
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
25700
|
-
'role': RoleKeyClass,
|
|
25701
|
-
'chart': ChartKeyClass,
|
|
25830
|
+
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
25702
25831
|
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
25832
|
+
'ownershipType': OwnershipTypeKeyClass,
|
|
25703
25833
|
'query': QueryKeyClass,
|
|
25834
|
+
'assertion': AssertionKeyClass,
|
|
25704
25835
|
'dataContract': DataContractKeyClass,
|
|
25836
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
25837
|
+
'dataHubAction': DataHubActionKeyClass,
|
|
25705
25838
|
'container': ContainerKeyClass,
|
|
25706
|
-
'
|
|
25839
|
+
'dataProcess': DataProcessKeyClass,
|
|
25840
|
+
'dataHubView': DataHubViewKeyClass,
|
|
25841
|
+
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
25842
|
+
'role': RoleKeyClass,
|
|
25843
|
+
'form': FormKeyClass,
|
|
25844
|
+
'mlFeature': MLFeatureKeyClass,
|
|
25707
25845
|
'post': PostKeyClass,
|
|
25708
|
-
'
|
|
25709
|
-
'
|
|
25710
|
-
'
|
|
25711
|
-
'assertion': AssertionKeyClass,
|
|
25712
|
-
'dataJob': DataJobKeyClass,
|
|
25713
|
-
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
25714
|
-
'test': TestKeyClass,
|
|
25846
|
+
'dataset': DatasetKeyClass,
|
|
25847
|
+
'mlModel': MLModelKeyClass,
|
|
25848
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
25715
25849
|
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
25716
|
-
'mlModelGroup': MLModelGroupKeyClass,
|
|
25717
|
-
'schemaField': SchemaFieldKeyClass,
|
|
25718
|
-
'corpGroup': CorpGroupKeyClass,
|
|
25719
|
-
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
25720
|
-
'globalSettings': GlobalSettingsKeyClass,
|
|
25721
25850
|
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
25851
|
+
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
25852
|
+
'glossaryNode': GlossaryNodeKeyClass,
|
|
25722
25853
|
'dataHubPersona': DataHubPersonaKeyClass,
|
|
25723
|
-
'
|
|
25724
|
-
'
|
|
25725
|
-
'
|
|
25854
|
+
'dataHubSecret': DataHubSecretKeyClass,
|
|
25855
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
25856
|
+
'dataHubRetention': DataHubRetentionKeyClass,
|
|
25857
|
+
'test': TestKeyClass,
|
|
25858
|
+
'chart': ChartKeyClass,
|
|
25859
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
25860
|
+
'telemetry': TelemetryKeyClass,
|
|
25861
|
+
'domain': DomainKeyClass,
|
|
25726
25862
|
'incident': IncidentKeyClass,
|
|
25727
|
-
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
25728
|
-
'dataProcess': DataProcessKeyClass,
|
|
25729
|
-
'dataFlow': DataFlowKeyClass,
|
|
25730
|
-
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
25731
|
-
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
25732
|
-
'dataPlatform': DataPlatformKeyClass,
|
|
25733
25863
|
'glossaryTerm': GlossaryTermKeyClass,
|
|
25734
|
-
'dataset': DatasetKeyClass,
|
|
25735
|
-
'dashboard': DashboardKeyClass,
|
|
25736
|
-
'dataHubView': DataHubViewKeyClass,
|
|
25737
25864
|
'inviteToken': InviteTokenKeyClass,
|
|
25738
|
-
'
|
|
25739
|
-
'domain': DomainKeyClass,
|
|
25740
|
-
'dataHubAction': DataHubActionKeyClass,
|
|
25741
|
-
'telemetry': TelemetryKeyClass,
|
|
25742
|
-
'mlModel': MLModelKeyClass,
|
|
25743
|
-
'structuredProperty': StructuredPropertyKeyClass,
|
|
25744
|
-
'dataType': DataTypeKeyClass,
|
|
25745
|
-
'businessAttribute': BusinessAttributeKeyClass,
|
|
25746
|
-
'dataProduct': DataProductKeyClass,
|
|
25865
|
+
'platformResource': PlatformResourceKeyClass,
|
|
25747
25866
|
'entityType': EntityTypeKeyClass,
|
|
25748
|
-
'
|
|
25867
|
+
'dataProduct': DataProductKeyClass,
|
|
25868
|
+
'businessAttribute': BusinessAttributeKeyClass
|
|
25749
25869
|
}
|
|
25750
25870
|
|
|
25751
25871
|
# fmt: on
|