acryl-datahub-cloud 0.3.12.4rc2__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.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/lineage_features/source.py +8 -2
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +112 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/identity/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +27 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py +4 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/template/__init__.py +25 -0
- acryl_datahub_cloud/metadata/schema.avsc +443 -0
- acryl_datahub_cloud/metadata/schema_classes.py +682 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +41 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +200 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/DataHubPageTemplateProperties.avsc +175 -0
- acryl_datahub_cloud/metadata/schemas/DataJobInputOutput.avsc +8 -0
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +62 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/UpstreamLineage.avsc +9 -0
- acryl_datahub_cloud/sdk/assertion/__init__.py +49 -0
- acryl_datahub_cloud/sdk/assertion/assertion_base.py +65 -806
- acryl_datahub_cloud/sdk/assertion/freshness_assertion.py +201 -0
- acryl_datahub_cloud/sdk/assertion/smart_freshness_assertion.py +165 -0
- acryl_datahub_cloud/sdk/assertion/smart_volume_assertion.py +162 -0
- acryl_datahub_cloud/sdk/assertion/sql_assertion.py +256 -0
- acryl_datahub_cloud/sdk/assertion/volume_assertion.py +156 -0
- acryl_datahub_cloud/sdk/assertion_input/assertion_input.py +0 -344
- acryl_datahub_cloud/sdk/assertion_input/smart_freshness_assertion_input.py +220 -0
- acryl_datahub_cloud/sdk/assertion_input/smart_volume_assertion_input.py +191 -0
- acryl_datahub_cloud/sdk/assertions_client.py +6 -2
- {acryl_datahub_cloud-0.3.12.4rc2.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/METADATA +48 -46
- {acryl_datahub_cloud-0.3.12.4rc2.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/RECORD +35 -22
- {acryl_datahub_cloud-0.3.12.4rc2.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.12.4rc2.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.12.4rc2.dist-info → acryl_datahub_cloud-0.3.13rc1.dist-info}/top_level.txt +0 -0
|
@@ -6337,6 +6337,27 @@
|
|
|
6337
6337
|
],
|
|
6338
6338
|
"doc": "Key for a Chart"
|
|
6339
6339
|
},
|
|
6340
|
+
{
|
|
6341
|
+
"type": "record",
|
|
6342
|
+
"Aspect": {
|
|
6343
|
+
"name": "dataHubPageTemplateKey",
|
|
6344
|
+
"keyForEntity": "dataHubPageTemplate",
|
|
6345
|
+
"entityCategory": "core",
|
|
6346
|
+
"entityAspects": [
|
|
6347
|
+
"dataHubPageTemplateProperties"
|
|
6348
|
+
]
|
|
6349
|
+
},
|
|
6350
|
+
"name": "DataHubPageTemplateKey",
|
|
6351
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
6352
|
+
"fields": [
|
|
6353
|
+
{
|
|
6354
|
+
"type": "string",
|
|
6355
|
+
"name": "id",
|
|
6356
|
+
"doc": "Unique id for the template."
|
|
6357
|
+
}
|
|
6358
|
+
],
|
|
6359
|
+
"doc": "Key for a DataHubPageTemplate"
|
|
6360
|
+
},
|
|
6340
6361
|
{
|
|
6341
6362
|
"type": "record",
|
|
6342
6363
|
"Aspect": {
|
|
@@ -7587,6 +7608,27 @@
|
|
|
7587
7608
|
],
|
|
7588
7609
|
"doc": "Key for an Asset Container"
|
|
7589
7610
|
},
|
|
7611
|
+
{
|
|
7612
|
+
"type": "record",
|
|
7613
|
+
"Aspect": {
|
|
7614
|
+
"name": "dataHubPageModuleKey",
|
|
7615
|
+
"keyForEntity": "dataHubPageModule",
|
|
7616
|
+
"entityCategory": "core",
|
|
7617
|
+
"entityAspects": [
|
|
7618
|
+
"dataHubPageModuleProperties"
|
|
7619
|
+
]
|
|
7620
|
+
},
|
|
7621
|
+
"name": "DataHubPageModuleKey",
|
|
7622
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
7623
|
+
"fields": [
|
|
7624
|
+
{
|
|
7625
|
+
"type": "string",
|
|
7626
|
+
"name": "id",
|
|
7627
|
+
"doc": "Unique id for the module."
|
|
7628
|
+
}
|
|
7629
|
+
],
|
|
7630
|
+
"doc": "Key for a DataHubPageModule"
|
|
7631
|
+
},
|
|
7590
7632
|
{
|
|
7591
7633
|
"type": "record",
|
|
7592
7634
|
"name": "Filter",
|
|
@@ -8563,6 +8605,7 @@
|
|
|
8563
8605
|
"Searchable": {
|
|
8564
8606
|
"fieldName": "upstreams",
|
|
8565
8607
|
"fieldType": "URN",
|
|
8608
|
+
"hasValuesFieldName": "hasUpstreams",
|
|
8566
8609
|
"queryByDefault": false
|
|
8567
8610
|
},
|
|
8568
8611
|
"java": {
|
|
@@ -8668,6 +8711,14 @@
|
|
|
8668
8711
|
"doc": "The type of upstream entity"
|
|
8669
8712
|
},
|
|
8670
8713
|
{
|
|
8714
|
+
"Searchable": {
|
|
8715
|
+
"/*": {
|
|
8716
|
+
"fieldName": "fineGrainedUpstreams",
|
|
8717
|
+
"fieldType": "URN",
|
|
8718
|
+
"hasValuesFieldName": "hasFineGrainedUpstreams",
|
|
8719
|
+
"queryByDefault": false
|
|
8720
|
+
}
|
|
8721
|
+
},
|
|
8671
8722
|
"Urn": "Urn",
|
|
8672
8723
|
"urn_is_array": true,
|
|
8673
8724
|
"type": [
|
|
@@ -13681,6 +13732,68 @@
|
|
|
13681
13732
|
},
|
|
13682
13733
|
"doc": "Settings related to the documentation propagation feature"
|
|
13683
13734
|
},
|
|
13735
|
+
{
|
|
13736
|
+
"type": [
|
|
13737
|
+
"null",
|
|
13738
|
+
{
|
|
13739
|
+
"type": "record",
|
|
13740
|
+
"name": "GlobalHomePageSettings",
|
|
13741
|
+
"namespace": "com.linkedin.pegasus2avro.settings.global",
|
|
13742
|
+
"fields": [
|
|
13743
|
+
{
|
|
13744
|
+
"java": {
|
|
13745
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
13746
|
+
},
|
|
13747
|
+
"Urn": "Urn",
|
|
13748
|
+
"type": "string",
|
|
13749
|
+
"name": "defaultTemplate",
|
|
13750
|
+
"doc": "The urn that will be rendered in the UI by default for all users"
|
|
13751
|
+
}
|
|
13752
|
+
],
|
|
13753
|
+
"doc": "Global settings related to the home page for an instance"
|
|
13754
|
+
}
|
|
13755
|
+
],
|
|
13756
|
+
"name": "homePage",
|
|
13757
|
+
"default": null,
|
|
13758
|
+
"doc": "Global settings related to the home page for an instance"
|
|
13759
|
+
},
|
|
13760
|
+
{
|
|
13761
|
+
"type": [
|
|
13762
|
+
"null",
|
|
13763
|
+
{
|
|
13764
|
+
"type": "record",
|
|
13765
|
+
"name": "ApplicationsSettings",
|
|
13766
|
+
"namespace": "com.linkedin.pegasus2avro.settings.global",
|
|
13767
|
+
"fields": [
|
|
13768
|
+
{
|
|
13769
|
+
"type": "boolean",
|
|
13770
|
+
"name": "enabled"
|
|
13771
|
+
},
|
|
13772
|
+
{
|
|
13773
|
+
"type": [
|
|
13774
|
+
"null",
|
|
13775
|
+
"string"
|
|
13776
|
+
],
|
|
13777
|
+
"name": "config",
|
|
13778
|
+
"default": null,
|
|
13779
|
+
"doc": "The configuration for the feature, in JSON format."
|
|
13780
|
+
},
|
|
13781
|
+
{
|
|
13782
|
+
"type": [
|
|
13783
|
+
"null",
|
|
13784
|
+
"string"
|
|
13785
|
+
],
|
|
13786
|
+
"name": "configVersion",
|
|
13787
|
+
"default": null,
|
|
13788
|
+
"doc": "The version of the configuration schema that has been used to serialize\n the config.\nIf not provided, the version is assumed to be the latest version."
|
|
13789
|
+
}
|
|
13790
|
+
]
|
|
13791
|
+
}
|
|
13792
|
+
],
|
|
13793
|
+
"name": "applications",
|
|
13794
|
+
"default": null,
|
|
13795
|
+
"doc": "Settings related to applications. If not enabled, applications won't show up in navigation"
|
|
13796
|
+
},
|
|
13684
13797
|
{
|
|
13685
13798
|
"type": [
|
|
13686
13799
|
"null",
|
|
@@ -26989,6 +27102,138 @@
|
|
|
26989
27102
|
],
|
|
26990
27103
|
"doc": "Global singleton storing configs for remote executor pools."
|
|
26991
27104
|
},
|
|
27105
|
+
{
|
|
27106
|
+
"type": "record",
|
|
27107
|
+
"Aspect": {
|
|
27108
|
+
"name": "dataHubPageTemplateProperties"
|
|
27109
|
+
},
|
|
27110
|
+
"name": "DataHubPageTemplateProperties",
|
|
27111
|
+
"namespace": "com.linkedin.pegasus2avro.template",
|
|
27112
|
+
"fields": [
|
|
27113
|
+
{
|
|
27114
|
+
"Relationship": {
|
|
27115
|
+
"/*/modules/*": {
|
|
27116
|
+
"entityTypes": [
|
|
27117
|
+
"dataHubPageModule"
|
|
27118
|
+
],
|
|
27119
|
+
"name": "ContainedIn"
|
|
27120
|
+
}
|
|
27121
|
+
},
|
|
27122
|
+
"type": {
|
|
27123
|
+
"type": "array",
|
|
27124
|
+
"items": {
|
|
27125
|
+
"type": "record",
|
|
27126
|
+
"name": "DataHubPageTemplateRow",
|
|
27127
|
+
"namespace": "com.linkedin.pegasus2avro.template",
|
|
27128
|
+
"fields": [
|
|
27129
|
+
{
|
|
27130
|
+
"Urn": "Urn",
|
|
27131
|
+
"urn_is_array": true,
|
|
27132
|
+
"type": {
|
|
27133
|
+
"type": "array",
|
|
27134
|
+
"items": "string"
|
|
27135
|
+
},
|
|
27136
|
+
"name": "modules",
|
|
27137
|
+
"doc": "The modules that exist in this template row"
|
|
27138
|
+
}
|
|
27139
|
+
],
|
|
27140
|
+
"doc": "A row of modules contained in a template"
|
|
27141
|
+
}
|
|
27142
|
+
},
|
|
27143
|
+
"name": "rows",
|
|
27144
|
+
"doc": "The rows of modules contained in this template"
|
|
27145
|
+
},
|
|
27146
|
+
{
|
|
27147
|
+
"type": {
|
|
27148
|
+
"type": "record",
|
|
27149
|
+
"name": "DataHubPageTemplateSurface",
|
|
27150
|
+
"namespace": "com.linkedin.pegasus2avro.template",
|
|
27151
|
+
"fields": [
|
|
27152
|
+
{
|
|
27153
|
+
"Searchable": {
|
|
27154
|
+
"fieldType": "KEYWORD"
|
|
27155
|
+
},
|
|
27156
|
+
"type": {
|
|
27157
|
+
"type": "enum",
|
|
27158
|
+
"symbolDocs": {
|
|
27159
|
+
"HOME_PAGE": "This template applies to what to display on the home page for users."
|
|
27160
|
+
},
|
|
27161
|
+
"name": "PageTemplateSurfaceType",
|
|
27162
|
+
"namespace": "com.linkedin.pegasus2avro.template",
|
|
27163
|
+
"symbols": [
|
|
27164
|
+
"HOME_PAGE"
|
|
27165
|
+
]
|
|
27166
|
+
},
|
|
27167
|
+
"name": "surfaceType",
|
|
27168
|
+
"doc": "Where exactly is this template being used"
|
|
27169
|
+
}
|
|
27170
|
+
],
|
|
27171
|
+
"doc": "Info about the surface area of the product that this template is deployed in"
|
|
27172
|
+
},
|
|
27173
|
+
"name": "surface",
|
|
27174
|
+
"doc": "Info about the surface area of the product that this template is deployed in"
|
|
27175
|
+
},
|
|
27176
|
+
{
|
|
27177
|
+
"type": {
|
|
27178
|
+
"type": "record",
|
|
27179
|
+
"name": "DataHubPageTemplateVisibility",
|
|
27180
|
+
"namespace": "com.linkedin.pegasus2avro.template",
|
|
27181
|
+
"fields": [
|
|
27182
|
+
{
|
|
27183
|
+
"Searchable": {
|
|
27184
|
+
"fieldType": "KEYWORD"
|
|
27185
|
+
},
|
|
27186
|
+
"type": {
|
|
27187
|
+
"type": "enum",
|
|
27188
|
+
"symbolDocs": {
|
|
27189
|
+
"GLOBAL": "This template is used across users",
|
|
27190
|
+
"PERSONAL": "This template is used for individual use only"
|
|
27191
|
+
},
|
|
27192
|
+
"name": "PageTemplateScope",
|
|
27193
|
+
"namespace": "com.linkedin.pegasus2avro.template",
|
|
27194
|
+
"symbols": [
|
|
27195
|
+
"PERSONAL",
|
|
27196
|
+
"GLOBAL"
|
|
27197
|
+
]
|
|
27198
|
+
},
|
|
27199
|
+
"name": "scope",
|
|
27200
|
+
"doc": "The scope of this template and who can use/see it"
|
|
27201
|
+
}
|
|
27202
|
+
],
|
|
27203
|
+
"doc": "Info about the visibility of this template"
|
|
27204
|
+
},
|
|
27205
|
+
"name": "visibility",
|
|
27206
|
+
"doc": "Info about the visibility of this template"
|
|
27207
|
+
},
|
|
27208
|
+
{
|
|
27209
|
+
"Searchable": {
|
|
27210
|
+
"/actor": {
|
|
27211
|
+
"fieldName": "createdBy",
|
|
27212
|
+
"fieldType": "URN"
|
|
27213
|
+
},
|
|
27214
|
+
"/time": {
|
|
27215
|
+
"fieldName": "createdAt",
|
|
27216
|
+
"fieldType": "DATETIME"
|
|
27217
|
+
}
|
|
27218
|
+
},
|
|
27219
|
+
"type": "com.linkedin.pegasus2avro.common.AuditStamp",
|
|
27220
|
+
"name": "created",
|
|
27221
|
+
"doc": "Audit stamp for when and by whom this template was created"
|
|
27222
|
+
},
|
|
27223
|
+
{
|
|
27224
|
+
"Searchable": {
|
|
27225
|
+
"/time": {
|
|
27226
|
+
"fieldName": "lastModifiedAt",
|
|
27227
|
+
"fieldType": "DATETIME"
|
|
27228
|
+
}
|
|
27229
|
+
},
|
|
27230
|
+
"type": "com.linkedin.pegasus2avro.common.AuditStamp",
|
|
27231
|
+
"name": "lastModified",
|
|
27232
|
+
"doc": "Audit stamp for when and by whom this template was last updated"
|
|
27233
|
+
}
|
|
27234
|
+
],
|
|
27235
|
+
"doc": "The main properties of a DataHub page template"
|
|
27236
|
+
},
|
|
26992
27237
|
{
|
|
26993
27238
|
"type": "record",
|
|
26994
27239
|
"Aspect": {
|
|
@@ -28639,6 +28884,163 @@
|
|
|
28639
28884
|
}
|
|
28640
28885
|
]
|
|
28641
28886
|
},
|
|
28887
|
+
{
|
|
28888
|
+
"type": "record",
|
|
28889
|
+
"Aspect": {
|
|
28890
|
+
"name": "dataHubPageModuleProperties"
|
|
28891
|
+
},
|
|
28892
|
+
"name": "DataHubPageModuleProperties",
|
|
28893
|
+
"namespace": "com.linkedin.pegasus2avro.module",
|
|
28894
|
+
"fields": [
|
|
28895
|
+
{
|
|
28896
|
+
"type": "string",
|
|
28897
|
+
"name": "name",
|
|
28898
|
+
"doc": "The display name of this module"
|
|
28899
|
+
},
|
|
28900
|
+
{
|
|
28901
|
+
"Searchable": {
|
|
28902
|
+
"fieldType": "KEYWORD"
|
|
28903
|
+
},
|
|
28904
|
+
"type": {
|
|
28905
|
+
"type": "enum",
|
|
28906
|
+
"symbolDocs": {
|
|
28907
|
+
"ASSET_COLLECTION": "A module with a collection of assets",
|
|
28908
|
+
"DOMAINS": "Module displaying the top domains",
|
|
28909
|
+
"HIERARCHY": "A module displaying a hierarchy to navigate",
|
|
28910
|
+
"LINK": "Link type module",
|
|
28911
|
+
"OWNED_ASSETS": "Module displaying assets owned by a user",
|
|
28912
|
+
"RICH_TEXT": "Module containing rich text to be rendered"
|
|
28913
|
+
},
|
|
28914
|
+
"name": "DataHubPageModuleType",
|
|
28915
|
+
"namespace": "com.linkedin.pegasus2avro.module",
|
|
28916
|
+
"symbols": [
|
|
28917
|
+
"LINK",
|
|
28918
|
+
"RICH_TEXT",
|
|
28919
|
+
"ASSET_COLLECTION",
|
|
28920
|
+
"HIERARCHY",
|
|
28921
|
+
"OWNED_ASSETS",
|
|
28922
|
+
"DOMAINS"
|
|
28923
|
+
],
|
|
28924
|
+
"doc": "Enum containing the types of page modules that there are"
|
|
28925
|
+
},
|
|
28926
|
+
"name": "type",
|
|
28927
|
+
"doc": "The type of this module - the purpose it serves"
|
|
28928
|
+
},
|
|
28929
|
+
{
|
|
28930
|
+
"type": {
|
|
28931
|
+
"type": "record",
|
|
28932
|
+
"name": "DataHubPageModuleVisibility",
|
|
28933
|
+
"namespace": "com.linkedin.pegasus2avro.module",
|
|
28934
|
+
"fields": [
|
|
28935
|
+
{
|
|
28936
|
+
"Searchable": {
|
|
28937
|
+
"fieldType": "KEYWORD"
|
|
28938
|
+
},
|
|
28939
|
+
"type": {
|
|
28940
|
+
"type": "enum",
|
|
28941
|
+
"symbolDocs": {
|
|
28942
|
+
"GLOBAL": "This module is discoverable and can be used by any user on the platform",
|
|
28943
|
+
"PERSONAL": "This module is used for individual use only"
|
|
28944
|
+
},
|
|
28945
|
+
"name": "PageModuleScope",
|
|
28946
|
+
"namespace": "com.linkedin.pegasus2avro.module",
|
|
28947
|
+
"symbols": [
|
|
28948
|
+
"PERSONAL",
|
|
28949
|
+
"GLOBAL"
|
|
28950
|
+
]
|
|
28951
|
+
},
|
|
28952
|
+
"name": "scope",
|
|
28953
|
+
"doc": "Audit stamp for when and by whom this module was created"
|
|
28954
|
+
}
|
|
28955
|
+
],
|
|
28956
|
+
"doc": "Info about the visibility of this module"
|
|
28957
|
+
},
|
|
28958
|
+
"name": "visibility",
|
|
28959
|
+
"doc": "Info about the visibility of this module"
|
|
28960
|
+
},
|
|
28961
|
+
{
|
|
28962
|
+
"type": {
|
|
28963
|
+
"type": "record",
|
|
28964
|
+
"name": "DataHubPageModuleParams",
|
|
28965
|
+
"namespace": "com.linkedin.pegasus2avro.module",
|
|
28966
|
+
"fields": [
|
|
28967
|
+
{
|
|
28968
|
+
"type": [
|
|
28969
|
+
"null",
|
|
28970
|
+
{
|
|
28971
|
+
"type": "record",
|
|
28972
|
+
"name": "LinkModuleParams",
|
|
28973
|
+
"namespace": "com.linkedin.pegasus2avro.module",
|
|
28974
|
+
"fields": [
|
|
28975
|
+
{
|
|
28976
|
+
"java": {
|
|
28977
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
28978
|
+
},
|
|
28979
|
+
"Urn": "Urn",
|
|
28980
|
+
"type": "string",
|
|
28981
|
+
"name": "linkUrn"
|
|
28982
|
+
}
|
|
28983
|
+
]
|
|
28984
|
+
}
|
|
28985
|
+
],
|
|
28986
|
+
"name": "linkParams",
|
|
28987
|
+
"default": null,
|
|
28988
|
+
"doc": "The params required if the module is type LINK"
|
|
28989
|
+
},
|
|
28990
|
+
{
|
|
28991
|
+
"type": [
|
|
28992
|
+
"null",
|
|
28993
|
+
{
|
|
28994
|
+
"type": "record",
|
|
28995
|
+
"name": "RichTextModuleParams",
|
|
28996
|
+
"namespace": "com.linkedin.pegasus2avro.module",
|
|
28997
|
+
"fields": [
|
|
28998
|
+
{
|
|
28999
|
+
"type": "string",
|
|
29000
|
+
"name": "content"
|
|
29001
|
+
}
|
|
29002
|
+
]
|
|
29003
|
+
}
|
|
29004
|
+
],
|
|
29005
|
+
"name": "richTextParams",
|
|
29006
|
+
"default": null,
|
|
29007
|
+
"doc": "The params required if the module is type RICH_TEXT"
|
|
29008
|
+
}
|
|
29009
|
+
],
|
|
29010
|
+
"doc": "The specific parameters stored for a module"
|
|
29011
|
+
},
|
|
29012
|
+
"name": "params",
|
|
29013
|
+
"doc": "The specific parameters stored for this module"
|
|
29014
|
+
},
|
|
29015
|
+
{
|
|
29016
|
+
"Searchable": {
|
|
29017
|
+
"/actor": {
|
|
29018
|
+
"fieldName": "createdBy",
|
|
29019
|
+
"fieldType": "URN"
|
|
29020
|
+
},
|
|
29021
|
+
"/time": {
|
|
29022
|
+
"fieldName": "createdAt",
|
|
29023
|
+
"fieldType": "DATETIME"
|
|
29024
|
+
}
|
|
29025
|
+
},
|
|
29026
|
+
"type": "com.linkedin.pegasus2avro.common.AuditStamp",
|
|
29027
|
+
"name": "created",
|
|
29028
|
+
"doc": "Audit stamp for when and by whom this template was created"
|
|
29029
|
+
},
|
|
29030
|
+
{
|
|
29031
|
+
"Searchable": {
|
|
29032
|
+
"/time": {
|
|
29033
|
+
"fieldName": "lastModifiedAt",
|
|
29034
|
+
"fieldType": "DATETIME"
|
|
29035
|
+
}
|
|
29036
|
+
},
|
|
29037
|
+
"type": "com.linkedin.pegasus2avro.common.AuditStamp",
|
|
29038
|
+
"name": "lastModified",
|
|
29039
|
+
"doc": "Audit stamp for when and by whom this template was last updated"
|
|
29040
|
+
}
|
|
29041
|
+
],
|
|
29042
|
+
"doc": "The main properties of a DataHub page module"
|
|
29043
|
+
},
|
|
28642
29044
|
{
|
|
28643
29045
|
"type": "record",
|
|
28644
29046
|
"Aspect": {
|
|
@@ -29000,6 +29402,47 @@
|
|
|
29000
29402
|
"name": "notificationSettings",
|
|
29001
29403
|
"default": null,
|
|
29002
29404
|
"doc": "Notification settings for a user"
|
|
29405
|
+
},
|
|
29406
|
+
{
|
|
29407
|
+
"type": [
|
|
29408
|
+
"null",
|
|
29409
|
+
{
|
|
29410
|
+
"type": "record",
|
|
29411
|
+
"name": "CorpUserHomePageSettings",
|
|
29412
|
+
"namespace": "com.linkedin.pegasus2avro.identity",
|
|
29413
|
+
"fields": [
|
|
29414
|
+
{
|
|
29415
|
+
"java": {
|
|
29416
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
29417
|
+
},
|
|
29418
|
+
"Urn": "Urn",
|
|
29419
|
+
"type": [
|
|
29420
|
+
"null",
|
|
29421
|
+
"string"
|
|
29422
|
+
],
|
|
29423
|
+
"name": "pageTemplate",
|
|
29424
|
+
"default": null,
|
|
29425
|
+
"doc": "The page template that will be rendered in the UI by default for this user"
|
|
29426
|
+
},
|
|
29427
|
+
{
|
|
29428
|
+
"type": [
|
|
29429
|
+
"null",
|
|
29430
|
+
{
|
|
29431
|
+
"type": "array",
|
|
29432
|
+
"items": "string"
|
|
29433
|
+
}
|
|
29434
|
+
],
|
|
29435
|
+
"name": "dismissedAnnouncements",
|
|
29436
|
+
"default": null,
|
|
29437
|
+
"doc": "The list of announcement urns that have been dismissed by the user"
|
|
29438
|
+
}
|
|
29439
|
+
],
|
|
29440
|
+
"doc": "Settings related to the home page for a user"
|
|
29441
|
+
}
|
|
29442
|
+
],
|
|
29443
|
+
"name": "homePage",
|
|
29444
|
+
"default": null,
|
|
29445
|
+
"doc": "Settings related to the home page for a user"
|
|
29003
29446
|
}
|
|
29004
29447
|
],
|
|
29005
29448
|
"doc": "Settings that a user can customize through the DataHub UI"
|