acryl-datahub 1.1.1rc4__py3-none-any.whl → 1.2.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-1.1.1rc4.dist-info → acryl_datahub-1.2.0.dist-info}/METADATA +2558 -2531
- {acryl_datahub-1.1.1rc4.dist-info → acryl_datahub-1.2.0.dist-info}/RECORD +221 -187
- {acryl_datahub-1.1.1rc4.dist-info → acryl_datahub-1.2.0.dist-info}/entry_points.txt +2 -0
- datahub/_version.py +1 -1
- datahub/api/entities/dataset/dataset.py +1 -1
- datahub/api/entities/external/__init__.py +0 -0
- datahub/api/entities/external/external_entities.py +239 -0
- datahub/api/entities/external/external_tag.py +145 -0
- datahub/api/entities/external/lake_formation_external_entites.py +161 -0
- datahub/api/entities/external/restricted_text.py +247 -0
- datahub/api/entities/external/unity_catalog_external_entites.py +173 -0
- datahub/cli/check_cli.py +88 -7
- datahub/cli/cli_utils.py +63 -0
- datahub/cli/container_cli.py +5 -0
- datahub/cli/delete_cli.py +124 -27
- datahub/cli/docker_check.py +107 -12
- datahub/cli/docker_cli.py +149 -227
- datahub/cli/exists_cli.py +0 -2
- datahub/cli/get_cli.py +0 -2
- datahub/cli/iceberg_cli.py +5 -0
- datahub/cli/ingest_cli.py +3 -15
- datahub/cli/migrate.py +2 -0
- datahub/cli/put_cli.py +1 -4
- datahub/cli/quickstart_versioning.py +50 -7
- datahub/cli/specific/assertions_cli.py +0 -4
- datahub/cli/specific/datacontract_cli.py +0 -3
- datahub/cli/specific/dataproduct_cli.py +0 -11
- datahub/cli/specific/dataset_cli.py +1 -8
- datahub/cli/specific/forms_cli.py +0 -4
- datahub/cli/specific/group_cli.py +0 -2
- datahub/cli/specific/structuredproperties_cli.py +1 -4
- datahub/cli/specific/user_cli.py +0 -2
- datahub/cli/state_cli.py +0 -2
- datahub/cli/timeline_cli.py +0 -2
- datahub/emitter/rest_emitter.py +70 -12
- datahub/entrypoints.py +4 -3
- datahub/ingestion/api/decorators.py +15 -3
- datahub/ingestion/api/report.py +332 -3
- datahub/ingestion/api/sink.py +3 -0
- datahub/ingestion/api/source.py +48 -44
- datahub/ingestion/autogenerated/__init__.py +0 -0
- datahub/ingestion/autogenerated/capability_summary.json +3449 -0
- datahub/ingestion/autogenerated/lineage.json +401 -0
- datahub/ingestion/autogenerated/lineage_helper.py +177 -0
- datahub/ingestion/extractor/schema_util.py +13 -4
- datahub/ingestion/glossary/classification_mixin.py +5 -0
- datahub/ingestion/graph/client.py +100 -15
- datahub/ingestion/graph/config.py +1 -0
- datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +20 -10
- datahub/ingestion/run/pipeline.py +54 -2
- datahub/ingestion/sink/datahub_rest.py +13 -0
- datahub/ingestion/source/abs/source.py +1 -1
- datahub/ingestion/source/aws/aws_common.py +4 -0
- datahub/ingestion/source/aws/glue.py +489 -244
- datahub/ingestion/source/aws/tag_entities.py +292 -0
- datahub/ingestion/source/azure/azure_common.py +2 -2
- datahub/ingestion/source/bigquery_v2/bigquery.py +50 -23
- datahub/ingestion/source/bigquery_v2/bigquery_config.py +1 -1
- datahub/ingestion/source/bigquery_v2/bigquery_queries.py +1 -0
- datahub/ingestion/source/bigquery_v2/bigquery_schema_gen.py +2 -0
- datahub/ingestion/source/bigquery_v2/common.py +1 -1
- datahub/ingestion/source/bigquery_v2/profiler.py +4 -2
- datahub/ingestion/source/bigquery_v2/queries.py +3 -3
- datahub/ingestion/source/cassandra/cassandra.py +1 -1
- datahub/ingestion/source/cassandra/cassandra_profiling.py +6 -5
- datahub/ingestion/source/common/subtypes.py +45 -0
- datahub/ingestion/source/data_lake_common/object_store.py +115 -27
- datahub/ingestion/source/data_lake_common/path_spec.py +10 -21
- datahub/ingestion/source/datahub/datahub_database_reader.py +1 -2
- datahub/ingestion/source/dbt/dbt_cloud.py +10 -2
- datahub/ingestion/source/dbt/dbt_common.py +6 -2
- datahub/ingestion/source/dbt/dbt_core.py +3 -0
- datahub/ingestion/source/debug/__init__.py +0 -0
- datahub/ingestion/source/debug/datahub_debug.py +300 -0
- datahub/ingestion/source/dremio/dremio_api.py +114 -73
- datahub/ingestion/source/dremio/dremio_config.py +2 -0
- datahub/ingestion/source/dremio/dremio_reporting.py +23 -2
- datahub/ingestion/source/dremio/dremio_source.py +94 -81
- datahub/ingestion/source/dremio/dremio_sql_queries.py +82 -21
- datahub/ingestion/source/file.py +3 -0
- datahub/ingestion/source/fivetran/fivetran.py +34 -26
- datahub/ingestion/source/gcs/gcs_source.py +13 -2
- datahub/ingestion/source/ge_data_profiler.py +76 -28
- datahub/ingestion/source/ge_profiling_config.py +11 -0
- datahub/ingestion/source/hex/api.py +26 -1
- datahub/ingestion/source/iceberg/iceberg.py +3 -1
- datahub/ingestion/source/identity/azure_ad.py +1 -1
- datahub/ingestion/source/identity/okta.py +1 -14
- datahub/ingestion/source/kafka/kafka.py +16 -0
- datahub/ingestion/source/kafka_connect/sink_connectors.py +156 -47
- datahub/ingestion/source/kafka_connect/source_connectors.py +59 -4
- datahub/ingestion/source/looker/looker_source.py +1 -0
- datahub/ingestion/source/mlflow.py +11 -1
- datahub/ingestion/source/mock_data/__init__.py +0 -0
- datahub/ingestion/source/mock_data/datahub_mock_data.py +472 -0
- datahub/ingestion/source/mock_data/datahub_mock_data_report.py +12 -0
- datahub/ingestion/source/mock_data/table_naming_helper.py +91 -0
- datahub/ingestion/source/nifi.py +1 -1
- datahub/ingestion/source/powerbi/powerbi.py +1 -5
- datahub/ingestion/source/powerbi/rest_api_wrapper/powerbi_api.py +0 -1
- datahub/ingestion/source/powerbi_report_server/report_server.py +0 -23
- datahub/ingestion/source/preset.py +2 -2
- datahub/ingestion/source/qlik_sense/qlik_sense.py +1 -0
- datahub/ingestion/source/redshift/redshift.py +21 -1
- datahub/ingestion/source/redshift/usage.py +4 -3
- datahub/ingestion/source/s3/report.py +4 -2
- datahub/ingestion/source/s3/source.py +367 -115
- datahub/ingestion/source/sac/sac.py +3 -1
- datahub/ingestion/source/salesforce.py +6 -3
- datahub/ingestion/source/sigma/sigma.py +7 -1
- datahub/ingestion/source/slack/slack.py +2 -1
- datahub/ingestion/source/snowflake/snowflake_config.py +30 -7
- datahub/ingestion/source/snowflake/snowflake_queries.py +348 -82
- datahub/ingestion/source/snowflake/snowflake_summary.py +5 -0
- datahub/ingestion/source/snowflake/snowflake_usage_v2.py +8 -2
- datahub/ingestion/source/snowflake/snowflake_utils.py +2 -7
- datahub/ingestion/source/snowflake/snowflake_v2.py +16 -2
- datahub/ingestion/source/snowflake/stored_proc_lineage.py +143 -0
- datahub/ingestion/source/sql/athena.py +119 -11
- datahub/ingestion/source/sql/athena_properties_extractor.py +777 -0
- datahub/ingestion/source/sql/clickhouse.py +3 -1
- datahub/ingestion/source/sql/cockroachdb.py +0 -1
- datahub/ingestion/source/sql/hana.py +3 -1
- datahub/ingestion/source/sql/hive_metastore.py +3 -11
- datahub/ingestion/source/sql/mariadb.py +0 -1
- datahub/ingestion/source/sql/mssql/source.py +239 -34
- datahub/ingestion/source/sql/mysql.py +0 -1
- datahub/ingestion/source/sql/oracle.py +1 -1
- datahub/ingestion/source/sql/postgres.py +0 -1
- datahub/ingestion/source/sql/sql_common.py +121 -34
- datahub/ingestion/source/sql/sql_generic_profiler.py +2 -1
- datahub/ingestion/source/sql/teradata.py +997 -235
- datahub/ingestion/source/sql/vertica.py +10 -6
- datahub/ingestion/source/sql_queries.py +2 -2
- datahub/ingestion/source/state/stateful_ingestion_base.py +1 -1
- datahub/ingestion/source/superset.py +58 -3
- datahub/ingestion/source/tableau/tableau.py +58 -37
- datahub/ingestion/source/tableau/tableau_common.py +4 -2
- datahub/ingestion/source/tableau/tableau_constant.py +0 -4
- datahub/ingestion/source/unity/config.py +5 -0
- datahub/ingestion/source/unity/proxy.py +118 -0
- datahub/ingestion/source/unity/source.py +195 -17
- datahub/ingestion/source/unity/tag_entities.py +295 -0
- datahub/ingestion/source/usage/clickhouse_usage.py +4 -1
- datahub/ingestion/source/usage/starburst_trino_usage.py +3 -0
- datahub/ingestion/transformer/add_dataset_ownership.py +18 -2
- datahub/integrations/assertion/snowflake/compiler.py +4 -3
- datahub/metadata/_internal_schema_classes.py +1433 -546
- datahub/metadata/_urns/urn_defs.py +1826 -1658
- datahub/metadata/com/linkedin/pegasus2avro/application/__init__.py +19 -0
- datahub/metadata/com/linkedin/pegasus2avro/identity/__init__.py +2 -0
- datahub/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
- datahub/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +4 -0
- datahub/metadata/com/linkedin/pegasus2avro/module/__init__.py +27 -0
- datahub/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +4 -0
- datahub/metadata/com/linkedin/pegasus2avro/template/__init__.py +25 -0
- datahub/metadata/schema.avsc +17736 -17112
- datahub/metadata/schemas/ApplicationKey.avsc +31 -0
- datahub/metadata/schemas/ApplicationProperties.avsc +72 -0
- datahub/metadata/schemas/Applications.avsc +38 -0
- datahub/metadata/schemas/ChartKey.avsc +1 -0
- datahub/metadata/schemas/ContainerKey.avsc +1 -0
- datahub/metadata/schemas/ContainerProperties.avsc +8 -0
- datahub/metadata/schemas/CorpUserSettings.avsc +41 -0
- datahub/metadata/schemas/DashboardKey.avsc +1 -0
- datahub/metadata/schemas/DataFlowInfo.avsc +8 -0
- datahub/metadata/schemas/DataFlowKey.avsc +1 -0
- datahub/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
- datahub/metadata/schemas/DataHubPageModuleProperties.avsc +200 -0
- datahub/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
- datahub/metadata/schemas/DataHubPageTemplateProperties.avsc +175 -0
- datahub/metadata/schemas/DataHubPolicyInfo.avsc +12 -1
- datahub/metadata/schemas/DataJobInfo.avsc +8 -0
- datahub/metadata/schemas/DataJobKey.avsc +1 -0
- datahub/metadata/schemas/DataProcessKey.avsc +8 -0
- datahub/metadata/schemas/DataProductKey.avsc +1 -0
- datahub/metadata/schemas/DataProductProperties.avsc +1 -1
- datahub/metadata/schemas/DatasetKey.avsc +11 -1
- datahub/metadata/schemas/GlobalSettingsInfo.avsc +62 -0
- datahub/metadata/schemas/GlossaryTermKey.avsc +1 -0
- datahub/metadata/schemas/IcebergWarehouseInfo.avsc +8 -0
- datahub/metadata/schemas/LogicalParent.avsc +140 -0
- datahub/metadata/schemas/MLFeatureKey.avsc +1 -0
- datahub/metadata/schemas/MLFeatureTableKey.avsc +1 -0
- datahub/metadata/schemas/MLModelDeploymentKey.avsc +8 -0
- datahub/metadata/schemas/MLModelGroupKey.avsc +9 -0
- datahub/metadata/schemas/MLModelKey.avsc +9 -0
- datahub/metadata/schemas/MLPrimaryKeyKey.avsc +1 -0
- datahub/metadata/schemas/MetadataChangeEvent.avsc +20 -1
- datahub/metadata/schemas/NotebookKey.avsc +1 -0
- datahub/metadata/schemas/QuerySubjects.avsc +1 -12
- datahub/metadata/schemas/SchemaFieldKey.avsc +2 -1
- datahub/metadata/schemas/__init__.py +3 -3
- datahub/sdk/__init__.py +2 -0
- datahub/sdk/_all_entities.py +7 -0
- datahub/sdk/_shared.py +116 -0
- datahub/sdk/chart.py +315 -0
- datahub/sdk/container.py +7 -0
- datahub/sdk/dashboard.py +432 -0
- datahub/sdk/dataflow.py +7 -0
- datahub/sdk/datajob.py +45 -13
- datahub/sdk/dataset.py +8 -2
- datahub/sdk/entity_client.py +82 -2
- datahub/sdk/lineage_client.py +683 -82
- datahub/sdk/main_client.py +46 -16
- datahub/sdk/mlmodel.py +101 -38
- datahub/sdk/mlmodelgroup.py +7 -0
- datahub/sdk/search_client.py +4 -3
- datahub/specific/chart.py +1 -1
- datahub/specific/dataproduct.py +4 -0
- datahub/sql_parsing/sql_parsing_aggregator.py +29 -17
- datahub/sql_parsing/sqlglot_lineage.py +62 -13
- datahub/telemetry/telemetry.py +17 -11
- datahub/testing/sdk_v2_helpers.py +7 -1
- datahub/upgrade/upgrade.py +46 -13
- datahub/utilities/server_config_util.py +8 -0
- datahub/utilities/sqlalchemy_query_combiner.py +5 -2
- datahub/utilities/stats_collections.py +4 -0
- {acryl_datahub-1.1.1rc4.dist-info → acryl_datahub-1.2.0.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.1.1rc4.dist-info → acryl_datahub-1.2.0.dist-info}/licenses/LICENSE +0 -0
- {acryl_datahub-1.1.1rc4.dist-info → acryl_datahub-1.2.0.dist-info}/top_level.txt +0 -0
|
@@ -271,6 +271,136 @@ class DataHubAccessTokenInfoClass(_Aspect):
|
|
|
271
271
|
self._inner_dict['description'] = value
|
|
272
272
|
|
|
273
273
|
|
|
274
|
+
class ApplicationKeyClass(_Aspect):
|
|
275
|
+
"""Key for a Query"""
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
ASPECT_NAME = 'applicationKey'
|
|
279
|
+
ASPECT_INFO = {'keyForEntity': 'application', 'entityCategory': 'core', 'entityAspects': ['applicationProperties', 'ownership', 'glossaryTerms', 'globalTags', 'domains', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
280
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.ApplicationKey")
|
|
281
|
+
|
|
282
|
+
def __init__(self,
|
|
283
|
+
id: str,
|
|
284
|
+
):
|
|
285
|
+
super().__init__()
|
|
286
|
+
|
|
287
|
+
self.id = id
|
|
288
|
+
|
|
289
|
+
def _restore_defaults(self) -> None:
|
|
290
|
+
self.id = str()
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
@property
|
|
294
|
+
def id(self) -> str:
|
|
295
|
+
"""A unique id for the Application."""
|
|
296
|
+
return self._inner_dict.get('id') # type: ignore
|
|
297
|
+
|
|
298
|
+
@id.setter
|
|
299
|
+
def id(self, value: str) -> None:
|
|
300
|
+
self._inner_dict['id'] = value
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
class ApplicationPropertiesClass(_Aspect):
|
|
304
|
+
"""The main properties of an Application"""
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
ASPECT_NAME = 'applicationProperties'
|
|
308
|
+
ASPECT_INFO = {}
|
|
309
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.ApplicationProperties")
|
|
310
|
+
|
|
311
|
+
def __init__(self,
|
|
312
|
+
customProperties: Optional[Dict[str, str]]=None,
|
|
313
|
+
externalUrl: Union[None, str]=None,
|
|
314
|
+
name: Union[None, str]=None,
|
|
315
|
+
description: Union[None, str]=None,
|
|
316
|
+
):
|
|
317
|
+
super().__init__()
|
|
318
|
+
|
|
319
|
+
if customProperties is None:
|
|
320
|
+
# default: {}
|
|
321
|
+
self.customProperties = dict()
|
|
322
|
+
else:
|
|
323
|
+
self.customProperties = customProperties
|
|
324
|
+
self.externalUrl = externalUrl
|
|
325
|
+
self.name = name
|
|
326
|
+
self.description = description
|
|
327
|
+
|
|
328
|
+
def _restore_defaults(self) -> None:
|
|
329
|
+
self.customProperties = dict()
|
|
330
|
+
self.externalUrl = self.RECORD_SCHEMA.fields_dict["externalUrl"].default
|
|
331
|
+
self.name = self.RECORD_SCHEMA.fields_dict["name"].default
|
|
332
|
+
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
@property
|
|
336
|
+
def customProperties(self) -> Dict[str, str]:
|
|
337
|
+
"""Custom property bag."""
|
|
338
|
+
return self._inner_dict.get('customProperties') # type: ignore
|
|
339
|
+
|
|
340
|
+
@customProperties.setter
|
|
341
|
+
def customProperties(self, value: Dict[str, str]) -> None:
|
|
342
|
+
self._inner_dict['customProperties'] = value
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
@property
|
|
346
|
+
def externalUrl(self) -> Union[None, str]:
|
|
347
|
+
"""URL where the reference exist"""
|
|
348
|
+
return self._inner_dict.get('externalUrl') # type: ignore
|
|
349
|
+
|
|
350
|
+
@externalUrl.setter
|
|
351
|
+
def externalUrl(self, value: Union[None, str]) -> None:
|
|
352
|
+
self._inner_dict['externalUrl'] = value
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
@property
|
|
356
|
+
def name(self) -> Union[None, str]:
|
|
357
|
+
"""Display name of the Application"""
|
|
358
|
+
return self._inner_dict.get('name') # type: ignore
|
|
359
|
+
|
|
360
|
+
@name.setter
|
|
361
|
+
def name(self, value: Union[None, str]) -> None:
|
|
362
|
+
self._inner_dict['name'] = value
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
@property
|
|
366
|
+
def description(self) -> Union[None, str]:
|
|
367
|
+
"""Documentation of the application"""
|
|
368
|
+
return self._inner_dict.get('description') # type: ignore
|
|
369
|
+
|
|
370
|
+
@description.setter
|
|
371
|
+
def description(self, value: Union[None, str]) -> None:
|
|
372
|
+
self._inner_dict['description'] = value
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
class ApplicationsClass(_Aspect):
|
|
376
|
+
"""Links from an Asset to its Applications"""
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
ASPECT_NAME = 'applications'
|
|
380
|
+
ASPECT_INFO = {}
|
|
381
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.application.Applications")
|
|
382
|
+
|
|
383
|
+
def __init__(self,
|
|
384
|
+
applications: List[str],
|
|
385
|
+
):
|
|
386
|
+
super().__init__()
|
|
387
|
+
|
|
388
|
+
self.applications = applications
|
|
389
|
+
|
|
390
|
+
def _restore_defaults(self) -> None:
|
|
391
|
+
self.applications = list()
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
@property
|
|
395
|
+
def applications(self) -> List[str]:
|
|
396
|
+
"""The Applications attached to an Asset"""
|
|
397
|
+
return self._inner_dict.get('applications') # type: ignore
|
|
398
|
+
|
|
399
|
+
@applications.setter
|
|
400
|
+
def applications(self, value: List[str]) -> None:
|
|
401
|
+
self._inner_dict['applications'] = value
|
|
402
|
+
|
|
403
|
+
|
|
274
404
|
class AssertionActionClass(DictWrapper):
|
|
275
405
|
"""The Actions about an Assertion.
|
|
276
406
|
In the future, we'll likely extend this model to support additional
|
|
@@ -4460,6 +4590,18 @@ class FabricTypeClass(object):
|
|
|
4460
4590
|
RVW = "RVW"
|
|
4461
4591
|
"""Designates review fabrics"""
|
|
4462
4592
|
|
|
4593
|
+
PRD = "PRD"
|
|
4594
|
+
"""Alternative Prod spelling"""
|
|
4595
|
+
|
|
4596
|
+
TST = "TST"
|
|
4597
|
+
"""Alternative Test spelling"""
|
|
4598
|
+
|
|
4599
|
+
SIT = "SIT"
|
|
4600
|
+
"""System Integration Testing"""
|
|
4601
|
+
|
|
4602
|
+
SBX = "SBX"
|
|
4603
|
+
"""Alternative spelling for sandbox"""
|
|
4604
|
+
|
|
4463
4605
|
SANDBOX = "SANDBOX"
|
|
4464
4606
|
"""Designates sandbox fabrics"""
|
|
4465
4607
|
|
|
@@ -10147,7 +10289,7 @@ class DataProductKeyClass(_Aspect):
|
|
|
10147
10289
|
|
|
10148
10290
|
|
|
10149
10291
|
ASPECT_NAME = 'dataProductKey'
|
|
10150
|
-
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
10292
|
+
ASPECT_INFO = {'keyForEntity': 'dataProduct', 'entityCategory': 'core', 'entityAspects': ['ownership', 'glossaryTerms', 'globalTags', 'domains', 'applications', 'dataProductProperties', 'institutionalMemory', 'status', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
10151
10293
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.dataproduct.DataProductKey")
|
|
10152
10294
|
|
|
10153
10295
|
def __init__(self,
|
|
@@ -10238,7 +10380,7 @@ class DataProductPropertiesClass(_Aspect):
|
|
|
10238
10380
|
|
|
10239
10381
|
@property
|
|
10240
10382
|
def description(self) -> Union[None, str]:
|
|
10241
|
-
"""Documentation of the
|
|
10383
|
+
"""Documentation of the data product"""
|
|
10242
10384
|
return self._inner_dict.get('description') # type: ignore
|
|
10243
10385
|
|
|
10244
10386
|
@description.setter
|
|
@@ -13980,6 +14122,44 @@ class CorpUserEditableInfoClass(_Aspect):
|
|
|
13980
14122
|
self._inner_dict['informationSources'] = value
|
|
13981
14123
|
|
|
13982
14124
|
|
|
14125
|
+
class CorpUserHomePageSettingsClass(DictWrapper):
|
|
14126
|
+
"""Settings related to the home page for a user"""
|
|
14127
|
+
|
|
14128
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.identity.CorpUserHomePageSettings")
|
|
14129
|
+
def __init__(self,
|
|
14130
|
+
pageTemplate: Union[None, str]=None,
|
|
14131
|
+
dismissedAnnouncements: Union[None, List[str]]=None,
|
|
14132
|
+
):
|
|
14133
|
+
super().__init__()
|
|
14134
|
+
|
|
14135
|
+
self.pageTemplate = pageTemplate
|
|
14136
|
+
self.dismissedAnnouncements = dismissedAnnouncements
|
|
14137
|
+
|
|
14138
|
+
def _restore_defaults(self) -> None:
|
|
14139
|
+
self.pageTemplate = self.RECORD_SCHEMA.fields_dict["pageTemplate"].default
|
|
14140
|
+
self.dismissedAnnouncements = self.RECORD_SCHEMA.fields_dict["dismissedAnnouncements"].default
|
|
14141
|
+
|
|
14142
|
+
|
|
14143
|
+
@property
|
|
14144
|
+
def pageTemplate(self) -> Union[None, str]:
|
|
14145
|
+
"""The page template that will be rendered in the UI by default for this user"""
|
|
14146
|
+
return self._inner_dict.get('pageTemplate') # type: ignore
|
|
14147
|
+
|
|
14148
|
+
@pageTemplate.setter
|
|
14149
|
+
def pageTemplate(self, value: Union[None, str]) -> None:
|
|
14150
|
+
self._inner_dict['pageTemplate'] = value
|
|
14151
|
+
|
|
14152
|
+
|
|
14153
|
+
@property
|
|
14154
|
+
def dismissedAnnouncements(self) -> Union[None, List[str]]:
|
|
14155
|
+
"""The list of announcement urns that have been dismissed by the user"""
|
|
14156
|
+
return self._inner_dict.get('dismissedAnnouncements') # type: ignore
|
|
14157
|
+
|
|
14158
|
+
@dismissedAnnouncements.setter
|
|
14159
|
+
def dismissedAnnouncements(self, value: Union[None, List[str]]) -> None:
|
|
14160
|
+
self._inner_dict['dismissedAnnouncements'] = value
|
|
14161
|
+
|
|
14162
|
+
|
|
13983
14163
|
class CorpUserInfoClass(_Aspect):
|
|
13984
14164
|
"""Linkedin corp user information"""
|
|
13985
14165
|
|
|
@@ -14185,17 +14365,20 @@ class CorpUserSettingsClass(_Aspect):
|
|
|
14185
14365
|
appearance: "CorpUserAppearanceSettingsClass",
|
|
14186
14366
|
views: Union[None, "CorpUserViewsSettingsClass"]=None,
|
|
14187
14367
|
notificationSettings: Union[None, "NotificationSettingsClass"]=None,
|
|
14368
|
+
homePage: Union[None, "CorpUserHomePageSettingsClass"]=None,
|
|
14188
14369
|
):
|
|
14189
14370
|
super().__init__()
|
|
14190
14371
|
|
|
14191
14372
|
self.appearance = appearance
|
|
14192
14373
|
self.views = views
|
|
14193
14374
|
self.notificationSettings = notificationSettings
|
|
14375
|
+
self.homePage = homePage
|
|
14194
14376
|
|
|
14195
14377
|
def _restore_defaults(self) -> None:
|
|
14196
14378
|
self.appearance = CorpUserAppearanceSettingsClass._construct_with_defaults()
|
|
14197
14379
|
self.views = self.RECORD_SCHEMA.fields_dict["views"].default
|
|
14198
14380
|
self.notificationSettings = self.RECORD_SCHEMA.fields_dict["notificationSettings"].default
|
|
14381
|
+
self.homePage = self.RECORD_SCHEMA.fields_dict["homePage"].default
|
|
14199
14382
|
|
|
14200
14383
|
|
|
14201
14384
|
@property
|
|
@@ -14228,6 +14411,16 @@ class CorpUserSettingsClass(_Aspect):
|
|
|
14228
14411
|
self._inner_dict['notificationSettings'] = value
|
|
14229
14412
|
|
|
14230
14413
|
|
|
14414
|
+
@property
|
|
14415
|
+
def homePage(self) -> Union[None, "CorpUserHomePageSettingsClass"]:
|
|
14416
|
+
"""Settings related to the home page for a user"""
|
|
14417
|
+
return self._inner_dict.get('homePage') # type: ignore
|
|
14418
|
+
|
|
14419
|
+
@homePage.setter
|
|
14420
|
+
def homePage(self, value: Union[None, "CorpUserHomePageSettingsClass"]) -> None:
|
|
14421
|
+
self._inner_dict['homePage'] = value
|
|
14422
|
+
|
|
14423
|
+
|
|
14231
14424
|
class CorpUserStatusClass(_Aspect):
|
|
14232
14425
|
"""The status of the user, e.g. provisioned, active, suspended, etc."""
|
|
14233
14426
|
|
|
@@ -15055,6 +15248,35 @@ class DataHubIngestionSourceSourceTypeClass(object):
|
|
|
15055
15248
|
|
|
15056
15249
|
|
|
15057
15250
|
|
|
15251
|
+
class LogicalParentClass(_Aspect):
|
|
15252
|
+
# No docs available.
|
|
15253
|
+
|
|
15254
|
+
|
|
15255
|
+
ASPECT_NAME = 'logicalParent'
|
|
15256
|
+
ASPECT_INFO = {}
|
|
15257
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.logical.LogicalParent")
|
|
15258
|
+
|
|
15259
|
+
def __init__(self,
|
|
15260
|
+
parent: "EdgeClass",
|
|
15261
|
+
):
|
|
15262
|
+
super().__init__()
|
|
15263
|
+
|
|
15264
|
+
self.parent = parent
|
|
15265
|
+
|
|
15266
|
+
def _restore_defaults(self) -> None:
|
|
15267
|
+
self.parent = EdgeClass._construct_with_defaults()
|
|
15268
|
+
|
|
15269
|
+
|
|
15270
|
+
@property
|
|
15271
|
+
def parent(self) -> "EdgeClass":
|
|
15272
|
+
# No docs available.
|
|
15273
|
+
return self._inner_dict.get('parent') # type: ignore
|
|
15274
|
+
|
|
15275
|
+
@parent.setter
|
|
15276
|
+
def parent(self, value: "EdgeClass") -> None:
|
|
15277
|
+
self._inner_dict['parent'] = value
|
|
15278
|
+
|
|
15279
|
+
|
|
15058
15280
|
class AssertionKeyClass(_Aspect):
|
|
15059
15281
|
"""Key for a Assertion"""
|
|
15060
15282
|
|
|
@@ -15089,7 +15311,7 @@ class ChartKeyClass(_Aspect):
|
|
|
15089
15311
|
|
|
15090
15312
|
|
|
15091
15313
|
ASPECT_NAME = 'chartKey'
|
|
15092
|
-
ASPECT_INFO = {'keyForEntity': 'chart', 'entityCategory': 'core', 'entityAspects': ['chartInfo', 'editableChartProperties', 'chartQuery', 'inputFields', 'chartUsageStatistics', 'embed', 'browsePaths', 'domains', 'container', 'deprecation', 'ownership', 'status', 'institutionalMemory', 'dataPlatformInstance', 'globalTags', 'glossaryTerms', 'browsePathsV2', 'subTypes', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults']}
|
|
15314
|
+
ASPECT_INFO = {'keyForEntity': 'chart', 'entityCategory': 'core', 'entityAspects': ['chartInfo', 'editableChartProperties', 'chartQuery', 'inputFields', 'chartUsageStatistics', 'embed', 'browsePaths', 'domains', 'applications', 'container', 'deprecation', 'ownership', 'status', 'institutionalMemory', 'dataPlatformInstance', 'globalTags', 'glossaryTerms', 'browsePathsV2', 'subTypes', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults']}
|
|
15093
15315
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.ChartKey")
|
|
15094
15316
|
|
|
15095
15317
|
def __init__(self,
|
|
@@ -15131,7 +15353,7 @@ class ContainerKeyClass(_Aspect):
|
|
|
15131
15353
|
|
|
15132
15354
|
|
|
15133
15355
|
ASPECT_NAME = 'containerKey'
|
|
15134
|
-
ASPECT_INFO = {'keyForEntity': 'container', 'entityCategory': 'core', 'entityAspects': ['containerProperties', 'editableContainerProperties', 'dataPlatformInstance', 'subTypes', 'ownership', 'deprecation', 'container', 'globalTags', 'glossaryTerms', 'institutionalMemory', 'browsePaths', 'status', 'domains', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'access'], 'entityDoc': 'A container of related data assets.'}
|
|
15356
|
+
ASPECT_INFO = {'keyForEntity': 'container', 'entityCategory': 'core', 'entityAspects': ['containerProperties', 'editableContainerProperties', 'dataPlatformInstance', 'subTypes', 'ownership', 'deprecation', 'container', 'globalTags', 'glossaryTerms', 'institutionalMemory', 'browsePaths', 'status', 'domains', 'applications', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'access'], 'entityDoc': 'A container of related data assets.'}
|
|
15135
15357
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.ContainerKey")
|
|
15136
15358
|
|
|
15137
15359
|
def __init__(self,
|
|
@@ -15218,7 +15440,7 @@ class DashboardKeyClass(_Aspect):
|
|
|
15218
15440
|
|
|
15219
15441
|
|
|
15220
15442
|
ASPECT_NAME = 'dashboardKey'
|
|
15221
|
-
ASPECT_INFO = {'keyForEntity': 'dashboard', 'entityCategory': '_unset_', 'entityAspects': ['domains', 'container', 'deprecation', 'dashboardUsageStatistics', 'inputFields', 'subTypes', 'embed', 'dashboardInfo', 'editableDashboardProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults']}
|
|
15443
|
+
ASPECT_INFO = {'keyForEntity': 'dashboard', 'entityCategory': '_unset_', 'entityAspects': ['domains', 'applications', 'container', 'deprecation', 'dashboardUsageStatistics', 'inputFields', 'subTypes', 'embed', 'dashboardInfo', 'editableDashboardProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'testResults']}
|
|
15222
15444
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DashboardKey")
|
|
15223
15445
|
|
|
15224
15446
|
def __init__(self,
|
|
@@ -15289,7 +15511,7 @@ class DataFlowKeyClass(_Aspect):
|
|
|
15289
15511
|
|
|
15290
15512
|
|
|
15291
15513
|
ASPECT_NAME = 'dataFlowKey'
|
|
15292
|
-
ASPECT_INFO = {'keyForEntity': 'dataFlow', 'entityCategory': 'core', 'entityAspects': ['domains', 'deprecation', 'versionInfo', 'dataFlowInfo', 'editableDataFlowProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'subTypes', 'testResults']}
|
|
15514
|
+
ASPECT_INFO = {'keyForEntity': 'dataFlow', 'entityCategory': 'core', 'entityAspects': ['domains', 'applications', 'deprecation', 'versionInfo', 'dataFlowInfo', 'editableDataFlowProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'incidentsSummary', 'forms', 'subTypes', 'testResults']}
|
|
15293
15515
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataFlowKey")
|
|
15294
15516
|
|
|
15295
15517
|
def __init__(self,
|
|
@@ -15484,6 +15706,64 @@ class DataHubOpenAPISchemaKeyClass(_Aspect):
|
|
|
15484
15706
|
self._inner_dict['id'] = value
|
|
15485
15707
|
|
|
15486
15708
|
|
|
15709
|
+
class DataHubPageModuleKeyClass(_Aspect):
|
|
15710
|
+
"""Key for a DataHubPageModule"""
|
|
15711
|
+
|
|
15712
|
+
|
|
15713
|
+
ASPECT_NAME = 'dataHubPageModuleKey'
|
|
15714
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubPageModule', 'entityCategory': 'core', 'entityAspects': ['dataHubPageModuleProperties']}
|
|
15715
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubPageModuleKey")
|
|
15716
|
+
|
|
15717
|
+
def __init__(self,
|
|
15718
|
+
id: str,
|
|
15719
|
+
):
|
|
15720
|
+
super().__init__()
|
|
15721
|
+
|
|
15722
|
+
self.id = id
|
|
15723
|
+
|
|
15724
|
+
def _restore_defaults(self) -> None:
|
|
15725
|
+
self.id = str()
|
|
15726
|
+
|
|
15727
|
+
|
|
15728
|
+
@property
|
|
15729
|
+
def id(self) -> str:
|
|
15730
|
+
"""Unique id for the module."""
|
|
15731
|
+
return self._inner_dict.get('id') # type: ignore
|
|
15732
|
+
|
|
15733
|
+
@id.setter
|
|
15734
|
+
def id(self, value: str) -> None:
|
|
15735
|
+
self._inner_dict['id'] = value
|
|
15736
|
+
|
|
15737
|
+
|
|
15738
|
+
class DataHubPageTemplateKeyClass(_Aspect):
|
|
15739
|
+
"""Key for a DataHubPageTemplate"""
|
|
15740
|
+
|
|
15741
|
+
|
|
15742
|
+
ASPECT_NAME = 'dataHubPageTemplateKey'
|
|
15743
|
+
ASPECT_INFO = {'keyForEntity': 'dataHubPageTemplate', 'entityCategory': 'core', 'entityAspects': ['dataHubPageTemplateProperties']}
|
|
15744
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubPageTemplateKey")
|
|
15745
|
+
|
|
15746
|
+
def __init__(self,
|
|
15747
|
+
id: str,
|
|
15748
|
+
):
|
|
15749
|
+
super().__init__()
|
|
15750
|
+
|
|
15751
|
+
self.id = id
|
|
15752
|
+
|
|
15753
|
+
def _restore_defaults(self) -> None:
|
|
15754
|
+
self.id = str()
|
|
15755
|
+
|
|
15756
|
+
|
|
15757
|
+
@property
|
|
15758
|
+
def id(self) -> str:
|
|
15759
|
+
"""Unique id for the template."""
|
|
15760
|
+
return self._inner_dict.get('id') # type: ignore
|
|
15761
|
+
|
|
15762
|
+
@id.setter
|
|
15763
|
+
def id(self, value: str) -> None:
|
|
15764
|
+
self._inner_dict['id'] = value
|
|
15765
|
+
|
|
15766
|
+
|
|
15487
15767
|
class DataHubPersonaKeyClass(_Aspect):
|
|
15488
15768
|
"""Key for a persona type"""
|
|
15489
15769
|
|
|
@@ -15734,7 +16014,7 @@ class DataJobKeyClass(_Aspect):
|
|
|
15734
16014
|
|
|
15735
16015
|
|
|
15736
16016
|
ASPECT_NAME = 'dataJobKey'
|
|
15737
|
-
ASPECT_INFO = {'keyForEntity': 'dataJob', 'entityCategory': '_unset_', 'entityAspects': ['datahubIngestionRunSummary', 'datahubIngestionCheckpoint', 'domains', 'deprecation', 'versionInfo', 'dataJobInfo', 'dataJobInputOutput', 'editableDataJobProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'forms', 'subTypes', 'incidentsSummary', 'testResults', 'dataTransformLogic']}
|
|
16017
|
+
ASPECT_INFO = {'keyForEntity': 'dataJob', 'entityCategory': '_unset_', 'entityAspects': ['datahubIngestionRunSummary', 'datahubIngestionCheckpoint', 'domains', 'applications', 'deprecation', 'versionInfo', 'dataJobInfo', 'dataJobInputOutput', 'editableDataJobProperties', 'ownership', 'status', 'globalTags', 'browsePaths', 'glossaryTerms', 'institutionalMemory', 'dataPlatformInstance', 'container', 'browsePathsV2', 'structuredProperties', 'forms', 'subTypes', 'incidentsSummary', 'testResults', 'dataTransformLogic']}
|
|
15738
16018
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataJobKey")
|
|
15739
16019
|
|
|
15740
16020
|
def __init__(self,
|
|
@@ -15932,7 +16212,7 @@ class DatasetKeyClass(_Aspect):
|
|
|
15932
16212
|
|
|
15933
16213
|
|
|
15934
16214
|
ASPECT_NAME = 'datasetKey'
|
|
15935
|
-
ASPECT_INFO = {'keyForEntity': 'dataset', 'entityCategory': 'core', 'entityAspects': ['viewProperties', 'subTypes', 'datasetProfile', 'datasetUsageStatistics', 'operation', 'domains', 'schemaMetadata', 'status', 'container', 'deprecation', 'testResults', 'siblings', 'embed', 'incidentsSummary', 'datasetProperties', 'editableDatasetProperties', 'datasetDeprecation', 'datasetUpstreamLineage', 'upstreamLineage', 'institutionalMemory', 'ownership', 'editableSchemaMetadata', 'globalTags', 'glossaryTerms', 'browsePaths', 'dataPlatformInstance', 'browsePathsV2', 'access', 'structuredProperties', 'forms', 'partitionsSummary', 'versionProperties', 'icebergCatalogInfo'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
|
|
16215
|
+
ASPECT_INFO = {'keyForEntity': 'dataset', 'entityCategory': 'core', 'entityAspects': ['viewProperties', 'subTypes', 'datasetProfile', 'datasetUsageStatistics', 'operation', 'domains', 'applications', 'schemaMetadata', 'status', 'container', 'deprecation', 'testResults', 'siblings', 'embed', 'incidentsSummary', 'datasetProperties', 'editableDatasetProperties', 'datasetDeprecation', 'datasetUpstreamLineage', 'upstreamLineage', 'institutionalMemory', 'ownership', 'editableSchemaMetadata', 'globalTags', 'glossaryTerms', 'browsePaths', 'dataPlatformInstance', 'browsePathsV2', 'access', 'structuredProperties', 'forms', 'partitionsSummary', 'versionProperties', 'icebergCatalogInfo', 'logicalParent'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
|
|
15936
16216
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DatasetKey")
|
|
15937
16217
|
|
|
15938
16218
|
def __init__(self,
|
|
@@ -16161,7 +16441,7 @@ class GlossaryTermKeyClass(_Aspect):
|
|
|
16161
16441
|
|
|
16162
16442
|
|
|
16163
16443
|
ASPECT_NAME = 'glossaryTermKey'
|
|
16164
|
-
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16444
|
+
ASPECT_INFO = {'keyForEntity': 'glossaryTerm', 'entityCategory': 'core', 'entityAspects': ['glossaryTermInfo', 'glossaryRelatedTerms', 'institutionalMemory', 'schemaMetadata', 'ownership', 'deprecation', 'domains', 'applications', 'status', 'browsePaths', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16165
16445
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.GlossaryTermKey")
|
|
16166
16446
|
|
|
16167
16447
|
def __init__(self,
|
|
@@ -16248,7 +16528,7 @@ class MLFeatureKeyClass(_Aspect):
|
|
|
16248
16528
|
|
|
16249
16529
|
|
|
16250
16530
|
ASPECT_NAME = 'mlFeatureKey'
|
|
16251
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16531
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeature', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureProperties', 'domains', 'applications', 'mlFeatureProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16252
16532
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureKey")
|
|
16253
16533
|
|
|
16254
16534
|
def __init__(self,
|
|
@@ -16290,7 +16570,7 @@ class MLFeatureTableKeyClass(_Aspect):
|
|
|
16290
16570
|
|
|
16291
16571
|
|
|
16292
16572
|
ASPECT_NAME = 'mlFeatureTableKey'
|
|
16293
|
-
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16573
|
+
ASPECT_INFO = {'keyForEntity': 'mlFeatureTable', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlFeatureTableProperties', 'domains', 'applications', 'mlFeatureTableProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16294
16574
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLFeatureTableKey")
|
|
16295
16575
|
|
|
16296
16576
|
def __init__(self,
|
|
@@ -16387,7 +16667,7 @@ class MLModelGroupKeyClass(_Aspect):
|
|
|
16387
16667
|
|
|
16388
16668
|
|
|
16389
16669
|
ASPECT_NAME = 'mlModelGroupKey'
|
|
16390
|
-
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'container']}
|
|
16670
|
+
ASPECT_INFO = {'keyForEntity': 'mlModelGroup', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelGroupProperties', 'domains', 'applications', 'mlModelGroupProperties', 'ownership', 'status', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'subTypes', 'container']}
|
|
16391
16671
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelGroupKey")
|
|
16392
16672
|
|
|
16393
16673
|
def __init__(self,
|
|
@@ -16442,7 +16722,7 @@ class MLModelKeyClass(_Aspect):
|
|
|
16442
16722
|
|
|
16443
16723
|
|
|
16444
16724
|
ASPECT_NAME = 'mlModelKey'
|
|
16445
|
-
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']}
|
|
16725
|
+
ASPECT_INFO = {'keyForEntity': 'mlModel', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlModelProperties', 'domains', 'applications', 'ownership', 'mlModelProperties', 'intendedUse', 'mlModelFactorPrompts', 'mlModelMetrics', 'mlModelEvaluationData', 'mlModelTrainingData', 'mlModelQuantitativeAnalyses', 'mlModelEthicalConsiderations', 'mlModelCaveatsAndRecommendations', 'institutionalMemory', 'sourceCode', 'status', 'cost', 'deprecation', 'browsePaths', 'globalTags', 'dataPlatformInstance', 'browsePathsV2', 'structuredProperties', 'forms', 'testResults', 'versionProperties', 'subTypes', 'container']}
|
|
16446
16726
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLModelKey")
|
|
16447
16727
|
|
|
16448
16728
|
def __init__(self,
|
|
@@ -16497,7 +16777,7 @@ class MLPrimaryKeyKeyClass(_Aspect):
|
|
|
16497
16777
|
|
|
16498
16778
|
|
|
16499
16779
|
ASPECT_NAME = 'mlPrimaryKeyKey'
|
|
16500
|
-
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16780
|
+
ASPECT_INFO = {'keyForEntity': 'mlPrimaryKey', 'entityCategory': 'core', 'entityAspects': ['glossaryTerms', 'editableMlPrimaryKeyProperties', 'domains', 'applications', 'mlPrimaryKeyProperties', 'ownership', 'institutionalMemory', 'status', 'deprecation', 'globalTags', 'dataPlatformInstance', 'structuredProperties', 'forms', 'testResults', 'subTypes']}
|
|
16501
16781
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.MLPrimaryKeyKey")
|
|
16502
16782
|
|
|
16503
16783
|
def __init__(self,
|
|
@@ -16539,7 +16819,7 @@ class NotebookKeyClass(_Aspect):
|
|
|
16539
16819
|
|
|
16540
16820
|
|
|
16541
16821
|
ASPECT_NAME = 'notebookKey'
|
|
16542
|
-
ASPECT_INFO = {'keyForEntity': 'notebook', 'entityCategory': '_unset_', 'entityAspects': ['notebookInfo', 'notebookContent', 'editableNotebookProperties', 'ownership', 'status', 'globalTags', 'glossaryTerms', 'browsePaths', 'institutionalMemory', 'domains', 'subTypes', 'dataPlatformInstance', 'browsePathsV2', 'testResults'], 'entityDoc': 'Notebook represents a combination of query, text, chart and etc. This is in BETA version'}
|
|
16822
|
+
ASPECT_INFO = {'keyForEntity': 'notebook', 'entityCategory': '_unset_', 'entityAspects': ['notebookInfo', 'notebookContent', 'editableNotebookProperties', 'ownership', 'status', 'globalTags', 'glossaryTerms', 'browsePaths', 'institutionalMemory', 'domains', 'applications', 'subTypes', 'dataPlatformInstance', 'browsePathsV2', 'testResults'], 'entityDoc': 'Notebook represents a combination of query, text, chart and etc. This is in BETA version'}
|
|
16543
16823
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.NotebookKey")
|
|
16544
16824
|
|
|
16545
16825
|
def __init__(self,
|
|
@@ -16698,7 +16978,7 @@ class SchemaFieldKeyClass(_Aspect):
|
|
|
16698
16978
|
|
|
16699
16979
|
|
|
16700
16980
|
ASPECT_NAME = 'schemaFieldKey'
|
|
16701
|
-
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation', 'subTypes']}
|
|
16981
|
+
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation', 'subTypes', 'logicalParent']}
|
|
16702
16982
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
|
|
16703
16983
|
|
|
16704
16984
|
def __init__(self,
|
|
@@ -19651,72 +19931,313 @@ class TrainingDataClass(_Aspect):
|
|
|
19651
19931
|
self._inner_dict['trainingData'] = value
|
|
19652
19932
|
|
|
19653
19933
|
|
|
19654
|
-
class
|
|
19655
|
-
"""
|
|
19934
|
+
class DataHubPageModuleParamsClass(DictWrapper):
|
|
19935
|
+
"""The specific parameters stored for a module"""
|
|
19656
19936
|
|
|
19657
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.
|
|
19937
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleParams")
|
|
19658
19938
|
def __init__(self,
|
|
19659
|
-
|
|
19660
|
-
|
|
19939
|
+
linkParams: Union[None, "LinkModuleParamsClass"]=None,
|
|
19940
|
+
richTextParams: Union[None, "RichTextModuleParamsClass"]=None,
|
|
19661
19941
|
):
|
|
19662
19942
|
super().__init__()
|
|
19663
19943
|
|
|
19664
|
-
self.
|
|
19665
|
-
self.
|
|
19944
|
+
self.linkParams = linkParams
|
|
19945
|
+
self.richTextParams = richTextParams
|
|
19666
19946
|
|
|
19667
19947
|
def _restore_defaults(self) -> None:
|
|
19668
|
-
self.
|
|
19669
|
-
self.
|
|
19948
|
+
self.linkParams = self.RECORD_SCHEMA.fields_dict["linkParams"].default
|
|
19949
|
+
self.richTextParams = self.RECORD_SCHEMA.fields_dict["richTextParams"].default
|
|
19670
19950
|
|
|
19671
19951
|
|
|
19672
19952
|
@property
|
|
19673
|
-
def
|
|
19674
|
-
"""The
|
|
19675
|
-
return self._inner_dict.get('
|
|
19953
|
+
def linkParams(self) -> Union[None, "LinkModuleParamsClass"]:
|
|
19954
|
+
"""The params required if the module is type LINK"""
|
|
19955
|
+
return self._inner_dict.get('linkParams') # type: ignore
|
|
19676
19956
|
|
|
19677
|
-
@
|
|
19678
|
-
def
|
|
19679
|
-
self._inner_dict['
|
|
19957
|
+
@linkParams.setter
|
|
19958
|
+
def linkParams(self, value: Union[None, "LinkModuleParamsClass"]) -> None:
|
|
19959
|
+
self._inner_dict['linkParams'] = value
|
|
19680
19960
|
|
|
19681
19961
|
|
|
19682
19962
|
@property
|
|
19683
|
-
def
|
|
19684
|
-
"""The
|
|
19685
|
-
|
|
19686
|
-
return self._inner_dict.get('contentType') # type: ignore
|
|
19687
|
-
|
|
19688
|
-
@contentType.setter
|
|
19689
|
-
def contentType(self, value: str) -> None:
|
|
19690
|
-
self._inner_dict['contentType'] = value
|
|
19963
|
+
def richTextParams(self) -> Union[None, "RichTextModuleParamsClass"]:
|
|
19964
|
+
"""The params required if the module is type RICH_TEXT"""
|
|
19965
|
+
return self._inner_dict.get('richTextParams') # type: ignore
|
|
19691
19966
|
|
|
19967
|
+
@richTextParams.setter
|
|
19968
|
+
def richTextParams(self, value: Union[None, "RichTextModuleParamsClass"]) -> None:
|
|
19969
|
+
self._inner_dict['richTextParams'] = value
|
|
19692
19970
|
|
|
19693
|
-
class GenericPayloadClass(DictWrapper):
|
|
19694
|
-
"""Generic payload record structure for serializing a Platform Event."""
|
|
19695
19971
|
|
|
19696
|
-
|
|
19972
|
+
class DataHubPageModulePropertiesClass(_Aspect):
|
|
19973
|
+
"""The main properties of a DataHub page module"""
|
|
19974
|
+
|
|
19975
|
+
|
|
19976
|
+
ASPECT_NAME = 'dataHubPageModuleProperties'
|
|
19977
|
+
ASPECT_INFO = {}
|
|
19978
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleProperties")
|
|
19979
|
+
|
|
19697
19980
|
def __init__(self,
|
|
19698
|
-
|
|
19699
|
-
|
|
19981
|
+
name: str,
|
|
19982
|
+
type: Union[str, "DataHubPageModuleTypeClass"],
|
|
19983
|
+
visibility: "DataHubPageModuleVisibilityClass",
|
|
19984
|
+
params: "DataHubPageModuleParamsClass",
|
|
19985
|
+
created: "AuditStampClass",
|
|
19986
|
+
lastModified: "AuditStampClass",
|
|
19700
19987
|
):
|
|
19701
19988
|
super().__init__()
|
|
19702
19989
|
|
|
19703
|
-
self.
|
|
19704
|
-
self.
|
|
19990
|
+
self.name = name
|
|
19991
|
+
self.type = type
|
|
19992
|
+
self.visibility = visibility
|
|
19993
|
+
self.params = params
|
|
19994
|
+
self.created = created
|
|
19995
|
+
self.lastModified = lastModified
|
|
19705
19996
|
|
|
19706
19997
|
def _restore_defaults(self) -> None:
|
|
19707
|
-
self.
|
|
19708
|
-
self.
|
|
19998
|
+
self.name = str()
|
|
19999
|
+
self.type = DataHubPageModuleTypeClass.LINK
|
|
20000
|
+
self.visibility = DataHubPageModuleVisibilityClass._construct_with_defaults()
|
|
20001
|
+
self.params = DataHubPageModuleParamsClass._construct_with_defaults()
|
|
20002
|
+
self.created = AuditStampClass._construct_with_defaults()
|
|
20003
|
+
self.lastModified = AuditStampClass._construct_with_defaults()
|
|
19709
20004
|
|
|
19710
20005
|
|
|
19711
20006
|
@property
|
|
19712
|
-
def
|
|
19713
|
-
"""The
|
|
19714
|
-
return self._inner_dict.get('
|
|
19715
|
-
|
|
19716
|
-
@
|
|
19717
|
-
def
|
|
19718
|
-
self._inner_dict['
|
|
19719
|
-
|
|
20007
|
+
def name(self) -> str:
|
|
20008
|
+
"""The display name of this module"""
|
|
20009
|
+
return self._inner_dict.get('name') # type: ignore
|
|
20010
|
+
|
|
20011
|
+
@name.setter
|
|
20012
|
+
def name(self, value: str) -> None:
|
|
20013
|
+
self._inner_dict['name'] = value
|
|
20014
|
+
|
|
20015
|
+
|
|
20016
|
+
@property
|
|
20017
|
+
def type(self) -> Union[str, "DataHubPageModuleTypeClass"]:
|
|
20018
|
+
"""The type of this module - the purpose it serves"""
|
|
20019
|
+
return self._inner_dict.get('type') # type: ignore
|
|
20020
|
+
|
|
20021
|
+
@type.setter
|
|
20022
|
+
def type(self, value: Union[str, "DataHubPageModuleTypeClass"]) -> None:
|
|
20023
|
+
self._inner_dict['type'] = value
|
|
20024
|
+
|
|
20025
|
+
|
|
20026
|
+
@property
|
|
20027
|
+
def visibility(self) -> "DataHubPageModuleVisibilityClass":
|
|
20028
|
+
"""Info about the visibility of this module"""
|
|
20029
|
+
return self._inner_dict.get('visibility') # type: ignore
|
|
20030
|
+
|
|
20031
|
+
@visibility.setter
|
|
20032
|
+
def visibility(self, value: "DataHubPageModuleVisibilityClass") -> None:
|
|
20033
|
+
self._inner_dict['visibility'] = value
|
|
20034
|
+
|
|
20035
|
+
|
|
20036
|
+
@property
|
|
20037
|
+
def params(self) -> "DataHubPageModuleParamsClass":
|
|
20038
|
+
"""The specific parameters stored for this module"""
|
|
20039
|
+
return self._inner_dict.get('params') # type: ignore
|
|
20040
|
+
|
|
20041
|
+
@params.setter
|
|
20042
|
+
def params(self, value: "DataHubPageModuleParamsClass") -> None:
|
|
20043
|
+
self._inner_dict['params'] = value
|
|
20044
|
+
|
|
20045
|
+
|
|
20046
|
+
@property
|
|
20047
|
+
def created(self) -> "AuditStampClass":
|
|
20048
|
+
"""Audit stamp for when and by whom this template was created"""
|
|
20049
|
+
return self._inner_dict.get('created') # type: ignore
|
|
20050
|
+
|
|
20051
|
+
@created.setter
|
|
20052
|
+
def created(self, value: "AuditStampClass") -> None:
|
|
20053
|
+
self._inner_dict['created'] = value
|
|
20054
|
+
|
|
20055
|
+
|
|
20056
|
+
@property
|
|
20057
|
+
def lastModified(self) -> "AuditStampClass":
|
|
20058
|
+
"""Audit stamp for when and by whom this template was last updated"""
|
|
20059
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
20060
|
+
|
|
20061
|
+
@lastModified.setter
|
|
20062
|
+
def lastModified(self, value: "AuditStampClass") -> None:
|
|
20063
|
+
self._inner_dict['lastModified'] = value
|
|
20064
|
+
|
|
20065
|
+
|
|
20066
|
+
class DataHubPageModuleTypeClass(object):
|
|
20067
|
+
"""Enum containing the types of page modules that there are"""
|
|
20068
|
+
|
|
20069
|
+
LINK = "LINK"
|
|
20070
|
+
"""Link type module"""
|
|
20071
|
+
|
|
20072
|
+
RICH_TEXT = "RICH_TEXT"
|
|
20073
|
+
"""Module containing rich text to be rendered"""
|
|
20074
|
+
|
|
20075
|
+
ASSET_COLLECTION = "ASSET_COLLECTION"
|
|
20076
|
+
"""A module with a collection of assets"""
|
|
20077
|
+
|
|
20078
|
+
HIERARCHY = "HIERARCHY"
|
|
20079
|
+
"""A module displaying a hierarchy to navigate"""
|
|
20080
|
+
|
|
20081
|
+
OWNED_ASSETS = "OWNED_ASSETS"
|
|
20082
|
+
"""Module displaying assets owned by a user"""
|
|
20083
|
+
|
|
20084
|
+
DOMAINS = "DOMAINS"
|
|
20085
|
+
"""Module displaying the top domains"""
|
|
20086
|
+
|
|
20087
|
+
|
|
20088
|
+
|
|
20089
|
+
class DataHubPageModuleVisibilityClass(DictWrapper):
|
|
20090
|
+
"""Info about the visibility of this module"""
|
|
20091
|
+
|
|
20092
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility")
|
|
20093
|
+
def __init__(self,
|
|
20094
|
+
scope: Union[str, "PageModuleScopeClass"],
|
|
20095
|
+
):
|
|
20096
|
+
super().__init__()
|
|
20097
|
+
|
|
20098
|
+
self.scope = scope
|
|
20099
|
+
|
|
20100
|
+
def _restore_defaults(self) -> None:
|
|
20101
|
+
self.scope = PageModuleScopeClass.PERSONAL
|
|
20102
|
+
|
|
20103
|
+
|
|
20104
|
+
@property
|
|
20105
|
+
def scope(self) -> Union[str, "PageModuleScopeClass"]:
|
|
20106
|
+
"""Audit stamp for when and by whom this module was created"""
|
|
20107
|
+
return self._inner_dict.get('scope') # type: ignore
|
|
20108
|
+
|
|
20109
|
+
@scope.setter
|
|
20110
|
+
def scope(self, value: Union[str, "PageModuleScopeClass"]) -> None:
|
|
20111
|
+
self._inner_dict['scope'] = value
|
|
20112
|
+
|
|
20113
|
+
|
|
20114
|
+
class LinkModuleParamsClass(DictWrapper):
|
|
20115
|
+
# No docs available.
|
|
20116
|
+
|
|
20117
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.LinkModuleParams")
|
|
20118
|
+
def __init__(self,
|
|
20119
|
+
linkUrn: str,
|
|
20120
|
+
):
|
|
20121
|
+
super().__init__()
|
|
20122
|
+
|
|
20123
|
+
self.linkUrn = linkUrn
|
|
20124
|
+
|
|
20125
|
+
def _restore_defaults(self) -> None:
|
|
20126
|
+
self.linkUrn = str()
|
|
20127
|
+
|
|
20128
|
+
|
|
20129
|
+
@property
|
|
20130
|
+
def linkUrn(self) -> str:
|
|
20131
|
+
# No docs available.
|
|
20132
|
+
return self._inner_dict.get('linkUrn') # type: ignore
|
|
20133
|
+
|
|
20134
|
+
@linkUrn.setter
|
|
20135
|
+
def linkUrn(self, value: str) -> None:
|
|
20136
|
+
self._inner_dict['linkUrn'] = value
|
|
20137
|
+
|
|
20138
|
+
|
|
20139
|
+
class PageModuleScopeClass(object):
|
|
20140
|
+
# No docs available.
|
|
20141
|
+
|
|
20142
|
+
PERSONAL = "PERSONAL"
|
|
20143
|
+
"""This module is used for individual use only"""
|
|
20144
|
+
|
|
20145
|
+
GLOBAL = "GLOBAL"
|
|
20146
|
+
"""This module is discoverable and can be used by any user on the platform"""
|
|
20147
|
+
|
|
20148
|
+
|
|
20149
|
+
|
|
20150
|
+
class RichTextModuleParamsClass(DictWrapper):
|
|
20151
|
+
# No docs available.
|
|
20152
|
+
|
|
20153
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.RichTextModuleParams")
|
|
20154
|
+
def __init__(self,
|
|
20155
|
+
content: str,
|
|
20156
|
+
):
|
|
20157
|
+
super().__init__()
|
|
20158
|
+
|
|
20159
|
+
self.content = content
|
|
20160
|
+
|
|
20161
|
+
def _restore_defaults(self) -> None:
|
|
20162
|
+
self.content = str()
|
|
20163
|
+
|
|
20164
|
+
|
|
20165
|
+
@property
|
|
20166
|
+
def content(self) -> str:
|
|
20167
|
+
# No docs available.
|
|
20168
|
+
return self._inner_dict.get('content') # type: ignore
|
|
20169
|
+
|
|
20170
|
+
@content.setter
|
|
20171
|
+
def content(self, value: str) -> None:
|
|
20172
|
+
self._inner_dict['content'] = value
|
|
20173
|
+
|
|
20174
|
+
|
|
20175
|
+
class GenericAspectClass(DictWrapper):
|
|
20176
|
+
"""Generic record structure for serializing an Aspect"""
|
|
20177
|
+
|
|
20178
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.mxe.GenericAspect")
|
|
20179
|
+
def __init__(self,
|
|
20180
|
+
value: bytes,
|
|
20181
|
+
contentType: str,
|
|
20182
|
+
):
|
|
20183
|
+
super().__init__()
|
|
20184
|
+
|
|
20185
|
+
self.value = value
|
|
20186
|
+
self.contentType = contentType
|
|
20187
|
+
|
|
20188
|
+
def _restore_defaults(self) -> None:
|
|
20189
|
+
self.value = bytes()
|
|
20190
|
+
self.contentType = str()
|
|
20191
|
+
|
|
20192
|
+
|
|
20193
|
+
@property
|
|
20194
|
+
def value(self) -> bytes:
|
|
20195
|
+
"""The value of the aspect, serialized as bytes."""
|
|
20196
|
+
return self._inner_dict.get('value') # type: ignore
|
|
20197
|
+
|
|
20198
|
+
@value.setter
|
|
20199
|
+
def value(self, value: bytes) -> None:
|
|
20200
|
+
self._inner_dict['value'] = value
|
|
20201
|
+
|
|
20202
|
+
|
|
20203
|
+
@property
|
|
20204
|
+
def contentType(self) -> str:
|
|
20205
|
+
"""The content type, which represents the fashion in which the aspect was serialized.
|
|
20206
|
+
The only type currently supported is application/json."""
|
|
20207
|
+
return self._inner_dict.get('contentType') # type: ignore
|
|
20208
|
+
|
|
20209
|
+
@contentType.setter
|
|
20210
|
+
def contentType(self, value: str) -> None:
|
|
20211
|
+
self._inner_dict['contentType'] = value
|
|
20212
|
+
|
|
20213
|
+
|
|
20214
|
+
class GenericPayloadClass(DictWrapper):
|
|
20215
|
+
"""Generic payload record structure for serializing a Platform Event."""
|
|
20216
|
+
|
|
20217
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.mxe.GenericPayload")
|
|
20218
|
+
def __init__(self,
|
|
20219
|
+
value: bytes,
|
|
20220
|
+
contentType: str,
|
|
20221
|
+
):
|
|
20222
|
+
super().__init__()
|
|
20223
|
+
|
|
20224
|
+
self.value = value
|
|
20225
|
+
self.contentType = contentType
|
|
20226
|
+
|
|
20227
|
+
def _restore_defaults(self) -> None:
|
|
20228
|
+
self.value = bytes()
|
|
20229
|
+
self.contentType = str()
|
|
20230
|
+
|
|
20231
|
+
|
|
20232
|
+
@property
|
|
20233
|
+
def value(self) -> bytes:
|
|
20234
|
+
"""The value of the event, serialized as bytes."""
|
|
20235
|
+
return self._inner_dict.get('value') # type: ignore
|
|
20236
|
+
|
|
20237
|
+
@value.setter
|
|
20238
|
+
def value(self, value: bytes) -> None:
|
|
20239
|
+
self._inner_dict['value'] = value
|
|
20240
|
+
|
|
19720
20241
|
|
|
19721
20242
|
@property
|
|
19722
20243
|
def contentType(self) -> str:
|
|
@@ -21374,6 +21895,7 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
21374
21895
|
resources: Union[None, List[str]]=None,
|
|
21375
21896
|
allResources: Optional[bool]=None,
|
|
21376
21897
|
filter: Union[None, "PolicyMatchFilterClass"]=None,
|
|
21898
|
+
privilegeConstraints: Union[None, "PolicyMatchFilterClass"]=None,
|
|
21377
21899
|
):
|
|
21378
21900
|
super().__init__()
|
|
21379
21901
|
|
|
@@ -21385,12 +21907,14 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
21385
21907
|
else:
|
|
21386
21908
|
self.allResources = allResources
|
|
21387
21909
|
self.filter = filter
|
|
21910
|
+
self.privilegeConstraints = privilegeConstraints
|
|
21388
21911
|
|
|
21389
21912
|
def _restore_defaults(self) -> None:
|
|
21390
21913
|
self.type = self.RECORD_SCHEMA.fields_dict["type"].default
|
|
21391
21914
|
self.resources = self.RECORD_SCHEMA.fields_dict["resources"].default
|
|
21392
21915
|
self.allResources = self.RECORD_SCHEMA.fields_dict["allResources"].default
|
|
21393
21916
|
self.filter = self.RECORD_SCHEMA.fields_dict["filter"].default
|
|
21917
|
+
self.privilegeConstraints = self.RECORD_SCHEMA.fields_dict["privilegeConstraints"].default
|
|
21394
21918
|
|
|
21395
21919
|
|
|
21396
21920
|
@property
|
|
@@ -21435,6 +21959,16 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
21435
21959
|
self._inner_dict['filter'] = value
|
|
21436
21960
|
|
|
21437
21961
|
|
|
21962
|
+
@property
|
|
21963
|
+
def privilegeConstraints(self) -> Union[None, "PolicyMatchFilterClass"]:
|
|
21964
|
+
"""Constraints around what sub-resources operations are allowed to modify, i.e. NOT_EQUALS - cannot modify a particular defined tag, EQUALS - can only modify a particular defined tag, STARTS_WITH - can only modify a tag starting with xyz"""
|
|
21965
|
+
return self._inner_dict.get('privilegeConstraints') # type: ignore
|
|
21966
|
+
|
|
21967
|
+
@privilegeConstraints.setter
|
|
21968
|
+
def privilegeConstraints(self, value: Union[None, "PolicyMatchFilterClass"]) -> None:
|
|
21969
|
+
self._inner_dict['privilegeConstraints'] = value
|
|
21970
|
+
|
|
21971
|
+
|
|
21438
21972
|
class DataHubRoleInfoClass(_Aspect):
|
|
21439
21973
|
"""Information about a DataHub Role."""
|
|
21440
21974
|
|
|
@@ -21503,6 +22037,9 @@ class PolicyMatchConditionClass(object):
|
|
|
21503
22037
|
STARTS_WITH = "STARTS_WITH"
|
|
21504
22038
|
"""Whether the field value starts with the value"""
|
|
21505
22039
|
|
|
22040
|
+
NOT_EQUALS = "NOT_EQUALS"
|
|
22041
|
+
"""Whether the field does not match the value"""
|
|
22042
|
+
|
|
21506
22043
|
|
|
21507
22044
|
|
|
21508
22045
|
class PolicyMatchCriterionClass(DictWrapper):
|
|
@@ -23896,6 +24433,59 @@ class DataHubSecretValueClass(_Aspect):
|
|
|
23896
24433
|
self._inner_dict['created'] = value
|
|
23897
24434
|
|
|
23898
24435
|
|
|
24436
|
+
class ApplicationsSettingsClass(DictWrapper):
|
|
24437
|
+
# No docs available.
|
|
24438
|
+
|
|
24439
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.ApplicationsSettings")
|
|
24440
|
+
def __init__(self,
|
|
24441
|
+
enabled: bool,
|
|
24442
|
+
config: Union[None, str]=None,
|
|
24443
|
+
configVersion: Union[None, str]=None,
|
|
24444
|
+
):
|
|
24445
|
+
super().__init__()
|
|
24446
|
+
|
|
24447
|
+
self.enabled = enabled
|
|
24448
|
+
self.config = config
|
|
24449
|
+
self.configVersion = configVersion
|
|
24450
|
+
|
|
24451
|
+
def _restore_defaults(self) -> None:
|
|
24452
|
+
self.enabled = bool()
|
|
24453
|
+
self.config = self.RECORD_SCHEMA.fields_dict["config"].default
|
|
24454
|
+
self.configVersion = self.RECORD_SCHEMA.fields_dict["configVersion"].default
|
|
24455
|
+
|
|
24456
|
+
|
|
24457
|
+
@property
|
|
24458
|
+
def enabled(self) -> bool:
|
|
24459
|
+
# No docs available.
|
|
24460
|
+
return self._inner_dict.get('enabled') # type: ignore
|
|
24461
|
+
|
|
24462
|
+
@enabled.setter
|
|
24463
|
+
def enabled(self, value: bool) -> None:
|
|
24464
|
+
self._inner_dict['enabled'] = value
|
|
24465
|
+
|
|
24466
|
+
|
|
24467
|
+
@property
|
|
24468
|
+
def config(self) -> Union[None, str]:
|
|
24469
|
+
"""The configuration for the feature, in JSON format."""
|
|
24470
|
+
return self._inner_dict.get('config') # type: ignore
|
|
24471
|
+
|
|
24472
|
+
@config.setter
|
|
24473
|
+
def config(self, value: Union[None, str]) -> None:
|
|
24474
|
+
self._inner_dict['config'] = value
|
|
24475
|
+
|
|
24476
|
+
|
|
24477
|
+
@property
|
|
24478
|
+
def configVersion(self) -> Union[None, str]:
|
|
24479
|
+
"""The version of the configuration schema that has been used to serialize
|
|
24480
|
+
the config.
|
|
24481
|
+
If not provided, the version is assumed to be the latest version."""
|
|
24482
|
+
return self._inner_dict.get('configVersion') # type: ignore
|
|
24483
|
+
|
|
24484
|
+
@configVersion.setter
|
|
24485
|
+
def configVersion(self, value: Union[None, str]) -> None:
|
|
24486
|
+
self._inner_dict['configVersion'] = value
|
|
24487
|
+
|
|
24488
|
+
|
|
23899
24489
|
class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
23900
24490
|
# No docs available.
|
|
23901
24491
|
|
|
@@ -23966,6 +24556,31 @@ class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
|
23966
24556
|
self._inner_dict['columnPropagationEnabled'] = value
|
|
23967
24557
|
|
|
23968
24558
|
|
|
24559
|
+
class GlobalHomePageSettingsClass(DictWrapper):
|
|
24560
|
+
"""Global settings related to the home page for an instance"""
|
|
24561
|
+
|
|
24562
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings")
|
|
24563
|
+
def __init__(self,
|
|
24564
|
+
defaultTemplate: str,
|
|
24565
|
+
):
|
|
24566
|
+
super().__init__()
|
|
24567
|
+
|
|
24568
|
+
self.defaultTemplate = defaultTemplate
|
|
24569
|
+
|
|
24570
|
+
def _restore_defaults(self) -> None:
|
|
24571
|
+
self.defaultTemplate = str()
|
|
24572
|
+
|
|
24573
|
+
|
|
24574
|
+
@property
|
|
24575
|
+
def defaultTemplate(self) -> str:
|
|
24576
|
+
"""The urn that will be rendered in the UI by default for all users"""
|
|
24577
|
+
return self._inner_dict.get('defaultTemplate') # type: ignore
|
|
24578
|
+
|
|
24579
|
+
@defaultTemplate.setter
|
|
24580
|
+
def defaultTemplate(self, value: str) -> None:
|
|
24581
|
+
self._inner_dict['defaultTemplate'] = value
|
|
24582
|
+
|
|
24583
|
+
|
|
23969
24584
|
class GlobalSettingsInfoClass(_Aspect):
|
|
23970
24585
|
"""DataHub Global platform settings. Careful - these should not be modified by the outside world!"""
|
|
23971
24586
|
|
|
@@ -23978,6 +24593,8 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
23978
24593
|
sso: Union[None, "SsoSettingsClass"]=None,
|
|
23979
24594
|
views: Union[None, "GlobalViewsSettingsClass"]=None,
|
|
23980
24595
|
docPropagation: Optional[Union["DocPropagationFeatureSettingsClass", None]]=None,
|
|
24596
|
+
homePage: Union[None, "GlobalHomePageSettingsClass"]=None,
|
|
24597
|
+
applications: Union[None, "ApplicationsSettingsClass"]=None,
|
|
23981
24598
|
):
|
|
23982
24599
|
super().__init__()
|
|
23983
24600
|
|
|
@@ -23988,11 +24605,15 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
23988
24605
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
23989
24606
|
else:
|
|
23990
24607
|
self.docPropagation = docPropagation
|
|
24608
|
+
self.homePage = homePage
|
|
24609
|
+
self.applications = applications
|
|
23991
24610
|
|
|
23992
24611
|
def _restore_defaults(self) -> None:
|
|
23993
24612
|
self.sso = self.RECORD_SCHEMA.fields_dict["sso"].default
|
|
23994
24613
|
self.views = self.RECORD_SCHEMA.fields_dict["views"].default
|
|
23995
24614
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
24615
|
+
self.homePage = self.RECORD_SCHEMA.fields_dict["homePage"].default
|
|
24616
|
+
self.applications = self.RECORD_SCHEMA.fields_dict["applications"].default
|
|
23996
24617
|
|
|
23997
24618
|
|
|
23998
24619
|
@property
|
|
@@ -24025,6 +24646,26 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
24025
24646
|
self._inner_dict['docPropagation'] = value
|
|
24026
24647
|
|
|
24027
24648
|
|
|
24649
|
+
@property
|
|
24650
|
+
def homePage(self) -> Union[None, "GlobalHomePageSettingsClass"]:
|
|
24651
|
+
"""Global settings related to the home page for an instance"""
|
|
24652
|
+
return self._inner_dict.get('homePage') # type: ignore
|
|
24653
|
+
|
|
24654
|
+
@homePage.setter
|
|
24655
|
+
def homePage(self, value: Union[None, "GlobalHomePageSettingsClass"]) -> None:
|
|
24656
|
+
self._inner_dict['homePage'] = value
|
|
24657
|
+
|
|
24658
|
+
|
|
24659
|
+
@property
|
|
24660
|
+
def applications(self) -> Union[None, "ApplicationsSettingsClass"]:
|
|
24661
|
+
"""Settings related to applications. If not enabled, applications won't show up in navigation"""
|
|
24662
|
+
return self._inner_dict.get('applications') # type: ignore
|
|
24663
|
+
|
|
24664
|
+
@applications.setter
|
|
24665
|
+
def applications(self, value: Union[None, "ApplicationsSettingsClass"]) -> None:
|
|
24666
|
+
self._inner_dict['applications'] = value
|
|
24667
|
+
|
|
24668
|
+
|
|
24028
24669
|
class GlobalViewsSettingsClass(DictWrapper):
|
|
24029
24670
|
"""Settings for DataHub Views feature."""
|
|
24030
24671
|
|
|
@@ -24962,11 +25603,186 @@ class TelemetryClientIdClass(_Aspect):
|
|
|
24962
25603
|
self._inner_dict['clientId'] = value
|
|
24963
25604
|
|
|
24964
25605
|
|
|
24965
|
-
class
|
|
24966
|
-
|
|
24967
|
-
|
|
24968
|
-
|
|
24969
|
-
|
|
25606
|
+
class DataHubPageTemplatePropertiesClass(_Aspect):
|
|
25607
|
+
"""The main properties of a DataHub page template"""
|
|
25608
|
+
|
|
25609
|
+
|
|
25610
|
+
ASPECT_NAME = 'dataHubPageTemplateProperties'
|
|
25611
|
+
ASPECT_INFO = {}
|
|
25612
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties")
|
|
25613
|
+
|
|
25614
|
+
def __init__(self,
|
|
25615
|
+
rows: List["DataHubPageTemplateRowClass"],
|
|
25616
|
+
surface: "DataHubPageTemplateSurfaceClass",
|
|
25617
|
+
visibility: "DataHubPageTemplateVisibilityClass",
|
|
25618
|
+
created: "AuditStampClass",
|
|
25619
|
+
lastModified: "AuditStampClass",
|
|
25620
|
+
):
|
|
25621
|
+
super().__init__()
|
|
25622
|
+
|
|
25623
|
+
self.rows = rows
|
|
25624
|
+
self.surface = surface
|
|
25625
|
+
self.visibility = visibility
|
|
25626
|
+
self.created = created
|
|
25627
|
+
self.lastModified = lastModified
|
|
25628
|
+
|
|
25629
|
+
def _restore_defaults(self) -> None:
|
|
25630
|
+
self.rows = list()
|
|
25631
|
+
self.surface = DataHubPageTemplateSurfaceClass._construct_with_defaults()
|
|
25632
|
+
self.visibility = DataHubPageTemplateVisibilityClass._construct_with_defaults()
|
|
25633
|
+
self.created = AuditStampClass._construct_with_defaults()
|
|
25634
|
+
self.lastModified = AuditStampClass._construct_with_defaults()
|
|
25635
|
+
|
|
25636
|
+
|
|
25637
|
+
@property
|
|
25638
|
+
def rows(self) -> List["DataHubPageTemplateRowClass"]:
|
|
25639
|
+
"""The rows of modules contained in this template"""
|
|
25640
|
+
return self._inner_dict.get('rows') # type: ignore
|
|
25641
|
+
|
|
25642
|
+
@rows.setter
|
|
25643
|
+
def rows(self, value: List["DataHubPageTemplateRowClass"]) -> None:
|
|
25644
|
+
self._inner_dict['rows'] = value
|
|
25645
|
+
|
|
25646
|
+
|
|
25647
|
+
@property
|
|
25648
|
+
def surface(self) -> "DataHubPageTemplateSurfaceClass":
|
|
25649
|
+
"""Info about the surface area of the product that this template is deployed in"""
|
|
25650
|
+
return self._inner_dict.get('surface') # type: ignore
|
|
25651
|
+
|
|
25652
|
+
@surface.setter
|
|
25653
|
+
def surface(self, value: "DataHubPageTemplateSurfaceClass") -> None:
|
|
25654
|
+
self._inner_dict['surface'] = value
|
|
25655
|
+
|
|
25656
|
+
|
|
25657
|
+
@property
|
|
25658
|
+
def visibility(self) -> "DataHubPageTemplateVisibilityClass":
|
|
25659
|
+
"""Info about the visibility of this template"""
|
|
25660
|
+
return self._inner_dict.get('visibility') # type: ignore
|
|
25661
|
+
|
|
25662
|
+
@visibility.setter
|
|
25663
|
+
def visibility(self, value: "DataHubPageTemplateVisibilityClass") -> None:
|
|
25664
|
+
self._inner_dict['visibility'] = value
|
|
25665
|
+
|
|
25666
|
+
|
|
25667
|
+
@property
|
|
25668
|
+
def created(self) -> "AuditStampClass":
|
|
25669
|
+
"""Audit stamp for when and by whom this template was created"""
|
|
25670
|
+
return self._inner_dict.get('created') # type: ignore
|
|
25671
|
+
|
|
25672
|
+
@created.setter
|
|
25673
|
+
def created(self, value: "AuditStampClass") -> None:
|
|
25674
|
+
self._inner_dict['created'] = value
|
|
25675
|
+
|
|
25676
|
+
|
|
25677
|
+
@property
|
|
25678
|
+
def lastModified(self) -> "AuditStampClass":
|
|
25679
|
+
"""Audit stamp for when and by whom this template was last updated"""
|
|
25680
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
25681
|
+
|
|
25682
|
+
@lastModified.setter
|
|
25683
|
+
def lastModified(self, value: "AuditStampClass") -> None:
|
|
25684
|
+
self._inner_dict['lastModified'] = value
|
|
25685
|
+
|
|
25686
|
+
|
|
25687
|
+
class DataHubPageTemplateRowClass(DictWrapper):
|
|
25688
|
+
"""A row of modules contained in a template"""
|
|
25689
|
+
|
|
25690
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateRow")
|
|
25691
|
+
def __init__(self,
|
|
25692
|
+
modules: List[str],
|
|
25693
|
+
):
|
|
25694
|
+
super().__init__()
|
|
25695
|
+
|
|
25696
|
+
self.modules = modules
|
|
25697
|
+
|
|
25698
|
+
def _restore_defaults(self) -> None:
|
|
25699
|
+
self.modules = list()
|
|
25700
|
+
|
|
25701
|
+
|
|
25702
|
+
@property
|
|
25703
|
+
def modules(self) -> List[str]:
|
|
25704
|
+
"""The modules that exist in this template row"""
|
|
25705
|
+
return self._inner_dict.get('modules') # type: ignore
|
|
25706
|
+
|
|
25707
|
+
@modules.setter
|
|
25708
|
+
def modules(self, value: List[str]) -> None:
|
|
25709
|
+
self._inner_dict['modules'] = value
|
|
25710
|
+
|
|
25711
|
+
|
|
25712
|
+
class DataHubPageTemplateSurfaceClass(DictWrapper):
|
|
25713
|
+
"""Info about the surface area of the product that this template is deployed in"""
|
|
25714
|
+
|
|
25715
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface")
|
|
25716
|
+
def __init__(self,
|
|
25717
|
+
surfaceType: Union[str, "PageTemplateSurfaceTypeClass"],
|
|
25718
|
+
):
|
|
25719
|
+
super().__init__()
|
|
25720
|
+
|
|
25721
|
+
self.surfaceType = surfaceType
|
|
25722
|
+
|
|
25723
|
+
def _restore_defaults(self) -> None:
|
|
25724
|
+
self.surfaceType = PageTemplateSurfaceTypeClass.HOME_PAGE
|
|
25725
|
+
|
|
25726
|
+
|
|
25727
|
+
@property
|
|
25728
|
+
def surfaceType(self) -> Union[str, "PageTemplateSurfaceTypeClass"]:
|
|
25729
|
+
"""Where exactly is this template being used"""
|
|
25730
|
+
return self._inner_dict.get('surfaceType') # type: ignore
|
|
25731
|
+
|
|
25732
|
+
@surfaceType.setter
|
|
25733
|
+
def surfaceType(self, value: Union[str, "PageTemplateSurfaceTypeClass"]) -> None:
|
|
25734
|
+
self._inner_dict['surfaceType'] = value
|
|
25735
|
+
|
|
25736
|
+
|
|
25737
|
+
class DataHubPageTemplateVisibilityClass(DictWrapper):
|
|
25738
|
+
"""Info about the visibility of this template"""
|
|
25739
|
+
|
|
25740
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility")
|
|
25741
|
+
def __init__(self,
|
|
25742
|
+
scope: Union[str, "PageTemplateScopeClass"],
|
|
25743
|
+
):
|
|
25744
|
+
super().__init__()
|
|
25745
|
+
|
|
25746
|
+
self.scope = scope
|
|
25747
|
+
|
|
25748
|
+
def _restore_defaults(self) -> None:
|
|
25749
|
+
self.scope = PageTemplateScopeClass.PERSONAL
|
|
25750
|
+
|
|
25751
|
+
|
|
25752
|
+
@property
|
|
25753
|
+
def scope(self) -> Union[str, "PageTemplateScopeClass"]:
|
|
25754
|
+
"""The scope of this template and who can use/see it"""
|
|
25755
|
+
return self._inner_dict.get('scope') # type: ignore
|
|
25756
|
+
|
|
25757
|
+
@scope.setter
|
|
25758
|
+
def scope(self, value: Union[str, "PageTemplateScopeClass"]) -> None:
|
|
25759
|
+
self._inner_dict['scope'] = value
|
|
25760
|
+
|
|
25761
|
+
|
|
25762
|
+
class PageTemplateScopeClass(object):
|
|
25763
|
+
# No docs available.
|
|
25764
|
+
|
|
25765
|
+
PERSONAL = "PERSONAL"
|
|
25766
|
+
"""This template is used for individual use only"""
|
|
25767
|
+
|
|
25768
|
+
GLOBAL = "GLOBAL"
|
|
25769
|
+
"""This template is used across users"""
|
|
25770
|
+
|
|
25771
|
+
|
|
25772
|
+
|
|
25773
|
+
class PageTemplateSurfaceTypeClass(object):
|
|
25774
|
+
# No docs available.
|
|
25775
|
+
|
|
25776
|
+
HOME_PAGE = "HOME_PAGE"
|
|
25777
|
+
"""This template applies to what to display on the home page for users."""
|
|
25778
|
+
|
|
25779
|
+
|
|
25780
|
+
|
|
25781
|
+
class TestDefinitionClass(DictWrapper):
|
|
25782
|
+
# No docs available.
|
|
25783
|
+
|
|
25784
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.test.TestDefinition")
|
|
25785
|
+
def __init__(self,
|
|
24970
25786
|
type: Union[str, "TestDefinitionTypeClass"],
|
|
24971
25787
|
json: Union[None, str]=None,
|
|
24972
25788
|
):
|
|
@@ -25916,6 +26732,9 @@ class DataHubViewTypeClass(object):
|
|
|
25916
26732
|
__SCHEMA_TYPES = {
|
|
25917
26733
|
'com.linkedin.events.KafkaAuditHeader': KafkaAuditHeaderClass,
|
|
25918
26734
|
'com.linkedin.pegasus2avro.access.token.DataHubAccessTokenInfo': DataHubAccessTokenInfoClass,
|
|
26735
|
+
'com.linkedin.pegasus2avro.application.ApplicationKey': ApplicationKeyClass,
|
|
26736
|
+
'com.linkedin.pegasus2avro.application.ApplicationProperties': ApplicationPropertiesClass,
|
|
26737
|
+
'com.linkedin.pegasus2avro.application.Applications': ApplicationsClass,
|
|
25919
26738
|
'com.linkedin.pegasus2avro.assertion.AssertionAction': AssertionActionClass,
|
|
25920
26739
|
'com.linkedin.pegasus2avro.assertion.AssertionActionType': AssertionActionTypeClass,
|
|
25921
26740
|
'com.linkedin.pegasus2avro.assertion.AssertionActions': AssertionActionsClass,
|
|
@@ -26151,6 +26970,7 @@ __SCHEMA_TYPES = {
|
|
|
26151
26970
|
'com.linkedin.pegasus2avro.identity.CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
|
|
26152
26971
|
'com.linkedin.pegasus2avro.identity.CorpUserCredentials': CorpUserCredentialsClass,
|
|
26153
26972
|
'com.linkedin.pegasus2avro.identity.CorpUserEditableInfo': CorpUserEditableInfoClass,
|
|
26973
|
+
'com.linkedin.pegasus2avro.identity.CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
|
|
26154
26974
|
'com.linkedin.pegasus2avro.identity.CorpUserInfo': CorpUserInfoClass,
|
|
26155
26975
|
'com.linkedin.pegasus2avro.identity.CorpUserSettings': CorpUserSettingsClass,
|
|
26156
26976
|
'com.linkedin.pegasus2avro.identity.CorpUserStatus': CorpUserStatusClass,
|
|
@@ -26172,6 +26992,7 @@ __SCHEMA_TYPES = {
|
|
|
26172
26992
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSchedule': DataHubIngestionSourceScheduleClass,
|
|
26173
26993
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSource': DataHubIngestionSourceSourceClass,
|
|
26174
26994
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
|
|
26995
|
+
'com.linkedin.pegasus2avro.logical.LogicalParent': LogicalParentClass,
|
|
26175
26996
|
'com.linkedin.pegasus2avro.metadata.key.AssertionKey': AssertionKeyClass,
|
|
26176
26997
|
'com.linkedin.pegasus2avro.metadata.key.ChartKey': ChartKeyClass,
|
|
26177
26998
|
'com.linkedin.pegasus2avro.metadata.key.ContainerKey': ContainerKeyClass,
|
|
@@ -26185,6 +27006,8 @@ __SCHEMA_TYPES = {
|
|
|
26185
27006
|
'com.linkedin.pegasus2avro.metadata.key.DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
26186
27007
|
'com.linkedin.pegasus2avro.metadata.key.DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
26187
27008
|
'com.linkedin.pegasus2avro.metadata.key.DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
27009
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubPageModuleKey': DataHubPageModuleKeyClass,
|
|
27010
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
|
|
26188
27011
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
26189
27012
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
26190
27013
|
'com.linkedin.pegasus2avro.metadata.key.DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -26279,6 +27102,13 @@ __SCHEMA_TYPES = {
|
|
|
26279
27102
|
'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrl': SourceCodeUrlClass,
|
|
26280
27103
|
'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrlType': SourceCodeUrlTypeClass,
|
|
26281
27104
|
'com.linkedin.pegasus2avro.ml.metadata.TrainingData': TrainingDataClass,
|
|
27105
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleParams': DataHubPageModuleParamsClass,
|
|
27106
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
|
|
27107
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleType': DataHubPageModuleTypeClass,
|
|
27108
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
|
|
27109
|
+
'com.linkedin.pegasus2avro.module.LinkModuleParams': LinkModuleParamsClass,
|
|
27110
|
+
'com.linkedin.pegasus2avro.module.PageModuleScope': PageModuleScopeClass,
|
|
27111
|
+
'com.linkedin.pegasus2avro.module.RichTextModuleParams': RichTextModuleParamsClass,
|
|
26282
27112
|
'com.linkedin.pegasus2avro.mxe.GenericAspect': GenericAspectClass,
|
|
26283
27113
|
'com.linkedin.pegasus2avro.mxe.GenericPayload': GenericPayloadClass,
|
|
26284
27114
|
'com.linkedin.pegasus2avro.mxe.MetadataChangeEvent': MetadataChangeEventClass,
|
|
@@ -26362,7 +27192,9 @@ __SCHEMA_TYPES = {
|
|
|
26362
27192
|
'com.linkedin.pegasus2avro.schemafield.SchemaFieldAliases': SchemaFieldAliasesClass,
|
|
26363
27193
|
'com.linkedin.pegasus2avro.schemafield.SchemaFieldInfo': SchemaFieldInfoClass,
|
|
26364
27194
|
'com.linkedin.pegasus2avro.secret.DataHubSecretValue': DataHubSecretValueClass,
|
|
27195
|
+
'com.linkedin.pegasus2avro.settings.global.ApplicationsSettings': ApplicationsSettingsClass,
|
|
26365
27196
|
'com.linkedin.pegasus2avro.settings.global.DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
27197
|
+
'com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings': GlobalHomePageSettingsClass,
|
|
26366
27198
|
'com.linkedin.pegasus2avro.settings.global.GlobalSettingsInfo': GlobalSettingsInfoClass,
|
|
26367
27199
|
'com.linkedin.pegasus2avro.settings.global.GlobalViewsSettings': GlobalViewsSettingsClass,
|
|
26368
27200
|
'com.linkedin.pegasus2avro.settings.global.OidcSettings': OidcSettingsClass,
|
|
@@ -26377,6 +27209,12 @@ __SCHEMA_TYPES = {
|
|
|
26377
27209
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
26378
27210
|
'com.linkedin.pegasus2avro.tag.TagProperties': TagPropertiesClass,
|
|
26379
27211
|
'com.linkedin.pegasus2avro.telemetry.TelemetryClientId': TelemetryClientIdClass,
|
|
27212
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
|
|
27213
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateRow': DataHubPageTemplateRowClass,
|
|
27214
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
|
|
27215
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
|
|
27216
|
+
'com.linkedin.pegasus2avro.template.PageTemplateScope': PageTemplateScopeClass,
|
|
27217
|
+
'com.linkedin.pegasus2avro.template.PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
|
|
26380
27218
|
'com.linkedin.pegasus2avro.test.TestDefinition': TestDefinitionClass,
|
|
26381
27219
|
'com.linkedin.pegasus2avro.test.TestDefinitionType': TestDefinitionTypeClass,
|
|
26382
27220
|
'com.linkedin.pegasus2avro.test.TestInfo': TestInfoClass,
|
|
@@ -26402,6 +27240,9 @@ __SCHEMA_TYPES = {
|
|
|
26402
27240
|
'com.linkedin.pegasus2avro.view.DataHubViewType': DataHubViewTypeClass,
|
|
26403
27241
|
'KafkaAuditHeader': KafkaAuditHeaderClass,
|
|
26404
27242
|
'DataHubAccessTokenInfo': DataHubAccessTokenInfoClass,
|
|
27243
|
+
'ApplicationKey': ApplicationKeyClass,
|
|
27244
|
+
'ApplicationProperties': ApplicationPropertiesClass,
|
|
27245
|
+
'Applications': ApplicationsClass,
|
|
26405
27246
|
'AssertionAction': AssertionActionClass,
|
|
26406
27247
|
'AssertionActionType': AssertionActionTypeClass,
|
|
26407
27248
|
'AssertionActions': AssertionActionsClass,
|
|
@@ -26637,6 +27478,7 @@ __SCHEMA_TYPES = {
|
|
|
26637
27478
|
'CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
|
|
26638
27479
|
'CorpUserCredentials': CorpUserCredentialsClass,
|
|
26639
27480
|
'CorpUserEditableInfo': CorpUserEditableInfoClass,
|
|
27481
|
+
'CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
|
|
26640
27482
|
'CorpUserInfo': CorpUserInfoClass,
|
|
26641
27483
|
'CorpUserSettings': CorpUserSettingsClass,
|
|
26642
27484
|
'CorpUserStatus': CorpUserStatusClass,
|
|
@@ -26658,6 +27500,7 @@ __SCHEMA_TYPES = {
|
|
|
26658
27500
|
'DataHubIngestionSourceSchedule': DataHubIngestionSourceScheduleClass,
|
|
26659
27501
|
'DataHubIngestionSourceSource': DataHubIngestionSourceSourceClass,
|
|
26660
27502
|
'DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
|
|
27503
|
+
'LogicalParent': LogicalParentClass,
|
|
26661
27504
|
'AssertionKey': AssertionKeyClass,
|
|
26662
27505
|
'ChartKey': ChartKeyClass,
|
|
26663
27506
|
'ContainerKey': ContainerKeyClass,
|
|
@@ -26671,6 +27514,8 @@ __SCHEMA_TYPES = {
|
|
|
26671
27514
|
'DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
26672
27515
|
'DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
26673
27516
|
'DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
27517
|
+
'DataHubPageModuleKey': DataHubPageModuleKeyClass,
|
|
27518
|
+
'DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
|
|
26674
27519
|
'DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
26675
27520
|
'DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
26676
27521
|
'DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -26765,6 +27610,13 @@ __SCHEMA_TYPES = {
|
|
|
26765
27610
|
'SourceCodeUrl': SourceCodeUrlClass,
|
|
26766
27611
|
'SourceCodeUrlType': SourceCodeUrlTypeClass,
|
|
26767
27612
|
'TrainingData': TrainingDataClass,
|
|
27613
|
+
'DataHubPageModuleParams': DataHubPageModuleParamsClass,
|
|
27614
|
+
'DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
|
|
27615
|
+
'DataHubPageModuleType': DataHubPageModuleTypeClass,
|
|
27616
|
+
'DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
|
|
27617
|
+
'LinkModuleParams': LinkModuleParamsClass,
|
|
27618
|
+
'PageModuleScope': PageModuleScopeClass,
|
|
27619
|
+
'RichTextModuleParams': RichTextModuleParamsClass,
|
|
26768
27620
|
'GenericAspect': GenericAspectClass,
|
|
26769
27621
|
'GenericPayload': GenericPayloadClass,
|
|
26770
27622
|
'MetadataChangeEvent': MetadataChangeEventClass,
|
|
@@ -26848,7 +27700,9 @@ __SCHEMA_TYPES = {
|
|
|
26848
27700
|
'SchemaFieldAliases': SchemaFieldAliasesClass,
|
|
26849
27701
|
'SchemaFieldInfo': SchemaFieldInfoClass,
|
|
26850
27702
|
'DataHubSecretValue': DataHubSecretValueClass,
|
|
27703
|
+
'ApplicationsSettings': ApplicationsSettingsClass,
|
|
26851
27704
|
'DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
27705
|
+
'GlobalHomePageSettings': GlobalHomePageSettingsClass,
|
|
26852
27706
|
'GlobalSettingsInfo': GlobalSettingsInfoClass,
|
|
26853
27707
|
'GlobalViewsSettings': GlobalViewsSettingsClass,
|
|
26854
27708
|
'OidcSettings': OidcSettingsClass,
|
|
@@ -26863,6 +27717,12 @@ __SCHEMA_TYPES = {
|
|
|
26863
27717
|
'StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
26864
27718
|
'TagProperties': TagPropertiesClass,
|
|
26865
27719
|
'TelemetryClientId': TelemetryClientIdClass,
|
|
27720
|
+
'DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
|
|
27721
|
+
'DataHubPageTemplateRow': DataHubPageTemplateRowClass,
|
|
27722
|
+
'DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
|
|
27723
|
+
'DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
|
|
27724
|
+
'PageTemplateScope': PageTemplateScopeClass,
|
|
27725
|
+
'PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
|
|
26866
27726
|
'TestDefinition': TestDefinitionClass,
|
|
26867
27727
|
'TestDefinitionType': TestDefinitionTypeClass,
|
|
26868
27728
|
'TestInfo': TestInfoClass,
|
|
@@ -26895,220 +27755,228 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
26895
27755
|
|
|
26896
27756
|
|
|
26897
27757
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
26898
|
-
|
|
26899
|
-
|
|
26900
|
-
|
|
26901
|
-
|
|
26902
|
-
CorpGroupInfoClass,
|
|
26903
|
-
GroupMembershipClass,
|
|
26904
|
-
CorpUserEditableInfoClass,
|
|
26905
|
-
RoleMembershipClass,
|
|
26906
|
-
CorpUserInfoClass,
|
|
26907
|
-
InviteTokenClass,
|
|
26908
|
-
CorpGroupEditableInfoClass,
|
|
26909
|
-
DataHubAccessTokenInfoClass,
|
|
26910
|
-
TestResultsClass,
|
|
26911
|
-
TestInfoClass,
|
|
26912
|
-
IncidentInfoClass,
|
|
26913
|
-
IncidentSourceClass,
|
|
26914
|
-
TagPropertiesClass,
|
|
27758
|
+
DataTypeKeyClass,
|
|
27759
|
+
DataTypeInfoClass,
|
|
27760
|
+
DataHubUpgradeRequestClass,
|
|
27761
|
+
DataHubUpgradeResultClass,
|
|
26915
27762
|
DataPlatformInfoClass,
|
|
26916
27763
|
SlackUserInfoClass,
|
|
26917
|
-
|
|
27764
|
+
DataHubPolicyInfoClass,
|
|
27765
|
+
DataHubRoleInfoClass,
|
|
27766
|
+
DataHubPageTemplatePropertiesClass,
|
|
26918
27767
|
DataProductKeyClass,
|
|
26919
27768
|
DataProductPropertiesClass,
|
|
26920
|
-
InputFieldsClass,
|
|
26921
|
-
DataPlatformInstanceClass,
|
|
26922
|
-
CostClass,
|
|
26923
|
-
SubTypesClass,
|
|
26924
27769
|
DeprecationClass,
|
|
26925
|
-
|
|
26926
|
-
|
|
26927
|
-
|
|
26928
|
-
DataTransformLogicClass,
|
|
26929
|
-
GlossaryTermsClass,
|
|
27770
|
+
BrowsePathsClass,
|
|
27771
|
+
AccessClass,
|
|
27772
|
+
InputFieldsClass,
|
|
26930
27773
|
IncidentsSummaryClass,
|
|
27774
|
+
DocumentationClass,
|
|
27775
|
+
OperationClass,
|
|
27776
|
+
VersionPropertiesClass,
|
|
27777
|
+
OwnershipClass,
|
|
27778
|
+
SiblingsClass,
|
|
26931
27779
|
FormsClass,
|
|
26932
27780
|
BrowsePathsV2Class,
|
|
26933
27781
|
DisplayPropertiesClass,
|
|
26934
|
-
StatusClass,
|
|
26935
|
-
VersionPropertiesClass,
|
|
26936
|
-
SiblingsClass,
|
|
26937
|
-
DocumentationClass,
|
|
26938
|
-
BrowsePathsClass,
|
|
26939
27782
|
EmbedClass,
|
|
26940
|
-
|
|
27783
|
+
GlossaryTermsClass,
|
|
27784
|
+
SubTypesClass,
|
|
27785
|
+
DataTransformLogicClass,
|
|
26941
27786
|
InstitutionalMemoryClass,
|
|
26942
|
-
|
|
26943
|
-
|
|
26944
|
-
|
|
26945
|
-
|
|
26946
|
-
|
|
26947
|
-
|
|
26948
|
-
|
|
26949
|
-
|
|
26950
|
-
|
|
26951
|
-
|
|
26952
|
-
|
|
26953
|
-
|
|
26954
|
-
|
|
26955
|
-
|
|
27787
|
+
GlobalTagsClass,
|
|
27788
|
+
CostClass,
|
|
27789
|
+
StatusClass,
|
|
27790
|
+
DataPlatformInstanceClass,
|
|
27791
|
+
OriginClass,
|
|
27792
|
+
BusinessAttributeKeyClass,
|
|
27793
|
+
BusinessAttributeInfoClass,
|
|
27794
|
+
BusinessAttributesClass,
|
|
27795
|
+
DataFlowInfoClass,
|
|
27796
|
+
EditableDataFlowPropertiesClass,
|
|
27797
|
+
VersionInfoClass,
|
|
27798
|
+
DataJobInputOutputClass,
|
|
27799
|
+
EditableDataJobPropertiesClass,
|
|
27800
|
+
DataJobInfoClass,
|
|
27801
|
+
DatahubIngestionRunSummaryClass,
|
|
27802
|
+
DatahubIngestionCheckpointClass,
|
|
27803
|
+
TestInfoClass,
|
|
27804
|
+
TestResultsClass,
|
|
27805
|
+
DataHubConnectionDetailsClass,
|
|
27806
|
+
GroupMembershipClass,
|
|
27807
|
+
CorpUserStatusClass,
|
|
27808
|
+
CorpUserInfoClass,
|
|
27809
|
+
CorpUserEditableInfoClass,
|
|
27810
|
+
CorpUserCredentialsClass,
|
|
27811
|
+
InviteTokenClass,
|
|
27812
|
+
NativeGroupMembershipClass,
|
|
27813
|
+
RoleMembershipClass,
|
|
27814
|
+
CorpUserSettingsClass,
|
|
27815
|
+
CorpGroupEditableInfoClass,
|
|
27816
|
+
CorpGroupInfoClass,
|
|
27817
|
+
DataHubViewInfoClass,
|
|
27818
|
+
TagPropertiesClass,
|
|
27819
|
+
AssertionActionsClass,
|
|
27820
|
+
AssertionRunEventClass,
|
|
27821
|
+
AssertionInfoClass,
|
|
27822
|
+
EditableERModelRelationshipPropertiesClass,
|
|
27823
|
+
ERModelRelationshipPropertiesClass,
|
|
27824
|
+
EditableSchemaMetadataClass,
|
|
27825
|
+
SchemaMetadataClass,
|
|
27826
|
+
LogicalParentClass,
|
|
27827
|
+
ChartInfoClass,
|
|
27828
|
+
ChartUsageStatisticsClass,
|
|
27829
|
+
ChartQueryClass,
|
|
27830
|
+
EditableChartPropertiesClass,
|
|
27831
|
+
DataHubAccessTokenInfoClass,
|
|
27832
|
+
GlossaryTermInfoClass,
|
|
27833
|
+
GlossaryRelatedTermsClass,
|
|
27834
|
+
GlossaryNodeInfoClass,
|
|
27835
|
+
DomainPropertiesClass,
|
|
27836
|
+
DomainsClass,
|
|
27837
|
+
DataProcessInstanceRunEventClass,
|
|
27838
|
+
DataProcessInstanceRelationshipsClass,
|
|
27839
|
+
DataProcessInstanceOutputClass,
|
|
27840
|
+
DataProcessInfoClass,
|
|
27841
|
+
DataProcessInstanceInputClass,
|
|
27842
|
+
DataProcessInstancePropertiesClass,
|
|
27843
|
+
QueryUsageStatisticsClass,
|
|
27844
|
+
QuerySubjectsClass,
|
|
27845
|
+
QueryPropertiesClass,
|
|
27846
|
+
ExecutionRequestResultClass,
|
|
27847
|
+
ExecutionRequestInputClass,
|
|
27848
|
+
ExecutionRequestSignalClass,
|
|
27849
|
+
DataHubStepStatePropertiesClass,
|
|
27850
|
+
SystemMetadataClass,
|
|
26956
27851
|
DataHubUpgradeKeyClass,
|
|
26957
|
-
DataHubStepStateKeyClass,
|
|
26958
|
-
DomainKeyClass,
|
|
26959
|
-
IncidentKeyClass,
|
|
26960
|
-
InviteTokenKeyClass,
|
|
26961
27852
|
GlobalSettingsKeyClass,
|
|
26962
|
-
|
|
27853
|
+
MLModelDeploymentKeyClass,
|
|
26963
27854
|
RoleKeyClass,
|
|
26964
|
-
CorpGroupKeyClass,
|
|
26965
|
-
AssertionKeyClass,
|
|
26966
|
-
DataProcessKeyClass,
|
|
26967
|
-
DataHubViewKeyClass,
|
|
26968
27855
|
DataPlatformInstanceKeyClass,
|
|
26969
|
-
|
|
26970
|
-
|
|
27856
|
+
CorpGroupKeyClass,
|
|
27857
|
+
NotebookKeyClass,
|
|
27858
|
+
DataPlatformKeyClass,
|
|
27859
|
+
MLFeatureKeyClass,
|
|
27860
|
+
DataHubActionKeyClass,
|
|
26971
27861
|
MLFeatureTableKeyClass,
|
|
26972
|
-
|
|
26973
|
-
|
|
26974
|
-
|
|
26975
|
-
|
|
27862
|
+
DataHubRetentionKeyClass,
|
|
27863
|
+
MLModelKeyClass,
|
|
27864
|
+
ERModelRelationshipKeyClass,
|
|
27865
|
+
GlossaryTermKeyClass,
|
|
27866
|
+
DashboardKeyClass,
|
|
27867
|
+
VersionSetKeyClass,
|
|
27868
|
+
ContainerKeyClass,
|
|
27869
|
+
DataHubStepStateKeyClass,
|
|
27870
|
+
GlossaryNodeKeyClass,
|
|
27871
|
+
DataJobKeyClass,
|
|
27872
|
+
DataHubViewKeyClass,
|
|
27873
|
+
DataHubPageTemplateKeyClass,
|
|
27874
|
+
DomainKeyClass,
|
|
27875
|
+
IncidentKeyClass,
|
|
27876
|
+
DatasetKeyClass,
|
|
27877
|
+
DataHubRoleKeyClass,
|
|
26976
27878
|
CorpUserKeyClass,
|
|
26977
|
-
|
|
26978
|
-
|
|
27879
|
+
AssertionKeyClass,
|
|
27880
|
+
ChartKeyClass,
|
|
26979
27881
|
SchemaFieldKeyClass,
|
|
26980
|
-
DataContractKeyClass,
|
|
26981
|
-
MLModelDeploymentKeyClass,
|
|
26982
|
-
GlossaryNodeKeyClass,
|
|
26983
27882
|
OwnershipTypeKeyClass,
|
|
26984
|
-
|
|
26985
|
-
|
|
27883
|
+
MLModelGroupKeyClass,
|
|
27884
|
+
DataHubConnectionKeyClass,
|
|
26986
27885
|
TestKeyClass,
|
|
26987
|
-
DataHubRetentionKeyClass,
|
|
26988
|
-
NotebookKeyClass,
|
|
26989
|
-
DataHubRoleKeyClass,
|
|
26990
|
-
QueryKeyClass,
|
|
26991
|
-
DashboardKeyClass,
|
|
26992
|
-
MLModelKeyClass,
|
|
26993
|
-
DataProcessInstanceKeyClass,
|
|
26994
|
-
DataJobKeyClass,
|
|
26995
27886
|
FormKeyClass,
|
|
27887
|
+
DataHubPolicyKeyClass,
|
|
27888
|
+
DataHubPersonaKeyClass,
|
|
27889
|
+
MLPrimaryKeyKeyClass,
|
|
27890
|
+
DataProcessInstanceKeyClass,
|
|
27891
|
+
PostKeyClass,
|
|
27892
|
+
DataProcessKeyClass,
|
|
26996
27893
|
TelemetryKeyClass,
|
|
26997
|
-
|
|
27894
|
+
QueryKeyClass,
|
|
27895
|
+
TagKeyClass,
|
|
27896
|
+
DataHubPageModuleKeyClass,
|
|
27897
|
+
DataHubSecretKeyClass,
|
|
27898
|
+
ExecutionRequestKeyClass,
|
|
27899
|
+
InviteTokenKeyClass,
|
|
27900
|
+
DataContractKeyClass,
|
|
27901
|
+
DataHubOpenAPISchemaKeyClass,
|
|
27902
|
+
DataHubAccessTokenKeyClass,
|
|
26998
27903
|
DataFlowKeyClass,
|
|
26999
|
-
|
|
27000
|
-
|
|
27001
|
-
DataProcessInstancePropertiesClass,
|
|
27002
|
-
DataProcessInfoClass,
|
|
27003
|
-
DataProcessInstanceOutputClass,
|
|
27004
|
-
DataProcessInstanceRunEventClass,
|
|
27005
|
-
DataProcessInstanceRelationshipsClass,
|
|
27006
|
-
DataProcessInstanceInputClass,
|
|
27007
|
-
PlatformResourceInfoClass,
|
|
27008
|
-
PlatformResourceKeyClass,
|
|
27009
|
-
EditableERModelRelationshipPropertiesClass,
|
|
27010
|
-
ERModelRelationshipPropertiesClass,
|
|
27011
|
-
DataHubViewInfoClass,
|
|
27012
|
-
DataHubUpgradeRequestClass,
|
|
27013
|
-
DataHubUpgradeResultClass,
|
|
27904
|
+
DataHubIngestionSourceKeyClass,
|
|
27905
|
+
VersionSetPropertiesClass,
|
|
27014
27906
|
OwnershipTypeInfoClass,
|
|
27015
|
-
|
|
27016
|
-
|
|
27017
|
-
|
|
27018
|
-
EntityTypeKeyClass,
|
|
27019
|
-
EntityTypeInfoClass,
|
|
27020
|
-
DomainsClass,
|
|
27021
|
-
DomainPropertiesClass,
|
|
27022
|
-
DataHubIngestionSourceInfoClass,
|
|
27907
|
+
PostInfoClass,
|
|
27908
|
+
RolePropertiesClass,
|
|
27909
|
+
ActorsClass,
|
|
27023
27910
|
StructuredPropertySettingsClass,
|
|
27911
|
+
StructuredPropertiesClass,
|
|
27024
27912
|
StructuredPropertyDefinitionClass,
|
|
27025
27913
|
StructuredPropertyKeyClass,
|
|
27026
|
-
|
|
27027
|
-
|
|
27028
|
-
|
|
27029
|
-
|
|
27030
|
-
|
|
27031
|
-
|
|
27914
|
+
DataContractStatusClass,
|
|
27915
|
+
DataContractPropertiesClass,
|
|
27916
|
+
DataHubIngestionSourceInfoClass,
|
|
27917
|
+
TelemetryClientIdClass,
|
|
27918
|
+
DataHubPageModulePropertiesClass,
|
|
27919
|
+
GlobalSettingsInfoClass,
|
|
27920
|
+
DataHubPersonaInfoClass,
|
|
27921
|
+
EditableContainerPropertiesClass,
|
|
27922
|
+
ContainerClass,
|
|
27923
|
+
ContainerPropertiesClass,
|
|
27924
|
+
ApplicationPropertiesClass,
|
|
27925
|
+
ApplicationsClass,
|
|
27926
|
+
ApplicationKeyClass,
|
|
27927
|
+
IncidentSourceClass,
|
|
27928
|
+
IncidentInfoClass,
|
|
27929
|
+
DataHubSecretValueClass,
|
|
27930
|
+
EditableNotebookPropertiesClass,
|
|
27931
|
+
NotebookContentClass,
|
|
27932
|
+
NotebookInfoClass,
|
|
27933
|
+
DashboardUsageStatisticsClass,
|
|
27934
|
+
DashboardInfoClass,
|
|
27935
|
+
EditableDashboardPropertiesClass,
|
|
27936
|
+
UpstreamLineageClass,
|
|
27032
27937
|
DatasetUpstreamLineageClass,
|
|
27938
|
+
DatasetDeprecationClass,
|
|
27033
27939
|
DatasetPropertiesClass,
|
|
27034
|
-
UpstreamLineageClass,
|
|
27035
27940
|
PartitionsSummaryClass,
|
|
27941
|
+
DatasetProfileClass,
|
|
27942
|
+
DatasetUsageStatisticsClass,
|
|
27943
|
+
IcebergCatalogInfoClass,
|
|
27944
|
+
ViewPropertiesClass,
|
|
27036
27945
|
EditableDatasetPropertiesClass,
|
|
27037
|
-
|
|
27038
|
-
|
|
27039
|
-
|
|
27040
|
-
|
|
27041
|
-
|
|
27042
|
-
|
|
27043
|
-
MLModelPropertiesClass,
|
|
27044
|
-
EvaluationDataClass,
|
|
27045
|
-
MLHyperParamClass,
|
|
27046
|
-
MLPrimaryKeyPropertiesClass,
|
|
27047
|
-
IntendedUseClass,
|
|
27048
|
-
TrainingDataClass,
|
|
27049
|
-
SourceCodeClass,
|
|
27050
|
-
QuantitativeAnalysesClass,
|
|
27946
|
+
EntityTypeInfoClass,
|
|
27947
|
+
EntityTypeKeyClass,
|
|
27948
|
+
SchemaFieldAliasesClass,
|
|
27949
|
+
SchemaFieldInfoClass,
|
|
27950
|
+
MLMetricClass,
|
|
27951
|
+
EditableMLModelPropertiesClass,
|
|
27051
27952
|
MLModelFactorPromptsClass,
|
|
27052
|
-
|
|
27953
|
+
MLHyperParamClass,
|
|
27053
27954
|
MetricsClass,
|
|
27054
|
-
|
|
27055
|
-
EditableMLModelGroupPropertiesClass,
|
|
27955
|
+
SourceCodeClass,
|
|
27056
27956
|
MLTrainingRunPropertiesClass,
|
|
27057
|
-
|
|
27058
|
-
MLFeaturePropertiesClass,
|
|
27059
|
-
MLFeatureTablePropertiesClass,
|
|
27957
|
+
EditableMLModelGroupPropertiesClass,
|
|
27060
27958
|
MLModelDeploymentPropertiesClass,
|
|
27061
|
-
|
|
27062
|
-
EditableMLFeaturePropertiesClass,
|
|
27959
|
+
MLFeatureTablePropertiesClass,
|
|
27063
27960
|
EthicalConsiderationsClass,
|
|
27961
|
+
MLFeaturePropertiesClass,
|
|
27962
|
+
QuantitativeAnalysesClass,
|
|
27963
|
+
MLModelPropertiesClass,
|
|
27964
|
+
CaveatsAndRecommendationsClass,
|
|
27064
27965
|
EditableMLPrimaryKeyPropertiesClass,
|
|
27065
|
-
|
|
27066
|
-
|
|
27067
|
-
|
|
27068
|
-
|
|
27069
|
-
|
|
27070
|
-
|
|
27071
|
-
|
|
27072
|
-
|
|
27073
|
-
|
|
27966
|
+
IntendedUseClass,
|
|
27967
|
+
MLPrimaryKeyPropertiesClass,
|
|
27968
|
+
TrainingDataClass,
|
|
27969
|
+
EditableMLFeaturePropertiesClass,
|
|
27970
|
+
MLModelGroupPropertiesClass,
|
|
27971
|
+
EvaluationDataClass,
|
|
27972
|
+
EditableMLFeatureTablePropertiesClass,
|
|
27973
|
+
PlatformResourceKeyClass,
|
|
27974
|
+
PlatformResourceInfoClass,
|
|
27975
|
+
FormInfoClass,
|
|
27976
|
+
DynamicFormAssignmentClass,
|
|
27074
27977
|
DataPlatformInstancePropertiesClass,
|
|
27075
27978
|
IcebergWarehouseInfoClass,
|
|
27076
|
-
|
|
27077
|
-
SchemaFieldInfoClass,
|
|
27078
|
-
DataTypeKeyClass,
|
|
27079
|
-
DataTypeInfoClass,
|
|
27080
|
-
DataHubRetentionConfigClass,
|
|
27081
|
-
DataHubRoleInfoClass,
|
|
27082
|
-
DataHubPolicyInfoClass,
|
|
27083
|
-
ContainerClass,
|
|
27084
|
-
ContainerPropertiesClass,
|
|
27085
|
-
EditableContainerPropertiesClass,
|
|
27086
|
-
AssertionRunEventClass,
|
|
27087
|
-
AssertionActionsClass,
|
|
27088
|
-
AssertionInfoClass,
|
|
27089
|
-
GlossaryRelatedTermsClass,
|
|
27090
|
-
GlossaryTermInfoClass,
|
|
27091
|
-
GlossaryNodeInfoClass,
|
|
27092
|
-
DataJobInputOutputClass,
|
|
27093
|
-
DataFlowInfoClass,
|
|
27094
|
-
EditableDataFlowPropertiesClass,
|
|
27095
|
-
DataJobInfoClass,
|
|
27096
|
-
VersionInfoClass,
|
|
27097
|
-
EditableDataJobPropertiesClass,
|
|
27098
|
-
DatahubIngestionRunSummaryClass,
|
|
27099
|
-
DatahubIngestionCheckpointClass,
|
|
27100
|
-
DataHubPersonaInfoClass,
|
|
27101
|
-
VersionSetPropertiesClass,
|
|
27102
|
-
NotebookContentClass,
|
|
27103
|
-
NotebookInfoClass,
|
|
27104
|
-
EditableNotebookPropertiesClass,
|
|
27105
|
-
SchemaMetadataClass,
|
|
27106
|
-
EditableSchemaMetadataClass,
|
|
27107
|
-
BusinessAttributeKeyClass,
|
|
27108
|
-
BusinessAttributeInfoClass,
|
|
27109
|
-
BusinessAttributesClass,
|
|
27110
|
-
TelemetryClientIdClass,
|
|
27111
|
-
DataHubConnectionDetailsClass
|
|
27979
|
+
DataHubRetentionConfigClass
|
|
27112
27980
|
]
|
|
27113
27981
|
|
|
27114
27982
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -27116,406 +27984,425 @@ ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
|
27116
27984
|
for aspect in ASPECT_CLASSES
|
|
27117
27985
|
}
|
|
27118
27986
|
|
|
27119
|
-
from typing import Literal
|
|
27987
|
+
from typing import Literal, Set
|
|
27120
27988
|
from typing_extensions import TypedDict
|
|
27121
27989
|
|
|
27122
27990
|
class AspectBag(TypedDict, total=False):
|
|
27123
|
-
|
|
27124
|
-
|
|
27125
|
-
|
|
27126
|
-
|
|
27127
|
-
corpGroupInfo: CorpGroupInfoClass
|
|
27128
|
-
groupMembership: GroupMembershipClass
|
|
27129
|
-
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
27130
|
-
roleMembership: RoleMembershipClass
|
|
27131
|
-
corpUserInfo: CorpUserInfoClass
|
|
27132
|
-
inviteToken: InviteTokenClass
|
|
27133
|
-
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
27134
|
-
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
27135
|
-
testResults: TestResultsClass
|
|
27136
|
-
testInfo: TestInfoClass
|
|
27137
|
-
incidentInfo: IncidentInfoClass
|
|
27138
|
-
incidentSource: IncidentSourceClass
|
|
27139
|
-
tagProperties: TagPropertiesClass
|
|
27991
|
+
dataTypeKey: DataTypeKeyClass
|
|
27992
|
+
dataTypeInfo: DataTypeInfoClass
|
|
27993
|
+
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
27994
|
+
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
27140
27995
|
dataPlatformInfo: DataPlatformInfoClass
|
|
27141
27996
|
slackUserInfo: SlackUserInfoClass
|
|
27142
|
-
|
|
27997
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
27998
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
27999
|
+
dataHubPageTemplateProperties: DataHubPageTemplatePropertiesClass
|
|
27143
28000
|
dataProductKey: DataProductKeyClass
|
|
27144
28001
|
dataProductProperties: DataProductPropertiesClass
|
|
27145
|
-
inputFields: InputFieldsClass
|
|
27146
|
-
dataPlatformInstance: DataPlatformInstanceClass
|
|
27147
|
-
cost: CostClass
|
|
27148
|
-
subTypes: SubTypesClass
|
|
27149
28002
|
deprecation: DeprecationClass
|
|
27150
|
-
|
|
27151
|
-
|
|
27152
|
-
|
|
27153
|
-
dataTransformLogic: DataTransformLogicClass
|
|
27154
|
-
glossaryTerms: GlossaryTermsClass
|
|
28003
|
+
browsePaths: BrowsePathsClass
|
|
28004
|
+
access: AccessClass
|
|
28005
|
+
inputFields: InputFieldsClass
|
|
27155
28006
|
incidentsSummary: IncidentsSummaryClass
|
|
28007
|
+
documentation: DocumentationClass
|
|
28008
|
+
operation: OperationClass
|
|
28009
|
+
versionProperties: VersionPropertiesClass
|
|
28010
|
+
ownership: OwnershipClass
|
|
28011
|
+
siblings: SiblingsClass
|
|
27156
28012
|
forms: FormsClass
|
|
27157
28013
|
browsePathsV2: BrowsePathsV2Class
|
|
27158
28014
|
displayProperties: DisplayPropertiesClass
|
|
27159
|
-
status: StatusClass
|
|
27160
|
-
versionProperties: VersionPropertiesClass
|
|
27161
|
-
siblings: SiblingsClass
|
|
27162
|
-
documentation: DocumentationClass
|
|
27163
|
-
browsePaths: BrowsePathsClass
|
|
27164
28015
|
embed: EmbedClass
|
|
27165
|
-
|
|
28016
|
+
glossaryTerms: GlossaryTermsClass
|
|
28017
|
+
subTypes: SubTypesClass
|
|
28018
|
+
dataTransformLogic: DataTransformLogicClass
|
|
27166
28019
|
institutionalMemory: InstitutionalMemoryClass
|
|
27167
|
-
|
|
27168
|
-
|
|
27169
|
-
|
|
27170
|
-
|
|
27171
|
-
|
|
27172
|
-
|
|
27173
|
-
|
|
27174
|
-
|
|
27175
|
-
|
|
27176
|
-
|
|
27177
|
-
|
|
27178
|
-
|
|
27179
|
-
|
|
27180
|
-
|
|
28020
|
+
globalTags: GlobalTagsClass
|
|
28021
|
+
cost: CostClass
|
|
28022
|
+
status: StatusClass
|
|
28023
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
28024
|
+
origin: OriginClass
|
|
28025
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
28026
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
28027
|
+
businessAttributes: BusinessAttributesClass
|
|
28028
|
+
dataFlowInfo: DataFlowInfoClass
|
|
28029
|
+
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
28030
|
+
versionInfo: VersionInfoClass
|
|
28031
|
+
dataJobInputOutput: DataJobInputOutputClass
|
|
28032
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
28033
|
+
dataJobInfo: DataJobInfoClass
|
|
28034
|
+
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
28035
|
+
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
28036
|
+
testInfo: TestInfoClass
|
|
28037
|
+
testResults: TestResultsClass
|
|
28038
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
28039
|
+
groupMembership: GroupMembershipClass
|
|
28040
|
+
corpUserStatus: CorpUserStatusClass
|
|
28041
|
+
corpUserInfo: CorpUserInfoClass
|
|
28042
|
+
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
28043
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
28044
|
+
inviteToken: InviteTokenClass
|
|
28045
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
28046
|
+
roleMembership: RoleMembershipClass
|
|
28047
|
+
corpUserSettings: CorpUserSettingsClass
|
|
28048
|
+
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
28049
|
+
corpGroupInfo: CorpGroupInfoClass
|
|
28050
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
28051
|
+
tagProperties: TagPropertiesClass
|
|
28052
|
+
assertionActions: AssertionActionsClass
|
|
28053
|
+
assertionRunEvent: AssertionRunEventClass
|
|
28054
|
+
assertionInfo: AssertionInfoClass
|
|
28055
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
28056
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
28057
|
+
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
28058
|
+
schemaMetadata: SchemaMetadataClass
|
|
28059
|
+
logicalParent: LogicalParentClass
|
|
28060
|
+
chartInfo: ChartInfoClass
|
|
28061
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
28062
|
+
chartQuery: ChartQueryClass
|
|
28063
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
28064
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
28065
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
28066
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
28067
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
28068
|
+
domainProperties: DomainPropertiesClass
|
|
28069
|
+
domains: DomainsClass
|
|
28070
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
28071
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
28072
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
28073
|
+
dataProcessInfo: DataProcessInfoClass
|
|
28074
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
28075
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
28076
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
28077
|
+
querySubjects: QuerySubjectsClass
|
|
28078
|
+
queryProperties: QueryPropertiesClass
|
|
28079
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
28080
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
28081
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
28082
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
28083
|
+
systemMetadata: SystemMetadataClass
|
|
27181
28084
|
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
27182
|
-
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
27183
|
-
domainKey: DomainKeyClass
|
|
27184
|
-
incidentKey: IncidentKeyClass
|
|
27185
|
-
inviteTokenKey: InviteTokenKeyClass
|
|
27186
28085
|
globalSettingsKey: GlobalSettingsKeyClass
|
|
27187
|
-
|
|
28086
|
+
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
27188
28087
|
roleKey: RoleKeyClass
|
|
27189
|
-
corpGroupKey: CorpGroupKeyClass
|
|
27190
|
-
assertionKey: AssertionKeyClass
|
|
27191
|
-
dataProcessKey: DataProcessKeyClass
|
|
27192
|
-
dataHubViewKey: DataHubViewKeyClass
|
|
27193
28088
|
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
27194
|
-
|
|
27195
|
-
|
|
28089
|
+
corpGroupKey: CorpGroupKeyClass
|
|
28090
|
+
notebookKey: NotebookKeyClass
|
|
28091
|
+
dataPlatformKey: DataPlatformKeyClass
|
|
28092
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
28093
|
+
dataHubActionKey: DataHubActionKeyClass
|
|
27196
28094
|
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
27197
|
-
|
|
27198
|
-
|
|
27199
|
-
|
|
27200
|
-
|
|
28095
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
28096
|
+
mlModelKey: MLModelKeyClass
|
|
28097
|
+
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
28098
|
+
glossaryTermKey: GlossaryTermKeyClass
|
|
28099
|
+
dashboardKey: DashboardKeyClass
|
|
28100
|
+
versionSetKey: VersionSetKeyClass
|
|
28101
|
+
containerKey: ContainerKeyClass
|
|
28102
|
+
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
28103
|
+
glossaryNodeKey: GlossaryNodeKeyClass
|
|
28104
|
+
dataJobKey: DataJobKeyClass
|
|
28105
|
+
dataHubViewKey: DataHubViewKeyClass
|
|
28106
|
+
dataHubPageTemplateKey: DataHubPageTemplateKeyClass
|
|
28107
|
+
domainKey: DomainKeyClass
|
|
28108
|
+
incidentKey: IncidentKeyClass
|
|
28109
|
+
datasetKey: DatasetKeyClass
|
|
28110
|
+
dataHubRoleKey: DataHubRoleKeyClass
|
|
27201
28111
|
corpUserKey: CorpUserKeyClass
|
|
27202
|
-
|
|
27203
|
-
|
|
28112
|
+
assertionKey: AssertionKeyClass
|
|
28113
|
+
chartKey: ChartKeyClass
|
|
27204
28114
|
schemaFieldKey: SchemaFieldKeyClass
|
|
27205
|
-
dataContractKey: DataContractKeyClass
|
|
27206
|
-
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
27207
|
-
glossaryNodeKey: GlossaryNodeKeyClass
|
|
27208
28115
|
ownershipTypeKey: OwnershipTypeKeyClass
|
|
27209
|
-
|
|
27210
|
-
|
|
28116
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
28117
|
+
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
27211
28118
|
testKey: TestKeyClass
|
|
27212
|
-
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
27213
|
-
notebookKey: NotebookKeyClass
|
|
27214
|
-
dataHubRoleKey: DataHubRoleKeyClass
|
|
27215
|
-
queryKey: QueryKeyClass
|
|
27216
|
-
dashboardKey: DashboardKeyClass
|
|
27217
|
-
mlModelKey: MLModelKeyClass
|
|
27218
|
-
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
27219
|
-
dataJobKey: DataJobKeyClass
|
|
27220
28119
|
formKey: FormKeyClass
|
|
28120
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
28121
|
+
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
28122
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
28123
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
28124
|
+
postKey: PostKeyClass
|
|
28125
|
+
dataProcessKey: DataProcessKeyClass
|
|
27221
28126
|
telemetryKey: TelemetryKeyClass
|
|
27222
|
-
|
|
28127
|
+
queryKey: QueryKeyClass
|
|
28128
|
+
tagKey: TagKeyClass
|
|
28129
|
+
dataHubPageModuleKey: DataHubPageModuleKeyClass
|
|
28130
|
+
dataHubSecretKey: DataHubSecretKeyClass
|
|
28131
|
+
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
28132
|
+
inviteTokenKey: InviteTokenKeyClass
|
|
28133
|
+
dataContractKey: DataContractKeyClass
|
|
28134
|
+
dataHubOpenAPISchemaKey: DataHubOpenAPISchemaKeyClass
|
|
28135
|
+
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
27223
28136
|
dataFlowKey: DataFlowKeyClass
|
|
27224
|
-
|
|
27225
|
-
|
|
27226
|
-
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
27227
|
-
dataProcessInfo: DataProcessInfoClass
|
|
27228
|
-
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
27229
|
-
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
27230
|
-
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
27231
|
-
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
27232
|
-
platformResourceInfo: PlatformResourceInfoClass
|
|
27233
|
-
platformResourceKey: PlatformResourceKeyClass
|
|
27234
|
-
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
27235
|
-
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
27236
|
-
dataHubViewInfo: DataHubViewInfoClass
|
|
27237
|
-
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
27238
|
-
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
28137
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
28138
|
+
versionSetProperties: VersionSetPropertiesClass
|
|
27239
28139
|
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
27240
|
-
|
|
27241
|
-
|
|
27242
|
-
|
|
27243
|
-
entityTypeKey: EntityTypeKeyClass
|
|
27244
|
-
entityTypeInfo: EntityTypeInfoClass
|
|
27245
|
-
domains: DomainsClass
|
|
27246
|
-
domainProperties: DomainPropertiesClass
|
|
27247
|
-
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
28140
|
+
postInfo: PostInfoClass
|
|
28141
|
+
roleProperties: RolePropertiesClass
|
|
28142
|
+
actors: ActorsClass
|
|
27248
28143
|
structuredPropertySettings: StructuredPropertySettingsClass
|
|
28144
|
+
structuredProperties: StructuredPropertiesClass
|
|
27249
28145
|
propertyDefinition: StructuredPropertyDefinitionClass
|
|
27250
28146
|
structuredPropertyKey: StructuredPropertyKeyClass
|
|
27251
|
-
|
|
27252
|
-
|
|
27253
|
-
|
|
27254
|
-
|
|
27255
|
-
|
|
27256
|
-
|
|
28147
|
+
dataContractStatus: DataContractStatusClass
|
|
28148
|
+
dataContractProperties: DataContractPropertiesClass
|
|
28149
|
+
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
28150
|
+
telemetryClientId: TelemetryClientIdClass
|
|
28151
|
+
dataHubPageModuleProperties: DataHubPageModulePropertiesClass
|
|
28152
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
28153
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
28154
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
28155
|
+
container: ContainerClass
|
|
28156
|
+
containerProperties: ContainerPropertiesClass
|
|
28157
|
+
applicationProperties: ApplicationPropertiesClass
|
|
28158
|
+
applications: ApplicationsClass
|
|
28159
|
+
applicationKey: ApplicationKeyClass
|
|
28160
|
+
incidentSource: IncidentSourceClass
|
|
28161
|
+
incidentInfo: IncidentInfoClass
|
|
28162
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
28163
|
+
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
28164
|
+
notebookContent: NotebookContentClass
|
|
28165
|
+
notebookInfo: NotebookInfoClass
|
|
28166
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
28167
|
+
dashboardInfo: DashboardInfoClass
|
|
28168
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
28169
|
+
upstreamLineage: UpstreamLineageClass
|
|
27257
28170
|
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
28171
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
27258
28172
|
datasetProperties: DatasetPropertiesClass
|
|
27259
|
-
upstreamLineage: UpstreamLineageClass
|
|
27260
28173
|
partitionsSummary: PartitionsSummaryClass
|
|
28174
|
+
datasetProfile: DatasetProfileClass
|
|
28175
|
+
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
28176
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
28177
|
+
viewProperties: ViewPropertiesClass
|
|
27261
28178
|
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
27262
|
-
|
|
27263
|
-
|
|
27264
|
-
|
|
27265
|
-
|
|
27266
|
-
|
|
27267
|
-
|
|
27268
|
-
mlModelProperties: MLModelPropertiesClass
|
|
27269
|
-
mlModelEvaluationData: EvaluationDataClass
|
|
27270
|
-
mlHyperParam: MLHyperParamClass
|
|
27271
|
-
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
27272
|
-
intendedUse: IntendedUseClass
|
|
27273
|
-
mlModelTrainingData: TrainingDataClass
|
|
27274
|
-
sourceCode: SourceCodeClass
|
|
27275
|
-
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
28179
|
+
entityTypeInfo: EntityTypeInfoClass
|
|
28180
|
+
entityTypeKey: EntityTypeKeyClass
|
|
28181
|
+
schemaFieldAliases: SchemaFieldAliasesClass
|
|
28182
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
28183
|
+
mlMetric: MLMetricClass
|
|
28184
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
27276
28185
|
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
27277
|
-
|
|
28186
|
+
mlHyperParam: MLHyperParamClass
|
|
27278
28187
|
mlModelMetrics: MetricsClass
|
|
27279
|
-
|
|
27280
|
-
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
28188
|
+
sourceCode: SourceCodeClass
|
|
27281
28189
|
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
27282
|
-
|
|
27283
|
-
mlFeatureProperties: MLFeaturePropertiesClass
|
|
27284
|
-
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
28190
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
27285
28191
|
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
27286
|
-
|
|
27287
|
-
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
28192
|
+
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
27288
28193
|
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
28194
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
28195
|
+
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
28196
|
+
mlModelProperties: MLModelPropertiesClass
|
|
28197
|
+
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
27289
28198
|
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
27290
|
-
|
|
27291
|
-
|
|
27292
|
-
|
|
27293
|
-
|
|
27294
|
-
|
|
27295
|
-
|
|
27296
|
-
|
|
27297
|
-
|
|
27298
|
-
|
|
27299
|
-
|
|
27300
|
-
|
|
27301
|
-
|
|
27302
|
-
|
|
27303
|
-
|
|
27304
|
-
dataTypeInfo: DataTypeInfoClass
|
|
27305
|
-
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
27306
|
-
dataHubRoleInfo: DataHubRoleInfoClass
|
|
27307
|
-
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
27308
|
-
container: ContainerClass
|
|
27309
|
-
containerProperties: ContainerPropertiesClass
|
|
27310
|
-
editableContainerProperties: EditableContainerPropertiesClass
|
|
27311
|
-
assertionRunEvent: AssertionRunEventClass
|
|
27312
|
-
assertionActions: AssertionActionsClass
|
|
27313
|
-
assertionInfo: AssertionInfoClass
|
|
27314
|
-
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
27315
|
-
glossaryTermInfo: GlossaryTermInfoClass
|
|
27316
|
-
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
27317
|
-
dataJobInputOutput: DataJobInputOutputClass
|
|
27318
|
-
dataFlowInfo: DataFlowInfoClass
|
|
27319
|
-
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
27320
|
-
dataJobInfo: DataJobInfoClass
|
|
27321
|
-
versionInfo: VersionInfoClass
|
|
27322
|
-
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
27323
|
-
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
27324
|
-
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
27325
|
-
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
27326
|
-
versionSetProperties: VersionSetPropertiesClass
|
|
27327
|
-
notebookContent: NotebookContentClass
|
|
27328
|
-
notebookInfo: NotebookInfoClass
|
|
27329
|
-
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
27330
|
-
schemaMetadata: SchemaMetadataClass
|
|
27331
|
-
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
27332
|
-
businessAttributeKey: BusinessAttributeKeyClass
|
|
27333
|
-
businessAttributeInfo: BusinessAttributeInfoClass
|
|
27334
|
-
businessAttributes: BusinessAttributesClass
|
|
27335
|
-
telemetryClientId: TelemetryClientIdClass
|
|
27336
|
-
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
28199
|
+
intendedUse: IntendedUseClass
|
|
28200
|
+
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
28201
|
+
mlModelTrainingData: TrainingDataClass
|
|
28202
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
28203
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
28204
|
+
mlModelEvaluationData: EvaluationDataClass
|
|
28205
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
28206
|
+
platformResourceKey: PlatformResourceKeyClass
|
|
28207
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
28208
|
+
formInfo: FormInfoClass
|
|
28209
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
28210
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
28211
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
28212
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
27337
28213
|
|
|
27338
28214
|
|
|
27339
28215
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
28216
|
+
'dataType': DataTypeKeyClass,
|
|
27340
28217
|
'dataProduct': DataProductKeyClass,
|
|
27341
|
-
'
|
|
27342
|
-
'dataHubPersona': DataHubPersonaKeyClass,
|
|
27343
|
-
'dataHubSecret': DataHubSecretKeyClass,
|
|
27344
|
-
'dataPlatform': DataPlatformKeyClass,
|
|
27345
|
-
'post': PostKeyClass,
|
|
27346
|
-
'versionSet': VersionSetKeyClass,
|
|
27347
|
-
'tag': TagKeyClass,
|
|
27348
|
-
'glossaryTerm': GlossaryTermKeyClass,
|
|
28218
|
+
'businessAttribute': BusinessAttributeKeyClass,
|
|
27349
28219
|
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
27350
|
-
'dataHubStepState': DataHubStepStateKeyClass,
|
|
27351
|
-
'domain': DomainKeyClass,
|
|
27352
|
-
'incident': IncidentKeyClass,
|
|
27353
|
-
'inviteToken': InviteTokenKeyClass,
|
|
27354
28220
|
'globalSettings': GlobalSettingsKeyClass,
|
|
27355
|
-
'
|
|
28221
|
+
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
27356
28222
|
'role': RoleKeyClass,
|
|
27357
|
-
'corpGroup': CorpGroupKeyClass,
|
|
27358
|
-
'assertion': AssertionKeyClass,
|
|
27359
|
-
'dataProcess': DataProcessKeyClass,
|
|
27360
|
-
'dataHubView': DataHubViewKeyClass,
|
|
27361
28223
|
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
27362
|
-
'
|
|
27363
|
-
'
|
|
28224
|
+
'corpGroup': CorpGroupKeyClass,
|
|
28225
|
+
'notebook': NotebookKeyClass,
|
|
28226
|
+
'dataPlatform': DataPlatformKeyClass,
|
|
28227
|
+
'mlFeature': MLFeatureKeyClass,
|
|
28228
|
+
'dataHubAction': DataHubActionKeyClass,
|
|
27364
28229
|
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
27365
|
-
'
|
|
27366
|
-
'
|
|
27367
|
-
'
|
|
27368
|
-
'
|
|
28230
|
+
'dataHubRetention': DataHubRetentionKeyClass,
|
|
28231
|
+
'mlModel': MLModelKeyClass,
|
|
28232
|
+
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
28233
|
+
'glossaryTerm': GlossaryTermKeyClass,
|
|
28234
|
+
'dashboard': DashboardKeyClass,
|
|
28235
|
+
'versionSet': VersionSetKeyClass,
|
|
28236
|
+
'container': ContainerKeyClass,
|
|
28237
|
+
'dataHubStepState': DataHubStepStateKeyClass,
|
|
28238
|
+
'glossaryNode': GlossaryNodeKeyClass,
|
|
28239
|
+
'dataJob': DataJobKeyClass,
|
|
28240
|
+
'dataHubView': DataHubViewKeyClass,
|
|
28241
|
+
'dataHubPageTemplate': DataHubPageTemplateKeyClass,
|
|
28242
|
+
'domain': DomainKeyClass,
|
|
28243
|
+
'incident': IncidentKeyClass,
|
|
28244
|
+
'dataset': DatasetKeyClass,
|
|
28245
|
+
'dataHubRole': DataHubRoleKeyClass,
|
|
27369
28246
|
'corpuser': CorpUserKeyClass,
|
|
27370
|
-
'
|
|
27371
|
-
'
|
|
28247
|
+
'assertion': AssertionKeyClass,
|
|
28248
|
+
'chart': ChartKeyClass,
|
|
27372
28249
|
'schemaField': SchemaFieldKeyClass,
|
|
27373
|
-
'dataContract': DataContractKeyClass,
|
|
27374
|
-
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
27375
|
-
'glossaryNode': GlossaryNodeKeyClass,
|
|
27376
28250
|
'ownershipType': OwnershipTypeKeyClass,
|
|
27377
|
-
'
|
|
27378
|
-
'
|
|
28251
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
28252
|
+
'dataHubConnection': DataHubConnectionKeyClass,
|
|
27379
28253
|
'test': TestKeyClass,
|
|
27380
|
-
'dataHubRetention': DataHubRetentionKeyClass,
|
|
27381
|
-
'notebook': NotebookKeyClass,
|
|
27382
|
-
'dataHubRole': DataHubRoleKeyClass,
|
|
27383
|
-
'query': QueryKeyClass,
|
|
27384
|
-
'dashboard': DashboardKeyClass,
|
|
27385
|
-
'mlModel': MLModelKeyClass,
|
|
27386
|
-
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
27387
|
-
'dataJob': DataJobKeyClass,
|
|
27388
28254
|
'form': FormKeyClass,
|
|
28255
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
28256
|
+
'dataHubPersona': DataHubPersonaKeyClass,
|
|
28257
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
28258
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
28259
|
+
'post': PostKeyClass,
|
|
28260
|
+
'dataProcess': DataProcessKeyClass,
|
|
27389
28261
|
'telemetry': TelemetryKeyClass,
|
|
27390
|
-
'
|
|
28262
|
+
'query': QueryKeyClass,
|
|
28263
|
+
'tag': TagKeyClass,
|
|
28264
|
+
'dataHubPageModule': DataHubPageModuleKeyClass,
|
|
28265
|
+
'dataHubSecret': DataHubSecretKeyClass,
|
|
28266
|
+
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
28267
|
+
'inviteToken': InviteTokenKeyClass,
|
|
28268
|
+
'dataContract': DataContractKeyClass,
|
|
28269
|
+
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
28270
|
+
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
27391
28271
|
'dataFlow': DataFlowKeyClass,
|
|
27392
|
-
'
|
|
27393
|
-
'platformResource': PlatformResourceKeyClass,
|
|
27394
|
-
'entityType': EntityTypeKeyClass,
|
|
28272
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
27395
28273
|
'structuredProperty': StructuredPropertyKeyClass,
|
|
27396
|
-
'
|
|
27397
|
-
'
|
|
28274
|
+
'application': ApplicationKeyClass,
|
|
28275
|
+
'entityType': EntityTypeKeyClass,
|
|
28276
|
+
'platformResource': PlatformResourceKeyClass
|
|
27398
28277
|
}
|
|
27399
28278
|
|
|
28279
|
+
KEY_ASPECT_NAMES: Set[str] = {cls.ASPECT_NAME for cls in KEY_ASPECTS.values()}
|
|
28280
|
+
|
|
27400
28281
|
ENTITY_TYPE_NAMES: List[str] = [
|
|
28282
|
+
'dataType',
|
|
27401
28283
|
'dataProduct',
|
|
27402
|
-
'
|
|
27403
|
-
'dataHubPersona',
|
|
27404
|
-
'dataHubSecret',
|
|
27405
|
-
'dataPlatform',
|
|
27406
|
-
'post',
|
|
27407
|
-
'versionSet',
|
|
27408
|
-
'tag',
|
|
27409
|
-
'glossaryTerm',
|
|
28284
|
+
'businessAttribute',
|
|
27410
28285
|
'dataHubUpgrade',
|
|
27411
|
-
'dataHubStepState',
|
|
27412
|
-
'domain',
|
|
27413
|
-
'incident',
|
|
27414
|
-
'inviteToken',
|
|
27415
28286
|
'globalSettings',
|
|
27416
|
-
'
|
|
28287
|
+
'mlModelDeployment',
|
|
27417
28288
|
'role',
|
|
27418
|
-
'corpGroup',
|
|
27419
|
-
'assertion',
|
|
27420
|
-
'dataProcess',
|
|
27421
|
-
'dataHubView',
|
|
27422
28289
|
'dataPlatformInstance',
|
|
27423
|
-
'
|
|
27424
|
-
'
|
|
28290
|
+
'corpGroup',
|
|
28291
|
+
'notebook',
|
|
28292
|
+
'dataPlatform',
|
|
28293
|
+
'mlFeature',
|
|
28294
|
+
'dataHubAction',
|
|
27425
28295
|
'mlFeatureTable',
|
|
27426
|
-
'
|
|
27427
|
-
'
|
|
27428
|
-
'
|
|
27429
|
-
'
|
|
28296
|
+
'dataHubRetention',
|
|
28297
|
+
'mlModel',
|
|
28298
|
+
'erModelRelationship',
|
|
28299
|
+
'glossaryTerm',
|
|
28300
|
+
'dashboard',
|
|
28301
|
+
'versionSet',
|
|
28302
|
+
'container',
|
|
28303
|
+
'dataHubStepState',
|
|
28304
|
+
'glossaryNode',
|
|
28305
|
+
'dataJob',
|
|
28306
|
+
'dataHubView',
|
|
28307
|
+
'dataHubPageTemplate',
|
|
28308
|
+
'domain',
|
|
28309
|
+
'incident',
|
|
28310
|
+
'dataset',
|
|
28311
|
+
'dataHubRole',
|
|
27430
28312
|
'corpuser',
|
|
27431
|
-
'
|
|
27432
|
-
'
|
|
28313
|
+
'assertion',
|
|
28314
|
+
'chart',
|
|
27433
28315
|
'schemaField',
|
|
27434
|
-
'dataContract',
|
|
27435
|
-
'mlModelDeployment',
|
|
27436
|
-
'glossaryNode',
|
|
27437
28316
|
'ownershipType',
|
|
27438
|
-
'
|
|
27439
|
-
'
|
|
28317
|
+
'mlModelGroup',
|
|
28318
|
+
'dataHubConnection',
|
|
27440
28319
|
'test',
|
|
27441
|
-
'dataHubRetention',
|
|
27442
|
-
'notebook',
|
|
27443
|
-
'dataHubRole',
|
|
27444
|
-
'query',
|
|
27445
|
-
'dashboard',
|
|
27446
|
-
'mlModel',
|
|
27447
|
-
'dataProcessInstance',
|
|
27448
|
-
'dataJob',
|
|
27449
28320
|
'form',
|
|
28321
|
+
'dataHubPolicy',
|
|
28322
|
+
'dataHubPersona',
|
|
28323
|
+
'mlPrimaryKey',
|
|
28324
|
+
'dataProcessInstance',
|
|
28325
|
+
'post',
|
|
28326
|
+
'dataProcess',
|
|
27450
28327
|
'telemetry',
|
|
27451
|
-
'
|
|
28328
|
+
'query',
|
|
28329
|
+
'tag',
|
|
28330
|
+
'dataHubPageModule',
|
|
28331
|
+
'dataHubSecret',
|
|
28332
|
+
'dataHubExecutionRequest',
|
|
28333
|
+
'inviteToken',
|
|
28334
|
+
'dataContract',
|
|
28335
|
+
'dataHubOpenAPISchema',
|
|
28336
|
+
'dataHubAccessToken',
|
|
27452
28337
|
'dataFlow',
|
|
27453
|
-
'
|
|
27454
|
-
'platformResource',
|
|
27455
|
-
'entityType',
|
|
28338
|
+
'dataHubIngestionSource',
|
|
27456
28339
|
'structuredProperty',
|
|
27457
|
-
'
|
|
27458
|
-
'
|
|
28340
|
+
'application',
|
|
28341
|
+
'entityType',
|
|
28342
|
+
'platformResource'
|
|
27459
28343
|
]
|
|
27460
28344
|
EntityTypeName = Literal[
|
|
28345
|
+
'dataType',
|
|
27461
28346
|
'dataProduct',
|
|
27462
|
-
'
|
|
27463
|
-
'dataHubPersona',
|
|
27464
|
-
'dataHubSecret',
|
|
27465
|
-
'dataPlatform',
|
|
27466
|
-
'post',
|
|
27467
|
-
'versionSet',
|
|
27468
|
-
'tag',
|
|
27469
|
-
'glossaryTerm',
|
|
28347
|
+
'businessAttribute',
|
|
27470
28348
|
'dataHubUpgrade',
|
|
27471
|
-
'dataHubStepState',
|
|
27472
|
-
'domain',
|
|
27473
|
-
'incident',
|
|
27474
|
-
'inviteToken',
|
|
27475
28349
|
'globalSettings',
|
|
27476
|
-
'
|
|
28350
|
+
'mlModelDeployment',
|
|
27477
28351
|
'role',
|
|
27478
|
-
'corpGroup',
|
|
27479
|
-
'assertion',
|
|
27480
|
-
'dataProcess',
|
|
27481
|
-
'dataHubView',
|
|
27482
28352
|
'dataPlatformInstance',
|
|
27483
|
-
'
|
|
27484
|
-
'
|
|
28353
|
+
'corpGroup',
|
|
28354
|
+
'notebook',
|
|
28355
|
+
'dataPlatform',
|
|
28356
|
+
'mlFeature',
|
|
28357
|
+
'dataHubAction',
|
|
27485
28358
|
'mlFeatureTable',
|
|
27486
|
-
'
|
|
27487
|
-
'
|
|
27488
|
-
'
|
|
27489
|
-
'
|
|
28359
|
+
'dataHubRetention',
|
|
28360
|
+
'mlModel',
|
|
28361
|
+
'erModelRelationship',
|
|
28362
|
+
'glossaryTerm',
|
|
28363
|
+
'dashboard',
|
|
28364
|
+
'versionSet',
|
|
28365
|
+
'container',
|
|
28366
|
+
'dataHubStepState',
|
|
28367
|
+
'glossaryNode',
|
|
28368
|
+
'dataJob',
|
|
28369
|
+
'dataHubView',
|
|
28370
|
+
'dataHubPageTemplate',
|
|
28371
|
+
'domain',
|
|
28372
|
+
'incident',
|
|
28373
|
+
'dataset',
|
|
28374
|
+
'dataHubRole',
|
|
27490
28375
|
'corpuser',
|
|
27491
|
-
'
|
|
27492
|
-
'
|
|
28376
|
+
'assertion',
|
|
28377
|
+
'chart',
|
|
27493
28378
|
'schemaField',
|
|
27494
|
-
'dataContract',
|
|
27495
|
-
'mlModelDeployment',
|
|
27496
|
-
'glossaryNode',
|
|
27497
28379
|
'ownershipType',
|
|
27498
|
-
'
|
|
27499
|
-
'
|
|
28380
|
+
'mlModelGroup',
|
|
28381
|
+
'dataHubConnection',
|
|
27500
28382
|
'test',
|
|
27501
|
-
'dataHubRetention',
|
|
27502
|
-
'notebook',
|
|
27503
|
-
'dataHubRole',
|
|
27504
|
-
'query',
|
|
27505
|
-
'dashboard',
|
|
27506
|
-
'mlModel',
|
|
27507
|
-
'dataProcessInstance',
|
|
27508
|
-
'dataJob',
|
|
27509
28383
|
'form',
|
|
28384
|
+
'dataHubPolicy',
|
|
28385
|
+
'dataHubPersona',
|
|
28386
|
+
'mlPrimaryKey',
|
|
28387
|
+
'dataProcessInstance',
|
|
28388
|
+
'post',
|
|
28389
|
+
'dataProcess',
|
|
27510
28390
|
'telemetry',
|
|
27511
|
-
'
|
|
28391
|
+
'query',
|
|
28392
|
+
'tag',
|
|
28393
|
+
'dataHubPageModule',
|
|
28394
|
+
'dataHubSecret',
|
|
28395
|
+
'dataHubExecutionRequest',
|
|
28396
|
+
'inviteToken',
|
|
28397
|
+
'dataContract',
|
|
28398
|
+
'dataHubOpenAPISchema',
|
|
28399
|
+
'dataHubAccessToken',
|
|
27512
28400
|
'dataFlow',
|
|
27513
|
-
'
|
|
27514
|
-
'platformResource',
|
|
27515
|
-
'entityType',
|
|
28401
|
+
'dataHubIngestionSource',
|
|
27516
28402
|
'structuredProperty',
|
|
27517
|
-
'
|
|
27518
|
-
'
|
|
28403
|
+
'application',
|
|
28404
|
+
'entityType',
|
|
28405
|
+
'platformResource'
|
|
27519
28406
|
]
|
|
27520
28407
|
|
|
27521
28408
|
# fmt: on
|