acryl-datahub-cloud 0.3.13rc4__py3-none-any.whl → 0.3.13rc6__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 (26) hide show
  1. acryl_datahub_cloud/_codegen_config.json +1 -1
  2. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -0
  3. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
  4. acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +4 -0
  5. acryl_datahub_cloud/metadata/schema.avsc +210 -18
  6. acryl_datahub_cloud/metadata/schema_classes.py +289 -10
  7. acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +46 -0
  8. acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +25 -0
  9. acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +25 -0
  10. acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +10 -1
  11. acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +88 -7
  12. acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +1 -0
  13. acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +9 -0
  14. acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +140 -0
  15. acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +18 -0
  16. acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +62 -44
  17. acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +61 -0
  18. acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +25 -0
  19. acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +1 -12
  20. acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +1 -0
  21. acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +61 -0
  22. {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/METADATA +42 -42
  23. {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/RECORD +26 -24
  24. {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/WHEEL +0 -0
  25. {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/entry_points.txt +0 -0
  26. {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/top_level.txt +0 -0
@@ -3280,6 +3280,7 @@ class AssertionAnalyticsRunEventClass(_Aspect):
3280
3280
  asserteeGlossaryTerms: Union[None, List[str]]=None,
3281
3281
  asserteeOwners: Union[None, List[str]]=None,
3282
3282
  asserteeDataPlatform: Union[None, str]=None,
3283
+ asserteeContainer: Union[None, str]=None,
3283
3284
  asserteeDataPlatformInstance: Union[None, str]=None,
3284
3285
  asserteeSchemaFieldGlossaryTerms: Union[None, List[str]]=None,
3285
3286
  asserteeSchemaFieldTags: Union[None, List[str]]=None,
@@ -3298,6 +3299,7 @@ class AssertionAnalyticsRunEventClass(_Aspect):
3298
3299
  self.asserteeGlossaryTerms = asserteeGlossaryTerms
3299
3300
  self.asserteeOwners = asserteeOwners
3300
3301
  self.asserteeDataPlatform = asserteeDataPlatform
3302
+ self.asserteeContainer = asserteeContainer
3301
3303
  self.asserteeDataPlatformInstance = asserteeDataPlatformInstance
3302
3304
  self.asserteeSchemaFieldGlossaryTerms = asserteeSchemaFieldGlossaryTerms
3303
3305
  self.asserteeSchemaFieldTags = asserteeSchemaFieldTags
@@ -3324,6 +3326,7 @@ class AssertionAnalyticsRunEventClass(_Aspect):
3324
3326
  self.asserteeGlossaryTerms = self.RECORD_SCHEMA.fields_dict["asserteeGlossaryTerms"].default
3325
3327
  self.asserteeOwners = self.RECORD_SCHEMA.fields_dict["asserteeOwners"].default
3326
3328
  self.asserteeDataPlatform = self.RECORD_SCHEMA.fields_dict["asserteeDataPlatform"].default
3329
+ self.asserteeContainer = self.RECORD_SCHEMA.fields_dict["asserteeContainer"].default
3327
3330
  self.asserteeDataPlatformInstance = self.RECORD_SCHEMA.fields_dict["asserteeDataPlatformInstance"].default
3328
3331
  self.asserteeSchemaFieldGlossaryTerms = self.RECORD_SCHEMA.fields_dict["asserteeSchemaFieldGlossaryTerms"].default
3329
3332
  self.asserteeSchemaFieldTags = self.RECORD_SCHEMA.fields_dict["asserteeSchemaFieldTags"].default
@@ -3419,6 +3422,16 @@ class AssertionAnalyticsRunEventClass(_Aspect):
3419
3422
  self._inner_dict['asserteeDataPlatform'] = value
3420
3423
 
3421
3424
 
3425
+ @property
3426
+ def asserteeContainer(self) -> Union[None, str]:
3427
+ """The Container attached to the entity's parent Asset"""
3428
+ return self._inner_dict.get('asserteeContainer') # type: ignore
3429
+
3430
+ @asserteeContainer.setter
3431
+ def asserteeContainer(self, value: Union[None, str]) -> None:
3432
+ self._inner_dict['asserteeContainer'] = value
3433
+
3434
+
3422
3435
  @property
3423
3436
  def asserteeDataPlatformInstance(self) -> Union[None, str]:
3424
3437
  """Instance of the parent's data platform (e.g. db instance)"""
@@ -3978,6 +3991,7 @@ class AssertionInfoClass(_Aspect):
3978
3991
  source: Union[None, "AssertionSourceClass"]=None,
3979
3992
  lastUpdated: Union[None, "AuditStampClass"]=None,
3980
3993
  description: Union[None, str]=None,
3994
+ note: Union[None, "AssertionNoteClass"]=None,
3981
3995
  ):
3982
3996
  super().__init__()
3983
3997
 
@@ -3998,6 +4012,7 @@ class AssertionInfoClass(_Aspect):
3998
4012
  self.source = source
3999
4013
  self.lastUpdated = lastUpdated
4000
4014
  self.description = description
4015
+ self.note = note
4001
4016
 
4002
4017
  def _restore_defaults(self) -> None:
4003
4018
  self.customProperties = dict()
@@ -4013,6 +4028,7 @@ class AssertionInfoClass(_Aspect):
4013
4028
  self.source = self.RECORD_SCHEMA.fields_dict["source"].default
4014
4029
  self.lastUpdated = self.RECORD_SCHEMA.fields_dict["lastUpdated"].default
4015
4030
  self.description = self.RECORD_SCHEMA.fields_dict["description"].default
4031
+ self.note = self.RECORD_SCHEMA.fields_dict["note"].default
4016
4032
 
4017
4033
 
4018
4034
  @property
@@ -4149,6 +4165,17 @@ class AssertionInfoClass(_Aspect):
4149
4165
  self._inner_dict['description'] = value
4150
4166
 
4151
4167
 
4168
+ @property
4169
+ def note(self) -> Union[None, "AssertionNoteClass"]:
4170
+ """An optional note to give technical owners more context about the assertion, and how to troubleshoot it.
4171
+ The UI will render this in markdown format."""
4172
+ return self._inner_dict.get('note') # type: ignore
4173
+
4174
+ @note.setter
4175
+ def note(self, value: Union[None, "AssertionNoteClass"]) -> None:
4176
+ self._inner_dict['note'] = value
4177
+
4178
+
4152
4179
  class AssertionMetricClass(DictWrapper):
4153
4180
  # No docs available.
4154
4181
 
@@ -4212,6 +4239,44 @@ class AssertionMonitorSensitivityClass(DictWrapper):
4212
4239
  self._inner_dict['level'] = value
4213
4240
 
4214
4241
 
4242
+ class AssertionNoteClass(DictWrapper):
4243
+ # No docs available.
4244
+
4245
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.assertion.AssertionNote")
4246
+ def __init__(self,
4247
+ content: str,
4248
+ lastModified: "AuditStampClass",
4249
+ ):
4250
+ super().__init__()
4251
+
4252
+ self.content = content
4253
+ self.lastModified = lastModified
4254
+
4255
+ def _restore_defaults(self) -> None:
4256
+ self.content = str()
4257
+ self.lastModified = AuditStampClass._construct_with_defaults()
4258
+
4259
+
4260
+ @property
4261
+ def content(self) -> str:
4262
+ """The note to give technical owners more context about the assertion, and how to troubleshoot it."""
4263
+ return self._inner_dict.get('content') # type: ignore
4264
+
4265
+ @content.setter
4266
+ def content(self, value: str) -> None:
4267
+ self._inner_dict['content'] = value
4268
+
4269
+
4270
+ @property
4271
+ def lastModified(self) -> "AuditStampClass":
4272
+ """The time at which the note was last modified."""
4273
+ return self._inner_dict.get('lastModified') # type: ignore
4274
+
4275
+ @lastModified.setter
4276
+ def lastModified(self, value: "AuditStampClass") -> None:
4277
+ self._inner_dict['lastModified'] = value
4278
+
4279
+
4215
4280
  class AssertionResultClass(DictWrapper):
4216
4281
  """The result of running an assertion"""
4217
4282
 
@@ -22988,6 +23053,35 @@ class LinkPreviewTypeClass(object):
22988
23053
 
22989
23054
 
22990
23055
 
23056
+ class LogicalParentClass(_Aspect):
23057
+ # No docs available.
23058
+
23059
+
23060
+ ASPECT_NAME = 'logicalParent'
23061
+ ASPECT_INFO = {}
23062
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.logical.LogicalParent")
23063
+
23064
+ def __init__(self,
23065
+ parent: "EdgeClass",
23066
+ ):
23067
+ super().__init__()
23068
+
23069
+ self.parent = parent
23070
+
23071
+ def _restore_defaults(self) -> None:
23072
+ self.parent = EdgeClass._construct_with_defaults()
23073
+
23074
+
23075
+ @property
23076
+ def parent(self) -> "EdgeClass":
23077
+ # No docs available.
23078
+ return self._inner_dict.get('parent') # type: ignore
23079
+
23080
+ @parent.setter
23081
+ def parent(self, value: "EdgeClass") -> None:
23082
+ self._inner_dict['parent'] = value
23083
+
23084
+
22991
23085
  class ActionRequestKeyClass(_Aspect):
22992
23086
  """Key for an ActionRequest"""
22993
23087
 
@@ -24068,7 +24162,7 @@ class DatasetKeyClass(_Aspect):
24068
24162
 
24069
24163
 
24070
24164
  ASPECT_NAME = 'datasetKey'
24071
- 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', 'inferredNeighbors', 'inferredMetadata', 'schemaFieldsInferredMetadata', 'schemaFieldsInferredNeighbors', 'assertionsSummary', 'usageFeatures', 'storageFeatures', 'lineageFeatures', 'proposals', 'schemaProposals', 'anomaliesSummary', 'share', 'origin', 'documentation', 'entityInferenceMetadata'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
24165
+ 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', 'inferredNeighbors', 'inferredMetadata', 'schemaFieldsInferredMetadata', 'schemaFieldsInferredNeighbors', 'assertionsSummary', 'usageFeatures', 'storageFeatures', 'lineageFeatures', 'proposals', 'schemaProposals', 'anomaliesSummary', 'share', 'origin', 'documentation', 'entityInferenceMetadata'], 'entityDoc': 'Datasets represent logical or physical data assets stored or represented in various data platforms. Tables, Views, Streams are all instances of datasets.'}
24072
24166
  RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.DatasetKey")
24073
24167
 
24074
24168
  def __init__(self,
@@ -25096,7 +25190,7 @@ class SchemaFieldKeyClass(_Aspect):
25096
25190
 
25097
25191
 
25098
25192
  ASPECT_NAME = 'schemaFieldKey'
25099
- ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation', 'subTypes', 'schemaFieldProfile', 'lineageFeatures']}
25193
+ ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation', 'subTypes', 'logicalParent', 'schemaFieldProfile', 'lineageFeatures']}
25100
25194
  RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
25101
25195
 
25102
25196
  def __init__(self,
@@ -29345,6 +29439,31 @@ class TrainingDataClass(_Aspect):
29345
29439
  self._inner_dict['trainingData'] = value
29346
29440
 
29347
29441
 
29442
+ class AssetCollectionModuleParamsClass(DictWrapper):
29443
+ """The params required if the module is type ASSET_COLLECTION"""
29444
+
29445
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.AssetCollectionModuleParams")
29446
+ def __init__(self,
29447
+ assetUrns: List[str],
29448
+ ):
29449
+ super().__init__()
29450
+
29451
+ self.assetUrns = assetUrns
29452
+
29453
+ def _restore_defaults(self) -> None:
29454
+ self.assetUrns = list()
29455
+
29456
+
29457
+ @property
29458
+ def assetUrns(self) -> List[str]:
29459
+ # No docs available.
29460
+ return self._inner_dict.get('assetUrns') # type: ignore
29461
+
29462
+ @assetUrns.setter
29463
+ def assetUrns(self, value: List[str]) -> None:
29464
+ self._inner_dict['assetUrns'] = value
29465
+
29466
+
29348
29467
  class DataHubPageModuleParamsClass(DictWrapper):
29349
29468
  """The specific parameters stored for a module"""
29350
29469
 
@@ -29352,15 +29471,21 @@ class DataHubPageModuleParamsClass(DictWrapper):
29352
29471
  def __init__(self,
29353
29472
  linkParams: Union[None, "LinkModuleParamsClass"]=None,
29354
29473
  richTextParams: Union[None, "RichTextModuleParamsClass"]=None,
29474
+ assetCollectionParams: Union[None, "AssetCollectionModuleParamsClass"]=None,
29475
+ hierarchyViewParams: Union[None, "HierarchyModuleParamsClass"]=None,
29355
29476
  ):
29356
29477
  super().__init__()
29357
29478
 
29358
29479
  self.linkParams = linkParams
29359
29480
  self.richTextParams = richTextParams
29481
+ self.assetCollectionParams = assetCollectionParams
29482
+ self.hierarchyViewParams = hierarchyViewParams
29360
29483
 
29361
29484
  def _restore_defaults(self) -> None:
29362
29485
  self.linkParams = self.RECORD_SCHEMA.fields_dict["linkParams"].default
29363
29486
  self.richTextParams = self.RECORD_SCHEMA.fields_dict["richTextParams"].default
29487
+ self.assetCollectionParams = self.RECORD_SCHEMA.fields_dict["assetCollectionParams"].default
29488
+ self.hierarchyViewParams = self.RECORD_SCHEMA.fields_dict["hierarchyViewParams"].default
29364
29489
 
29365
29490
 
29366
29491
  @property
@@ -29383,6 +29508,26 @@ class DataHubPageModuleParamsClass(DictWrapper):
29383
29508
  self._inner_dict['richTextParams'] = value
29384
29509
 
29385
29510
 
29511
+ @property
29512
+ def assetCollectionParams(self) -> Union[None, "AssetCollectionModuleParamsClass"]:
29513
+ """The params required if the module is type ASSET_COLLECTION"""
29514
+ return self._inner_dict.get('assetCollectionParams') # type: ignore
29515
+
29516
+ @assetCollectionParams.setter
29517
+ def assetCollectionParams(self, value: Union[None, "AssetCollectionModuleParamsClass"]) -> None:
29518
+ self._inner_dict['assetCollectionParams'] = value
29519
+
29520
+
29521
+ @property
29522
+ def hierarchyViewParams(self) -> Union[None, "HierarchyModuleParamsClass"]:
29523
+ """The params required if the module is type HIERARCHY_VIEW"""
29524
+ return self._inner_dict.get('hierarchyViewParams') # type: ignore
29525
+
29526
+ @hierarchyViewParams.setter
29527
+ def hierarchyViewParams(self, value: Union[None, "HierarchyModuleParamsClass"]) -> None:
29528
+ self._inner_dict['hierarchyViewParams'] = value
29529
+
29530
+
29386
29531
  class DataHubPageModulePropertiesClass(_Aspect):
29387
29532
  """The main properties of a DataHub page module"""
29388
29533
 
@@ -29498,6 +29643,9 @@ class DataHubPageModuleTypeClass(object):
29498
29643
  DOMAINS = "DOMAINS"
29499
29644
  """Module displaying the top domains"""
29500
29645
 
29646
+ SUBSCRIBED_ASSETS = "SUBSCRIBED_ASSETS"
29647
+ """Module displaying assets subscribed to by a given user"""
29648
+
29501
29649
 
29502
29650
 
29503
29651
  class DataHubPageModuleVisibilityClass(DictWrapper):
@@ -29525,29 +29673,110 @@ class DataHubPageModuleVisibilityClass(DictWrapper):
29525
29673
  self._inner_dict['scope'] = value
29526
29674
 
29527
29675
 
29676
+ class HierarchyModuleParamsClass(DictWrapper):
29677
+ """The params required if the module is type HIERARCHY_VIEW"""
29678
+
29679
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.HierarchyModuleParams")
29680
+ def __init__(self,
29681
+ showRelatedEntities: bool,
29682
+ assetUrns: Union[None, List[str]]=None,
29683
+ relatedEntitiesFilterJson: Union[None, str]=None,
29684
+ ):
29685
+ super().__init__()
29686
+
29687
+ self.assetUrns = assetUrns
29688
+ self.showRelatedEntities = showRelatedEntities
29689
+ self.relatedEntitiesFilterJson = relatedEntitiesFilterJson
29690
+
29691
+ def _restore_defaults(self) -> None:
29692
+ self.assetUrns = self.RECORD_SCHEMA.fields_dict["assetUrns"].default
29693
+ self.showRelatedEntities = bool()
29694
+ self.relatedEntitiesFilterJson = self.RECORD_SCHEMA.fields_dict["relatedEntitiesFilterJson"].default
29695
+
29696
+
29697
+ @property
29698
+ def assetUrns(self) -> Union[None, List[str]]:
29699
+ # No docs available.
29700
+ return self._inner_dict.get('assetUrns') # type: ignore
29701
+
29702
+ @assetUrns.setter
29703
+ def assetUrns(self, value: Union[None, List[str]]) -> None:
29704
+ self._inner_dict['assetUrns'] = value
29705
+
29706
+
29707
+ @property
29708
+ def showRelatedEntities(self) -> bool:
29709
+ # No docs available.
29710
+ return self._inner_dict.get('showRelatedEntities') # type: ignore
29711
+
29712
+ @showRelatedEntities.setter
29713
+ def showRelatedEntities(self, value: bool) -> None:
29714
+ self._inner_dict['showRelatedEntities'] = value
29715
+
29716
+
29717
+ @property
29718
+ def relatedEntitiesFilterJson(self) -> Union[None, str]:
29719
+ """Optional filters to filter relatedEntities (assetUrns) out
29720
+
29721
+ The stringified json representing the logical predicate built in the UI to select assets.
29722
+ This predicate is turned into orFilters to send through graphql since graphql doesn't support
29723
+ arbitrary nesting. This string is used to restore the UI for this logical predicate."""
29724
+ return self._inner_dict.get('relatedEntitiesFilterJson') # type: ignore
29725
+
29726
+ @relatedEntitiesFilterJson.setter
29727
+ def relatedEntitiesFilterJson(self, value: Union[None, str]) -> None:
29728
+ self._inner_dict['relatedEntitiesFilterJson'] = value
29729
+
29730
+
29528
29731
  class LinkModuleParamsClass(DictWrapper):
29529
29732
  # No docs available.
29530
29733
 
29531
29734
  RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.module.LinkModuleParams")
29532
29735
  def __init__(self,
29533
- linkUrn: str,
29736
+ linkUrl: str,
29737
+ imageUrl: Union[None, str]=None,
29738
+ description: Union[None, str]=None,
29534
29739
  ):
29535
29740
  super().__init__()
29536
29741
 
29537
- self.linkUrn = linkUrn
29742
+ self.linkUrl = linkUrl
29743
+ self.imageUrl = imageUrl
29744
+ self.description = description
29538
29745
 
29539
29746
  def _restore_defaults(self) -> None:
29540
- self.linkUrn = str()
29747
+ self.linkUrl = str()
29748
+ self.imageUrl = self.RECORD_SCHEMA.fields_dict["imageUrl"].default
29749
+ self.description = self.RECORD_SCHEMA.fields_dict["description"].default
29541
29750
 
29542
29751
 
29543
29752
  @property
29544
- def linkUrn(self) -> str:
29753
+ def linkUrl(self) -> str:
29545
29754
  # No docs available.
29546
- return self._inner_dict.get('linkUrn') # type: ignore
29755
+ return self._inner_dict.get('linkUrl') # type: ignore
29547
29756
 
29548
- @linkUrn.setter
29549
- def linkUrn(self, value: str) -> None:
29550
- self._inner_dict['linkUrn'] = value
29757
+ @linkUrl.setter
29758
+ def linkUrl(self, value: str) -> None:
29759
+ self._inner_dict['linkUrl'] = value
29760
+
29761
+
29762
+ @property
29763
+ def imageUrl(self) -> Union[None, str]:
29764
+ # No docs available.
29765
+ return self._inner_dict.get('imageUrl') # type: ignore
29766
+
29767
+ @imageUrl.setter
29768
+ def imageUrl(self, value: Union[None, str]) -> None:
29769
+ self._inner_dict['imageUrl'] = value
29770
+
29771
+
29772
+ @property
29773
+ def description(self) -> Union[None, str]:
29774
+ # No docs available.
29775
+ return self._inner_dict.get('description') # type: ignore
29776
+
29777
+ @description.setter
29778
+ def description(self, value: Union[None, str]) -> None:
29779
+ self._inner_dict['description'] = value
29551
29780
 
29552
29781
 
29553
29782
  class PageModuleScopeClass(object):
@@ -31484,6 +31713,8 @@ class SystemMetadataClass(_Aspect):
31484
31713
  registryVersion: Union[None, str]=None,
31485
31714
  properties: Union[None, Dict[str, str]]=None,
31486
31715
  version: Union[None, str]=None,
31716
+ aspectCreated: Union[None, "AuditStampClass"]=None,
31717
+ aspectModified: Union[None, "AuditStampClass"]=None,
31487
31718
  ):
31488
31719
  super().__init__()
31489
31720
 
@@ -31507,6 +31738,8 @@ class SystemMetadataClass(_Aspect):
31507
31738
  self.registryVersion = registryVersion
31508
31739
  self.properties = properties
31509
31740
  self.version = version
31741
+ self.aspectCreated = aspectCreated
31742
+ self.aspectModified = aspectModified
31510
31743
 
31511
31744
  def _restore_defaults(self) -> None:
31512
31745
  self.lastObserved = self.RECORD_SCHEMA.fields_dict["lastObserved"].default
@@ -31517,6 +31750,8 @@ class SystemMetadataClass(_Aspect):
31517
31750
  self.registryVersion = self.RECORD_SCHEMA.fields_dict["registryVersion"].default
31518
31751
  self.properties = self.RECORD_SCHEMA.fields_dict["properties"].default
31519
31752
  self.version = self.RECORD_SCHEMA.fields_dict["version"].default
31753
+ self.aspectCreated = self.RECORD_SCHEMA.fields_dict["aspectCreated"].default
31754
+ self.aspectModified = self.RECORD_SCHEMA.fields_dict["aspectModified"].default
31520
31755
 
31521
31756
 
31522
31757
  @property
@@ -31601,6 +31836,26 @@ class SystemMetadataClass(_Aspect):
31601
31836
  self._inner_dict['version'] = value
31602
31837
 
31603
31838
 
31839
+ @property
31840
+ def aspectCreated(self) -> Union[None, "AuditStampClass"]:
31841
+ """When the aspect was initially created and who created it, detected by version 0 -> 1 change"""
31842
+ return self._inner_dict.get('aspectCreated') # type: ignore
31843
+
31844
+ @aspectCreated.setter
31845
+ def aspectCreated(self, value: Union[None, "AuditStampClass"]) -> None:
31846
+ self._inner_dict['aspectCreated'] = value
31847
+
31848
+
31849
+ @property
31850
+ def aspectModified(self) -> Union[None, "AuditStampClass"]:
31851
+ """When the aspect was last modified and the actor that performed the modification"""
31852
+ return self._inner_dict.get('aspectModified') # type: ignore
31853
+
31854
+ @aspectModified.setter
31855
+ def aspectModified(self, value: Union[None, "AuditStampClass"]) -> None:
31856
+ self._inner_dict['aspectModified'] = value
31857
+
31858
+
31604
31859
  class ChartCellClass(DictWrapper):
31605
31860
  """Chart cell in a notebook, which will present content in chart format"""
31606
31861
 
@@ -36413,6 +36668,7 @@ class SlackIntegrationSettingsClass(DictWrapper):
36413
36668
  enabled: Optional[bool]=None,
36414
36669
  encryptedBotToken: Union[None, str]=None,
36415
36670
  defaultChannelName: Union[None, str]=None,
36671
+ datahubAtMentionEnabled: Union[None, bool]=None,
36416
36672
  ):
36417
36673
  super().__init__()
36418
36674
 
@@ -36423,11 +36679,13 @@ class SlackIntegrationSettingsClass(DictWrapper):
36423
36679
  self.enabled = enabled
36424
36680
  self.encryptedBotToken = encryptedBotToken
36425
36681
  self.defaultChannelName = defaultChannelName
36682
+ self.datahubAtMentionEnabled = datahubAtMentionEnabled
36426
36683
 
36427
36684
  def _restore_defaults(self) -> None:
36428
36685
  self.enabled = self.RECORD_SCHEMA.fields_dict["enabled"].default
36429
36686
  self.encryptedBotToken = self.RECORD_SCHEMA.fields_dict["encryptedBotToken"].default
36430
36687
  self.defaultChannelName = self.RECORD_SCHEMA.fields_dict["defaultChannelName"].default
36688
+ self.datahubAtMentionEnabled = self.RECORD_SCHEMA.fields_dict["datahubAtMentionEnabled"].default
36431
36689
 
36432
36690
 
36433
36691
  @property
@@ -36463,6 +36721,17 @@ class SlackIntegrationSettingsClass(DictWrapper):
36463
36721
  self._inner_dict['defaultChannelName'] = value
36464
36722
 
36465
36723
 
36724
+ @property
36725
+ def datahubAtMentionEnabled(self) -> Union[None, bool]:
36726
+ """Whether the Slack @DataHub bot mention functionality is enabled.
36727
+ If null, use the default value from feature flags."""
36728
+ return self._inner_dict.get('datahubAtMentionEnabled') # type: ignore
36729
+
36730
+ @datahubAtMentionEnabled.setter
36731
+ def datahubAtMentionEnabled(self, value: Union[None, bool]) -> None:
36732
+ self._inner_dict['datahubAtMentionEnabled'] = value
36733
+
36734
+
36466
36735
  class SsoSettingsClass(DictWrapper):
36467
36736
  """SSO Integrations, supported on the UI."""
36468
36737
 
@@ -39350,6 +39619,7 @@ __SCHEMA_TYPES = {
39350
39619
  'com.linkedin.pegasus2avro.assertion.AssertionInfo': AssertionInfoClass,
39351
39620
  'com.linkedin.pegasus2avro.assertion.AssertionMetric': AssertionMetricClass,
39352
39621
  'com.linkedin.pegasus2avro.assertion.AssertionMonitorSensitivity': AssertionMonitorSensitivityClass,
39622
+ 'com.linkedin.pegasus2avro.assertion.AssertionNote': AssertionNoteClass,
39353
39623
  'com.linkedin.pegasus2avro.assertion.AssertionResult': AssertionResultClass,
39354
39624
  'com.linkedin.pegasus2avro.assertion.AssertionResultError': AssertionResultErrorClass,
39355
39625
  'com.linkedin.pegasus2avro.assertion.AssertionResultErrorType': AssertionResultErrorTypeClass,
@@ -39681,6 +39951,7 @@ __SCHEMA_TYPES = {
39681
39951
  'com.linkedin.pegasus2avro.ingestion.DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
39682
39952
  'com.linkedin.pegasus2avro.link.LinkPreviewInfo': LinkPreviewInfoClass,
39683
39953
  'com.linkedin.pegasus2avro.link.LinkPreviewType': LinkPreviewTypeClass,
39954
+ 'com.linkedin.pegasus2avro.logical.LogicalParent': LogicalParentClass,
39684
39955
  'com.linkedin.pegasus2avro.metadata.key.ActionRequestKey': ActionRequestKeyClass,
39685
39956
  'com.linkedin.pegasus2avro.metadata.key.ActionWorkflowKey': ActionWorkflowKeyClass,
39686
39957
  'com.linkedin.pegasus2avro.metadata.key.AnomalyKey': AnomalyKeyClass,
@@ -39825,10 +40096,12 @@ __SCHEMA_TYPES = {
39825
40096
  'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrl': SourceCodeUrlClass,
39826
40097
  'com.linkedin.pegasus2avro.ml.metadata.SourceCodeUrlType': SourceCodeUrlTypeClass,
39827
40098
  'com.linkedin.pegasus2avro.ml.metadata.TrainingData': TrainingDataClass,
40099
+ 'com.linkedin.pegasus2avro.module.AssetCollectionModuleParams': AssetCollectionModuleParamsClass,
39828
40100
  'com.linkedin.pegasus2avro.module.DataHubPageModuleParams': DataHubPageModuleParamsClass,
39829
40101
  'com.linkedin.pegasus2avro.module.DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
39830
40102
  'com.linkedin.pegasus2avro.module.DataHubPageModuleType': DataHubPageModuleTypeClass,
39831
40103
  'com.linkedin.pegasus2avro.module.DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
40104
+ 'com.linkedin.pegasus2avro.module.HierarchyModuleParams': HierarchyModuleParamsClass,
39832
40105
  'com.linkedin.pegasus2avro.module.LinkModuleParams': LinkModuleParamsClass,
39833
40106
  'com.linkedin.pegasus2avro.module.PageModuleScope': PageModuleScopeClass,
39834
40107
  'com.linkedin.pegasus2avro.module.RichTextModuleParams': RichTextModuleParamsClass,
@@ -40106,6 +40379,7 @@ __SCHEMA_TYPES = {
40106
40379
  'AssertionInfo': AssertionInfoClass,
40107
40380
  'AssertionMetric': AssertionMetricClass,
40108
40381
  'AssertionMonitorSensitivity': AssertionMonitorSensitivityClass,
40382
+ 'AssertionNote': AssertionNoteClass,
40109
40383
  'AssertionResult': AssertionResultClass,
40110
40384
  'AssertionResultError': AssertionResultErrorClass,
40111
40385
  'AssertionResultErrorType': AssertionResultErrorTypeClass,
@@ -40437,6 +40711,7 @@ __SCHEMA_TYPES = {
40437
40711
  'DataHubIngestionSourceSourceType': DataHubIngestionSourceSourceTypeClass,
40438
40712
  'LinkPreviewInfo': LinkPreviewInfoClass,
40439
40713
  'LinkPreviewType': LinkPreviewTypeClass,
40714
+ 'LogicalParent': LogicalParentClass,
40440
40715
  'ActionRequestKey': ActionRequestKeyClass,
40441
40716
  'ActionWorkflowKey': ActionWorkflowKeyClass,
40442
40717
  'AnomalyKey': AnomalyKeyClass,
@@ -40581,10 +40856,12 @@ __SCHEMA_TYPES = {
40581
40856
  'SourceCodeUrl': SourceCodeUrlClass,
40582
40857
  'SourceCodeUrlType': SourceCodeUrlTypeClass,
40583
40858
  'TrainingData': TrainingDataClass,
40859
+ 'AssetCollectionModuleParams': AssetCollectionModuleParamsClass,
40584
40860
  'DataHubPageModuleParams': DataHubPageModuleParamsClass,
40585
40861
  'DataHubPageModuleProperties': DataHubPageModulePropertiesClass,
40586
40862
  'DataHubPageModuleType': DataHubPageModuleTypeClass,
40587
40863
  'DataHubPageModuleVisibility': DataHubPageModuleVisibilityClass,
40864
+ 'HierarchyModuleParams': HierarchyModuleParamsClass,
40588
40865
  'LinkModuleParams': LinkModuleParamsClass,
40589
40866
  'PageModuleScope': PageModuleScopeClass,
40590
40867
  'RichTextModuleParams': RichTextModuleParamsClass,
@@ -40961,6 +41238,7 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
40961
41238
  BusinessAttributeInfoClass,
40962
41239
  BusinessAttributeKeyClass,
40963
41240
  BusinessAttributesClass,
41241
+ LogicalParentClass,
40964
41242
  LinkPreviewInfoClass,
40965
41243
  GlobalSettingsInfoClass,
40966
41244
  TelemetryClientIdClass,
@@ -41254,6 +41532,7 @@ class AspectBag(TypedDict, total=False):
41254
41532
  businessAttributeInfo: BusinessAttributeInfoClass
41255
41533
  businessAttributeKey: BusinessAttributeKeyClass
41256
41534
  businessAttributes: BusinessAttributesClass
41535
+ logicalParent: LogicalParentClass
41257
41536
  linkPreviewInfo: LinkPreviewInfoClass
41258
41537
  globalSettingsInfo: GlobalSettingsInfoClass
41259
41538
  telemetryClientId: TelemetryClientIdClass
@@ -167,6 +167,27 @@
167
167
  "doc": "Data Platform for parent",
168
168
  "Urn": "Urn"
169
169
  },
170
+ {
171
+ "Searchable": {
172
+ "/*": {
173
+ "addToFilters": true,
174
+ "fieldType": "URN",
175
+ "hasValuesFieldName": "hasAsserteeContainer"
176
+ }
177
+ },
178
+ "TimeseriesField": {},
179
+ "java": {
180
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
181
+ },
182
+ "type": [
183
+ "null",
184
+ "string"
185
+ ],
186
+ "name": "asserteeContainer",
187
+ "default": null,
188
+ "doc": "The Container attached to the entity's parent Asset",
189
+ "Urn": "Urn"
190
+ },
170
191
  {
171
192
  "Searchable": {
172
193
  "addToFilters": true,
@@ -2960,6 +2981,31 @@
2960
2981
  "name": "description",
2961
2982
  "default": null,
2962
2983
  "doc": "An optional human-readable description of the assertion"
2984
+ },
2985
+ {
2986
+ "type": [
2987
+ "null",
2988
+ {
2989
+ "type": "record",
2990
+ "name": "AssertionNote",
2991
+ "namespace": "com.linkedin.pegasus2avro.assertion",
2992
+ "fields": [
2993
+ {
2994
+ "type": "string",
2995
+ "name": "content",
2996
+ "doc": "The note to give technical owners more context about the assertion, and how to troubleshoot it."
2997
+ },
2998
+ {
2999
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
3000
+ "name": "lastModified",
3001
+ "doc": "The time at which the note was last modified."
3002
+ }
3003
+ ]
3004
+ }
3005
+ ],
3006
+ "name": "note",
3007
+ "default": null,
3008
+ "doc": "An optional note to give technical owners more context about the assertion, and how to troubleshoot it.\nThe UI will render this in markdown format."
2963
3009
  }
2964
3010
  ],
2965
3011
  "doc": "Information about an assertion\n\nAcryl Only: Did you update AssertionWithoutAnnotations.pdl? If not, please update it."
@@ -2669,6 +2669,31 @@
2669
2669
  "name": "description",
2670
2670
  "default": null,
2671
2671
  "doc": "An optional human-readable description of the assertion"
2672
+ },
2673
+ {
2674
+ "type": [
2675
+ "null",
2676
+ {
2677
+ "type": "record",
2678
+ "name": "AssertionNote",
2679
+ "namespace": "com.linkedin.pegasus2avro.assertion",
2680
+ "fields": [
2681
+ {
2682
+ "type": "string",
2683
+ "name": "content",
2684
+ "doc": "The note to give technical owners more context about the assertion, and how to troubleshoot it."
2685
+ },
2686
+ {
2687
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
2688
+ "name": "lastModified",
2689
+ "doc": "The time at which the note was last modified."
2690
+ }
2691
+ ]
2692
+ }
2693
+ ],
2694
+ "name": "note",
2695
+ "default": null,
2696
+ "doc": "An optional note to give technical owners more context about the assertion, and how to troubleshoot it.\nThe UI will render this in markdown format."
2672
2697
  }
2673
2698
  ],
2674
2699
  "doc": "Information about an assertion\n\nAcryl Only: Did you update AssertionWithoutAnnotations.pdl? If not, please update it."
@@ -2760,6 +2760,31 @@
2760
2760
  "name": "description",
2761
2761
  "default": null,
2762
2762
  "doc": "An optional human-readable description of the assertion"
2763
+ },
2764
+ {
2765
+ "type": [
2766
+ "null",
2767
+ {
2768
+ "type": "record",
2769
+ "name": "AssertionNote",
2770
+ "namespace": "com.linkedin.pegasus2avro.assertion",
2771
+ "fields": [
2772
+ {
2773
+ "type": "string",
2774
+ "name": "content",
2775
+ "doc": "The note to give technical owners more context about the assertion, and how to troubleshoot it."
2776
+ },
2777
+ {
2778
+ "type": "com.linkedin.pegasus2avro.common.AuditStamp",
2779
+ "name": "lastModified",
2780
+ "doc": "The time at which the note was last modified."
2781
+ }
2782
+ ]
2783
+ }
2784
+ ],
2785
+ "name": "note",
2786
+ "default": null,
2787
+ "doc": "An optional note to give technical owners more context about the assertion, and how to troubleshoot it.\nThe UI will render this in markdown format."
2763
2788
  }
2764
2789
  ],
2765
2790
  "doc": "Information about an assertion\n\nAcryl Only: Did you update AssertionWithoutAnnotations.pdl? If not, please update it."