acryl-datahub-cloud 0.3.7.7rc1__py3-none-any.whl → 0.3.7.7rc2__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.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/lineage_features/source.py +22 -5
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +104 -3
- acryl_datahub_cloud/metadata/schema_classes.py +155 -4
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceInfo.avsc +6 -0
- acryl_datahub_cloud/metadata/schemas/Deprecation.avsc +12 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +12 -0
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +10 -1
- acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +114 -0
- {acryl_datahub_cloud-0.3.7.7rc1.dist-info → acryl_datahub_cloud-0.3.7.7rc2.dist-info}/METADATA +29 -29
- {acryl_datahub_cloud-0.3.7.7rc1.dist-info → acryl_datahub_cloud-0.3.7.7rc2.dist-info}/RECORD +22 -21
- {acryl_datahub_cloud-0.3.7.7rc1.dist-info → acryl_datahub_cloud-0.3.7.7rc2.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.7.7rc1.dist-info → acryl_datahub_cloud-0.3.7.7rc2.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.7.7rc1.dist-info → acryl_datahub_cloud-0.3.7.7rc2.dist-info}/top_level.txt +0 -0
|
@@ -83,16 +83,31 @@ class DataHubLineageFeaturesSource(Source):
|
|
|
83
83
|
query = {
|
|
84
84
|
"query": {
|
|
85
85
|
"bool": {
|
|
86
|
-
"
|
|
87
|
-
{"term": {"
|
|
88
|
-
{"term": {"destination.entityType": "schemaField"}},
|
|
86
|
+
"should": [
|
|
87
|
+
{"term": {"relationshipType": "Consumes"}},
|
|
89
88
|
{"term": {"relationshipType": "DownstreamOf"}},
|
|
89
|
+
{"term": {"relationshipType": "TrainedBy"}},
|
|
90
|
+
{"term": {"relationshipType": "UsedBy"}},
|
|
91
|
+
{"term": {"relationshipType": "MemberOf"}},
|
|
92
|
+
{"term": {"relationshipType": "DerivedFrom"}},
|
|
93
|
+
{"term": {"relationshipType": "Produces"}},
|
|
94
|
+
{"term": {"relationshipType": "DashboardContainsDashboard"}},
|
|
95
|
+
{
|
|
96
|
+
"bool": {
|
|
97
|
+
"must": [
|
|
98
|
+
{"term": {"relationshipType": "Contains"}},
|
|
99
|
+
{"term": {"source.entityType": "dashboard"}},
|
|
100
|
+
{"term": {"destination.entityType": "chart"}},
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
},
|
|
90
104
|
],
|
|
91
|
-
}
|
|
105
|
+
},
|
|
92
106
|
},
|
|
93
107
|
"sort": [
|
|
94
108
|
{"source.urn": {"order": "desc"}},
|
|
95
109
|
{"destination.urn": {"order": "desc"}},
|
|
110
|
+
{"relationshipType": {"order": "desc"}},
|
|
96
111
|
{"lifecycleOwner": {"order": "desc"}},
|
|
97
112
|
],
|
|
98
113
|
}
|
|
@@ -124,7 +139,9 @@ class DataHubLineageFeaturesSource(Source):
|
|
|
124
139
|
for urn in set(self.upstream_counts.keys()).union(
|
|
125
140
|
self.downstream_counts.keys()
|
|
126
141
|
):
|
|
127
|
-
|
|
142
|
+
logger.debug(
|
|
143
|
+
f"{urn}: {self.upstream_counts[urn]}, {self.downstream_counts[urn]}"
|
|
144
|
+
)
|
|
128
145
|
yield MetadataChangeProposalWrapper(
|
|
129
146
|
entityUrn=urn,
|
|
130
147
|
aspect=LineageFeaturesClass(
|
|
@@ -13,6 +13,7 @@ from .....schema_classes import StructuredPropertiesClass
|
|
|
13
13
|
from .....schema_classes import StructuredPropertyDefinitionClass
|
|
14
14
|
from .....schema_classes import StructuredPropertyFilterStatusClass
|
|
15
15
|
from .....schema_classes import StructuredPropertyKeyClass
|
|
16
|
+
from .....schema_classes import StructuredPropertySettingsClass
|
|
16
17
|
from .....schema_classes import StructuredPropertyValueAssignmentClass
|
|
17
18
|
|
|
18
19
|
|
|
@@ -22,6 +23,7 @@ StructuredProperties = StructuredPropertiesClass
|
|
|
22
23
|
StructuredPropertyDefinition = StructuredPropertyDefinitionClass
|
|
23
24
|
StructuredPropertyFilterStatus = StructuredPropertyFilterStatusClass
|
|
24
25
|
StructuredPropertyKey = StructuredPropertyKeyClass
|
|
26
|
+
StructuredPropertySettings = StructuredPropertySettingsClass
|
|
25
27
|
StructuredPropertyValueAssignment = StructuredPropertyValueAssignmentClass
|
|
26
28
|
|
|
27
29
|
# fmt: on
|
|
@@ -3389,7 +3389,8 @@
|
|
|
3389
3389
|
"documentation",
|
|
3390
3390
|
"testResults",
|
|
3391
3391
|
"schemaFieldProfile",
|
|
3392
|
-
"lineageFeatures"
|
|
3392
|
+
"lineageFeatures",
|
|
3393
|
+
"deprecation"
|
|
3393
3394
|
]
|
|
3394
3395
|
},
|
|
3395
3396
|
"name": "SchemaFieldKey",
|
|
@@ -6195,6 +6196,7 @@
|
|
|
6195
6196
|
"entityCategory": "core",
|
|
6196
6197
|
"entityAspects": [
|
|
6197
6198
|
"propertyDefinition",
|
|
6199
|
+
"structuredPropertySettings",
|
|
6198
6200
|
"institutionalMemory",
|
|
6199
6201
|
"status",
|
|
6200
6202
|
"share",
|
|
@@ -6536,6 +6538,7 @@
|
|
|
6536
6538
|
"Searchable": {
|
|
6537
6539
|
"fieldType": "KEYWORD"
|
|
6538
6540
|
},
|
|
6541
|
+
"deprecated": true,
|
|
6539
6542
|
"type": [
|
|
6540
6543
|
{
|
|
6541
6544
|
"type": "enum",
|
|
@@ -6554,10 +6557,81 @@
|
|
|
6554
6557
|
],
|
|
6555
6558
|
"name": "filterStatus",
|
|
6556
6559
|
"default": "DISABLED",
|
|
6557
|
-
"doc": "The filter status of this structured property - whether it will show up in search filters or not"
|
|
6560
|
+
"doc": "The filter status of this structured property - whether it will show up in search filters or not\nDeprecated! Use structuredPropertySettings.showInSearchFilters instead"
|
|
6558
6561
|
}
|
|
6559
6562
|
]
|
|
6560
6563
|
},
|
|
6564
|
+
{
|
|
6565
|
+
"type": "record",
|
|
6566
|
+
"Aspect": {
|
|
6567
|
+
"name": "structuredPropertySettings"
|
|
6568
|
+
},
|
|
6569
|
+
"name": "StructuredPropertySettings",
|
|
6570
|
+
"namespace": "com.linkedin.pegasus2avro.structured",
|
|
6571
|
+
"fields": [
|
|
6572
|
+
{
|
|
6573
|
+
"Searchable": {
|
|
6574
|
+
"fieldType": "BOOLEAN"
|
|
6575
|
+
},
|
|
6576
|
+
"type": "boolean",
|
|
6577
|
+
"name": "isHidden",
|
|
6578
|
+
"default": false,
|
|
6579
|
+
"doc": "Whether or not this asset should be hidden in the main application"
|
|
6580
|
+
},
|
|
6581
|
+
{
|
|
6582
|
+
"Searchable": {
|
|
6583
|
+
"fieldType": "BOOLEAN"
|
|
6584
|
+
},
|
|
6585
|
+
"type": "boolean",
|
|
6586
|
+
"name": "showInSearchFilters",
|
|
6587
|
+
"default": false,
|
|
6588
|
+
"doc": "Whether or not this asset should be displayed as a search filter"
|
|
6589
|
+
},
|
|
6590
|
+
{
|
|
6591
|
+
"Searchable": {
|
|
6592
|
+
"fieldType": "BOOLEAN"
|
|
6593
|
+
},
|
|
6594
|
+
"type": "boolean",
|
|
6595
|
+
"name": "showInAssetSummary",
|
|
6596
|
+
"default": false,
|
|
6597
|
+
"doc": "Whether or not this asset should be displayed in the asset sidebar"
|
|
6598
|
+
},
|
|
6599
|
+
{
|
|
6600
|
+
"Searchable": {
|
|
6601
|
+
"fieldType": "BOOLEAN"
|
|
6602
|
+
},
|
|
6603
|
+
"type": "boolean",
|
|
6604
|
+
"name": "showAsAssetBadge",
|
|
6605
|
+
"default": false,
|
|
6606
|
+
"doc": "Whether or not this asset should be displayed as an asset badge on other\nasset's headers"
|
|
6607
|
+
},
|
|
6608
|
+
{
|
|
6609
|
+
"Searchable": {
|
|
6610
|
+
"fieldType": "BOOLEAN"
|
|
6611
|
+
},
|
|
6612
|
+
"type": "boolean",
|
|
6613
|
+
"name": "showInColumnsTable",
|
|
6614
|
+
"default": false,
|
|
6615
|
+
"doc": "Whether or not this asset should be displayed as a column in the schema field table\nin a Dataset's \"Columns\" tab."
|
|
6616
|
+
},
|
|
6617
|
+
{
|
|
6618
|
+
"Searchable": {
|
|
6619
|
+
"/time": {
|
|
6620
|
+
"fieldName": "lastModifiedSettings",
|
|
6621
|
+
"fieldType": "DATETIME"
|
|
6622
|
+
}
|
|
6623
|
+
},
|
|
6624
|
+
"type": [
|
|
6625
|
+
"null",
|
|
6626
|
+
"com.linkedin.pegasus2avro.common.AuditStamp"
|
|
6627
|
+
],
|
|
6628
|
+
"name": "lastModified",
|
|
6629
|
+
"default": null,
|
|
6630
|
+
"doc": "Last Modified Audit stamp"
|
|
6631
|
+
}
|
|
6632
|
+
],
|
|
6633
|
+
"doc": "Settings specific to a structured property entity"
|
|
6634
|
+
},
|
|
6561
6635
|
{
|
|
6562
6636
|
"type": "record",
|
|
6563
6637
|
"Aspect": {
|
|
@@ -10249,7 +10323,7 @@
|
|
|
10249
10323
|
"doc": "The adjustment algorithm to use when determining the threshold for an assertion."
|
|
10250
10324
|
},
|
|
10251
10325
|
"name": "algorithm",
|
|
10252
|
-
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature"
|
|
10326
|
+
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature\n\nNote that for algorithm \"STDDEV\" which leverages the standard deviation of trailing values,\nthe \"stdDev\" field must be provided inside of AssertionEvaluationContext.pdl by the offline pipeline."
|
|
10253
10327
|
},
|
|
10254
10328
|
{
|
|
10255
10329
|
"type": "string",
|
|
@@ -10335,6 +10409,15 @@
|
|
|
10335
10409
|
"name": "embeddedAssertions",
|
|
10336
10410
|
"default": null,
|
|
10337
10411
|
"doc": "Currently used for Smart Assertions\nAn embedded copy of the assertion used to evaluate which will overwrite the referenced assertion\nif present and if the EmbeddedAssertion's evaluationTimeWindow period is valid"
|
|
10412
|
+
},
|
|
10413
|
+
{
|
|
10414
|
+
"type": [
|
|
10415
|
+
"null",
|
|
10416
|
+
"float"
|
|
10417
|
+
],
|
|
10418
|
+
"name": "stdDev",
|
|
10419
|
+
"default": null,
|
|
10420
|
+
"doc": "The std deviation of the metric values used for training.\nThis is used to determine the final adjusted threshold for the assertion."
|
|
10338
10421
|
}
|
|
10339
10422
|
],
|
|
10340
10423
|
"doc": "Additional context about assertion being evaluated."
|
|
@@ -13383,6 +13466,18 @@
|
|
|
13383
13466
|
"type": "string",
|
|
13384
13467
|
"name": "actor",
|
|
13385
13468
|
"doc": "The user URN which will be credited for modifying this deprecation content."
|
|
13469
|
+
},
|
|
13470
|
+
{
|
|
13471
|
+
"java": {
|
|
13472
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
13473
|
+
},
|
|
13474
|
+
"Urn": "Urn",
|
|
13475
|
+
"type": [
|
|
13476
|
+
"null",
|
|
13477
|
+
"string"
|
|
13478
|
+
],
|
|
13479
|
+
"name": "replacement",
|
|
13480
|
+
"default": null
|
|
13386
13481
|
}
|
|
13387
13482
|
],
|
|
13388
13483
|
"doc": "Deprecation status of an entity"
|
|
@@ -14080,6 +14175,9 @@
|
|
|
14080
14175
|
"doc": "The display name of the ingestion source"
|
|
14081
14176
|
},
|
|
14082
14177
|
{
|
|
14178
|
+
"Searchable": {
|
|
14179
|
+
"fieldType": "TEXT_PARTIAL"
|
|
14180
|
+
},
|
|
14083
14181
|
"type": "string",
|
|
14084
14182
|
"name": "type",
|
|
14085
14183
|
"doc": "The type of the source itself, e.g. mysql, bigquery, bigquery-usage. Should match the recipe."
|
|
@@ -14144,6 +14242,9 @@
|
|
|
14144
14242
|
"doc": "The PyPI version of the datahub CLI to use when executing a recipe"
|
|
14145
14243
|
},
|
|
14146
14244
|
{
|
|
14245
|
+
"Searchable": {
|
|
14246
|
+
"fieldName": "sourceExecutorId"
|
|
14247
|
+
},
|
|
14147
14248
|
"type": [
|
|
14148
14249
|
"null",
|
|
14149
14250
|
"string"
|
|
@@ -2002,7 +2002,10 @@ class AssertionAdjustmentSettingsClass(DictWrapper):
|
|
|
2002
2002
|
|
|
2003
2003
|
@property
|
|
2004
2004
|
def algorithm(self) -> Union[str, "AdjustmentAlgorithmClass"]:
|
|
2005
|
-
"""The algorithm to use to adjust assertion values to power the sensitivity control feature
|
|
2005
|
+
"""The algorithm to use to adjust assertion values to power the sensitivity control feature
|
|
2006
|
+
|
|
2007
|
+
Note that for algorithm "STDDEV" which leverages the standard deviation of trailing values,
|
|
2008
|
+
the "stdDev" field must be provided inside of AssertionEvaluationContext.pdl by the offline pipeline."""
|
|
2006
2009
|
return self._inner_dict.get('algorithm') # type: ignore
|
|
2007
2010
|
|
|
2008
2011
|
@algorithm.setter
|
|
@@ -6845,6 +6848,7 @@ class DeprecationClass(_Aspect):
|
|
|
6845
6848
|
note: str,
|
|
6846
6849
|
actor: str,
|
|
6847
6850
|
decommissionTime: Union[None, int]=None,
|
|
6851
|
+
replacement: Union[None, str]=None,
|
|
6848
6852
|
):
|
|
6849
6853
|
super().__init__()
|
|
6850
6854
|
|
|
@@ -6852,12 +6856,14 @@ class DeprecationClass(_Aspect):
|
|
|
6852
6856
|
self.decommissionTime = decommissionTime
|
|
6853
6857
|
self.note = note
|
|
6854
6858
|
self.actor = actor
|
|
6859
|
+
self.replacement = replacement
|
|
6855
6860
|
|
|
6856
6861
|
def _restore_defaults(self) -> None:
|
|
6857
6862
|
self.deprecated = bool()
|
|
6858
6863
|
self.decommissionTime = self.RECORD_SCHEMA.fields_dict["decommissionTime"].default
|
|
6859
6864
|
self.note = str()
|
|
6860
6865
|
self.actor = str()
|
|
6866
|
+
self.replacement = self.RECORD_SCHEMA.fields_dict["replacement"].default
|
|
6861
6867
|
|
|
6862
6868
|
|
|
6863
6869
|
@property
|
|
@@ -6900,6 +6906,16 @@ class DeprecationClass(_Aspect):
|
|
|
6900
6906
|
self._inner_dict['actor'] = value
|
|
6901
6907
|
|
|
6902
6908
|
|
|
6909
|
+
@property
|
|
6910
|
+
def replacement(self) -> Union[None, str]:
|
|
6911
|
+
# No docs available.
|
|
6912
|
+
return self._inner_dict.get('replacement') # type: ignore
|
|
6913
|
+
|
|
6914
|
+
@replacement.setter
|
|
6915
|
+
def replacement(self, value: Union[None, str]) -> None:
|
|
6916
|
+
self._inner_dict['replacement'] = value
|
|
6917
|
+
|
|
6918
|
+
|
|
6903
6919
|
class DisplayPropertiesClass(_Aspect):
|
|
6904
6920
|
"""Properties related to how the entity is displayed in the Datahub UI"""
|
|
6905
6921
|
|
|
@@ -22309,7 +22325,7 @@ class SchemaFieldKeyClass(_Aspect):
|
|
|
22309
22325
|
|
|
22310
22326
|
|
|
22311
22327
|
ASPECT_NAME = 'schemaFieldKey'
|
|
22312
|
-
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'schemaFieldProfile', 'lineageFeatures']}
|
|
22328
|
+
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'schemaFieldProfile', 'lineageFeatures', 'deprecation']}
|
|
22313
22329
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
|
|
22314
22330
|
|
|
22315
22331
|
def __init__(self,
|
|
@@ -25873,13 +25889,16 @@ class AssertionEvaluationContextClass(DictWrapper):
|
|
|
25873
25889
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.monitor.AssertionEvaluationContext")
|
|
25874
25890
|
def __init__(self,
|
|
25875
25891
|
embeddedAssertions: Union[None, List["EmbeddedAssertionClass"]]=None,
|
|
25892
|
+
stdDev: Union[None, float]=None,
|
|
25876
25893
|
):
|
|
25877
25894
|
super().__init__()
|
|
25878
25895
|
|
|
25879
25896
|
self.embeddedAssertions = embeddedAssertions
|
|
25897
|
+
self.stdDev = stdDev
|
|
25880
25898
|
|
|
25881
25899
|
def _restore_defaults(self) -> None:
|
|
25882
25900
|
self.embeddedAssertions = self.RECORD_SCHEMA.fields_dict["embeddedAssertions"].default
|
|
25901
|
+
self.stdDev = self.RECORD_SCHEMA.fields_dict["stdDev"].default
|
|
25883
25902
|
|
|
25884
25903
|
|
|
25885
25904
|
@property
|
|
@@ -25894,6 +25913,17 @@ class AssertionEvaluationContextClass(DictWrapper):
|
|
|
25894
25913
|
self._inner_dict['embeddedAssertions'] = value
|
|
25895
25914
|
|
|
25896
25915
|
|
|
25916
|
+
@property
|
|
25917
|
+
def stdDev(self) -> Union[None, float]:
|
|
25918
|
+
"""The std deviation of the metric values used for training.
|
|
25919
|
+
This is used to determine the final adjusted threshold for the assertion."""
|
|
25920
|
+
return self._inner_dict.get('stdDev') # type: ignore
|
|
25921
|
+
|
|
25922
|
+
@stdDev.setter
|
|
25923
|
+
def stdDev(self, value: Union[None, float]) -> None:
|
|
25924
|
+
self._inner_dict['stdDev'] = value
|
|
25925
|
+
|
|
25926
|
+
|
|
25897
25927
|
class AssertionEvaluationParametersClass(DictWrapper):
|
|
25898
25928
|
"""Information about the parameters required to evaluate an assertion"""
|
|
25899
25929
|
|
|
@@ -32305,7 +32335,8 @@ class StructuredPropertyDefinitionClass(_Aspect):
|
|
|
32305
32335
|
|
|
32306
32336
|
@property
|
|
32307
32337
|
def filterStatus(self) -> Union[Union[str, "StructuredPropertyFilterStatusClass"], None]:
|
|
32308
|
-
"""The filter status of this structured property - whether it will show up in search filters or not
|
|
32338
|
+
"""The filter status of this structured property - whether it will show up in search filters or not
|
|
32339
|
+
Deprecated! Use structuredPropertySettings.showInSearchFilters instead"""
|
|
32309
32340
|
return self._inner_dict.get('filterStatus') # type: ignore
|
|
32310
32341
|
|
|
32311
32342
|
@filterStatus.setter
|
|
@@ -32329,7 +32360,7 @@ class StructuredPropertyKeyClass(_Aspect):
|
|
|
32329
32360
|
|
|
32330
32361
|
|
|
32331
32362
|
ASPECT_NAME = 'structuredPropertyKey'
|
|
32332
|
-
ASPECT_INFO = {'keyForEntity': 'structuredProperty', 'entityCategory': 'core', 'entityAspects': ['propertyDefinition', 'institutionalMemory', 'status', 'share', 'origin'], 'entityDoc': 'Structured Property represents a property meant for extending the core model of a logical entity'}
|
|
32363
|
+
ASPECT_INFO = {'keyForEntity': 'structuredProperty', 'entityCategory': 'core', 'entityAspects': ['propertyDefinition', 'structuredPropertySettings', 'institutionalMemory', 'status', 'share', 'origin'], 'entityDoc': 'Structured Property represents a property meant for extending the core model of a logical entity'}
|
|
32333
32364
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.structured.StructuredPropertyKey")
|
|
32334
32365
|
|
|
32335
32366
|
def __init__(self,
|
|
@@ -32353,6 +32384,122 @@ class StructuredPropertyKeyClass(_Aspect):
|
|
|
32353
32384
|
self._inner_dict['id'] = value
|
|
32354
32385
|
|
|
32355
32386
|
|
|
32387
|
+
class StructuredPropertySettingsClass(_Aspect):
|
|
32388
|
+
"""Settings specific to a structured property entity"""
|
|
32389
|
+
|
|
32390
|
+
|
|
32391
|
+
ASPECT_NAME = 'structuredPropertySettings'
|
|
32392
|
+
ASPECT_INFO = {}
|
|
32393
|
+
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.structured.StructuredPropertySettings")
|
|
32394
|
+
|
|
32395
|
+
def __init__(self,
|
|
32396
|
+
isHidden: Optional[bool]=None,
|
|
32397
|
+
showInSearchFilters: Optional[bool]=None,
|
|
32398
|
+
showInAssetSummary: Optional[bool]=None,
|
|
32399
|
+
showAsAssetBadge: Optional[bool]=None,
|
|
32400
|
+
showInColumnsTable: Optional[bool]=None,
|
|
32401
|
+
lastModified: Union[None, "AuditStampClass"]=None,
|
|
32402
|
+
):
|
|
32403
|
+
super().__init__()
|
|
32404
|
+
|
|
32405
|
+
if isHidden is None:
|
|
32406
|
+
# default: False
|
|
32407
|
+
self.isHidden = self.RECORD_SCHEMA.fields_dict["isHidden"].default
|
|
32408
|
+
else:
|
|
32409
|
+
self.isHidden = isHidden
|
|
32410
|
+
if showInSearchFilters is None:
|
|
32411
|
+
# default: False
|
|
32412
|
+
self.showInSearchFilters = self.RECORD_SCHEMA.fields_dict["showInSearchFilters"].default
|
|
32413
|
+
else:
|
|
32414
|
+
self.showInSearchFilters = showInSearchFilters
|
|
32415
|
+
if showInAssetSummary is None:
|
|
32416
|
+
# default: False
|
|
32417
|
+
self.showInAssetSummary = self.RECORD_SCHEMA.fields_dict["showInAssetSummary"].default
|
|
32418
|
+
else:
|
|
32419
|
+
self.showInAssetSummary = showInAssetSummary
|
|
32420
|
+
if showAsAssetBadge is None:
|
|
32421
|
+
# default: False
|
|
32422
|
+
self.showAsAssetBadge = self.RECORD_SCHEMA.fields_dict["showAsAssetBadge"].default
|
|
32423
|
+
else:
|
|
32424
|
+
self.showAsAssetBadge = showAsAssetBadge
|
|
32425
|
+
if showInColumnsTable is None:
|
|
32426
|
+
# default: False
|
|
32427
|
+
self.showInColumnsTable = self.RECORD_SCHEMA.fields_dict["showInColumnsTable"].default
|
|
32428
|
+
else:
|
|
32429
|
+
self.showInColumnsTable = showInColumnsTable
|
|
32430
|
+
self.lastModified = lastModified
|
|
32431
|
+
|
|
32432
|
+
def _restore_defaults(self) -> None:
|
|
32433
|
+
self.isHidden = self.RECORD_SCHEMA.fields_dict["isHidden"].default
|
|
32434
|
+
self.showInSearchFilters = self.RECORD_SCHEMA.fields_dict["showInSearchFilters"].default
|
|
32435
|
+
self.showInAssetSummary = self.RECORD_SCHEMA.fields_dict["showInAssetSummary"].default
|
|
32436
|
+
self.showAsAssetBadge = self.RECORD_SCHEMA.fields_dict["showAsAssetBadge"].default
|
|
32437
|
+
self.showInColumnsTable = self.RECORD_SCHEMA.fields_dict["showInColumnsTable"].default
|
|
32438
|
+
self.lastModified = self.RECORD_SCHEMA.fields_dict["lastModified"].default
|
|
32439
|
+
|
|
32440
|
+
|
|
32441
|
+
@property
|
|
32442
|
+
def isHidden(self) -> bool:
|
|
32443
|
+
"""Whether or not this asset should be hidden in the main application"""
|
|
32444
|
+
return self._inner_dict.get('isHidden') # type: ignore
|
|
32445
|
+
|
|
32446
|
+
@isHidden.setter
|
|
32447
|
+
def isHidden(self, value: bool) -> None:
|
|
32448
|
+
self._inner_dict['isHidden'] = value
|
|
32449
|
+
|
|
32450
|
+
|
|
32451
|
+
@property
|
|
32452
|
+
def showInSearchFilters(self) -> bool:
|
|
32453
|
+
"""Whether or not this asset should be displayed as a search filter"""
|
|
32454
|
+
return self._inner_dict.get('showInSearchFilters') # type: ignore
|
|
32455
|
+
|
|
32456
|
+
@showInSearchFilters.setter
|
|
32457
|
+
def showInSearchFilters(self, value: bool) -> None:
|
|
32458
|
+
self._inner_dict['showInSearchFilters'] = value
|
|
32459
|
+
|
|
32460
|
+
|
|
32461
|
+
@property
|
|
32462
|
+
def showInAssetSummary(self) -> bool:
|
|
32463
|
+
"""Whether or not this asset should be displayed in the asset sidebar"""
|
|
32464
|
+
return self._inner_dict.get('showInAssetSummary') # type: ignore
|
|
32465
|
+
|
|
32466
|
+
@showInAssetSummary.setter
|
|
32467
|
+
def showInAssetSummary(self, value: bool) -> None:
|
|
32468
|
+
self._inner_dict['showInAssetSummary'] = value
|
|
32469
|
+
|
|
32470
|
+
|
|
32471
|
+
@property
|
|
32472
|
+
def showAsAssetBadge(self) -> bool:
|
|
32473
|
+
"""Whether or not this asset should be displayed as an asset badge on other
|
|
32474
|
+
asset's headers"""
|
|
32475
|
+
return self._inner_dict.get('showAsAssetBadge') # type: ignore
|
|
32476
|
+
|
|
32477
|
+
@showAsAssetBadge.setter
|
|
32478
|
+
def showAsAssetBadge(self, value: bool) -> None:
|
|
32479
|
+
self._inner_dict['showAsAssetBadge'] = value
|
|
32480
|
+
|
|
32481
|
+
|
|
32482
|
+
@property
|
|
32483
|
+
def showInColumnsTable(self) -> bool:
|
|
32484
|
+
"""Whether or not this asset should be displayed as a column in the schema field table
|
|
32485
|
+
in a Dataset's "Columns" tab."""
|
|
32486
|
+
return self._inner_dict.get('showInColumnsTable') # type: ignore
|
|
32487
|
+
|
|
32488
|
+
@showInColumnsTable.setter
|
|
32489
|
+
def showInColumnsTable(self, value: bool) -> None:
|
|
32490
|
+
self._inner_dict['showInColumnsTable'] = value
|
|
32491
|
+
|
|
32492
|
+
|
|
32493
|
+
@property
|
|
32494
|
+
def lastModified(self) -> Union[None, "AuditStampClass"]:
|
|
32495
|
+
"""Last Modified Audit stamp"""
|
|
32496
|
+
return self._inner_dict.get('lastModified') # type: ignore
|
|
32497
|
+
|
|
32498
|
+
@lastModified.setter
|
|
32499
|
+
def lastModified(self, value: Union[None, "AuditStampClass"]) -> None:
|
|
32500
|
+
self._inner_dict['lastModified'] = value
|
|
32501
|
+
|
|
32502
|
+
|
|
32356
32503
|
class StructuredPropertyValueAssignmentClass(DictWrapper):
|
|
32357
32504
|
# No docs available.
|
|
32358
32505
|
|
|
@@ -34831,6 +34978,7 @@ __SCHEMA_TYPES = {
|
|
|
34831
34978
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyDefinition': StructuredPropertyDefinitionClass,
|
|
34832
34979
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyFilterStatus': StructuredPropertyFilterStatusClass,
|
|
34833
34980
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyKey': StructuredPropertyKeyClass,
|
|
34981
|
+
'com.linkedin.pegasus2avro.structured.StructuredPropertySettings': StructuredPropertySettingsClass,
|
|
34834
34982
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
34835
34983
|
'com.linkedin.pegasus2avro.subscription.EntityChangeDetails': EntityChangeDetailsClass,
|
|
34836
34984
|
'com.linkedin.pegasus2avro.subscription.EntityChangeDetailsFilter': EntityChangeDetailsFilterClass,
|
|
@@ -35490,6 +35638,7 @@ __SCHEMA_TYPES = {
|
|
|
35490
35638
|
'StructuredPropertyDefinition': StructuredPropertyDefinitionClass,
|
|
35491
35639
|
'StructuredPropertyFilterStatus': StructuredPropertyFilterStatusClass,
|
|
35492
35640
|
'StructuredPropertyKey': StructuredPropertyKeyClass,
|
|
35641
|
+
'StructuredPropertySettings': StructuredPropertySettingsClass,
|
|
35493
35642
|
'StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
35494
35643
|
'EntityChangeDetails': EntityChangeDetailsClass,
|
|
35495
35644
|
'EntityChangeDetailsFilter': EntityChangeDetailsFilterClass,
|
|
@@ -35631,6 +35780,7 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
|
35631
35780
|
AiInferenceMetadataClass,
|
|
35632
35781
|
StructuredPropertyKeyClass,
|
|
35633
35782
|
StructuredPropertyDefinitionClass,
|
|
35783
|
+
StructuredPropertySettingsClass,
|
|
35634
35784
|
StructuredPropertiesClass,
|
|
35635
35785
|
GlobalSettingsInfoClass,
|
|
35636
35786
|
DataHubRetentionConfigClass,
|
|
@@ -35890,6 +36040,7 @@ class AspectBag(TypedDict, total=False):
|
|
|
35890
36040
|
aiInferenceMetadata: AiInferenceMetadataClass
|
|
35891
36041
|
structuredPropertyKey: StructuredPropertyKeyClass
|
|
35892
36042
|
propertyDefinition: StructuredPropertyDefinitionClass
|
|
36043
|
+
structuredPropertySettings: StructuredPropertySettingsClass
|
|
35893
36044
|
structuredProperties: StructuredPropertiesClass
|
|
35894
36045
|
globalSettingsInfo: GlobalSettingsInfoClass
|
|
35895
36046
|
dataHubRetentionConfig: DataHubRetentionConfigClass
|
|
@@ -2745,7 +2745,7 @@
|
|
|
2745
2745
|
"doc": "The adjustment algorithm to use when determining the threshold for an assertion."
|
|
2746
2746
|
},
|
|
2747
2747
|
"name": "algorithm",
|
|
2748
|
-
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature"
|
|
2748
|
+
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature\n\nNote that for algorithm \"STDDEV\" which leverages the standard deviation of trailing values,\nthe \"stdDev\" field must be provided inside of AssertionEvaluationContext.pdl by the offline pipeline."
|
|
2749
2749
|
},
|
|
2750
2750
|
{
|
|
2751
2751
|
"type": "string",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"doc": "The adjustment algorithm to use when determining the threshold for an assertion."
|
|
74
74
|
},
|
|
75
75
|
"name": "algorithm",
|
|
76
|
-
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature"
|
|
76
|
+
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature\n\nNote that for algorithm \"STDDEV\" which leverages the standard deviation of trailing values,\nthe \"stdDev\" field must be provided inside of AssertionEvaluationContext.pdl by the offline pipeline."
|
|
77
77
|
},
|
|
78
78
|
{
|
|
79
79
|
"type": "string",
|
|
@@ -2513,7 +2513,7 @@
|
|
|
2513
2513
|
"doc": "The adjustment algorithm to use when determining the threshold for an assertion."
|
|
2514
2514
|
},
|
|
2515
2515
|
"name": "algorithm",
|
|
2516
|
-
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature"
|
|
2516
|
+
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature\n\nNote that for algorithm \"STDDEV\" which leverages the standard deviation of trailing values,\nthe \"stdDev\" field must be provided inside of AssertionEvaluationContext.pdl by the offline pipeline."
|
|
2517
2517
|
},
|
|
2518
2518
|
{
|
|
2519
2519
|
"type": "string",
|
|
@@ -2604,7 +2604,7 @@
|
|
|
2604
2604
|
"doc": "The adjustment algorithm to use when determining the threshold for an assertion."
|
|
2605
2605
|
},
|
|
2606
2606
|
"name": "algorithm",
|
|
2607
|
-
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature"
|
|
2607
|
+
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature\n\nNote that for algorithm \"STDDEV\" which leverages the standard deviation of trailing values,\nthe \"stdDev\" field must be provided inside of AssertionEvaluationContext.pdl by the offline pipeline."
|
|
2608
2608
|
},
|
|
2609
2609
|
{
|
|
2610
2610
|
"type": "string",
|
|
@@ -15,6 +15,9 @@
|
|
|
15
15
|
"doc": "The display name of the ingestion source"
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
|
+
"Searchable": {
|
|
19
|
+
"fieldType": "TEXT_PARTIAL"
|
|
20
|
+
},
|
|
18
21
|
"type": "string",
|
|
19
22
|
"name": "type",
|
|
20
23
|
"doc": "The type of the source itself, e.g. mysql, bigquery, bigquery-usage. Should match the recipe."
|
|
@@ -79,6 +82,9 @@
|
|
|
79
82
|
"doc": "The PyPI version of the datahub CLI to use when executing a recipe"
|
|
80
83
|
},
|
|
81
84
|
{
|
|
85
|
+
"Searchable": {
|
|
86
|
+
"fieldName": "sourceExecutorId"
|
|
87
|
+
},
|
|
82
88
|
"type": [
|
|
83
89
|
"null",
|
|
84
90
|
"string"
|
|
@@ -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"
|
|
@@ -6671,6 +6671,18 @@
|
|
|
6671
6671
|
"name": "actor",
|
|
6672
6672
|
"doc": "The user URN which will be credited for modifying this deprecation content.",
|
|
6673
6673
|
"Urn": "Urn"
|
|
6674
|
+
},
|
|
6675
|
+
{
|
|
6676
|
+
"java": {
|
|
6677
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
6678
|
+
},
|
|
6679
|
+
"type": [
|
|
6680
|
+
"null",
|
|
6681
|
+
"string"
|
|
6682
|
+
],
|
|
6683
|
+
"name": "replacement",
|
|
6684
|
+
"default": null,
|
|
6685
|
+
"Urn": "Urn"
|
|
6674
6686
|
}
|
|
6675
6687
|
],
|
|
6676
6688
|
"doc": "Deprecation status of an entity"
|
|
@@ -3027,7 +3027,7 @@
|
|
|
3027
3027
|
"doc": "The adjustment algorithm to use when determining the threshold for an assertion."
|
|
3028
3028
|
},
|
|
3029
3029
|
"name": "algorithm",
|
|
3030
|
-
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature"
|
|
3030
|
+
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature\n\nNote that for algorithm \"STDDEV\" which leverages the standard deviation of trailing values,\nthe \"stdDev\" field must be provided inside of AssertionEvaluationContext.pdl by the offline pipeline."
|
|
3031
3031
|
},
|
|
3032
3032
|
{
|
|
3033
3033
|
"type": "string",
|
|
@@ -3147,6 +3147,15 @@
|
|
|
3147
3147
|
"name": "embeddedAssertions",
|
|
3148
3148
|
"default": null,
|
|
3149
3149
|
"doc": "Currently used for Smart Assertions\nAn embedded copy of the assertion used to evaluate which will overwrite the referenced assertion\nif present and if the EmbeddedAssertion's evaluationTimeWindow period is valid"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"type": [
|
|
3153
|
+
"null",
|
|
3154
|
+
"float"
|
|
3155
|
+
],
|
|
3156
|
+
"name": "stdDev",
|
|
3157
|
+
"default": null,
|
|
3158
|
+
"doc": "The std deviation of the metric values used for training.\nThis is used to determine the final adjusted threshold for the assertion."
|
|
3150
3159
|
}
|
|
3151
3160
|
],
|
|
3152
3161
|
"doc": "Additional context about assertion being evaluated."
|
|
@@ -365,6 +365,7 @@
|
|
|
365
365
|
"Searchable": {
|
|
366
366
|
"fieldType": "KEYWORD"
|
|
367
367
|
},
|
|
368
|
+
"deprecated": true,
|
|
368
369
|
"type": [
|
|
369
370
|
{
|
|
370
371
|
"type": "enum",
|
|
@@ -383,7 +384,7 @@
|
|
|
383
384
|
],
|
|
384
385
|
"name": "filterStatus",
|
|
385
386
|
"default": "DISABLED",
|
|
386
|
-
"doc": "The filter status of this structured property - whether it will show up in search filters or not"
|
|
387
|
+
"doc": "The filter status of this structured property - whether it will show up in search filters or not\nDeprecated! Use structuredPropertySettings.showInSearchFilters instead"
|
|
387
388
|
}
|
|
388
389
|
]
|
|
389
390
|
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "structuredPropertySettings"
|
|
5
|
+
},
|
|
6
|
+
"name": "StructuredPropertySettings",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.structured",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"Searchable": {
|
|
11
|
+
"fieldType": "BOOLEAN"
|
|
12
|
+
},
|
|
13
|
+
"type": "boolean",
|
|
14
|
+
"name": "isHidden",
|
|
15
|
+
"default": false,
|
|
16
|
+
"doc": "Whether or not this asset should be hidden in the main application"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"Searchable": {
|
|
20
|
+
"fieldType": "BOOLEAN"
|
|
21
|
+
},
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
"name": "showInSearchFilters",
|
|
24
|
+
"default": false,
|
|
25
|
+
"doc": "Whether or not this asset should be displayed as a search filter"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"Searchable": {
|
|
29
|
+
"fieldType": "BOOLEAN"
|
|
30
|
+
},
|
|
31
|
+
"type": "boolean",
|
|
32
|
+
"name": "showInAssetSummary",
|
|
33
|
+
"default": false,
|
|
34
|
+
"doc": "Whether or not this asset should be displayed in the asset sidebar"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"Searchable": {
|
|
38
|
+
"fieldType": "BOOLEAN"
|
|
39
|
+
},
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"name": "showAsAssetBadge",
|
|
42
|
+
"default": false,
|
|
43
|
+
"doc": "Whether or not this asset should be displayed as an asset badge on other\nasset's headers"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"Searchable": {
|
|
47
|
+
"fieldType": "BOOLEAN"
|
|
48
|
+
},
|
|
49
|
+
"type": "boolean",
|
|
50
|
+
"name": "showInColumnsTable",
|
|
51
|
+
"default": false,
|
|
52
|
+
"doc": "Whether or not this asset should be displayed as a column in the schema field table\nin a Dataset's \"Columns\" tab."
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"Searchable": {
|
|
56
|
+
"/time": {
|
|
57
|
+
"fieldName": "lastModifiedSettings",
|
|
58
|
+
"fieldType": "DATETIME"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"type": [
|
|
62
|
+
"null",
|
|
63
|
+
{
|
|
64
|
+
"type": "record",
|
|
65
|
+
"name": "AuditStamp",
|
|
66
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
67
|
+
"fields": [
|
|
68
|
+
{
|
|
69
|
+
"type": "long",
|
|
70
|
+
"name": "time",
|
|
71
|
+
"doc": "When did the resource/association/sub-resource move into the specific lifecycle stage represented by this AuditEvent."
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"java": {
|
|
75
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
76
|
+
},
|
|
77
|
+
"type": "string",
|
|
78
|
+
"name": "actor",
|
|
79
|
+
"doc": "The entity (e.g. a member URN) which will be credited for moving the resource/association/sub-resource into the specific lifecycle stage. It is also the one used to authorize the change.",
|
|
80
|
+
"Urn": "Urn"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"java": {
|
|
84
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
85
|
+
},
|
|
86
|
+
"type": [
|
|
87
|
+
"null",
|
|
88
|
+
"string"
|
|
89
|
+
],
|
|
90
|
+
"name": "impersonator",
|
|
91
|
+
"default": null,
|
|
92
|
+
"doc": "The entity (e.g. a service URN) which performs the change on behalf of the Actor and must be authorized to act as the Actor.",
|
|
93
|
+
"Urn": "Urn"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": [
|
|
97
|
+
"null",
|
|
98
|
+
"string"
|
|
99
|
+
],
|
|
100
|
+
"name": "message",
|
|
101
|
+
"default": null,
|
|
102
|
+
"doc": "Additional context around how DataHub was informed of the particular change. For example: was the change created by an automated process, or manually."
|
|
103
|
+
}
|
|
104
|
+
],
|
|
105
|
+
"doc": "Data captured on a resource/association/sub-resource level giving insight into when that resource/association/sub-resource moved into a particular lifecycle stage, and who acted to move it into that specific lifecycle stage."
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"name": "lastModified",
|
|
109
|
+
"default": null,
|
|
110
|
+
"doc": "Last Modified Audit stamp"
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
"doc": "Settings specific to a structured property entity"
|
|
114
|
+
}
|
{acryl_datahub_cloud-0.3.7.7rc1.dist-info → acryl_datahub_cloud-0.3.7.7rc2.dist-info}/METADATA
RENAMED
|
@@ -1,80 +1,80 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.7.
|
|
3
|
+
Version: 0.3.7.7rc2
|
|
4
4
|
Requires-Dist: avro-gen3==0.7.16
|
|
5
5
|
Requires-Dist: acryl-datahub
|
|
6
6
|
Provides-Extra: datahub-lineage-features
|
|
7
7
|
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
8
8
|
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
9
9
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
10
|
-
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
11
10
|
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
11
|
+
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
12
12
|
Provides-Extra: datahub-reporting-forms
|
|
13
13
|
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
14
14
|
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
15
15
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
16
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
17
16
|
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
17
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
18
18
|
Provides-Extra: datahub-reporting-extract-graph
|
|
19
19
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
20
20
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
21
21
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
22
22
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
23
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
24
23
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
24
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
25
25
|
Provides-Extra: datahub-reporting-extract-sql
|
|
26
26
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
27
27
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
28
28
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
29
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
30
29
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
30
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
31
31
|
Provides-Extra: datahub-usage-feature-reporting
|
|
32
|
-
Requires-Dist:
|
|
32
|
+
Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
|
|
33
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
|
|
33
34
|
Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
|
|
34
35
|
Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
|
|
35
|
-
Requires-Dist:
|
|
36
|
+
Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
|
|
36
37
|
Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
|
|
37
38
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
|
|
38
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
|
|
39
39
|
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
|
|
40
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
|
|
41
40
|
Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
|
|
41
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
|
|
42
42
|
Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
|
|
43
43
|
Provides-Extra: acryl-cs-issues
|
|
44
|
-
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
45
|
-
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
46
|
-
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
47
44
|
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
45
|
+
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
46
|
+
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
47
|
+
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
48
48
|
Provides-Extra: all
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
49
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
50
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
51
|
+
Requires-Dist: openai; extra == "all"
|
|
51
52
|
Requires-Dist: numpy<2; extra == "all"
|
|
53
|
+
Requires-Dist: jinja2; extra == "all"
|
|
52
54
|
Requires-Dist: polars<=1.16.0; extra == "all"
|
|
53
|
-
Requires-Dist:
|
|
55
|
+
Requires-Dist: boto3; extra == "all"
|
|
54
56
|
Requires-Dist: duckdb; extra == "all"
|
|
57
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
58
|
+
Requires-Dist: zenpy; extra == "all"
|
|
55
59
|
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
56
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
57
|
-
Requires-Dist: openai; extra == "all"
|
|
58
60
|
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
59
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
60
61
|
Requires-Dist: pandas; extra == "all"
|
|
61
|
-
Requires-Dist:
|
|
62
|
-
Requires-Dist: slack-sdk; extra == "all"
|
|
62
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
63
63
|
Requires-Dist: pydantic<2; extra == "all"
|
|
64
64
|
Provides-Extra: dev
|
|
65
|
-
Requires-Dist:
|
|
66
|
-
Requires-Dist:
|
|
65
|
+
Requires-Dist: pyarrow; extra == "dev"
|
|
66
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
67
|
+
Requires-Dist: openai; extra == "dev"
|
|
67
68
|
Requires-Dist: numpy<2; extra == "dev"
|
|
69
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
68
70
|
Requires-Dist: polars<=1.16.0; extra == "dev"
|
|
69
|
-
Requires-Dist:
|
|
71
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
72
|
+
Requires-Dist: boto3; extra == "dev"
|
|
70
73
|
Requires-Dist: duckdb; extra == "dev"
|
|
74
|
+
Requires-Dist: slack-sdk; extra == "dev"
|
|
75
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
71
76
|
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
72
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
73
|
-
Requires-Dist: openai; extra == "dev"
|
|
74
77
|
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
75
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
76
78
|
Requires-Dist: pandas; extra == "dev"
|
|
77
|
-
Requires-Dist:
|
|
78
|
-
Requires-Dist: slack-sdk; extra == "dev"
|
|
79
|
-
Requires-Dist: jinja2; extra == "dev"
|
|
79
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
80
80
|
Requires-Dist: pydantic<2; extra == "dev"
|
{acryl_datahub_cloud-0.3.7.7rc1.dist-info → acryl_datahub_cloud-0.3.7.7rc2.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
|
|
2
|
-
acryl_datahub_cloud/_codegen_config.json,sha256=
|
|
2
|
+
acryl_datahub_cloud/_codegen_config.json,sha256=Nh3_Ke1OGOdNJXFtZkNIZXJ3Hvybq6U-fW8SHt_f90A,557
|
|
3
3
|
acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=uFjR2SqGS34y09-S9WqOqNGY8nOq6ptGf4y9781i8Z4,25230
|
|
@@ -22,10 +22,10 @@ acryl_datahub_cloud/elasticsearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
|
|
|
22
22
|
acryl_datahub_cloud/elasticsearch/config.py,sha256=6QNBOmoQZu1cJrDIBZyvZgdQt0QLfP82hdQkPtP-4HE,1220
|
|
23
23
|
acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vEb1mcw8QkOmdIFSVSX4OVU,2788
|
|
24
24
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
acryl_datahub_cloud/lineage_features/source.py,sha256=
|
|
25
|
+
acryl_datahub_cloud/lineage_features/source.py,sha256=Edve1oBoR87RTloAfjAuxgULlMI_HNSFuQfbiVjkac4,6412
|
|
26
26
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
27
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256=
|
|
28
|
-
acryl_datahub_cloud/metadata/schema_classes.py,sha256=
|
|
27
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=y31D847uVv-hkTsJ_YF9wu8BEqOXjXmIwAuYHS3WWmc,1073437
|
|
28
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=iSbEGVD4B4PH_n9cCnC0W1_1uYSK8qxEsX0v8m9jBhQ,1356640
|
|
29
29
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
30
30
|
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=42Qj-MV_bgobj55sId7kZbMwd2bto8HEZ6mrOxEZmLY,119444
|
|
31
31
|
acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
@@ -106,7 +106,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/secret/__init__.py,sha256
|
|
|
106
106
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/__init__.py,sha256=qA_voeSf0fRLEKPqaRBbxCKr55p663UNGOfxpPZh7XQ,427
|
|
107
107
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/settings/global/__init__.py,sha256=dmZ-cnA9YrHcbYwKIQHdRzQ0zcFyXzf9e6Uqa4Qsz8E,1497
|
|
108
108
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/step/__init__.py,sha256=HLNNbqBlyhcg09eXWx_AMD_JoOtBPYEi2kv12PE0R9E,329
|
|
109
|
-
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py,sha256=
|
|
109
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py,sha256=T4RWiXIVKgPxdmrbciYL8w4kQdzvgqwcmnREeY5-aOo,1150
|
|
110
110
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/subscription/__init__.py,sha256=JRQ9eerz1qiTd0qe7wc1AUUgeMnnDK31ay39t-qTjiQ,852
|
|
111
111
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/tag/__init__.py,sha256=Odb4mzloKJIlpoFHODEIxt_OIgFNrZExcyQtvXxjOFQ,290
|
|
112
112
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/telemetry/__init__.py,sha256=N4CJwzAqTrRoCQ2Aoa_e8cUZI_fzn9Zdo2okvO-_nWE,302
|
|
@@ -126,12 +126,12 @@ acryl_datahub_cloud/metadata/schemas/AnomaliesSummary.avsc,sha256=EhwcEm-B4pSpYK
|
|
|
126
126
|
acryl_datahub_cloud/metadata/schemas/AnomalyInfo.avsc,sha256=s2AHYDP3uDGzT4dIt9dr5g8tBtb03sMhh_BrywyS4BE,11589
|
|
127
127
|
acryl_datahub_cloud/metadata/schemas/AnomalyKey.avsc,sha256=b83B4Hmr44W3SOXWWFGZttEhYUwLVyqqYBFDzmx2k1Q,583
|
|
128
128
|
acryl_datahub_cloud/metadata/schemas/AssertionActions.avsc,sha256=zrvXzX2Nv_dmK6I3ZXCVWQ1bVs1q01Gl9sDRJA8oSDU,1618
|
|
129
|
-
acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=
|
|
129
|
+
acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc,sha256=GRoy_H6q_9nZpJQcJ_JSmh5jpimqeMdLxAlYNKAcoH4,206426
|
|
130
130
|
acryl_datahub_cloud/metadata/schemas/AssertionDryRunEvent.avsc,sha256=uXrBr18Nx-qFCBGRCFKmHDxrFjfkOipTkVl6W5ieXyw,10366
|
|
131
|
-
acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc,sha256=
|
|
132
|
-
acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=
|
|
131
|
+
acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc,sha256=zol3rz4EznfMIV9ENV2E_73O6i50tRKW79b-ZCAqzp8,3042
|
|
132
|
+
acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=d_c8gzI-eyZstyhparRJ8MnDPzqphJiuMpijiF2zHr4,130894
|
|
133
133
|
acryl_datahub_cloud/metadata/schemas/AssertionKey.avsc,sha256=j3fJgSlz7YqprtMwZTQaujePRmmMeQEEJATa__eO_SI,790
|
|
134
|
-
acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=
|
|
134
|
+
acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc,sha256=Q4cUYj4Esy6W6Edj0T_mJ7zAuN0GJJRaXof-Cidhp84,207407
|
|
135
135
|
acryl_datahub_cloud/metadata/schemas/AssertionSummary.avsc,sha256=wuSb0f7OFPV3IIQahnjycm21ZVqWnDatvV3Vt6fvKdo,1207
|
|
136
136
|
acryl_datahub_cloud/metadata/schemas/AssertionsSummary.avsc,sha256=7gzgianKh5MnTG9J4O9dfQs0lrRUj4r50dvMHHCigZY,5258
|
|
137
137
|
acryl_datahub_cloud/metadata/schemas/BatchTestRunEvent.avsc,sha256=EPzwsRVMzBYCVRxug_LynjxRGkzv7QwFjw_zkJFBZAg,10083
|
|
@@ -177,7 +177,7 @@ acryl_datahub_cloud/metadata/schemas/DataHubActionKey.avsc,sha256=7WGnI_vOvRKzwE
|
|
|
177
177
|
acryl_datahub_cloud/metadata/schemas/DataHubActionStatus.avsc,sha256=9OrdSvY6lUGr_srXyBynFk4JYguFbckbX0xJv6QH4Jo,6854
|
|
178
178
|
acryl_datahub_cloud/metadata/schemas/DataHubConnectionDetails.avsc,sha256=IvZj6OA7HRvy-ZIIn0UbXdJNnyt_oTn16XIe5ZlcqGk,1661
|
|
179
179
|
acryl_datahub_cloud/metadata/schemas/DataHubConnectionKey.avsc,sha256=VwbamVFoEdp6epz1lJm_UShBl6ksBxoA7jAYuPI5u3M,522
|
|
180
|
-
acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceInfo.avsc,sha256=
|
|
180
|
+
acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceInfo.avsc,sha256=iq96WPk_mObiWdTAC7tPoMRR2QT43QXdwQGg9mOvsQk,4415
|
|
181
181
|
acryl_datahub_cloud/metadata/schemas/DataHubIngestionSourceKey.avsc,sha256=CSmoOx_Eqa1-he5dRaVOUQWIv1l2e2lraEPIixKK-lo,526
|
|
182
182
|
acryl_datahub_cloud/metadata/schemas/DataHubPersonaInfo.avsc,sha256=aAi4gMpOZaJCz3JL3uOYfZsxWWUJOsdboK3GVftX9HI,521
|
|
183
183
|
acryl_datahub_cloud/metadata/schemas/DataHubPersonaKey.avsc,sha256=ddj-DhXa0_YMdLaGkKLLSklfIeDRvSwPXu8o__YEXUE,448
|
|
@@ -224,7 +224,7 @@ acryl_datahub_cloud/metadata/schemas/DatasetProfile.avsc,sha256=0NlrSBbwDdlOZclW
|
|
|
224
224
|
acryl_datahub_cloud/metadata/schemas/DatasetProperties.avsc,sha256=DFJn75feqaoQk84zin_o_lqsFFhqkwya5LGC5LLJXbU,4209
|
|
225
225
|
acryl_datahub_cloud/metadata/schemas/DatasetUpstreamLineage.avsc,sha256=PjAWPbsqwH7FjX2kFDy0dE6ENYOwRynH9vJerWisr2A,5365
|
|
226
226
|
acryl_datahub_cloud/metadata/schemas/DatasetUsageStatistics.avsc,sha256=JKNy_KlUqr3kt7o1Cu2DiQx3XUG_NQbVFVpeNr4ntCc,6999
|
|
227
|
-
acryl_datahub_cloud/metadata/schemas/Deprecation.avsc,sha256=
|
|
227
|
+
acryl_datahub_cloud/metadata/schemas/Deprecation.avsc,sha256=SmbTlMB9fujdMBjYEQkzaU4XJzwM1gD6E8L2zoL1b4Q,1280
|
|
228
228
|
acryl_datahub_cloud/metadata/schemas/DisplayProperties.avsc,sha256=MTa_g2s0roxNFFggWU8rslUH3UFe3xe11uUXyh0Go_I,1732
|
|
229
229
|
acryl_datahub_cloud/metadata/schemas/Documentation.avsc,sha256=1gPcRrDQc-fU53t83PRtf4MeP-uqxJHazdyx_iQPKac,7011
|
|
230
230
|
acryl_datahub_cloud/metadata/schemas/DomainKey.avsc,sha256=wpbecMs6TuzUT5cBIlqIOtrrW3mTSSkLQsgowigbOLc,707
|
|
@@ -304,11 +304,11 @@ acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc,sha256=oY1pLXiKzk1ugE7dxO0S
|
|
|
304
304
|
acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc,sha256=wGCQ-yMLnss-rRl-NigFPMLEesvSeK0t1iOblyG_m0U,8411
|
|
305
305
|
acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc,sha256=8D4Cpyg2YhNpAn65d9C0b2tD4GfmXX3pI2J9EmAslok,1167
|
|
306
306
|
acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyProperties.avsc,sha256=PHVzHrp7TS6ZILaf9wB4dhkx17W9of859a5sd2Wxu9M,4575
|
|
307
|
-
acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=
|
|
307
|
+
acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=lgi1l7Jpcw2JhxIBWh5Y98oA9F-4jxbZ5wAcJuenD_U,400932
|
|
308
308
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc,sha256=mpdodpx25E6M1Gq_7slEcPAm-1Es5xPsoqV60HgO7zg,12167
|
|
309
309
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc,sha256=EMfQrYsuHf1p6UvBjoLtfdTHGe-vGNJaCFEHz8hdKU0,9698
|
|
310
310
|
acryl_datahub_cloud/metadata/schemas/Metrics.avsc,sha256=O7DJGjOwmHbb1x_Zj7AuM_HaHKjBvkfJKfUsX8icXD4,690
|
|
311
|
-
acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=
|
|
311
|
+
acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc,sha256=tgoafKOW2KmqDBsnHYfK_V7wU1umraA60UTy80ZtwZ4,275761
|
|
312
312
|
acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc,sha256=N2iGkhpTgv61j-U8tKOGm9GRPJVuK5bqLMhXSaY8mIQ,869
|
|
313
313
|
acryl_datahub_cloud/metadata/schemas/MonitorTimeseriesState.avsc,sha256=1jXL_tvgZq4-4Y__7YUpdfzSbI4TiQgThSd1f23UwXc,4550
|
|
314
314
|
acryl_datahub_cloud/metadata/schemas/NativeGroupMembership.avsc,sha256=9mh9tzyj3ErmTIhX7ERRUm78j1QtGwXUl9UuIXPndBg,588
|
|
@@ -341,7 +341,7 @@ acryl_datahub_cloud/metadata/schemas/RoleMembership.avsc,sha256=Al3LXKRowCiHhgTf
|
|
|
341
341
|
acryl_datahub_cloud/metadata/schemas/RoleProperties.avsc,sha256=tDw-WF1uBGIcrk38nOnXs3FCF_YjBhScarJbreQvwjE,3037
|
|
342
342
|
acryl_datahub_cloud/metadata/schemas/SchemaFieldAliases.avsc,sha256=El_cxn0KUhMf2LGfMPzcZ6Xtths2wQOaF9fnM1KQmxQ,560
|
|
343
343
|
acryl_datahub_cloud/metadata/schemas/SchemaFieldInfo.avsc,sha256=Gf9EGqrEf10554hd4Eut7T8ZdOR-9OHgDXVRhFo311o,800
|
|
344
|
-
acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc,sha256=
|
|
344
|
+
acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc,sha256=sAuGgFqyIsiLCysqlW-YBW_1nYK4AwrUipVNcOodsaY,1020
|
|
345
345
|
acryl_datahub_cloud/metadata/schemas/SchemaFieldProfile.avsc,sha256=OxYPLRDCv318n1k7d2aaFYlO3jOD0YtmGzenB1LfBuI,17532
|
|
346
346
|
acryl_datahub_cloud/metadata/schemas/SchemaFieldsInferredMetadata.avsc,sha256=LOGg4tLnUzOJ0NqKmYCZqf5-TvoeFrmZtaz8eBrLhjc,9269
|
|
347
347
|
acryl_datahub_cloud/metadata/schemas/SchemaFieldsInferredNeighbors.avsc,sha256=WVWdteaKsDuSypzv5_WXedMmCj9r29HIqFQQULWnWRY,5962
|
|
@@ -354,8 +354,9 @@ acryl_datahub_cloud/metadata/schemas/SourceCode.avsc,sha256=tUgo2rczO5x1fxw3fYNW
|
|
|
354
354
|
acryl_datahub_cloud/metadata/schemas/Status.avsc,sha256=rPZSXSJdwnNywqNx2qll8cdt54aYgI-YUbRr3GK7h78,522
|
|
355
355
|
acryl_datahub_cloud/metadata/schemas/StorageFeatures.avsc,sha256=F5LFc4P05YrKReB8ZsxJNXSLg2FJaE7vk63NM4GN0dE,1752
|
|
356
356
|
acryl_datahub_cloud/metadata/schemas/StructuredProperties.avsc,sha256=N0NNDrkqbIgEHrb5uz1ynwZh3mb_ICVK7tDcnBLMfjI,4032
|
|
357
|
-
acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc,sha256=
|
|
358
|
-
acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=
|
|
357
|
+
acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc,sha256=yLmH1SNHL4c7J6aIA5GBrc1rI3aAyWPlT47yYFnZZYk,12295
|
|
358
|
+
acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=RpAH8fW-64C6yVU8_D1h5vYeg8fNp5t2S6VLpOEcMZM,649
|
|
359
|
+
acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc,sha256=EDNlXfT1TqogfulCanIc-nuYO9ZxRFOGzD9tl3ZJdB8,3732
|
|
359
360
|
acryl_datahub_cloud/metadata/schemas/SubTypes.avsc,sha256=bhXbzK020zDyQno97Xp05vmoMeZ82IGu2jz7pWDo3RQ,655
|
|
360
361
|
acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=ZTPsp2moR8t9BEzG4tKLcflAsAlY_Yeve-81k7aZ6bY,13143
|
|
361
362
|
acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc,sha256=ChdTAOA1c6Ojx3HqNPDfQaupwezhp7SLUOmgIaeSD2Q,486
|
|
@@ -373,8 +374,8 @@ acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=B7mqUWVwduvWSP9zp
|
|
|
373
374
|
acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
|
|
374
375
|
acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
|
|
375
376
|
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
|
|
376
|
-
acryl_datahub_cloud-0.3.7.
|
|
377
|
-
acryl_datahub_cloud-0.3.7.
|
|
378
|
-
acryl_datahub_cloud-0.3.7.
|
|
379
|
-
acryl_datahub_cloud-0.3.7.
|
|
380
|
-
acryl_datahub_cloud-0.3.7.
|
|
377
|
+
acryl_datahub_cloud-0.3.7.7rc2.dist-info/METADATA,sha256=4BJNLYD-Sz4Z5rkJ-BmGmb0qb0T2m4qgJbORkD8Bfuc,4067
|
|
378
|
+
acryl_datahub_cloud-0.3.7.7rc2.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
379
|
+
acryl_datahub_cloud-0.3.7.7rc2.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
|
|
380
|
+
acryl_datahub_cloud-0.3.7.7rc2.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
381
|
+
acryl_datahub_cloud-0.3.7.7rc2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{acryl_datahub_cloud-0.3.7.7rc1.dist-info → acryl_datahub_cloud-0.3.7.7rc2.dist-info}/top_level.txt
RENAMED
|
File without changes
|