acryl-datahub 1.1.1rc4__py3-none-any.whl → 1.2.0.1rc1__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.1rc1.dist-info}/METADATA +2617 -2590
- {acryl_datahub-1.1.1rc4.dist-info → acryl_datahub-1.2.0.1rc1.dist-info}/RECORD +223 -189
- {acryl_datahub-1.1.1rc4.dist-info → acryl_datahub-1.2.0.1rc1.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/configuration/pydantic_migration_helpers.py +7 -5
- 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 +507 -0
- datahub/ingestion/source/mock_data/datahub_mock_data_report.py +12 -0
- datahub/ingestion/source/mock_data/table_naming_helper.py +97 -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 +1522 -569
- 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 +29 -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 +17758 -17097
- 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 +237 -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/sdk/search_filters.py +95 -27
- 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 +56 -14
- 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.1rc1.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.1.1rc4.dist-info → acryl_datahub-1.2.0.1rc1.dist-info}/licenses/LICENSE +0 -0
- {acryl_datahub-1.1.1rc4.dist-info → acryl_datahub-1.2.0.1rc1.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,91 +19931,396 @@ class TrainingDataClass(_Aspect):
|
|
|
19651
19931
|
self._inner_dict['trainingData'] = value
|
|
19652
19932
|
|
|
19653
19933
|
|
|
19654
|
-
class
|
|
19655
|
-
"""
|
|
19934
|
+
class AssetCollectionModuleParamsClass(DictWrapper):
|
|
19935
|
+
"""The params required if the module is type ASSET_COLLECTION"""
|
|
19656
19936
|
|
|
19657
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.
|
|
19937
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.AssetCollectionModuleParams")
|
|
19658
19938
|
def __init__(self,
|
|
19659
|
-
|
|
19660
|
-
contentType: str,
|
|
19939
|
+
assetUrns: List[str],
|
|
19661
19940
|
):
|
|
19662
19941
|
super().__init__()
|
|
19663
19942
|
|
|
19664
|
-
self.
|
|
19665
|
-
self.contentType = contentType
|
|
19943
|
+
self.assetUrns = assetUrns
|
|
19666
19944
|
|
|
19667
19945
|
def _restore_defaults(self) -> None:
|
|
19668
|
-
self.
|
|
19669
|
-
self.contentType = str()
|
|
19670
|
-
|
|
19671
|
-
|
|
19672
|
-
@property
|
|
19673
|
-
def value(self) -> bytes:
|
|
19674
|
-
"""The value of the aspect, serialized as bytes."""
|
|
19675
|
-
return self._inner_dict.get('value') # type: ignore
|
|
19676
|
-
|
|
19677
|
-
@value.setter
|
|
19678
|
-
def value(self, value: bytes) -> None:
|
|
19679
|
-
self._inner_dict['value'] = value
|
|
19946
|
+
self.assetUrns = list()
|
|
19680
19947
|
|
|
19681
19948
|
|
|
19682
19949
|
@property
|
|
19683
|
-
def
|
|
19684
|
-
|
|
19685
|
-
|
|
19686
|
-
return self._inner_dict.get('contentType') # type: ignore
|
|
19950
|
+
def assetUrns(self) -> List[str]:
|
|
19951
|
+
# No docs available.
|
|
19952
|
+
return self._inner_dict.get('assetUrns') # type: ignore
|
|
19687
19953
|
|
|
19688
|
-
@
|
|
19689
|
-
def
|
|
19690
|
-
self._inner_dict['
|
|
19954
|
+
@assetUrns.setter
|
|
19955
|
+
def assetUrns(self, value: List[str]) -> None:
|
|
19956
|
+
self._inner_dict['assetUrns'] = value
|
|
19691
19957
|
|
|
19692
19958
|
|
|
19693
|
-
class
|
|
19694
|
-
"""
|
|
19959
|
+
class DataHubPageModuleParamsClass(DictWrapper):
|
|
19960
|
+
"""The specific parameters stored for a module"""
|
|
19695
19961
|
|
|
19696
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.
|
|
19962
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleParams")
|
|
19697
19963
|
def __init__(self,
|
|
19698
|
-
|
|
19699
|
-
|
|
19964
|
+
linkParams: Union[None, "LinkModuleParamsClass"]=None,
|
|
19965
|
+
richTextParams: Union[None, "RichTextModuleParamsClass"]=None,
|
|
19966
|
+
assetCollectionParams: Union[None, "AssetCollectionModuleParamsClass"]=None,
|
|
19700
19967
|
):
|
|
19701
19968
|
super().__init__()
|
|
19702
19969
|
|
|
19703
|
-
self.
|
|
19704
|
-
self.
|
|
19970
|
+
self.linkParams = linkParams
|
|
19971
|
+
self.richTextParams = richTextParams
|
|
19972
|
+
self.assetCollectionParams = assetCollectionParams
|
|
19705
19973
|
|
|
19706
19974
|
def _restore_defaults(self) -> None:
|
|
19707
|
-
self.
|
|
19708
|
-
self.
|
|
19975
|
+
self.linkParams = self.RECORD_SCHEMA.fields_dict["linkParams"].default
|
|
19976
|
+
self.richTextParams = self.RECORD_SCHEMA.fields_dict["richTextParams"].default
|
|
19977
|
+
self.assetCollectionParams = self.RECORD_SCHEMA.fields_dict["assetCollectionParams"].default
|
|
19709
19978
|
|
|
19710
19979
|
|
|
19711
19980
|
@property
|
|
19712
|
-
def
|
|
19713
|
-
"""The
|
|
19714
|
-
return self._inner_dict.get('
|
|
19981
|
+
def linkParams(self) -> Union[None, "LinkModuleParamsClass"]:
|
|
19982
|
+
"""The params required if the module is type LINK"""
|
|
19983
|
+
return self._inner_dict.get('linkParams') # type: ignore
|
|
19715
19984
|
|
|
19716
|
-
@
|
|
19717
|
-
def
|
|
19718
|
-
self._inner_dict['
|
|
19985
|
+
@linkParams.setter
|
|
19986
|
+
def linkParams(self, value: Union[None, "LinkModuleParamsClass"]) -> None:
|
|
19987
|
+
self._inner_dict['linkParams'] = value
|
|
19719
19988
|
|
|
19720
19989
|
|
|
19721
19990
|
@property
|
|
19722
|
-
def
|
|
19723
|
-
"""The
|
|
19724
|
-
|
|
19725
|
-
return self._inner_dict.get('contentType') # type: ignore
|
|
19991
|
+
def richTextParams(self) -> Union[None, "RichTextModuleParamsClass"]:
|
|
19992
|
+
"""The params required if the module is type RICH_TEXT"""
|
|
19993
|
+
return self._inner_dict.get('richTextParams') # type: ignore
|
|
19726
19994
|
|
|
19727
|
-
@
|
|
19728
|
-
def
|
|
19729
|
-
self._inner_dict['
|
|
19995
|
+
@richTextParams.setter
|
|
19996
|
+
def richTextParams(self, value: Union[None, "RichTextModuleParamsClass"]) -> None:
|
|
19997
|
+
self._inner_dict['richTextParams'] = value
|
|
19730
19998
|
|
|
19731
19999
|
|
|
19732
|
-
|
|
19733
|
-
|
|
20000
|
+
@property
|
|
20001
|
+
def assetCollectionParams(self) -> Union[None, "AssetCollectionModuleParamsClass"]:
|
|
20002
|
+
"""The params required if the module is type ASSET_COLLECTION"""
|
|
20003
|
+
return self._inner_dict.get('assetCollectionParams') # type: ignore
|
|
19734
20004
|
|
|
19735
|
-
|
|
19736
|
-
def
|
|
19737
|
-
|
|
19738
|
-
|
|
20005
|
+
@assetCollectionParams.setter
|
|
20006
|
+
def assetCollectionParams(self, value: Union[None, "AssetCollectionModuleParamsClass"]) -> None:
|
|
20007
|
+
self._inner_dict['assetCollectionParams'] = value
|
|
20008
|
+
|
|
20009
|
+
|
|
20010
|
+
class DataHubPageModulePropertiesClass(_Aspect):
|
|
20011
|
+
"""The main properties of a DataHub page module"""
|
|
20012
|
+
|
|
20013
|
+
|
|
20014
|
+
ASPECT_NAME = 'dataHubPageModuleProperties'
|
|
20015
|
+
ASPECT_INFO = {}
|
|
20016
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleProperties")
|
|
20017
|
+
|
|
20018
|
+
def __init__(self,
|
|
20019
|
+
name: str,
|
|
20020
|
+
type: Union[str, "DataHubPageModuleTypeClass"],
|
|
20021
|
+
visibility: "DataHubPageModuleVisibilityClass",
|
|
20022
|
+
params: "DataHubPageModuleParamsClass",
|
|
20023
|
+
created: "AuditStampClass",
|
|
20024
|
+
lastModified: "AuditStampClass",
|
|
20025
|
+
):
|
|
20026
|
+
super().__init__()
|
|
20027
|
+
|
|
20028
|
+
self.name = name
|
|
20029
|
+
self.type = type
|
|
20030
|
+
self.visibility = visibility
|
|
20031
|
+
self.params = params
|
|
20032
|
+
self.created = created
|
|
20033
|
+
self.lastModified = lastModified
|
|
20034
|
+
|
|
20035
|
+
def _restore_defaults(self) -> None:
|
|
20036
|
+
self.name = str()
|
|
20037
|
+
self.type = DataHubPageModuleTypeClass.LINK
|
|
20038
|
+
self.visibility = DataHubPageModuleVisibilityClass._construct_with_defaults()
|
|
20039
|
+
self.params = DataHubPageModuleParamsClass._construct_with_defaults()
|
|
20040
|
+
self.created = AuditStampClass._construct_with_defaults()
|
|
20041
|
+
self.lastModified = AuditStampClass._construct_with_defaults()
|
|
20042
|
+
|
|
20043
|
+
|
|
20044
|
+
@property
|
|
20045
|
+
def name(self) -> str:
|
|
20046
|
+
"""The display name of this module"""
|
|
20047
|
+
return self._inner_dict.get('name') # type: ignore
|
|
20048
|
+
|
|
20049
|
+
@name.setter
|
|
20050
|
+
def name(self, value: str) -> None:
|
|
20051
|
+
self._inner_dict['name'] = value
|
|
20052
|
+
|
|
20053
|
+
|
|
20054
|
+
@property
|
|
20055
|
+
def type(self) -> Union[str, "DataHubPageModuleTypeClass"]:
|
|
20056
|
+
"""The type of this module - the purpose it serves"""
|
|
20057
|
+
return self._inner_dict.get('type') # type: ignore
|
|
20058
|
+
|
|
20059
|
+
@type.setter
|
|
20060
|
+
def type(self, value: Union[str, "DataHubPageModuleTypeClass"]) -> None:
|
|
20061
|
+
self._inner_dict['type'] = value
|
|
20062
|
+
|
|
20063
|
+
|
|
20064
|
+
@property
|
|
20065
|
+
def visibility(self) -> "DataHubPageModuleVisibilityClass":
|
|
20066
|
+
"""Info about the visibility of this module"""
|
|
20067
|
+
return self._inner_dict.get('visibility') # type: ignore
|
|
20068
|
+
|
|
20069
|
+
@visibility.setter
|
|
20070
|
+
def visibility(self, value: "DataHubPageModuleVisibilityClass") -> None:
|
|
20071
|
+
self._inner_dict['visibility'] = value
|
|
20072
|
+
|
|
20073
|
+
|
|
20074
|
+
@property
|
|
20075
|
+
def params(self) -> "DataHubPageModuleParamsClass":
|
|
20076
|
+
"""The specific parameters stored for this module"""
|
|
20077
|
+
return self._inner_dict.get('params') # type: ignore
|
|
20078
|
+
|
|
20079
|
+
@params.setter
|
|
20080
|
+
def params(self, value: "DataHubPageModuleParamsClass") -> None:
|
|
20081
|
+
self._inner_dict['params'] = value
|
|
20082
|
+
|
|
20083
|
+
|
|
20084
|
+
@property
|
|
20085
|
+
def created(self) -> "AuditStampClass":
|
|
20086
|
+
"""Audit stamp for when and by whom this template was created"""
|
|
20087
|
+
return self._inner_dict.get('created') # type: ignore
|
|
20088
|
+
|
|
20089
|
+
@created.setter
|
|
20090
|
+
def created(self, value: "AuditStampClass") -> None:
|
|
20091
|
+
self._inner_dict['created'] = value
|
|
20092
|
+
|
|
20093
|
+
|
|
20094
|
+
@property
|
|
20095
|
+
def lastModified(self) -> "AuditStampClass":
|
|
20096
|
+
"""Audit stamp for when and by whom this template was last updated"""
|
|
20097
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
20098
|
+
|
|
20099
|
+
@lastModified.setter
|
|
20100
|
+
def lastModified(self, value: "AuditStampClass") -> None:
|
|
20101
|
+
self._inner_dict['lastModified'] = value
|
|
20102
|
+
|
|
20103
|
+
|
|
20104
|
+
class DataHubPageModuleTypeClass(object):
|
|
20105
|
+
"""Enum containing the types of page modules that there are"""
|
|
20106
|
+
|
|
20107
|
+
LINK = "LINK"
|
|
20108
|
+
"""Link type module"""
|
|
20109
|
+
|
|
20110
|
+
RICH_TEXT = "RICH_TEXT"
|
|
20111
|
+
"""Module containing rich text to be rendered"""
|
|
20112
|
+
|
|
20113
|
+
ASSET_COLLECTION = "ASSET_COLLECTION"
|
|
20114
|
+
"""A module with a collection of assets"""
|
|
20115
|
+
|
|
20116
|
+
HIERARCHY = "HIERARCHY"
|
|
20117
|
+
"""A module displaying a hierarchy to navigate"""
|
|
20118
|
+
|
|
20119
|
+
OWNED_ASSETS = "OWNED_ASSETS"
|
|
20120
|
+
"""Module displaying assets owned by a user"""
|
|
20121
|
+
|
|
20122
|
+
DOMAINS = "DOMAINS"
|
|
20123
|
+
"""Module displaying the top domains"""
|
|
20124
|
+
|
|
20125
|
+
|
|
20126
|
+
|
|
20127
|
+
class DataHubPageModuleVisibilityClass(DictWrapper):
|
|
20128
|
+
"""Info about the visibility of this module"""
|
|
20129
|
+
|
|
20130
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility")
|
|
20131
|
+
def __init__(self,
|
|
20132
|
+
scope: Union[str, "PageModuleScopeClass"],
|
|
20133
|
+
):
|
|
20134
|
+
super().__init__()
|
|
20135
|
+
|
|
20136
|
+
self.scope = scope
|
|
20137
|
+
|
|
20138
|
+
def _restore_defaults(self) -> None:
|
|
20139
|
+
self.scope = PageModuleScopeClass.PERSONAL
|
|
20140
|
+
|
|
20141
|
+
|
|
20142
|
+
@property
|
|
20143
|
+
def scope(self) -> Union[str, "PageModuleScopeClass"]:
|
|
20144
|
+
"""Audit stamp for when and by whom this module was created"""
|
|
20145
|
+
return self._inner_dict.get('scope') # type: ignore
|
|
20146
|
+
|
|
20147
|
+
@scope.setter
|
|
20148
|
+
def scope(self, value: Union[str, "PageModuleScopeClass"]) -> None:
|
|
20149
|
+
self._inner_dict['scope'] = value
|
|
20150
|
+
|
|
20151
|
+
|
|
20152
|
+
class LinkModuleParamsClass(DictWrapper):
|
|
20153
|
+
# No docs available.
|
|
20154
|
+
|
|
20155
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.LinkModuleParams")
|
|
20156
|
+
def __init__(self,
|
|
20157
|
+
linkUrl: str,
|
|
20158
|
+
imageUrl: Union[None, str]=None,
|
|
20159
|
+
description: Union[None, str]=None,
|
|
20160
|
+
):
|
|
20161
|
+
super().__init__()
|
|
20162
|
+
|
|
20163
|
+
self.linkUrl = linkUrl
|
|
20164
|
+
self.imageUrl = imageUrl
|
|
20165
|
+
self.description = description
|
|
20166
|
+
|
|
20167
|
+
def _restore_defaults(self) -> None:
|
|
20168
|
+
self.linkUrl = str()
|
|
20169
|
+
self.imageUrl = self.RECORD_SCHEMA.fields_dict["imageUrl"].default
|
|
20170
|
+
self.description = self.RECORD_SCHEMA.fields_dict["description"].default
|
|
20171
|
+
|
|
20172
|
+
|
|
20173
|
+
@property
|
|
20174
|
+
def linkUrl(self) -> str:
|
|
20175
|
+
# No docs available.
|
|
20176
|
+
return self._inner_dict.get('linkUrl') # type: ignore
|
|
20177
|
+
|
|
20178
|
+
@linkUrl.setter
|
|
20179
|
+
def linkUrl(self, value: str) -> None:
|
|
20180
|
+
self._inner_dict['linkUrl'] = value
|
|
20181
|
+
|
|
20182
|
+
|
|
20183
|
+
@property
|
|
20184
|
+
def imageUrl(self) -> Union[None, str]:
|
|
20185
|
+
# No docs available.
|
|
20186
|
+
return self._inner_dict.get('imageUrl') # type: ignore
|
|
20187
|
+
|
|
20188
|
+
@imageUrl.setter
|
|
20189
|
+
def imageUrl(self, value: Union[None, str]) -> None:
|
|
20190
|
+
self._inner_dict['imageUrl'] = value
|
|
20191
|
+
|
|
20192
|
+
|
|
20193
|
+
@property
|
|
20194
|
+
def description(self) -> Union[None, str]:
|
|
20195
|
+
# No docs available.
|
|
20196
|
+
return self._inner_dict.get('description') # type: ignore
|
|
20197
|
+
|
|
20198
|
+
@description.setter
|
|
20199
|
+
def description(self, value: Union[None, str]) -> None:
|
|
20200
|
+
self._inner_dict['description'] = value
|
|
20201
|
+
|
|
20202
|
+
|
|
20203
|
+
class PageModuleScopeClass(object):
|
|
20204
|
+
# No docs available.
|
|
20205
|
+
|
|
20206
|
+
PERSONAL = "PERSONAL"
|
|
20207
|
+
"""This module is used for individual use only"""
|
|
20208
|
+
|
|
20209
|
+
GLOBAL = "GLOBAL"
|
|
20210
|
+
"""This module is discoverable and can be used by any user on the platform"""
|
|
20211
|
+
|
|
20212
|
+
|
|
20213
|
+
|
|
20214
|
+
class RichTextModuleParamsClass(DictWrapper):
|
|
20215
|
+
# No docs available.
|
|
20216
|
+
|
|
20217
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.RichTextModuleParams")
|
|
20218
|
+
def __init__(self,
|
|
20219
|
+
content: str,
|
|
20220
|
+
):
|
|
20221
|
+
super().__init__()
|
|
20222
|
+
|
|
20223
|
+
self.content = content
|
|
20224
|
+
|
|
20225
|
+
def _restore_defaults(self) -> None:
|
|
20226
|
+
self.content = str()
|
|
20227
|
+
|
|
20228
|
+
|
|
20229
|
+
@property
|
|
20230
|
+
def content(self) -> str:
|
|
20231
|
+
# No docs available.
|
|
20232
|
+
return self._inner_dict.get('content') # type: ignore
|
|
20233
|
+
|
|
20234
|
+
@content.setter
|
|
20235
|
+
def content(self, value: str) -> None:
|
|
20236
|
+
self._inner_dict['content'] = value
|
|
20237
|
+
|
|
20238
|
+
|
|
20239
|
+
class GenericAspectClass(DictWrapper):
|
|
20240
|
+
"""Generic record structure for serializing an Aspect"""
|
|
20241
|
+
|
|
20242
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.mxe.GenericAspect")
|
|
20243
|
+
def __init__(self,
|
|
20244
|
+
value: bytes,
|
|
20245
|
+
contentType: str,
|
|
20246
|
+
):
|
|
20247
|
+
super().__init__()
|
|
20248
|
+
|
|
20249
|
+
self.value = value
|
|
20250
|
+
self.contentType = contentType
|
|
20251
|
+
|
|
20252
|
+
def _restore_defaults(self) -> None:
|
|
20253
|
+
self.value = bytes()
|
|
20254
|
+
self.contentType = str()
|
|
20255
|
+
|
|
20256
|
+
|
|
20257
|
+
@property
|
|
20258
|
+
def value(self) -> bytes:
|
|
20259
|
+
"""The value of the aspect, serialized as bytes."""
|
|
20260
|
+
return self._inner_dict.get('value') # type: ignore
|
|
20261
|
+
|
|
20262
|
+
@value.setter
|
|
20263
|
+
def value(self, value: bytes) -> None:
|
|
20264
|
+
self._inner_dict['value'] = value
|
|
20265
|
+
|
|
20266
|
+
|
|
20267
|
+
@property
|
|
20268
|
+
def contentType(self) -> str:
|
|
20269
|
+
"""The content type, which represents the fashion in which the aspect was serialized.
|
|
20270
|
+
The only type currently supported is application/json."""
|
|
20271
|
+
return self._inner_dict.get('contentType') # type: ignore
|
|
20272
|
+
|
|
20273
|
+
@contentType.setter
|
|
20274
|
+
def contentType(self, value: str) -> None:
|
|
20275
|
+
self._inner_dict['contentType'] = value
|
|
20276
|
+
|
|
20277
|
+
|
|
20278
|
+
class GenericPayloadClass(DictWrapper):
|
|
20279
|
+
"""Generic payload record structure for serializing a Platform Event."""
|
|
20280
|
+
|
|
20281
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.mxe.GenericPayload")
|
|
20282
|
+
def __init__(self,
|
|
20283
|
+
value: bytes,
|
|
20284
|
+
contentType: str,
|
|
20285
|
+
):
|
|
20286
|
+
super().__init__()
|
|
20287
|
+
|
|
20288
|
+
self.value = value
|
|
20289
|
+
self.contentType = contentType
|
|
20290
|
+
|
|
20291
|
+
def _restore_defaults(self) -> None:
|
|
20292
|
+
self.value = bytes()
|
|
20293
|
+
self.contentType = str()
|
|
20294
|
+
|
|
20295
|
+
|
|
20296
|
+
@property
|
|
20297
|
+
def value(self) -> bytes:
|
|
20298
|
+
"""The value of the event, serialized as bytes."""
|
|
20299
|
+
return self._inner_dict.get('value') # type: ignore
|
|
20300
|
+
|
|
20301
|
+
@value.setter
|
|
20302
|
+
def value(self, value: bytes) -> None:
|
|
20303
|
+
self._inner_dict['value'] = value
|
|
20304
|
+
|
|
20305
|
+
|
|
20306
|
+
@property
|
|
20307
|
+
def contentType(self) -> str:
|
|
20308
|
+
"""The content type, which represents the fashion in which the event was serialized.
|
|
20309
|
+
The only type currently supported is application/json."""
|
|
20310
|
+
return self._inner_dict.get('contentType') # type: ignore
|
|
20311
|
+
|
|
20312
|
+
@contentType.setter
|
|
20313
|
+
def contentType(self, value: str) -> None:
|
|
20314
|
+
self._inner_dict['contentType'] = value
|
|
20315
|
+
|
|
20316
|
+
|
|
20317
|
+
class MetadataChangeEventClass(DictWrapper):
|
|
20318
|
+
"""Kafka event for proposing a metadata change for an entity. A corresponding MetadataAuditEvent is emitted when the change is accepted and committed, otherwise a FailedMetadataChangeEvent will be emitted instead."""
|
|
20319
|
+
|
|
20320
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.mxe.MetadataChangeEvent")
|
|
20321
|
+
def __init__(self,
|
|
20322
|
+
proposedSnapshot: Union["ChartSnapshotClass", "CorpGroupSnapshotClass", "CorpUserSnapshotClass", "DashboardSnapshotClass", "DataFlowSnapshotClass", "DataJobSnapshotClass", "DatasetSnapshotClass", "DataProcessSnapshotClass", "DataPlatformSnapshotClass", "MLModelSnapshotClass", "MLPrimaryKeySnapshotClass", "MLFeatureSnapshotClass", "MLFeatureTableSnapshotClass", "MLModelDeploymentSnapshotClass", "MLModelGroupSnapshotClass", "TagSnapshotClass", "GlossaryTermSnapshotClass", "GlossaryNodeSnapshotClass", "DataHubPolicySnapshotClass", "SchemaFieldSnapshotClass", "DataHubRetentionSnapshotClass"],
|
|
20323
|
+
auditHeader: Union[None, "KafkaAuditHeaderClass"]=None,
|
|
19739
20324
|
proposedDelta: None=None,
|
|
19740
20325
|
systemMetadata: Union[None, "SystemMetadataClass"]=None,
|
|
19741
20326
|
):
|
|
@@ -21374,6 +21959,7 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
21374
21959
|
resources: Union[None, List[str]]=None,
|
|
21375
21960
|
allResources: Optional[bool]=None,
|
|
21376
21961
|
filter: Union[None, "PolicyMatchFilterClass"]=None,
|
|
21962
|
+
privilegeConstraints: Union[None, "PolicyMatchFilterClass"]=None,
|
|
21377
21963
|
):
|
|
21378
21964
|
super().__init__()
|
|
21379
21965
|
|
|
@@ -21385,12 +21971,14 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
21385
21971
|
else:
|
|
21386
21972
|
self.allResources = allResources
|
|
21387
21973
|
self.filter = filter
|
|
21974
|
+
self.privilegeConstraints = privilegeConstraints
|
|
21388
21975
|
|
|
21389
21976
|
def _restore_defaults(self) -> None:
|
|
21390
21977
|
self.type = self.RECORD_SCHEMA.fields_dict["type"].default
|
|
21391
21978
|
self.resources = self.RECORD_SCHEMA.fields_dict["resources"].default
|
|
21392
21979
|
self.allResources = self.RECORD_SCHEMA.fields_dict["allResources"].default
|
|
21393
21980
|
self.filter = self.RECORD_SCHEMA.fields_dict["filter"].default
|
|
21981
|
+
self.privilegeConstraints = self.RECORD_SCHEMA.fields_dict["privilegeConstraints"].default
|
|
21394
21982
|
|
|
21395
21983
|
|
|
21396
21984
|
@property
|
|
@@ -21435,6 +22023,16 @@ class DataHubResourceFilterClass(DictWrapper):
|
|
|
21435
22023
|
self._inner_dict['filter'] = value
|
|
21436
22024
|
|
|
21437
22025
|
|
|
22026
|
+
@property
|
|
22027
|
+
def privilegeConstraints(self) -> Union[None, "PolicyMatchFilterClass"]:
|
|
22028
|
+
"""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"""
|
|
22029
|
+
return self._inner_dict.get('privilegeConstraints') # type: ignore
|
|
22030
|
+
|
|
22031
|
+
@privilegeConstraints.setter
|
|
22032
|
+
def privilegeConstraints(self, value: Union[None, "PolicyMatchFilterClass"]) -> None:
|
|
22033
|
+
self._inner_dict['privilegeConstraints'] = value
|
|
22034
|
+
|
|
22035
|
+
|
|
21438
22036
|
class DataHubRoleInfoClass(_Aspect):
|
|
21439
22037
|
"""Information about a DataHub Role."""
|
|
21440
22038
|
|
|
@@ -21503,6 +22101,9 @@ class PolicyMatchConditionClass(object):
|
|
|
21503
22101
|
STARTS_WITH = "STARTS_WITH"
|
|
21504
22102
|
"""Whether the field value starts with the value"""
|
|
21505
22103
|
|
|
22104
|
+
NOT_EQUALS = "NOT_EQUALS"
|
|
22105
|
+
"""Whether the field does not match the value"""
|
|
22106
|
+
|
|
21506
22107
|
|
|
21507
22108
|
|
|
21508
22109
|
class PolicyMatchCriterionClass(DictWrapper):
|
|
@@ -23896,32 +24497,25 @@ class DataHubSecretValueClass(_Aspect):
|
|
|
23896
24497
|
self._inner_dict['created'] = value
|
|
23897
24498
|
|
|
23898
24499
|
|
|
23899
|
-
class
|
|
24500
|
+
class ApplicationsSettingsClass(DictWrapper):
|
|
23900
24501
|
# No docs available.
|
|
23901
24502
|
|
|
23902
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.
|
|
24503
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.ApplicationsSettings")
|
|
23903
24504
|
def __init__(self,
|
|
23904
24505
|
enabled: bool,
|
|
23905
24506
|
config: Union[None, str]=None,
|
|
23906
24507
|
configVersion: Union[None, str]=None,
|
|
23907
|
-
columnPropagationEnabled: Optional[bool]=None,
|
|
23908
24508
|
):
|
|
23909
24509
|
super().__init__()
|
|
23910
24510
|
|
|
23911
24511
|
self.enabled = enabled
|
|
23912
24512
|
self.config = config
|
|
23913
24513
|
self.configVersion = configVersion
|
|
23914
|
-
if columnPropagationEnabled is None:
|
|
23915
|
-
# default: True
|
|
23916
|
-
self.columnPropagationEnabled = self.RECORD_SCHEMA.fields_dict["columnPropagationEnabled"].default
|
|
23917
|
-
else:
|
|
23918
|
-
self.columnPropagationEnabled = columnPropagationEnabled
|
|
23919
24514
|
|
|
23920
24515
|
def _restore_defaults(self) -> None:
|
|
23921
24516
|
self.enabled = bool()
|
|
23922
24517
|
self.config = self.RECORD_SCHEMA.fields_dict["config"].default
|
|
23923
24518
|
self.configVersion = self.RECORD_SCHEMA.fields_dict["configVersion"].default
|
|
23924
|
-
self.columnPropagationEnabled = self.RECORD_SCHEMA.fields_dict["columnPropagationEnabled"].default
|
|
23925
24519
|
|
|
23926
24520
|
|
|
23927
24521
|
@property
|
|
@@ -23956,16 +24550,101 @@ class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
|
23956
24550
|
self._inner_dict['configVersion'] = value
|
|
23957
24551
|
|
|
23958
24552
|
|
|
23959
|
-
|
|
23960
|
-
|
|
23961
|
-
|
|
23962
|
-
|
|
24553
|
+
class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
24554
|
+
# No docs available.
|
|
24555
|
+
|
|
24556
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.DocPropagationFeatureSettings")
|
|
24557
|
+
def __init__(self,
|
|
24558
|
+
enabled: bool,
|
|
24559
|
+
config: Union[None, str]=None,
|
|
24560
|
+
configVersion: Union[None, str]=None,
|
|
24561
|
+
columnPropagationEnabled: Optional[bool]=None,
|
|
24562
|
+
):
|
|
24563
|
+
super().__init__()
|
|
24564
|
+
|
|
24565
|
+
self.enabled = enabled
|
|
24566
|
+
self.config = config
|
|
24567
|
+
self.configVersion = configVersion
|
|
24568
|
+
if columnPropagationEnabled is None:
|
|
24569
|
+
# default: True
|
|
24570
|
+
self.columnPropagationEnabled = self.RECORD_SCHEMA.fields_dict["columnPropagationEnabled"].default
|
|
24571
|
+
else:
|
|
24572
|
+
self.columnPropagationEnabled = columnPropagationEnabled
|
|
24573
|
+
|
|
24574
|
+
def _restore_defaults(self) -> None:
|
|
24575
|
+
self.enabled = bool()
|
|
24576
|
+
self.config = self.RECORD_SCHEMA.fields_dict["config"].default
|
|
24577
|
+
self.configVersion = self.RECORD_SCHEMA.fields_dict["configVersion"].default
|
|
24578
|
+
self.columnPropagationEnabled = self.RECORD_SCHEMA.fields_dict["columnPropagationEnabled"].default
|
|
24579
|
+
|
|
24580
|
+
|
|
24581
|
+
@property
|
|
24582
|
+
def enabled(self) -> bool:
|
|
24583
|
+
# No docs available.
|
|
24584
|
+
return self._inner_dict.get('enabled') # type: ignore
|
|
24585
|
+
|
|
24586
|
+
@enabled.setter
|
|
24587
|
+
def enabled(self, value: bool) -> None:
|
|
24588
|
+
self._inner_dict['enabled'] = value
|
|
24589
|
+
|
|
24590
|
+
|
|
24591
|
+
@property
|
|
24592
|
+
def config(self) -> Union[None, str]:
|
|
24593
|
+
"""The configuration for the feature, in JSON format."""
|
|
24594
|
+
return self._inner_dict.get('config') # type: ignore
|
|
24595
|
+
|
|
24596
|
+
@config.setter
|
|
24597
|
+
def config(self, value: Union[None, str]) -> None:
|
|
24598
|
+
self._inner_dict['config'] = value
|
|
24599
|
+
|
|
24600
|
+
|
|
24601
|
+
@property
|
|
24602
|
+
def configVersion(self) -> Union[None, str]:
|
|
24603
|
+
"""The version of the configuration schema that has been used to serialize
|
|
24604
|
+
the config.
|
|
24605
|
+
If not provided, the version is assumed to be the latest version."""
|
|
24606
|
+
return self._inner_dict.get('configVersion') # type: ignore
|
|
24607
|
+
|
|
24608
|
+
@configVersion.setter
|
|
24609
|
+
def configVersion(self, value: Union[None, str]) -> None:
|
|
24610
|
+
self._inner_dict['configVersion'] = value
|
|
24611
|
+
|
|
24612
|
+
|
|
24613
|
+
@property
|
|
24614
|
+
def columnPropagationEnabled(self) -> bool:
|
|
24615
|
+
# No docs available.
|
|
24616
|
+
return self._inner_dict.get('columnPropagationEnabled') # type: ignore
|
|
23963
24617
|
|
|
23964
24618
|
@columnPropagationEnabled.setter
|
|
23965
24619
|
def columnPropagationEnabled(self, value: bool) -> None:
|
|
23966
24620
|
self._inner_dict['columnPropagationEnabled'] = value
|
|
23967
24621
|
|
|
23968
24622
|
|
|
24623
|
+
class GlobalHomePageSettingsClass(DictWrapper):
|
|
24624
|
+
"""Global settings related to the home page for an instance"""
|
|
24625
|
+
|
|
24626
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings")
|
|
24627
|
+
def __init__(self,
|
|
24628
|
+
defaultTemplate: str,
|
|
24629
|
+
):
|
|
24630
|
+
super().__init__()
|
|
24631
|
+
|
|
24632
|
+
self.defaultTemplate = defaultTemplate
|
|
24633
|
+
|
|
24634
|
+
def _restore_defaults(self) -> None:
|
|
24635
|
+
self.defaultTemplate = str()
|
|
24636
|
+
|
|
24637
|
+
|
|
24638
|
+
@property
|
|
24639
|
+
def defaultTemplate(self) -> str:
|
|
24640
|
+
"""The urn that will be rendered in the UI by default for all users"""
|
|
24641
|
+
return self._inner_dict.get('defaultTemplate') # type: ignore
|
|
24642
|
+
|
|
24643
|
+
@defaultTemplate.setter
|
|
24644
|
+
def defaultTemplate(self, value: str) -> None:
|
|
24645
|
+
self._inner_dict['defaultTemplate'] = value
|
|
24646
|
+
|
|
24647
|
+
|
|
23969
24648
|
class GlobalSettingsInfoClass(_Aspect):
|
|
23970
24649
|
"""DataHub Global platform settings. Careful - these should not be modified by the outside world!"""
|
|
23971
24650
|
|
|
@@ -23978,6 +24657,8 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
23978
24657
|
sso: Union[None, "SsoSettingsClass"]=None,
|
|
23979
24658
|
views: Union[None, "GlobalViewsSettingsClass"]=None,
|
|
23980
24659
|
docPropagation: Optional[Union["DocPropagationFeatureSettingsClass", None]]=None,
|
|
24660
|
+
homePage: Union[None, "GlobalHomePageSettingsClass"]=None,
|
|
24661
|
+
applications: Union[None, "ApplicationsSettingsClass"]=None,
|
|
23981
24662
|
):
|
|
23982
24663
|
super().__init__()
|
|
23983
24664
|
|
|
@@ -23988,11 +24669,15 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
23988
24669
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
23989
24670
|
else:
|
|
23990
24671
|
self.docPropagation = docPropagation
|
|
24672
|
+
self.homePage = homePage
|
|
24673
|
+
self.applications = applications
|
|
23991
24674
|
|
|
23992
24675
|
def _restore_defaults(self) -> None:
|
|
23993
24676
|
self.sso = self.RECORD_SCHEMA.fields_dict["sso"].default
|
|
23994
24677
|
self.views = self.RECORD_SCHEMA.fields_dict["views"].default
|
|
23995
24678
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
24679
|
+
self.homePage = self.RECORD_SCHEMA.fields_dict["homePage"].default
|
|
24680
|
+
self.applications = self.RECORD_SCHEMA.fields_dict["applications"].default
|
|
23996
24681
|
|
|
23997
24682
|
|
|
23998
24683
|
@property
|
|
@@ -24025,6 +24710,26 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
24025
24710
|
self._inner_dict['docPropagation'] = value
|
|
24026
24711
|
|
|
24027
24712
|
|
|
24713
|
+
@property
|
|
24714
|
+
def homePage(self) -> Union[None, "GlobalHomePageSettingsClass"]:
|
|
24715
|
+
"""Global settings related to the home page for an instance"""
|
|
24716
|
+
return self._inner_dict.get('homePage') # type: ignore
|
|
24717
|
+
|
|
24718
|
+
@homePage.setter
|
|
24719
|
+
def homePage(self, value: Union[None, "GlobalHomePageSettingsClass"]) -> None:
|
|
24720
|
+
self._inner_dict['homePage'] = value
|
|
24721
|
+
|
|
24722
|
+
|
|
24723
|
+
@property
|
|
24724
|
+
def applications(self) -> Union[None, "ApplicationsSettingsClass"]:
|
|
24725
|
+
"""Settings related to applications. If not enabled, applications won't show up in navigation"""
|
|
24726
|
+
return self._inner_dict.get('applications') # type: ignore
|
|
24727
|
+
|
|
24728
|
+
@applications.setter
|
|
24729
|
+
def applications(self, value: Union[None, "ApplicationsSettingsClass"]) -> None:
|
|
24730
|
+
self._inner_dict['applications'] = value
|
|
24731
|
+
|
|
24732
|
+
|
|
24028
24733
|
class GlobalViewsSettingsClass(DictWrapper):
|
|
24029
24734
|
"""Settings for DataHub Views feature."""
|
|
24030
24735
|
|
|
@@ -24962,6 +25667,181 @@ class TelemetryClientIdClass(_Aspect):
|
|
|
24962
25667
|
self._inner_dict['clientId'] = value
|
|
24963
25668
|
|
|
24964
25669
|
|
|
25670
|
+
class DataHubPageTemplatePropertiesClass(_Aspect):
|
|
25671
|
+
"""The main properties of a DataHub page template"""
|
|
25672
|
+
|
|
25673
|
+
|
|
25674
|
+
ASPECT_NAME = 'dataHubPageTemplateProperties'
|
|
25675
|
+
ASPECT_INFO = {}
|
|
25676
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties")
|
|
25677
|
+
|
|
25678
|
+
def __init__(self,
|
|
25679
|
+
rows: List["DataHubPageTemplateRowClass"],
|
|
25680
|
+
surface: "DataHubPageTemplateSurfaceClass",
|
|
25681
|
+
visibility: "DataHubPageTemplateVisibilityClass",
|
|
25682
|
+
created: "AuditStampClass",
|
|
25683
|
+
lastModified: "AuditStampClass",
|
|
25684
|
+
):
|
|
25685
|
+
super().__init__()
|
|
25686
|
+
|
|
25687
|
+
self.rows = rows
|
|
25688
|
+
self.surface = surface
|
|
25689
|
+
self.visibility = visibility
|
|
25690
|
+
self.created = created
|
|
25691
|
+
self.lastModified = lastModified
|
|
25692
|
+
|
|
25693
|
+
def _restore_defaults(self) -> None:
|
|
25694
|
+
self.rows = list()
|
|
25695
|
+
self.surface = DataHubPageTemplateSurfaceClass._construct_with_defaults()
|
|
25696
|
+
self.visibility = DataHubPageTemplateVisibilityClass._construct_with_defaults()
|
|
25697
|
+
self.created = AuditStampClass._construct_with_defaults()
|
|
25698
|
+
self.lastModified = AuditStampClass._construct_with_defaults()
|
|
25699
|
+
|
|
25700
|
+
|
|
25701
|
+
@property
|
|
25702
|
+
def rows(self) -> List["DataHubPageTemplateRowClass"]:
|
|
25703
|
+
"""The rows of modules contained in this template"""
|
|
25704
|
+
return self._inner_dict.get('rows') # type: ignore
|
|
25705
|
+
|
|
25706
|
+
@rows.setter
|
|
25707
|
+
def rows(self, value: List["DataHubPageTemplateRowClass"]) -> None:
|
|
25708
|
+
self._inner_dict['rows'] = value
|
|
25709
|
+
|
|
25710
|
+
|
|
25711
|
+
@property
|
|
25712
|
+
def surface(self) -> "DataHubPageTemplateSurfaceClass":
|
|
25713
|
+
"""Info about the surface area of the product that this template is deployed in"""
|
|
25714
|
+
return self._inner_dict.get('surface') # type: ignore
|
|
25715
|
+
|
|
25716
|
+
@surface.setter
|
|
25717
|
+
def surface(self, value: "DataHubPageTemplateSurfaceClass") -> None:
|
|
25718
|
+
self._inner_dict['surface'] = value
|
|
25719
|
+
|
|
25720
|
+
|
|
25721
|
+
@property
|
|
25722
|
+
def visibility(self) -> "DataHubPageTemplateVisibilityClass":
|
|
25723
|
+
"""Info about the visibility of this template"""
|
|
25724
|
+
return self._inner_dict.get('visibility') # type: ignore
|
|
25725
|
+
|
|
25726
|
+
@visibility.setter
|
|
25727
|
+
def visibility(self, value: "DataHubPageTemplateVisibilityClass") -> None:
|
|
25728
|
+
self._inner_dict['visibility'] = value
|
|
25729
|
+
|
|
25730
|
+
|
|
25731
|
+
@property
|
|
25732
|
+
def created(self) -> "AuditStampClass":
|
|
25733
|
+
"""Audit stamp for when and by whom this template was created"""
|
|
25734
|
+
return self._inner_dict.get('created') # type: ignore
|
|
25735
|
+
|
|
25736
|
+
@created.setter
|
|
25737
|
+
def created(self, value: "AuditStampClass") -> None:
|
|
25738
|
+
self._inner_dict['created'] = value
|
|
25739
|
+
|
|
25740
|
+
|
|
25741
|
+
@property
|
|
25742
|
+
def lastModified(self) -> "AuditStampClass":
|
|
25743
|
+
"""Audit stamp for when and by whom this template was last updated"""
|
|
25744
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
25745
|
+
|
|
25746
|
+
@lastModified.setter
|
|
25747
|
+
def lastModified(self, value: "AuditStampClass") -> None:
|
|
25748
|
+
self._inner_dict['lastModified'] = value
|
|
25749
|
+
|
|
25750
|
+
|
|
25751
|
+
class DataHubPageTemplateRowClass(DictWrapper):
|
|
25752
|
+
"""A row of modules contained in a template"""
|
|
25753
|
+
|
|
25754
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateRow")
|
|
25755
|
+
def __init__(self,
|
|
25756
|
+
modules: List[str],
|
|
25757
|
+
):
|
|
25758
|
+
super().__init__()
|
|
25759
|
+
|
|
25760
|
+
self.modules = modules
|
|
25761
|
+
|
|
25762
|
+
def _restore_defaults(self) -> None:
|
|
25763
|
+
self.modules = list()
|
|
25764
|
+
|
|
25765
|
+
|
|
25766
|
+
@property
|
|
25767
|
+
def modules(self) -> List[str]:
|
|
25768
|
+
"""The modules that exist in this template row"""
|
|
25769
|
+
return self._inner_dict.get('modules') # type: ignore
|
|
25770
|
+
|
|
25771
|
+
@modules.setter
|
|
25772
|
+
def modules(self, value: List[str]) -> None:
|
|
25773
|
+
self._inner_dict['modules'] = value
|
|
25774
|
+
|
|
25775
|
+
|
|
25776
|
+
class DataHubPageTemplateSurfaceClass(DictWrapper):
|
|
25777
|
+
"""Info about the surface area of the product that this template is deployed in"""
|
|
25778
|
+
|
|
25779
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface")
|
|
25780
|
+
def __init__(self,
|
|
25781
|
+
surfaceType: Union[str, "PageTemplateSurfaceTypeClass"],
|
|
25782
|
+
):
|
|
25783
|
+
super().__init__()
|
|
25784
|
+
|
|
25785
|
+
self.surfaceType = surfaceType
|
|
25786
|
+
|
|
25787
|
+
def _restore_defaults(self) -> None:
|
|
25788
|
+
self.surfaceType = PageTemplateSurfaceTypeClass.HOME_PAGE
|
|
25789
|
+
|
|
25790
|
+
|
|
25791
|
+
@property
|
|
25792
|
+
def surfaceType(self) -> Union[str, "PageTemplateSurfaceTypeClass"]:
|
|
25793
|
+
"""Where exactly is this template being used"""
|
|
25794
|
+
return self._inner_dict.get('surfaceType') # type: ignore
|
|
25795
|
+
|
|
25796
|
+
@surfaceType.setter
|
|
25797
|
+
def surfaceType(self, value: Union[str, "PageTemplateSurfaceTypeClass"]) -> None:
|
|
25798
|
+
self._inner_dict['surfaceType'] = value
|
|
25799
|
+
|
|
25800
|
+
|
|
25801
|
+
class DataHubPageTemplateVisibilityClass(DictWrapper):
|
|
25802
|
+
"""Info about the visibility of this template"""
|
|
25803
|
+
|
|
25804
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility")
|
|
25805
|
+
def __init__(self,
|
|
25806
|
+
scope: Union[str, "PageTemplateScopeClass"],
|
|
25807
|
+
):
|
|
25808
|
+
super().__init__()
|
|
25809
|
+
|
|
25810
|
+
self.scope = scope
|
|
25811
|
+
|
|
25812
|
+
def _restore_defaults(self) -> None:
|
|
25813
|
+
self.scope = PageTemplateScopeClass.PERSONAL
|
|
25814
|
+
|
|
25815
|
+
|
|
25816
|
+
@property
|
|
25817
|
+
def scope(self) -> Union[str, "PageTemplateScopeClass"]:
|
|
25818
|
+
"""The scope of this template and who can use/see it"""
|
|
25819
|
+
return self._inner_dict.get('scope') # type: ignore
|
|
25820
|
+
|
|
25821
|
+
@scope.setter
|
|
25822
|
+
def scope(self, value: Union[str, "PageTemplateScopeClass"]) -> None:
|
|
25823
|
+
self._inner_dict['scope'] = value
|
|
25824
|
+
|
|
25825
|
+
|
|
25826
|
+
class PageTemplateScopeClass(object):
|
|
25827
|
+
# No docs available.
|
|
25828
|
+
|
|
25829
|
+
PERSONAL = "PERSONAL"
|
|
25830
|
+
"""This template is used for individual use only"""
|
|
25831
|
+
|
|
25832
|
+
GLOBAL = "GLOBAL"
|
|
25833
|
+
"""This template is used across users"""
|
|
25834
|
+
|
|
25835
|
+
|
|
25836
|
+
|
|
25837
|
+
class PageTemplateSurfaceTypeClass(object):
|
|
25838
|
+
# No docs available.
|
|
25839
|
+
|
|
25840
|
+
HOME_PAGE = "HOME_PAGE"
|
|
25841
|
+
"""This template applies to what to display on the home page for users."""
|
|
25842
|
+
|
|
25843
|
+
|
|
25844
|
+
|
|
24965
25845
|
class TestDefinitionClass(DictWrapper):
|
|
24966
25846
|
# No docs available.
|
|
24967
25847
|
|
|
@@ -25916,6 +26796,9 @@ class DataHubViewTypeClass(object):
|
|
|
25916
26796
|
__SCHEMA_TYPES = {
|
|
25917
26797
|
'com.linkedin.events.KafkaAuditHeader': KafkaAuditHeaderClass,
|
|
25918
26798
|
'com.linkedin.pegasus2avro.access.token.DataHubAccessTokenInfo': DataHubAccessTokenInfoClass,
|
|
26799
|
+
'com.linkedin.pegasus2avro.application.ApplicationKey': ApplicationKeyClass,
|
|
26800
|
+
'com.linkedin.pegasus2avro.application.ApplicationProperties': ApplicationPropertiesClass,
|
|
26801
|
+
'com.linkedin.pegasus2avro.application.Applications': ApplicationsClass,
|
|
25919
26802
|
'com.linkedin.pegasus2avro.assertion.AssertionAction': AssertionActionClass,
|
|
25920
26803
|
'com.linkedin.pegasus2avro.assertion.AssertionActionType': AssertionActionTypeClass,
|
|
25921
26804
|
'com.linkedin.pegasus2avro.assertion.AssertionActions': AssertionActionsClass,
|
|
@@ -26151,6 +27034,7 @@ __SCHEMA_TYPES = {
|
|
|
26151
27034
|
'com.linkedin.pegasus2avro.identity.CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
|
|
26152
27035
|
'com.linkedin.pegasus2avro.identity.CorpUserCredentials': CorpUserCredentialsClass,
|
|
26153
27036
|
'com.linkedin.pegasus2avro.identity.CorpUserEditableInfo': CorpUserEditableInfoClass,
|
|
27037
|
+
'com.linkedin.pegasus2avro.identity.CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
|
|
26154
27038
|
'com.linkedin.pegasus2avro.identity.CorpUserInfo': CorpUserInfoClass,
|
|
26155
27039
|
'com.linkedin.pegasus2avro.identity.CorpUserSettings': CorpUserSettingsClass,
|
|
26156
27040
|
'com.linkedin.pegasus2avro.identity.CorpUserStatus': CorpUserStatusClass,
|
|
@@ -26172,6 +27056,7 @@ __SCHEMA_TYPES = {
|
|
|
26172
27056
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSchedule': DataHubIngestionSourceScheduleClass,
|
|
26173
27057
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSource': DataHubIngestionSourceSourceClass,
|
|
26174
27058
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
|
|
27059
|
+
'com.linkedin.pegasus2avro.logical.LogicalParent': LogicalParentClass,
|
|
26175
27060
|
'com.linkedin.pegasus2avro.metadata.key.AssertionKey': AssertionKeyClass,
|
|
26176
27061
|
'com.linkedin.pegasus2avro.metadata.key.ChartKey': ChartKeyClass,
|
|
26177
27062
|
'com.linkedin.pegasus2avro.metadata.key.ContainerKey': ContainerKeyClass,
|
|
@@ -26185,6 +27070,8 @@ __SCHEMA_TYPES = {
|
|
|
26185
27070
|
'com.linkedin.pegasus2avro.metadata.key.DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
26186
27071
|
'com.linkedin.pegasus2avro.metadata.key.DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
26187
27072
|
'com.linkedin.pegasus2avro.metadata.key.DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
27073
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubPageModuleKey': DataHubPageModuleKeyClass,
|
|
27074
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
|
|
26188
27075
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
26189
27076
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
26190
27077
|
'com.linkedin.pegasus2avro.metadata.key.DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -26279,6 +27166,14 @@ __SCHEMA_TYPES = {
|
|
|
26279
27166
|
'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrl': SourceCodeUrlClass,
|
|
26280
27167
|
'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrlType': SourceCodeUrlTypeClass,
|
|
26281
27168
|
'com.linkedin.pegasus2avro.ml.metadata.TrainingData': TrainingDataClass,
|
|
27169
|
+
'com.linkedin.pegasus2avro.module.AssetCollectionModuleParams': AssetCollectionModuleParamsClass,
|
|
27170
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleParams': DataHubPageModuleParamsClass,
|
|
27171
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
|
|
27172
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleType': DataHubPageModuleTypeClass,
|
|
27173
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
|
|
27174
|
+
'com.linkedin.pegasus2avro.module.LinkModuleParams': LinkModuleParamsClass,
|
|
27175
|
+
'com.linkedin.pegasus2avro.module.PageModuleScope': PageModuleScopeClass,
|
|
27176
|
+
'com.linkedin.pegasus2avro.module.RichTextModuleParams': RichTextModuleParamsClass,
|
|
26282
27177
|
'com.linkedin.pegasus2avro.mxe.GenericAspect': GenericAspectClass,
|
|
26283
27178
|
'com.linkedin.pegasus2avro.mxe.GenericPayload': GenericPayloadClass,
|
|
26284
27179
|
'com.linkedin.pegasus2avro.mxe.MetadataChangeEvent': MetadataChangeEventClass,
|
|
@@ -26362,7 +27257,9 @@ __SCHEMA_TYPES = {
|
|
|
26362
27257
|
'com.linkedin.pegasus2avro.schemafield.SchemaFieldAliases': SchemaFieldAliasesClass,
|
|
26363
27258
|
'com.linkedin.pegasus2avro.schemafield.SchemaFieldInfo': SchemaFieldInfoClass,
|
|
26364
27259
|
'com.linkedin.pegasus2avro.secret.DataHubSecretValue': DataHubSecretValueClass,
|
|
27260
|
+
'com.linkedin.pegasus2avro.settings.global.ApplicationsSettings': ApplicationsSettingsClass,
|
|
26365
27261
|
'com.linkedin.pegasus2avro.settings.global.DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
27262
|
+
'com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings': GlobalHomePageSettingsClass,
|
|
26366
27263
|
'com.linkedin.pegasus2avro.settings.global.GlobalSettingsInfo': GlobalSettingsInfoClass,
|
|
26367
27264
|
'com.linkedin.pegasus2avro.settings.global.GlobalViewsSettings': GlobalViewsSettingsClass,
|
|
26368
27265
|
'com.linkedin.pegasus2avro.settings.global.OidcSettings': OidcSettingsClass,
|
|
@@ -26377,6 +27274,12 @@ __SCHEMA_TYPES = {
|
|
|
26377
27274
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
26378
27275
|
'com.linkedin.pegasus2avro.tag.TagProperties': TagPropertiesClass,
|
|
26379
27276
|
'com.linkedin.pegasus2avro.telemetry.TelemetryClientId': TelemetryClientIdClass,
|
|
27277
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
|
|
27278
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateRow': DataHubPageTemplateRowClass,
|
|
27279
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
|
|
27280
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
|
|
27281
|
+
'com.linkedin.pegasus2avro.template.PageTemplateScope': PageTemplateScopeClass,
|
|
27282
|
+
'com.linkedin.pegasus2avro.template.PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
|
|
26380
27283
|
'com.linkedin.pegasus2avro.test.TestDefinition': TestDefinitionClass,
|
|
26381
27284
|
'com.linkedin.pegasus2avro.test.TestDefinitionType': TestDefinitionTypeClass,
|
|
26382
27285
|
'com.linkedin.pegasus2avro.test.TestInfo': TestInfoClass,
|
|
@@ -26402,6 +27305,9 @@ __SCHEMA_TYPES = {
|
|
|
26402
27305
|
'com.linkedin.pegasus2avro.view.DataHubViewType': DataHubViewTypeClass,
|
|
26403
27306
|
'KafkaAuditHeader': KafkaAuditHeaderClass,
|
|
26404
27307
|
'DataHubAccessTokenInfo': DataHubAccessTokenInfoClass,
|
|
27308
|
+
'ApplicationKey': ApplicationKeyClass,
|
|
27309
|
+
'ApplicationProperties': ApplicationPropertiesClass,
|
|
27310
|
+
'Applications': ApplicationsClass,
|
|
26405
27311
|
'AssertionAction': AssertionActionClass,
|
|
26406
27312
|
'AssertionActionType': AssertionActionTypeClass,
|
|
26407
27313
|
'AssertionActions': AssertionActionsClass,
|
|
@@ -26637,6 +27543,7 @@ __SCHEMA_TYPES = {
|
|
|
26637
27543
|
'CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
|
|
26638
27544
|
'CorpUserCredentials': CorpUserCredentialsClass,
|
|
26639
27545
|
'CorpUserEditableInfo': CorpUserEditableInfoClass,
|
|
27546
|
+
'CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
|
|
26640
27547
|
'CorpUserInfo': CorpUserInfoClass,
|
|
26641
27548
|
'CorpUserSettings': CorpUserSettingsClass,
|
|
26642
27549
|
'CorpUserStatus': CorpUserStatusClass,
|
|
@@ -26658,6 +27565,7 @@ __SCHEMA_TYPES = {
|
|
|
26658
27565
|
'DataHubIngestionSourceSchedule': DataHubIngestionSourceScheduleClass,
|
|
26659
27566
|
'DataHubIngestionSourceSource': DataHubIngestionSourceSourceClass,
|
|
26660
27567
|
'DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
|
|
27568
|
+
'LogicalParent': LogicalParentClass,
|
|
26661
27569
|
'AssertionKey': AssertionKeyClass,
|
|
26662
27570
|
'ChartKey': ChartKeyClass,
|
|
26663
27571
|
'ContainerKey': ContainerKeyClass,
|
|
@@ -26671,6 +27579,8 @@ __SCHEMA_TYPES = {
|
|
|
26671
27579
|
'DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
26672
27580
|
'DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
26673
27581
|
'DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
27582
|
+
'DataHubPageModuleKey': DataHubPageModuleKeyClass,
|
|
27583
|
+
'DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
|
|
26674
27584
|
'DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
26675
27585
|
'DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
26676
27586
|
'DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -26765,6 +27675,14 @@ __SCHEMA_TYPES = {
|
|
|
26765
27675
|
'SourceCodeUrl': SourceCodeUrlClass,
|
|
26766
27676
|
'SourceCodeUrlType': SourceCodeUrlTypeClass,
|
|
26767
27677
|
'TrainingData': TrainingDataClass,
|
|
27678
|
+
'AssetCollectionModuleParams': AssetCollectionModuleParamsClass,
|
|
27679
|
+
'DataHubPageModuleParams': DataHubPageModuleParamsClass,
|
|
27680
|
+
'DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
|
|
27681
|
+
'DataHubPageModuleType': DataHubPageModuleTypeClass,
|
|
27682
|
+
'DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
|
|
27683
|
+
'LinkModuleParams': LinkModuleParamsClass,
|
|
27684
|
+
'PageModuleScope': PageModuleScopeClass,
|
|
27685
|
+
'RichTextModuleParams': RichTextModuleParamsClass,
|
|
26768
27686
|
'GenericAspect': GenericAspectClass,
|
|
26769
27687
|
'GenericPayload': GenericPayloadClass,
|
|
26770
27688
|
'MetadataChangeEvent': MetadataChangeEventClass,
|
|
@@ -26848,7 +27766,9 @@ __SCHEMA_TYPES = {
|
|
|
26848
27766
|
'SchemaFieldAliases': SchemaFieldAliasesClass,
|
|
26849
27767
|
'SchemaFieldInfo': SchemaFieldInfoClass,
|
|
26850
27768
|
'DataHubSecretValue': DataHubSecretValueClass,
|
|
27769
|
+
'ApplicationsSettings': ApplicationsSettingsClass,
|
|
26851
27770
|
'DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
27771
|
+
'GlobalHomePageSettings': GlobalHomePageSettingsClass,
|
|
26852
27772
|
'GlobalSettingsInfo': GlobalSettingsInfoClass,
|
|
26853
27773
|
'GlobalViewsSettings': GlobalViewsSettingsClass,
|
|
26854
27774
|
'OidcSettings': OidcSettingsClass,
|
|
@@ -26863,6 +27783,12 @@ __SCHEMA_TYPES = {
|
|
|
26863
27783
|
'StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
26864
27784
|
'TagProperties': TagPropertiesClass,
|
|
26865
27785
|
'TelemetryClientId': TelemetryClientIdClass,
|
|
27786
|
+
'DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
|
|
27787
|
+
'DataHubPageTemplateRow': DataHubPageTemplateRowClass,
|
|
27788
|
+
'DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
|
|
27789
|
+
'DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
|
|
27790
|
+
'PageTemplateScope': PageTemplateScopeClass,
|
|
27791
|
+
'PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
|
|
26866
27792
|
'TestDefinition': TestDefinitionClass,
|
|
26867
27793
|
'TestDefinitionType': TestDefinitionTypeClass,
|
|
26868
27794
|
'TestInfo': TestInfoClass,
|
|
@@ -26895,220 +27821,228 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
26895
27821
|
|
|
26896
27822
|
|
|
26897
27823
|
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,
|
|
27824
|
+
DataTypeKeyClass,
|
|
27825
|
+
DataTypeInfoClass,
|
|
27826
|
+
DataHubUpgradeRequestClass,
|
|
27827
|
+
DataHubUpgradeResultClass,
|
|
26915
27828
|
DataPlatformInfoClass,
|
|
26916
27829
|
SlackUserInfoClass,
|
|
26917
|
-
|
|
27830
|
+
DataHubPolicyInfoClass,
|
|
27831
|
+
DataHubRoleInfoClass,
|
|
27832
|
+
DataHubPageTemplatePropertiesClass,
|
|
26918
27833
|
DataProductKeyClass,
|
|
26919
27834
|
DataProductPropertiesClass,
|
|
26920
|
-
InputFieldsClass,
|
|
26921
|
-
DataPlatformInstanceClass,
|
|
26922
|
-
CostClass,
|
|
26923
|
-
SubTypesClass,
|
|
26924
27835
|
DeprecationClass,
|
|
26925
|
-
|
|
26926
|
-
|
|
26927
|
-
|
|
26928
|
-
DataTransformLogicClass,
|
|
26929
|
-
GlossaryTermsClass,
|
|
27836
|
+
BrowsePathsClass,
|
|
27837
|
+
AccessClass,
|
|
27838
|
+
InputFieldsClass,
|
|
26930
27839
|
IncidentsSummaryClass,
|
|
27840
|
+
DocumentationClass,
|
|
27841
|
+
OperationClass,
|
|
27842
|
+
VersionPropertiesClass,
|
|
27843
|
+
OwnershipClass,
|
|
27844
|
+
SiblingsClass,
|
|
26931
27845
|
FormsClass,
|
|
26932
27846
|
BrowsePathsV2Class,
|
|
26933
27847
|
DisplayPropertiesClass,
|
|
26934
|
-
StatusClass,
|
|
26935
|
-
VersionPropertiesClass,
|
|
26936
|
-
SiblingsClass,
|
|
26937
|
-
DocumentationClass,
|
|
26938
|
-
BrowsePathsClass,
|
|
26939
27848
|
EmbedClass,
|
|
26940
|
-
|
|
27849
|
+
GlossaryTermsClass,
|
|
27850
|
+
SubTypesClass,
|
|
27851
|
+
DataTransformLogicClass,
|
|
26941
27852
|
InstitutionalMemoryClass,
|
|
26942
|
-
|
|
26943
|
-
|
|
26944
|
-
|
|
26945
|
-
|
|
26946
|
-
|
|
26947
|
-
|
|
26948
|
-
|
|
26949
|
-
|
|
26950
|
-
|
|
26951
|
-
|
|
26952
|
-
|
|
26953
|
-
|
|
26954
|
-
|
|
26955
|
-
|
|
26956
|
-
|
|
26957
|
-
|
|
26958
|
-
|
|
26959
|
-
|
|
26960
|
-
|
|
27853
|
+
GlobalTagsClass,
|
|
27854
|
+
CostClass,
|
|
27855
|
+
StatusClass,
|
|
27856
|
+
DataPlatformInstanceClass,
|
|
27857
|
+
OriginClass,
|
|
27858
|
+
BusinessAttributeKeyClass,
|
|
27859
|
+
BusinessAttributeInfoClass,
|
|
27860
|
+
BusinessAttributesClass,
|
|
27861
|
+
DataFlowInfoClass,
|
|
27862
|
+
EditableDataFlowPropertiesClass,
|
|
27863
|
+
VersionInfoClass,
|
|
27864
|
+
DataJobInputOutputClass,
|
|
27865
|
+
EditableDataJobPropertiesClass,
|
|
27866
|
+
DataJobInfoClass,
|
|
27867
|
+
DatahubIngestionRunSummaryClass,
|
|
27868
|
+
DatahubIngestionCheckpointClass,
|
|
27869
|
+
TestInfoClass,
|
|
27870
|
+
TestResultsClass,
|
|
27871
|
+
DataHubConnectionDetailsClass,
|
|
27872
|
+
GroupMembershipClass,
|
|
27873
|
+
CorpUserStatusClass,
|
|
27874
|
+
CorpUserInfoClass,
|
|
27875
|
+
CorpUserEditableInfoClass,
|
|
27876
|
+
CorpUserCredentialsClass,
|
|
27877
|
+
InviteTokenClass,
|
|
27878
|
+
NativeGroupMembershipClass,
|
|
27879
|
+
RoleMembershipClass,
|
|
27880
|
+
CorpUserSettingsClass,
|
|
27881
|
+
CorpGroupEditableInfoClass,
|
|
27882
|
+
CorpGroupInfoClass,
|
|
27883
|
+
DataHubViewInfoClass,
|
|
27884
|
+
TagPropertiesClass,
|
|
27885
|
+
AssertionActionsClass,
|
|
27886
|
+
AssertionRunEventClass,
|
|
27887
|
+
AssertionInfoClass,
|
|
27888
|
+
EditableERModelRelationshipPropertiesClass,
|
|
27889
|
+
ERModelRelationshipPropertiesClass,
|
|
27890
|
+
EditableSchemaMetadataClass,
|
|
27891
|
+
SchemaMetadataClass,
|
|
27892
|
+
LogicalParentClass,
|
|
27893
|
+
ChartInfoClass,
|
|
27894
|
+
ChartUsageStatisticsClass,
|
|
27895
|
+
ChartQueryClass,
|
|
27896
|
+
EditableChartPropertiesClass,
|
|
27897
|
+
DataHubAccessTokenInfoClass,
|
|
27898
|
+
GlossaryTermInfoClass,
|
|
27899
|
+
GlossaryRelatedTermsClass,
|
|
27900
|
+
GlossaryNodeInfoClass,
|
|
27901
|
+
DomainPropertiesClass,
|
|
27902
|
+
DomainsClass,
|
|
27903
|
+
DataProcessInstanceRunEventClass,
|
|
27904
|
+
DataProcessInstanceRelationshipsClass,
|
|
27905
|
+
DataProcessInstanceOutputClass,
|
|
27906
|
+
DataProcessInfoClass,
|
|
27907
|
+
DataProcessInstanceInputClass,
|
|
27908
|
+
DataProcessInstancePropertiesClass,
|
|
27909
|
+
QueryUsageStatisticsClass,
|
|
27910
|
+
QuerySubjectsClass,
|
|
27911
|
+
QueryPropertiesClass,
|
|
27912
|
+
ExecutionRequestResultClass,
|
|
27913
|
+
ExecutionRequestInputClass,
|
|
27914
|
+
ExecutionRequestSignalClass,
|
|
27915
|
+
DataHubStepStatePropertiesClass,
|
|
27916
|
+
SystemMetadataClass,
|
|
27917
|
+
DataHubUpgradeKeyClass,
|
|
26961
27918
|
GlobalSettingsKeyClass,
|
|
26962
|
-
|
|
27919
|
+
MLModelDeploymentKeyClass,
|
|
26963
27920
|
RoleKeyClass,
|
|
26964
|
-
CorpGroupKeyClass,
|
|
26965
|
-
AssertionKeyClass,
|
|
26966
|
-
DataProcessKeyClass,
|
|
26967
|
-
DataHubViewKeyClass,
|
|
26968
27921
|
DataPlatformInstanceKeyClass,
|
|
26969
|
-
|
|
26970
|
-
|
|
27922
|
+
CorpGroupKeyClass,
|
|
27923
|
+
NotebookKeyClass,
|
|
27924
|
+
DataPlatformKeyClass,
|
|
27925
|
+
MLFeatureKeyClass,
|
|
27926
|
+
DataHubActionKeyClass,
|
|
26971
27927
|
MLFeatureTableKeyClass,
|
|
26972
|
-
|
|
26973
|
-
|
|
26974
|
-
|
|
26975
|
-
|
|
27928
|
+
DataHubRetentionKeyClass,
|
|
27929
|
+
MLModelKeyClass,
|
|
27930
|
+
ERModelRelationshipKeyClass,
|
|
27931
|
+
GlossaryTermKeyClass,
|
|
27932
|
+
DashboardKeyClass,
|
|
27933
|
+
VersionSetKeyClass,
|
|
27934
|
+
ContainerKeyClass,
|
|
27935
|
+
DataHubStepStateKeyClass,
|
|
27936
|
+
GlossaryNodeKeyClass,
|
|
27937
|
+
DataJobKeyClass,
|
|
27938
|
+
DataHubViewKeyClass,
|
|
27939
|
+
DataHubPageTemplateKeyClass,
|
|
27940
|
+
DomainKeyClass,
|
|
27941
|
+
IncidentKeyClass,
|
|
27942
|
+
DatasetKeyClass,
|
|
27943
|
+
DataHubRoleKeyClass,
|
|
26976
27944
|
CorpUserKeyClass,
|
|
26977
|
-
|
|
26978
|
-
|
|
27945
|
+
AssertionKeyClass,
|
|
27946
|
+
ChartKeyClass,
|
|
26979
27947
|
SchemaFieldKeyClass,
|
|
26980
|
-
DataContractKeyClass,
|
|
26981
|
-
MLModelDeploymentKeyClass,
|
|
26982
|
-
GlossaryNodeKeyClass,
|
|
26983
27948
|
OwnershipTypeKeyClass,
|
|
26984
|
-
|
|
26985
|
-
|
|
27949
|
+
MLModelGroupKeyClass,
|
|
27950
|
+
DataHubConnectionKeyClass,
|
|
26986
27951
|
TestKeyClass,
|
|
26987
|
-
DataHubRetentionKeyClass,
|
|
26988
|
-
NotebookKeyClass,
|
|
26989
|
-
DataHubRoleKeyClass,
|
|
26990
|
-
QueryKeyClass,
|
|
26991
|
-
DashboardKeyClass,
|
|
26992
|
-
MLModelKeyClass,
|
|
26993
|
-
DataProcessInstanceKeyClass,
|
|
26994
|
-
DataJobKeyClass,
|
|
26995
27952
|
FormKeyClass,
|
|
27953
|
+
DataHubPolicyKeyClass,
|
|
27954
|
+
DataHubPersonaKeyClass,
|
|
27955
|
+
MLPrimaryKeyKeyClass,
|
|
27956
|
+
DataProcessInstanceKeyClass,
|
|
27957
|
+
PostKeyClass,
|
|
27958
|
+
DataProcessKeyClass,
|
|
26996
27959
|
TelemetryKeyClass,
|
|
26997
|
-
|
|
27960
|
+
QueryKeyClass,
|
|
27961
|
+
TagKeyClass,
|
|
27962
|
+
DataHubPageModuleKeyClass,
|
|
27963
|
+
DataHubSecretKeyClass,
|
|
27964
|
+
ExecutionRequestKeyClass,
|
|
27965
|
+
InviteTokenKeyClass,
|
|
27966
|
+
DataContractKeyClass,
|
|
27967
|
+
DataHubOpenAPISchemaKeyClass,
|
|
27968
|
+
DataHubAccessTokenKeyClass,
|
|
26998
27969
|
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,
|
|
27970
|
+
DataHubIngestionSourceKeyClass,
|
|
27971
|
+
VersionSetPropertiesClass,
|
|
27014
27972
|
OwnershipTypeInfoClass,
|
|
27015
|
-
|
|
27016
|
-
|
|
27017
|
-
|
|
27018
|
-
EntityTypeKeyClass,
|
|
27019
|
-
EntityTypeInfoClass,
|
|
27020
|
-
DomainsClass,
|
|
27021
|
-
DomainPropertiesClass,
|
|
27022
|
-
DataHubIngestionSourceInfoClass,
|
|
27973
|
+
PostInfoClass,
|
|
27974
|
+
RolePropertiesClass,
|
|
27975
|
+
ActorsClass,
|
|
27023
27976
|
StructuredPropertySettingsClass,
|
|
27977
|
+
StructuredPropertiesClass,
|
|
27024
27978
|
StructuredPropertyDefinitionClass,
|
|
27025
27979
|
StructuredPropertyKeyClass,
|
|
27026
|
-
|
|
27027
|
-
|
|
27028
|
-
|
|
27029
|
-
|
|
27030
|
-
|
|
27031
|
-
|
|
27980
|
+
DataContractStatusClass,
|
|
27981
|
+
DataContractPropertiesClass,
|
|
27982
|
+
DataHubIngestionSourceInfoClass,
|
|
27983
|
+
TelemetryClientIdClass,
|
|
27984
|
+
DataHubPageModulePropertiesClass,
|
|
27985
|
+
GlobalSettingsInfoClass,
|
|
27986
|
+
DataHubPersonaInfoClass,
|
|
27987
|
+
EditableContainerPropertiesClass,
|
|
27988
|
+
ContainerClass,
|
|
27989
|
+
ContainerPropertiesClass,
|
|
27990
|
+
ApplicationPropertiesClass,
|
|
27991
|
+
ApplicationsClass,
|
|
27992
|
+
ApplicationKeyClass,
|
|
27993
|
+
IncidentSourceClass,
|
|
27994
|
+
IncidentInfoClass,
|
|
27995
|
+
DataHubSecretValueClass,
|
|
27996
|
+
EditableNotebookPropertiesClass,
|
|
27997
|
+
NotebookContentClass,
|
|
27998
|
+
NotebookInfoClass,
|
|
27999
|
+
DashboardUsageStatisticsClass,
|
|
28000
|
+
DashboardInfoClass,
|
|
28001
|
+
EditableDashboardPropertiesClass,
|
|
28002
|
+
UpstreamLineageClass,
|
|
27032
28003
|
DatasetUpstreamLineageClass,
|
|
28004
|
+
DatasetDeprecationClass,
|
|
27033
28005
|
DatasetPropertiesClass,
|
|
27034
|
-
UpstreamLineageClass,
|
|
27035
28006
|
PartitionsSummaryClass,
|
|
28007
|
+
DatasetProfileClass,
|
|
28008
|
+
DatasetUsageStatisticsClass,
|
|
28009
|
+
IcebergCatalogInfoClass,
|
|
28010
|
+
ViewPropertiesClass,
|
|
27036
28011
|
EditableDatasetPropertiesClass,
|
|
27037
|
-
|
|
27038
|
-
|
|
27039
|
-
|
|
27040
|
-
|
|
27041
|
-
|
|
27042
|
-
|
|
27043
|
-
MLModelPropertiesClass,
|
|
27044
|
-
EvaluationDataClass,
|
|
27045
|
-
MLHyperParamClass,
|
|
27046
|
-
MLPrimaryKeyPropertiesClass,
|
|
27047
|
-
IntendedUseClass,
|
|
27048
|
-
TrainingDataClass,
|
|
27049
|
-
SourceCodeClass,
|
|
27050
|
-
QuantitativeAnalysesClass,
|
|
28012
|
+
EntityTypeInfoClass,
|
|
28013
|
+
EntityTypeKeyClass,
|
|
28014
|
+
SchemaFieldAliasesClass,
|
|
28015
|
+
SchemaFieldInfoClass,
|
|
28016
|
+
MLMetricClass,
|
|
28017
|
+
EditableMLModelPropertiesClass,
|
|
27051
28018
|
MLModelFactorPromptsClass,
|
|
27052
|
-
|
|
28019
|
+
MLHyperParamClass,
|
|
27053
28020
|
MetricsClass,
|
|
27054
|
-
|
|
27055
|
-
EditableMLModelGroupPropertiesClass,
|
|
28021
|
+
SourceCodeClass,
|
|
27056
28022
|
MLTrainingRunPropertiesClass,
|
|
27057
|
-
|
|
27058
|
-
MLFeaturePropertiesClass,
|
|
27059
|
-
MLFeatureTablePropertiesClass,
|
|
28023
|
+
EditableMLModelGroupPropertiesClass,
|
|
27060
28024
|
MLModelDeploymentPropertiesClass,
|
|
27061
|
-
|
|
27062
|
-
EditableMLFeaturePropertiesClass,
|
|
28025
|
+
MLFeatureTablePropertiesClass,
|
|
27063
28026
|
EthicalConsiderationsClass,
|
|
28027
|
+
MLFeaturePropertiesClass,
|
|
28028
|
+
QuantitativeAnalysesClass,
|
|
28029
|
+
MLModelPropertiesClass,
|
|
28030
|
+
CaveatsAndRecommendationsClass,
|
|
27064
28031
|
EditableMLPrimaryKeyPropertiesClass,
|
|
27065
|
-
|
|
27066
|
-
|
|
27067
|
-
|
|
27068
|
-
|
|
27069
|
-
|
|
27070
|
-
|
|
27071
|
-
|
|
27072
|
-
|
|
27073
|
-
|
|
28032
|
+
IntendedUseClass,
|
|
28033
|
+
MLPrimaryKeyPropertiesClass,
|
|
28034
|
+
TrainingDataClass,
|
|
28035
|
+
EditableMLFeaturePropertiesClass,
|
|
28036
|
+
MLModelGroupPropertiesClass,
|
|
28037
|
+
EvaluationDataClass,
|
|
28038
|
+
EditableMLFeatureTablePropertiesClass,
|
|
28039
|
+
PlatformResourceKeyClass,
|
|
28040
|
+
PlatformResourceInfoClass,
|
|
28041
|
+
FormInfoClass,
|
|
28042
|
+
DynamicFormAssignmentClass,
|
|
27074
28043
|
DataPlatformInstancePropertiesClass,
|
|
27075
28044
|
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
|
|
28045
|
+
DataHubRetentionConfigClass
|
|
27112
28046
|
]
|
|
27113
28047
|
|
|
27114
28048
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -27116,406 +28050,425 @@ ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
|
27116
28050
|
for aspect in ASPECT_CLASSES
|
|
27117
28051
|
}
|
|
27118
28052
|
|
|
27119
|
-
from typing import Literal
|
|
28053
|
+
from typing import Literal, Set
|
|
27120
28054
|
from typing_extensions import TypedDict
|
|
27121
28055
|
|
|
27122
28056
|
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
|
|
28057
|
+
dataTypeKey: DataTypeKeyClass
|
|
28058
|
+
dataTypeInfo: DataTypeInfoClass
|
|
28059
|
+
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
28060
|
+
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
27140
28061
|
dataPlatformInfo: DataPlatformInfoClass
|
|
27141
28062
|
slackUserInfo: SlackUserInfoClass
|
|
27142
|
-
|
|
28063
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
28064
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
28065
|
+
dataHubPageTemplateProperties: DataHubPageTemplatePropertiesClass
|
|
27143
28066
|
dataProductKey: DataProductKeyClass
|
|
27144
28067
|
dataProductProperties: DataProductPropertiesClass
|
|
27145
|
-
inputFields: InputFieldsClass
|
|
27146
|
-
dataPlatformInstance: DataPlatformInstanceClass
|
|
27147
|
-
cost: CostClass
|
|
27148
|
-
subTypes: SubTypesClass
|
|
27149
28068
|
deprecation: DeprecationClass
|
|
27150
|
-
|
|
27151
|
-
|
|
27152
|
-
|
|
27153
|
-
dataTransformLogic: DataTransformLogicClass
|
|
27154
|
-
glossaryTerms: GlossaryTermsClass
|
|
28069
|
+
browsePaths: BrowsePathsClass
|
|
28070
|
+
access: AccessClass
|
|
28071
|
+
inputFields: InputFieldsClass
|
|
27155
28072
|
incidentsSummary: IncidentsSummaryClass
|
|
28073
|
+
documentation: DocumentationClass
|
|
28074
|
+
operation: OperationClass
|
|
28075
|
+
versionProperties: VersionPropertiesClass
|
|
28076
|
+
ownership: OwnershipClass
|
|
28077
|
+
siblings: SiblingsClass
|
|
27156
28078
|
forms: FormsClass
|
|
27157
28079
|
browsePathsV2: BrowsePathsV2Class
|
|
27158
28080
|
displayProperties: DisplayPropertiesClass
|
|
27159
|
-
status: StatusClass
|
|
27160
|
-
versionProperties: VersionPropertiesClass
|
|
27161
|
-
siblings: SiblingsClass
|
|
27162
|
-
documentation: DocumentationClass
|
|
27163
|
-
browsePaths: BrowsePathsClass
|
|
27164
28081
|
embed: EmbedClass
|
|
27165
|
-
|
|
28082
|
+
glossaryTerms: GlossaryTermsClass
|
|
28083
|
+
subTypes: SubTypesClass
|
|
28084
|
+
dataTransformLogic: DataTransformLogicClass
|
|
27166
28085
|
institutionalMemory: InstitutionalMemoryClass
|
|
27167
|
-
|
|
27168
|
-
|
|
27169
|
-
|
|
27170
|
-
|
|
27171
|
-
|
|
27172
|
-
|
|
27173
|
-
|
|
27174
|
-
|
|
27175
|
-
|
|
27176
|
-
|
|
27177
|
-
|
|
27178
|
-
|
|
27179
|
-
|
|
27180
|
-
|
|
28086
|
+
globalTags: GlobalTagsClass
|
|
28087
|
+
cost: CostClass
|
|
28088
|
+
status: StatusClass
|
|
28089
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
28090
|
+
origin: OriginClass
|
|
28091
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
28092
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
28093
|
+
businessAttributes: BusinessAttributesClass
|
|
28094
|
+
dataFlowInfo: DataFlowInfoClass
|
|
28095
|
+
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
28096
|
+
versionInfo: VersionInfoClass
|
|
28097
|
+
dataJobInputOutput: DataJobInputOutputClass
|
|
28098
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
28099
|
+
dataJobInfo: DataJobInfoClass
|
|
28100
|
+
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
28101
|
+
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
28102
|
+
testInfo: TestInfoClass
|
|
28103
|
+
testResults: TestResultsClass
|
|
28104
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
28105
|
+
groupMembership: GroupMembershipClass
|
|
28106
|
+
corpUserStatus: CorpUserStatusClass
|
|
28107
|
+
corpUserInfo: CorpUserInfoClass
|
|
28108
|
+
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
28109
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
28110
|
+
inviteToken: InviteTokenClass
|
|
28111
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
28112
|
+
roleMembership: RoleMembershipClass
|
|
28113
|
+
corpUserSettings: CorpUserSettingsClass
|
|
28114
|
+
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
28115
|
+
corpGroupInfo: CorpGroupInfoClass
|
|
28116
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
28117
|
+
tagProperties: TagPropertiesClass
|
|
28118
|
+
assertionActions: AssertionActionsClass
|
|
28119
|
+
assertionRunEvent: AssertionRunEventClass
|
|
28120
|
+
assertionInfo: AssertionInfoClass
|
|
28121
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
28122
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
28123
|
+
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
28124
|
+
schemaMetadata: SchemaMetadataClass
|
|
28125
|
+
logicalParent: LogicalParentClass
|
|
28126
|
+
chartInfo: ChartInfoClass
|
|
28127
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
28128
|
+
chartQuery: ChartQueryClass
|
|
28129
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
28130
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
28131
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
28132
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
28133
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
28134
|
+
domainProperties: DomainPropertiesClass
|
|
28135
|
+
domains: DomainsClass
|
|
28136
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
28137
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
28138
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
28139
|
+
dataProcessInfo: DataProcessInfoClass
|
|
28140
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
28141
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
28142
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
28143
|
+
querySubjects: QuerySubjectsClass
|
|
28144
|
+
queryProperties: QueryPropertiesClass
|
|
28145
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
28146
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
28147
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
28148
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
28149
|
+
systemMetadata: SystemMetadataClass
|
|
27181
28150
|
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
27182
|
-
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
27183
|
-
domainKey: DomainKeyClass
|
|
27184
|
-
incidentKey: IncidentKeyClass
|
|
27185
|
-
inviteTokenKey: InviteTokenKeyClass
|
|
27186
28151
|
globalSettingsKey: GlobalSettingsKeyClass
|
|
27187
|
-
|
|
28152
|
+
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
27188
28153
|
roleKey: RoleKeyClass
|
|
27189
|
-
corpGroupKey: CorpGroupKeyClass
|
|
27190
|
-
assertionKey: AssertionKeyClass
|
|
27191
|
-
dataProcessKey: DataProcessKeyClass
|
|
27192
|
-
dataHubViewKey: DataHubViewKeyClass
|
|
27193
28154
|
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
27194
|
-
|
|
27195
|
-
|
|
28155
|
+
corpGroupKey: CorpGroupKeyClass
|
|
28156
|
+
notebookKey: NotebookKeyClass
|
|
28157
|
+
dataPlatformKey: DataPlatformKeyClass
|
|
28158
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
28159
|
+
dataHubActionKey: DataHubActionKeyClass
|
|
27196
28160
|
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
27197
|
-
|
|
27198
|
-
|
|
27199
|
-
|
|
27200
|
-
|
|
28161
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
28162
|
+
mlModelKey: MLModelKeyClass
|
|
28163
|
+
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
28164
|
+
glossaryTermKey: GlossaryTermKeyClass
|
|
28165
|
+
dashboardKey: DashboardKeyClass
|
|
28166
|
+
versionSetKey: VersionSetKeyClass
|
|
28167
|
+
containerKey: ContainerKeyClass
|
|
28168
|
+
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
28169
|
+
glossaryNodeKey: GlossaryNodeKeyClass
|
|
28170
|
+
dataJobKey: DataJobKeyClass
|
|
28171
|
+
dataHubViewKey: DataHubViewKeyClass
|
|
28172
|
+
dataHubPageTemplateKey: DataHubPageTemplateKeyClass
|
|
28173
|
+
domainKey: DomainKeyClass
|
|
28174
|
+
incidentKey: IncidentKeyClass
|
|
28175
|
+
datasetKey: DatasetKeyClass
|
|
28176
|
+
dataHubRoleKey: DataHubRoleKeyClass
|
|
27201
28177
|
corpUserKey: CorpUserKeyClass
|
|
27202
|
-
|
|
27203
|
-
|
|
28178
|
+
assertionKey: AssertionKeyClass
|
|
28179
|
+
chartKey: ChartKeyClass
|
|
27204
28180
|
schemaFieldKey: SchemaFieldKeyClass
|
|
27205
|
-
dataContractKey: DataContractKeyClass
|
|
27206
|
-
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
27207
|
-
glossaryNodeKey: GlossaryNodeKeyClass
|
|
27208
28181
|
ownershipTypeKey: OwnershipTypeKeyClass
|
|
27209
|
-
|
|
27210
|
-
|
|
28182
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
28183
|
+
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
27211
28184
|
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
28185
|
formKey: FormKeyClass
|
|
28186
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
28187
|
+
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
28188
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
28189
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
28190
|
+
postKey: PostKeyClass
|
|
28191
|
+
dataProcessKey: DataProcessKeyClass
|
|
27221
28192
|
telemetryKey: TelemetryKeyClass
|
|
27222
|
-
|
|
28193
|
+
queryKey: QueryKeyClass
|
|
28194
|
+
tagKey: TagKeyClass
|
|
28195
|
+
dataHubPageModuleKey: DataHubPageModuleKeyClass
|
|
28196
|
+
dataHubSecretKey: DataHubSecretKeyClass
|
|
28197
|
+
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
28198
|
+
inviteTokenKey: InviteTokenKeyClass
|
|
28199
|
+
dataContractKey: DataContractKeyClass
|
|
28200
|
+
dataHubOpenAPISchemaKey: DataHubOpenAPISchemaKeyClass
|
|
28201
|
+
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
27223
28202
|
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
|
|
28203
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
28204
|
+
versionSetProperties: VersionSetPropertiesClass
|
|
27239
28205
|
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
27240
|
-
|
|
27241
|
-
|
|
27242
|
-
|
|
27243
|
-
entityTypeKey: EntityTypeKeyClass
|
|
27244
|
-
entityTypeInfo: EntityTypeInfoClass
|
|
27245
|
-
domains: DomainsClass
|
|
27246
|
-
domainProperties: DomainPropertiesClass
|
|
27247
|
-
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
28206
|
+
postInfo: PostInfoClass
|
|
28207
|
+
roleProperties: RolePropertiesClass
|
|
28208
|
+
actors: ActorsClass
|
|
27248
28209
|
structuredPropertySettings: StructuredPropertySettingsClass
|
|
28210
|
+
structuredProperties: StructuredPropertiesClass
|
|
27249
28211
|
propertyDefinition: StructuredPropertyDefinitionClass
|
|
27250
28212
|
structuredPropertyKey: StructuredPropertyKeyClass
|
|
27251
|
-
|
|
27252
|
-
|
|
27253
|
-
|
|
27254
|
-
|
|
27255
|
-
|
|
27256
|
-
|
|
28213
|
+
dataContractStatus: DataContractStatusClass
|
|
28214
|
+
dataContractProperties: DataContractPropertiesClass
|
|
28215
|
+
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
28216
|
+
telemetryClientId: TelemetryClientIdClass
|
|
28217
|
+
dataHubPageModuleProperties: DataHubPageModulePropertiesClass
|
|
28218
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
28219
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
28220
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
28221
|
+
container: ContainerClass
|
|
28222
|
+
containerProperties: ContainerPropertiesClass
|
|
28223
|
+
applicationProperties: ApplicationPropertiesClass
|
|
28224
|
+
applications: ApplicationsClass
|
|
28225
|
+
applicationKey: ApplicationKeyClass
|
|
28226
|
+
incidentSource: IncidentSourceClass
|
|
28227
|
+
incidentInfo: IncidentInfoClass
|
|
28228
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
28229
|
+
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
28230
|
+
notebookContent: NotebookContentClass
|
|
28231
|
+
notebookInfo: NotebookInfoClass
|
|
28232
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
28233
|
+
dashboardInfo: DashboardInfoClass
|
|
28234
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
28235
|
+
upstreamLineage: UpstreamLineageClass
|
|
27257
28236
|
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
28237
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
27258
28238
|
datasetProperties: DatasetPropertiesClass
|
|
27259
|
-
upstreamLineage: UpstreamLineageClass
|
|
27260
28239
|
partitionsSummary: PartitionsSummaryClass
|
|
28240
|
+
datasetProfile: DatasetProfileClass
|
|
28241
|
+
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
28242
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
28243
|
+
viewProperties: ViewPropertiesClass
|
|
27261
28244
|
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
|
|
28245
|
+
entityTypeInfo: EntityTypeInfoClass
|
|
28246
|
+
entityTypeKey: EntityTypeKeyClass
|
|
28247
|
+
schemaFieldAliases: SchemaFieldAliasesClass
|
|
28248
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
28249
|
+
mlMetric: MLMetricClass
|
|
28250
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
27276
28251
|
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
27277
|
-
|
|
28252
|
+
mlHyperParam: MLHyperParamClass
|
|
27278
28253
|
mlModelMetrics: MetricsClass
|
|
27279
|
-
|
|
27280
|
-
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
28254
|
+
sourceCode: SourceCodeClass
|
|
27281
28255
|
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
27282
|
-
|
|
27283
|
-
mlFeatureProperties: MLFeaturePropertiesClass
|
|
27284
|
-
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
28256
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
27285
28257
|
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
27286
|
-
|
|
27287
|
-
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
28258
|
+
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
27288
28259
|
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
28260
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
28261
|
+
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
28262
|
+
mlModelProperties: MLModelPropertiesClass
|
|
28263
|
+
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
27289
28264
|
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
|
|
28265
|
+
intendedUse: IntendedUseClass
|
|
28266
|
+
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
28267
|
+
mlModelTrainingData: TrainingDataClass
|
|
28268
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
28269
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
28270
|
+
mlModelEvaluationData: EvaluationDataClass
|
|
28271
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
28272
|
+
platformResourceKey: PlatformResourceKeyClass
|
|
28273
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
28274
|
+
formInfo: FormInfoClass
|
|
28275
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
28276
|
+
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
28277
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
28278
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
27337
28279
|
|
|
27338
28280
|
|
|
27339
28281
|
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
28282
|
+
'dataType': DataTypeKeyClass,
|
|
27340
28283
|
'dataProduct': DataProductKeyClass,
|
|
27341
|
-
'
|
|
27342
|
-
'dataHubPersona': DataHubPersonaKeyClass,
|
|
27343
|
-
'dataHubSecret': DataHubSecretKeyClass,
|
|
27344
|
-
'dataPlatform': DataPlatformKeyClass,
|
|
27345
|
-
'post': PostKeyClass,
|
|
27346
|
-
'versionSet': VersionSetKeyClass,
|
|
27347
|
-
'tag': TagKeyClass,
|
|
27348
|
-
'glossaryTerm': GlossaryTermKeyClass,
|
|
28284
|
+
'businessAttribute': BusinessAttributeKeyClass,
|
|
27349
28285
|
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
27350
|
-
'dataHubStepState': DataHubStepStateKeyClass,
|
|
27351
|
-
'domain': DomainKeyClass,
|
|
27352
|
-
'incident': IncidentKeyClass,
|
|
27353
|
-
'inviteToken': InviteTokenKeyClass,
|
|
27354
28286
|
'globalSettings': GlobalSettingsKeyClass,
|
|
27355
|
-
'
|
|
28287
|
+
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
27356
28288
|
'role': RoleKeyClass,
|
|
27357
|
-
'corpGroup': CorpGroupKeyClass,
|
|
27358
|
-
'assertion': AssertionKeyClass,
|
|
27359
|
-
'dataProcess': DataProcessKeyClass,
|
|
27360
|
-
'dataHubView': DataHubViewKeyClass,
|
|
27361
28289
|
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
27362
|
-
'
|
|
27363
|
-
'
|
|
28290
|
+
'corpGroup': CorpGroupKeyClass,
|
|
28291
|
+
'notebook': NotebookKeyClass,
|
|
28292
|
+
'dataPlatform': DataPlatformKeyClass,
|
|
28293
|
+
'mlFeature': MLFeatureKeyClass,
|
|
28294
|
+
'dataHubAction': DataHubActionKeyClass,
|
|
27364
28295
|
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
27365
|
-
'
|
|
27366
|
-
'
|
|
27367
|
-
'
|
|
27368
|
-
'
|
|
28296
|
+
'dataHubRetention': DataHubRetentionKeyClass,
|
|
28297
|
+
'mlModel': MLModelKeyClass,
|
|
28298
|
+
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
28299
|
+
'glossaryTerm': GlossaryTermKeyClass,
|
|
28300
|
+
'dashboard': DashboardKeyClass,
|
|
28301
|
+
'versionSet': VersionSetKeyClass,
|
|
28302
|
+
'container': ContainerKeyClass,
|
|
28303
|
+
'dataHubStepState': DataHubStepStateKeyClass,
|
|
28304
|
+
'glossaryNode': GlossaryNodeKeyClass,
|
|
28305
|
+
'dataJob': DataJobKeyClass,
|
|
28306
|
+
'dataHubView': DataHubViewKeyClass,
|
|
28307
|
+
'dataHubPageTemplate': DataHubPageTemplateKeyClass,
|
|
28308
|
+
'domain': DomainKeyClass,
|
|
28309
|
+
'incident': IncidentKeyClass,
|
|
28310
|
+
'dataset': DatasetKeyClass,
|
|
28311
|
+
'dataHubRole': DataHubRoleKeyClass,
|
|
27369
28312
|
'corpuser': CorpUserKeyClass,
|
|
27370
|
-
'
|
|
27371
|
-
'
|
|
28313
|
+
'assertion': AssertionKeyClass,
|
|
28314
|
+
'chart': ChartKeyClass,
|
|
27372
28315
|
'schemaField': SchemaFieldKeyClass,
|
|
27373
|
-
'dataContract': DataContractKeyClass,
|
|
27374
|
-
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
27375
|
-
'glossaryNode': GlossaryNodeKeyClass,
|
|
27376
28316
|
'ownershipType': OwnershipTypeKeyClass,
|
|
27377
|
-
'
|
|
27378
|
-
'
|
|
28317
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
28318
|
+
'dataHubConnection': DataHubConnectionKeyClass,
|
|
27379
28319
|
'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
28320
|
'form': FormKeyClass,
|
|
28321
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
28322
|
+
'dataHubPersona': DataHubPersonaKeyClass,
|
|
28323
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
28324
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
28325
|
+
'post': PostKeyClass,
|
|
28326
|
+
'dataProcess': DataProcessKeyClass,
|
|
27389
28327
|
'telemetry': TelemetryKeyClass,
|
|
27390
|
-
'
|
|
28328
|
+
'query': QueryKeyClass,
|
|
28329
|
+
'tag': TagKeyClass,
|
|
28330
|
+
'dataHubPageModule': DataHubPageModuleKeyClass,
|
|
28331
|
+
'dataHubSecret': DataHubSecretKeyClass,
|
|
28332
|
+
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
28333
|
+
'inviteToken': InviteTokenKeyClass,
|
|
28334
|
+
'dataContract': DataContractKeyClass,
|
|
28335
|
+
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
28336
|
+
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
27391
28337
|
'dataFlow': DataFlowKeyClass,
|
|
27392
|
-
'
|
|
27393
|
-
'platformResource': PlatformResourceKeyClass,
|
|
27394
|
-
'entityType': EntityTypeKeyClass,
|
|
28338
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
27395
28339
|
'structuredProperty': StructuredPropertyKeyClass,
|
|
27396
|
-
'
|
|
27397
|
-
'
|
|
28340
|
+
'application': ApplicationKeyClass,
|
|
28341
|
+
'entityType': EntityTypeKeyClass,
|
|
28342
|
+
'platformResource': PlatformResourceKeyClass
|
|
27398
28343
|
}
|
|
27399
28344
|
|
|
28345
|
+
KEY_ASPECT_NAMES: Set[str] = {cls.ASPECT_NAME for cls in KEY_ASPECTS.values()}
|
|
28346
|
+
|
|
27400
28347
|
ENTITY_TYPE_NAMES: List[str] = [
|
|
28348
|
+
'dataType',
|
|
27401
28349
|
'dataProduct',
|
|
27402
|
-
'
|
|
27403
|
-
'dataHubPersona',
|
|
27404
|
-
'dataHubSecret',
|
|
27405
|
-
'dataPlatform',
|
|
27406
|
-
'post',
|
|
27407
|
-
'versionSet',
|
|
27408
|
-
'tag',
|
|
27409
|
-
'glossaryTerm',
|
|
28350
|
+
'businessAttribute',
|
|
27410
28351
|
'dataHubUpgrade',
|
|
27411
|
-
'dataHubStepState',
|
|
27412
|
-
'domain',
|
|
27413
|
-
'incident',
|
|
27414
|
-
'inviteToken',
|
|
27415
28352
|
'globalSettings',
|
|
27416
|
-
'
|
|
28353
|
+
'mlModelDeployment',
|
|
27417
28354
|
'role',
|
|
27418
|
-
'corpGroup',
|
|
27419
|
-
'assertion',
|
|
27420
|
-
'dataProcess',
|
|
27421
|
-
'dataHubView',
|
|
27422
28355
|
'dataPlatformInstance',
|
|
27423
|
-
'
|
|
27424
|
-
'
|
|
28356
|
+
'corpGroup',
|
|
28357
|
+
'notebook',
|
|
28358
|
+
'dataPlatform',
|
|
28359
|
+
'mlFeature',
|
|
28360
|
+
'dataHubAction',
|
|
27425
28361
|
'mlFeatureTable',
|
|
27426
|
-
'
|
|
27427
|
-
'
|
|
27428
|
-
'
|
|
27429
|
-
'
|
|
28362
|
+
'dataHubRetention',
|
|
28363
|
+
'mlModel',
|
|
28364
|
+
'erModelRelationship',
|
|
28365
|
+
'glossaryTerm',
|
|
28366
|
+
'dashboard',
|
|
28367
|
+
'versionSet',
|
|
28368
|
+
'container',
|
|
28369
|
+
'dataHubStepState',
|
|
28370
|
+
'glossaryNode',
|
|
28371
|
+
'dataJob',
|
|
28372
|
+
'dataHubView',
|
|
28373
|
+
'dataHubPageTemplate',
|
|
28374
|
+
'domain',
|
|
28375
|
+
'incident',
|
|
28376
|
+
'dataset',
|
|
28377
|
+
'dataHubRole',
|
|
27430
28378
|
'corpuser',
|
|
27431
|
-
'
|
|
27432
|
-
'
|
|
28379
|
+
'assertion',
|
|
28380
|
+
'chart',
|
|
27433
28381
|
'schemaField',
|
|
27434
|
-
'dataContract',
|
|
27435
|
-
'mlModelDeployment',
|
|
27436
|
-
'glossaryNode',
|
|
27437
28382
|
'ownershipType',
|
|
27438
|
-
'
|
|
27439
|
-
'
|
|
28383
|
+
'mlModelGroup',
|
|
28384
|
+
'dataHubConnection',
|
|
27440
28385
|
'test',
|
|
27441
|
-
'dataHubRetention',
|
|
27442
|
-
'notebook',
|
|
27443
|
-
'dataHubRole',
|
|
27444
|
-
'query',
|
|
27445
|
-
'dashboard',
|
|
27446
|
-
'mlModel',
|
|
27447
|
-
'dataProcessInstance',
|
|
27448
|
-
'dataJob',
|
|
27449
28386
|
'form',
|
|
28387
|
+
'dataHubPolicy',
|
|
28388
|
+
'dataHubPersona',
|
|
28389
|
+
'mlPrimaryKey',
|
|
28390
|
+
'dataProcessInstance',
|
|
28391
|
+
'post',
|
|
28392
|
+
'dataProcess',
|
|
27450
28393
|
'telemetry',
|
|
27451
|
-
'
|
|
28394
|
+
'query',
|
|
28395
|
+
'tag',
|
|
28396
|
+
'dataHubPageModule',
|
|
28397
|
+
'dataHubSecret',
|
|
28398
|
+
'dataHubExecutionRequest',
|
|
28399
|
+
'inviteToken',
|
|
28400
|
+
'dataContract',
|
|
28401
|
+
'dataHubOpenAPISchema',
|
|
28402
|
+
'dataHubAccessToken',
|
|
27452
28403
|
'dataFlow',
|
|
27453
|
-
'
|
|
27454
|
-
'platformResource',
|
|
27455
|
-
'entityType',
|
|
28404
|
+
'dataHubIngestionSource',
|
|
27456
28405
|
'structuredProperty',
|
|
27457
|
-
'
|
|
27458
|
-
'
|
|
28406
|
+
'application',
|
|
28407
|
+
'entityType',
|
|
28408
|
+
'platformResource'
|
|
27459
28409
|
]
|
|
27460
28410
|
EntityTypeName = Literal[
|
|
28411
|
+
'dataType',
|
|
27461
28412
|
'dataProduct',
|
|
27462
|
-
'
|
|
27463
|
-
'dataHubPersona',
|
|
27464
|
-
'dataHubSecret',
|
|
27465
|
-
'dataPlatform',
|
|
27466
|
-
'post',
|
|
27467
|
-
'versionSet',
|
|
27468
|
-
'tag',
|
|
27469
|
-
'glossaryTerm',
|
|
28413
|
+
'businessAttribute',
|
|
27470
28414
|
'dataHubUpgrade',
|
|
27471
|
-
'dataHubStepState',
|
|
27472
|
-
'domain',
|
|
27473
|
-
'incident',
|
|
27474
|
-
'inviteToken',
|
|
27475
28415
|
'globalSettings',
|
|
27476
|
-
'
|
|
28416
|
+
'mlModelDeployment',
|
|
27477
28417
|
'role',
|
|
27478
|
-
'corpGroup',
|
|
27479
|
-
'assertion',
|
|
27480
|
-
'dataProcess',
|
|
27481
|
-
'dataHubView',
|
|
27482
28418
|
'dataPlatformInstance',
|
|
27483
|
-
'
|
|
27484
|
-
'
|
|
28419
|
+
'corpGroup',
|
|
28420
|
+
'notebook',
|
|
28421
|
+
'dataPlatform',
|
|
28422
|
+
'mlFeature',
|
|
28423
|
+
'dataHubAction',
|
|
27485
28424
|
'mlFeatureTable',
|
|
27486
|
-
'
|
|
27487
|
-
'
|
|
27488
|
-
'
|
|
27489
|
-
'
|
|
28425
|
+
'dataHubRetention',
|
|
28426
|
+
'mlModel',
|
|
28427
|
+
'erModelRelationship',
|
|
28428
|
+
'glossaryTerm',
|
|
28429
|
+
'dashboard',
|
|
28430
|
+
'versionSet',
|
|
28431
|
+
'container',
|
|
28432
|
+
'dataHubStepState',
|
|
28433
|
+
'glossaryNode',
|
|
28434
|
+
'dataJob',
|
|
28435
|
+
'dataHubView',
|
|
28436
|
+
'dataHubPageTemplate',
|
|
28437
|
+
'domain',
|
|
28438
|
+
'incident',
|
|
28439
|
+
'dataset',
|
|
28440
|
+
'dataHubRole',
|
|
27490
28441
|
'corpuser',
|
|
27491
|
-
'
|
|
27492
|
-
'
|
|
28442
|
+
'assertion',
|
|
28443
|
+
'chart',
|
|
27493
28444
|
'schemaField',
|
|
27494
|
-
'dataContract',
|
|
27495
|
-
'mlModelDeployment',
|
|
27496
|
-
'glossaryNode',
|
|
27497
28445
|
'ownershipType',
|
|
27498
|
-
'
|
|
27499
|
-
'
|
|
28446
|
+
'mlModelGroup',
|
|
28447
|
+
'dataHubConnection',
|
|
27500
28448
|
'test',
|
|
27501
|
-
'dataHubRetention',
|
|
27502
|
-
'notebook',
|
|
27503
|
-
'dataHubRole',
|
|
27504
|
-
'query',
|
|
27505
|
-
'dashboard',
|
|
27506
|
-
'mlModel',
|
|
27507
|
-
'dataProcessInstance',
|
|
27508
|
-
'dataJob',
|
|
27509
28449
|
'form',
|
|
28450
|
+
'dataHubPolicy',
|
|
28451
|
+
'dataHubPersona',
|
|
28452
|
+
'mlPrimaryKey',
|
|
28453
|
+
'dataProcessInstance',
|
|
28454
|
+
'post',
|
|
28455
|
+
'dataProcess',
|
|
27510
28456
|
'telemetry',
|
|
27511
|
-
'
|
|
28457
|
+
'query',
|
|
28458
|
+
'tag',
|
|
28459
|
+
'dataHubPageModule',
|
|
28460
|
+
'dataHubSecret',
|
|
28461
|
+
'dataHubExecutionRequest',
|
|
28462
|
+
'inviteToken',
|
|
28463
|
+
'dataContract',
|
|
28464
|
+
'dataHubOpenAPISchema',
|
|
28465
|
+
'dataHubAccessToken',
|
|
27512
28466
|
'dataFlow',
|
|
27513
|
-
'
|
|
27514
|
-
'platformResource',
|
|
27515
|
-
'entityType',
|
|
28467
|
+
'dataHubIngestionSource',
|
|
27516
28468
|
'structuredProperty',
|
|
27517
|
-
'
|
|
27518
|
-
'
|
|
28469
|
+
'application',
|
|
28470
|
+
'entityType',
|
|
28471
|
+
'platformResource'
|
|
27519
28472
|
]
|
|
27520
28473
|
|
|
27521
28474
|
# fmt: on
|