acryl-datahub-cloud 0.3.12.4rc3__py3-none-any.whl → 0.3.13rc1__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-cloud might be problematic. Click here for more details.

Files changed (35) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/lineage_features/source.py +8 -2
  3. acryl_datahub_cloud/metadata/_urns/urn_defs.py +112 -0
  4. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +2 -0
  5. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +4 -0
  6. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +27 -0
  7. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +4 -0
  8. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +25 -0
  9. acryl_datahub_cloud/metadata/schema.avsc +443 -0
  10. acryl_datahub_cloud/metadata/schema_classes.py +682 -1
  11. acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +41 -0
  12. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
  13. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +200 -0
  14. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
  15. acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +175 -0
  16. acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
  17. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +62 -0
  18. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +9 -0
  19. acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
  20. acryl_datahub_cloud/sdk/assertion/__init__.py +49 -0
  21. acryl_datahub_cloud/sdk/assertion/assertion_base.py +65 -806
  22. acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
  23. acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
  24. acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
  25. acryl_datahub_cloud/sdk/assertion/sql_assertion.py +256 -0
  26. acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
  27. acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +0 -344
  28. acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +220 -0
  29. acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +191 -0
  30. acryl_datahub_cloud/sdk/assertions_client.py +6 -2
  31. {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/METADATA +50 -48
  32. {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/RECORD +35 -22
  33. {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/WHEEL +0 -0
  34. {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/entry_points.txt +0 -0
  35. {acryl_datahub_cloud-0.3.12.4rc3.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/top_level.txt +0 -0
@@ -19945,6 +19945,44 @@ class CorpUserEditableInfoClass(_Aspect):
19945
19945
  self._inner_dict['informationSources'] = value
19946
19946
 
19947
19947
 
19948
+ class CorpUserHomePageSettingsClass(DictWrapper):
19949
+ """Settings related to the home page for a user"""
19950
+
19951
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.identity.CorpUserHomePageSettings")
19952
+ def __init__(self,
19953
+ pageTemplate: Union[None, str]=None,
19954
+ dismissedAnnouncements: Union[None, List[str]]=None,
19955
+ ):
19956
+ super().__init__()
19957
+
19958
+ self.pageTemplate = pageTemplate
19959
+ self.dismissedAnnouncements = dismissedAnnouncements
19960
+
19961
+ def _restore_defaults(self) -> None:
19962
+ self.pageTemplate = self.RECORD_SCHEMA.fields_dict["pageTemplate"].default
19963
+ self.dismissedAnnouncements = self.RECORD_SCHEMA.fields_dict["dismissedAnnouncements"].default
19964
+
19965
+
19966
+ @property
19967
+ def pageTemplate(self) -> Union[None, str]:
19968
+ """The page template that will be rendered in the UI by default for this user"""
19969
+ return self._inner_dict.get('pageTemplate') # type: ignore
19970
+
19971
+ @pageTemplate.setter
19972
+ def pageTemplate(self, value: Union[None, str]) -> None:
19973
+ self._inner_dict['pageTemplate'] = value
19974
+
19975
+
19976
+ @property
19977
+ def dismissedAnnouncements(self) -> Union[None, List[str]]:
19978
+ """The list of announcement urns that have been dismissed by the user"""
19979
+ return self._inner_dict.get('dismissedAnnouncements') # type: ignore
19980
+
19981
+ @dismissedAnnouncements.setter
19982
+ def dismissedAnnouncements(self, value: Union[None, List[str]]) -> None:
19983
+ self._inner_dict['dismissedAnnouncements'] = value
19984
+
19985
+
19948
19986
  class CorpUserInfoClass(_Aspect):
19949
19987
  """Linkedin corp user information"""
19950
19988
 
@@ -20150,17 +20188,20 @@ class CorpUserSettingsClass(_Aspect):
20150
20188
  appearance: "CorpUserAppearanceSettingsClass",
20151
20189
  views: Union[None, "CorpUserViewsSettingsClass"]=None,
20152
20190
  notificationSettings: Union[None, "NotificationSettingsClass"]=None,
20191
+ homePage: Union[None, "CorpUserHomePageSettingsClass"]=None,
20153
20192
  ):
20154
20193
  super().__init__()
20155
20194
 
20156
20195
  self.appearance = appearance
20157
20196
  self.views = views
20158
20197
  self.notificationSettings = notificationSettings
20198
+ self.homePage = homePage
20159
20199
 
20160
20200
  def _restore_defaults(self) -> None:
20161
20201
  self.appearance = CorpUserAppearanceSettingsClass._construct_with_defaults()
20162
20202
  self.views = self.RECORD_SCHEMA.fields_dict["views"].default
20163
20203
  self.notificationSettings = self.RECORD_SCHEMA.fields_dict["notificationSettings"].default
20204
+ self.homePage = self.RECORD_SCHEMA.fields_dict["homePage"].default
20164
20205
 
20165
20206
 
20166
20207
  @property
@@ -20193,6 +20234,16 @@ class CorpUserSettingsClass(_Aspect):
20193
20234
  self._inner_dict['notificationSettings'] = value
20194
20235
 
20195
20236
 
20237
+ @property
20238
+ def homePage(self) -> Union[None, "CorpUserHomePageSettingsClass"]:
20239
+ """Settings related to the home page for a user"""
20240
+ return self._inner_dict.get('homePage') # type: ignore
20241
+
20242
+ @homePage.setter
20243
+ def homePage(self, value: Union[None, "CorpUserHomePageSettingsClass"]) -> None:
20244
+ self._inner_dict['homePage'] = value
20245
+
20246
+
20196
20247
  class CorpUserStatusClass(_Aspect):
20197
20248
  """The status of the user, e.g. provisioned, active, suspended, etc."""
20198
20249
 
@@ -22484,6 +22535,64 @@ class DataHubOpenAPISchemaKeyClass(_Aspect):
22484
22535
  self._inner_dict['id'] = value
22485
22536
 
22486
22537
 
22538
+ class DataHubPageModuleKeyClass(_Aspect):
22539
+ """Key for a DataHubPageModule"""
22540
+
22541
+
22542
+ ASPECT_NAME = 'dataHubPageModuleKey'
22543
+ ASPECT_INFO = {'keyForEntity': 'dataHubPageModule', 'entityCategory': 'core', 'entityAspects': ['dataHubPageModuleProperties']}
22544
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubPageModuleKey")
22545
+
22546
+ def __init__(self,
22547
+ id: str,
22548
+ ):
22549
+ super().__init__()
22550
+
22551
+ self.id = id
22552
+
22553
+ def _restore_defaults(self) -> None:
22554
+ self.id = str()
22555
+
22556
+
22557
+ @property
22558
+ def id(self) -> str:
22559
+ """Unique id for the module."""
22560
+ return self._inner_dict.get('id') # type: ignore
22561
+
22562
+ @id.setter
22563
+ def id(self, value: str) -> None:
22564
+ self._inner_dict['id'] = value
22565
+
22566
+
22567
+ class DataHubPageTemplateKeyClass(_Aspect):
22568
+ """Key for a DataHubPageTemplate"""
22569
+
22570
+
22571
+ ASPECT_NAME = 'dataHubPageTemplateKey'
22572
+ ASPECT_INFO = {'keyForEntity': 'dataHubPageTemplate', 'entityCategory': 'core', 'entityAspects': ['dataHubPageTemplateProperties']}
22573
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DataHubPageTemplateKey")
22574
+
22575
+ def __init__(self,
22576
+ id: str,
22577
+ ):
22578
+ super().__init__()
22579
+
22580
+ self.id = id
22581
+
22582
+ def _restore_defaults(self) -> None:
22583
+ self.id = str()
22584
+
22585
+
22586
+ @property
22587
+ def id(self) -> str:
22588
+ """Unique id for the template."""
22589
+ return self._inner_dict.get('id') # type: ignore
22590
+
22591
+ @id.setter
22592
+ def id(self, value: str) -> None:
22593
+ self._inner_dict['id'] = value
22594
+
22595
+
22487
22596
  class DataHubPersonaKeyClass(_Aspect):
22488
22597
  """Key for a persona type"""
22489
22598
 
@@ -28209,6 +28318,247 @@ class TrainingDataClass(_Aspect):
28209
28318
  self._inner_dict['trainingData'] = value
28210
28319
 
28211
28320
 
28321
+ class DataHubPageModuleParamsClass(DictWrapper):
28322
+ """The specific parameters stored for a module"""
28323
+
28324
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleParams")
28325
+ def __init__(self,
28326
+ linkParams: Union[None, "LinkModuleParamsClass"]=None,
28327
+ richTextParams: Union[None, "RichTextModuleParamsClass"]=None,
28328
+ ):
28329
+ super().__init__()
28330
+
28331
+ self.linkParams = linkParams
28332
+ self.richTextParams = richTextParams
28333
+
28334
+ def _restore_defaults(self) -> None:
28335
+ self.linkParams = self.RECORD_SCHEMA.fields_dict["linkParams"].default
28336
+ self.richTextParams = self.RECORD_SCHEMA.fields_dict["richTextParams"].default
28337
+
28338
+
28339
+ @property
28340
+ def linkParams(self) -> Union[None, "LinkModuleParamsClass"]:
28341
+ """The params required if the module is type LINK"""
28342
+ return self._inner_dict.get('linkParams') # type: ignore
28343
+
28344
+ @linkParams.setter
28345
+ def linkParams(self, value: Union[None, "LinkModuleParamsClass"]) -> None:
28346
+ self._inner_dict['linkParams'] = value
28347
+
28348
+
28349
+ @property
28350
+ def richTextParams(self) -> Union[None, "RichTextModuleParamsClass"]:
28351
+ """The params required if the module is type RICH_TEXT"""
28352
+ return self._inner_dict.get('richTextParams') # type: ignore
28353
+
28354
+ @richTextParams.setter
28355
+ def richTextParams(self, value: Union[None, "RichTextModuleParamsClass"]) -> None:
28356
+ self._inner_dict['richTextParams'] = value
28357
+
28358
+
28359
+ class DataHubPageModulePropertiesClass(_Aspect):
28360
+ """The main properties of a DataHub page module"""
28361
+
28362
+
28363
+ ASPECT_NAME = 'dataHubPageModuleProperties'
28364
+ ASPECT_INFO = {}
28365
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleProperties")
28366
+
28367
+ def __init__(self,
28368
+ name: str,
28369
+ type: Union[str, "DataHubPageModuleTypeClass"],
28370
+ visibility: "DataHubPageModuleVisibilityClass",
28371
+ params: "DataHubPageModuleParamsClass",
28372
+ created: "AuditStampClass",
28373
+ lastModified: "AuditStampClass",
28374
+ ):
28375
+ super().__init__()
28376
+
28377
+ self.name = name
28378
+ self.type = type
28379
+ self.visibility = visibility
28380
+ self.params = params
28381
+ self.created = created
28382
+ self.lastModified = lastModified
28383
+
28384
+ def _restore_defaults(self) -> None:
28385
+ self.name = str()
28386
+ self.type = DataHubPageModuleTypeClass.LINK
28387
+ self.visibility = DataHubPageModuleVisibilityClass._construct_with_defaults()
28388
+ self.params = DataHubPageModuleParamsClass._construct_with_defaults()
28389
+ self.created = AuditStampClass._construct_with_defaults()
28390
+ self.lastModified = AuditStampClass._construct_with_defaults()
28391
+
28392
+
28393
+ @property
28394
+ def name(self) -> str:
28395
+ """The display name of this module"""
28396
+ return self._inner_dict.get('name') # type: ignore
28397
+
28398
+ @name.setter
28399
+ def name(self, value: str) -> None:
28400
+ self._inner_dict['name'] = value
28401
+
28402
+
28403
+ @property
28404
+ def type(self) -> Union[str, "DataHubPageModuleTypeClass"]:
28405
+ """The type of this module - the purpose it serves"""
28406
+ return self._inner_dict.get('type') # type: ignore
28407
+
28408
+ @type.setter
28409
+ def type(self, value: Union[str, "DataHubPageModuleTypeClass"]) -> None:
28410
+ self._inner_dict['type'] = value
28411
+
28412
+
28413
+ @property
28414
+ def visibility(self) -> "DataHubPageModuleVisibilityClass":
28415
+ """Info about the visibility of this module"""
28416
+ return self._inner_dict.get('visibility') # type: ignore
28417
+
28418
+ @visibility.setter
28419
+ def visibility(self, value: "DataHubPageModuleVisibilityClass") -> None:
28420
+ self._inner_dict['visibility'] = value
28421
+
28422
+
28423
+ @property
28424
+ def params(self) -> "DataHubPageModuleParamsClass":
28425
+ """The specific parameters stored for this module"""
28426
+ return self._inner_dict.get('params') # type: ignore
28427
+
28428
+ @params.setter
28429
+ def params(self, value: "DataHubPageModuleParamsClass") -> None:
28430
+ self._inner_dict['params'] = value
28431
+
28432
+
28433
+ @property
28434
+ def created(self) -> "AuditStampClass":
28435
+ """Audit stamp for when and by whom this template was created"""
28436
+ return self._inner_dict.get('created') # type: ignore
28437
+
28438
+ @created.setter
28439
+ def created(self, value: "AuditStampClass") -> None:
28440
+ self._inner_dict['created'] = value
28441
+
28442
+
28443
+ @property
28444
+ def lastModified(self) -> "AuditStampClass":
28445
+ """Audit stamp for when and by whom this template was last updated"""
28446
+ return self._inner_dict.get('lastModified') # type: ignore
28447
+
28448
+ @lastModified.setter
28449
+ def lastModified(self, value: "AuditStampClass") -> None:
28450
+ self._inner_dict['lastModified'] = value
28451
+
28452
+
28453
+ class DataHubPageModuleTypeClass(object):
28454
+ """Enum containing the types of page modules that there are"""
28455
+
28456
+ LINK = "LINK"
28457
+ """Link type module"""
28458
+
28459
+ RICH_TEXT = "RICH_TEXT"
28460
+ """Module containing rich text to be rendered"""
28461
+
28462
+ ASSET_COLLECTION = "ASSET_COLLECTION"
28463
+ """A module with a collection of assets"""
28464
+
28465
+ HIERARCHY = "HIERARCHY"
28466
+ """A module displaying a hierarchy to navigate"""
28467
+
28468
+ OWNED_ASSETS = "OWNED_ASSETS"
28469
+ """Module displaying assets owned by a user"""
28470
+
28471
+ DOMAINS = "DOMAINS"
28472
+ """Module displaying the top domains"""
28473
+
28474
+
28475
+
28476
+ class DataHubPageModuleVisibilityClass(DictWrapper):
28477
+ """Info about the visibility of this module"""
28478
+
28479
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility")
28480
+ def __init__(self,
28481
+ scope: Union[str, "PageModuleScopeClass"],
28482
+ ):
28483
+ super().__init__()
28484
+
28485
+ self.scope = scope
28486
+
28487
+ def _restore_defaults(self) -> None:
28488
+ self.scope = PageModuleScopeClass.PERSONAL
28489
+
28490
+
28491
+ @property
28492
+ def scope(self) -> Union[str, "PageModuleScopeClass"]:
28493
+ """Audit stamp for when and by whom this module was created"""
28494
+ return self._inner_dict.get('scope') # type: ignore
28495
+
28496
+ @scope.setter
28497
+ def scope(self, value: Union[str, "PageModuleScopeClass"]) -> None:
28498
+ self._inner_dict['scope'] = value
28499
+
28500
+
28501
+ class LinkModuleParamsClass(DictWrapper):
28502
+ # No docs available.
28503
+
28504
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.LinkModuleParams")
28505
+ def __init__(self,
28506
+ linkUrn: str,
28507
+ ):
28508
+ super().__init__()
28509
+
28510
+ self.linkUrn = linkUrn
28511
+
28512
+ def _restore_defaults(self) -> None:
28513
+ self.linkUrn = str()
28514
+
28515
+
28516
+ @property
28517
+ def linkUrn(self) -> str:
28518
+ # No docs available.
28519
+ return self._inner_dict.get('linkUrn') # type: ignore
28520
+
28521
+ @linkUrn.setter
28522
+ def linkUrn(self, value: str) -> None:
28523
+ self._inner_dict['linkUrn'] = value
28524
+
28525
+
28526
+ class PageModuleScopeClass(object):
28527
+ # No docs available.
28528
+
28529
+ PERSONAL = "PERSONAL"
28530
+ """This module is used for individual use only"""
28531
+
28532
+ GLOBAL = "GLOBAL"
28533
+ """This module is discoverable and can be used by any user on the platform"""
28534
+
28535
+
28536
+
28537
+ class RichTextModuleParamsClass(DictWrapper):
28538
+ # No docs available.
28539
+
28540
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.RichTextModuleParams")
28541
+ def __init__(self,
28542
+ content: str,
28543
+ ):
28544
+ super().__init__()
28545
+
28546
+ self.content = content
28547
+
28548
+ def _restore_defaults(self) -> None:
28549
+ self.content = str()
28550
+
28551
+
28552
+ @property
28553
+ def content(self) -> str:
28554
+ # No docs available.
28555
+ return self._inner_dict.get('content') # type: ignore
28556
+
28557
+ @content.setter
28558
+ def content(self, value: str) -> None:
28559
+ self._inner_dict['content'] = value
28560
+
28561
+
28212
28562
  class AssertionEvaluationContextClass(DictWrapper):
28213
28563
  """Additional context about assertion being evaluated."""
28214
28564
 
@@ -34184,6 +34534,59 @@ class NotificationSettingValueClass(object):
34184
34534
 
34185
34535
 
34186
34536
 
34537
+ class ApplicationsSettingsClass(DictWrapper):
34538
+ # No docs available.
34539
+
34540
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.ApplicationsSettings")
34541
+ def __init__(self,
34542
+ enabled: bool,
34543
+ config: Union[None, str]=None,
34544
+ configVersion: Union[None, str]=None,
34545
+ ):
34546
+ super().__init__()
34547
+
34548
+ self.enabled = enabled
34549
+ self.config = config
34550
+ self.configVersion = configVersion
34551
+
34552
+ def _restore_defaults(self) -> None:
34553
+ self.enabled = bool()
34554
+ self.config = self.RECORD_SCHEMA.fields_dict["config"].default
34555
+ self.configVersion = self.RECORD_SCHEMA.fields_dict["configVersion"].default
34556
+
34557
+
34558
+ @property
34559
+ def enabled(self) -> bool:
34560
+ # No docs available.
34561
+ return self._inner_dict.get('enabled') # type: ignore
34562
+
34563
+ @enabled.setter
34564
+ def enabled(self, value: bool) -> None:
34565
+ self._inner_dict['enabled'] = value
34566
+
34567
+
34568
+ @property
34569
+ def config(self) -> Union[None, str]:
34570
+ """The configuration for the feature, in JSON format."""
34571
+ return self._inner_dict.get('config') # type: ignore
34572
+
34573
+ @config.setter
34574
+ def config(self, value: Union[None, str]) -> None:
34575
+ self._inner_dict['config'] = value
34576
+
34577
+
34578
+ @property
34579
+ def configVersion(self) -> Union[None, str]:
34580
+ """The version of the configuration schema that has been used to serialize
34581
+ the config.
34582
+ If not provided, the version is assumed to be the latest version."""
34583
+ return self._inner_dict.get('configVersion') # type: ignore
34584
+
34585
+ @configVersion.setter
34586
+ def configVersion(self, value: Union[None, str]) -> None:
34587
+ self._inner_dict['configVersion'] = value
34588
+
34589
+
34187
34590
  class DocPropagationFeatureSettingsClass(DictWrapper):
34188
34591
  # No docs available.
34189
34592
 
@@ -34308,6 +34711,31 @@ class EmailIntegrationSettingsClass(DictWrapper):
34308
34711
  self._inner_dict['defaultEmail'] = value
34309
34712
 
34310
34713
 
34714
+ class GlobalHomePageSettingsClass(DictWrapper):
34715
+ """Global settings related to the home page for an instance"""
34716
+
34717
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings")
34718
+ def __init__(self,
34719
+ defaultTemplate: str,
34720
+ ):
34721
+ super().__init__()
34722
+
34723
+ self.defaultTemplate = defaultTemplate
34724
+
34725
+ def _restore_defaults(self) -> None:
34726
+ self.defaultTemplate = str()
34727
+
34728
+
34729
+ @property
34730
+ def defaultTemplate(self) -> str:
34731
+ """The urn that will be rendered in the UI by default for all users"""
34732
+ return self._inner_dict.get('defaultTemplate') # type: ignore
34733
+
34734
+ @defaultTemplate.setter
34735
+ def defaultTemplate(self, value: str) -> None:
34736
+ self._inner_dict['defaultTemplate'] = value
34737
+
34738
+
34311
34739
  class GlobalIncidentsSettingsClass(DictWrapper):
34312
34740
  # No docs available.
34313
34741
 
@@ -34441,6 +34869,8 @@ class GlobalSettingsInfoClass(_Aspect):
34441
34869
  sso: Union[None, "SsoSettingsClass"]=None,
34442
34870
  views: Union[None, "GlobalViewsSettingsClass"]=None,
34443
34871
  docPropagation: Optional[Union["DocPropagationFeatureSettingsClass", None]]=None,
34872
+ homePage: Union[None, "GlobalHomePageSettingsClass"]=None,
34873
+ applications: Union[None, "ApplicationsSettingsClass"]=None,
34444
34874
  documentationAi: Union[None, "DocumentationAiSettingsClass"]=None,
34445
34875
  visual: Union[None, "GlobalVisualSettingsClass"]=None,
34446
34876
  ):
@@ -34455,6 +34885,8 @@ class GlobalSettingsInfoClass(_Aspect):
34455
34885
  self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
34456
34886
  else:
34457
34887
  self.docPropagation = docPropagation
34888
+ self.homePage = homePage
34889
+ self.applications = applications
34458
34890
  self.documentationAi = documentationAi
34459
34891
  self.visual = visual
34460
34892
 
@@ -34464,6 +34896,8 @@ class GlobalSettingsInfoClass(_Aspect):
34464
34896
  self.sso = self.RECORD_SCHEMA.fields_dict["sso"].default
34465
34897
  self.views = self.RECORD_SCHEMA.fields_dict["views"].default
34466
34898
  self.docPropagation = _json_converter.from_json_object(self.RECORD_SCHEMA.fields_dict["docPropagation"].default, writers_schema=self.RECORD_SCHEMA.fields_dict["docPropagation"].type)
34899
+ self.homePage = self.RECORD_SCHEMA.fields_dict["homePage"].default
34900
+ self.applications = self.RECORD_SCHEMA.fields_dict["applications"].default
34467
34901
  self.documentationAi = self.RECORD_SCHEMA.fields_dict["documentationAi"].default
34468
34902
  self.visual = self.RECORD_SCHEMA.fields_dict["visual"].default
34469
34903
 
@@ -34518,6 +34952,26 @@ class GlobalSettingsInfoClass(_Aspect):
34518
34952
  self._inner_dict['docPropagation'] = value
34519
34953
 
34520
34954
 
34955
+ @property
34956
+ def homePage(self) -> Union[None, "GlobalHomePageSettingsClass"]:
34957
+ """Global settings related to the home page for an instance"""
34958
+ return self._inner_dict.get('homePage') # type: ignore
34959
+
34960
+ @homePage.setter
34961
+ def homePage(self, value: Union[None, "GlobalHomePageSettingsClass"]) -> None:
34962
+ self._inner_dict['homePage'] = value
34963
+
34964
+
34965
+ @property
34966
+ def applications(self) -> Union[None, "ApplicationsSettingsClass"]:
34967
+ """Settings related to applications. If not enabled, applications won't show up in navigation"""
34968
+ return self._inner_dict.get('applications') # type: ignore
34969
+
34970
+ @applications.setter
34971
+ def applications(self, value: Union[None, "ApplicationsSettingsClass"]) -> None:
34972
+ self._inner_dict['applications'] = value
34973
+
34974
+
34521
34975
  @property
34522
34976
  def documentationAi(self) -> Union[None, "DocumentationAiSettingsClass"]:
34523
34977
  """Settings related to AI-powered documentation."""
@@ -35955,6 +36409,181 @@ class TelemetryClientIdClass(_Aspect):
35955
36409
  self._inner_dict['clientId'] = value
35956
36410
 
35957
36411
 
36412
+ class DataHubPageTemplatePropertiesClass(_Aspect):
36413
+ """The main properties of a DataHub page template"""
36414
+
36415
+
36416
+ ASPECT_NAME = 'dataHubPageTemplateProperties'
36417
+ ASPECT_INFO = {}
36418
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties")
36419
+
36420
+ def __init__(self,
36421
+ rows: List["DataHubPageTemplateRowClass"],
36422
+ surface: "DataHubPageTemplateSurfaceClass",
36423
+ visibility: "DataHubPageTemplateVisibilityClass",
36424
+ created: "AuditStampClass",
36425
+ lastModified: "AuditStampClass",
36426
+ ):
36427
+ super().__init__()
36428
+
36429
+ self.rows = rows
36430
+ self.surface = surface
36431
+ self.visibility = visibility
36432
+ self.created = created
36433
+ self.lastModified = lastModified
36434
+
36435
+ def _restore_defaults(self) -> None:
36436
+ self.rows = list()
36437
+ self.surface = DataHubPageTemplateSurfaceClass._construct_with_defaults()
36438
+ self.visibility = DataHubPageTemplateVisibilityClass._construct_with_defaults()
36439
+ self.created = AuditStampClass._construct_with_defaults()
36440
+ self.lastModified = AuditStampClass._construct_with_defaults()
36441
+
36442
+
36443
+ @property
36444
+ def rows(self) -> List["DataHubPageTemplateRowClass"]:
36445
+ """The rows of modules contained in this template"""
36446
+ return self._inner_dict.get('rows') # type: ignore
36447
+
36448
+ @rows.setter
36449
+ def rows(self, value: List["DataHubPageTemplateRowClass"]) -> None:
36450
+ self._inner_dict['rows'] = value
36451
+
36452
+
36453
+ @property
36454
+ def surface(self) -> "DataHubPageTemplateSurfaceClass":
36455
+ """Info about the surface area of the product that this template is deployed in"""
36456
+ return self._inner_dict.get('surface') # type: ignore
36457
+
36458
+ @surface.setter
36459
+ def surface(self, value: "DataHubPageTemplateSurfaceClass") -> None:
36460
+ self._inner_dict['surface'] = value
36461
+
36462
+
36463
+ @property
36464
+ def visibility(self) -> "DataHubPageTemplateVisibilityClass":
36465
+ """Info about the visibility of this template"""
36466
+ return self._inner_dict.get('visibility') # type: ignore
36467
+
36468
+ @visibility.setter
36469
+ def visibility(self, value: "DataHubPageTemplateVisibilityClass") -> None:
36470
+ self._inner_dict['visibility'] = value
36471
+
36472
+
36473
+ @property
36474
+ def created(self) -> "AuditStampClass":
36475
+ """Audit stamp for when and by whom this template was created"""
36476
+ return self._inner_dict.get('created') # type: ignore
36477
+
36478
+ @created.setter
36479
+ def created(self, value: "AuditStampClass") -> None:
36480
+ self._inner_dict['created'] = value
36481
+
36482
+
36483
+ @property
36484
+ def lastModified(self) -> "AuditStampClass":
36485
+ """Audit stamp for when and by whom this template was last updated"""
36486
+ return self._inner_dict.get('lastModified') # type: ignore
36487
+
36488
+ @lastModified.setter
36489
+ def lastModified(self, value: "AuditStampClass") -> None:
36490
+ self._inner_dict['lastModified'] = value
36491
+
36492
+
36493
+ class DataHubPageTemplateRowClass(DictWrapper):
36494
+ """A row of modules contained in a template"""
36495
+
36496
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateRow")
36497
+ def __init__(self,
36498
+ modules: List[str],
36499
+ ):
36500
+ super().__init__()
36501
+
36502
+ self.modules = modules
36503
+
36504
+ def _restore_defaults(self) -> None:
36505
+ self.modules = list()
36506
+
36507
+
36508
+ @property
36509
+ def modules(self) -> List[str]:
36510
+ """The modules that exist in this template row"""
36511
+ return self._inner_dict.get('modules') # type: ignore
36512
+
36513
+ @modules.setter
36514
+ def modules(self, value: List[str]) -> None:
36515
+ self._inner_dict['modules'] = value
36516
+
36517
+
36518
+ class DataHubPageTemplateSurfaceClass(DictWrapper):
36519
+ """Info about the surface area of the product that this template is deployed in"""
36520
+
36521
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface")
36522
+ def __init__(self,
36523
+ surfaceType: Union[str, "PageTemplateSurfaceTypeClass"],
36524
+ ):
36525
+ super().__init__()
36526
+
36527
+ self.surfaceType = surfaceType
36528
+
36529
+ def _restore_defaults(self) -> None:
36530
+ self.surfaceType = PageTemplateSurfaceTypeClass.HOME_PAGE
36531
+
36532
+
36533
+ @property
36534
+ def surfaceType(self) -> Union[str, "PageTemplateSurfaceTypeClass"]:
36535
+ """Where exactly is this template being used"""
36536
+ return self._inner_dict.get('surfaceType') # type: ignore
36537
+
36538
+ @surfaceType.setter
36539
+ def surfaceType(self, value: Union[str, "PageTemplateSurfaceTypeClass"]) -> None:
36540
+ self._inner_dict['surfaceType'] = value
36541
+
36542
+
36543
+ class DataHubPageTemplateVisibilityClass(DictWrapper):
36544
+ """Info about the visibility of this template"""
36545
+
36546
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility")
36547
+ def __init__(self,
36548
+ scope: Union[str, "PageTemplateScopeClass"],
36549
+ ):
36550
+ super().__init__()
36551
+
36552
+ self.scope = scope
36553
+
36554
+ def _restore_defaults(self) -> None:
36555
+ self.scope = PageTemplateScopeClass.PERSONAL
36556
+
36557
+
36558
+ @property
36559
+ def scope(self) -> Union[str, "PageTemplateScopeClass"]:
36560
+ """The scope of this template and who can use/see it"""
36561
+ return self._inner_dict.get('scope') # type: ignore
36562
+
36563
+ @scope.setter
36564
+ def scope(self, value: Union[str, "PageTemplateScopeClass"]) -> None:
36565
+ self._inner_dict['scope'] = value
36566
+
36567
+
36568
+ class PageTemplateScopeClass(object):
36569
+ # No docs available.
36570
+
36571
+ PERSONAL = "PERSONAL"
36572
+ """This template is used for individual use only"""
36573
+
36574
+ GLOBAL = "GLOBAL"
36575
+ """This template is used across users"""
36576
+
36577
+
36578
+
36579
+ class PageTemplateSurfaceTypeClass(object):
36580
+ # No docs available.
36581
+
36582
+ HOME_PAGE = "HOME_PAGE"
36583
+ """This template applies to what to display on the home page for users."""
36584
+
36585
+
36586
+
35958
36587
  class BatchTestRunEventClass(_Aspect):
35959
36588
  """An event representing the current status of evaluating a batch metadata test (run offline)"""
35960
36589
 
@@ -37962,6 +38591,7 @@ __SCHEMA_TYPES = {
37962
38591
  'com.linkedin.pegasus2avro.identity.CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
37963
38592
  'com.linkedin.pegasus2avro.identity.CorpUserCredentials': CorpUserCredentialsClass,
37964
38593
  'com.linkedin.pegasus2avro.identity.CorpUserEditableInfo': CorpUserEditableInfoClass,
38594
+ 'com.linkedin.pegasus2avro.identity.CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
37965
38595
  'com.linkedin.pegasus2avro.identity.CorpUserInfo': CorpUserInfoClass,
37966
38596
  'com.linkedin.pegasus2avro.identity.CorpUserSettings': CorpUserSettingsClass,
37967
38597
  'com.linkedin.pegasus2avro.identity.CorpUserStatus': CorpUserStatusClass,
@@ -38021,6 +38651,8 @@ __SCHEMA_TYPES = {
38021
38651
  'com.linkedin.pegasus2avro.metadata.key.DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
38022
38652
  'com.linkedin.pegasus2avro.metadata.key.DataHubMetricCubeKey': DataHubMetricCubeKeyClass,
38023
38653
  'com.linkedin.pegasus2avro.metadata.key.DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
38654
+ 'com.linkedin.pegasus2avro.metadata.key.DataHubPageModuleKey': DataHubPageModuleKeyClass,
38655
+ 'com.linkedin.pegasus2avro.metadata.key.DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
38024
38656
  'com.linkedin.pegasus2avro.metadata.key.DataHubPersonaKey': DataHubPersonaKeyClass,
38025
38657
  'com.linkedin.pegasus2avro.metadata.key.DataHubPolicyKey': DataHubPolicyKeyClass,
38026
38658
  'com.linkedin.pegasus2avro.metadata.key.DataHubRetentionKey': DataHubRetentionKeyClass,
@@ -38145,6 +38777,13 @@ __SCHEMA_TYPES = {
38145
38777
  'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrl': SourceCodeUrlClass,
38146
38778
  'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrlType': SourceCodeUrlTypeClass,
38147
38779
  'com.linkedin.pegasus2avro.ml.metadata.TrainingData': TrainingDataClass,
38780
+ 'com.linkedin.pegasus2avro.module.DataHubPageModuleParams': DataHubPageModuleParamsClass,
38781
+ 'com.linkedin.pegasus2avro.module.DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
38782
+ 'com.linkedin.pegasus2avro.module.DataHubPageModuleType': DataHubPageModuleTypeClass,
38783
+ 'com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
38784
+ 'com.linkedin.pegasus2avro.module.LinkModuleParams': LinkModuleParamsClass,
38785
+ 'com.linkedin.pegasus2avro.module.PageModuleScope': PageModuleScopeClass,
38786
+ 'com.linkedin.pegasus2avro.module.RichTextModuleParams': RichTextModuleParamsClass,
38148
38787
  'com.linkedin.pegasus2avro.monitor.AssertionEvaluationContext': AssertionEvaluationContextClass,
38149
38788
  'com.linkedin.pegasus2avro.monitor.AssertionEvaluationParameters': AssertionEvaluationParametersClass,
38150
38789
  'com.linkedin.pegasus2avro.monitor.AssertionEvaluationParametersType': AssertionEvaluationParametersTypeClass,
@@ -38270,9 +38909,11 @@ __SCHEMA_TYPES = {
38270
38909
  'com.linkedin.pegasus2avro.secret.DataHubSecretValue': DataHubSecretValueClass,
38271
38910
  'com.linkedin.pegasus2avro.settings.NotificationSetting': NotificationSettingClass,
38272
38911
  'com.linkedin.pegasus2avro.settings.NotificationSettingValue': NotificationSettingValueClass,
38912
+ 'com.linkedin.pegasus2avro.settings.global.ApplicationsSettings': ApplicationsSettingsClass,
38273
38913
  'com.linkedin.pegasus2avro.settings.global.DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
38274
38914
  'com.linkedin.pegasus2avro.settings.global.DocumentationAiSettings': DocumentationAiSettingsClass,
38275
38915
  'com.linkedin.pegasus2avro.settings.global.EmailIntegrationSettings': EmailIntegrationSettingsClass,
38916
+ 'com.linkedin.pegasus2avro.settings.global.GlobalHomePageSettings': GlobalHomePageSettingsClass,
38276
38917
  'com.linkedin.pegasus2avro.settings.global.GlobalIncidentsSettings': GlobalIncidentsSettingsClass,
38277
38918
  'com.linkedin.pegasus2avro.settings.global.GlobalIntegrationSettings': GlobalIntegrationSettingsClass,
38278
38919
  'com.linkedin.pegasus2avro.settings.global.GlobalNotificationSettings': GlobalNotificationSettingsClass,
@@ -38300,6 +38941,12 @@ __SCHEMA_TYPES = {
38300
38941
  'com.linkedin.pegasus2avro.subscription.SubscriptionType': SubscriptionTypeClass,
38301
38942
  'com.linkedin.pegasus2avro.tag.TagProperties': TagPropertiesClass,
38302
38943
  'com.linkedin.pegasus2avro.telemetry.TelemetryClientId': TelemetryClientIdClass,
38944
+ 'com.linkedin.pegasus2avro.template.DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
38945
+ 'com.linkedin.pegasus2avro.template.DataHubPageTemplateRow': DataHubPageTemplateRowClass,
38946
+ 'com.linkedin.pegasus2avro.template.DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
38947
+ 'com.linkedin.pegasus2avro.template.DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
38948
+ 'com.linkedin.pegasus2avro.template.PageTemplateScope': PageTemplateScopeClass,
38949
+ 'com.linkedin.pegasus2avro.template.PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
38303
38950
  'com.linkedin.pegasus2avro.test.BatchTestRunEvent': BatchTestRunEventClass,
38304
38951
  'com.linkedin.pegasus2avro.test.BatchTestRunResult': BatchTestRunResultClass,
38305
38952
  'com.linkedin.pegasus2avro.test.BatchTestRunStatus': BatchTestRunStatusClass,
@@ -38679,6 +39326,7 @@ __SCHEMA_TYPES = {
38679
39326
  'CorpUserAppearanceSettings': CorpUserAppearanceSettingsClass,
38680
39327
  'CorpUserCredentials': CorpUserCredentialsClass,
38681
39328
  'CorpUserEditableInfo': CorpUserEditableInfoClass,
39329
+ 'CorpUserHomePageSettings': CorpUserHomePageSettingsClass,
38682
39330
  'CorpUserInfo': CorpUserInfoClass,
38683
39331
  'CorpUserSettings': CorpUserSettingsClass,
38684
39332
  'CorpUserStatus': CorpUserStatusClass,
@@ -38738,6 +39386,8 @@ __SCHEMA_TYPES = {
38738
39386
  'DataHubIngestionSourceKey': DataHubIngestionSourceKeyClass,
38739
39387
  'DataHubMetricCubeKey': DataHubMetricCubeKeyClass,
38740
39388
  'DataHubOpenAPISchemaKey': DataHubOpenAPISchemaKeyClass,
39389
+ 'DataHubPageModuleKey': DataHubPageModuleKeyClass,
39390
+ 'DataHubPageTemplateKey': DataHubPageTemplateKeyClass,
38741
39391
  'DataHubPersonaKey': DataHubPersonaKeyClass,
38742
39392
  'DataHubPolicyKey': DataHubPolicyKeyClass,
38743
39393
  'DataHubRetentionKey': DataHubRetentionKeyClass,
@@ -38862,6 +39512,13 @@ __SCHEMA_TYPES = {
38862
39512
  'SourceCodeUrl': SourceCodeUrlClass,
38863
39513
  'SourceCodeUrlType': SourceCodeUrlTypeClass,
38864
39514
  'TrainingData': TrainingDataClass,
39515
+ 'DataHubPageModuleParams': DataHubPageModuleParamsClass,
39516
+ 'DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
39517
+ 'DataHubPageModuleType': DataHubPageModuleTypeClass,
39518
+ 'DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
39519
+ 'LinkModuleParams': LinkModuleParamsClass,
39520
+ 'PageModuleScope': PageModuleScopeClass,
39521
+ 'RichTextModuleParams': RichTextModuleParamsClass,
38865
39522
  'AssertionEvaluationContext': AssertionEvaluationContextClass,
38866
39523
  'AssertionEvaluationParameters': AssertionEvaluationParametersClass,
38867
39524
  'AssertionEvaluationParametersType': AssertionEvaluationParametersTypeClass,
@@ -38987,9 +39644,11 @@ __SCHEMA_TYPES = {
38987
39644
  'DataHubSecretValue': DataHubSecretValueClass,
38988
39645
  'NotificationSetting': NotificationSettingClass,
38989
39646
  'NotificationSettingValue': NotificationSettingValueClass,
39647
+ 'ApplicationsSettings': ApplicationsSettingsClass,
38990
39648
  'DocPropagationFeatureSettings': DocPropagationFeatureSettingsClass,
38991
39649
  'DocumentationAiSettings': DocumentationAiSettingsClass,
38992
39650
  'EmailIntegrationSettings': EmailIntegrationSettingsClass,
39651
+ 'GlobalHomePageSettings': GlobalHomePageSettingsClass,
38993
39652
  'GlobalIncidentsSettings': GlobalIncidentsSettingsClass,
38994
39653
  'GlobalIntegrationSettings': GlobalIntegrationSettingsClass,
38995
39654
  'GlobalNotificationSettings': GlobalNotificationSettingsClass,
@@ -39017,6 +39676,12 @@ __SCHEMA_TYPES = {
39017
39676
  'SubscriptionType': SubscriptionTypeClass,
39018
39677
  'TagProperties': TagPropertiesClass,
39019
39678
  'TelemetryClientId': TelemetryClientIdClass,
39679
+ 'DataHubPageTemplateProperties': DataHubPageTemplatePropertiesClass,
39680
+ 'DataHubPageTemplateRow': DataHubPageTemplateRowClass,
39681
+ 'DataHubPageTemplateSurface': DataHubPageTemplateSurfaceClass,
39682
+ 'DataHubPageTemplateVisibility': DataHubPageTemplateVisibilityClass,
39683
+ 'PageTemplateScope': PageTemplateScopeClass,
39684
+ 'PageTemplateSurfaceType': PageTemplateSurfaceTypeClass,
39020
39685
  'BatchTestRunEvent': BatchTestRunEventClass,
39021
39686
  'BatchTestRunResult': BatchTestRunResultClass,
39022
39687
  'BatchTestRunStatus': BatchTestRunStatusClass,
@@ -39137,6 +39802,7 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
39137
39802
  VersionSetKeyClass,
39138
39803
  AnomalyKeyClass,
39139
39804
  ChartKeyClass,
39805
+ DataHubPageTemplateKeyClass,
39140
39806
  OwnershipTypeKeyClass,
39141
39807
  RemoteExecutorPoolKeyClass,
39142
39808
  GenericEntityKeyClass,
@@ -39171,6 +39837,7 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
39171
39837
  GlobalSettingsKeyClass,
39172
39838
  RemoteExecutorGlobalConfigKeyClass,
39173
39839
  ContainerKeyClass,
39840
+ DataHubPageModuleKeyClass,
39174
39841
  LineageFeaturesClass,
39175
39842
  StorageFeaturesClass,
39176
39843
  UsageFeaturesClass,
@@ -39311,6 +39978,7 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
39311
39978
  DataProcessInstanceRelationshipsClass,
39312
39979
  DataProcessInstancePropertiesClass,
39313
39980
  RemoteExecutorPoolGlobalConfigClass,
39981
+ DataHubPageTemplatePropertiesClass,
39314
39982
  InferredMetadataClass,
39315
39983
  SchemaFieldsInferredMetadataClass,
39316
39984
  InferredNeighborsClass,
@@ -39326,6 +39994,7 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
39326
39994
  StructuredPropertySettingsClass,
39327
39995
  StructuredPropertiesClass,
39328
39996
  StructuredPropertyDefinitionClass,
39997
+ DataHubPageModulePropertiesClass,
39329
39998
  ExecutionRequestResultClass,
39330
39999
  ExecutionRequestInputClass,
39331
40000
  ExecutionRequestSignalClass,
@@ -39348,7 +40017,7 @@ ASPECT_NAME_MAP: Dict[str, Type[_Aspect]] = {
39348
40017
  for aspect in ASPECT_CLASSES
39349
40018
  }
39350
40019
 
39351
- from typing import Literal
40020
+ from typing import Literal, Set
39352
40021
  from typing_extensions import TypedDict
39353
40022
 
39354
40023
  class AspectBag(TypedDict, total=False):
@@ -39424,6 +40093,7 @@ class AspectBag(TypedDict, total=False):
39424
40093
  versionSetKey: VersionSetKeyClass
39425
40094
  anomalyKey: AnomalyKeyClass
39426
40095
  chartKey: ChartKeyClass
40096
+ dataHubPageTemplateKey: DataHubPageTemplateKeyClass
39427
40097
  ownershipTypeKey: OwnershipTypeKeyClass
39428
40098
  dataHubRemoteExecutorPoolKey: RemoteExecutorPoolKeyClass
39429
40099
  genericEntityKey: GenericEntityKeyClass
@@ -39458,6 +40128,7 @@ class AspectBag(TypedDict, total=False):
39458
40128
  globalSettingsKey: GlobalSettingsKeyClass
39459
40129
  dataHubRemoteExecutorGlobalConfigKey: RemoteExecutorGlobalConfigKeyClass
39460
40130
  containerKey: ContainerKeyClass
40131
+ dataHubPageModuleKey: DataHubPageModuleKeyClass
39461
40132
  lineageFeatures: LineageFeaturesClass
39462
40133
  storageFeatures: StorageFeaturesClass
39463
40134
  usageFeatures: UsageFeaturesClass
@@ -39598,6 +40269,7 @@ class AspectBag(TypedDict, total=False):
39598
40269
  dataProcessInstanceRelationships: DataProcessInstanceRelationshipsClass
39599
40270
  dataProcessInstanceProperties: DataProcessInstancePropertiesClass
39600
40271
  dataHubRemoteExecutorPoolGlobalConfig: RemoteExecutorPoolGlobalConfigClass
40272
+ dataHubPageTemplateProperties: DataHubPageTemplatePropertiesClass
39601
40273
  inferredMetadata: InferredMetadataClass
39602
40274
  schemaFieldsInferredMetadata: SchemaFieldsInferredMetadataClass
39603
40275
  inferredNeighbors: InferredNeighborsClass
@@ -39613,6 +40285,7 @@ class AspectBag(TypedDict, total=False):
39613
40285
  structuredPropertySettings: StructuredPropertySettingsClass
39614
40286
  structuredProperties: StructuredPropertiesClass
39615
40287
  propertyDefinition: StructuredPropertyDefinitionClass
40288
+ dataHubPageModuleProperties: DataHubPageModulePropertiesClass
39616
40289
  dataHubExecutionRequestResult: ExecutionRequestResultClass
39617
40290
  dataHubExecutionRequestInput: ExecutionRequestInputClass
39618
40291
  dataHubExecutionRequestSignal: ExecutionRequestSignalClass
@@ -39663,6 +40336,7 @@ KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
39663
40336
  'corpGroup': CorpGroupKeyClass,
39664
40337
  'versionSet': VersionSetKeyClass,
39665
40338
  'chart': ChartKeyClass,
40339
+ 'dataHubPageTemplate': DataHubPageTemplateKeyClass,
39666
40340
  'ownershipType': OwnershipTypeKeyClass,
39667
40341
  'dataHubRemoteExecutorPool': RemoteExecutorPoolKeyClass,
39668
40342
  'telemetry': TelemetryKeyClass,
@@ -39696,6 +40370,7 @@ KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
39696
40370
  'globalSettings': GlobalSettingsKeyClass,
39697
40371
  'dataHubRemoteExecutorGlobalConfig': RemoteExecutorGlobalConfigKeyClass,
39698
40372
  'container': ContainerKeyClass,
40373
+ 'dataHubPageModule': DataHubPageModuleKeyClass,
39699
40374
  'entityType': EntityTypeKeyClass,
39700
40375
  'dataProduct': DataProductKeyClass,
39701
40376
  'application': ApplicationKeyClass,
@@ -39703,6 +40378,8 @@ KEY_ASPECTS: Dict[str, Type[_Aspect]] = {
39703
40378
  'structuredProperty': StructuredPropertyKeyClass
39704
40379
  }
39705
40380
 
40381
+ KEY_ASPECT_NAMES: Set[str] = {cls.ASPECT_NAME for cls in KEY_ASPECTS.values()}
40382
+
39706
40383
  ENTITY_TYPE_NAMES: List[str] = [
39707
40384
  'platformResource',
39708
40385
  'dataType',
@@ -39736,6 +40413,7 @@ ENTITY_TYPE_NAMES: List[str] = [
39736
40413
  'corpGroup',
39737
40414
  'versionSet',
39738
40415
  'chart',
40416
+ 'dataHubPageTemplate',
39739
40417
  'ownershipType',
39740
40418
  'dataHubRemoteExecutorPool',
39741
40419
  'telemetry',
@@ -39769,6 +40447,7 @@ ENTITY_TYPE_NAMES: List[str] = [
39769
40447
  'globalSettings',
39770
40448
  'dataHubRemoteExecutorGlobalConfig',
39771
40449
  'container',
40450
+ 'dataHubPageModule',
39772
40451
  'entityType',
39773
40452
  'dataProduct',
39774
40453
  'application',
@@ -39808,6 +40487,7 @@ EntityTypeName = Literal[
39808
40487
  'corpGroup',
39809
40488
  'versionSet',
39810
40489
  'chart',
40490
+ 'dataHubPageTemplate',
39811
40491
  'ownershipType',
39812
40492
  'dataHubRemoteExecutorPool',
39813
40493
  'telemetry',
@@ -39841,6 +40521,7 @@ EntityTypeName = Literal[
39841
40521
  'globalSettings',
39842
40522
  'dataHubRemoteExecutorGlobalConfig',
39843
40523
  'container',
40524
+ 'dataHubPageModule',
39844
40525
  'entityType',
39845
40526
  'dataProduct',
39846
40527
  'application',