acryl-datahub 0.15.0.6rc3__py3-none-any.whl → 1.0.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.15.0.6rc3.dist-info → acryl_datahub-1.0.0.dist-info}/METADATA +2552 -2523
- {acryl_datahub-0.15.0.6rc3.dist-info → acryl_datahub-1.0.0.dist-info}/RECORD +204 -191
- {acryl_datahub-0.15.0.6rc3.dist-info → acryl_datahub-1.0.0.dist-info}/WHEEL +1 -1
- {acryl_datahub-0.15.0.6rc3.dist-info → acryl_datahub-1.0.0.dist-info}/entry_points.txt +1 -0
- datahub/_version.py +1 -1
- datahub/api/entities/common/serialized_value.py +4 -3
- datahub/api/entities/dataset/dataset.py +731 -42
- datahub/api/entities/structuredproperties/structuredproperties.py +2 -2
- datahub/cli/check_cli.py +72 -19
- datahub/cli/docker_cli.py +3 -3
- datahub/cli/iceberg_cli.py +1 -1
- datahub/cli/ingest_cli.py +30 -93
- datahub/cli/lite_cli.py +4 -2
- datahub/cli/specific/dataproduct_cli.py +1 -1
- datahub/cli/specific/dataset_cli.py +128 -14
- datahub/configuration/common.py +10 -2
- datahub/configuration/git.py +1 -3
- datahub/configuration/kafka.py +1 -1
- datahub/emitter/mce_builder.py +28 -13
- datahub/emitter/mcp_builder.py +4 -1
- datahub/emitter/response_helper.py +145 -0
- datahub/emitter/rest_emitter.py +323 -10
- datahub/ingestion/api/decorators.py +1 -1
- datahub/ingestion/api/source_helpers.py +4 -0
- datahub/ingestion/fs/s3_fs.py +2 -2
- datahub/ingestion/glossary/classification_mixin.py +1 -5
- datahub/ingestion/graph/client.py +41 -22
- datahub/ingestion/graph/entity_versioning.py +3 -3
- datahub/ingestion/graph/filters.py +64 -37
- datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +1 -6
- datahub/ingestion/run/pipeline.py +112 -148
- datahub/ingestion/run/sink_callback.py +77 -0
- datahub/ingestion/sink/datahub_rest.py +8 -0
- datahub/ingestion/source/abs/config.py +2 -4
- datahub/ingestion/source/bigquery_v2/bigquery_audit.py +1 -1
- datahub/ingestion/source/bigquery_v2/bigquery_config.py +2 -46
- datahub/ingestion/source/bigquery_v2/bigquery_schema.py +6 -1
- 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 +13 -5
- datahub/ingestion/source/common/gcp_credentials_config.py +53 -0
- datahub/ingestion/source/common/subtypes.py +12 -0
- datahub/ingestion/source/csv_enricher.py +3 -3
- datahub/ingestion/source/data_lake_common/path_spec.py +1 -3
- datahub/ingestion/source/dbt/dbt_common.py +3 -5
- datahub/ingestion/source/dbt/dbt_tests.py +4 -8
- 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/dremio/dremio_api.py +4 -8
- datahub/ingestion/source/dremio/dremio_aspects.py +3 -5
- datahub/ingestion/source/dynamodb/dynamodb.py +1 -0
- datahub/ingestion/source/elastic_search.py +26 -6
- datahub/ingestion/source/feast.py +27 -8
- datahub/ingestion/source/file.py +6 -3
- datahub/ingestion/source/gc/dataprocess_cleanup.py +1 -1
- datahub/ingestion/source/gc/execution_request_cleanup.py +2 -1
- datahub/ingestion/source/ge_data_profiler.py +12 -15
- datahub/ingestion/source/iceberg/iceberg.py +46 -12
- datahub/ingestion/source/iceberg/iceberg_common.py +71 -21
- datahub/ingestion/source/identity/okta.py +37 -7
- datahub/ingestion/source/kafka/kafka.py +1 -1
- datahub/ingestion/source/kafka_connect/common.py +2 -7
- datahub/ingestion/source/kafka_connect/kafka_connect.py +97 -4
- datahub/ingestion/source/kafka_connect/sink_connectors.py +2 -2
- datahub/ingestion/source/kafka_connect/source_connectors.py +6 -9
- datahub/ingestion/source/looker/looker_common.py +3 -3
- datahub/ingestion/source/looker/looker_file_loader.py +2 -2
- datahub/ingestion/source/looker/looker_lib_wrapper.py +2 -1
- datahub/ingestion/source/looker/looker_source.py +1 -1
- datahub/ingestion/source/looker/looker_template_language.py +4 -2
- datahub/ingestion/source/looker/lookml_source.py +3 -2
- datahub/ingestion/source/metabase.py +57 -35
- datahub/ingestion/source/metadata/business_glossary.py +45 -3
- datahub/ingestion/source/metadata/lineage.py +2 -2
- datahub/ingestion/source/mlflow.py +365 -35
- datahub/ingestion/source/mode.py +18 -8
- datahub/ingestion/source/neo4j/neo4j_source.py +27 -7
- datahub/ingestion/source/nifi.py +37 -11
- datahub/ingestion/source/openapi.py +1 -1
- datahub/ingestion/source/openapi_parser.py +49 -17
- datahub/ingestion/source/powerbi/m_query/parser.py +3 -2
- datahub/ingestion/source/powerbi/m_query/tree_function.py +2 -1
- datahub/ingestion/source/powerbi/powerbi.py +1 -3
- datahub/ingestion/source/powerbi/rest_api_wrapper/data_resolver.py +2 -1
- datahub/ingestion/source/powerbi_report_server/report_server.py +26 -7
- datahub/ingestion/source/powerbi_report_server/report_server_domain.py +1 -1
- datahub/ingestion/source/preset.py +7 -4
- datahub/ingestion/source/pulsar.py +3 -2
- datahub/ingestion/source/qlik_sense/websocket_connection.py +4 -2
- datahub/ingestion/source/redash.py +31 -7
- datahub/ingestion/source/redshift/config.py +4 -0
- datahub/ingestion/source/redshift/datashares.py +236 -0
- datahub/ingestion/source/redshift/lineage.py +6 -2
- datahub/ingestion/source/redshift/lineage_v2.py +24 -9
- datahub/ingestion/source/redshift/profile.py +1 -1
- datahub/ingestion/source/redshift/query.py +133 -33
- datahub/ingestion/source/redshift/redshift.py +46 -73
- datahub/ingestion/source/redshift/redshift_schema.py +186 -6
- datahub/ingestion/source/redshift/report.py +3 -0
- datahub/ingestion/source/s3/config.py +5 -5
- datahub/ingestion/source/s3/source.py +20 -41
- datahub/ingestion/source/salesforce.py +550 -275
- datahub/ingestion/source/schema_inference/object.py +1 -1
- datahub/ingestion/source/sigma/sigma.py +1 -1
- datahub/ingestion/source/slack/slack.py +31 -10
- datahub/ingestion/source/snowflake/snowflake_connection.py +2 -2
- datahub/ingestion/source/snowflake/snowflake_queries.py +19 -13
- datahub/ingestion/source/snowflake/snowflake_query.py +6 -4
- datahub/ingestion/source/snowflake/snowflake_schema.py +3 -4
- datahub/ingestion/source/snowflake/snowflake_v2.py +1 -1
- datahub/ingestion/source/sql/athena.py +10 -16
- datahub/ingestion/source/sql/druid.py +1 -5
- datahub/ingestion/source/sql/hive.py +15 -6
- datahub/ingestion/source/sql/hive_metastore.py +3 -2
- datahub/ingestion/source/sql/mssql/job_models.py +29 -0
- datahub/ingestion/source/sql/mssql/source.py +11 -5
- datahub/ingestion/source/sql/oracle.py +127 -63
- datahub/ingestion/source/sql/sql_common.py +6 -12
- datahub/ingestion/source/sql/sql_types.py +2 -2
- datahub/ingestion/source/sql/teradata.py +7 -5
- datahub/ingestion/source/sql/trino.py +2 -2
- datahub/ingestion/source/state/stale_entity_removal_handler.py +4 -8
- datahub/ingestion/source/superset.py +222 -62
- datahub/ingestion/source/tableau/tableau.py +22 -6
- datahub/ingestion/source/tableau/tableau_common.py +3 -2
- datahub/ingestion/source/unity/ge_profiler.py +2 -1
- datahub/ingestion/source/unity/source.py +11 -1
- datahub/ingestion/source/vertexai.py +697 -0
- datahub/ingestion/source_config/pulsar.py +3 -1
- datahub/ingestion/transformer/pattern_cleanup_ownership.py +25 -7
- datahub/lite/duckdb_lite.py +3 -10
- datahub/lite/lite_local.py +1 -1
- datahub/lite/lite_util.py +4 -3
- datahub/metadata/_schema_classes.py +714 -417
- datahub/metadata/_urns/urn_defs.py +1673 -1649
- datahub/metadata/com/linkedin/pegasus2avro/incident/__init__.py +4 -0
- datahub/metadata/schema.avsc +16438 -16603
- datahub/metadata/schemas/AssertionInfo.avsc +3 -1
- datahub/metadata/schemas/BusinessAttributeInfo.avsc +6 -2
- datahub/metadata/schemas/BusinessAttributes.avsc +6 -0
- datahub/metadata/schemas/ChartInfo.avsc +1 -0
- datahub/metadata/schemas/CorpGroupKey.avsc +2 -1
- datahub/metadata/schemas/CorpUserInfo.avsc +13 -0
- datahub/metadata/schemas/CorpUserKey.avsc +2 -1
- datahub/metadata/schemas/DataHubIngestionSourceInfo.avsc +8 -3
- datahub/metadata/schemas/DataProcessInstanceInput.avsc +129 -1
- datahub/metadata/schemas/DataProcessInstanceOutput.avsc +131 -3
- datahub/metadata/schemas/DataProcessKey.avsc +2 -1
- datahub/metadata/schemas/DataProductKey.avsc +2 -1
- datahub/metadata/schemas/DomainKey.avsc +2 -1
- datahub/metadata/schemas/EditableSchemaMetadata.avsc +6 -2
- datahub/metadata/schemas/GlossaryNodeKey.avsc +3 -1
- datahub/metadata/schemas/GlossaryTermKey.avsc +2 -1
- datahub/metadata/schemas/GlossaryTerms.avsc +3 -1
- datahub/metadata/schemas/IncidentInfo.avsc +130 -46
- datahub/metadata/schemas/InputFields.avsc +3 -1
- datahub/metadata/schemas/MLFeatureKey.avsc +2 -1
- datahub/metadata/schemas/MLFeatureTableKey.avsc +2 -1
- datahub/metadata/schemas/MLModelDeploymentKey.avsc +2 -1
- datahub/metadata/schemas/MLModelGroupKey.avsc +3 -1
- datahub/metadata/schemas/MLModelKey.avsc +3 -1
- datahub/metadata/schemas/MLPrimaryKeyKey.avsc +2 -1
- datahub/metadata/schemas/MetadataChangeEvent.avsc +20 -2
- datahub/metadata/schemas/PostKey.avsc +2 -1
- datahub/metadata/schemas/SchemaFieldKey.avsc +2 -1
- datahub/metadata/schemas/SchemaMetadata.avsc +3 -1
- datahub/metadata/schemas/StructuredPropertyDefinition.avsc +14 -0
- datahub/metadata/schemas/VersionProperties.avsc +18 -0
- datahub/metadata/schemas/VersionSetProperties.avsc +5 -0
- datahub/pydantic/__init__.py +0 -0
- datahub/pydantic/compat.py +58 -0
- datahub/sdk/__init__.py +30 -12
- datahub/sdk/_all_entities.py +1 -1
- datahub/sdk/_attribution.py +4 -0
- datahub/sdk/_shared.py +251 -16
- datahub/sdk/_utils.py +35 -0
- datahub/sdk/container.py +29 -5
- datahub/sdk/dataset.py +118 -20
- datahub/sdk/{_entity.py → entity.py} +24 -1
- datahub/sdk/entity_client.py +1 -1
- datahub/sdk/main_client.py +23 -0
- datahub/sdk/resolver_client.py +17 -29
- datahub/sdk/search_client.py +50 -0
- datahub/sdk/search_filters.py +374 -0
- datahub/specific/dataset.py +3 -4
- datahub/sql_parsing/_sqlglot_patch.py +2 -10
- datahub/sql_parsing/schema_resolver.py +1 -1
- datahub/sql_parsing/split_statements.py +20 -13
- datahub/sql_parsing/sql_parsing_common.py +7 -0
- datahub/sql_parsing/sqlglot_lineage.py +1 -1
- datahub/sql_parsing/sqlglot_utils.py +1 -4
- datahub/testing/check_sql_parser_result.py +5 -6
- datahub/testing/compare_metadata_json.py +7 -6
- datahub/testing/pytest_hooks.py +56 -0
- datahub/upgrade/upgrade.py +2 -2
- datahub/utilities/file_backed_collections.py +3 -14
- datahub/utilities/ingest_utils.py +106 -0
- datahub/utilities/mapping.py +1 -1
- datahub/utilities/memory_footprint.py +3 -2
- datahub/utilities/sentinels.py +22 -0
- datahub/utilities/unified_diff.py +5 -1
- {acryl_datahub-0.15.0.6rc3.dist-info → acryl_datahub-1.0.0.dist-info}/LICENSE +0 -0
- {acryl_datahub-0.15.0.6rc3.dist-info → acryl_datahub-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -6272,6 +6272,7 @@ class VersionPropertiesClass(_Aspect):
|
|
|
6272
6272
|
sortId: str,
|
|
6273
6273
|
aliases: Optional[List["VersionTagClass"]]=None,
|
|
6274
6274
|
comment: Union[None, str]=None,
|
|
6275
|
+
versioningScheme: Optional[Union[str, "VersioningSchemeClass"]]=None,
|
|
6275
6276
|
sourceCreatedTimestamp: Union[None, "AuditStampClass"]=None,
|
|
6276
6277
|
metadataCreatedTimestamp: Union[None, "AuditStampClass"]=None,
|
|
6277
6278
|
isLatest: Union[None, bool]=None,
|
|
@@ -6287,6 +6288,11 @@ class VersionPropertiesClass(_Aspect):
|
|
|
6287
6288
|
self.aliases = aliases
|
|
6288
6289
|
self.comment = comment
|
|
6289
6290
|
self.sortId = sortId
|
|
6291
|
+
if versioningScheme is None:
|
|
6292
|
+
# default: 'LEXICOGRAPHIC_STRING'
|
|
6293
|
+
self.versioningScheme = self.RECORD_SCHEMA.fields_dict["versioningScheme"].default
|
|
6294
|
+
else:
|
|
6295
|
+
self.versioningScheme = versioningScheme
|
|
6290
6296
|
self.sourceCreatedTimestamp = sourceCreatedTimestamp
|
|
6291
6297
|
self.metadataCreatedTimestamp = metadataCreatedTimestamp
|
|
6292
6298
|
self.isLatest = isLatest
|
|
@@ -6297,6 +6303,7 @@ class VersionPropertiesClass(_Aspect):
|
|
|
6297
6303
|
self.aliases = list()
|
|
6298
6304
|
self.comment = self.RECORD_SCHEMA.fields_dict["comment"].default
|
|
6299
6305
|
self.sortId = str()
|
|
6306
|
+
self.versioningScheme = self.RECORD_SCHEMA.fields_dict["versioningScheme"].default
|
|
6300
6307
|
self.sourceCreatedTimestamp = self.RECORD_SCHEMA.fields_dict["sourceCreatedTimestamp"].default
|
|
6301
6308
|
self.metadataCreatedTimestamp = self.RECORD_SCHEMA.fields_dict["metadataCreatedTimestamp"].default
|
|
6302
6309
|
self.isLatest = self.RECORD_SCHEMA.fields_dict["isLatest"].default
|
|
@@ -6353,6 +6360,17 @@ class VersionPropertiesClass(_Aspect):
|
|
|
6353
6360
|
self._inner_dict['sortId'] = value
|
|
6354
6361
|
|
|
6355
6362
|
|
|
6363
|
+
@property
|
|
6364
|
+
def versioningScheme(self) -> Union[str, "VersioningSchemeClass"]:
|
|
6365
|
+
"""What versioning scheme `sortId` belongs to.
|
|
6366
|
+
Defaults to a plain string that is lexicographically sorted."""
|
|
6367
|
+
return self._inner_dict.get('versioningScheme') # type: ignore
|
|
6368
|
+
|
|
6369
|
+
@versioningScheme.setter
|
|
6370
|
+
def versioningScheme(self, value: Union[str, "VersioningSchemeClass"]) -> None:
|
|
6371
|
+
self._inner_dict['versioningScheme'] = value
|
|
6372
|
+
|
|
6373
|
+
|
|
6356
6374
|
@property
|
|
6357
6375
|
def sourceCreatedTimestamp(self) -> Union[None, "AuditStampClass"]:
|
|
6358
6376
|
"""Timestamp reflecting when this asset version was created in the source system."""
|
|
@@ -9308,13 +9326,16 @@ class DataProcessInstanceInputClass(_Aspect):
|
|
|
9308
9326
|
|
|
9309
9327
|
def __init__(self,
|
|
9310
9328
|
inputs: List[str],
|
|
9329
|
+
inputEdges: Union[None, List["EdgeClass"]]=None,
|
|
9311
9330
|
):
|
|
9312
9331
|
super().__init__()
|
|
9313
9332
|
|
|
9314
9333
|
self.inputs = inputs
|
|
9334
|
+
self.inputEdges = inputEdges
|
|
9315
9335
|
|
|
9316
9336
|
def _restore_defaults(self) -> None:
|
|
9317
9337
|
self.inputs = list()
|
|
9338
|
+
self.inputEdges = self.RECORD_SCHEMA.fields_dict["inputEdges"].default
|
|
9318
9339
|
|
|
9319
9340
|
|
|
9320
9341
|
@property
|
|
@@ -9327,6 +9348,18 @@ class DataProcessInstanceInputClass(_Aspect):
|
|
|
9327
9348
|
self._inner_dict['inputs'] = value
|
|
9328
9349
|
|
|
9329
9350
|
|
|
9351
|
+
@property
|
|
9352
|
+
def inputEdges(self) -> Union[None, List["EdgeClass"]]:
|
|
9353
|
+
"""Input assets consumed by the data process instance, with additional metadata.
|
|
9354
|
+
Counts as lineage.
|
|
9355
|
+
Will eventually deprecate the inputs field."""
|
|
9356
|
+
return self._inner_dict.get('inputEdges') # type: ignore
|
|
9357
|
+
|
|
9358
|
+
@inputEdges.setter
|
|
9359
|
+
def inputEdges(self, value: Union[None, List["EdgeClass"]]) -> None:
|
|
9360
|
+
self._inner_dict['inputEdges'] = value
|
|
9361
|
+
|
|
9362
|
+
|
|
9330
9363
|
class DataProcessInstanceOutputClass(_Aspect):
|
|
9331
9364
|
"""Information about the outputs of a Data process"""
|
|
9332
9365
|
|
|
@@ -9337,18 +9370,21 @@ class DataProcessInstanceOutputClass(_Aspect):
|
|
|
9337
9370
|
|
|
9338
9371
|
def __init__(self,
|
|
9339
9372
|
outputs: List[str],
|
|
9373
|
+
outputEdges: Union[None, List["EdgeClass"]]=None,
|
|
9340
9374
|
):
|
|
9341
9375
|
super().__init__()
|
|
9342
9376
|
|
|
9343
9377
|
self.outputs = outputs
|
|
9378
|
+
self.outputEdges = outputEdges
|
|
9344
9379
|
|
|
9345
9380
|
def _restore_defaults(self) -> None:
|
|
9346
9381
|
self.outputs = list()
|
|
9382
|
+
self.outputEdges = self.RECORD_SCHEMA.fields_dict["outputEdges"].default
|
|
9347
9383
|
|
|
9348
9384
|
|
|
9349
9385
|
@property
|
|
9350
9386
|
def outputs(self) -> List[str]:
|
|
9351
|
-
"""Output
|
|
9387
|
+
"""Output assets produced"""
|
|
9352
9388
|
return self._inner_dict.get('outputs') # type: ignore
|
|
9353
9389
|
|
|
9354
9390
|
@outputs.setter
|
|
@@ -9356,6 +9392,18 @@ class DataProcessInstanceOutputClass(_Aspect):
|
|
|
9356
9392
|
self._inner_dict['outputs'] = value
|
|
9357
9393
|
|
|
9358
9394
|
|
|
9395
|
+
@property
|
|
9396
|
+
def outputEdges(self) -> Union[None, List["EdgeClass"]]:
|
|
9397
|
+
"""Output assets produced by the data process instance during processing, with additional metadata.
|
|
9398
|
+
Counts as lineage.
|
|
9399
|
+
Will eventually deprecate the outputs field."""
|
|
9400
|
+
return self._inner_dict.get('outputEdges') # type: ignore
|
|
9401
|
+
|
|
9402
|
+
@outputEdges.setter
|
|
9403
|
+
def outputEdges(self, value: Union[None, List["EdgeClass"]]) -> None:
|
|
9404
|
+
self._inner_dict['outputEdges'] = value
|
|
9405
|
+
|
|
9406
|
+
|
|
9359
9407
|
class DataProcessInstancePropertiesClass(_Aspect):
|
|
9360
9408
|
"""The inputs and outputs of this data process"""
|
|
9361
9409
|
|
|
@@ -9810,7 +9858,7 @@ class DataProductKeyClass(_Aspect):
|
|
|
9810
9858
|
|
|
9811
9859
|
|
|
9812
9860
|
ASPECT_NAME = 'dataProductKey'
|
|
9813
|
-
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults']}
|
|
9861
|
+
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
9814
9862
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataproduct.DataProductKey")
|
|
9815
9863
|
|
|
9816
9864
|
def __init__(self,
|
|
@@ -13524,6 +13572,7 @@ class CorpUserInfoClass(_Aspect):
|
|
|
13524
13572
|
lastName: Union[None, str]=None,
|
|
13525
13573
|
fullName: Union[None, str]=None,
|
|
13526
13574
|
countryCode: Union[None, str]=None,
|
|
13575
|
+
system: Optional[Union[bool, None]]=None,
|
|
13527
13576
|
):
|
|
13528
13577
|
super().__init__()
|
|
13529
13578
|
|
|
@@ -13543,6 +13592,11 @@ class CorpUserInfoClass(_Aspect):
|
|
|
13543
13592
|
self.lastName = lastName
|
|
13544
13593
|
self.fullName = fullName
|
|
13545
13594
|
self.countryCode = countryCode
|
|
13595
|
+
if system is None:
|
|
13596
|
+
# default: False
|
|
13597
|
+
self.system = self.RECORD_SCHEMA.fields_dict["system"].default
|
|
13598
|
+
else:
|
|
13599
|
+
self.system = system
|
|
13546
13600
|
|
|
13547
13601
|
def _restore_defaults(self) -> None:
|
|
13548
13602
|
self.customProperties = dict()
|
|
@@ -13557,6 +13611,7 @@ class CorpUserInfoClass(_Aspect):
|
|
|
13557
13611
|
self.lastName = self.RECORD_SCHEMA.fields_dict["lastName"].default
|
|
13558
13612
|
self.fullName = self.RECORD_SCHEMA.fields_dict["fullName"].default
|
|
13559
13613
|
self.countryCode = self.RECORD_SCHEMA.fields_dict["countryCode"].default
|
|
13614
|
+
self.system = self.RECORD_SCHEMA.fields_dict["system"].default
|
|
13560
13615
|
|
|
13561
13616
|
|
|
13562
13617
|
@property
|
|
@@ -13679,6 +13734,16 @@ class CorpUserInfoClass(_Aspect):
|
|
|
13679
13734
|
self._inner_dict['countryCode'] = value
|
|
13680
13735
|
|
|
13681
13736
|
|
|
13737
|
+
@property
|
|
13738
|
+
def system(self) -> Union[bool, None]:
|
|
13739
|
+
"""Whether the corpUser is a system user."""
|
|
13740
|
+
return self._inner_dict.get('system') # type: ignore
|
|
13741
|
+
|
|
13742
|
+
@system.setter
|
|
13743
|
+
def system(self, value: Union[bool, None]) -> None:
|
|
13744
|
+
self._inner_dict['system'] = value
|
|
13745
|
+
|
|
13746
|
+
|
|
13682
13747
|
class CorpUserSettingsClass(_Aspect):
|
|
13683
13748
|
"""Settings that a user can customize through the datahub ui"""
|
|
13684
13749
|
|
|
@@ -13918,6 +13983,46 @@ class RoleMembershipClass(_Aspect):
|
|
|
13918
13983
|
self._inner_dict['roles'] = value
|
|
13919
13984
|
|
|
13920
13985
|
|
|
13986
|
+
class IncidentAssigneeClass(DictWrapper):
|
|
13987
|
+
"""The incident assignee type.
|
|
13988
|
+
This is in a record so that we can add additional fields if we need to later (e.g.
|
|
13989
|
+
the type of the assignee."""
|
|
13990
|
+
|
|
13991
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.incident.IncidentAssignee")
|
|
13992
|
+
def __init__(self,
|
|
13993
|
+
actor: str,
|
|
13994
|
+
assignedAt: "AuditStampClass",
|
|
13995
|
+
):
|
|
13996
|
+
super().__init__()
|
|
13997
|
+
|
|
13998
|
+
self.actor = actor
|
|
13999
|
+
self.assignedAt = assignedAt
|
|
14000
|
+
|
|
14001
|
+
def _restore_defaults(self) -> None:
|
|
14002
|
+
self.actor = str()
|
|
14003
|
+
self.assignedAt = AuditStampClass._construct_with_defaults()
|
|
14004
|
+
|
|
14005
|
+
|
|
14006
|
+
@property
|
|
14007
|
+
def actor(self) -> str:
|
|
14008
|
+
"""The user or group assigned to the incident."""
|
|
14009
|
+
return self._inner_dict.get('actor') # type: ignore
|
|
14010
|
+
|
|
14011
|
+
@actor.setter
|
|
14012
|
+
def actor(self, value: str) -> None:
|
|
14013
|
+
self._inner_dict['actor'] = value
|
|
14014
|
+
|
|
14015
|
+
|
|
14016
|
+
@property
|
|
14017
|
+
def assignedAt(self) -> "AuditStampClass":
|
|
14018
|
+
"""The time & actor responsible for assiging the assignee."""
|
|
14019
|
+
return self._inner_dict.get('assignedAt') # type: ignore
|
|
14020
|
+
|
|
14021
|
+
@assignedAt.setter
|
|
14022
|
+
def assignedAt(self, value: "AuditStampClass") -> None:
|
|
14023
|
+
self._inner_dict['assignedAt'] = value
|
|
14024
|
+
|
|
14025
|
+
|
|
13921
14026
|
class IncidentInfoClass(_Aspect):
|
|
13922
14027
|
"""Information about an incident raised on an asset."""
|
|
13923
14028
|
|
|
@@ -13935,7 +14040,9 @@ class IncidentInfoClass(_Aspect):
|
|
|
13935
14040
|
title: Union[None, str]=None,
|
|
13936
14041
|
description: Union[None, str]=None,
|
|
13937
14042
|
priority: Optional[Union[int, None]]=None,
|
|
14043
|
+
assignees: Union[None, List["IncidentAssigneeClass"]]=None,
|
|
13938
14044
|
source: Union[None, "IncidentSourceClass"]=None,
|
|
14045
|
+
startedAt: Union[None, int]=None,
|
|
13939
14046
|
):
|
|
13940
14047
|
super().__init__()
|
|
13941
14048
|
|
|
@@ -13949,8 +14056,10 @@ class IncidentInfoClass(_Aspect):
|
|
|
13949
14056
|
self.priority = self.RECORD_SCHEMA.fields_dict["priority"].default
|
|
13950
14057
|
else:
|
|
13951
14058
|
self.priority = priority
|
|
14059
|
+
self.assignees = assignees
|
|
13952
14060
|
self.status = status
|
|
13953
14061
|
self.source = source
|
|
14062
|
+
self.startedAt = startedAt
|
|
13954
14063
|
self.created = created
|
|
13955
14064
|
|
|
13956
14065
|
def _restore_defaults(self) -> None:
|
|
@@ -13960,8 +14069,10 @@ class IncidentInfoClass(_Aspect):
|
|
|
13960
14069
|
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
13961
14070
|
self.entities = list()
|
|
13962
14071
|
self.priority = self.RECORD_SCHEMA.fields_dict["priority"].default
|
|
14072
|
+
self.assignees = self.RECORD_SCHEMA.fields_dict["assignees"].default
|
|
13963
14073
|
self.status = IncidentStatusClass._construct_with_defaults()
|
|
13964
14074
|
self.source = self.RECORD_SCHEMA.fields_dict["source"].default
|
|
14075
|
+
self.startedAt = self.RECORD_SCHEMA.fields_dict["startedAt"].default
|
|
13965
14076
|
self.created = AuditStampClass._construct_with_defaults()
|
|
13966
14077
|
|
|
13967
14078
|
|
|
@@ -14017,7 +14128,9 @@ class IncidentInfoClass(_Aspect):
|
|
|
14017
14128
|
|
|
14018
14129
|
@property
|
|
14019
14130
|
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.
|
|
14131
|
+
"""A numeric severity or priority for the incident. On the UI we will translate this into something easy to understand.
|
|
14132
|
+
Currently supported: 0 - CRITICAL, 1 - HIGH, 2 - MED, 3 - LOW
|
|
14133
|
+
(We probably should have modeled as an enum)"""
|
|
14021
14134
|
return self._inner_dict.get('priority') # type: ignore
|
|
14022
14135
|
|
|
14023
14136
|
@priority.setter
|
|
@@ -14025,6 +14138,16 @@ class IncidentInfoClass(_Aspect):
|
|
|
14025
14138
|
self._inner_dict['priority'] = value
|
|
14026
14139
|
|
|
14027
14140
|
|
|
14141
|
+
@property
|
|
14142
|
+
def assignees(self) -> Union[None, List["IncidentAssigneeClass"]]:
|
|
14143
|
+
"""The parties assigned with resolving the incident"""
|
|
14144
|
+
return self._inner_dict.get('assignees') # type: ignore
|
|
14145
|
+
|
|
14146
|
+
@assignees.setter
|
|
14147
|
+
def assignees(self, value: Union[None, List["IncidentAssigneeClass"]]) -> None:
|
|
14148
|
+
self._inner_dict['assignees'] = value
|
|
14149
|
+
|
|
14150
|
+
|
|
14028
14151
|
@property
|
|
14029
14152
|
def status(self) -> "IncidentStatusClass":
|
|
14030
14153
|
"""The current status of an incident, i.e. active or inactive."""
|
|
@@ -14045,6 +14168,16 @@ class IncidentInfoClass(_Aspect):
|
|
|
14045
14168
|
self._inner_dict['source'] = value
|
|
14046
14169
|
|
|
14047
14170
|
|
|
14171
|
+
@property
|
|
14172
|
+
def startedAt(self) -> Union[None, int]:
|
|
14173
|
+
"""The time at which the incident actually started (may be before the date it was raised)."""
|
|
14174
|
+
return self._inner_dict.get('startedAt') # type: ignore
|
|
14175
|
+
|
|
14176
|
+
@startedAt.setter
|
|
14177
|
+
def startedAt(self, value: Union[None, int]) -> None:
|
|
14178
|
+
self._inner_dict['startedAt'] = value
|
|
14179
|
+
|
|
14180
|
+
|
|
14048
14181
|
@property
|
|
14049
14182
|
def created(self) -> "AuditStampClass":
|
|
14050
14183
|
"""The time at which the request was initially created"""
|
|
@@ -14108,6 +14241,27 @@ class IncidentSourceTypeClass(object):
|
|
|
14108
14241
|
|
|
14109
14242
|
|
|
14110
14243
|
|
|
14244
|
+
class IncidentStageClass(object):
|
|
14245
|
+
# No docs available.
|
|
14246
|
+
|
|
14247
|
+
TRIAGE = "TRIAGE"
|
|
14248
|
+
"""The impact and priority of the incident is being actively assessed."""
|
|
14249
|
+
|
|
14250
|
+
INVESTIGATION = "INVESTIGATION"
|
|
14251
|
+
"""The incident root cause is being investigated."""
|
|
14252
|
+
|
|
14253
|
+
WORK_IN_PROGRESS = "WORK_IN_PROGRESS"
|
|
14254
|
+
"""The incident is in the remediation stage."""
|
|
14255
|
+
|
|
14256
|
+
FIXED = "FIXED"
|
|
14257
|
+
"""The incident is in the resolved as completed stage."""
|
|
14258
|
+
|
|
14259
|
+
NO_ACTION_REQUIRED = "NO_ACTION_REQUIRED"
|
|
14260
|
+
"""The incident is in the resolved with no action required state, e.g. the
|
|
14261
|
+
incident was a false positive, or was expected."""
|
|
14262
|
+
|
|
14263
|
+
|
|
14264
|
+
|
|
14111
14265
|
class IncidentStateClass(object):
|
|
14112
14266
|
# No docs available.
|
|
14113
14267
|
|
|
@@ -14126,23 +14280,26 @@ class IncidentStatusClass(DictWrapper):
|
|
|
14126
14280
|
def __init__(self,
|
|
14127
14281
|
state: Union[str, "IncidentStateClass"],
|
|
14128
14282
|
lastUpdated: "AuditStampClass",
|
|
14283
|
+
stage: Union[None, Union[str, "IncidentStageClass"]]=None,
|
|
14129
14284
|
message: Union[None, str]=None,
|
|
14130
14285
|
):
|
|
14131
14286
|
super().__init__()
|
|
14132
14287
|
|
|
14133
14288
|
self.state = state
|
|
14289
|
+
self.stage = stage
|
|
14134
14290
|
self.message = message
|
|
14135
14291
|
self.lastUpdated = lastUpdated
|
|
14136
14292
|
|
|
14137
14293
|
def _restore_defaults(self) -> None:
|
|
14138
14294
|
self.state = IncidentStateClass.ACTIVE
|
|
14295
|
+
self.stage = self.RECORD_SCHEMA.fields_dict["stage"].default
|
|
14139
14296
|
self.message = self.RECORD_SCHEMA.fields_dict["message"].default
|
|
14140
14297
|
self.lastUpdated = AuditStampClass._construct_with_defaults()
|
|
14141
14298
|
|
|
14142
14299
|
|
|
14143
14300
|
@property
|
|
14144
14301
|
def state(self) -> Union[str, "IncidentStateClass"]:
|
|
14145
|
-
"""The state of the incident"""
|
|
14302
|
+
"""The top-level state of the incident, whether it's active or resolved."""
|
|
14146
14303
|
return self._inner_dict.get('state') # type: ignore
|
|
14147
14304
|
|
|
14148
14305
|
@state.setter
|
|
@@ -14150,6 +14307,17 @@ class IncidentStatusClass(DictWrapper):
|
|
|
14150
14307
|
self._inner_dict['state'] = value
|
|
14151
14308
|
|
|
14152
14309
|
|
|
14310
|
+
@property
|
|
14311
|
+
def stage(self) -> Union[None, Union[str, "IncidentStageClass"]]:
|
|
14312
|
+
"""The lifecycle stage for the incident - Null means no stage was assigned yet.
|
|
14313
|
+
In the future, we may add CUSTOM here with a customStage string field for user-defined stages."""
|
|
14314
|
+
return self._inner_dict.get('stage') # type: ignore
|
|
14315
|
+
|
|
14316
|
+
@stage.setter
|
|
14317
|
+
def stage(self, value: Union[None, Union[str, "IncidentStageClass"]]) -> None:
|
|
14318
|
+
self._inner_dict['stage'] = value
|
|
14319
|
+
|
|
14320
|
+
|
|
14153
14321
|
@property
|
|
14154
14322
|
def message(self) -> Union[None, str]:
|
|
14155
14323
|
"""Optional message associated with the incident"""
|
|
@@ -14550,7 +14718,7 @@ class CorpGroupKeyClass(_Aspect):
|
|
|
14550
14718
|
|
|
14551
14719
|
|
|
14552
14720
|
ASPECT_NAME = 'corpGroupKey'
|
|
14553
|
-
ASPECT_INFO = {'keyForEntity': 'corpGroup', 'entityCategory': '_unset_', 'entityAspects': ['corpGroupInfo', 'corpGroupEditableInfo', 'globalTags', 'ownership', 'status', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults'], 'entityDoc': 'CorpGroup represents an identity of a group of users in the enterprise.'}
|
|
14721
|
+
ASPECT_INFO = {'keyForEntity': 'corpGroup', 'entityCategory': '_unset_', 'entityAspects': ['corpGroupInfo', 'corpGroupEditableInfo', 'globalTags', 'ownership', 'status', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes'], 'entityDoc': 'CorpGroup represents an identity of a group of users in the enterprise.'}
|
|
14554
14722
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.CorpGroupKey")
|
|
14555
14723
|
|
|
14556
14724
|
def __init__(self,
|
|
@@ -14579,7 +14747,7 @@ class CorpUserKeyClass(_Aspect):
|
|
|
14579
14747
|
|
|
14580
14748
|
|
|
14581
14749
|
ASPECT_NAME = 'corpUserKey'
|
|
14582
|
-
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
14750
|
+
ASPECT_INFO = {'keyForEntity': 'corpuser', 'entityCategory': '_unset_', 'entityAspects': ['corpUserInfo', 'corpUserEditableInfo', 'corpUserStatus', 'groupMembership', 'globalTags', 'status', 'corpUserCredentials', 'nativeGroupMembership', 'corpUserSettings', 'origin', 'roleMembership', 'structuredProperties', 'forms', 'testResults', 'subTypes'], 'entityDoc': 'CorpUser represents an identity of a person (or an account) in the enterprise.'}
|
|
14583
14751
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.CorpUserKey")
|
|
14584
14752
|
|
|
14585
14753
|
def __init__(self,
|
|
@@ -15237,7 +15405,7 @@ class DataProcessKeyClass(_Aspect):
|
|
|
15237
15405
|
|
|
15238
15406
|
|
|
15239
15407
|
ASPECT_NAME = 'dataProcessKey'
|
|
15240
|
-
ASPECT_INFO = {'keyForEntity': 'dataProcess', 'entityCategory': '_unset_', 'entityAspects': ['dataProcessInfo', 'ownership', 'status', 'testResults']}
|
|
15408
|
+
ASPECT_INFO = {'keyForEntity': 'dataProcess', 'entityCategory': '_unset_', 'entityAspects': ['dataProcessInfo', 'ownership', 'status', 'testResults', 'subTypes']}
|
|
15241
15409
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataProcessKey")
|
|
15242
15410
|
|
|
15243
15411
|
def __init__(self,
|
|
@@ -15348,7 +15516,7 @@ class DomainKeyClass(_Aspect):
|
|
|
15348
15516
|
|
|
15349
15517
|
|
|
15350
15518
|
ASPECT_NAME = 'domainKey'
|
|
15351
|
-
ASPECT_INFO = {'keyForEntity': 'domain', 'entityCategory': 'core', 'entityAspects': ['domainProperties', 'institutionalMemory', 'ownership', 'structuredProperties', 'forms', 'testResults'], 'entityDoc': 'A data domain within an organization.'}
|
|
15519
|
+
ASPECT_INFO = {'keyForEntity': 'domain', 'entityCategory': 'core', 'entityAspects': ['domainProperties', 'institutionalMemory', 'ownership', 'structuredProperties', 'forms', 'testResults', 'displayProperties'], 'entityDoc': 'A data domain within an organization.'}
|
|
15352
15520
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DomainKey")
|
|
15353
15521
|
|
|
15354
15522
|
def __init__(self,
|
|
@@ -15493,7 +15661,7 @@ class GlossaryNodeKeyClass(_Aspect):
|
|
|
15493
15661
|
|
|
15494
15662
|
|
|
15495
15663
|
ASPECT_NAME = 'glossaryNodeKey'
|
|
15496
|
-
ASPECT_INFO = {'keyForEntity': 'glossaryNode', 'entityCategory': 'core', 'entityAspects': ['glossaryNodeInfo', 'institutionalMemory', 'ownership', 'status', 'structuredProperties', 'forms', 'testResults']}
|
|
15664
|
+
ASPECT_INFO = {'keyForEntity': 'glossaryNode', 'entityCategory': 'core', 'entityAspects': ['glossaryNodeInfo', 'institutionalMemory', 'ownership', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'displayProperties']}
|
|
15497
15665
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.GlossaryNodeKey")
|
|
15498
15666
|
|
|
15499
15667
|
def __init__(self,
|
|
@@ -15522,7 +15690,7 @@ class GlossaryTermKeyClass(_Aspect):
|
|
|
15522
15690
|
|
|
15523
15691
|
|
|
15524
15692
|
ASPECT_NAME = 'glossaryTermKey'
|
|
15525
|
-
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults']}
|
|
15693
|
+
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15526
15694
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.GlossaryTermKey")
|
|
15527
15695
|
|
|
15528
15696
|
def __init__(self,
|
|
@@ -15609,7 +15777,7 @@ class MLFeatureKeyClass(_Aspect):
|
|
|
15609
15777
|
|
|
15610
15778
|
|
|
15611
15779
|
ASPECT_NAME = 'mlFeatureKey'
|
|
15612
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults']}
|
|
15780
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15613
15781
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureKey")
|
|
15614
15782
|
|
|
15615
15783
|
def __init__(self,
|
|
@@ -15651,7 +15819,7 @@ class MLFeatureTableKeyClass(_Aspect):
|
|
|
15651
15819
|
|
|
15652
15820
|
|
|
15653
15821
|
ASPECT_NAME = 'mlFeatureTableKey'
|
|
15654
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults']}
|
|
15822
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15655
15823
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureTableKey")
|
|
15656
15824
|
|
|
15657
15825
|
def __init__(self,
|
|
@@ -15693,7 +15861,7 @@ class MLModelDeploymentKeyClass(_Aspect):
|
|
|
15693
15861
|
|
|
15694
15862
|
|
|
15695
15863
|
ASPECT_NAME = 'mlModelDeploymentKey'
|
|
15696
|
-
ASPECT_INFO = {'keyForEntity': 'mlModelDeployment', 'entityCategory': 'core', 'entityAspects': ['mlModelDeploymentProperties', 'ownership', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'testResults']}
|
|
15864
|
+
ASPECT_INFO = {'keyForEntity': 'mlModelDeployment', 'entityCategory': 'core', 'entityAspects': ['mlModelDeploymentProperties', 'ownership', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'testResults', 'container']}
|
|
15697
15865
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelDeploymentKey")
|
|
15698
15866
|
|
|
15699
15867
|
def __init__(self,
|
|
@@ -15748,7 +15916,7 @@ class MLModelGroupKeyClass(_Aspect):
|
|
|
15748
15916
|
|
|
15749
15917
|
|
|
15750
15918
|
ASPECT_NAME = 'mlModelGroupKey'
|
|
15751
|
-
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults']}
|
|
15919
|
+
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'container']}
|
|
15752
15920
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelGroupKey")
|
|
15753
15921
|
|
|
15754
15922
|
def __init__(self,
|
|
@@ -15803,7 +15971,7 @@ class MLModelKeyClass(_Aspect):
|
|
|
15803
15971
|
|
|
15804
15972
|
|
|
15805
15973
|
ASPECT_NAME = 'mlModelKey'
|
|
15806
|
-
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties']}
|
|
15974
|
+
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties', 'subTypes', 'container']}
|
|
15807
15975
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelKey")
|
|
15808
15976
|
|
|
15809
15977
|
def __init__(self,
|
|
@@ -15858,7 +16026,7 @@ class MLPrimaryKeyKeyClass(_Aspect):
|
|
|
15858
16026
|
|
|
15859
16027
|
|
|
15860
16028
|
ASPECT_NAME = 'mlPrimaryKeyKey'
|
|
15861
|
-
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults']}
|
|
16029
|
+
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
15862
16030
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLPrimaryKeyKey")
|
|
15863
16031
|
|
|
15864
16032
|
def __init__(self,
|
|
@@ -15972,7 +16140,7 @@ class PostKeyClass(_Aspect):
|
|
|
15972
16140
|
|
|
15973
16141
|
|
|
15974
16142
|
ASPECT_NAME = 'postKey'
|
|
15975
|
-
ASPECT_INFO = {'keyForEntity': 'post', 'entityCategory': 'core', 'entityAspects': ['postInfo']}
|
|
16143
|
+
ASPECT_INFO = {'keyForEntity': 'post', 'entityCategory': 'core', 'entityAspects': ['postInfo', 'subTypes']}
|
|
15976
16144
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.PostKey")
|
|
15977
16145
|
|
|
15978
16146
|
def __init__(self,
|
|
@@ -16059,7 +16227,7 @@ class SchemaFieldKeyClass(_Aspect):
|
|
|
16059
16227
|
|
|
16060
16228
|
|
|
16061
16229
|
ASPECT_NAME = 'schemaFieldKey'
|
|
16062
|
-
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation']}
|
|
16230
|
+
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation', 'subTypes']}
|
|
16063
16231
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
|
|
16064
16232
|
|
|
16065
16233
|
def __init__(self,
|
|
@@ -25050,7 +25218,7 @@ class VersionSetPropertiesClass(_Aspect):
|
|
|
25050
25218
|
def _restore_defaults(self) -> None:
|
|
25051
25219
|
self.customProperties = dict()
|
|
25052
25220
|
self.latest = str()
|
|
25053
|
-
self.versioningScheme = VersioningSchemeClass.
|
|
25221
|
+
self.versioningScheme = VersioningSchemeClass.LEXICOGRAPHIC_STRING
|
|
25054
25222
|
|
|
25055
25223
|
|
|
25056
25224
|
@property
|
|
@@ -25086,7 +25254,12 @@ class VersionSetPropertiesClass(_Aspect):
|
|
|
25086
25254
|
class VersioningSchemeClass(object):
|
|
25087
25255
|
# No docs available.
|
|
25088
25256
|
|
|
25257
|
+
LEXICOGRAPHIC_STRING = "LEXICOGRAPHIC_STRING"
|
|
25258
|
+
"""String sorted lexicographically."""
|
|
25259
|
+
|
|
25089
25260
|
ALPHANUMERIC_GENERATED_BY_DATAHUB = "ALPHANUMERIC_GENERATED_BY_DATAHUB"
|
|
25261
|
+
"""String managed by DataHub. Currently, an 8 character alphabetical string."""
|
|
25262
|
+
|
|
25090
25263
|
|
|
25091
25264
|
|
|
25092
25265
|
class DataHubViewDefinitionClass(DictWrapper):
|
|
@@ -25473,9 +25646,11 @@ __SCHEMA_TYPES = {
|
|
|
25473
25646
|
'com.linkedin.pegasus2avro.identity.InviteToken': InviteTokenClass,
|
|
25474
25647
|
'com.linkedin.pegasus2avro.identity.NativeGroupMembership': NativeGroupMembershipClass,
|
|
25475
25648
|
'com.linkedin.pegasus2avro.identity.RoleMembership': RoleMembershipClass,
|
|
25649
|
+
'com.linkedin.pegasus2avro.incident.IncidentAssignee': IncidentAssigneeClass,
|
|
25476
25650
|
'com.linkedin.pegasus2avro.incident.IncidentInfo': IncidentInfoClass,
|
|
25477
25651
|
'com.linkedin.pegasus2avro.incident.IncidentSource': IncidentSourceClass,
|
|
25478
25652
|
'com.linkedin.pegasus2avro.incident.IncidentSourceType': IncidentSourceTypeClass,
|
|
25653
|
+
'com.linkedin.pegasus2avro.incident.IncidentStage': IncidentStageClass,
|
|
25479
25654
|
'com.linkedin.pegasus2avro.incident.IncidentState': IncidentStateClass,
|
|
25480
25655
|
'com.linkedin.pegasus2avro.incident.IncidentStatus': IncidentStatusClass,
|
|
25481
25656
|
'com.linkedin.pegasus2avro.incident.IncidentType': IncidentTypeClass,
|
|
@@ -25951,9 +26126,11 @@ __SCHEMA_TYPES = {
|
|
|
25951
26126
|
'InviteToken': InviteTokenClass,
|
|
25952
26127
|
'NativeGroupMembership': NativeGroupMembershipClass,
|
|
25953
26128
|
'RoleMembership': RoleMembershipClass,
|
|
26129
|
+
'IncidentAssignee': IncidentAssigneeClass,
|
|
25954
26130
|
'IncidentInfo': IncidentInfoClass,
|
|
25955
26131
|
'IncidentSource': IncidentSourceClass,
|
|
25956
26132
|
'IncidentSourceType': IncidentSourceTypeClass,
|
|
26133
|
+
'IncidentStage': IncidentStageClass,
|
|
25957
26134
|
'IncidentState': IncidentStateClass,
|
|
25958
26135
|
'IncidentStatus': IncidentStatusClass,
|
|
25959
26136
|
'IncidentType': IncidentTypeClass,
|
|
@@ -26198,217 +26375,217 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
26198
26375
|
|
|
26199
26376
|
|
|
26200
26377
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
26201
|
-
|
|
26202
|
-
|
|
26203
|
-
|
|
26378
|
+
IcebergCatalogInfoClass,
|
|
26379
|
+
DatasetDeprecationClass,
|
|
26380
|
+
ViewPropertiesClass,
|
|
26381
|
+
PartitionsSummaryClass,
|
|
26382
|
+
DatasetUpstreamLineageClass,
|
|
26383
|
+
DatasetPropertiesClass,
|
|
26384
|
+
UpstreamLineageClass,
|
|
26385
|
+
EditableDatasetPropertiesClass,
|
|
26386
|
+
DatasetProfileClass,
|
|
26387
|
+
DatasetUsageStatisticsClass,
|
|
26388
|
+
GlobalSettingsInfoClass,
|
|
26389
|
+
DataHubStepStatePropertiesClass,
|
|
26390
|
+
BusinessAttributeInfoClass,
|
|
26391
|
+
BusinessAttributesClass,
|
|
26392
|
+
BusinessAttributeKeyClass,
|
|
26393
|
+
QuerySubjectsClass,
|
|
26394
|
+
QueryPropertiesClass,
|
|
26395
|
+
QueryUsageStatisticsClass,
|
|
26396
|
+
DataHubViewInfoClass,
|
|
26397
|
+
DataTypeInfoClass,
|
|
26398
|
+
DataTypeKeyClass,
|
|
26399
|
+
FormInfoClass,
|
|
26400
|
+
DynamicFormAssignmentClass,
|
|
26204
26401
|
DataHubConnectionDetailsClass,
|
|
26205
|
-
|
|
26206
|
-
|
|
26207
|
-
|
|
26208
|
-
|
|
26209
|
-
|
|
26402
|
+
ExecutionRequestSignalClass,
|
|
26403
|
+
ExecutionRequestInputClass,
|
|
26404
|
+
ExecutionRequestResultClass,
|
|
26405
|
+
GlossaryNodeInfoClass,
|
|
26406
|
+
GlossaryTermInfoClass,
|
|
26407
|
+
GlossaryRelatedTermsClass,
|
|
26408
|
+
TelemetryClientIdClass,
|
|
26409
|
+
DataHubAccessTokenInfoClass,
|
|
26410
|
+
ContainerClass,
|
|
26411
|
+
ContainerPropertiesClass,
|
|
26412
|
+
EditableContainerPropertiesClass,
|
|
26413
|
+
DataHubSecretValueClass,
|
|
26414
|
+
DataHubUpgradeRequestClass,
|
|
26415
|
+
DataHubUpgradeResultClass,
|
|
26416
|
+
AssertionRunEventClass,
|
|
26417
|
+
AssertionActionsClass,
|
|
26418
|
+
AssertionInfoClass,
|
|
26419
|
+
EditableSchemaMetadataClass,
|
|
26420
|
+
SchemaMetadataClass,
|
|
26421
|
+
DataProductPropertiesClass,
|
|
26422
|
+
DataProductKeyClass,
|
|
26423
|
+
DataContractStatusClass,
|
|
26424
|
+
DataContractPropertiesClass,
|
|
26425
|
+
OperationClass,
|
|
26426
|
+
StatusClass,
|
|
26427
|
+
InstitutionalMemoryClass,
|
|
26210
26428
|
AccessClass,
|
|
26211
|
-
|
|
26429
|
+
DataPlatformInstanceClass,
|
|
26212
26430
|
SiblingsClass,
|
|
26213
26431
|
IncidentsSummaryClass,
|
|
26214
|
-
|
|
26215
|
-
|
|
26432
|
+
EmbedClass,
|
|
26433
|
+
OwnershipClass,
|
|
26434
|
+
SubTypesClass,
|
|
26435
|
+
CostClass,
|
|
26216
26436
|
BrowsePathsClass,
|
|
26217
|
-
|
|
26218
|
-
|
|
26219
|
-
|
|
26220
|
-
|
|
26437
|
+
VersionPropertiesClass,
|
|
26438
|
+
OriginClass,
|
|
26439
|
+
DeprecationClass,
|
|
26440
|
+
GlossaryTermsClass,
|
|
26221
26441
|
DisplayPropertiesClass,
|
|
26222
|
-
|
|
26223
|
-
OperationClass,
|
|
26224
|
-
FormsClass,
|
|
26225
|
-
EmbedClass,
|
|
26442
|
+
BrowsePathsV2Class,
|
|
26226
26443
|
GlobalTagsClass,
|
|
26227
26444
|
DataTransformLogicClass,
|
|
26228
|
-
|
|
26229
|
-
|
|
26230
|
-
|
|
26231
|
-
StructuredPropertyDefinitionClass,
|
|
26232
|
-
StructuredPropertySettingsClass,
|
|
26233
|
-
SchemaFieldInfoClass,
|
|
26234
|
-
SchemaFieldAliasesClass,
|
|
26235
|
-
ContainerPropertiesClass,
|
|
26236
|
-
EditableContainerPropertiesClass,
|
|
26237
|
-
ContainerClass,
|
|
26238
|
-
DataHubUpgradeResultClass,
|
|
26239
|
-
DataHubUpgradeRequestClass,
|
|
26240
|
-
BusinessAttributesClass,
|
|
26241
|
-
BusinessAttributeInfoClass,
|
|
26242
|
-
BusinessAttributeKeyClass,
|
|
26243
|
-
DataHubIngestionSourceInfoClass,
|
|
26244
|
-
TagPropertiesClass,
|
|
26245
|
-
EditableDashboardPropertiesClass,
|
|
26246
|
-
DashboardUsageStatisticsClass,
|
|
26247
|
-
DashboardInfoClass,
|
|
26248
|
-
DataHubViewInfoClass,
|
|
26249
|
-
DataContractStatusClass,
|
|
26250
|
-
DataContractPropertiesClass,
|
|
26251
|
-
RolePropertiesClass,
|
|
26252
|
-
ActorsClass,
|
|
26253
|
-
SchemaMetadataClass,
|
|
26254
|
-
EditableSchemaMetadataClass,
|
|
26445
|
+
DocumentationClass,
|
|
26446
|
+
InputFieldsClass,
|
|
26447
|
+
FormsClass,
|
|
26255
26448
|
DataPlatformInfoClass,
|
|
26256
|
-
VersionSetPropertiesClass,
|
|
26257
|
-
DataHubPersonaInfoClass,
|
|
26258
26449
|
DataHubPolicyInfoClass,
|
|
26259
26450
|
DataHubRoleInfoClass,
|
|
26260
|
-
|
|
26261
|
-
|
|
26451
|
+
IncidentSourceClass,
|
|
26452
|
+
IncidentInfoClass,
|
|
26262
26453
|
VersionInfoClass,
|
|
26263
|
-
|
|
26454
|
+
DataJobInfoClass,
|
|
26264
26455
|
EditableDataFlowPropertiesClass,
|
|
26456
|
+
EditableDataJobPropertiesClass,
|
|
26457
|
+
DataFlowInfoClass,
|
|
26265
26458
|
DataJobInputOutputClass,
|
|
26266
|
-
DatahubIngestionRunSummaryClass,
|
|
26267
26459
|
DatahubIngestionCheckpointClass,
|
|
26268
|
-
|
|
26269
|
-
|
|
26270
|
-
|
|
26271
|
-
|
|
26272
|
-
GlossaryNodeInfoClass,
|
|
26273
|
-
GlossaryTermInfoClass,
|
|
26274
|
-
DomainsClass,
|
|
26275
|
-
DomainPropertiesClass,
|
|
26276
|
-
DataHubStepStatePropertiesClass,
|
|
26277
|
-
CorpUserSettingsClass,
|
|
26278
|
-
CorpUserEditableInfoClass,
|
|
26279
|
-
NativeGroupMembershipClass,
|
|
26280
|
-
CorpUserStatusClass,
|
|
26281
|
-
CorpGroupInfoClass,
|
|
26282
|
-
RoleMembershipClass,
|
|
26283
|
-
InviteTokenClass,
|
|
26284
|
-
GroupMembershipClass,
|
|
26285
|
-
CorpUserInfoClass,
|
|
26286
|
-
CorpUserCredentialsClass,
|
|
26287
|
-
CorpGroupEditableInfoClass,
|
|
26288
|
-
TelemetryClientIdClass,
|
|
26289
|
-
DataProductKeyClass,
|
|
26290
|
-
DataProductPropertiesClass,
|
|
26291
|
-
NotebookInfoClass,
|
|
26292
|
-
NotebookContentClass,
|
|
26293
|
-
EditableNotebookPropertiesClass,
|
|
26294
|
-
EditableMLFeatureTablePropertiesClass,
|
|
26295
|
-
MLHyperParamClass,
|
|
26296
|
-
MLFeaturePropertiesClass,
|
|
26297
|
-
MLPrimaryKeyPropertiesClass,
|
|
26298
|
-
MLModelPropertiesClass,
|
|
26299
|
-
MLTrainingRunPropertiesClass,
|
|
26300
|
-
EditableMLModelGroupPropertiesClass,
|
|
26301
|
-
MLModelDeploymentPropertiesClass,
|
|
26302
|
-
EditableMLFeaturePropertiesClass,
|
|
26303
|
-
EthicalConsiderationsClass,
|
|
26304
|
-
QuantitativeAnalysesClass,
|
|
26305
|
-
SourceCodeClass,
|
|
26306
|
-
EditableMLPrimaryKeyPropertiesClass,
|
|
26307
|
-
MLModelFactorPromptsClass,
|
|
26308
|
-
MLMetricClass,
|
|
26309
|
-
MetricsClass,
|
|
26310
|
-
TrainingDataClass,
|
|
26311
|
-
IntendedUseClass,
|
|
26312
|
-
EvaluationDataClass,
|
|
26313
|
-
MLFeatureTablePropertiesClass,
|
|
26314
|
-
CaveatsAndRecommendationsClass,
|
|
26315
|
-
EditableMLModelPropertiesClass,
|
|
26316
|
-
MLModelGroupPropertiesClass,
|
|
26317
|
-
QueryPropertiesClass,
|
|
26318
|
-
QuerySubjectsClass,
|
|
26319
|
-
QueryUsageStatisticsClass,
|
|
26320
|
-
DataHubSecretValueClass,
|
|
26321
|
-
IcebergCatalogInfoClass,
|
|
26322
|
-
DatasetUpstreamLineageClass,
|
|
26323
|
-
UpstreamLineageClass,
|
|
26324
|
-
DatasetProfileClass,
|
|
26325
|
-
PartitionsSummaryClass,
|
|
26326
|
-
DatasetPropertiesClass,
|
|
26327
|
-
DatasetDeprecationClass,
|
|
26328
|
-
EditableDatasetPropertiesClass,
|
|
26329
|
-
DatasetUsageStatisticsClass,
|
|
26330
|
-
ViewPropertiesClass,
|
|
26331
|
-
FormInfoClass,
|
|
26332
|
-
DynamicFormAssignmentClass,
|
|
26333
|
-
DataTypeInfoClass,
|
|
26334
|
-
DataTypeKeyClass,
|
|
26335
|
-
TestResultsClass,
|
|
26336
|
-
TestInfoClass,
|
|
26337
|
-
PlatformResourceInfoClass,
|
|
26338
|
-
PlatformResourceKeyClass,
|
|
26339
|
-
PostInfoClass,
|
|
26340
|
-
DataProcessInstancePropertiesClass,
|
|
26341
|
-
DataProcessInfoClass,
|
|
26342
|
-
DataProcessInstanceRelationshipsClass,
|
|
26343
|
-
DataProcessInstanceRunEventClass,
|
|
26344
|
-
DataProcessInstanceInputClass,
|
|
26345
|
-
DataProcessInstanceOutputClass,
|
|
26346
|
-
EditableChartPropertiesClass,
|
|
26347
|
-
ChartInfoClass,
|
|
26348
|
-
ChartQueryClass,
|
|
26349
|
-
ChartUsageStatisticsClass,
|
|
26350
|
-
EditableERModelRelationshipPropertiesClass,
|
|
26351
|
-
ERModelRelationshipPropertiesClass,
|
|
26352
|
-
ExecutionRequestResultClass,
|
|
26353
|
-
ExecutionRequestSignalClass,
|
|
26354
|
-
ExecutionRequestInputClass,
|
|
26355
|
-
MLModelGroupKeyClass,
|
|
26356
|
-
DataHubPolicyKeyClass,
|
|
26357
|
-
TagKeyClass,
|
|
26358
|
-
MLModelDeploymentKeyClass,
|
|
26359
|
-
DataHubActionKeyClass,
|
|
26460
|
+
DatahubIngestionRunSummaryClass,
|
|
26461
|
+
TelemetryKeyClass,
|
|
26462
|
+
DataHubAccessTokenKeyClass,
|
|
26463
|
+
DataHubConnectionKeyClass,
|
|
26360
26464
|
DataHubRoleKeyClass,
|
|
26361
|
-
|
|
26362
|
-
FormKeyClass,
|
|
26465
|
+
MLModelKeyClass,
|
|
26363
26466
|
NotebookKeyClass,
|
|
26364
|
-
DataHubConnectionKeyClass,
|
|
26365
|
-
IncidentKeyClass,
|
|
26366
26467
|
RoleKeyClass,
|
|
26367
|
-
|
|
26368
|
-
DataContractKeyClass,
|
|
26369
|
-
AssertionKeyClass,
|
|
26468
|
+
GlobalSettingsKeyClass,
|
|
26370
26469
|
DatasetKeyClass,
|
|
26470
|
+
ChartKeyClass,
|
|
26471
|
+
GlossaryNodeKeyClass,
|
|
26472
|
+
AssertionKeyClass,
|
|
26473
|
+
ExecutionRequestKeyClass,
|
|
26474
|
+
MLModelGroupKeyClass,
|
|
26475
|
+
MLModelDeploymentKeyClass,
|
|
26476
|
+
DataFlowKeyClass,
|
|
26371
26477
|
DataJobKeyClass,
|
|
26372
|
-
|
|
26373
|
-
|
|
26374
|
-
|
|
26375
|
-
MLFeatureTableKeyClass,
|
|
26478
|
+
CorpGroupKeyClass,
|
|
26479
|
+
DataPlatformKeyClass,
|
|
26480
|
+
CorpUserKeyClass,
|
|
26376
26481
|
DashboardKeyClass,
|
|
26377
|
-
|
|
26482
|
+
MLPrimaryKeyKeyClass,
|
|
26483
|
+
QueryKeyClass,
|
|
26484
|
+
OwnershipTypeKeyClass,
|
|
26485
|
+
DomainKeyClass,
|
|
26378
26486
|
MLFeatureKeyClass,
|
|
26379
|
-
|
|
26487
|
+
MLFeatureTableKeyClass,
|
|
26380
26488
|
DataHubViewKeyClass,
|
|
26489
|
+
DataHubActionKeyClass,
|
|
26490
|
+
DataHubUpgradeKeyClass,
|
|
26491
|
+
DataHubStepStateKeyClass,
|
|
26492
|
+
ERModelRelationshipKeyClass,
|
|
26493
|
+
DataHubPolicyKeyClass,
|
|
26381
26494
|
DataHubRetentionKeyClass,
|
|
26382
|
-
|
|
26383
|
-
|
|
26384
|
-
|
|
26495
|
+
DataContractKeyClass,
|
|
26496
|
+
DataProcessKeyClass,
|
|
26497
|
+
DataProcessInstanceKeyClass,
|
|
26498
|
+
GlossaryTermKeyClass,
|
|
26499
|
+
FormKeyClass,
|
|
26500
|
+
SchemaFieldKeyClass,
|
|
26501
|
+
TagKeyClass,
|
|
26502
|
+
PostKeyClass,
|
|
26503
|
+
DataHubIngestionSourceKeyClass,
|
|
26385
26504
|
InviteTokenKeyClass,
|
|
26386
|
-
|
|
26505
|
+
DataHubPersonaKeyClass,
|
|
26387
26506
|
ContainerKeyClass,
|
|
26507
|
+
IncidentKeyClass,
|
|
26388
26508
|
DataPlatformInstanceKeyClass,
|
|
26389
|
-
GlossaryNodeKeyClass,
|
|
26390
|
-
MLModelKeyClass,
|
|
26391
26509
|
TestKeyClass,
|
|
26392
|
-
PostKeyClass,
|
|
26393
|
-
GlossaryTermKeyClass,
|
|
26394
|
-
ERModelRelationshipKeyClass,
|
|
26395
|
-
ExecutionRequestKeyClass,
|
|
26396
|
-
QueryKeyClass,
|
|
26397
|
-
DataHubPersonaKeyClass,
|
|
26398
|
-
ChartKeyClass,
|
|
26399
26510
|
VersionSetKeyClass,
|
|
26400
|
-
|
|
26401
|
-
|
|
26402
|
-
CorpGroupKeyClass,
|
|
26403
|
-
DataProcessKeyClass,
|
|
26404
|
-
DataHubIngestionSourceKeyClass,
|
|
26405
|
-
GlobalSettingsKeyClass,
|
|
26406
|
-
EntityTypeInfoClass,
|
|
26407
|
-
EntityTypeKeyClass,
|
|
26408
|
-
OwnershipTypeInfoClass,
|
|
26511
|
+
DataHubSecretKeyClass,
|
|
26512
|
+
DataHubPersonaInfoClass,
|
|
26409
26513
|
DataPlatformInstancePropertiesClass,
|
|
26410
26514
|
IcebergWarehouseInfoClass,
|
|
26411
|
-
|
|
26515
|
+
DomainsClass,
|
|
26516
|
+
DomainPropertiesClass,
|
|
26517
|
+
OwnershipTypeInfoClass,
|
|
26518
|
+
SchemaFieldInfoClass,
|
|
26519
|
+
SchemaFieldAliasesClass,
|
|
26520
|
+
VersionSetPropertiesClass,
|
|
26521
|
+
TestResultsClass,
|
|
26522
|
+
TestInfoClass,
|
|
26523
|
+
DataProcessInfoClass,
|
|
26524
|
+
DataProcessInstanceOutputClass,
|
|
26525
|
+
DataProcessInstanceRelationshipsClass,
|
|
26526
|
+
DataProcessInstancePropertiesClass,
|
|
26527
|
+
DataProcessInstanceInputClass,
|
|
26528
|
+
DataProcessInstanceRunEventClass,
|
|
26529
|
+
EntityTypeKeyClass,
|
|
26530
|
+
EntityTypeInfoClass,
|
|
26531
|
+
EditableERModelRelationshipPropertiesClass,
|
|
26532
|
+
ERModelRelationshipPropertiesClass,
|
|
26533
|
+
CorpUserStatusClass,
|
|
26534
|
+
CorpUserCredentialsClass,
|
|
26535
|
+
CorpUserEditableInfoClass,
|
|
26536
|
+
CorpGroupInfoClass,
|
|
26537
|
+
CorpGroupEditableInfoClass,
|
|
26538
|
+
CorpUserInfoClass,
|
|
26539
|
+
CorpUserSettingsClass,
|
|
26540
|
+
RoleMembershipClass,
|
|
26541
|
+
GroupMembershipClass,
|
|
26542
|
+
NativeGroupMembershipClass,
|
|
26543
|
+
InviteTokenClass,
|
|
26544
|
+
RolePropertiesClass,
|
|
26545
|
+
ActorsClass,
|
|
26546
|
+
PostInfoClass,
|
|
26547
|
+
EditableDashboardPropertiesClass,
|
|
26548
|
+
DashboardInfoClass,
|
|
26549
|
+
DashboardUsageStatisticsClass,
|
|
26550
|
+
NotebookInfoClass,
|
|
26551
|
+
NotebookContentClass,
|
|
26552
|
+
EditableNotebookPropertiesClass,
|
|
26553
|
+
DataHubIngestionSourceInfoClass,
|
|
26554
|
+
StructuredPropertiesClass,
|
|
26555
|
+
StructuredPropertyDefinitionClass,
|
|
26556
|
+
StructuredPropertyKeyClass,
|
|
26557
|
+
StructuredPropertySettingsClass,
|
|
26558
|
+
TagPropertiesClass,
|
|
26559
|
+
EthicalConsiderationsClass,
|
|
26560
|
+
MLModelDeploymentPropertiesClass,
|
|
26561
|
+
MLPrimaryKeyPropertiesClass,
|
|
26562
|
+
TrainingDataClass,
|
|
26563
|
+
MLModelFactorPromptsClass,
|
|
26564
|
+
QuantitativeAnalysesClass,
|
|
26565
|
+
MLHyperParamClass,
|
|
26566
|
+
EditableMLFeatureTablePropertiesClass,
|
|
26567
|
+
EditableMLPrimaryKeyPropertiesClass,
|
|
26568
|
+
SourceCodeClass,
|
|
26569
|
+
EvaluationDataClass,
|
|
26570
|
+
MLTrainingRunPropertiesClass,
|
|
26571
|
+
EditableMLModelGroupPropertiesClass,
|
|
26572
|
+
MLFeatureTablePropertiesClass,
|
|
26573
|
+
MetricsClass,
|
|
26574
|
+
MLMetricClass,
|
|
26575
|
+
CaveatsAndRecommendationsClass,
|
|
26576
|
+
MLModelGroupPropertiesClass,
|
|
26577
|
+
MLFeaturePropertiesClass,
|
|
26578
|
+
IntendedUseClass,
|
|
26579
|
+
EditableMLFeaturePropertiesClass,
|
|
26580
|
+
MLModelPropertiesClass,
|
|
26581
|
+
EditableMLModelPropertiesClass,
|
|
26582
|
+
PlatformResourceKeyClass,
|
|
26583
|
+
PlatformResourceInfoClass,
|
|
26584
|
+
ChartUsageStatisticsClass,
|
|
26585
|
+
ChartQueryClass,
|
|
26586
|
+
EditableChartPropertiesClass,
|
|
26587
|
+
ChartInfoClass,
|
|
26588
|
+
DataHubRetentionConfigClass
|
|
26412
26589
|
]
|
|
26413
26590
|
|
|
26414
26591
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -26416,280 +26593,400 @@ ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
|
26416
26593
|
for aspect in ASPECT_CLASSES
|
|
26417
26594
|
}
|
|
26418
26595
|
|
|
26596
|
+
from typing import Literal
|
|
26419
26597
|
from typing_extensions import TypedDict
|
|
26420
26598
|
|
|
26421
26599
|
class AspectBag(TypedDict, total=False):
|
|
26422
|
-
|
|
26423
|
-
|
|
26424
|
-
|
|
26600
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
26601
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
26602
|
+
viewProperties: ViewPropertiesClass
|
|
26603
|
+
partitionsSummary: PartitionsSummaryClass
|
|
26604
|
+
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
26605
|
+
datasetProperties: DatasetPropertiesClass
|
|
26606
|
+
upstreamLineage: UpstreamLineageClass
|
|
26607
|
+
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
26608
|
+
datasetProfile: DatasetProfileClass
|
|
26609
|
+
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
26610
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
26611
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
26612
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
26613
|
+
businessAttributes: BusinessAttributesClass
|
|
26614
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
26615
|
+
querySubjects: QuerySubjectsClass
|
|
26616
|
+
queryProperties: QueryPropertiesClass
|
|
26617
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
26618
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
26619
|
+
dataTypeInfo: DataTypeInfoClass
|
|
26620
|
+
dataTypeKey: DataTypeKeyClass
|
|
26621
|
+
formInfo: FormInfoClass
|
|
26622
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
26425
26623
|
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
26426
|
-
|
|
26427
|
-
|
|
26428
|
-
|
|
26429
|
-
|
|
26430
|
-
|
|
26624
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
26625
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
26626
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
26627
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
26628
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
26629
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
26630
|
+
telemetryClientId: TelemetryClientIdClass
|
|
26631
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
26632
|
+
container: ContainerClass
|
|
26633
|
+
containerProperties: ContainerPropertiesClass
|
|
26634
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
26635
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
26636
|
+
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
26637
|
+
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
26638
|
+
assertionRunEvent: AssertionRunEventClass
|
|
26639
|
+
assertionActions: AssertionActionsClass
|
|
26640
|
+
assertionInfo: AssertionInfoClass
|
|
26641
|
+
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
26642
|
+
schemaMetadata: SchemaMetadataClass
|
|
26643
|
+
dataProductProperties: DataProductPropertiesClass
|
|
26644
|
+
dataProductKey: DataProductKeyClass
|
|
26645
|
+
dataContractStatus: DataContractStatusClass
|
|
26646
|
+
dataContractProperties: DataContractPropertiesClass
|
|
26647
|
+
operation: OperationClass
|
|
26648
|
+
status: StatusClass
|
|
26649
|
+
institutionalMemory: InstitutionalMemoryClass
|
|
26431
26650
|
access: AccessClass
|
|
26432
|
-
|
|
26651
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
26433
26652
|
siblings: SiblingsClass
|
|
26434
26653
|
incidentsSummary: IncidentsSummaryClass
|
|
26435
|
-
|
|
26436
|
-
|
|
26654
|
+
embed: EmbedClass
|
|
26655
|
+
ownership: OwnershipClass
|
|
26656
|
+
subTypes: SubTypesClass
|
|
26657
|
+
cost: CostClass
|
|
26437
26658
|
browsePaths: BrowsePathsClass
|
|
26438
|
-
|
|
26439
|
-
|
|
26440
|
-
|
|
26441
|
-
|
|
26659
|
+
versionProperties: VersionPropertiesClass
|
|
26660
|
+
origin: OriginClass
|
|
26661
|
+
deprecation: DeprecationClass
|
|
26662
|
+
glossaryTerms: GlossaryTermsClass
|
|
26442
26663
|
displayProperties: DisplayPropertiesClass
|
|
26443
|
-
|
|
26444
|
-
operation: OperationClass
|
|
26445
|
-
forms: FormsClass
|
|
26446
|
-
embed: EmbedClass
|
|
26664
|
+
browsePathsV2: BrowsePathsV2Class
|
|
26447
26665
|
globalTags: GlobalTagsClass
|
|
26448
26666
|
dataTransformLogic: DataTransformLogicClass
|
|
26449
|
-
|
|
26450
|
-
|
|
26451
|
-
|
|
26452
|
-
propertyDefinition: StructuredPropertyDefinitionClass
|
|
26453
|
-
structuredPropertySettings: StructuredPropertySettingsClass
|
|
26454
|
-
schemafieldInfo: SchemaFieldInfoClass
|
|
26455
|
-
schemaFieldAliases: SchemaFieldAliasesClass
|
|
26456
|
-
containerProperties: ContainerPropertiesClass
|
|
26457
|
-
editableContainerProperties: EditableContainerPropertiesClass
|
|
26458
|
-
container: ContainerClass
|
|
26459
|
-
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
26460
|
-
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
26461
|
-
businessAttributes: BusinessAttributesClass
|
|
26462
|
-
businessAttributeInfo: BusinessAttributeInfoClass
|
|
26463
|
-
businessAttributeKey: BusinessAttributeKeyClass
|
|
26464
|
-
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
26465
|
-
tagProperties: TagPropertiesClass
|
|
26466
|
-
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
26467
|
-
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
26468
|
-
dashboardInfo: DashboardInfoClass
|
|
26469
|
-
dataHubViewInfo: DataHubViewInfoClass
|
|
26470
|
-
dataContractStatus: DataContractStatusClass
|
|
26471
|
-
dataContractProperties: DataContractPropertiesClass
|
|
26472
|
-
roleProperties: RolePropertiesClass
|
|
26473
|
-
actors: ActorsClass
|
|
26474
|
-
schemaMetadata: SchemaMetadataClass
|
|
26475
|
-
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
26667
|
+
documentation: DocumentationClass
|
|
26668
|
+
inputFields: InputFieldsClass
|
|
26669
|
+
forms: FormsClass
|
|
26476
26670
|
dataPlatformInfo: DataPlatformInfoClass
|
|
26477
|
-
versionSetProperties: VersionSetPropertiesClass
|
|
26478
|
-
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
26479
26671
|
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
26480
26672
|
dataHubRoleInfo: DataHubRoleInfoClass
|
|
26481
|
-
|
|
26482
|
-
|
|
26673
|
+
incidentSource: IncidentSourceClass
|
|
26674
|
+
incidentInfo: IncidentInfoClass
|
|
26483
26675
|
versionInfo: VersionInfoClass
|
|
26484
|
-
|
|
26676
|
+
dataJobInfo: DataJobInfoClass
|
|
26485
26677
|
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
26678
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
26679
|
+
dataFlowInfo: DataFlowInfoClass
|
|
26486
26680
|
dataJobInputOutput: DataJobInputOutputClass
|
|
26487
|
-
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
26488
26681
|
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
26489
|
-
|
|
26490
|
-
|
|
26491
|
-
|
|
26492
|
-
|
|
26493
|
-
|
|
26494
|
-
|
|
26682
|
+
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
26683
|
+
telemetryKey: TelemetryKeyClass
|
|
26684
|
+
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
26685
|
+
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
26686
|
+
dataHubRoleKey: DataHubRoleKeyClass
|
|
26687
|
+
mlModelKey: MLModelKeyClass
|
|
26688
|
+
notebookKey: NotebookKeyClass
|
|
26689
|
+
roleKey: RoleKeyClass
|
|
26690
|
+
globalSettingsKey: GlobalSettingsKeyClass
|
|
26691
|
+
datasetKey: DatasetKeyClass
|
|
26692
|
+
chartKey: ChartKeyClass
|
|
26693
|
+
glossaryNodeKey: GlossaryNodeKeyClass
|
|
26694
|
+
assertionKey: AssertionKeyClass
|
|
26695
|
+
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
26696
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
26697
|
+
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
26698
|
+
dataFlowKey: DataFlowKeyClass
|
|
26699
|
+
dataJobKey: DataJobKeyClass
|
|
26700
|
+
corpGroupKey: CorpGroupKeyClass
|
|
26701
|
+
dataPlatformKey: DataPlatformKeyClass
|
|
26702
|
+
corpUserKey: CorpUserKeyClass
|
|
26703
|
+
dashboardKey: DashboardKeyClass
|
|
26704
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
26705
|
+
queryKey: QueryKeyClass
|
|
26706
|
+
ownershipTypeKey: OwnershipTypeKeyClass
|
|
26707
|
+
domainKey: DomainKeyClass
|
|
26708
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
26709
|
+
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
26710
|
+
dataHubViewKey: DataHubViewKeyClass
|
|
26711
|
+
dataHubActionKey: DataHubActionKeyClass
|
|
26712
|
+
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
26713
|
+
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
26714
|
+
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
26715
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
26716
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
26717
|
+
dataContractKey: DataContractKeyClass
|
|
26718
|
+
dataProcessKey: DataProcessKeyClass
|
|
26719
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
26720
|
+
glossaryTermKey: GlossaryTermKeyClass
|
|
26721
|
+
formKey: FormKeyClass
|
|
26722
|
+
schemaFieldKey: SchemaFieldKeyClass
|
|
26723
|
+
tagKey: TagKeyClass
|
|
26724
|
+
postKey: PostKeyClass
|
|
26725
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
26726
|
+
inviteTokenKey: InviteTokenKeyClass
|
|
26727
|
+
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
26728
|
+
containerKey: ContainerKeyClass
|
|
26729
|
+
incidentKey: IncidentKeyClass
|
|
26730
|
+
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
26731
|
+
testKey: TestKeyClass
|
|
26732
|
+
versionSetKey: VersionSetKeyClass
|
|
26733
|
+
dataHubSecretKey: DataHubSecretKeyClass
|
|
26734
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
26735
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
26736
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
26495
26737
|
domains: DomainsClass
|
|
26496
26738
|
domainProperties: DomainPropertiesClass
|
|
26497
|
-
|
|
26498
|
-
|
|
26499
|
-
|
|
26500
|
-
|
|
26739
|
+
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
26740
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
26741
|
+
schemaFieldAliases: SchemaFieldAliasesClass
|
|
26742
|
+
versionSetProperties: VersionSetPropertiesClass
|
|
26743
|
+
testResults: TestResultsClass
|
|
26744
|
+
testInfo: TestInfoClass
|
|
26745
|
+
dataProcessInfo: DataProcessInfoClass
|
|
26746
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
26747
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
26748
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
26749
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
26750
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
26751
|
+
entityTypeKey: EntityTypeKeyClass
|
|
26752
|
+
entityTypeInfo: EntityTypeInfoClass
|
|
26753
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
26754
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
26501
26755
|
corpUserStatus: CorpUserStatusClass
|
|
26756
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
26757
|
+
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
26502
26758
|
corpGroupInfo: CorpGroupInfoClass
|
|
26759
|
+
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
26760
|
+
corpUserInfo: CorpUserInfoClass
|
|
26761
|
+
corpUserSettings: CorpUserSettingsClass
|
|
26503
26762
|
roleMembership: RoleMembershipClass
|
|
26504
|
-
inviteToken: InviteTokenClass
|
|
26505
26763
|
groupMembership: GroupMembershipClass
|
|
26506
|
-
|
|
26507
|
-
|
|
26508
|
-
|
|
26509
|
-
|
|
26510
|
-
|
|
26511
|
-
|
|
26764
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
26765
|
+
inviteToken: InviteTokenClass
|
|
26766
|
+
roleProperties: RolePropertiesClass
|
|
26767
|
+
actors: ActorsClass
|
|
26768
|
+
postInfo: PostInfoClass
|
|
26769
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
26770
|
+
dashboardInfo: DashboardInfoClass
|
|
26771
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
26512
26772
|
notebookInfo: NotebookInfoClass
|
|
26513
26773
|
notebookContent: NotebookContentClass
|
|
26514
26774
|
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
26515
|
-
|
|
26516
|
-
|
|
26517
|
-
|
|
26518
|
-
|
|
26519
|
-
|
|
26520
|
-
|
|
26521
|
-
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
26522
|
-
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
26523
|
-
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
26775
|
+
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
26776
|
+
structuredProperties: StructuredPropertiesClass
|
|
26777
|
+
propertyDefinition: StructuredPropertyDefinitionClass
|
|
26778
|
+
structuredPropertyKey: StructuredPropertyKeyClass
|
|
26779
|
+
structuredPropertySettings: StructuredPropertySettingsClass
|
|
26780
|
+
tagProperties: TagPropertiesClass
|
|
26524
26781
|
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
26782
|
+
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
26783
|
+
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
26784
|
+
mlModelTrainingData: TrainingDataClass
|
|
26785
|
+
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
26525
26786
|
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
26526
|
-
|
|
26787
|
+
mlHyperParam: MLHyperParamClass
|
|
26788
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
26527
26789
|
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
26528
|
-
|
|
26529
|
-
mlMetric: MLMetricClass
|
|
26530
|
-
mlModelMetrics: MetricsClass
|
|
26531
|
-
mlModelTrainingData: TrainingDataClass
|
|
26532
|
-
intendedUse: IntendedUseClass
|
|
26790
|
+
sourceCode: SourceCodeClass
|
|
26533
26791
|
mlModelEvaluationData: EvaluationDataClass
|
|
26792
|
+
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
26793
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
26534
26794
|
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
26795
|
+
mlModelMetrics: MetricsClass
|
|
26796
|
+
mlMetric: MLMetricClass
|
|
26535
26797
|
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
26536
|
-
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
26537
26798
|
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
26538
|
-
|
|
26539
|
-
|
|
26540
|
-
|
|
26541
|
-
|
|
26542
|
-
|
|
26543
|
-
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
26544
|
-
upstreamLineage: UpstreamLineageClass
|
|
26545
|
-
datasetProfile: DatasetProfileClass
|
|
26546
|
-
partitionsSummary: PartitionsSummaryClass
|
|
26547
|
-
datasetProperties: DatasetPropertiesClass
|
|
26548
|
-
datasetDeprecation: DatasetDeprecationClass
|
|
26549
|
-
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
26550
|
-
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
26551
|
-
viewProperties: ViewPropertiesClass
|
|
26552
|
-
formInfo: FormInfoClass
|
|
26553
|
-
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
26554
|
-
dataTypeInfo: DataTypeInfoClass
|
|
26555
|
-
dataTypeKey: DataTypeKeyClass
|
|
26556
|
-
testResults: TestResultsClass
|
|
26557
|
-
testInfo: TestInfoClass
|
|
26558
|
-
platformResourceInfo: PlatformResourceInfoClass
|
|
26799
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
26800
|
+
intendedUse: IntendedUseClass
|
|
26801
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
26802
|
+
mlModelProperties: MLModelPropertiesClass
|
|
26803
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
26559
26804
|
platformResourceKey: PlatformResourceKeyClass
|
|
26560
|
-
|
|
26561
|
-
|
|
26562
|
-
|
|
26563
|
-
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
26564
|
-
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
26565
|
-
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
26566
|
-
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
26805
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
26806
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
26807
|
+
chartQuery: ChartQueryClass
|
|
26567
26808
|
editableChartProperties: EditableChartPropertiesClass
|
|
26568
26809
|
chartInfo: ChartInfoClass
|
|
26569
|
-
|
|
26570
|
-
chartUsageStatistics: ChartUsageStatisticsClass
|
|
26571
|
-
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
26572
|
-
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
26573
|
-
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
26574
|
-
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
26575
|
-
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
26576
|
-
mlModelGroupKey: MLModelGroupKeyClass
|
|
26577
|
-
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
26578
|
-
tagKey: TagKeyClass
|
|
26579
|
-
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
26580
|
-
dataHubActionKey: DataHubActionKeyClass
|
|
26581
|
-
dataHubRoleKey: DataHubRoleKeyClass
|
|
26582
|
-
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
26583
|
-
formKey: FormKeyClass
|
|
26584
|
-
notebookKey: NotebookKeyClass
|
|
26585
|
-
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
26586
|
-
incidentKey: IncidentKeyClass
|
|
26587
|
-
roleKey: RoleKeyClass
|
|
26588
|
-
domainKey: DomainKeyClass
|
|
26589
|
-
dataContractKey: DataContractKeyClass
|
|
26590
|
-
assertionKey: AssertionKeyClass
|
|
26591
|
-
datasetKey: DatasetKeyClass
|
|
26592
|
-
dataJobKey: DataJobKeyClass
|
|
26593
|
-
dataHubSecretKey: DataHubSecretKeyClass
|
|
26594
|
-
ownershipTypeKey: OwnershipTypeKeyClass
|
|
26595
|
-
schemaFieldKey: SchemaFieldKeyClass
|
|
26596
|
-
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
26597
|
-
dashboardKey: DashboardKeyClass
|
|
26598
|
-
telemetryKey: TelemetryKeyClass
|
|
26599
|
-
mlFeatureKey: MLFeatureKeyClass
|
|
26600
|
-
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
26601
|
-
dataHubViewKey: DataHubViewKeyClass
|
|
26602
|
-
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
26603
|
-
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
26604
|
-
dataFlowKey: DataFlowKeyClass
|
|
26605
|
-
corpUserKey: CorpUserKeyClass
|
|
26606
|
-
inviteTokenKey: InviteTokenKeyClass
|
|
26607
|
-
dataPlatformKey: DataPlatformKeyClass
|
|
26608
|
-
containerKey: ContainerKeyClass
|
|
26609
|
-
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
26610
|
-
glossaryNodeKey: GlossaryNodeKeyClass
|
|
26611
|
-
mlModelKey: MLModelKeyClass
|
|
26612
|
-
testKey: TestKeyClass
|
|
26613
|
-
postKey: PostKeyClass
|
|
26614
|
-
glossaryTermKey: GlossaryTermKeyClass
|
|
26615
|
-
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
26616
|
-
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
26617
|
-
queryKey: QueryKeyClass
|
|
26618
|
-
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
26619
|
-
chartKey: ChartKeyClass
|
|
26620
|
-
versionSetKey: VersionSetKeyClass
|
|
26621
|
-
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
26622
|
-
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
26623
|
-
corpGroupKey: CorpGroupKeyClass
|
|
26624
|
-
dataProcessKey: DataProcessKeyClass
|
|
26625
|
-
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
26626
|
-
globalSettingsKey: GlobalSettingsKeyClass
|
|
26627
|
-
entityTypeInfo: EntityTypeInfoClass
|
|
26628
|
-
entityTypeKey: EntityTypeKeyClass
|
|
26629
|
-
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
26630
|
-
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
26631
|
-
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
26632
|
-
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
26810
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
26633
26811
|
|
|
26634
26812
|
|
|
26635
26813
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
26636
|
-
'structuredProperty': StructuredPropertyKeyClass,
|
|
26637
26814
|
'businessAttribute': BusinessAttributeKeyClass,
|
|
26638
|
-
'dataProduct': DataProductKeyClass,
|
|
26639
26815
|
'dataType': DataTypeKeyClass,
|
|
26640
|
-
'
|
|
26641
|
-
'
|
|
26642
|
-
'
|
|
26643
|
-
'
|
|
26644
|
-
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
26645
|
-
'dataHubAction': DataHubActionKeyClass,
|
|
26816
|
+
'dataProduct': DataProductKeyClass,
|
|
26817
|
+
'telemetry': TelemetryKeyClass,
|
|
26818
|
+
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
26819
|
+
'dataHubConnection': DataHubConnectionKeyClass,
|
|
26646
26820
|
'dataHubRole': DataHubRoleKeyClass,
|
|
26647
|
-
'
|
|
26648
|
-
'form': FormKeyClass,
|
|
26821
|
+
'mlModel': MLModelKeyClass,
|
|
26649
26822
|
'notebook': NotebookKeyClass,
|
|
26650
|
-
'dataHubConnection': DataHubConnectionKeyClass,
|
|
26651
|
-
'incident': IncidentKeyClass,
|
|
26652
26823
|
'role': RoleKeyClass,
|
|
26653
|
-
'
|
|
26654
|
-
'dataContract': DataContractKeyClass,
|
|
26655
|
-
'assertion': AssertionKeyClass,
|
|
26824
|
+
'globalSettings': GlobalSettingsKeyClass,
|
|
26656
26825
|
'dataset': DatasetKeyClass,
|
|
26826
|
+
'chart': ChartKeyClass,
|
|
26827
|
+
'glossaryNode': GlossaryNodeKeyClass,
|
|
26828
|
+
'assertion': AssertionKeyClass,
|
|
26829
|
+
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
26830
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
26831
|
+
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
26832
|
+
'dataFlow': DataFlowKeyClass,
|
|
26657
26833
|
'dataJob': DataJobKeyClass,
|
|
26658
|
-
'
|
|
26659
|
-
'
|
|
26660
|
-
'
|
|
26661
|
-
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
26834
|
+
'corpGroup': CorpGroupKeyClass,
|
|
26835
|
+
'dataPlatform': DataPlatformKeyClass,
|
|
26836
|
+
'corpuser': CorpUserKeyClass,
|
|
26662
26837
|
'dashboard': DashboardKeyClass,
|
|
26663
|
-
'
|
|
26838
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
26839
|
+
'query': QueryKeyClass,
|
|
26840
|
+
'ownershipType': OwnershipTypeKeyClass,
|
|
26841
|
+
'domain': DomainKeyClass,
|
|
26664
26842
|
'mlFeature': MLFeatureKeyClass,
|
|
26665
|
-
'
|
|
26843
|
+
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
26666
26844
|
'dataHubView': DataHubViewKeyClass,
|
|
26845
|
+
'dataHubAction': DataHubActionKeyClass,
|
|
26846
|
+
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
26847
|
+
'dataHubStepState': DataHubStepStateKeyClass,
|
|
26848
|
+
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
26849
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
26667
26850
|
'dataHubRetention': DataHubRetentionKeyClass,
|
|
26668
|
-
'
|
|
26669
|
-
'
|
|
26670
|
-
'
|
|
26851
|
+
'dataContract': DataContractKeyClass,
|
|
26852
|
+
'dataProcess': DataProcessKeyClass,
|
|
26853
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
26854
|
+
'glossaryTerm': GlossaryTermKeyClass,
|
|
26855
|
+
'form': FormKeyClass,
|
|
26856
|
+
'schemaField': SchemaFieldKeyClass,
|
|
26857
|
+
'tag': TagKeyClass,
|
|
26858
|
+
'post': PostKeyClass,
|
|
26859
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
26671
26860
|
'inviteToken': InviteTokenKeyClass,
|
|
26672
|
-
'
|
|
26861
|
+
'dataHubPersona': DataHubPersonaKeyClass,
|
|
26673
26862
|
'container': ContainerKeyClass,
|
|
26863
|
+
'incident': IncidentKeyClass,
|
|
26674
26864
|
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
26675
|
-
'glossaryNode': GlossaryNodeKeyClass,
|
|
26676
|
-
'mlModel': MLModelKeyClass,
|
|
26677
26865
|
'test': TestKeyClass,
|
|
26678
|
-
'post': PostKeyClass,
|
|
26679
|
-
'glossaryTerm': GlossaryTermKeyClass,
|
|
26680
|
-
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
26681
|
-
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
26682
|
-
'query': QueryKeyClass,
|
|
26683
|
-
'dataHubPersona': DataHubPersonaKeyClass,
|
|
26684
|
-
'chart': ChartKeyClass,
|
|
26685
26866
|
'versionSet': VersionSetKeyClass,
|
|
26686
|
-
'
|
|
26687
|
-
'
|
|
26688
|
-
'
|
|
26689
|
-
'
|
|
26690
|
-
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
26691
|
-
'globalSettings': GlobalSettingsKeyClass,
|
|
26692
|
-
'entityType': EntityTypeKeyClass
|
|
26867
|
+
'dataHubSecret': DataHubSecretKeyClass,
|
|
26868
|
+
'entityType': EntityTypeKeyClass,
|
|
26869
|
+
'structuredProperty': StructuredPropertyKeyClass,
|
|
26870
|
+
'platformResource': PlatformResourceKeyClass
|
|
26693
26871
|
}
|
|
26694
26872
|
|
|
26873
|
+
ENTITY_TYPE_NAMES: List[str] = [
|
|
26874
|
+
'businessAttribute',
|
|
26875
|
+
'dataType',
|
|
26876
|
+
'dataProduct',
|
|
26877
|
+
'telemetry',
|
|
26878
|
+
'dataHubAccessToken',
|
|
26879
|
+
'dataHubConnection',
|
|
26880
|
+
'dataHubRole',
|
|
26881
|
+
'mlModel',
|
|
26882
|
+
'notebook',
|
|
26883
|
+
'role',
|
|
26884
|
+
'globalSettings',
|
|
26885
|
+
'dataset',
|
|
26886
|
+
'chart',
|
|
26887
|
+
'glossaryNode',
|
|
26888
|
+
'assertion',
|
|
26889
|
+
'dataHubExecutionRequest',
|
|
26890
|
+
'mlModelGroup',
|
|
26891
|
+
'mlModelDeployment',
|
|
26892
|
+
'dataFlow',
|
|
26893
|
+
'dataJob',
|
|
26894
|
+
'corpGroup',
|
|
26895
|
+
'dataPlatform',
|
|
26896
|
+
'corpuser',
|
|
26897
|
+
'dashboard',
|
|
26898
|
+
'mlPrimaryKey',
|
|
26899
|
+
'query',
|
|
26900
|
+
'ownershipType',
|
|
26901
|
+
'domain',
|
|
26902
|
+
'mlFeature',
|
|
26903
|
+
'mlFeatureTable',
|
|
26904
|
+
'dataHubView',
|
|
26905
|
+
'dataHubAction',
|
|
26906
|
+
'dataHubUpgrade',
|
|
26907
|
+
'dataHubStepState',
|
|
26908
|
+
'erModelRelationship',
|
|
26909
|
+
'dataHubPolicy',
|
|
26910
|
+
'dataHubRetention',
|
|
26911
|
+
'dataContract',
|
|
26912
|
+
'dataProcess',
|
|
26913
|
+
'dataProcessInstance',
|
|
26914
|
+
'glossaryTerm',
|
|
26915
|
+
'form',
|
|
26916
|
+
'schemaField',
|
|
26917
|
+
'tag',
|
|
26918
|
+
'post',
|
|
26919
|
+
'dataHubIngestionSource',
|
|
26920
|
+
'inviteToken',
|
|
26921
|
+
'dataHubPersona',
|
|
26922
|
+
'container',
|
|
26923
|
+
'incident',
|
|
26924
|
+
'dataPlatformInstance',
|
|
26925
|
+
'test',
|
|
26926
|
+
'versionSet',
|
|
26927
|
+
'dataHubSecret',
|
|
26928
|
+
'entityType',
|
|
26929
|
+
'structuredProperty',
|
|
26930
|
+
'platformResource'
|
|
26931
|
+
]
|
|
26932
|
+
EntityTypeName = Literal[
|
|
26933
|
+
'businessAttribute',
|
|
26934
|
+
'dataType',
|
|
26935
|
+
'dataProduct',
|
|
26936
|
+
'telemetry',
|
|
26937
|
+
'dataHubAccessToken',
|
|
26938
|
+
'dataHubConnection',
|
|
26939
|
+
'dataHubRole',
|
|
26940
|
+
'mlModel',
|
|
26941
|
+
'notebook',
|
|
26942
|
+
'role',
|
|
26943
|
+
'globalSettings',
|
|
26944
|
+
'dataset',
|
|
26945
|
+
'chart',
|
|
26946
|
+
'glossaryNode',
|
|
26947
|
+
'assertion',
|
|
26948
|
+
'dataHubExecutionRequest',
|
|
26949
|
+
'mlModelGroup',
|
|
26950
|
+
'mlModelDeployment',
|
|
26951
|
+
'dataFlow',
|
|
26952
|
+
'dataJob',
|
|
26953
|
+
'corpGroup',
|
|
26954
|
+
'dataPlatform',
|
|
26955
|
+
'corpuser',
|
|
26956
|
+
'dashboard',
|
|
26957
|
+
'mlPrimaryKey',
|
|
26958
|
+
'query',
|
|
26959
|
+
'ownershipType',
|
|
26960
|
+
'domain',
|
|
26961
|
+
'mlFeature',
|
|
26962
|
+
'mlFeatureTable',
|
|
26963
|
+
'dataHubView',
|
|
26964
|
+
'dataHubAction',
|
|
26965
|
+
'dataHubUpgrade',
|
|
26966
|
+
'dataHubStepState',
|
|
26967
|
+
'erModelRelationship',
|
|
26968
|
+
'dataHubPolicy',
|
|
26969
|
+
'dataHubRetention',
|
|
26970
|
+
'dataContract',
|
|
26971
|
+
'dataProcess',
|
|
26972
|
+
'dataProcessInstance',
|
|
26973
|
+
'glossaryTerm',
|
|
26974
|
+
'form',
|
|
26975
|
+
'schemaField',
|
|
26976
|
+
'tag',
|
|
26977
|
+
'post',
|
|
26978
|
+
'dataHubIngestionSource',
|
|
26979
|
+
'inviteToken',
|
|
26980
|
+
'dataHubPersona',
|
|
26981
|
+
'container',
|
|
26982
|
+
'incident',
|
|
26983
|
+
'dataPlatformInstance',
|
|
26984
|
+
'test',
|
|
26985
|
+
'versionSet',
|
|
26986
|
+
'dataHubSecret',
|
|
26987
|
+
'entityType',
|
|
26988
|
+
'structuredProperty',
|
|
26989
|
+
'platformResource'
|
|
26990
|
+
]
|
|
26991
|
+
|
|
26695
26992
|
# fmt: on
|