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.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/logical/__init__.py +15 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/module/__init__.py +4 -0
- acryl_datahub_cloud/metadata/schema.avsc +210 -18
- acryl_datahub_cloud/metadata/schema_classes.py +289 -10
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +46 -0
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +25 -0
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +25 -0
- acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +10 -1
- acryl_datahub_cloud/metadata/schemas/DataHubPageModuleProperties.avsc +88 -7
- acryl_datahub_cloud/metadata/schemas/DatasetKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/LogicalParent.avsc +140 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +18 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc +62 -44
- acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc +61 -0
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +25 -0
- acryl_datahub_cloud/metadata/schemas/QuerySubjects.avsc +1 -12
- acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/SystemMetadata.avsc +61 -0
- {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/METADATA +42 -42
- {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/RECORD +26 -24
- {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.13rc4.dist-info → acryl_datahub_cloud-0.3.13rc6.dist-info}/top_level.txt +0 -0
|
@@ -21,6 +21,7 @@ from .....schema_classes import AssertionInferenceDetailsClass
|
|
|
21
21
|
from .....schema_classes import AssertionInfoClass
|
|
22
22
|
from .....schema_classes import AssertionMetricClass
|
|
23
23
|
from .....schema_classes import AssertionMonitorSensitivityClass
|
|
24
|
+
from .....schema_classes import AssertionNoteClass
|
|
24
25
|
from .....schema_classes import AssertionResultClass
|
|
25
26
|
from .....schema_classes import AssertionResultErrorClass
|
|
26
27
|
from .....schema_classes import AssertionResultErrorTypeClass
|
|
@@ -87,6 +88,7 @@ AssertionInferenceDetails = AssertionInferenceDetailsClass
|
|
|
87
88
|
AssertionInfo = AssertionInfoClass
|
|
88
89
|
AssertionMetric = AssertionMetricClass
|
|
89
90
|
AssertionMonitorSensitivity = AssertionMonitorSensitivityClass
|
|
91
|
+
AssertionNote = AssertionNoteClass
|
|
90
92
|
AssertionResult = AssertionResultClass
|
|
91
93
|
AssertionResultError = AssertionResultErrorClass
|
|
92
94
|
AssertionResultErrorType = AssertionResultErrorTypeClass
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# mypy: ignore-errors
|
|
2
|
+
# flake8: noqa
|
|
3
|
+
|
|
4
|
+
# This file is autogenerated by /metadata-ingestion/scripts/avro_codegen.py
|
|
5
|
+
# Do not modify manually!
|
|
6
|
+
|
|
7
|
+
# pylint: skip-file
|
|
8
|
+
# fmt: off
|
|
9
|
+
# isort: skip_file
|
|
10
|
+
from .....schema_classes import LogicalParentClass
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
LogicalParent = LogicalParentClass
|
|
14
|
+
|
|
15
|
+
# fmt: on
|
|
@@ -7,19 +7,23 @@
|
|
|
7
7
|
# pylint: skip-file
|
|
8
8
|
# fmt: off
|
|
9
9
|
# isort: skip_file
|
|
10
|
+
from .....schema_classes import AssetCollectionModuleParamsClass
|
|
10
11
|
from .....schema_classes import DataHubPageModuleParamsClass
|
|
11
12
|
from .....schema_classes import DataHubPageModulePropertiesClass
|
|
12
13
|
from .....schema_classes import DataHubPageModuleTypeClass
|
|
13
14
|
from .....schema_classes import DataHubPageModuleVisibilityClass
|
|
15
|
+
from .....schema_classes import HierarchyModuleParamsClass
|
|
14
16
|
from .....schema_classes import LinkModuleParamsClass
|
|
15
17
|
from .....schema_classes import PageModuleScopeClass
|
|
16
18
|
from .....schema_classes import RichTextModuleParamsClass
|
|
17
19
|
|
|
18
20
|
|
|
21
|
+
AssetCollectionModuleParams = AssetCollectionModuleParamsClass
|
|
19
22
|
DataHubPageModuleParams = DataHubPageModuleParamsClass
|
|
20
23
|
DataHubPageModuleProperties = DataHubPageModulePropertiesClass
|
|
21
24
|
DataHubPageModuleType = DataHubPageModuleTypeClass
|
|
22
25
|
DataHubPageModuleVisibility = DataHubPageModuleVisibilityClass
|
|
26
|
+
HierarchyModuleParams = HierarchyModuleParamsClass
|
|
23
27
|
LinkModuleParams = LinkModuleParamsClass
|
|
24
28
|
PageModuleScope = PageModuleScopeClass
|
|
25
29
|
RichTextModuleParams = RichTextModuleParamsClass
|
|
@@ -7256,6 +7256,7 @@
|
|
|
7256
7256
|
"testResults",
|
|
7257
7257
|
"deprecation",
|
|
7258
7258
|
"subTypes",
|
|
7259
|
+
"logicalParent",
|
|
7259
7260
|
"schemaFieldProfile",
|
|
7260
7261
|
"lineageFeatures"
|
|
7261
7262
|
]
|
|
@@ -7528,6 +7529,7 @@
|
|
|
7528
7529
|
"partitionsSummary",
|
|
7529
7530
|
"versionProperties",
|
|
7530
7531
|
"icebergCatalogInfo",
|
|
7532
|
+
"logicalParent",
|
|
7531
7533
|
"inferredNeighbors",
|
|
7532
7534
|
"inferredMetadata",
|
|
7533
7535
|
"schemaFieldsInferredMetadata",
|
|
@@ -11816,13 +11818,6 @@
|
|
|
11816
11818
|
"namespace": "com.linkedin.pegasus2avro.query",
|
|
11817
11819
|
"fields": [
|
|
11818
11820
|
{
|
|
11819
|
-
"Relationship": {
|
|
11820
|
-
"entityTypes": [
|
|
11821
|
-
"dataset",
|
|
11822
|
-
"schemaField"
|
|
11823
|
-
],
|
|
11824
|
-
"name": "IsAssociatedWith"
|
|
11825
|
-
},
|
|
11826
11821
|
"Searchable": {
|
|
11827
11822
|
"fieldName": "entities",
|
|
11828
11823
|
"fieldType": "URN"
|
|
@@ -11831,10 +11826,6 @@
|
|
|
11831
11826
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
11832
11827
|
},
|
|
11833
11828
|
"Urn": "Urn",
|
|
11834
|
-
"entityTypes": [
|
|
11835
|
-
"dataset",
|
|
11836
|
-
"schemaField"
|
|
11837
|
-
],
|
|
11838
11829
|
"type": "string",
|
|
11839
11830
|
"name": "entity",
|
|
11840
11831
|
"doc": "An entity which is the subject of a query."
|
|
@@ -13394,6 +13385,44 @@
|
|
|
13394
13385
|
],
|
|
13395
13386
|
"doc": "BusinessAttribute aspect used for applying it to an entity"
|
|
13396
13387
|
},
|
|
13388
|
+
{
|
|
13389
|
+
"type": "record",
|
|
13390
|
+
"Aspect": {
|
|
13391
|
+
"name": "logicalParent"
|
|
13392
|
+
},
|
|
13393
|
+
"name": "LogicalParent",
|
|
13394
|
+
"namespace": "com.linkedin.pegasus2avro.logical",
|
|
13395
|
+
"fields": [
|
|
13396
|
+
{
|
|
13397
|
+
"Relationship": {
|
|
13398
|
+
"/destinationUrn": {
|
|
13399
|
+
"createdActor": "parent/created/actor",
|
|
13400
|
+
"createdOn": "parent/created/time",
|
|
13401
|
+
"entityTypes": [
|
|
13402
|
+
"dataset",
|
|
13403
|
+
"schemaField"
|
|
13404
|
+
],
|
|
13405
|
+
"name": "PhysicalInstanceOf",
|
|
13406
|
+
"properties": "parent/properties",
|
|
13407
|
+
"updatedActor": "parent/lastModified/actor",
|
|
13408
|
+
"updatedOn": "parent/lastModified/time"
|
|
13409
|
+
}
|
|
13410
|
+
},
|
|
13411
|
+
"Searchable": {
|
|
13412
|
+
"/destinationUrn": {
|
|
13413
|
+
"addToFilters": true,
|
|
13414
|
+
"fieldName": "logicalParent",
|
|
13415
|
+
"fieldType": "URN",
|
|
13416
|
+
"filterNameOverride": "Physical Instance Of",
|
|
13417
|
+
"hasValuesFieldName": "hasLogicalParent",
|
|
13418
|
+
"queryByDefault": false
|
|
13419
|
+
}
|
|
13420
|
+
},
|
|
13421
|
+
"type": "com.linkedin.pegasus2avro.common.Edge",
|
|
13422
|
+
"name": "parent"
|
|
13423
|
+
}
|
|
13424
|
+
]
|
|
13425
|
+
},
|
|
13397
13426
|
{
|
|
13398
13427
|
"type": "record",
|
|
13399
13428
|
"Aspect": {
|
|
@@ -13481,6 +13510,15 @@
|
|
|
13481
13510
|
"name": "defaultChannelName",
|
|
13482
13511
|
"default": null,
|
|
13483
13512
|
"doc": "A default slack channel to use."
|
|
13513
|
+
},
|
|
13514
|
+
{
|
|
13515
|
+
"type": [
|
|
13516
|
+
"null",
|
|
13517
|
+
"boolean"
|
|
13518
|
+
],
|
|
13519
|
+
"name": "datahubAtMentionEnabled",
|
|
13520
|
+
"default": null,
|
|
13521
|
+
"doc": "Whether the Slack @DataHub bot mention functionality is enabled.\nIf null, use the default value from feature flags."
|
|
13484
13522
|
}
|
|
13485
13523
|
],
|
|
13486
13524
|
"doc": "Slack integration settings."
|
|
@@ -19255,6 +19293,27 @@
|
|
|
19255
19293
|
"default": null,
|
|
19256
19294
|
"doc": "Data Platform for parent"
|
|
19257
19295
|
},
|
|
19296
|
+
{
|
|
19297
|
+
"Searchable": {
|
|
19298
|
+
"/*": {
|
|
19299
|
+
"addToFilters": true,
|
|
19300
|
+
"fieldType": "URN",
|
|
19301
|
+
"hasValuesFieldName": "hasAsserteeContainer"
|
|
19302
|
+
}
|
|
19303
|
+
},
|
|
19304
|
+
"TimeseriesField": {},
|
|
19305
|
+
"java": {
|
|
19306
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
19307
|
+
},
|
|
19308
|
+
"Urn": "Urn",
|
|
19309
|
+
"type": [
|
|
19310
|
+
"null",
|
|
19311
|
+
"string"
|
|
19312
|
+
],
|
|
19313
|
+
"name": "asserteeContainer",
|
|
19314
|
+
"default": null,
|
|
19315
|
+
"doc": "The Container attached to the entity's parent Asset"
|
|
19316
|
+
},
|
|
19258
19317
|
{
|
|
19259
19318
|
"Searchable": {
|
|
19260
19319
|
"addToFilters": true,
|
|
@@ -20946,6 +21005,31 @@
|
|
|
20946
21005
|
"name": "description",
|
|
20947
21006
|
"default": null,
|
|
20948
21007
|
"doc": "An optional human-readable description of the assertion"
|
|
21008
|
+
},
|
|
21009
|
+
{
|
|
21010
|
+
"type": [
|
|
21011
|
+
"null",
|
|
21012
|
+
{
|
|
21013
|
+
"type": "record",
|
|
21014
|
+
"name": "AssertionNote",
|
|
21015
|
+
"namespace": "com.linkedin.pegasus2avro.assertion",
|
|
21016
|
+
"fields": [
|
|
21017
|
+
{
|
|
21018
|
+
"type": "string",
|
|
21019
|
+
"name": "content",
|
|
21020
|
+
"doc": "The note to give technical owners more context about the assertion, and how to troubleshoot it."
|
|
21021
|
+
},
|
|
21022
|
+
{
|
|
21023
|
+
"type": "com.linkedin.pegasus2avro.common.AuditStamp",
|
|
21024
|
+
"name": "lastModified",
|
|
21025
|
+
"doc": "The time at which the note was last modified."
|
|
21026
|
+
}
|
|
21027
|
+
]
|
|
21028
|
+
}
|
|
21029
|
+
],
|
|
21030
|
+
"name": "note",
|
|
21031
|
+
"default": null,
|
|
21032
|
+
"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."
|
|
20949
21033
|
}
|
|
20950
21034
|
],
|
|
20951
21035
|
"doc": "Information about an assertion\n\nAcryl Only: Did you update AssertionWithoutAnnotations.pdl? If not, please update it."
|
|
@@ -24060,6 +24144,24 @@
|
|
|
24060
24144
|
"name": "version",
|
|
24061
24145
|
"default": null,
|
|
24062
24146
|
"doc": "Aspect version\n Initial implementation will use the aspect version's number, however stored as\n a string in the case where a different aspect versioning scheme is later adopted."
|
|
24147
|
+
},
|
|
24148
|
+
{
|
|
24149
|
+
"type": [
|
|
24150
|
+
"null",
|
|
24151
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
24152
|
+
],
|
|
24153
|
+
"name": "aspectCreated",
|
|
24154
|
+
"default": null,
|
|
24155
|
+
"doc": "When the aspect was initially created and who created it, detected by version 0 -> 1 change"
|
|
24156
|
+
},
|
|
24157
|
+
{
|
|
24158
|
+
"type": [
|
|
24159
|
+
"null",
|
|
24160
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
24161
|
+
],
|
|
24162
|
+
"name": "aspectModified",
|
|
24163
|
+
"default": null,
|
|
24164
|
+
"doc": "When the aspect was last modified and the actor that performed the modification"
|
|
24063
24165
|
}
|
|
24064
24166
|
],
|
|
24065
24167
|
"doc": "Metadata associated with each metadata change that is processed by the system"
|
|
@@ -29542,7 +29644,8 @@
|
|
|
29542
29644
|
"HIERARCHY": "A module displaying a hierarchy to navigate",
|
|
29543
29645
|
"LINK": "Link type module",
|
|
29544
29646
|
"OWNED_ASSETS": "Module displaying assets owned by a user",
|
|
29545
|
-
"RICH_TEXT": "Module containing rich text to be rendered"
|
|
29647
|
+
"RICH_TEXT": "Module containing rich text to be rendered",
|
|
29648
|
+
"SUBSCRIBED_ASSETS": "Module displaying assets subscribed to by a given user"
|
|
29546
29649
|
},
|
|
29547
29650
|
"name": "DataHubPageModuleType",
|
|
29548
29651
|
"namespace": "com.linkedin.pegasus2avro.module",
|
|
@@ -29552,7 +29655,8 @@
|
|
|
29552
29655
|
"ASSET_COLLECTION",
|
|
29553
29656
|
"HIERARCHY",
|
|
29554
29657
|
"OWNED_ASSETS",
|
|
29555
|
-
"DOMAINS"
|
|
29658
|
+
"DOMAINS",
|
|
29659
|
+
"SUBSCRIBED_ASSETS"
|
|
29556
29660
|
],
|
|
29557
29661
|
"doc": "Enum containing the types of page modules that there are"
|
|
29558
29662
|
},
|
|
@@ -29606,12 +29710,24 @@
|
|
|
29606
29710
|
"namespace": "com.linkedin.pegasus2avro.module",
|
|
29607
29711
|
"fields": [
|
|
29608
29712
|
{
|
|
29609
|
-
"java": {
|
|
29610
|
-
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
29611
|
-
},
|
|
29612
|
-
"Urn": "Urn",
|
|
29613
29713
|
"type": "string",
|
|
29614
|
-
"name": "
|
|
29714
|
+
"name": "linkUrl"
|
|
29715
|
+
},
|
|
29716
|
+
{
|
|
29717
|
+
"type": [
|
|
29718
|
+
"null",
|
|
29719
|
+
"string"
|
|
29720
|
+
],
|
|
29721
|
+
"name": "imageUrl",
|
|
29722
|
+
"default": null
|
|
29723
|
+
},
|
|
29724
|
+
{
|
|
29725
|
+
"type": [
|
|
29726
|
+
"null",
|
|
29727
|
+
"string"
|
|
29728
|
+
],
|
|
29729
|
+
"name": "description",
|
|
29730
|
+
"default": null
|
|
29615
29731
|
}
|
|
29616
29732
|
]
|
|
29617
29733
|
}
|
|
@@ -29638,6 +29754,73 @@
|
|
|
29638
29754
|
"name": "richTextParams",
|
|
29639
29755
|
"default": null,
|
|
29640
29756
|
"doc": "The params required if the module is type RICH_TEXT"
|
|
29757
|
+
},
|
|
29758
|
+
{
|
|
29759
|
+
"type": [
|
|
29760
|
+
"null",
|
|
29761
|
+
{
|
|
29762
|
+
"type": "record",
|
|
29763
|
+
"name": "AssetCollectionModuleParams",
|
|
29764
|
+
"namespace": "com.linkedin.pegasus2avro.module",
|
|
29765
|
+
"fields": [
|
|
29766
|
+
{
|
|
29767
|
+
"Urn": "Urn",
|
|
29768
|
+
"urn_is_array": true,
|
|
29769
|
+
"type": {
|
|
29770
|
+
"type": "array",
|
|
29771
|
+
"items": "string"
|
|
29772
|
+
},
|
|
29773
|
+
"name": "assetUrns"
|
|
29774
|
+
}
|
|
29775
|
+
],
|
|
29776
|
+
"doc": "The params required if the module is type ASSET_COLLECTION"
|
|
29777
|
+
}
|
|
29778
|
+
],
|
|
29779
|
+
"name": "assetCollectionParams",
|
|
29780
|
+
"default": null,
|
|
29781
|
+
"doc": "The params required if the module is type ASSET_COLLECTION"
|
|
29782
|
+
},
|
|
29783
|
+
{
|
|
29784
|
+
"type": [
|
|
29785
|
+
"null",
|
|
29786
|
+
{
|
|
29787
|
+
"type": "record",
|
|
29788
|
+
"name": "HierarchyModuleParams",
|
|
29789
|
+
"namespace": "com.linkedin.pegasus2avro.module",
|
|
29790
|
+
"fields": [
|
|
29791
|
+
{
|
|
29792
|
+
"Urn": "Urn",
|
|
29793
|
+
"urn_is_array": true,
|
|
29794
|
+
"type": [
|
|
29795
|
+
"null",
|
|
29796
|
+
{
|
|
29797
|
+
"type": "array",
|
|
29798
|
+
"items": "string"
|
|
29799
|
+
}
|
|
29800
|
+
],
|
|
29801
|
+
"name": "assetUrns",
|
|
29802
|
+
"default": null
|
|
29803
|
+
},
|
|
29804
|
+
{
|
|
29805
|
+
"type": "boolean",
|
|
29806
|
+
"name": "showRelatedEntities"
|
|
29807
|
+
},
|
|
29808
|
+
{
|
|
29809
|
+
"type": [
|
|
29810
|
+
"null",
|
|
29811
|
+
"string"
|
|
29812
|
+
],
|
|
29813
|
+
"name": "relatedEntitiesFilterJson",
|
|
29814
|
+
"default": null,
|
|
29815
|
+
"doc": "Optional filters to filter relatedEntities (assetUrns) out\n\nThe stringified json representing the logical predicate built in the UI to select assets.\nThis predicate is turned into orFilters to send through graphql since graphql doesn't support\narbitrary nesting. This string is used to restore the UI for this logical predicate."
|
|
29816
|
+
}
|
|
29817
|
+
],
|
|
29818
|
+
"doc": "The params required if the module is type HIERARCHY_VIEW"
|
|
29819
|
+
}
|
|
29820
|
+
],
|
|
29821
|
+
"name": "hierarchyViewParams",
|
|
29822
|
+
"default": null,
|
|
29823
|
+
"doc": "The params required if the module is type HIERARCHY_VIEW"
|
|
29641
29824
|
}
|
|
29642
29825
|
],
|
|
29643
29826
|
"doc": "The specific parameters stored for a module"
|
|
@@ -30045,10 +30228,19 @@
|
|
|
30045
30228
|
"namespace": "com.linkedin.pegasus2avro.identity",
|
|
30046
30229
|
"fields": [
|
|
30047
30230
|
{
|
|
30231
|
+
"Relationship": {
|
|
30232
|
+
"entityTypes": [
|
|
30233
|
+
"dataHubPageTemplate"
|
|
30234
|
+
],
|
|
30235
|
+
"name": "HasPersonalPageTemplate"
|
|
30236
|
+
},
|
|
30048
30237
|
"java": {
|
|
30049
30238
|
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
30050
30239
|
},
|
|
30051
30240
|
"Urn": "Urn",
|
|
30241
|
+
"entityTypes": [
|
|
30242
|
+
"dataHubPageTemplate"
|
|
30243
|
+
],
|
|
30052
30244
|
"type": [
|
|
30053
30245
|
"null",
|
|
30054
30246
|
"string"
|