acryl-datahub 0.15.0.5rc6__py3-none-any.whl → 0.15.0.5rc7__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.

@@ -971,13 +971,15 @@ class AssertionSourceTypeClass(object):
971
971
  # No docs available.
972
972
 
973
973
  NATIVE = "NATIVE"
974
- """The assertion was defined natively on DataHub by a user."""
974
+ """The assertion was defined natively on DataHub by a user.
975
+ DataHub Cloud only"""
975
976
 
976
977
  EXTERNAL = "EXTERNAL"
977
978
  """The assertion was defined and managed externally of DataHub."""
978
979
 
979
980
  INFERRED = "INFERRED"
980
- """The assertion was inferred, e.g. from offline AI / ML models."""
981
+ """The assertion was inferred, e.g. from offline AI / ML models.
982
+ DataHub Cloud only"""
981
983
 
982
984
 
983
985
 
@@ -4120,6 +4122,7 @@ class DeprecationClass(_Aspect):
4120
4122
  note: str,
4121
4123
  actor: str,
4122
4124
  decommissionTime: Union[None, int]=None,
4125
+ replacement: Union[None, str]=None,
4123
4126
  ):
4124
4127
  super().__init__()
4125
4128
 
@@ -4127,12 +4130,14 @@ class DeprecationClass(_Aspect):
4127
4130
  self.decommissionTime = decommissionTime
4128
4131
  self.note = note
4129
4132
  self.actor = actor
4133
+ self.replacement = replacement
4130
4134
 
4131
4135
  def _restore_defaults(self) -> None:
4132
4136
  self.deprecated = bool()
4133
4137
  self.decommissionTime = self.RECORD_SCHEMA.fields_dict["decommissionTime"].default
4134
4138
  self.note = str()
4135
4139
  self.actor = str()
4140
+ self.replacement = self.RECORD_SCHEMA.fields_dict["replacement"].default
4136
4141
 
4137
4142
 
4138
4143
  @property
@@ -4175,6 +4180,58 @@ class DeprecationClass(_Aspect):
4175
4180
  self._inner_dict['actor'] = value
4176
4181
 
4177
4182
 
4183
+ @property
4184
+ def replacement(self) -> Union[None, str]:
4185
+ # No docs available.
4186
+ return self._inner_dict.get('replacement') # type: ignore
4187
+
4188
+ @replacement.setter
4189
+ def replacement(self, value: Union[None, str]) -> None:
4190
+ self._inner_dict['replacement'] = value
4191
+
4192
+
4193
+ class DisplayPropertiesClass(_Aspect):
4194
+ """Properties related to how the entity is displayed in the Datahub UI"""
4195
+
4196
+
4197
+ ASPECT_NAME = 'displayProperties'
4198
+ ASPECT_INFO = {}
4199
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.common.DisplayProperties")
4200
+
4201
+ def __init__(self,
4202
+ colorHex: Union[None, str]=None,
4203
+ icon: Union[None, "IconPropertiesClass"]=None,
4204
+ ):
4205
+ super().__init__()
4206
+
4207
+ self.colorHex = colorHex
4208
+ self.icon = icon
4209
+
4210
+ def _restore_defaults(self) -> None:
4211
+ self.colorHex = self.RECORD_SCHEMA.fields_dict["colorHex"].default
4212
+ self.icon = self.RECORD_SCHEMA.fields_dict["icon"].default
4213
+
4214
+
4215
+ @property
4216
+ def colorHex(self) -> Union[None, str]:
4217
+ """The color associated with the entity in Hex. For example #FFFFFF."""
4218
+ return self._inner_dict.get('colorHex') # type: ignore
4219
+
4220
+ @colorHex.setter
4221
+ def colorHex(self, value: Union[None, str]) -> None:
4222
+ self._inner_dict['colorHex'] = value
4223
+
4224
+
4225
+ @property
4226
+ def icon(self) -> Union[None, "IconPropertiesClass"]:
4227
+ """The icon associated with the entity"""
4228
+ return self._inner_dict.get('icon') # type: ignore
4229
+
4230
+ @icon.setter
4231
+ def icon(self, value: Union[None, "IconPropertiesClass"]) -> None:
4232
+ self._inner_dict['icon'] = value
4233
+
4234
+
4178
4235
  class DocumentationClass(_Aspect):
4179
4236
  """Aspect used for storing all applicable documentations on assets.
4180
4237
  This aspect supports multiple documentations from different sources.
@@ -4830,6 +4887,65 @@ class GlossaryTermsClass(_Aspect):
4830
4887
  self._inner_dict['auditStamp'] = value
4831
4888
 
4832
4889
 
4890
+ class IconLibraryClass(object):
4891
+ """Enum of possible icon sources"""
4892
+
4893
+ MATERIAL = "MATERIAL"
4894
+ """Material UI"""
4895
+
4896
+
4897
+
4898
+ class IconPropertiesClass(DictWrapper):
4899
+ """Properties describing an icon associated with an entity"""
4900
+
4901
+ RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.common.IconProperties")
4902
+ def __init__(self,
4903
+ iconLibrary: Union[str, "IconLibraryClass"],
4904
+ name: str,
4905
+ style: str,
4906
+ ):
4907
+ super().__init__()
4908
+
4909
+ self.iconLibrary = iconLibrary
4910
+ self.name = name
4911
+ self.style = style
4912
+
4913
+ def _restore_defaults(self) -> None:
4914
+ self.iconLibrary = IconLibraryClass.MATERIAL
4915
+ self.name = str()
4916
+ self.style = str()
4917
+
4918
+
4919
+ @property
4920
+ def iconLibrary(self) -> Union[str, "IconLibraryClass"]:
4921
+ """The source of the icon: e.g. Antd, Material, etc"""
4922
+ return self._inner_dict.get('iconLibrary') # type: ignore
4923
+
4924
+ @iconLibrary.setter
4925
+ def iconLibrary(self, value: Union[str, "IconLibraryClass"]) -> None:
4926
+ self._inner_dict['iconLibrary'] = value
4927
+
4928
+
4929
+ @property
4930
+ def name(self) -> str:
4931
+ """The name of the icon"""
4932
+ return self._inner_dict.get('name') # type: ignore
4933
+
4934
+ @name.setter
4935
+ def name(self, value: str) -> None:
4936
+ self._inner_dict['name'] = value
4937
+
4938
+
4939
+ @property
4940
+ def style(self) -> str:
4941
+ """Any modifier for the icon, this will be library-specific, e.g. filled/outlined, etc"""
4942
+ return self._inner_dict.get('style') # type: ignore
4943
+
4944
+ @style.setter
4945
+ def style(self, value: str) -> None:
4946
+ self._inner_dict['style'] = value
4947
+
4948
+
4833
4949
  class IncidentSummaryDetailsClass(DictWrapper):
4834
4950
  """Summary statistics about incidents on an entity."""
4835
4951
 
@@ -12965,13 +13081,16 @@ class CorpUserAppearanceSettingsClass(DictWrapper):
12965
13081
  RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.identity.CorpUserAppearanceSettings")
12966
13082
  def __init__(self,
12967
13083
  showSimplifiedHomepage: Union[None, bool]=None,
13084
+ showThemeV2: Union[None, bool]=None,
12968
13085
  ):
12969
13086
  super().__init__()
12970
13087
 
12971
13088
  self.showSimplifiedHomepage = showSimplifiedHomepage
13089
+ self.showThemeV2 = showThemeV2
12972
13090
 
12973
13091
  def _restore_defaults(self) -> None:
12974
13092
  self.showSimplifiedHomepage = self.RECORD_SCHEMA.fields_dict["showSimplifiedHomepage"].default
13093
+ self.showThemeV2 = self.RECORD_SCHEMA.fields_dict["showThemeV2"].default
12975
13094
 
12976
13095
 
12977
13096
  @property
@@ -12985,6 +13104,16 @@ class CorpUserAppearanceSettingsClass(DictWrapper):
12985
13104
  self._inner_dict['showSimplifiedHomepage'] = value
12986
13105
 
12987
13106
 
13107
+ @property
13108
+ def showThemeV2(self) -> Union[None, bool]:
13109
+ """Flag controlling whether the V2 UI for DataHub is shown."""
13110
+ return self._inner_dict.get('showThemeV2') # type: ignore
13111
+
13112
+ @showThemeV2.setter
13113
+ def showThemeV2(self, value: Union[None, bool]) -> None:
13114
+ self._inner_dict['showThemeV2'] = value
13115
+
13116
+
12988
13117
  class CorpUserCredentialsClass(_Aspect):
12989
13118
  """Corp user credentials"""
12990
13119
 
@@ -15780,7 +15909,7 @@ class SchemaFieldKeyClass(_Aspect):
15780
15909
 
15781
15910
 
15782
15911
  ASPECT_NAME = 'schemaFieldKey'
15783
- ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults']}
15912
+ ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'deprecation']}
15784
15913
  RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
15785
15914
 
15786
15915
  def __init__(self,
@@ -20824,7 +20953,7 @@ class PostInfoClass(_Aspect):
20824
20953
 
20825
20954
  @property
20826
20955
  def target(self) -> Union[None, str]:
20827
- """Optional URN that the post is associated with."""
20956
+ """Optional Entity URN that the post is associated with."""
20828
20957
  return self._inner_dict.get('target') # type: ignore
20829
20958
 
20830
20959
  @target.setter
@@ -20838,6 +20967,9 @@ class PostTypeClass(object):
20838
20967
  HOME_PAGE_ANNOUNCEMENT = "HOME_PAGE_ANNOUNCEMENT"
20839
20968
  """The Post is an Home Page announcement."""
20840
20969
 
20970
+ ENTITY_ANNOUNCEMENT = "ENTITY_ANNOUNCEMENT"
20971
+ """The Post is an Entity level announcement."""
20972
+
20841
20973
 
20842
20974
 
20843
20975
  class QueryLanguageClass(object):
@@ -25030,6 +25162,7 @@ __SCHEMA_TYPES = {
25030
25162
  'com.linkedin.pegasus2avro.common.DataTransform': DataTransformClass,
25031
25163
  'com.linkedin.pegasus2avro.common.DataTransformLogic': DataTransformLogicClass,
25032
25164
  'com.linkedin.pegasus2avro.common.Deprecation': DeprecationClass,
25165
+ 'com.linkedin.pegasus2avro.common.DisplayProperties': DisplayPropertiesClass,
25033
25166
  'com.linkedin.pegasus2avro.common.Documentation': DocumentationClass,
25034
25167
  'com.linkedin.pegasus2avro.common.DocumentationAssociation': DocumentationAssociationClass,
25035
25168
  'com.linkedin.pegasus2avro.common.Edge': EdgeClass,
@@ -25044,6 +25177,8 @@ __SCHEMA_TYPES = {
25044
25177
  'com.linkedin.pegasus2avro.common.GlobalTags': GlobalTagsClass,
25045
25178
  'com.linkedin.pegasus2avro.common.GlossaryTermAssociation': GlossaryTermAssociationClass,
25046
25179
  'com.linkedin.pegasus2avro.common.GlossaryTerms': GlossaryTermsClass,
25180
+ 'com.linkedin.pegasus2avro.common.IconLibrary': IconLibraryClass,
25181
+ 'com.linkedin.pegasus2avro.common.IconProperties': IconPropertiesClass,
25047
25182
  'com.linkedin.pegasus2avro.common.IncidentSummaryDetails': IncidentSummaryDetailsClass,
25048
25183
  'com.linkedin.pegasus2avro.common.IncidentsSummary': IncidentsSummaryClass,
25049
25184
  'com.linkedin.pegasus2avro.common.InputField': InputFieldClass,
@@ -25503,6 +25638,7 @@ __SCHEMA_TYPES = {
25503
25638
  'DataTransform': DataTransformClass,
25504
25639
  'DataTransformLogic': DataTransformLogicClass,
25505
25640
  'Deprecation': DeprecationClass,
25641
+ 'DisplayProperties': DisplayPropertiesClass,
25506
25642
  'Documentation': DocumentationClass,
25507
25643
  'DocumentationAssociation': DocumentationAssociationClass,
25508
25644
  'Edge': EdgeClass,
@@ -25517,6 +25653,8 @@ __SCHEMA_TYPES = {
25517
25653
  'GlobalTags': GlobalTagsClass,
25518
25654
  'GlossaryTermAssociation': GlossaryTermAssociationClass,
25519
25655
  'GlossaryTerms': GlossaryTermsClass,
25656
+ 'IconLibrary': IconLibraryClass,
25657
+ 'IconProperties': IconPropertiesClass,
25520
25658
  'IncidentSummaryDetails': IncidentSummaryDetailsClass,
25521
25659
  'IncidentsSummary': IncidentsSummaryClass,
25522
25660
  'InputField': InputFieldClass,
@@ -25926,6 +26064,7 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
25926
26064
  DocumentationClass,
25927
26065
  DataPlatformInstanceClass,
25928
26066
  InputFieldsClass,
26067
+ DisplayPropertiesClass,
25929
26068
  OwnershipClass,
25930
26069
  OperationClass,
25931
26070
  FormsClass,
@@ -26144,6 +26283,7 @@ class AspectBag(TypedDict, total=False):
26144
26283
  documentation: DocumentationClass
26145
26284
  dataPlatformInstance: DataPlatformInstanceClass
26146
26285
  inputFields: InputFieldsClass
26286
+ displayProperties: DisplayPropertiesClass
26147
26287
  ownership: OwnershipClass
26148
26288
  operation: OperationClass
26149
26289
  forms: FormsClass
@@ -22,6 +22,7 @@ from .....schema_classes import DataPlatformInstanceClass
22
22
  from .....schema_classes import DataTransformClass
23
23
  from .....schema_classes import DataTransformLogicClass
24
24
  from .....schema_classes import DeprecationClass
25
+ from .....schema_classes import DisplayPropertiesClass
25
26
  from .....schema_classes import DocumentationClass
26
27
  from .....schema_classes import DocumentationAssociationClass
27
28
  from .....schema_classes import EdgeClass
@@ -36,6 +37,8 @@ from .....schema_classes import FormsClass
36
37
  from .....schema_classes import GlobalTagsClass
37
38
  from .....schema_classes import GlossaryTermAssociationClass
38
39
  from .....schema_classes import GlossaryTermsClass
40
+ from .....schema_classes import IconLibraryClass
41
+ from .....schema_classes import IconPropertiesClass
39
42
  from .....schema_classes import IncidentSummaryDetailsClass
40
43
  from .....schema_classes import IncidentsSummaryClass
41
44
  from .....schema_classes import InputFieldClass
@@ -85,6 +88,7 @@ DataPlatformInstance = DataPlatformInstanceClass
85
88
  DataTransform = DataTransformClass
86
89
  DataTransformLogic = DataTransformLogicClass
87
90
  Deprecation = DeprecationClass
91
+ DisplayProperties = DisplayPropertiesClass
88
92
  Documentation = DocumentationClass
89
93
  DocumentationAssociation = DocumentationAssociationClass
90
94
  Edge = EdgeClass
@@ -99,6 +103,8 @@ Forms = FormsClass
99
103
  GlobalTags = GlobalTagsClass
100
104
  GlossaryTermAssociation = GlossaryTermAssociationClass
101
105
  GlossaryTerms = GlossaryTermsClass
106
+ IconLibrary = IconLibraryClass
107
+ IconProperties = IconPropertiesClass
102
108
  IncidentSummaryDetails = IncidentSummaryDetailsClass
103
109
  IncidentsSummary = IncidentsSummaryClass
104
110
  InputField = InputFieldClass
@@ -441,6 +441,18 @@
441
441
  "type": "string",
442
442
  "name": "actor",
443
443
  "doc": "The user URN which will be credited for modifying this deprecation content."
444
+ },
445
+ {
446
+ "java": {
447
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
448
+ },
449
+ "Urn": "Urn",
450
+ "type": [
451
+ "null",
452
+ "string"
453
+ ],
454
+ "name": "replacement",
455
+ "default": null
444
456
  }
445
457
  ],
446
458
  "doc": "Deprecation status of an entity"
@@ -1838,6 +1850,68 @@
1838
1850
  ],
1839
1851
  "doc": "Information about the fields a chart or dashboard references"
1840
1852
  },
1853
+ {
1854
+ "type": "record",
1855
+ "Aspect": {
1856
+ "name": "displayProperties"
1857
+ },
1858
+ "name": "DisplayProperties",
1859
+ "namespace": "com.linkedin.pegasus2avro.common",
1860
+ "fields": [
1861
+ {
1862
+ "type": [
1863
+ "null",
1864
+ "string"
1865
+ ],
1866
+ "name": "colorHex",
1867
+ "default": null,
1868
+ "doc": "The color associated with the entity in Hex. For example #FFFFFF."
1869
+ },
1870
+ {
1871
+ "type": [
1872
+ "null",
1873
+ {
1874
+ "type": "record",
1875
+ "name": "IconProperties",
1876
+ "namespace": "com.linkedin.pegasus2avro.common",
1877
+ "fields": [
1878
+ {
1879
+ "type": {
1880
+ "type": "enum",
1881
+ "symbolDocs": {
1882
+ "MATERIAL": "Material UI"
1883
+ },
1884
+ "name": "IconLibrary",
1885
+ "namespace": "com.linkedin.pegasus2avro.common",
1886
+ "symbols": [
1887
+ "MATERIAL"
1888
+ ],
1889
+ "doc": "Enum of possible icon sources"
1890
+ },
1891
+ "name": "iconLibrary",
1892
+ "doc": "The source of the icon: e.g. Antd, Material, etc"
1893
+ },
1894
+ {
1895
+ "type": "string",
1896
+ "name": "name",
1897
+ "doc": "The name of the icon"
1898
+ },
1899
+ {
1900
+ "type": "string",
1901
+ "name": "style",
1902
+ "doc": "Any modifier for the icon, this will be library-specific, e.g. filled/outlined, etc"
1903
+ }
1904
+ ],
1905
+ "doc": "Properties describing an icon associated with an entity"
1906
+ }
1907
+ ],
1908
+ "name": "icon",
1909
+ "default": null,
1910
+ "doc": "The icon associated with the entity"
1911
+ }
1912
+ ],
1913
+ "doc": "Properties related to how the entity is displayed in the Datahub UI"
1914
+ },
1841
1915
  {
1842
1916
  "type": "record",
1843
1917
  "Aspect": {
@@ -8903,8 +8977,8 @@
8903
8977
  "type": "enum",
8904
8978
  "symbolDocs": {
8905
8979
  "EXTERNAL": "The assertion was defined and managed externally of DataHub.",
8906
- "INFERRED": "The assertion was inferred, e.g. from offline AI / ML models.",
8907
- "NATIVE": "The assertion was defined natively on DataHub by a user."
8980
+ "INFERRED": "The assertion was inferred, e.g. from offline AI / ML models.\nDataHub Cloud only",
8981
+ "NATIVE": "The assertion was defined natively on DataHub by a user.\nDataHub Cloud only"
8908
8982
  },
8909
8983
  "name": "AssertionSourceType",
8910
8984
  "namespace": "com.linkedin.pegasus2avro.assertion",
@@ -9850,6 +9924,15 @@
9850
9924
  "name": "showSimplifiedHomepage",
9851
9925
  "default": null,
9852
9926
  "doc": "Flag whether the user should see a homepage with only datasets, charts and dashboards. Intended for users\nwho have less operational use cases for the datahub tool."
9927
+ },
9928
+ {
9929
+ "type": [
9930
+ "null",
9931
+ "boolean"
9932
+ ],
9933
+ "name": "showThemeV2",
9934
+ "default": null,
9935
+ "doc": "Flag controlling whether the V2 UI for DataHub is shown."
9853
9936
  }
9854
9937
  ],
9855
9938
  "doc": "Settings for a user around the appearance of their DataHub UI"
@@ -14611,15 +14694,18 @@
14611
14694
  "namespace": "com.linkedin.pegasus2avro.post",
14612
14695
  "fields": [
14613
14696
  {
14697
+ "Searchable": {},
14614
14698
  "type": {
14615
14699
  "type": "enum",
14616
14700
  "symbolDocs": {
14701
+ "ENTITY_ANNOUNCEMENT": "The Post is an Entity level announcement.",
14617
14702
  "HOME_PAGE_ANNOUNCEMENT": "The Post is an Home Page announcement."
14618
14703
  },
14619
14704
  "name": "PostType",
14620
14705
  "namespace": "com.linkedin.pegasus2avro.post",
14621
14706
  "symbols": [
14622
- "HOME_PAGE_ANNOUNCEMENT"
14707
+ "HOME_PAGE_ANNOUNCEMENT",
14708
+ "ENTITY_ANNOUNCEMENT"
14623
14709
  ],
14624
14710
  "doc": "Enum defining types of Posts."
14625
14711
  },
@@ -14764,13 +14850,25 @@
14764
14850
  "dataset",
14765
14851
  "schemaField",
14766
14852
  "chart",
14853
+ "container",
14767
14854
  "dashboard",
14768
14855
  "dataFlow",
14769
14856
  "dataJob",
14857
+ "dataProduct",
14858
+ "glossaryTerm",
14859
+ "glossaryNode",
14860
+ "mlModel",
14861
+ "mlFeature",
14862
+ "notebook",
14863
+ "mlFeatureTable",
14864
+ "mlPrimaryKey",
14865
+ "mlModelGroup",
14866
+ "domain",
14770
14867
  "dataProduct"
14771
14868
  ],
14772
14869
  "name": "PostTarget"
14773
14870
  },
14871
+ "Searchable": {},
14774
14872
  "java": {
14775
14873
  "class": "com.linkedin.pegasus2avro.common.urn.Urn"
14776
14874
  },
@@ -14779,9 +14877,20 @@
14779
14877
  "dataset",
14780
14878
  "schemaField",
14781
14879
  "chart",
14880
+ "container",
14782
14881
  "dashboard",
14783
14882
  "dataFlow",
14784
14883
  "dataJob",
14884
+ "dataProduct",
14885
+ "glossaryTerm",
14886
+ "glossaryNode",
14887
+ "mlModel",
14888
+ "mlFeature",
14889
+ "notebook",
14890
+ "mlFeatureTable",
14891
+ "mlPrimaryKey",
14892
+ "mlModelGroup",
14893
+ "domain",
14785
14894
  "dataProduct"
14786
14895
  ],
14787
14896
  "type": [
@@ -14790,7 +14899,7 @@
14790
14899
  ],
14791
14900
  "name": "target",
14792
14901
  "default": null,
14793
- "doc": "Optional URN that the post is associated with."
14902
+ "doc": "Optional Entity URN that the post is associated with."
14794
14903
  }
14795
14904
  ],
14796
14905
  "doc": "Information about a DataHub Post."
@@ -16756,7 +16865,8 @@
16756
16865
  "status",
16757
16866
  "schemaFieldAliases",
16758
16867
  "documentation",
16759
- "testResults"
16868
+ "testResults",
16869
+ "deprecation"
16760
16870
  ]
16761
16871
  },
16762
16872
  "name": "SchemaFieldKey",
@@ -2398,8 +2398,8 @@
2398
2398
  "type": "enum",
2399
2399
  "symbolDocs": {
2400
2400
  "EXTERNAL": "The assertion was defined and managed externally of DataHub.",
2401
- "INFERRED": "The assertion was inferred, e.g. from offline AI / ML models.",
2402
- "NATIVE": "The assertion was defined natively on DataHub by a user."
2401
+ "INFERRED": "The assertion was inferred, e.g. from offline AI / ML models.\nDataHub Cloud only",
2402
+ "NATIVE": "The assertion was defined natively on DataHub by a user.\nDataHub Cloud only"
2403
2403
  },
2404
2404
  "name": "AssertionSourceType",
2405
2405
  "namespace": "com.linkedin.pegasus2avro.assertion",
@@ -20,6 +20,15 @@
20
20
  "name": "showSimplifiedHomepage",
21
21
  "default": null,
22
22
  "doc": "Flag whether the user should see a homepage with only datasets, charts and dashboards. Intended for users\nwho have less operational use cases for the datahub tool."
23
+ },
24
+ {
25
+ "type": [
26
+ "null",
27
+ "boolean"
28
+ ],
29
+ "name": "showThemeV2",
30
+ "default": null,
31
+ "doc": "Flag controlling whether the V2 UI for DataHub is shown."
23
32
  }
24
33
  ],
25
34
  "doc": "Settings for a user around the appearance of their DataHub UI"
@@ -39,6 +39,18 @@
39
39
  "name": "actor",
40
40
  "doc": "The user URN which will be credited for modifying this deprecation content.",
41
41
  "Urn": "Urn"
42
+ },
43
+ {
44
+ "java": {
45
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
46
+ },
47
+ "type": [
48
+ "null",
49
+ "string"
50
+ ],
51
+ "name": "replacement",
52
+ "default": null,
53
+ "Urn": "Urn"
42
54
  }
43
55
  ],
44
56
  "doc": "Deprecation status of an entity"
@@ -0,0 +1,62 @@
1
+ {
2
+ "type": "record",
3
+ "Aspect": {
4
+ "name": "displayProperties"
5
+ },
6
+ "name": "DisplayProperties",
7
+ "namespace": "com.linkedin.pegasus2avro.common",
8
+ "fields": [
9
+ {
10
+ "type": [
11
+ "null",
12
+ "string"
13
+ ],
14
+ "name": "colorHex",
15
+ "default": null,
16
+ "doc": "The color associated with the entity in Hex. For example #FFFFFF."
17
+ },
18
+ {
19
+ "type": [
20
+ "null",
21
+ {
22
+ "type": "record",
23
+ "name": "IconProperties",
24
+ "namespace": "com.linkedin.pegasus2avro.common",
25
+ "fields": [
26
+ {
27
+ "type": {
28
+ "type": "enum",
29
+ "symbolDocs": {
30
+ "MATERIAL": "Material UI"
31
+ },
32
+ "name": "IconLibrary",
33
+ "namespace": "com.linkedin.pegasus2avro.common",
34
+ "symbols": [
35
+ "MATERIAL"
36
+ ],
37
+ "doc": "Enum of possible icon sources"
38
+ },
39
+ "name": "iconLibrary",
40
+ "doc": "The source of the icon: e.g. Antd, Material, etc"
41
+ },
42
+ {
43
+ "type": "string",
44
+ "name": "name",
45
+ "doc": "The name of the icon"
46
+ },
47
+ {
48
+ "type": "string",
49
+ "name": "style",
50
+ "doc": "Any modifier for the icon, this will be library-specific, e.g. filled/outlined, etc"
51
+ }
52
+ ],
53
+ "doc": "Properties describing an icon associated with an entity"
54
+ }
55
+ ],
56
+ "name": "icon",
57
+ "default": null,
58
+ "doc": "The icon associated with the entity"
59
+ }
60
+ ],
61
+ "doc": "Properties related to how the entity is displayed in the Datahub UI"
62
+ }
@@ -6051,6 +6051,18 @@
6051
6051
  "name": "actor",
6052
6052
  "doc": "The user URN which will be credited for modifying this deprecation content.",
6053
6053
  "Urn": "Urn"
6054
+ },
6055
+ {
6056
+ "java": {
6057
+ "class": "com.linkedin.pegasus2avro.common.urn.Urn"
6058
+ },
6059
+ "type": [
6060
+ "null",
6061
+ "string"
6062
+ ],
6063
+ "name": "replacement",
6064
+ "default": null,
6065
+ "Urn": "Urn"
6054
6066
  }
6055
6067
  ],
6056
6068
  "doc": "Deprecation status of an entity"