acryl-datahub 1.1.0.4rc2__py3-none-any.whl → 1.1.0.5__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.0.4rc2.dist-info → acryl_datahub-1.1.0.5.dist-info}/METADATA +2528 -2530
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5.dist-info}/RECORD +156 -138
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5.dist-info}/entry_points.txt +1 -0
- datahub/_version.py +1 -1
- datahub/api/entities/dataset/dataset.py +1 -1
- datahub/cli/check_cli.py +65 -11
- datahub/cli/cli_utils.py +63 -0
- datahub/cli/container_cli.py +5 -0
- datahub/cli/delete_cli.py +3 -4
- datahub/cli/docker_check.py +107 -12
- datahub/cli/docker_cli.py +149 -227
- datahub/cli/exists_cli.py +0 -2
- datahub/cli/get_cli.py +0 -2
- datahub/cli/iceberg_cli.py +5 -0
- datahub/cli/ingest_cli.py +3 -15
- datahub/cli/migrate.py +2 -0
- datahub/cli/put_cli.py +1 -4
- datahub/cli/quickstart_versioning.py +50 -7
- datahub/cli/specific/assertions_cli.py +0 -4
- datahub/cli/specific/datacontract_cli.py +0 -3
- datahub/cli/specific/dataproduct_cli.py +0 -11
- datahub/cli/specific/dataset_cli.py +1 -8
- datahub/cli/specific/forms_cli.py +0 -4
- datahub/cli/specific/group_cli.py +0 -2
- datahub/cli/specific/structuredproperties_cli.py +1 -4
- datahub/cli/specific/user_cli.py +0 -2
- datahub/cli/state_cli.py +0 -2
- datahub/cli/timeline_cli.py +0 -2
- datahub/emitter/rest_emitter.py +41 -8
- 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 +47 -45
- 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/graph/client.py +73 -30
- datahub/ingestion/run/pipeline.py +54 -2
- datahub/ingestion/sink/datahub_rest.py +12 -0
- datahub/ingestion/source/abs/source.py +1 -1
- datahub/ingestion/source/aws/glue.py +1 -1
- datahub/ingestion/source/azure/azure_common.py +2 -2
- datahub/ingestion/source/bigquery_v2/bigquery.py +49 -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/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 +7 -2
- datahub/ingestion/source/dbt/dbt_common.py +3 -1
- 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/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/hex/api.py +26 -1
- datahub/ingestion/source/identity/azure_ad.py +1 -1
- datahub/ingestion/source/identity/okta.py +1 -14
- datahub/ingestion/source/kafka_connect/sink_connectors.py +156 -47
- datahub/ingestion/source/kafka_connect/source_connectors.py +59 -4
- datahub/ingestion/source/mlflow.py +11 -1
- datahub/ingestion/source/mock_data/__init__.py +0 -0
- datahub/ingestion/source/mock_data/datahub_mock_data.py +472 -0
- datahub/ingestion/source/mock_data/datahub_mock_data_report.py +12 -0
- datahub/ingestion/source/mock_data/table_naming_helper.py +91 -0
- datahub/ingestion/source/powerbi/powerbi.py +0 -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/redshift/redshift.py +17 -0
- 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/salesforce.py +6 -3
- datahub/ingestion/source/sigma/sigma.py +6 -1
- datahub/ingestion/source/slack/slack.py +2 -1
- datahub/ingestion/source/snowflake/snowflake_config.py +27 -1
- datahub/ingestion/source/snowflake/snowflake_queries.py +348 -82
- datahub/ingestion/source/snowflake/snowflake_usage_v2.py +8 -2
- datahub/ingestion/source/snowflake/snowflake_v2.py +14 -2
- datahub/ingestion/source/snowflake/stored_proc_lineage.py +143 -0
- datahub/ingestion/source/sql/athena.py +119 -12
- datahub/ingestion/source/sql/athena_properties_extractor.py +777 -0
- datahub/ingestion/source/sql/hive_metastore.py +0 -10
- datahub/ingestion/source/sql/mssql/source.py +24 -15
- datahub/ingestion/source/sql/oracle.py +1 -1
- datahub/ingestion/source/sql/sql_common.py +11 -0
- 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 +57 -2
- datahub/ingestion/source/tableau/tableau.py +57 -37
- datahub/ingestion/source/tableau/tableau_common.py +4 -2
- datahub/ingestion/source/tableau/tableau_constant.py +0 -4
- datahub/ingestion/source/unity/proxy.py +4 -3
- datahub/ingestion/source/unity/source.py +56 -30
- datahub/ingestion/source/usage/clickhouse_usage.py +1 -0
- 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 +1253 -536
- datahub/metadata/_urns/urn_defs.py +1797 -1685
- datahub/metadata/com/linkedin/pegasus2avro/identity/__init__.py +2 -0
- datahub/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
- datahub/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +4 -0
- datahub/metadata/com/linkedin/pegasus2avro/module/__init__.py +27 -0
- datahub/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +4 -0
- datahub/metadata/com/linkedin/pegasus2avro/template/__init__.py +25 -0
- datahub/metadata/schema.avsc +16614 -16538
- datahub/metadata/schemas/ContainerProperties.avsc +2 -0
- datahub/metadata/schemas/CorpUserSettings.avsc +41 -0
- datahub/metadata/schemas/DataFlowInfo.avsc +2 -0
- datahub/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
- datahub/metadata/schemas/DataHubPageModuleProperties.avsc +200 -0
- datahub/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
- datahub/metadata/schemas/DataHubPageTemplateProperties.avsc +175 -0
- datahub/metadata/schemas/DataJobInfo.avsc +2 -0
- datahub/metadata/schemas/DataProcessKey.avsc +2 -0
- datahub/metadata/schemas/DatasetKey.avsc +4 -1
- datahub/metadata/schemas/GlobalSettingsInfo.avsc +62 -0
- datahub/metadata/schemas/IcebergWarehouseInfo.avsc +2 -0
- datahub/metadata/schemas/LogicalParent.avsc +140 -0
- datahub/metadata/schemas/MLModelDeploymentKey.avsc +2 -0
- datahub/metadata/schemas/MLModelGroupKey.avsc +2 -0
- datahub/metadata/schemas/MLModelKey.avsc +2 -0
- datahub/metadata/schemas/MetadataChangeEvent.avsc +2 -0
- datahub/metadata/schemas/QuerySubjects.avsc +1 -12
- datahub/metadata/schemas/SchemaFieldKey.avsc +2 -1
- datahub/sdk/datajob.py +39 -15
- datahub/sdk/lineage_client.py +2 -0
- datahub/sdk/main_client.py +14 -2
- datahub/sdk/search_client.py +4 -3
- datahub/specific/dataproduct.py +4 -0
- datahub/sql_parsing/sql_parsing_aggregator.py +29 -17
- datahub/sql_parsing/sqlglot_lineage.py +40 -13
- datahub/telemetry/telemetry.py +17 -11
- datahub/upgrade/upgrade.py +46 -13
- datahub/utilities/server_config_util.py +8 -0
- datahub/utilities/sqlalchemy_query_combiner.py +5 -2
- datahub/utilities/stats_collections.py +4 -0
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5.dist-info}/WHEEL +0 -0
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5.dist-info}/licenses/LICENSE +0 -0
- {acryl_datahub-1.1.0.4rc2.dist-info → acryl_datahub-1.1.0.5.dist-info}/top_level.txt +0 -0
|
@@ -4599,6 +4599,9 @@ class FabricTypeClass(object):
|
|
|
4599
4599
|
SIT = "SIT"
|
|
4600
4600
|
"""System Integration Testing"""
|
|
4601
4601
|
|
|
4602
|
+
SBX = "SBX"
|
|
4603
|
+
"""Alternative spelling for sandbox"""
|
|
4604
|
+
|
|
4602
4605
|
SANDBOX = "SANDBOX"
|
|
4603
4606
|
"""Designates sandbox fabrics"""
|
|
4604
4607
|
|
|
@@ -14119,6 +14122,44 @@ class CorpUserEditableInfoClass(_Aspect):
|
|
|
14119
14122
|
self._inner_dict['informationSources'] = value
|
|
14120
14123
|
|
|
14121
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
|
+
|
|
14122
14163
|
class CorpUserInfoClass(_Aspect):
|
|
14123
14164
|
"""Linkedin corp user information"""
|
|
14124
14165
|
|
|
@@ -14324,17 +14365,20 @@ class CorpUserSettingsClass(_Aspect):
|
|
|
14324
14365
|
appearance: "CorpUserAppearanceSettingsClass",
|
|
14325
14366
|
views: Union[None, "CorpUserViewsSettingsClass"]=None,
|
|
14326
14367
|
notificationSettings: Union[None, "NotificationSettingsClass"]=None,
|
|
14368
|
+
homePage: Union[None, "CorpUserHomePageSettingsClass"]=None,
|
|
14327
14369
|
):
|
|
14328
14370
|
super().__init__()
|
|
14329
14371
|
|
|
14330
14372
|
self.appearance = appearance
|
|
14331
14373
|
self.views = views
|
|
14332
14374
|
self.notificationSettings = notificationSettings
|
|
14375
|
+
self.homePage = homePage
|
|
14333
14376
|
|
|
14334
14377
|
def _restore_defaults(self) -> None:
|
|
14335
14378
|
self.appearance = CorpUserAppearanceSettingsClass._construct_with_defaults()
|
|
14336
14379
|
self.views = self.RECORD_SCHEMA.fields_dict["views"].default
|
|
14337
14380
|
self.notificationSettings = self.RECORD_SCHEMA.fields_dict["notificationSettings"].default
|
|
14381
|
+
self.homePage = self.RECORD_SCHEMA.fields_dict["homePage"].default
|
|
14338
14382
|
|
|
14339
14383
|
|
|
14340
14384
|
@property
|
|
@@ -14367,6 +14411,16 @@ class CorpUserSettingsClass(_Aspect):
|
|
|
14367
14411
|
self._inner_dict['notificationSettings'] = value
|
|
14368
14412
|
|
|
14369
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
|
+
|
|
14370
14424
|
class CorpUserStatusClass(_Aspect):
|
|
14371
14425
|
"""The status of the user, e.g. provisioned, active, suspended, etc."""
|
|
14372
14426
|
|
|
@@ -15194,6 +15248,35 @@ class DataHubIngestionSourceSourceTypeClass(object):
|
|
|
15194
15248
|
|
|
15195
15249
|
|
|
15196
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
|
+
|
|
15197
15280
|
class AssertionKeyClass(_Aspect):
|
|
15198
15281
|
"""Key for a Assertion"""
|
|
15199
15282
|
|
|
@@ -15623,6 +15706,64 @@ class DataHubOpenAPISchemaKeyClass(_Aspect):
|
|
|
15623
15706
|
self._inner_dict['id'] = value
|
|
15624
15707
|
|
|
15625
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
|
+
|
|
15626
15767
|
class DataHubPersonaKeyClass(_Aspect):
|
|
15627
15768
|
"""Key for a persona type"""
|
|
15628
15769
|
|
|
@@ -16071,7 +16212,7 @@ class DatasetKeyClass(_Aspect):
|
|
|
16071
16212
|
|
|
16072
16213
|
|
|
16073
16214
|
ASPECT_NAME = 'datasetKey'
|
|
16074
|
-
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'], '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.'}
|
|
16075
16216
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DatasetKey")
|
|
16076
16217
|
|
|
16077
16218
|
def __init__(self,
|
|
@@ -16837,7 +16978,7 @@ class SchemaFieldKeyClass(_Aspect):
|
|
|
16837
16978
|
|
|
16838
16979
|
|
|
16839
16980
|
ASPECT_NAME = 'schemaFieldKey'
|
|
16840
|
-
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']}
|
|
16841
16982
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
|
|
16842
16983
|
|
|
16843
16984
|
def __init__(self,
|
|
@@ -19790,6 +19931,247 @@ class TrainingDataClass(_Aspect):
|
|
|
19790
19931
|
self._inner_dict['trainingData'] = value
|
|
19791
19932
|
|
|
19792
19933
|
|
|
19934
|
+
class DataHubPageModuleParamsClass(DictWrapper):
|
|
19935
|
+
"""The specific parameters stored for a module"""
|
|
19936
|
+
|
|
19937
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleParams")
|
|
19938
|
+
def __init__(self,
|
|
19939
|
+
linkParams: Union[None, "LinkModuleParamsClass"]=None,
|
|
19940
|
+
richTextParams: Union[None, "RichTextModuleParamsClass"]=None,
|
|
19941
|
+
):
|
|
19942
|
+
super().__init__()
|
|
19943
|
+
|
|
19944
|
+
self.linkParams = linkParams
|
|
19945
|
+
self.richTextParams = richTextParams
|
|
19946
|
+
|
|
19947
|
+
def _restore_defaults(self) -> None:
|
|
19948
|
+
self.linkParams = self.RECORD_SCHEMA.fields_dict["linkParams"].default
|
|
19949
|
+
self.richTextParams = self.RECORD_SCHEMA.fields_dict["richTextParams"].default
|
|
19950
|
+
|
|
19951
|
+
|
|
19952
|
+
@property
|
|
19953
|
+
def linkParams(self) -> Union[None, "LinkModuleParamsClass"]:
|
|
19954
|
+
"""The params required if the module is type LINK"""
|
|
19955
|
+
return self._inner_dict.get('linkParams') # type: ignore
|
|
19956
|
+
|
|
19957
|
+
@linkParams.setter
|
|
19958
|
+
def linkParams(self, value: Union[None, "LinkModuleParamsClass"]) -> None:
|
|
19959
|
+
self._inner_dict['linkParams'] = value
|
|
19960
|
+
|
|
19961
|
+
|
|
19962
|
+
@property
|
|
19963
|
+
def richTextParams(self) -> Union[None, "RichTextModuleParamsClass"]:
|
|
19964
|
+
"""The params required if the module is type RICH_TEXT"""
|
|
19965
|
+
return self._inner_dict.get('richTextParams') # type: ignore
|
|
19966
|
+
|
|
19967
|
+
@richTextParams.setter
|
|
19968
|
+
def richTextParams(self, value: Union[None, "RichTextModuleParamsClass"]) -> None:
|
|
19969
|
+
self._inner_dict['richTextParams'] = value
|
|
19970
|
+
|
|
19971
|
+
|
|
19972
|
+
class DataHubPageModulePropertiesClass(_Aspect):
|
|
19973
|
+
"""The main properties of a DataHub page module"""
|
|
19974
|
+
|
|
19975
|
+
|
|
19976
|
+
ASPECT_NAME = 'dataHubPageModuleProperties'
|
|
19977
|
+
ASPECT_INFO = {}
|
|
19978
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleProperties")
|
|
19979
|
+
|
|
19980
|
+
def __init__(self,
|
|
19981
|
+
name: str,
|
|
19982
|
+
type: Union[str, "DataHubPageModuleTypeClass"],
|
|
19983
|
+
visibility: "DataHubPageModuleVisibilityClass",
|
|
19984
|
+
params: "DataHubPageModuleParamsClass",
|
|
19985
|
+
created: "AuditStampClass",
|
|
19986
|
+
lastModified: "AuditStampClass",
|
|
19987
|
+
):
|
|
19988
|
+
super().__init__()
|
|
19989
|
+
|
|
19990
|
+
self.name = name
|
|
19991
|
+
self.type = type
|
|
19992
|
+
self.visibility = visibility
|
|
19993
|
+
self.params = params
|
|
19994
|
+
self.created = created
|
|
19995
|
+
self.lastModified = lastModified
|
|
19996
|
+
|
|
19997
|
+
def _restore_defaults(self) -> None:
|
|
19998
|
+
self.name = str()
|
|
19999
|
+
self.type = DataHubPageModuleTypeClass.LINK
|
|
20000
|
+
self.visibility = DataHubPageModuleVisibilityClass._construct_with_defaults()
|
|
20001
|
+
self.params = DataHubPageModuleParamsClass._construct_with_defaults()
|
|
20002
|
+
self.created = AuditStampClass._construct_with_defaults()
|
|
20003
|
+
self.lastModified = AuditStampClass._construct_with_defaults()
|
|
20004
|
+
|
|
20005
|
+
|
|
20006
|
+
@property
|
|
20007
|
+
def name(self) -> str:
|
|
20008
|
+
"""The display name of this module"""
|
|
20009
|
+
return self._inner_dict.get('name') # type: ignore
|
|
20010
|
+
|
|
20011
|
+
@name.setter
|
|
20012
|
+
def name(self, value: str) -> None:
|
|
20013
|
+
self._inner_dict['name'] = value
|
|
20014
|
+
|
|
20015
|
+
|
|
20016
|
+
@property
|
|
20017
|
+
def type(self) -> Union[str, "DataHubPageModuleTypeClass"]:
|
|
20018
|
+
"""The type of this module - the purpose it serves"""
|
|
20019
|
+
return self._inner_dict.get('type') # type: ignore
|
|
20020
|
+
|
|
20021
|
+
@type.setter
|
|
20022
|
+
def type(self, value: Union[str, "DataHubPageModuleTypeClass"]) -> None:
|
|
20023
|
+
self._inner_dict['type'] = value
|
|
20024
|
+
|
|
20025
|
+
|
|
20026
|
+
@property
|
|
20027
|
+
def visibility(self) -> "DataHubPageModuleVisibilityClass":
|
|
20028
|
+
"""Info about the visibility of this module"""
|
|
20029
|
+
return self._inner_dict.get('visibility') # type: ignore
|
|
20030
|
+
|
|
20031
|
+
@visibility.setter
|
|
20032
|
+
def visibility(self, value: "DataHubPageModuleVisibilityClass") -> None:
|
|
20033
|
+
self._inner_dict['visibility'] = value
|
|
20034
|
+
|
|
20035
|
+
|
|
20036
|
+
@property
|
|
20037
|
+
def params(self) -> "DataHubPageModuleParamsClass":
|
|
20038
|
+
"""The specific parameters stored for this module"""
|
|
20039
|
+
return self._inner_dict.get('params') # type: ignore
|
|
20040
|
+
|
|
20041
|
+
@params.setter
|
|
20042
|
+
def params(self, value: "DataHubPageModuleParamsClass") -> None:
|
|
20043
|
+
self._inner_dict['params'] = value
|
|
20044
|
+
|
|
20045
|
+
|
|
20046
|
+
@property
|
|
20047
|
+
def created(self) -> "AuditStampClass":
|
|
20048
|
+
"""Audit stamp for when and by whom this template was created"""
|
|
20049
|
+
return self._inner_dict.get('created') # type: ignore
|
|
20050
|
+
|
|
20051
|
+
@created.setter
|
|
20052
|
+
def created(self, value: "AuditStampClass") -> None:
|
|
20053
|
+
self._inner_dict['created'] = value
|
|
20054
|
+
|
|
20055
|
+
|
|
20056
|
+
@property
|
|
20057
|
+
def lastModified(self) -> "AuditStampClass":
|
|
20058
|
+
"""Audit stamp for when and by whom this template was last updated"""
|
|
20059
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
20060
|
+
|
|
20061
|
+
@lastModified.setter
|
|
20062
|
+
def lastModified(self, value: "AuditStampClass") -> None:
|
|
20063
|
+
self._inner_dict['lastModified'] = value
|
|
20064
|
+
|
|
20065
|
+
|
|
20066
|
+
class DataHubPageModuleTypeClass(object):
|
|
20067
|
+
"""Enum containing the types of page modules that there are"""
|
|
20068
|
+
|
|
20069
|
+
LINK = "LINK"
|
|
20070
|
+
"""Link type module"""
|
|
20071
|
+
|
|
20072
|
+
RICH_TEXT = "RICH_TEXT"
|
|
20073
|
+
"""Module containing rich text to be rendered"""
|
|
20074
|
+
|
|
20075
|
+
ASSET_COLLECTION = "ASSET_COLLECTION"
|
|
20076
|
+
"""A module with a collection of assets"""
|
|
20077
|
+
|
|
20078
|
+
HIERARCHY = "HIERARCHY"
|
|
20079
|
+
"""A module displaying a hierarchy to navigate"""
|
|
20080
|
+
|
|
20081
|
+
OWNED_ASSETS = "OWNED_ASSETS"
|
|
20082
|
+
"""Module displaying assets owned by a user"""
|
|
20083
|
+
|
|
20084
|
+
DOMAINS = "DOMAINS"
|
|
20085
|
+
"""Module displaying the top domains"""
|
|
20086
|
+
|
|
20087
|
+
|
|
20088
|
+
|
|
20089
|
+
class DataHubPageModuleVisibilityClass(DictWrapper):
|
|
20090
|
+
"""Info about the visibility of this module"""
|
|
20091
|
+
|
|
20092
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility")
|
|
20093
|
+
def __init__(self,
|
|
20094
|
+
scope: Union[str, "PageModuleScopeClass"],
|
|
20095
|
+
):
|
|
20096
|
+
super().__init__()
|
|
20097
|
+
|
|
20098
|
+
self.scope = scope
|
|
20099
|
+
|
|
20100
|
+
def _restore_defaults(self) -> None:
|
|
20101
|
+
self.scope = PageModuleScopeClass.PERSONAL
|
|
20102
|
+
|
|
20103
|
+
|
|
20104
|
+
@property
|
|
20105
|
+
def scope(self) -> Union[str, "PageModuleScopeClass"]:
|
|
20106
|
+
"""Audit stamp for when and by whom this module was created"""
|
|
20107
|
+
return self._inner_dict.get('scope') # type: ignore
|
|
20108
|
+
|
|
20109
|
+
@scope.setter
|
|
20110
|
+
def scope(self, value: Union[str, "PageModuleScopeClass"]) -> None:
|
|
20111
|
+
self._inner_dict['scope'] = value
|
|
20112
|
+
|
|
20113
|
+
|
|
20114
|
+
class LinkModuleParamsClass(DictWrapper):
|
|
20115
|
+
# No docs available.
|
|
20116
|
+
|
|
20117
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.LinkModuleParams")
|
|
20118
|
+
def __init__(self,
|
|
20119
|
+
linkUrn: str,
|
|
20120
|
+
):
|
|
20121
|
+
super().__init__()
|
|
20122
|
+
|
|
20123
|
+
self.linkUrn = linkUrn
|
|
20124
|
+
|
|
20125
|
+
def _restore_defaults(self) -> None:
|
|
20126
|
+
self.linkUrn = str()
|
|
20127
|
+
|
|
20128
|
+
|
|
20129
|
+
@property
|
|
20130
|
+
def linkUrn(self) -> str:
|
|
20131
|
+
# No docs available.
|
|
20132
|
+
return self._inner_dict.get('linkUrn') # type: ignore
|
|
20133
|
+
|
|
20134
|
+
@linkUrn.setter
|
|
20135
|
+
def linkUrn(self, value: str) -> None:
|
|
20136
|
+
self._inner_dict['linkUrn'] = value
|
|
20137
|
+
|
|
20138
|
+
|
|
20139
|
+
class PageModuleScopeClass(object):
|
|
20140
|
+
# No docs available.
|
|
20141
|
+
|
|
20142
|
+
PERSONAL = "PERSONAL"
|
|
20143
|
+
"""This module is used for individual use only"""
|
|
20144
|
+
|
|
20145
|
+
GLOBAL = "GLOBAL"
|
|
20146
|
+
"""This module is discoverable and can be used by any user on the platform"""
|
|
20147
|
+
|
|
20148
|
+
|
|
20149
|
+
|
|
20150
|
+
class RichTextModuleParamsClass(DictWrapper):
|
|
20151
|
+
# No docs available.
|
|
20152
|
+
|
|
20153
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.RichTextModuleParams")
|
|
20154
|
+
def __init__(self,
|
|
20155
|
+
content: str,
|
|
20156
|
+
):
|
|
20157
|
+
super().__init__()
|
|
20158
|
+
|
|
20159
|
+
self.content = content
|
|
20160
|
+
|
|
20161
|
+
def _restore_defaults(self) -> None:
|
|
20162
|
+
self.content = str()
|
|
20163
|
+
|
|
20164
|
+
|
|
20165
|
+
@property
|
|
20166
|
+
def content(self) -> str:
|
|
20167
|
+
# No docs available.
|
|
20168
|
+
return self._inner_dict.get('content') # type: ignore
|
|
20169
|
+
|
|
20170
|
+
@content.setter
|
|
20171
|
+
def content(self, value: str) -> None:
|
|
20172
|
+
self._inner_dict['content'] = value
|
|
20173
|
+
|
|
20174
|
+
|
|
19793
20175
|
class GenericAspectClass(DictWrapper):
|
|
19794
20176
|
"""Generic record structure for serializing an Aspect"""
|
|
19795
20177
|
|
|
@@ -24051,32 +24433,25 @@ class DataHubSecretValueClass(_Aspect):
|
|
|
24051
24433
|
self._inner_dict['created'] = value
|
|
24052
24434
|
|
|
24053
24435
|
|
|
24054
|
-
class
|
|
24436
|
+
class ApplicationsSettingsClass(DictWrapper):
|
|
24055
24437
|
# No docs available.
|
|
24056
24438
|
|
|
24057
|
-
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.
|
|
24439
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.ApplicationsSettings")
|
|
24058
24440
|
def __init__(self,
|
|
24059
24441
|
enabled: bool,
|
|
24060
24442
|
config: Union[None, str]=None,
|
|
24061
24443
|
configVersion: Union[None, str]=None,
|
|
24062
|
-
columnPropagationEnabled: Optional[bool]=None,
|
|
24063
24444
|
):
|
|
24064
24445
|
super().__init__()
|
|
24065
24446
|
|
|
24066
24447
|
self.enabled = enabled
|
|
24067
24448
|
self.config = config
|
|
24068
24449
|
self.configVersion = configVersion
|
|
24069
|
-
if columnPropagationEnabled is None:
|
|
24070
|
-
# default: True
|
|
24071
|
-
self.columnPropagationEnabled = self.RECORD_SCHEMA.fields_dict["columnPropagationEnabled"].default
|
|
24072
|
-
else:
|
|
24073
|
-
self.columnPropagationEnabled = columnPropagationEnabled
|
|
24074
24450
|
|
|
24075
24451
|
def _restore_defaults(self) -> None:
|
|
24076
24452
|
self.enabled = bool()
|
|
24077
24453
|
self.config = self.RECORD_SCHEMA.fields_dict["config"].default
|
|
24078
24454
|
self.configVersion = self.RECORD_SCHEMA.fields_dict["configVersion"].default
|
|
24079
|
-
self.columnPropagationEnabled = self.RECORD_SCHEMA.fields_dict["columnPropagationEnabled"].default
|
|
24080
24455
|
|
|
24081
24456
|
|
|
24082
24457
|
@property
|
|
@@ -24111,16 +24486,101 @@ class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
|
24111
24486
|
self._inner_dict['configVersion'] = value
|
|
24112
24487
|
|
|
24113
24488
|
|
|
24114
|
-
|
|
24115
|
-
|
|
24116
|
-
# No docs available.
|
|
24117
|
-
return self._inner_dict.get('columnPropagationEnabled') # type: ignore
|
|
24489
|
+
class DocPropagationFeatureSettingsClass(DictWrapper):
|
|
24490
|
+
# No docs available.
|
|
24118
24491
|
|
|
24119
|
-
|
|
24492
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.DocPropagationFeatureSettings")
|
|
24493
|
+
def __init__(self,
|
|
24494
|
+
enabled: bool,
|
|
24495
|
+
config: Union[None, str]=None,
|
|
24496
|
+
configVersion: Union[None, str]=None,
|
|
24497
|
+
columnPropagationEnabled: Optional[bool]=None,
|
|
24498
|
+
):
|
|
24499
|
+
super().__init__()
|
|
24500
|
+
|
|
24501
|
+
self.enabled = enabled
|
|
24502
|
+
self.config = config
|
|
24503
|
+
self.configVersion = configVersion
|
|
24504
|
+
if columnPropagationEnabled is None:
|
|
24505
|
+
# default: True
|
|
24506
|
+
self.columnPropagationEnabled = self.RECORD_SCHEMA.fields_dict["columnPropagationEnabled"].default
|
|
24507
|
+
else:
|
|
24508
|
+
self.columnPropagationEnabled = columnPropagationEnabled
|
|
24509
|
+
|
|
24510
|
+
def _restore_defaults(self) -> None:
|
|
24511
|
+
self.enabled = bool()
|
|
24512
|
+
self.config = self.RECORD_SCHEMA.fields_dict["config"].default
|
|
24513
|
+
self.configVersion = self.RECORD_SCHEMA.fields_dict["configVersion"].default
|
|
24514
|
+
self.columnPropagationEnabled = self.RECORD_SCHEMA.fields_dict["columnPropagationEnabled"].default
|
|
24515
|
+
|
|
24516
|
+
|
|
24517
|
+
@property
|
|
24518
|
+
def enabled(self) -> bool:
|
|
24519
|
+
# No docs available.
|
|
24520
|
+
return self._inner_dict.get('enabled') # type: ignore
|
|
24521
|
+
|
|
24522
|
+
@enabled.setter
|
|
24523
|
+
def enabled(self, value: bool) -> None:
|
|
24524
|
+
self._inner_dict['enabled'] = value
|
|
24525
|
+
|
|
24526
|
+
|
|
24527
|
+
@property
|
|
24528
|
+
def config(self) -> Union[None, str]:
|
|
24529
|
+
"""The configuration for the feature, in JSON format."""
|
|
24530
|
+
return self._inner_dict.get('config') # type: ignore
|
|
24531
|
+
|
|
24532
|
+
@config.setter
|
|
24533
|
+
def config(self, value: Union[None, str]) -> None:
|
|
24534
|
+
self._inner_dict['config'] = value
|
|
24535
|
+
|
|
24536
|
+
|
|
24537
|
+
@property
|
|
24538
|
+
def configVersion(self) -> Union[None, str]:
|
|
24539
|
+
"""The version of the configuration schema that has been used to serialize
|
|
24540
|
+
the config.
|
|
24541
|
+
If not provided, the version is assumed to be the latest version."""
|
|
24542
|
+
return self._inner_dict.get('configVersion') # type: ignore
|
|
24543
|
+
|
|
24544
|
+
@configVersion.setter
|
|
24545
|
+
def configVersion(self, value: Union[None, str]) -> None:
|
|
24546
|
+
self._inner_dict['configVersion'] = value
|
|
24547
|
+
|
|
24548
|
+
|
|
24549
|
+
@property
|
|
24550
|
+
def columnPropagationEnabled(self) -> bool:
|
|
24551
|
+
# No docs available.
|
|
24552
|
+
return self._inner_dict.get('columnPropagationEnabled') # type: ignore
|
|
24553
|
+
|
|
24554
|
+
@columnPropagationEnabled.setter
|
|
24120
24555
|
def columnPropagationEnabled(self, value: bool) -> None:
|
|
24121
24556
|
self._inner_dict['columnPropagationEnabled'] = value
|
|
24122
24557
|
|
|
24123
24558
|
|
|
24559
|
+
class GlobalHomePageSettingsClass(DictWrapper):
|
|
24560
|
+
"""Global settings related to the home page for an instance"""
|
|
24561
|
+
|
|
24562
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings")
|
|
24563
|
+
def __init__(self,
|
|
24564
|
+
defaultTemplate: str,
|
|
24565
|
+
):
|
|
24566
|
+
super().__init__()
|
|
24567
|
+
|
|
24568
|
+
self.defaultTemplate = defaultTemplate
|
|
24569
|
+
|
|
24570
|
+
def _restore_defaults(self) -> None:
|
|
24571
|
+
self.defaultTemplate = str()
|
|
24572
|
+
|
|
24573
|
+
|
|
24574
|
+
@property
|
|
24575
|
+
def defaultTemplate(self) -> str:
|
|
24576
|
+
"""The urn that will be rendered in the UI by default for all users"""
|
|
24577
|
+
return self._inner_dict.get('defaultTemplate') # type: ignore
|
|
24578
|
+
|
|
24579
|
+
@defaultTemplate.setter
|
|
24580
|
+
def defaultTemplate(self, value: str) -> None:
|
|
24581
|
+
self._inner_dict['defaultTemplate'] = value
|
|
24582
|
+
|
|
24583
|
+
|
|
24124
24584
|
class GlobalSettingsInfoClass(_Aspect):
|
|
24125
24585
|
"""DataHub Global platform settings. Careful - these should not be modified by the outside world!"""
|
|
24126
24586
|
|
|
@@ -24133,6 +24593,8 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
24133
24593
|
sso: Union[None, "SsoSettingsClass"]=None,
|
|
24134
24594
|
views: Union[None, "GlobalViewsSettingsClass"]=None,
|
|
24135
24595
|
docPropagation: Optional[Union["DocPropagationFeatureSettingsClass", None]]=None,
|
|
24596
|
+
homePage: Union[None, "GlobalHomePageSettingsClass"]=None,
|
|
24597
|
+
applications: Union[None, "ApplicationsSettingsClass"]=None,
|
|
24136
24598
|
):
|
|
24137
24599
|
super().__init__()
|
|
24138
24600
|
|
|
@@ -24143,11 +24605,15 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
24143
24605
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
24144
24606
|
else:
|
|
24145
24607
|
self.docPropagation = docPropagation
|
|
24608
|
+
self.homePage = homePage
|
|
24609
|
+
self.applications = applications
|
|
24146
24610
|
|
|
24147
24611
|
def _restore_defaults(self) -> None:
|
|
24148
24612
|
self.sso = self.RECORD_SCHEMA.fields_dict["sso"].default
|
|
24149
24613
|
self.views = self.RECORD_SCHEMA.fields_dict["views"].default
|
|
24150
24614
|
self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
|
|
24615
|
+
self.homePage = self.RECORD_SCHEMA.fields_dict["homePage"].default
|
|
24616
|
+
self.applications = self.RECORD_SCHEMA.fields_dict["applications"].default
|
|
24151
24617
|
|
|
24152
24618
|
|
|
24153
24619
|
@property
|
|
@@ -24180,6 +24646,26 @@ class GlobalSettingsInfoClass(_Aspect):
|
|
|
24180
24646
|
self._inner_dict['docPropagation'] = value
|
|
24181
24647
|
|
|
24182
24648
|
|
|
24649
|
+
@property
|
|
24650
|
+
def homePage(self) -> Union[None, "GlobalHomePageSettingsClass"]:
|
|
24651
|
+
"""Global settings related to the home page for an instance"""
|
|
24652
|
+
return self._inner_dict.get('homePage') # type: ignore
|
|
24653
|
+
|
|
24654
|
+
@homePage.setter
|
|
24655
|
+
def homePage(self, value: Union[None, "GlobalHomePageSettingsClass"]) -> None:
|
|
24656
|
+
self._inner_dict['homePage'] = value
|
|
24657
|
+
|
|
24658
|
+
|
|
24659
|
+
@property
|
|
24660
|
+
def applications(self) -> Union[None, "ApplicationsSettingsClass"]:
|
|
24661
|
+
"""Settings related to applications. If not enabled, applications won't show up in navigation"""
|
|
24662
|
+
return self._inner_dict.get('applications') # type: ignore
|
|
24663
|
+
|
|
24664
|
+
@applications.setter
|
|
24665
|
+
def applications(self, value: Union[None, "ApplicationsSettingsClass"]) -> None:
|
|
24666
|
+
self._inner_dict['applications'] = value
|
|
24667
|
+
|
|
24668
|
+
|
|
24183
24669
|
class GlobalViewsSettingsClass(DictWrapper):
|
|
24184
24670
|
"""Settings for DataHub Views feature."""
|
|
24185
24671
|
|
|
@@ -25117,6 +25603,181 @@ class TelemetryClientIdClass(_Aspect):
|
|
|
25117
25603
|
self._inner_dict['clientId'] = value
|
|
25118
25604
|
|
|
25119
25605
|
|
|
25606
|
+
class DataHubPageTemplatePropertiesClass(_Aspect):
|
|
25607
|
+
"""The main properties of a DataHub page template"""
|
|
25608
|
+
|
|
25609
|
+
|
|
25610
|
+
ASPECT_NAME = 'dataHubPageTemplateProperties'
|
|
25611
|
+
ASPECT_INFO = {}
|
|
25612
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties")
|
|
25613
|
+
|
|
25614
|
+
def __init__(self,
|
|
25615
|
+
rows: List["DataHubPageTemplateRowClass"],
|
|
25616
|
+
surface: "DataHubPageTemplateSurfaceClass",
|
|
25617
|
+
visibility: "DataHubPageTemplateVisibilityClass",
|
|
25618
|
+
created: "AuditStampClass",
|
|
25619
|
+
lastModified: "AuditStampClass",
|
|
25620
|
+
):
|
|
25621
|
+
super().__init__()
|
|
25622
|
+
|
|
25623
|
+
self.rows = rows
|
|
25624
|
+
self.surface = surface
|
|
25625
|
+
self.visibility = visibility
|
|
25626
|
+
self.created = created
|
|
25627
|
+
self.lastModified = lastModified
|
|
25628
|
+
|
|
25629
|
+
def _restore_defaults(self) -> None:
|
|
25630
|
+
self.rows = list()
|
|
25631
|
+
self.surface = DataHubPageTemplateSurfaceClass._construct_with_defaults()
|
|
25632
|
+
self.visibility = DataHubPageTemplateVisibilityClass._construct_with_defaults()
|
|
25633
|
+
self.created = AuditStampClass._construct_with_defaults()
|
|
25634
|
+
self.lastModified = AuditStampClass._construct_with_defaults()
|
|
25635
|
+
|
|
25636
|
+
|
|
25637
|
+
@property
|
|
25638
|
+
def rows(self) -> List["DataHubPageTemplateRowClass"]:
|
|
25639
|
+
"""The rows of modules contained in this template"""
|
|
25640
|
+
return self._inner_dict.get('rows') # type: ignore
|
|
25641
|
+
|
|
25642
|
+
@rows.setter
|
|
25643
|
+
def rows(self, value: List["DataHubPageTemplateRowClass"]) -> None:
|
|
25644
|
+
self._inner_dict['rows'] = value
|
|
25645
|
+
|
|
25646
|
+
|
|
25647
|
+
@property
|
|
25648
|
+
def surface(self) -> "DataHubPageTemplateSurfaceClass":
|
|
25649
|
+
"""Info about the surface area of the product that this template is deployed in"""
|
|
25650
|
+
return self._inner_dict.get('surface') # type: ignore
|
|
25651
|
+
|
|
25652
|
+
@surface.setter
|
|
25653
|
+
def surface(self, value: "DataHubPageTemplateSurfaceClass") -> None:
|
|
25654
|
+
self._inner_dict['surface'] = value
|
|
25655
|
+
|
|
25656
|
+
|
|
25657
|
+
@property
|
|
25658
|
+
def visibility(self) -> "DataHubPageTemplateVisibilityClass":
|
|
25659
|
+
"""Info about the visibility of this template"""
|
|
25660
|
+
return self._inner_dict.get('visibility') # type: ignore
|
|
25661
|
+
|
|
25662
|
+
@visibility.setter
|
|
25663
|
+
def visibility(self, value: "DataHubPageTemplateVisibilityClass") -> None:
|
|
25664
|
+
self._inner_dict['visibility'] = value
|
|
25665
|
+
|
|
25666
|
+
|
|
25667
|
+
@property
|
|
25668
|
+
def created(self) -> "AuditStampClass":
|
|
25669
|
+
"""Audit stamp for when and by whom this template was created"""
|
|
25670
|
+
return self._inner_dict.get('created') # type: ignore
|
|
25671
|
+
|
|
25672
|
+
@created.setter
|
|
25673
|
+
def created(self, value: "AuditStampClass") -> None:
|
|
25674
|
+
self._inner_dict['created'] = value
|
|
25675
|
+
|
|
25676
|
+
|
|
25677
|
+
@property
|
|
25678
|
+
def lastModified(self) -> "AuditStampClass":
|
|
25679
|
+
"""Audit stamp for when and by whom this template was last updated"""
|
|
25680
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
25681
|
+
|
|
25682
|
+
@lastModified.setter
|
|
25683
|
+
def lastModified(self, value: "AuditStampClass") -> None:
|
|
25684
|
+
self._inner_dict['lastModified'] = value
|
|
25685
|
+
|
|
25686
|
+
|
|
25687
|
+
class DataHubPageTemplateRowClass(DictWrapper):
|
|
25688
|
+
"""A row of modules contained in a template"""
|
|
25689
|
+
|
|
25690
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateRow")
|
|
25691
|
+
def __init__(self,
|
|
25692
|
+
modules: List[str],
|
|
25693
|
+
):
|
|
25694
|
+
super().__init__()
|
|
25695
|
+
|
|
25696
|
+
self.modules = modules
|
|
25697
|
+
|
|
25698
|
+
def _restore_defaults(self) -> None:
|
|
25699
|
+
self.modules = list()
|
|
25700
|
+
|
|
25701
|
+
|
|
25702
|
+
@property
|
|
25703
|
+
def modules(self) -> List[str]:
|
|
25704
|
+
"""The modules that exist in this template row"""
|
|
25705
|
+
return self._inner_dict.get('modules') # type: ignore
|
|
25706
|
+
|
|
25707
|
+
@modules.setter
|
|
25708
|
+
def modules(self, value: List[str]) -> None:
|
|
25709
|
+
self._inner_dict['modules'] = value
|
|
25710
|
+
|
|
25711
|
+
|
|
25712
|
+
class DataHubPageTemplateSurfaceClass(DictWrapper):
|
|
25713
|
+
"""Info about the surface area of the product that this template is deployed in"""
|
|
25714
|
+
|
|
25715
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface")
|
|
25716
|
+
def __init__(self,
|
|
25717
|
+
surfaceType: Union[str, "PageTemplateSurfaceTypeClass"],
|
|
25718
|
+
):
|
|
25719
|
+
super().__init__()
|
|
25720
|
+
|
|
25721
|
+
self.surfaceType = surfaceType
|
|
25722
|
+
|
|
25723
|
+
def _restore_defaults(self) -> None:
|
|
25724
|
+
self.surfaceType = PageTemplateSurfaceTypeClass.HOME_PAGE
|
|
25725
|
+
|
|
25726
|
+
|
|
25727
|
+
@property
|
|
25728
|
+
def surfaceType(self) -> Union[str, "PageTemplateSurfaceTypeClass"]:
|
|
25729
|
+
"""Where exactly is this template being used"""
|
|
25730
|
+
return self._inner_dict.get('surfaceType') # type: ignore
|
|
25731
|
+
|
|
25732
|
+
@surfaceType.setter
|
|
25733
|
+
def surfaceType(self, value: Union[str, "PageTemplateSurfaceTypeClass"]) -> None:
|
|
25734
|
+
self._inner_dict['surfaceType'] = value
|
|
25735
|
+
|
|
25736
|
+
|
|
25737
|
+
class DataHubPageTemplateVisibilityClass(DictWrapper):
|
|
25738
|
+
"""Info about the visibility of this template"""
|
|
25739
|
+
|
|
25740
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility")
|
|
25741
|
+
def __init__(self,
|
|
25742
|
+
scope: Union[str, "PageTemplateScopeClass"],
|
|
25743
|
+
):
|
|
25744
|
+
super().__init__()
|
|
25745
|
+
|
|
25746
|
+
self.scope = scope
|
|
25747
|
+
|
|
25748
|
+
def _restore_defaults(self) -> None:
|
|
25749
|
+
self.scope = PageTemplateScopeClass.PERSONAL
|
|
25750
|
+
|
|
25751
|
+
|
|
25752
|
+
@property
|
|
25753
|
+
def scope(self) -> Union[str, "PageTemplateScopeClass"]:
|
|
25754
|
+
"""The scope of this template and who can use/see it"""
|
|
25755
|
+
return self._inner_dict.get('scope') # type: ignore
|
|
25756
|
+
|
|
25757
|
+
@scope.setter
|
|
25758
|
+
def scope(self, value: Union[str, "PageTemplateScopeClass"]) -> None:
|
|
25759
|
+
self._inner_dict['scope'] = value
|
|
25760
|
+
|
|
25761
|
+
|
|
25762
|
+
class PageTemplateScopeClass(object):
|
|
25763
|
+
# No docs available.
|
|
25764
|
+
|
|
25765
|
+
PERSONAL = "PERSONAL"
|
|
25766
|
+
"""This template is used for individual use only"""
|
|
25767
|
+
|
|
25768
|
+
GLOBAL = "GLOBAL"
|
|
25769
|
+
"""This template is used across users"""
|
|
25770
|
+
|
|
25771
|
+
|
|
25772
|
+
|
|
25773
|
+
class PageTemplateSurfaceTypeClass(object):
|
|
25774
|
+
# No docs available.
|
|
25775
|
+
|
|
25776
|
+
HOME_PAGE = "HOME_PAGE"
|
|
25777
|
+
"""This template applies to what to display on the home page for users."""
|
|
25778
|
+
|
|
25779
|
+
|
|
25780
|
+
|
|
25120
25781
|
class TestDefinitionClass(DictWrapper):
|
|
25121
25782
|
# No docs available.
|
|
25122
25783
|
|
|
@@ -26309,6 +26970,7 @@ __SCHEMA_TYPES = {
|
|
|
26309
26970
|
'com.linkedin.pegasus2avro.identity.CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
|
|
26310
26971
|
'com.linkedin.pegasus2avro.identity.CorpUserCredentials': CorpUserCredentialsClass,
|
|
26311
26972
|
'com.linkedin.pegasus2avro.identity.CorpUserEditableInfo': CorpUserEditableInfoClass,
|
|
26973
|
+
'com.linkedin.pegasus2avro.identity.CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
|
|
26312
26974
|
'com.linkedin.pegasus2avro.identity.CorpUserInfo': CorpUserInfoClass,
|
|
26313
26975
|
'com.linkedin.pegasus2avro.identity.CorpUserSettings': CorpUserSettingsClass,
|
|
26314
26976
|
'com.linkedin.pegasus2avro.identity.CorpUserStatus': CorpUserStatusClass,
|
|
@@ -26330,6 +26992,7 @@ __SCHEMA_TYPES = {
|
|
|
26330
26992
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSchedule': DataHubIngestionSourceScheduleClass,
|
|
26331
26993
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSource': DataHubIngestionSourceSourceClass,
|
|
26332
26994
|
'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
|
|
26995
|
+
'com.linkedin.pegasus2avro.logical.LogicalParent': LogicalParentClass,
|
|
26333
26996
|
'com.linkedin.pegasus2avro.metadata.key.AssertionKey': AssertionKeyClass,
|
|
26334
26997
|
'com.linkedin.pegasus2avro.metadata.key.ChartKey': ChartKeyClass,
|
|
26335
26998
|
'com.linkedin.pegasus2avro.metadata.key.ContainerKey': ContainerKeyClass,
|
|
@@ -26343,6 +27006,8 @@ __SCHEMA_TYPES = {
|
|
|
26343
27006
|
'com.linkedin.pegasus2avro.metadata.key.DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
26344
27007
|
'com.linkedin.pegasus2avro.metadata.key.DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
26345
27008
|
'com.linkedin.pegasus2avro.metadata.key.DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
27009
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubPageModuleKey': DataHubPageModuleKeyClass,
|
|
27010
|
+
'com.linkedin.pegasus2avro.metadata.key.DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
|
|
26346
27011
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
26347
27012
|
'com.linkedin.pegasus2avro.metadata.key.DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
26348
27013
|
'com.linkedin.pegasus2avro.metadata.key.DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -26437,6 +27102,13 @@ __SCHEMA_TYPES = {
|
|
|
26437
27102
|
'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrl': SourceCodeUrlClass,
|
|
26438
27103
|
'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrlType': SourceCodeUrlTypeClass,
|
|
26439
27104
|
'com.linkedin.pegasus2avro.ml.metadata.TrainingData': TrainingDataClass,
|
|
27105
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleParams': DataHubPageModuleParamsClass,
|
|
27106
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
|
|
27107
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleType': DataHubPageModuleTypeClass,
|
|
27108
|
+
'com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
|
|
27109
|
+
'com.linkedin.pegasus2avro.module.LinkModuleParams': LinkModuleParamsClass,
|
|
27110
|
+
'com.linkedin.pegasus2avro.module.PageModuleScope': PageModuleScopeClass,
|
|
27111
|
+
'com.linkedin.pegasus2avro.module.RichTextModuleParams': RichTextModuleParamsClass,
|
|
26440
27112
|
'com.linkedin.pegasus2avro.mxe.GenericAspect': GenericAspectClass,
|
|
26441
27113
|
'com.linkedin.pegasus2avro.mxe.GenericPayload': GenericPayloadClass,
|
|
26442
27114
|
'com.linkedin.pegasus2avro.mxe.MetadataChangeEvent': MetadataChangeEventClass,
|
|
@@ -26520,7 +27192,9 @@ __SCHEMA_TYPES = {
|
|
|
26520
27192
|
'com.linkedin.pegasus2avro.schemafield.SchemaFieldAliases': SchemaFieldAliasesClass,
|
|
26521
27193
|
'com.linkedin.pegasus2avro.schemafield.SchemaFieldInfo': SchemaFieldInfoClass,
|
|
26522
27194
|
'com.linkedin.pegasus2avro.secret.DataHubSecretValue': DataHubSecretValueClass,
|
|
27195
|
+
'com.linkedin.pegasus2avro.settings.global.ApplicationsSettings': ApplicationsSettingsClass,
|
|
26523
27196
|
'com.linkedin.pegasus2avro.settings.global.DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
27197
|
+
'com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings': GlobalHomePageSettingsClass,
|
|
26524
27198
|
'com.linkedin.pegasus2avro.settings.global.GlobalSettingsInfo': GlobalSettingsInfoClass,
|
|
26525
27199
|
'com.linkedin.pegasus2avro.settings.global.GlobalViewsSettings': GlobalViewsSettingsClass,
|
|
26526
27200
|
'com.linkedin.pegasus2avro.settings.global.OidcSettings': OidcSettingsClass,
|
|
@@ -26535,6 +27209,12 @@ __SCHEMA_TYPES = {
|
|
|
26535
27209
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
26536
27210
|
'com.linkedin.pegasus2avro.tag.TagProperties': TagPropertiesClass,
|
|
26537
27211
|
'com.linkedin.pegasus2avro.telemetry.TelemetryClientId': TelemetryClientIdClass,
|
|
27212
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
|
|
27213
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateRow': DataHubPageTemplateRowClass,
|
|
27214
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
|
|
27215
|
+
'com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
|
|
27216
|
+
'com.linkedin.pegasus2avro.template.PageTemplateScope': PageTemplateScopeClass,
|
|
27217
|
+
'com.linkedin.pegasus2avro.template.PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
|
|
26538
27218
|
'com.linkedin.pegasus2avro.test.TestDefinition': TestDefinitionClass,
|
|
26539
27219
|
'com.linkedin.pegasus2avro.test.TestDefinitionType': TestDefinitionTypeClass,
|
|
26540
27220
|
'com.linkedin.pegasus2avro.test.TestInfo': TestInfoClass,
|
|
@@ -26798,6 +27478,7 @@ __SCHEMA_TYPES = {
|
|
|
26798
27478
|
'CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
|
|
26799
27479
|
'CorpUserCredentials': CorpUserCredentialsClass,
|
|
26800
27480
|
'CorpUserEditableInfo': CorpUserEditableInfoClass,
|
|
27481
|
+
'CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
|
|
26801
27482
|
'CorpUserInfo': CorpUserInfoClass,
|
|
26802
27483
|
'CorpUserSettings': CorpUserSettingsClass,
|
|
26803
27484
|
'CorpUserStatus': CorpUserStatusClass,
|
|
@@ -26819,6 +27500,7 @@ __SCHEMA_TYPES = {
|
|
|
26819
27500
|
'DataHubIngestionSourceSchedule': DataHubIngestionSourceScheduleClass,
|
|
26820
27501
|
'DataHubIngestionSourceSource': DataHubIngestionSourceSourceClass,
|
|
26821
27502
|
'DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
|
|
27503
|
+
'LogicalParent': LogicalParentClass,
|
|
26822
27504
|
'AssertionKey': AssertionKeyClass,
|
|
26823
27505
|
'ChartKey': ChartKeyClass,
|
|
26824
27506
|
'ContainerKey': ContainerKeyClass,
|
|
@@ -26832,6 +27514,8 @@ __SCHEMA_TYPES = {
|
|
|
26832
27514
|
'DataHubConnectionKey': DataHubConnectionKeyClass,
|
|
26833
27515
|
'DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
|
|
26834
27516
|
'DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
|
|
27517
|
+
'DataHubPageModuleKey': DataHubPageModuleKeyClass,
|
|
27518
|
+
'DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
|
|
26835
27519
|
'DataHubPersonaKey': DataHubPersonaKeyClass,
|
|
26836
27520
|
'DataHubPolicyKey': DataHubPolicyKeyClass,
|
|
26837
27521
|
'DataHubRetentionKey': DataHubRetentionKeyClass,
|
|
@@ -26926,6 +27610,13 @@ __SCHEMA_TYPES = {
|
|
|
26926
27610
|
'SourceCodeUrl': SourceCodeUrlClass,
|
|
26927
27611
|
'SourceCodeUrlType': SourceCodeUrlTypeClass,
|
|
26928
27612
|
'TrainingData': TrainingDataClass,
|
|
27613
|
+
'DataHubPageModuleParams': DataHubPageModuleParamsClass,
|
|
27614
|
+
'DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
|
|
27615
|
+
'DataHubPageModuleType': DataHubPageModuleTypeClass,
|
|
27616
|
+
'DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
|
|
27617
|
+
'LinkModuleParams': LinkModuleParamsClass,
|
|
27618
|
+
'PageModuleScope': PageModuleScopeClass,
|
|
27619
|
+
'RichTextModuleParams': RichTextModuleParamsClass,
|
|
26929
27620
|
'GenericAspect': GenericAspectClass,
|
|
26930
27621
|
'GenericPayload': GenericPayloadClass,
|
|
26931
27622
|
'MetadataChangeEvent': MetadataChangeEventClass,
|
|
@@ -27009,7 +27700,9 @@ __SCHEMA_TYPES = {
|
|
|
27009
27700
|
'SchemaFieldAliases': SchemaFieldAliasesClass,
|
|
27010
27701
|
'SchemaFieldInfo': SchemaFieldInfoClass,
|
|
27011
27702
|
'DataHubSecretValue': DataHubSecretValueClass,
|
|
27703
|
+
'ApplicationsSettings': ApplicationsSettingsClass,
|
|
27012
27704
|
'DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
|
|
27705
|
+
'GlobalHomePageSettings': GlobalHomePageSettingsClass,
|
|
27013
27706
|
'GlobalSettingsInfo': GlobalSettingsInfoClass,
|
|
27014
27707
|
'GlobalViewsSettings': GlobalViewsSettingsClass,
|
|
27015
27708
|
'OidcSettings': OidcSettingsClass,
|
|
@@ -27024,6 +27717,12 @@ __SCHEMA_TYPES = {
|
|
|
27024
27717
|
'StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
27025
27718
|
'TagProperties': TagPropertiesClass,
|
|
27026
27719
|
'TelemetryClientId': TelemetryClientIdClass,
|
|
27720
|
+
'DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
|
|
27721
|
+
'DataHubPageTemplateRow': DataHubPageTemplateRowClass,
|
|
27722
|
+
'DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
|
|
27723
|
+
'DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
|
|
27724
|
+
'PageTemplateScope': PageTemplateScopeClass,
|
|
27725
|
+
'PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
|
|
27027
27726
|
'TestDefinition': TestDefinitionClass,
|
|
27028
27727
|
'TestDefinitionType': TestDefinitionTypeClass,
|
|
27029
27728
|
'TestInfo': TestInfoClass,
|
|
@@ -27056,223 +27755,228 @@ avrojson.set_global_json_converter(_json_converter)
|
|
|
27056
27755
|
|
|
27057
27756
|
|
|
27058
27757
|
ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
27758
|
+
DataTypeKeyClass,
|
|
27759
|
+
DataTypeInfoClass,
|
|
27760
|
+
DataHubUpgradeRequestClass,
|
|
27761
|
+
DataHubUpgradeResultClass,
|
|
27762
|
+
DataPlatformInfoClass,
|
|
27763
|
+
SlackUserInfoClass,
|
|
27764
|
+
DataHubPolicyInfoClass,
|
|
27765
|
+
DataHubRoleInfoClass,
|
|
27766
|
+
DataHubPageTemplatePropertiesClass,
|
|
27767
|
+
DataProductKeyClass,
|
|
27768
|
+
DataProductPropertiesClass,
|
|
27769
|
+
DeprecationClass,
|
|
27770
|
+
BrowsePathsClass,
|
|
27771
|
+
AccessClass,
|
|
27772
|
+
InputFieldsClass,
|
|
27773
|
+
IncidentsSummaryClass,
|
|
27774
|
+
DocumentationClass,
|
|
27775
|
+
OperationClass,
|
|
27776
|
+
VersionPropertiesClass,
|
|
27777
|
+
OwnershipClass,
|
|
27778
|
+
SiblingsClass,
|
|
27779
|
+
FormsClass,
|
|
27780
|
+
BrowsePathsV2Class,
|
|
27781
|
+
DisplayPropertiesClass,
|
|
27782
|
+
EmbedClass,
|
|
27783
|
+
GlossaryTermsClass,
|
|
27784
|
+
SubTypesClass,
|
|
27785
|
+
DataTransformLogicClass,
|
|
27786
|
+
InstitutionalMemoryClass,
|
|
27787
|
+
GlobalTagsClass,
|
|
27788
|
+
CostClass,
|
|
27789
|
+
StatusClass,
|
|
27790
|
+
DataPlatformInstanceClass,
|
|
27791
|
+
OriginClass,
|
|
27792
|
+
BusinessAttributeKeyClass,
|
|
27793
|
+
BusinessAttributeInfoClass,
|
|
27794
|
+
BusinessAttributesClass,
|
|
27795
|
+
DataFlowInfoClass,
|
|
27796
|
+
EditableDataFlowPropertiesClass,
|
|
27797
|
+
VersionInfoClass,
|
|
27798
|
+
DataJobInputOutputClass,
|
|
27799
|
+
EditableDataJobPropertiesClass,
|
|
27800
|
+
DataJobInfoClass,
|
|
27801
|
+
DatahubIngestionRunSummaryClass,
|
|
27802
|
+
DatahubIngestionCheckpointClass,
|
|
27803
|
+
TestInfoClass,
|
|
27804
|
+
TestResultsClass,
|
|
27805
|
+
DataHubConnectionDetailsClass,
|
|
27806
|
+
GroupMembershipClass,
|
|
27807
|
+
CorpUserStatusClass,
|
|
27808
|
+
CorpUserInfoClass,
|
|
27059
27809
|
CorpUserEditableInfoClass,
|
|
27060
27810
|
CorpUserCredentialsClass,
|
|
27811
|
+
InviteTokenClass,
|
|
27061
27812
|
NativeGroupMembershipClass,
|
|
27062
27813
|
RoleMembershipClass,
|
|
27063
|
-
CorpGroupEditableInfoClass,
|
|
27064
|
-
CorpUserInfoClass,
|
|
27065
|
-
CorpUserStatusClass,
|
|
27066
27814
|
CorpUserSettingsClass,
|
|
27067
|
-
|
|
27068
|
-
InviteTokenClass,
|
|
27815
|
+
CorpGroupEditableInfoClass,
|
|
27069
27816
|
CorpGroupInfoClass,
|
|
27817
|
+
DataHubViewInfoClass,
|
|
27070
27818
|
TagPropertiesClass,
|
|
27071
|
-
|
|
27072
|
-
|
|
27073
|
-
|
|
27074
|
-
DataTypeKeyClass,
|
|
27075
|
-
MLFeaturePropertiesClass,
|
|
27076
|
-
MetricsClass,
|
|
27077
|
-
MLModelPropertiesClass,
|
|
27078
|
-
EditableMLFeatureTablePropertiesClass,
|
|
27079
|
-
EditableMLFeaturePropertiesClass,
|
|
27080
|
-
MLMetricClass,
|
|
27081
|
-
MLHyperParamClass,
|
|
27082
|
-
EditableMLPrimaryKeyPropertiesClass,
|
|
27083
|
-
MLTrainingRunPropertiesClass,
|
|
27084
|
-
MLModelGroupPropertiesClass,
|
|
27085
|
-
IntendedUseClass,
|
|
27086
|
-
MLModelFactorPromptsClass,
|
|
27087
|
-
EditableMLModelGroupPropertiesClass,
|
|
27088
|
-
MLModelDeploymentPropertiesClass,
|
|
27089
|
-
MLFeatureTablePropertiesClass,
|
|
27090
|
-
SourceCodeClass,
|
|
27091
|
-
EvaluationDataClass,
|
|
27092
|
-
TrainingDataClass,
|
|
27093
|
-
CaveatsAndRecommendationsClass,
|
|
27094
|
-
EditableMLModelPropertiesClass,
|
|
27095
|
-
MLPrimaryKeyPropertiesClass,
|
|
27096
|
-
QuantitativeAnalysesClass,
|
|
27097
|
-
EthicalConsiderationsClass,
|
|
27098
|
-
PlatformResourceKeyClass,
|
|
27099
|
-
PlatformResourceInfoClass,
|
|
27100
|
-
DataHubUpgradeRequestClass,
|
|
27101
|
-
DataHubUpgradeResultClass,
|
|
27102
|
-
OwnershipTypeInfoClass,
|
|
27103
|
-
EntityTypeKeyClass,
|
|
27104
|
-
EntityTypeInfoClass,
|
|
27105
|
-
OperationClass,
|
|
27106
|
-
OriginClass,
|
|
27107
|
-
OwnershipClass,
|
|
27108
|
-
DocumentationClass,
|
|
27109
|
-
DataPlatformInstanceClass,
|
|
27110
|
-
EmbedClass,
|
|
27111
|
-
BrowsePathsV2Class,
|
|
27112
|
-
DataTransformLogicClass,
|
|
27113
|
-
SubTypesClass,
|
|
27114
|
-
IncidentsSummaryClass,
|
|
27115
|
-
InputFieldsClass,
|
|
27116
|
-
DeprecationClass,
|
|
27117
|
-
BrowsePathsClass,
|
|
27118
|
-
GlossaryTermsClass,
|
|
27119
|
-
CostClass,
|
|
27120
|
-
SiblingsClass,
|
|
27121
|
-
FormsClass,
|
|
27122
|
-
InstitutionalMemoryClass,
|
|
27123
|
-
GlobalTagsClass,
|
|
27124
|
-
AccessClass,
|
|
27125
|
-
DisplayPropertiesClass,
|
|
27126
|
-
StatusClass,
|
|
27127
|
-
VersionPropertiesClass,
|
|
27128
|
-
ERModelRelationshipPropertiesClass,
|
|
27819
|
+
AssertionActionsClass,
|
|
27820
|
+
AssertionRunEventClass,
|
|
27821
|
+
AssertionInfoClass,
|
|
27129
27822
|
EditableERModelRelationshipPropertiesClass,
|
|
27130
|
-
|
|
27823
|
+
ERModelRelationshipPropertiesClass,
|
|
27824
|
+
EditableSchemaMetadataClass,
|
|
27825
|
+
SchemaMetadataClass,
|
|
27826
|
+
LogicalParentClass,
|
|
27827
|
+
ChartInfoClass,
|
|
27828
|
+
ChartUsageStatisticsClass,
|
|
27829
|
+
ChartQueryClass,
|
|
27830
|
+
EditableChartPropertiesClass,
|
|
27831
|
+
DataHubAccessTokenInfoClass,
|
|
27832
|
+
GlossaryTermInfoClass,
|
|
27833
|
+
GlossaryRelatedTermsClass,
|
|
27834
|
+
GlossaryNodeInfoClass,
|
|
27835
|
+
DomainPropertiesClass,
|
|
27836
|
+
DomainsClass,
|
|
27131
27837
|
DataProcessInstanceRunEventClass,
|
|
27132
27838
|
DataProcessInstanceRelationshipsClass,
|
|
27133
27839
|
DataProcessInstanceOutputClass,
|
|
27134
|
-
DataProcessInstancePropertiesClass,
|
|
27135
|
-
DataProcessInstanceInputClass,
|
|
27136
27840
|
DataProcessInfoClass,
|
|
27137
|
-
|
|
27138
|
-
|
|
27139
|
-
|
|
27140
|
-
|
|
27141
|
-
|
|
27142
|
-
DatasetUpstreamLineageClass,
|
|
27143
|
-
DatasetUsageStatisticsClass,
|
|
27144
|
-
DatasetProfileClass,
|
|
27145
|
-
PartitionsSummaryClass,
|
|
27146
|
-
DatasetDeprecationClass,
|
|
27147
|
-
DatasetPropertiesClass,
|
|
27148
|
-
ViewPropertiesClass,
|
|
27149
|
-
ExecutionRequestSignalClass,
|
|
27150
|
-
ExecutionRequestInputClass,
|
|
27841
|
+
DataProcessInstanceInputClass,
|
|
27842
|
+
DataProcessInstancePropertiesClass,
|
|
27843
|
+
QueryUsageStatisticsClass,
|
|
27844
|
+
QuerySubjectsClass,
|
|
27845
|
+
QueryPropertiesClass,
|
|
27151
27846
|
ExecutionRequestResultClass,
|
|
27152
|
-
|
|
27153
|
-
|
|
27154
|
-
|
|
27155
|
-
|
|
27156
|
-
|
|
27157
|
-
StructuredPropertySettingsClass,
|
|
27158
|
-
StructuredPropertyKeyClass,
|
|
27159
|
-
IncidentSourceClass,
|
|
27160
|
-
IncidentInfoClass,
|
|
27161
|
-
VersionSetPropertiesClass,
|
|
27162
|
-
TelemetryClientIdClass,
|
|
27163
|
-
DataJobInputOutputClass,
|
|
27164
|
-
DataJobInfoClass,
|
|
27165
|
-
VersionInfoClass,
|
|
27166
|
-
DataFlowInfoClass,
|
|
27167
|
-
EditableDataJobPropertiesClass,
|
|
27168
|
-
EditableDataFlowPropertiesClass,
|
|
27169
|
-
DatahubIngestionRunSummaryClass,
|
|
27170
|
-
DatahubIngestionCheckpointClass,
|
|
27171
|
-
DataContractStatusClass,
|
|
27172
|
-
DataContractPropertiesClass,
|
|
27173
|
-
EditableContainerPropertiesClass,
|
|
27174
|
-
ContainerPropertiesClass,
|
|
27175
|
-
ContainerClass,
|
|
27176
|
-
BusinessAttributesClass,
|
|
27177
|
-
BusinessAttributeInfoClass,
|
|
27178
|
-
BusinessAttributeKeyClass,
|
|
27179
|
-
FormInfoClass,
|
|
27180
|
-
DynamicFormAssignmentClass,
|
|
27181
|
-
TestInfoClass,
|
|
27182
|
-
TestResultsClass,
|
|
27183
|
-
PostInfoClass,
|
|
27184
|
-
ApplicationKeyClass,
|
|
27185
|
-
ApplicationsClass,
|
|
27186
|
-
ApplicationPropertiesClass,
|
|
27187
|
-
DataHubSecretValueClass,
|
|
27188
|
-
MLFeatureKeyClass,
|
|
27189
|
-
DataContractKeyClass,
|
|
27190
|
-
DataHubConnectionKeyClass,
|
|
27191
|
-
FormKeyClass,
|
|
27192
|
-
DataHubStepStateKeyClass,
|
|
27193
|
-
SchemaFieldKeyClass,
|
|
27194
|
-
DataJobKeyClass,
|
|
27195
|
-
GlossaryNodeKeyClass,
|
|
27196
|
-
NotebookKeyClass,
|
|
27197
|
-
MLModelDeploymentKeyClass,
|
|
27198
|
-
PostKeyClass,
|
|
27199
|
-
DataHubAccessTokenKeyClass,
|
|
27847
|
+
ExecutionRequestInputClass,
|
|
27848
|
+
ExecutionRequestSignalClass,
|
|
27849
|
+
DataHubStepStatePropertiesClass,
|
|
27850
|
+
SystemMetadataClass,
|
|
27851
|
+
DataHubUpgradeKeyClass,
|
|
27200
27852
|
GlobalSettingsKeyClass,
|
|
27201
|
-
|
|
27853
|
+
MLModelDeploymentKeyClass,
|
|
27854
|
+
RoleKeyClass,
|
|
27855
|
+
DataPlatformInstanceKeyClass,
|
|
27856
|
+
CorpGroupKeyClass,
|
|
27857
|
+
NotebookKeyClass,
|
|
27858
|
+
DataPlatformKeyClass,
|
|
27859
|
+
MLFeatureKeyClass,
|
|
27860
|
+
DataHubActionKeyClass,
|
|
27861
|
+
MLFeatureTableKeyClass,
|
|
27862
|
+
DataHubRetentionKeyClass,
|
|
27863
|
+
MLModelKeyClass,
|
|
27202
27864
|
ERModelRelationshipKeyClass,
|
|
27203
|
-
MLPrimaryKeyKeyClass,
|
|
27204
27865
|
GlossaryTermKeyClass,
|
|
27205
|
-
|
|
27206
|
-
|
|
27207
|
-
IncidentKeyClass,
|
|
27208
|
-
DataProcessKeyClass,
|
|
27866
|
+
DashboardKeyClass,
|
|
27867
|
+
VersionSetKeyClass,
|
|
27209
27868
|
ContainerKeyClass,
|
|
27869
|
+
DataHubStepStateKeyClass,
|
|
27870
|
+
GlossaryNodeKeyClass,
|
|
27871
|
+
DataJobKeyClass,
|
|
27210
27872
|
DataHubViewKeyClass,
|
|
27211
|
-
|
|
27212
|
-
|
|
27213
|
-
|
|
27873
|
+
DataHubPageTemplateKeyClass,
|
|
27874
|
+
DomainKeyClass,
|
|
27875
|
+
IncidentKeyClass,
|
|
27876
|
+
DatasetKeyClass,
|
|
27214
27877
|
DataHubRoleKeyClass,
|
|
27215
|
-
|
|
27216
|
-
DataFlowKeyClass,
|
|
27217
|
-
TestKeyClass,
|
|
27218
|
-
DataHubIngestionSourceKeyClass,
|
|
27878
|
+
CorpUserKeyClass,
|
|
27219
27879
|
AssertionKeyClass,
|
|
27880
|
+
ChartKeyClass,
|
|
27881
|
+
SchemaFieldKeyClass,
|
|
27882
|
+
OwnershipTypeKeyClass,
|
|
27883
|
+
MLModelGroupKeyClass,
|
|
27884
|
+
DataHubConnectionKeyClass,
|
|
27885
|
+
TestKeyClass,
|
|
27886
|
+
FormKeyClass,
|
|
27887
|
+
DataHubPolicyKeyClass,
|
|
27888
|
+
DataHubPersonaKeyClass,
|
|
27889
|
+
MLPrimaryKeyKeyClass,
|
|
27890
|
+
DataProcessInstanceKeyClass,
|
|
27891
|
+
PostKeyClass,
|
|
27892
|
+
DataProcessKeyClass,
|
|
27220
27893
|
TelemetryKeyClass,
|
|
27221
|
-
|
|
27894
|
+
QueryKeyClass,
|
|
27895
|
+
TagKeyClass,
|
|
27896
|
+
DataHubPageModuleKeyClass,
|
|
27222
27897
|
DataHubSecretKeyClass,
|
|
27223
|
-
DataHubOpenAPISchemaKeyClass,
|
|
27224
|
-
DatasetKeyClass,
|
|
27225
|
-
DataHubPersonaKeyClass,
|
|
27226
27898
|
ExecutionRequestKeyClass,
|
|
27227
|
-
DomainKeyClass,
|
|
27228
|
-
CorpUserKeyClass,
|
|
27229
|
-
DataProcessInstanceKeyClass,
|
|
27230
|
-
DataHubUpgradeKeyClass,
|
|
27231
|
-
ChartKeyClass,
|
|
27232
|
-
DataHubPolicyKeyClass,
|
|
27233
|
-
MLFeatureTableKeyClass,
|
|
27234
|
-
DataPlatformKeyClass,
|
|
27235
27899
|
InviteTokenKeyClass,
|
|
27236
|
-
|
|
27237
|
-
|
|
27238
|
-
|
|
27239
|
-
|
|
27240
|
-
|
|
27241
|
-
|
|
27242
|
-
|
|
27243
|
-
|
|
27244
|
-
|
|
27245
|
-
|
|
27246
|
-
|
|
27247
|
-
|
|
27248
|
-
|
|
27249
|
-
|
|
27250
|
-
|
|
27251
|
-
|
|
27252
|
-
|
|
27253
|
-
|
|
27254
|
-
|
|
27255
|
-
|
|
27900
|
+
DataContractKeyClass,
|
|
27901
|
+
DataHubOpenAPISchemaKeyClass,
|
|
27902
|
+
DataHubAccessTokenKeyClass,
|
|
27903
|
+
DataFlowKeyClass,
|
|
27904
|
+
DataHubIngestionSourceKeyClass,
|
|
27905
|
+
VersionSetPropertiesClass,
|
|
27906
|
+
OwnershipTypeInfoClass,
|
|
27907
|
+
PostInfoClass,
|
|
27908
|
+
RolePropertiesClass,
|
|
27909
|
+
ActorsClass,
|
|
27910
|
+
StructuredPropertySettingsClass,
|
|
27911
|
+
StructuredPropertiesClass,
|
|
27912
|
+
StructuredPropertyDefinitionClass,
|
|
27913
|
+
StructuredPropertyKeyClass,
|
|
27914
|
+
DataContractStatusClass,
|
|
27915
|
+
DataContractPropertiesClass,
|
|
27916
|
+
DataHubIngestionSourceInfoClass,
|
|
27917
|
+
TelemetryClientIdClass,
|
|
27918
|
+
DataHubPageModulePropertiesClass,
|
|
27919
|
+
GlobalSettingsInfoClass,
|
|
27920
|
+
DataHubPersonaInfoClass,
|
|
27921
|
+
EditableContainerPropertiesClass,
|
|
27922
|
+
ContainerClass,
|
|
27923
|
+
ContainerPropertiesClass,
|
|
27924
|
+
ApplicationPropertiesClass,
|
|
27925
|
+
ApplicationsClass,
|
|
27926
|
+
ApplicationKeyClass,
|
|
27927
|
+
IncidentSourceClass,
|
|
27928
|
+
IncidentInfoClass,
|
|
27929
|
+
DataHubSecretValueClass,
|
|
27930
|
+
EditableNotebookPropertiesClass,
|
|
27256
27931
|
NotebookContentClass,
|
|
27257
27932
|
NotebookInfoClass,
|
|
27258
|
-
|
|
27259
|
-
|
|
27260
|
-
|
|
27261
|
-
|
|
27262
|
-
|
|
27263
|
-
|
|
27933
|
+
DashboardUsageStatisticsClass,
|
|
27934
|
+
DashboardInfoClass,
|
|
27935
|
+
EditableDashboardPropertiesClass,
|
|
27936
|
+
UpstreamLineageClass,
|
|
27937
|
+
DatasetUpstreamLineageClass,
|
|
27938
|
+
DatasetDeprecationClass,
|
|
27939
|
+
DatasetPropertiesClass,
|
|
27940
|
+
PartitionsSummaryClass,
|
|
27941
|
+
DatasetProfileClass,
|
|
27942
|
+
DatasetUsageStatisticsClass,
|
|
27943
|
+
IcebergCatalogInfoClass,
|
|
27944
|
+
ViewPropertiesClass,
|
|
27945
|
+
EditableDatasetPropertiesClass,
|
|
27946
|
+
EntityTypeInfoClass,
|
|
27947
|
+
EntityTypeKeyClass,
|
|
27948
|
+
SchemaFieldAliasesClass,
|
|
27949
|
+
SchemaFieldInfoClass,
|
|
27950
|
+
MLMetricClass,
|
|
27951
|
+
EditableMLModelPropertiesClass,
|
|
27952
|
+
MLModelFactorPromptsClass,
|
|
27953
|
+
MLHyperParamClass,
|
|
27954
|
+
MetricsClass,
|
|
27955
|
+
SourceCodeClass,
|
|
27956
|
+
MLTrainingRunPropertiesClass,
|
|
27957
|
+
EditableMLModelGroupPropertiesClass,
|
|
27958
|
+
MLModelDeploymentPropertiesClass,
|
|
27959
|
+
MLFeatureTablePropertiesClass,
|
|
27960
|
+
EthicalConsiderationsClass,
|
|
27961
|
+
MLFeaturePropertiesClass,
|
|
27962
|
+
QuantitativeAnalysesClass,
|
|
27963
|
+
MLModelPropertiesClass,
|
|
27964
|
+
CaveatsAndRecommendationsClass,
|
|
27965
|
+
EditableMLPrimaryKeyPropertiesClass,
|
|
27966
|
+
IntendedUseClass,
|
|
27967
|
+
MLPrimaryKeyPropertiesClass,
|
|
27968
|
+
TrainingDataClass,
|
|
27969
|
+
EditableMLFeaturePropertiesClass,
|
|
27970
|
+
MLModelGroupPropertiesClass,
|
|
27971
|
+
EvaluationDataClass,
|
|
27972
|
+
EditableMLFeatureTablePropertiesClass,
|
|
27973
|
+
PlatformResourceKeyClass,
|
|
27974
|
+
PlatformResourceInfoClass,
|
|
27975
|
+
FormInfoClass,
|
|
27976
|
+
DynamicFormAssignmentClass,
|
|
27264
27977
|
DataPlatformInstancePropertiesClass,
|
|
27265
|
-
|
|
27266
|
-
|
|
27267
|
-
ChartQueryClass,
|
|
27268
|
-
ChartUsageStatisticsClass,
|
|
27269
|
-
DataHubIngestionSourceInfoClass,
|
|
27270
|
-
AssertionRunEventClass,
|
|
27271
|
-
AssertionActionsClass,
|
|
27272
|
-
AssertionInfoClass,
|
|
27273
|
-
DataHubRoleInfoClass,
|
|
27274
|
-
DataHubPolicyInfoClass,
|
|
27275
|
-
DataHubConnectionDetailsClass
|
|
27978
|
+
IcebergWarehouseInfoClass,
|
|
27979
|
+
DataHubRetentionConfigClass
|
|
27276
27980
|
]
|
|
27277
27981
|
|
|
27278
27982
|
ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
@@ -27280,412 +27984,425 @@ ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
|
|
|
27280
27984
|
for aspect in ASPECT_CLASSES
|
|
27281
27985
|
}
|
|
27282
27986
|
|
|
27283
|
-
from typing import Literal
|
|
27987
|
+
from typing import Literal, Set
|
|
27284
27988
|
from typing_extensions import TypedDict
|
|
27285
27989
|
|
|
27286
27990
|
class AspectBag(TypedDict, total=False):
|
|
27287
|
-
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
27288
|
-
corpUserCredentials: CorpUserCredentialsClass
|
|
27289
|
-
nativeGroupMembership: NativeGroupMembershipClass
|
|
27290
|
-
roleMembership: RoleMembershipClass
|
|
27291
|
-
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
27292
|
-
corpUserInfo: CorpUserInfoClass
|
|
27293
|
-
corpUserStatus: CorpUserStatusClass
|
|
27294
|
-
corpUserSettings: CorpUserSettingsClass
|
|
27295
|
-
groupMembership: GroupMembershipClass
|
|
27296
|
-
inviteToken: InviteTokenClass
|
|
27297
|
-
corpGroupInfo: CorpGroupInfoClass
|
|
27298
|
-
tagProperties: TagPropertiesClass
|
|
27299
|
-
dataProductKey: DataProductKeyClass
|
|
27300
|
-
dataProductProperties: DataProductPropertiesClass
|
|
27301
|
-
dataTypeInfo: DataTypeInfoClass
|
|
27302
27991
|
dataTypeKey: DataTypeKeyClass
|
|
27303
|
-
|
|
27304
|
-
mlModelMetrics: MetricsClass
|
|
27305
|
-
mlModelProperties: MLModelPropertiesClass
|
|
27306
|
-
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
27307
|
-
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
27308
|
-
mlMetric: MLMetricClass
|
|
27309
|
-
mlHyperParam: MLHyperParamClass
|
|
27310
|
-
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
27311
|
-
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
27312
|
-
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
27313
|
-
intendedUse: IntendedUseClass
|
|
27314
|
-
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
27315
|
-
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
27316
|
-
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
27317
|
-
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
27318
|
-
sourceCode: SourceCodeClass
|
|
27319
|
-
mlModelEvaluationData: EvaluationDataClass
|
|
27320
|
-
mlModelTrainingData: TrainingDataClass
|
|
27321
|
-
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
27322
|
-
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
27323
|
-
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
27324
|
-
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
27325
|
-
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
27326
|
-
platformResourceKey: PlatformResourceKeyClass
|
|
27327
|
-
platformResourceInfo: PlatformResourceInfoClass
|
|
27992
|
+
dataTypeInfo: DataTypeInfoClass
|
|
27328
27993
|
dataHubUpgradeRequest: DataHubUpgradeRequestClass
|
|
27329
27994
|
dataHubUpgradeResult: DataHubUpgradeResultClass
|
|
27330
|
-
|
|
27331
|
-
|
|
27332
|
-
|
|
27333
|
-
|
|
27334
|
-
|
|
27335
|
-
|
|
27336
|
-
|
|
27337
|
-
dataPlatformInstance: DataPlatformInstanceClass
|
|
27338
|
-
embed: EmbedClass
|
|
27339
|
-
browsePathsV2: BrowsePathsV2Class
|
|
27340
|
-
dataTransformLogic: DataTransformLogicClass
|
|
27341
|
-
subTypes: SubTypesClass
|
|
27342
|
-
incidentsSummary: IncidentsSummaryClass
|
|
27343
|
-
inputFields: InputFieldsClass
|
|
27995
|
+
dataPlatformInfo: DataPlatformInfoClass
|
|
27996
|
+
slackUserInfo: SlackUserInfoClass
|
|
27997
|
+
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
27998
|
+
dataHubRoleInfo: DataHubRoleInfoClass
|
|
27999
|
+
dataHubPageTemplateProperties: DataHubPageTemplatePropertiesClass
|
|
28000
|
+
dataProductKey: DataProductKeyClass
|
|
28001
|
+
dataProductProperties: DataProductPropertiesClass
|
|
27344
28002
|
deprecation: DeprecationClass
|
|
27345
28003
|
browsePaths: BrowsePathsClass
|
|
27346
|
-
|
|
27347
|
-
|
|
28004
|
+
access: AccessClass
|
|
28005
|
+
inputFields: InputFieldsClass
|
|
28006
|
+
incidentsSummary: IncidentsSummaryClass
|
|
28007
|
+
documentation: DocumentationClass
|
|
28008
|
+
operation: OperationClass
|
|
28009
|
+
versionProperties: VersionPropertiesClass
|
|
28010
|
+
ownership: OwnershipClass
|
|
27348
28011
|
siblings: SiblingsClass
|
|
27349
28012
|
forms: FormsClass
|
|
28013
|
+
browsePathsV2: BrowsePathsV2Class
|
|
28014
|
+
displayProperties: DisplayPropertiesClass
|
|
28015
|
+
embed: EmbedClass
|
|
28016
|
+
glossaryTerms: GlossaryTermsClass
|
|
28017
|
+
subTypes: SubTypesClass
|
|
28018
|
+
dataTransformLogic: DataTransformLogicClass
|
|
27350
28019
|
institutionalMemory: InstitutionalMemoryClass
|
|
27351
28020
|
globalTags: GlobalTagsClass
|
|
27352
|
-
|
|
27353
|
-
displayProperties: DisplayPropertiesClass
|
|
28021
|
+
cost: CostClass
|
|
27354
28022
|
status: StatusClass
|
|
27355
|
-
|
|
27356
|
-
|
|
27357
|
-
|
|
27358
|
-
|
|
27359
|
-
|
|
27360
|
-
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
27361
|
-
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
27362
|
-
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
27363
|
-
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
27364
|
-
dataProcessInfo: DataProcessInfoClass
|
|
27365
|
-
domains: DomainsClass
|
|
27366
|
-
domainProperties: DomainPropertiesClass
|
|
27367
|
-
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
27368
|
-
upstreamLineage: UpstreamLineageClass
|
|
27369
|
-
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
27370
|
-
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
27371
|
-
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
27372
|
-
datasetProfile: DatasetProfileClass
|
|
27373
|
-
partitionsSummary: PartitionsSummaryClass
|
|
27374
|
-
datasetDeprecation: DatasetDeprecationClass
|
|
27375
|
-
datasetProperties: DatasetPropertiesClass
|
|
27376
|
-
viewProperties: ViewPropertiesClass
|
|
27377
|
-
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
27378
|
-
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
27379
|
-
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
27380
|
-
dataHubViewInfo: DataHubViewInfoClass
|
|
27381
|
-
actors: ActorsClass
|
|
27382
|
-
roleProperties: RolePropertiesClass
|
|
27383
|
-
structuredProperties: StructuredPropertiesClass
|
|
27384
|
-
propertyDefinition: StructuredPropertyDefinitionClass
|
|
27385
|
-
structuredPropertySettings: StructuredPropertySettingsClass
|
|
27386
|
-
structuredPropertyKey: StructuredPropertyKeyClass
|
|
27387
|
-
incidentSource: IncidentSourceClass
|
|
27388
|
-
incidentInfo: IncidentInfoClass
|
|
27389
|
-
versionSetProperties: VersionSetPropertiesClass
|
|
27390
|
-
telemetryClientId: TelemetryClientIdClass
|
|
27391
|
-
dataJobInputOutput: DataJobInputOutputClass
|
|
27392
|
-
dataJobInfo: DataJobInfoClass
|
|
27393
|
-
versionInfo: VersionInfoClass
|
|
28023
|
+
dataPlatformInstance: DataPlatformInstanceClass
|
|
28024
|
+
origin: OriginClass
|
|
28025
|
+
businessAttributeKey: BusinessAttributeKeyClass
|
|
28026
|
+
businessAttributeInfo: BusinessAttributeInfoClass
|
|
28027
|
+
businessAttributes: BusinessAttributesClass
|
|
27394
28028
|
dataFlowInfo: DataFlowInfoClass
|
|
27395
|
-
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
27396
28029
|
editableDataFlowProperties: EditableDataFlowPropertiesClass
|
|
28030
|
+
versionInfo: VersionInfoClass
|
|
28031
|
+
dataJobInputOutput: DataJobInputOutputClass
|
|
28032
|
+
editableDataJobProperties: EditableDataJobPropertiesClass
|
|
28033
|
+
dataJobInfo: DataJobInfoClass
|
|
27397
28034
|
datahubIngestionRunSummary: DatahubIngestionRunSummaryClass
|
|
27398
28035
|
datahubIngestionCheckpoint: DatahubIngestionCheckpointClass
|
|
27399
|
-
dataContractStatus: DataContractStatusClass
|
|
27400
|
-
dataContractProperties: DataContractPropertiesClass
|
|
27401
|
-
editableContainerProperties: EditableContainerPropertiesClass
|
|
27402
|
-
containerProperties: ContainerPropertiesClass
|
|
27403
|
-
container: ContainerClass
|
|
27404
|
-
businessAttributes: BusinessAttributesClass
|
|
27405
|
-
businessAttributeInfo: BusinessAttributeInfoClass
|
|
27406
|
-
businessAttributeKey: BusinessAttributeKeyClass
|
|
27407
|
-
formInfo: FormInfoClass
|
|
27408
|
-
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
27409
28036
|
testInfo: TestInfoClass
|
|
27410
28037
|
testResults: TestResultsClass
|
|
27411
|
-
|
|
27412
|
-
|
|
27413
|
-
|
|
27414
|
-
|
|
27415
|
-
|
|
27416
|
-
|
|
27417
|
-
|
|
27418
|
-
|
|
27419
|
-
|
|
27420
|
-
|
|
27421
|
-
|
|
27422
|
-
|
|
27423
|
-
|
|
27424
|
-
|
|
27425
|
-
|
|
27426
|
-
|
|
27427
|
-
|
|
28038
|
+
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
28039
|
+
groupMembership: GroupMembershipClass
|
|
28040
|
+
corpUserStatus: CorpUserStatusClass
|
|
28041
|
+
corpUserInfo: CorpUserInfoClass
|
|
28042
|
+
corpUserEditableInfo: CorpUserEditableInfoClass
|
|
28043
|
+
corpUserCredentials: CorpUserCredentialsClass
|
|
28044
|
+
inviteToken: InviteTokenClass
|
|
28045
|
+
nativeGroupMembership: NativeGroupMembershipClass
|
|
28046
|
+
roleMembership: RoleMembershipClass
|
|
28047
|
+
corpUserSettings: CorpUserSettingsClass
|
|
28048
|
+
corpGroupEditableInfo: CorpGroupEditableInfoClass
|
|
28049
|
+
corpGroupInfo: CorpGroupInfoClass
|
|
28050
|
+
dataHubViewInfo: DataHubViewInfoClass
|
|
28051
|
+
tagProperties: TagPropertiesClass
|
|
28052
|
+
assertionActions: AssertionActionsClass
|
|
28053
|
+
assertionRunEvent: AssertionRunEventClass
|
|
28054
|
+
assertionInfo: AssertionInfoClass
|
|
28055
|
+
editableERModelRelationshipProperties: EditableERModelRelationshipPropertiesClass
|
|
28056
|
+
erModelRelationshipProperties: ERModelRelationshipPropertiesClass
|
|
28057
|
+
editableSchemaMetadata: EditableSchemaMetadataClass
|
|
28058
|
+
schemaMetadata: SchemaMetadataClass
|
|
28059
|
+
logicalParent: LogicalParentClass
|
|
28060
|
+
chartInfo: ChartInfoClass
|
|
28061
|
+
chartUsageStatistics: ChartUsageStatisticsClass
|
|
28062
|
+
chartQuery: ChartQueryClass
|
|
28063
|
+
editableChartProperties: EditableChartPropertiesClass
|
|
28064
|
+
dataHubAccessTokenInfo: DataHubAccessTokenInfoClass
|
|
28065
|
+
glossaryTermInfo: GlossaryTermInfoClass
|
|
28066
|
+
glossaryRelatedTerms: GlossaryRelatedTermsClass
|
|
28067
|
+
glossaryNodeInfo: GlossaryNodeInfoClass
|
|
28068
|
+
domainProperties: DomainPropertiesClass
|
|
28069
|
+
domains: DomainsClass
|
|
28070
|
+
dataProcessInstanceRunEvent: DataProcessInstanceRunEventClass
|
|
28071
|
+
dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
|
|
28072
|
+
dataProcessInstanceOutput: DataProcessInstanceOutputClass
|
|
28073
|
+
dataProcessInfo: DataProcessInfoClass
|
|
28074
|
+
dataProcessInstanceInput: DataProcessInstanceInputClass
|
|
28075
|
+
dataProcessInstanceProperties: DataProcessInstancePropertiesClass
|
|
28076
|
+
queryUsageStatistics: QueryUsageStatisticsClass
|
|
28077
|
+
querySubjects: QuerySubjectsClass
|
|
28078
|
+
queryProperties: QueryPropertiesClass
|
|
28079
|
+
dataHubExecutionRequestResult: ExecutionRequestResultClass
|
|
28080
|
+
dataHubExecutionRequestInput: ExecutionRequestInputClass
|
|
28081
|
+
dataHubExecutionRequestSignal: ExecutionRequestSignalClass
|
|
28082
|
+
dataHubStepStateProperties: DataHubStepStatePropertiesClass
|
|
28083
|
+
systemMetadata: SystemMetadataClass
|
|
28084
|
+
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
27428
28085
|
globalSettingsKey: GlobalSettingsKeyClass
|
|
27429
|
-
|
|
28086
|
+
mlModelDeploymentKey: MLModelDeploymentKeyClass
|
|
28087
|
+
roleKey: RoleKeyClass
|
|
28088
|
+
dataPlatformInstanceKey: DataPlatformInstanceKeyClass
|
|
28089
|
+
corpGroupKey: CorpGroupKeyClass
|
|
28090
|
+
notebookKey: NotebookKeyClass
|
|
28091
|
+
dataPlatformKey: DataPlatformKeyClass
|
|
28092
|
+
mlFeatureKey: MLFeatureKeyClass
|
|
28093
|
+
dataHubActionKey: DataHubActionKeyClass
|
|
28094
|
+
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
28095
|
+
dataHubRetentionKey: DataHubRetentionKeyClass
|
|
28096
|
+
mlModelKey: MLModelKeyClass
|
|
27430
28097
|
erModelRelationshipKey: ERModelRelationshipKeyClass
|
|
27431
|
-
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
27432
28098
|
glossaryTermKey: GlossaryTermKeyClass
|
|
27433
|
-
|
|
27434
|
-
|
|
27435
|
-
incidentKey: IncidentKeyClass
|
|
27436
|
-
dataProcessKey: DataProcessKeyClass
|
|
28099
|
+
dashboardKey: DashboardKeyClass
|
|
28100
|
+
versionSetKey: VersionSetKeyClass
|
|
27437
28101
|
containerKey: ContainerKeyClass
|
|
28102
|
+
dataHubStepStateKey: DataHubStepStateKeyClass
|
|
28103
|
+
glossaryNodeKey: GlossaryNodeKeyClass
|
|
28104
|
+
dataJobKey: DataJobKeyClass
|
|
27438
28105
|
dataHubViewKey: DataHubViewKeyClass
|
|
27439
|
-
|
|
27440
|
-
|
|
27441
|
-
|
|
28106
|
+
dataHubPageTemplateKey: DataHubPageTemplateKeyClass
|
|
28107
|
+
domainKey: DomainKeyClass
|
|
28108
|
+
incidentKey: IncidentKeyClass
|
|
28109
|
+
datasetKey: DatasetKeyClass
|
|
27442
28110
|
dataHubRoleKey: DataHubRoleKeyClass
|
|
27443
|
-
|
|
27444
|
-
dataFlowKey: DataFlowKeyClass
|
|
27445
|
-
testKey: TestKeyClass
|
|
27446
|
-
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
28111
|
+
corpUserKey: CorpUserKeyClass
|
|
27447
28112
|
assertionKey: AssertionKeyClass
|
|
28113
|
+
chartKey: ChartKeyClass
|
|
28114
|
+
schemaFieldKey: SchemaFieldKeyClass
|
|
28115
|
+
ownershipTypeKey: OwnershipTypeKeyClass
|
|
28116
|
+
mlModelGroupKey: MLModelGroupKeyClass
|
|
28117
|
+
dataHubConnectionKey: DataHubConnectionKeyClass
|
|
28118
|
+
testKey: TestKeyClass
|
|
28119
|
+
formKey: FormKeyClass
|
|
28120
|
+
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
28121
|
+
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
28122
|
+
mlPrimaryKeyKey: MLPrimaryKeyKeyClass
|
|
28123
|
+
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
28124
|
+
postKey: PostKeyClass
|
|
28125
|
+
dataProcessKey: DataProcessKeyClass
|
|
27448
28126
|
telemetryKey: TelemetryKeyClass
|
|
27449
|
-
|
|
28127
|
+
queryKey: QueryKeyClass
|
|
28128
|
+
tagKey: TagKeyClass
|
|
28129
|
+
dataHubPageModuleKey: DataHubPageModuleKeyClass
|
|
27450
28130
|
dataHubSecretKey: DataHubSecretKeyClass
|
|
27451
|
-
dataHubOpenAPISchemaKey: DataHubOpenAPISchemaKeyClass
|
|
27452
|
-
datasetKey: DatasetKeyClass
|
|
27453
|
-
dataHubPersonaKey: DataHubPersonaKeyClass
|
|
27454
28131
|
dataHubExecutionRequestKey: ExecutionRequestKeyClass
|
|
27455
|
-
domainKey: DomainKeyClass
|
|
27456
|
-
corpUserKey: CorpUserKeyClass
|
|
27457
|
-
dataProcessInstanceKey: DataProcessInstanceKeyClass
|
|
27458
|
-
dataHubUpgradeKey: DataHubUpgradeKeyClass
|
|
27459
|
-
chartKey: ChartKeyClass
|
|
27460
|
-
dataHubPolicyKey: DataHubPolicyKeyClass
|
|
27461
|
-
mlFeatureTableKey: MLFeatureTableKeyClass
|
|
27462
|
-
dataPlatformKey: DataPlatformKeyClass
|
|
27463
28132
|
inviteTokenKey: InviteTokenKeyClass
|
|
27464
|
-
|
|
27465
|
-
|
|
27466
|
-
|
|
27467
|
-
|
|
27468
|
-
|
|
27469
|
-
|
|
27470
|
-
|
|
27471
|
-
|
|
27472
|
-
|
|
27473
|
-
|
|
27474
|
-
|
|
27475
|
-
|
|
27476
|
-
|
|
27477
|
-
|
|
27478
|
-
|
|
27479
|
-
|
|
27480
|
-
|
|
27481
|
-
|
|
27482
|
-
|
|
27483
|
-
|
|
28133
|
+
dataContractKey: DataContractKeyClass
|
|
28134
|
+
dataHubOpenAPISchemaKey: DataHubOpenAPISchemaKeyClass
|
|
28135
|
+
dataHubAccessTokenKey: DataHubAccessTokenKeyClass
|
|
28136
|
+
dataFlowKey: DataFlowKeyClass
|
|
28137
|
+
dataHubIngestionSourceKey: DataHubIngestionSourceKeyClass
|
|
28138
|
+
versionSetProperties: VersionSetPropertiesClass
|
|
28139
|
+
ownershipTypeInfo: OwnershipTypeInfoClass
|
|
28140
|
+
postInfo: PostInfoClass
|
|
28141
|
+
roleProperties: RolePropertiesClass
|
|
28142
|
+
actors: ActorsClass
|
|
28143
|
+
structuredPropertySettings: StructuredPropertySettingsClass
|
|
28144
|
+
structuredProperties: StructuredPropertiesClass
|
|
28145
|
+
propertyDefinition: StructuredPropertyDefinitionClass
|
|
28146
|
+
structuredPropertyKey: StructuredPropertyKeyClass
|
|
28147
|
+
dataContractStatus: DataContractStatusClass
|
|
28148
|
+
dataContractProperties: DataContractPropertiesClass
|
|
28149
|
+
dataHubIngestionSourceInfo: DataHubIngestionSourceInfoClass
|
|
28150
|
+
telemetryClientId: TelemetryClientIdClass
|
|
28151
|
+
dataHubPageModuleProperties: DataHubPageModulePropertiesClass
|
|
28152
|
+
globalSettingsInfo: GlobalSettingsInfoClass
|
|
28153
|
+
dataHubPersonaInfo: DataHubPersonaInfoClass
|
|
28154
|
+
editableContainerProperties: EditableContainerPropertiesClass
|
|
28155
|
+
container: ContainerClass
|
|
28156
|
+
containerProperties: ContainerPropertiesClass
|
|
28157
|
+
applicationProperties: ApplicationPropertiesClass
|
|
28158
|
+
applications: ApplicationsClass
|
|
28159
|
+
applicationKey: ApplicationKeyClass
|
|
28160
|
+
incidentSource: IncidentSourceClass
|
|
28161
|
+
incidentInfo: IncidentInfoClass
|
|
28162
|
+
dataHubSecretValue: DataHubSecretValueClass
|
|
28163
|
+
editableNotebookProperties: EditableNotebookPropertiesClass
|
|
27484
28164
|
notebookContent: NotebookContentClass
|
|
27485
28165
|
notebookInfo: NotebookInfoClass
|
|
27486
|
-
|
|
27487
|
-
|
|
28166
|
+
dashboardUsageStatistics: DashboardUsageStatisticsClass
|
|
28167
|
+
dashboardInfo: DashboardInfoClass
|
|
28168
|
+
editableDashboardProperties: EditableDashboardPropertiesClass
|
|
28169
|
+
upstreamLineage: UpstreamLineageClass
|
|
28170
|
+
datasetUpstreamLineage: DatasetUpstreamLineageClass
|
|
28171
|
+
datasetDeprecation: DatasetDeprecationClass
|
|
28172
|
+
datasetProperties: DatasetPropertiesClass
|
|
28173
|
+
partitionsSummary: PartitionsSummaryClass
|
|
28174
|
+
datasetProfile: DatasetProfileClass
|
|
28175
|
+
datasetUsageStatistics: DatasetUsageStatisticsClass
|
|
28176
|
+
icebergCatalogInfo: IcebergCatalogInfoClass
|
|
28177
|
+
viewProperties: ViewPropertiesClass
|
|
28178
|
+
editableDatasetProperties: EditableDatasetPropertiesClass
|
|
28179
|
+
entityTypeInfo: EntityTypeInfoClass
|
|
28180
|
+
entityTypeKey: EntityTypeKeyClass
|
|
27488
28181
|
schemaFieldAliases: SchemaFieldAliasesClass
|
|
27489
|
-
|
|
27490
|
-
|
|
27491
|
-
|
|
28182
|
+
schemafieldInfo: SchemaFieldInfoClass
|
|
28183
|
+
mlMetric: MLMetricClass
|
|
28184
|
+
editableMlModelProperties: EditableMLModelPropertiesClass
|
|
28185
|
+
mlModelFactorPrompts: MLModelFactorPromptsClass
|
|
28186
|
+
mlHyperParam: MLHyperParamClass
|
|
28187
|
+
mlModelMetrics: MetricsClass
|
|
28188
|
+
sourceCode: SourceCodeClass
|
|
28189
|
+
mlTrainingRunProperties: MLTrainingRunPropertiesClass
|
|
28190
|
+
editableMlModelGroupProperties: EditableMLModelGroupPropertiesClass
|
|
28191
|
+
mlModelDeploymentProperties: MLModelDeploymentPropertiesClass
|
|
28192
|
+
mlFeatureTableProperties: MLFeatureTablePropertiesClass
|
|
28193
|
+
mlModelEthicalConsiderations: EthicalConsiderationsClass
|
|
28194
|
+
mlFeatureProperties: MLFeaturePropertiesClass
|
|
28195
|
+
mlModelQuantitativeAnalyses: QuantitativeAnalysesClass
|
|
28196
|
+
mlModelProperties: MLModelPropertiesClass
|
|
28197
|
+
mlModelCaveatsAndRecommendations: CaveatsAndRecommendationsClass
|
|
28198
|
+
editableMlPrimaryKeyProperties: EditableMLPrimaryKeyPropertiesClass
|
|
28199
|
+
intendedUse: IntendedUseClass
|
|
28200
|
+
mlPrimaryKeyProperties: MLPrimaryKeyPropertiesClass
|
|
28201
|
+
mlModelTrainingData: TrainingDataClass
|
|
28202
|
+
editableMlFeatureProperties: EditableMLFeaturePropertiesClass
|
|
28203
|
+
mlModelGroupProperties: MLModelGroupPropertiesClass
|
|
28204
|
+
mlModelEvaluationData: EvaluationDataClass
|
|
28205
|
+
editableMlFeatureTableProperties: EditableMLFeatureTablePropertiesClass
|
|
28206
|
+
platformResourceKey: PlatformResourceKeyClass
|
|
28207
|
+
platformResourceInfo: PlatformResourceInfoClass
|
|
28208
|
+
formInfo: FormInfoClass
|
|
28209
|
+
dynamicFormAssignment: DynamicFormAssignmentClass
|
|
27492
28210
|
dataPlatformInstanceProperties: DataPlatformInstancePropertiesClass
|
|
27493
|
-
|
|
27494
|
-
|
|
27495
|
-
|
|
27496
|
-
|
|
27497
|
-
|
|
27498
|
-
|
|
27499
|
-
|
|
27500
|
-
|
|
27501
|
-
|
|
27502
|
-
dataHubPolicyInfo: DataHubPolicyInfoClass
|
|
27503
|
-
dataHubConnectionDetails: DataHubConnectionDetailsClass
|
|
27504
|
-
|
|
27505
|
-
|
|
27506
|
-
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
27507
|
-
'dataProduct': DataProductKeyClass,
|
|
27508
|
-
'dataType': DataTypeKeyClass,
|
|
27509
|
-
'platformResource': PlatformResourceKeyClass,
|
|
27510
|
-
'entityType': EntityTypeKeyClass,
|
|
27511
|
-
'structuredProperty': StructuredPropertyKeyClass,
|
|
27512
|
-
'businessAttribute': BusinessAttributeKeyClass,
|
|
27513
|
-
'application': ApplicationKeyClass,
|
|
27514
|
-
'mlFeature': MLFeatureKeyClass,
|
|
27515
|
-
'dataContract': DataContractKeyClass,
|
|
27516
|
-
'dataHubConnection': DataHubConnectionKeyClass,
|
|
27517
|
-
'form': FormKeyClass,
|
|
27518
|
-
'dataHubStepState': DataHubStepStateKeyClass,
|
|
27519
|
-
'schemaField': SchemaFieldKeyClass,
|
|
27520
|
-
'dataJob': DataJobKeyClass,
|
|
27521
|
-
'glossaryNode': GlossaryNodeKeyClass,
|
|
27522
|
-
'notebook': NotebookKeyClass,
|
|
27523
|
-
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
27524
|
-
'post': PostKeyClass,
|
|
27525
|
-
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
28211
|
+
icebergWarehouseInfo: IcebergWarehouseInfoClass
|
|
28212
|
+
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
28213
|
+
|
|
28214
|
+
|
|
28215
|
+
KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
|
|
28216
|
+
'dataType': DataTypeKeyClass,
|
|
28217
|
+
'dataProduct': DataProductKeyClass,
|
|
28218
|
+
'businessAttribute': BusinessAttributeKeyClass,
|
|
28219
|
+
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
27526
28220
|
'globalSettings': GlobalSettingsKeyClass,
|
|
27527
|
-
'
|
|
28221
|
+
'mlModelDeployment': MLModelDeploymentKeyClass,
|
|
28222
|
+
'role': RoleKeyClass,
|
|
28223
|
+
'dataPlatformInstance': DataPlatformInstanceKeyClass,
|
|
28224
|
+
'corpGroup': CorpGroupKeyClass,
|
|
28225
|
+
'notebook': NotebookKeyClass,
|
|
28226
|
+
'dataPlatform': DataPlatformKeyClass,
|
|
28227
|
+
'mlFeature': MLFeatureKeyClass,
|
|
28228
|
+
'dataHubAction': DataHubActionKeyClass,
|
|
28229
|
+
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
28230
|
+
'dataHubRetention': DataHubRetentionKeyClass,
|
|
28231
|
+
'mlModel': MLModelKeyClass,
|
|
27528
28232
|
'erModelRelationship': ERModelRelationshipKeyClass,
|
|
27529
|
-
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
27530
28233
|
'glossaryTerm': GlossaryTermKeyClass,
|
|
27531
|
-
'
|
|
27532
|
-
'
|
|
27533
|
-
'incident': IncidentKeyClass,
|
|
27534
|
-
'dataProcess': DataProcessKeyClass,
|
|
28234
|
+
'dashboard': DashboardKeyClass,
|
|
28235
|
+
'versionSet': VersionSetKeyClass,
|
|
27535
28236
|
'container': ContainerKeyClass,
|
|
28237
|
+
'dataHubStepState': DataHubStepStateKeyClass,
|
|
28238
|
+
'glossaryNode': GlossaryNodeKeyClass,
|
|
28239
|
+
'dataJob': DataJobKeyClass,
|
|
27536
28240
|
'dataHubView': DataHubViewKeyClass,
|
|
27537
|
-
'
|
|
27538
|
-
'
|
|
27539
|
-
'
|
|
28241
|
+
'dataHubPageTemplate': DataHubPageTemplateKeyClass,
|
|
28242
|
+
'domain': DomainKeyClass,
|
|
28243
|
+
'incident': IncidentKeyClass,
|
|
28244
|
+
'dataset': DatasetKeyClass,
|
|
27540
28245
|
'dataHubRole': DataHubRoleKeyClass,
|
|
27541
|
-
'
|
|
27542
|
-
'dataFlow': DataFlowKeyClass,
|
|
27543
|
-
'test': TestKeyClass,
|
|
27544
|
-
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
28246
|
+
'corpuser': CorpUserKeyClass,
|
|
27545
28247
|
'assertion': AssertionKeyClass,
|
|
28248
|
+
'chart': ChartKeyClass,
|
|
28249
|
+
'schemaField': SchemaFieldKeyClass,
|
|
28250
|
+
'ownershipType': OwnershipTypeKeyClass,
|
|
28251
|
+
'mlModelGroup': MLModelGroupKeyClass,
|
|
28252
|
+
'dataHubConnection': DataHubConnectionKeyClass,
|
|
28253
|
+
'test': TestKeyClass,
|
|
28254
|
+
'form': FormKeyClass,
|
|
28255
|
+
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
28256
|
+
'dataHubPersona': DataHubPersonaKeyClass,
|
|
28257
|
+
'mlPrimaryKey': MLPrimaryKeyKeyClass,
|
|
28258
|
+
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
28259
|
+
'post': PostKeyClass,
|
|
28260
|
+
'dataProcess': DataProcessKeyClass,
|
|
27546
28261
|
'telemetry': TelemetryKeyClass,
|
|
27547
|
-
'
|
|
28262
|
+
'query': QueryKeyClass,
|
|
28263
|
+
'tag': TagKeyClass,
|
|
28264
|
+
'dataHubPageModule': DataHubPageModuleKeyClass,
|
|
27548
28265
|
'dataHubSecret': DataHubSecretKeyClass,
|
|
27549
|
-
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
27550
|
-
'dataset': DatasetKeyClass,
|
|
27551
|
-
'dataHubPersona': DataHubPersonaKeyClass,
|
|
27552
28266
|
'dataHubExecutionRequest': ExecutionRequestKeyClass,
|
|
27553
|
-
'domain': DomainKeyClass,
|
|
27554
|
-
'corpuser': CorpUserKeyClass,
|
|
27555
|
-
'dataProcessInstance': DataProcessInstanceKeyClass,
|
|
27556
|
-
'dataHubUpgrade': DataHubUpgradeKeyClass,
|
|
27557
|
-
'chart': ChartKeyClass,
|
|
27558
|
-
'dataHubPolicy': DataHubPolicyKeyClass,
|
|
27559
|
-
'mlFeatureTable': MLFeatureTableKeyClass,
|
|
27560
|
-
'dataPlatform': DataPlatformKeyClass,
|
|
27561
28267
|
'inviteToken': InviteTokenKeyClass,
|
|
27562
|
-
'
|
|
27563
|
-
'
|
|
27564
|
-
'
|
|
27565
|
-
'
|
|
28268
|
+
'dataContract': DataContractKeyClass,
|
|
28269
|
+
'dataHubOpenAPISchema': DataHubOpenAPISchemaKeyClass,
|
|
28270
|
+
'dataHubAccessToken': DataHubAccessTokenKeyClass,
|
|
28271
|
+
'dataFlow': DataFlowKeyClass,
|
|
28272
|
+
'dataHubIngestionSource': DataHubIngestionSourceKeyClass,
|
|
28273
|
+
'structuredProperty': StructuredPropertyKeyClass,
|
|
28274
|
+
'application': ApplicationKeyClass,
|
|
28275
|
+
'entityType': EntityTypeKeyClass,
|
|
28276
|
+
'platformResource': PlatformResourceKeyClass
|
|
27566
28277
|
}
|
|
27567
28278
|
|
|
28279
|
+
KEY_ASPECT_NAMES: Set[str] = {cls.ASPECT_NAME for cls in KEY_ASPECTS.values()}
|
|
28280
|
+
|
|
27568
28281
|
ENTITY_TYPE_NAMES: List[str] = [
|
|
27569
|
-
'dataProduct',
|
|
27570
28282
|
'dataType',
|
|
27571
|
-
'
|
|
27572
|
-
'entityType',
|
|
27573
|
-
'structuredProperty',
|
|
28283
|
+
'dataProduct',
|
|
27574
28284
|
'businessAttribute',
|
|
27575
|
-
'
|
|
27576
|
-
'mlFeature',
|
|
27577
|
-
'dataContract',
|
|
27578
|
-
'dataHubConnection',
|
|
27579
|
-
'form',
|
|
27580
|
-
'dataHubStepState',
|
|
27581
|
-
'schemaField',
|
|
27582
|
-
'dataJob',
|
|
27583
|
-
'glossaryNode',
|
|
27584
|
-
'notebook',
|
|
27585
|
-
'mlModelDeployment',
|
|
27586
|
-
'post',
|
|
27587
|
-
'dataHubAccessToken',
|
|
28285
|
+
'dataHubUpgrade',
|
|
27588
28286
|
'globalSettings',
|
|
27589
|
-
'
|
|
28287
|
+
'mlModelDeployment',
|
|
28288
|
+
'role',
|
|
28289
|
+
'dataPlatformInstance',
|
|
28290
|
+
'corpGroup',
|
|
28291
|
+
'notebook',
|
|
28292
|
+
'dataPlatform',
|
|
28293
|
+
'mlFeature',
|
|
28294
|
+
'dataHubAction',
|
|
28295
|
+
'mlFeatureTable',
|
|
28296
|
+
'dataHubRetention',
|
|
28297
|
+
'mlModel',
|
|
27590
28298
|
'erModelRelationship',
|
|
27591
|
-
'mlPrimaryKey',
|
|
27592
28299
|
'glossaryTerm',
|
|
27593
|
-
'
|
|
27594
|
-
'
|
|
27595
|
-
'incident',
|
|
27596
|
-
'dataProcess',
|
|
28300
|
+
'dashboard',
|
|
28301
|
+
'versionSet',
|
|
27597
28302
|
'container',
|
|
28303
|
+
'dataHubStepState',
|
|
28304
|
+
'glossaryNode',
|
|
28305
|
+
'dataJob',
|
|
27598
28306
|
'dataHubView',
|
|
27599
|
-
'
|
|
27600
|
-
'
|
|
27601
|
-
'
|
|
28307
|
+
'dataHubPageTemplate',
|
|
28308
|
+
'domain',
|
|
28309
|
+
'incident',
|
|
28310
|
+
'dataset',
|
|
27602
28311
|
'dataHubRole',
|
|
27603
|
-
'
|
|
27604
|
-
'dataFlow',
|
|
27605
|
-
'test',
|
|
27606
|
-
'dataHubIngestionSource',
|
|
28312
|
+
'corpuser',
|
|
27607
28313
|
'assertion',
|
|
28314
|
+
'chart',
|
|
28315
|
+
'schemaField',
|
|
28316
|
+
'ownershipType',
|
|
28317
|
+
'mlModelGroup',
|
|
28318
|
+
'dataHubConnection',
|
|
28319
|
+
'test',
|
|
28320
|
+
'form',
|
|
28321
|
+
'dataHubPolicy',
|
|
28322
|
+
'dataHubPersona',
|
|
28323
|
+
'mlPrimaryKey',
|
|
28324
|
+
'dataProcessInstance',
|
|
28325
|
+
'post',
|
|
28326
|
+
'dataProcess',
|
|
27608
28327
|
'telemetry',
|
|
27609
|
-
'
|
|
28328
|
+
'query',
|
|
28329
|
+
'tag',
|
|
28330
|
+
'dataHubPageModule',
|
|
27610
28331
|
'dataHubSecret',
|
|
27611
|
-
'dataHubOpenAPISchema',
|
|
27612
|
-
'dataset',
|
|
27613
|
-
'dataHubPersona',
|
|
27614
28332
|
'dataHubExecutionRequest',
|
|
27615
|
-
'domain',
|
|
27616
|
-
'corpuser',
|
|
27617
|
-
'dataProcessInstance',
|
|
27618
|
-
'dataHubUpgrade',
|
|
27619
|
-
'chart',
|
|
27620
|
-
'dataHubPolicy',
|
|
27621
|
-
'mlFeatureTable',
|
|
27622
|
-
'dataPlatform',
|
|
27623
28333
|
'inviteToken',
|
|
27624
|
-
'
|
|
27625
|
-
'
|
|
27626
|
-
'
|
|
27627
|
-
'
|
|
28334
|
+
'dataContract',
|
|
28335
|
+
'dataHubOpenAPISchema',
|
|
28336
|
+
'dataHubAccessToken',
|
|
28337
|
+
'dataFlow',
|
|
28338
|
+
'dataHubIngestionSource',
|
|
28339
|
+
'structuredProperty',
|
|
28340
|
+
'application',
|
|
28341
|
+
'entityType',
|
|
28342
|
+
'platformResource'
|
|
27628
28343
|
]
|
|
27629
28344
|
EntityTypeName = Literal[
|
|
27630
|
-
'dataProduct',
|
|
27631
28345
|
'dataType',
|
|
27632
|
-
'
|
|
27633
|
-
'entityType',
|
|
27634
|
-
'structuredProperty',
|
|
28346
|
+
'dataProduct',
|
|
27635
28347
|
'businessAttribute',
|
|
27636
|
-
'
|
|
27637
|
-
'mlFeature',
|
|
27638
|
-
'dataContract',
|
|
27639
|
-
'dataHubConnection',
|
|
27640
|
-
'form',
|
|
27641
|
-
'dataHubStepState',
|
|
27642
|
-
'schemaField',
|
|
27643
|
-
'dataJob',
|
|
27644
|
-
'glossaryNode',
|
|
27645
|
-
'notebook',
|
|
27646
|
-
'mlModelDeployment',
|
|
27647
|
-
'post',
|
|
27648
|
-
'dataHubAccessToken',
|
|
28348
|
+
'dataHubUpgrade',
|
|
27649
28349
|
'globalSettings',
|
|
27650
|
-
'
|
|
28350
|
+
'mlModelDeployment',
|
|
28351
|
+
'role',
|
|
28352
|
+
'dataPlatformInstance',
|
|
28353
|
+
'corpGroup',
|
|
28354
|
+
'notebook',
|
|
28355
|
+
'dataPlatform',
|
|
28356
|
+
'mlFeature',
|
|
28357
|
+
'dataHubAction',
|
|
28358
|
+
'mlFeatureTable',
|
|
28359
|
+
'dataHubRetention',
|
|
28360
|
+
'mlModel',
|
|
27651
28361
|
'erModelRelationship',
|
|
27652
|
-
'mlPrimaryKey',
|
|
27653
28362
|
'glossaryTerm',
|
|
27654
|
-
'
|
|
27655
|
-
'
|
|
27656
|
-
'incident',
|
|
27657
|
-
'dataProcess',
|
|
28363
|
+
'dashboard',
|
|
28364
|
+
'versionSet',
|
|
27658
28365
|
'container',
|
|
28366
|
+
'dataHubStepState',
|
|
28367
|
+
'glossaryNode',
|
|
28368
|
+
'dataJob',
|
|
27659
28369
|
'dataHubView',
|
|
27660
|
-
'
|
|
27661
|
-
'
|
|
27662
|
-
'
|
|
28370
|
+
'dataHubPageTemplate',
|
|
28371
|
+
'domain',
|
|
28372
|
+
'incident',
|
|
28373
|
+
'dataset',
|
|
27663
28374
|
'dataHubRole',
|
|
27664
|
-
'
|
|
27665
|
-
'dataFlow',
|
|
27666
|
-
'test',
|
|
27667
|
-
'dataHubIngestionSource',
|
|
28375
|
+
'corpuser',
|
|
27668
28376
|
'assertion',
|
|
28377
|
+
'chart',
|
|
28378
|
+
'schemaField',
|
|
28379
|
+
'ownershipType',
|
|
28380
|
+
'mlModelGroup',
|
|
28381
|
+
'dataHubConnection',
|
|
28382
|
+
'test',
|
|
28383
|
+
'form',
|
|
28384
|
+
'dataHubPolicy',
|
|
28385
|
+
'dataHubPersona',
|
|
28386
|
+
'mlPrimaryKey',
|
|
28387
|
+
'dataProcessInstance',
|
|
28388
|
+
'post',
|
|
28389
|
+
'dataProcess',
|
|
27669
28390
|
'telemetry',
|
|
27670
|
-
'
|
|
28391
|
+
'query',
|
|
28392
|
+
'tag',
|
|
28393
|
+
'dataHubPageModule',
|
|
27671
28394
|
'dataHubSecret',
|
|
27672
|
-
'dataHubOpenAPISchema',
|
|
27673
|
-
'dataset',
|
|
27674
|
-
'dataHubPersona',
|
|
27675
28395
|
'dataHubExecutionRequest',
|
|
27676
|
-
'domain',
|
|
27677
|
-
'corpuser',
|
|
27678
|
-
'dataProcessInstance',
|
|
27679
|
-
'dataHubUpgrade',
|
|
27680
|
-
'chart',
|
|
27681
|
-
'dataHubPolicy',
|
|
27682
|
-
'mlFeatureTable',
|
|
27683
|
-
'dataPlatform',
|
|
27684
28396
|
'inviteToken',
|
|
27685
|
-
'
|
|
27686
|
-
'
|
|
27687
|
-
'
|
|
27688
|
-
'
|
|
28397
|
+
'dataContract',
|
|
28398
|
+
'dataHubOpenAPISchema',
|
|
28399
|
+
'dataHubAccessToken',
|
|
28400
|
+
'dataFlow',
|
|
28401
|
+
'dataHubIngestionSource',
|
|
28402
|
+
'structuredProperty',
|
|
28403
|
+
'application',
|
|
28404
|
+
'entityType',
|
|
28405
|
+
'platformResource'
|
|
27689
28406
|
]
|
|
27690
28407
|
|
|
27691
28408
|
# fmt: on
|