acryl-datahub-cloud 0.3.7.7rc2__py3-none-any.whl → 0.3.7.7rc3__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 +5 -22
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/structured/__init__.py +0 -2
- acryl_datahub_cloud/metadata/schema.avsc +3 -104
- acryl_datahub_cloud/metadata/schema_classes.py +4 -155
- 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 +0 -6
- acryl_datahub_cloud/metadata/schemas/Deprecation.avsc +0 -12
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +0 -12
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +1 -10
- acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +1 -2
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc +1 -2
- acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc +0 -1
- {acryl_datahub_cloud-0.3.7.7rc2.dist-info → acryl_datahub_cloud-0.3.7.7rc3.dist-info}/METADATA +36 -36
- {acryl_datahub_cloud-0.3.7.7rc2.dist-info → acryl_datahub_cloud-0.3.7.7rc3.dist-info}/RECORD +21 -22
- acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc +0 -114
- {acryl_datahub_cloud-0.3.7.7rc2.dist-info → acryl_datahub_cloud-0.3.7.7rc3.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.7.7rc2.dist-info → acryl_datahub_cloud-0.3.7.7rc3.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.7.7rc2.dist-info → acryl_datahub_cloud-0.3.7.7rc3.dist-info}/top_level.txt +0 -0
|
@@ -83,31 +83,16 @@ class DataHubLineageFeaturesSource(Source):
|
|
|
83
83
|
query = {
|
|
84
84
|
"query": {
|
|
85
85
|
"bool": {
|
|
86
|
-
"
|
|
87
|
-
{"term": {"
|
|
86
|
+
"filter": [
|
|
87
|
+
{"term": {"source.entityType": "schemaField"}},
|
|
88
|
+
{"term": {"destination.entityType": "schemaField"}},
|
|
88
89
|
{"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
|
-
},
|
|
104
90
|
],
|
|
105
|
-
}
|
|
91
|
+
}
|
|
106
92
|
},
|
|
107
93
|
"sort": [
|
|
108
94
|
{"source.urn": {"order": "desc"}},
|
|
109
95
|
{"destination.urn": {"order": "desc"}},
|
|
110
|
-
{"relationshipType": {"order": "desc"}},
|
|
111
96
|
{"lifecycleOwner": {"order": "desc"}},
|
|
112
97
|
],
|
|
113
98
|
}
|
|
@@ -139,9 +124,7 @@ class DataHubLineageFeaturesSource(Source):
|
|
|
139
124
|
for urn in set(self.upstream_counts.keys()).union(
|
|
140
125
|
self.downstream_counts.keys()
|
|
141
126
|
):
|
|
142
|
-
|
|
143
|
-
f"{urn}: {self.upstream_counts[urn]}, {self.downstream_counts[urn]}"
|
|
144
|
-
)
|
|
127
|
+
print(urn, self.upstream_counts[urn], self.downstream_counts[urn])
|
|
145
128
|
yield MetadataChangeProposalWrapper(
|
|
146
129
|
entityUrn=urn,
|
|
147
130
|
aspect=LineageFeaturesClass(
|
|
@@ -13,7 +13,6 @@ 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
|
|
17
16
|
from .....schema_classes import StructuredPropertyValueAssignmentClass
|
|
18
17
|
|
|
19
18
|
|
|
@@ -23,7 +22,6 @@ StructuredProperties = StructuredPropertiesClass
|
|
|
23
22
|
StructuredPropertyDefinition = StructuredPropertyDefinitionClass
|
|
24
23
|
StructuredPropertyFilterStatus = StructuredPropertyFilterStatusClass
|
|
25
24
|
StructuredPropertyKey = StructuredPropertyKeyClass
|
|
26
|
-
StructuredPropertySettings = StructuredPropertySettingsClass
|
|
27
25
|
StructuredPropertyValueAssignment = StructuredPropertyValueAssignmentClass
|
|
28
26
|
|
|
29
27
|
# fmt: on
|
|
@@ -3389,8 +3389,7 @@
|
|
|
3389
3389
|
"documentation",
|
|
3390
3390
|
"testResults",
|
|
3391
3391
|
"schemaFieldProfile",
|
|
3392
|
-
"lineageFeatures"
|
|
3393
|
-
"deprecation"
|
|
3392
|
+
"lineageFeatures"
|
|
3394
3393
|
]
|
|
3395
3394
|
},
|
|
3396
3395
|
"name": "SchemaFieldKey",
|
|
@@ -6196,7 +6195,6 @@
|
|
|
6196
6195
|
"entityCategory": "core",
|
|
6197
6196
|
"entityAspects": [
|
|
6198
6197
|
"propertyDefinition",
|
|
6199
|
-
"structuredPropertySettings",
|
|
6200
6198
|
"institutionalMemory",
|
|
6201
6199
|
"status",
|
|
6202
6200
|
"share",
|
|
@@ -6538,7 +6536,6 @@
|
|
|
6538
6536
|
"Searchable": {
|
|
6539
6537
|
"fieldType": "KEYWORD"
|
|
6540
6538
|
},
|
|
6541
|
-
"deprecated": true,
|
|
6542
6539
|
"type": [
|
|
6543
6540
|
{
|
|
6544
6541
|
"type": "enum",
|
|
@@ -6557,81 +6554,10 @@
|
|
|
6557
6554
|
],
|
|
6558
6555
|
"name": "filterStatus",
|
|
6559
6556
|
"default": "DISABLED",
|
|
6560
|
-
"doc": "The filter status of this structured property - whether it will show up in search filters or not
|
|
6557
|
+
"doc": "The filter status of this structured property - whether it will show up in search filters or not"
|
|
6561
6558
|
}
|
|
6562
6559
|
]
|
|
6563
6560
|
},
|
|
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
|
-
},
|
|
6635
6561
|
{
|
|
6636
6562
|
"type": "record",
|
|
6637
6563
|
"Aspect": {
|
|
@@ -10323,7 +10249,7 @@
|
|
|
10323
10249
|
"doc": "The adjustment algorithm to use when determining the threshold for an assertion."
|
|
10324
10250
|
},
|
|
10325
10251
|
"name": "algorithm",
|
|
10326
|
-
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature
|
|
10252
|
+
"doc": "The algorithm to use to adjust assertion values to power the sensitivity control feature"
|
|
10327
10253
|
},
|
|
10328
10254
|
{
|
|
10329
10255
|
"type": "string",
|
|
@@ -10409,15 +10335,6 @@
|
|
|
10409
10335
|
"name": "embeddedAssertions",
|
|
10410
10336
|
"default": null,
|
|
10411
10337
|
"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."
|
|
10421
10338
|
}
|
|
10422
10339
|
],
|
|
10423
10340
|
"doc": "Additional context about assertion being evaluated."
|
|
@@ -13466,18 +13383,6 @@
|
|
|
13466
13383
|
"type": "string",
|
|
13467
13384
|
"name": "actor",
|
|
13468
13385
|
"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
|
|
13481
13386
|
}
|
|
13482
13387
|
],
|
|
13483
13388
|
"doc": "Deprecation status of an entity"
|
|
@@ -14175,9 +14080,6 @@
|
|
|
14175
14080
|
"doc": "The display name of the ingestion source"
|
|
14176
14081
|
},
|
|
14177
14082
|
{
|
|
14178
|
-
"Searchable": {
|
|
14179
|
-
"fieldType": "TEXT_PARTIAL"
|
|
14180
|
-
},
|
|
14181
14083
|
"type": "string",
|
|
14182
14084
|
"name": "type",
|
|
14183
14085
|
"doc": "The type of the source itself, e.g. mysql, bigquery, bigquery-usage. Should match the recipe."
|
|
@@ -14242,9 +14144,6 @@
|
|
|
14242
14144
|
"doc": "The PyPI version of the datahub CLI to use when executing a recipe"
|
|
14243
14145
|
},
|
|
14244
14146
|
{
|
|
14245
|
-
"Searchable": {
|
|
14246
|
-
"fieldName": "sourceExecutorId"
|
|
14247
|
-
},
|
|
14248
14147
|
"type": [
|
|
14249
14148
|
"null",
|
|
14250
14149
|
"string"
|
|
@@ -2002,10 +2002,7 @@ 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
|
|
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."""
|
|
2005
|
+
"""The algorithm to use to adjust assertion values to power the sensitivity control feature"""
|
|
2009
2006
|
return self._inner_dict.get('algorithm') # type: ignore
|
|
2010
2007
|
|
|
2011
2008
|
@algorithm.setter
|
|
@@ -6848,7 +6845,6 @@ class DeprecationClass(_Aspect):
|
|
|
6848
6845
|
note: str,
|
|
6849
6846
|
actor: str,
|
|
6850
6847
|
decommissionTime: Union[None, int]=None,
|
|
6851
|
-
replacement: Union[None, str]=None,
|
|
6852
6848
|
):
|
|
6853
6849
|
super().__init__()
|
|
6854
6850
|
|
|
@@ -6856,14 +6852,12 @@ class DeprecationClass(_Aspect):
|
|
|
6856
6852
|
self.decommissionTime = decommissionTime
|
|
6857
6853
|
self.note = note
|
|
6858
6854
|
self.actor = actor
|
|
6859
|
-
self.replacement = replacement
|
|
6860
6855
|
|
|
6861
6856
|
def _restore_defaults(self) -> None:
|
|
6862
6857
|
self.deprecated = bool()
|
|
6863
6858
|
self.decommissionTime = self.RECORD_SCHEMA.fields_dict["decommissionTime"].default
|
|
6864
6859
|
self.note = str()
|
|
6865
6860
|
self.actor = str()
|
|
6866
|
-
self.replacement = self.RECORD_SCHEMA.fields_dict["replacement"].default
|
|
6867
6861
|
|
|
6868
6862
|
|
|
6869
6863
|
@property
|
|
@@ -6906,16 +6900,6 @@ class DeprecationClass(_Aspect):
|
|
|
6906
6900
|
self._inner_dict['actor'] = value
|
|
6907
6901
|
|
|
6908
6902
|
|
|
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
|
-
|
|
6919
6903
|
class DisplayPropertiesClass(_Aspect):
|
|
6920
6904
|
"""Properties related to how the entity is displayed in the Datahub UI"""
|
|
6921
6905
|
|
|
@@ -22325,7 +22309,7 @@ class SchemaFieldKeyClass(_Aspect):
|
|
|
22325
22309
|
|
|
22326
22310
|
|
|
22327
22311
|
ASPECT_NAME = 'schemaFieldKey'
|
|
22328
|
-
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'schemaFieldProfile', 'lineageFeatures'
|
|
22312
|
+
ASPECT_INFO = {'keyForEntity': 'schemaField', 'entityCategory': 'core', 'entityAspects': ['schemafieldInfo', 'structuredProperties', 'forms', 'businessAttributes', 'status', 'schemaFieldAliases', 'documentation', 'testResults', 'schemaFieldProfile', 'lineageFeatures']}
|
|
22329
22313
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.metadata.key.SchemaFieldKey")
|
|
22330
22314
|
|
|
22331
22315
|
def __init__(self,
|
|
@@ -25889,16 +25873,13 @@ class AssertionEvaluationContextClass(DictWrapper):
|
|
|
25889
25873
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.monitor.AssertionEvaluationContext")
|
|
25890
25874
|
def __init__(self,
|
|
25891
25875
|
embeddedAssertions: Union[None, List["EmbeddedAssertionClass"]]=None,
|
|
25892
|
-
stdDev: Union[None, float]=None,
|
|
25893
25876
|
):
|
|
25894
25877
|
super().__init__()
|
|
25895
25878
|
|
|
25896
25879
|
self.embeddedAssertions = embeddedAssertions
|
|
25897
|
-
self.stdDev = stdDev
|
|
25898
25880
|
|
|
25899
25881
|
def _restore_defaults(self) -> None:
|
|
25900
25882
|
self.embeddedAssertions = self.RECORD_SCHEMA.fields_dict["embeddedAssertions"].default
|
|
25901
|
-
self.stdDev = self.RECORD_SCHEMA.fields_dict["stdDev"].default
|
|
25902
25883
|
|
|
25903
25884
|
|
|
25904
25885
|
@property
|
|
@@ -25913,17 +25894,6 @@ class AssertionEvaluationContextClass(DictWrapper):
|
|
|
25913
25894
|
self._inner_dict['embeddedAssertions'] = value
|
|
25914
25895
|
|
|
25915
25896
|
|
|
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
|
-
|
|
25927
25897
|
class AssertionEvaluationParametersClass(DictWrapper):
|
|
25928
25898
|
"""Information about the parameters required to evaluate an assertion"""
|
|
25929
25899
|
|
|
@@ -32335,8 +32305,7 @@ class StructuredPropertyDefinitionClass(_Aspect):
|
|
|
32335
32305
|
|
|
32336
32306
|
@property
|
|
32337
32307
|
def filterStatus(self) -> Union[Union[str, "StructuredPropertyFilterStatusClass"], None]:
|
|
32338
|
-
"""The filter status of this structured property - whether it will show up in search filters or not
|
|
32339
|
-
Deprecated! Use structuredPropertySettings.showInSearchFilters instead"""
|
|
32308
|
+
"""The filter status of this structured property - whether it will show up in search filters or not"""
|
|
32340
32309
|
return self._inner_dict.get('filterStatus') # type: ignore
|
|
32341
32310
|
|
|
32342
32311
|
@filterStatus.setter
|
|
@@ -32360,7 +32329,7 @@ class StructuredPropertyKeyClass(_Aspect):
|
|
|
32360
32329
|
|
|
32361
32330
|
|
|
32362
32331
|
ASPECT_NAME = 'structuredPropertyKey'
|
|
32363
|
-
ASPECT_INFO = {'keyForEntity': 'structuredProperty', 'entityCategory': 'core', 'entityAspects': ['propertyDefinition', '
|
|
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'}
|
|
32364
32333
|
RECORD_SCHEMA = get_schema_type("com.linkedin.pegasus2avro.structured.StructuredPropertyKey")
|
|
32365
32334
|
|
|
32366
32335
|
def __init__(self,
|
|
@@ -32384,122 +32353,6 @@ class StructuredPropertyKeyClass(_Aspect):
|
|
|
32384
32353
|
self._inner_dict['id'] = value
|
|
32385
32354
|
|
|
32386
32355
|
|
|
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
|
-
|
|
32503
32356
|
class StructuredPropertyValueAssignmentClass(DictWrapper):
|
|
32504
32357
|
# No docs available.
|
|
32505
32358
|
|
|
@@ -34978,7 +34831,6 @@ __SCHEMA_TYPES = {
|
|
|
34978
34831
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyDefinition': StructuredPropertyDefinitionClass,
|
|
34979
34832
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyFilterStatus': StructuredPropertyFilterStatusClass,
|
|
34980
34833
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyKey': StructuredPropertyKeyClass,
|
|
34981
|
-
'com.linkedin.pegasus2avro.structured.StructuredPropertySettings': StructuredPropertySettingsClass,
|
|
34982
34834
|
'com.linkedin.pegasus2avro.structured.StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
34983
34835
|
'com.linkedin.pegasus2avro.subscription.EntityChangeDetails': EntityChangeDetailsClass,
|
|
34984
34836
|
'com.linkedin.pegasus2avro.subscription.EntityChangeDetailsFilter': EntityChangeDetailsFilterClass,
|
|
@@ -35638,7 +35490,6 @@ __SCHEMA_TYPES = {
|
|
|
35638
35490
|
'StructuredPropertyDefinition': StructuredPropertyDefinitionClass,
|
|
35639
35491
|
'StructuredPropertyFilterStatus': StructuredPropertyFilterStatusClass,
|
|
35640
35492
|
'StructuredPropertyKey': StructuredPropertyKeyClass,
|
|
35641
|
-
'StructuredPropertySettings': StructuredPropertySettingsClass,
|
|
35642
35493
|
'StructuredPropertyValueAssignment': StructuredPropertyValueAssignmentClass,
|
|
35643
35494
|
'EntityChangeDetails': EntityChangeDetailsClass,
|
|
35644
35495
|
'EntityChangeDetailsFilter': EntityChangeDetailsFilterClass,
|
|
@@ -35780,7 +35631,6 @@ ASPECT_CLASSES: List[Type[_Aspect]] = [
|
|
|
35780
35631
|
AiInferenceMetadataClass,
|
|
35781
35632
|
StructuredPropertyKeyClass,
|
|
35782
35633
|
StructuredPropertyDefinitionClass,
|
|
35783
|
-
StructuredPropertySettingsClass,
|
|
35784
35634
|
StructuredPropertiesClass,
|
|
35785
35635
|
GlobalSettingsInfoClass,
|
|
35786
35636
|
DataHubRetentionConfigClass,
|
|
@@ -36040,7 +35890,6 @@ class AspectBag(TypedDict, total=False):
|
|
|
36040
35890
|
aiInferenceMetadata: AiInferenceMetadataClass
|
|
36041
35891
|
structuredPropertyKey: StructuredPropertyKeyClass
|
|
36042
35892
|
propertyDefinition: StructuredPropertyDefinitionClass
|
|
36043
|
-
structuredPropertySettings: StructuredPropertySettingsClass
|
|
36044
35893
|
structuredProperties: StructuredPropertiesClass
|
|
36045
35894
|
globalSettingsInfo: GlobalSettingsInfoClass
|
|
36046
35895
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
2608
2608
|
},
|
|
2609
2609
|
{
|
|
2610
2610
|
"type": "string",
|
|
@@ -15,9 +15,6 @@
|
|
|
15
15
|
"doc": "The display name of the ingestion source"
|
|
16
16
|
},
|
|
17
17
|
{
|
|
18
|
-
"Searchable": {
|
|
19
|
-
"fieldType": "TEXT_PARTIAL"
|
|
20
|
-
},
|
|
21
18
|
"type": "string",
|
|
22
19
|
"name": "type",
|
|
23
20
|
"doc": "The type of the source itself, e.g. mysql, bigquery, bigquery-usage. Should match the recipe."
|
|
@@ -82,9 +79,6 @@
|
|
|
82
79
|
"doc": "The PyPI version of the datahub CLI to use when executing a recipe"
|
|
83
80
|
},
|
|
84
81
|
{
|
|
85
|
-
"Searchable": {
|
|
86
|
-
"fieldName": "sourceExecutorId"
|
|
87
|
-
},
|
|
88
82
|
"type": [
|
|
89
83
|
"null",
|
|
90
84
|
"string"
|
|
@@ -39,18 +39,6 @@
|
|
|
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"
|
|
54
42
|
}
|
|
55
43
|
],
|
|
56
44
|
"doc": "Deprecation status of an entity"
|
|
@@ -6671,18 +6671,6 @@
|
|
|
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"
|
|
6686
6674
|
}
|
|
6687
6675
|
],
|
|
6688
6676
|
"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"
|
|
3031
3031
|
},
|
|
3032
3032
|
{
|
|
3033
3033
|
"type": "string",
|
|
@@ -3147,15 +3147,6 @@
|
|
|
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."
|
|
3159
3150
|
}
|
|
3160
3151
|
],
|
|
3161
3152
|
"doc": "Additional context about assertion being evaluated."
|
|
@@ -365,7 +365,6 @@
|
|
|
365
365
|
"Searchable": {
|
|
366
366
|
"fieldType": "KEYWORD"
|
|
367
367
|
},
|
|
368
|
-
"deprecated": true,
|
|
369
368
|
"type": [
|
|
370
369
|
{
|
|
371
370
|
"type": "enum",
|
|
@@ -384,7 +383,7 @@
|
|
|
384
383
|
],
|
|
385
384
|
"name": "filterStatus",
|
|
386
385
|
"default": "DISABLED",
|
|
387
|
-
"doc": "The filter status of this structured property - whether it will show up in search filters or not
|
|
386
|
+
"doc": "The filter status of this structured property - whether it will show up in search filters or not"
|
|
388
387
|
}
|
|
389
388
|
]
|
|
390
389
|
}
|
{acryl_datahub_cloud-0.3.7.7rc2.dist-info → acryl_datahub_cloud-0.3.7.7rc3.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.7rc3
|
|
4
4
|
Requires-Dist: avro-gen3==0.7.16
|
|
5
5
|
Requires-Dist: acryl-datahub
|
|
6
6
|
Provides-Extra: datahub-lineage-features
|
|
7
|
-
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
8
7
|
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
9
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
10
8
|
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
9
|
+
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
11
10
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
11
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
12
12
|
Provides-Extra: datahub-reporting-forms
|
|
13
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
14
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
15
13
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
16
14
|
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
15
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
17
16
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
17
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
18
18
|
Provides-Extra: datahub-reporting-extract-graph
|
|
19
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
20
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
21
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
22
19
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
20
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
23
21
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
22
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
24
23
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
24
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
25
25
|
Provides-Extra: datahub-reporting-extract-sql
|
|
26
|
-
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
27
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
28
26
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
29
27
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
28
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
30
29
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
30
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
31
31
|
Provides-Extra: datahub-usage-feature-reporting
|
|
32
|
+
Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
|
|
32
33
|
Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
|
|
33
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
|
|
34
34
|
Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
|
|
35
|
-
Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
|
|
36
35
|
Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
|
|
36
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
|
|
37
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
|
|
37
38
|
Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
|
|
39
|
+
Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
|
|
38
40
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
|
|
41
|
+
Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
|
|
39
42
|
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
|
|
40
|
-
Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
|
|
41
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
|
|
42
|
-
Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
|
|
43
43
|
Provides-Extra: acryl-cs-issues
|
|
44
|
-
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
45
|
-
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
46
44
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
45
|
+
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
47
46
|
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
47
|
+
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
48
48
|
Provides-Extra: all
|
|
49
|
+
Requires-Dist: pandas; extra == "all"
|
|
49
50
|
Requires-Dist: pyarrow; extra == "all"
|
|
50
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
51
|
-
Requires-Dist: openai; extra == "all"
|
|
52
51
|
Requires-Dist: numpy<2; extra == "all"
|
|
53
|
-
Requires-Dist: jinja2; extra == "all"
|
|
54
|
-
Requires-Dist: polars<=1.16.0; extra == "all"
|
|
55
52
|
Requires-Dist: boto3; extra == "all"
|
|
56
|
-
Requires-Dist:
|
|
57
|
-
Requires-Dist:
|
|
53
|
+
Requires-Dist: jinja2; extra == "all"
|
|
54
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
55
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
58
56
|
Requires-Dist: zenpy; extra == "all"
|
|
57
|
+
Requires-Dist: duckdb; extra == "all"
|
|
58
|
+
Requires-Dist: pydantic<2; extra == "all"
|
|
59
59
|
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
60
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
61
|
+
Requires-Dist: polars<=1.16.0; extra == "all"
|
|
60
62
|
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
61
|
-
Requires-Dist:
|
|
62
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
63
|
-
Requires-Dist: pydantic<2; extra == "all"
|
|
63
|
+
Requires-Dist: openai; extra == "all"
|
|
64
64
|
Provides-Extra: dev
|
|
65
|
+
Requires-Dist: pandas; extra == "dev"
|
|
65
66
|
Requires-Dist: pyarrow; extra == "dev"
|
|
66
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
67
|
-
Requires-Dist: openai; extra == "dev"
|
|
68
67
|
Requires-Dist: numpy<2; extra == "dev"
|
|
69
|
-
Requires-Dist: jinja2; extra == "dev"
|
|
70
|
-
Requires-Dist: polars<=1.16.0; extra == "dev"
|
|
71
|
-
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
72
68
|
Requires-Dist: boto3; extra == "dev"
|
|
73
|
-
Requires-Dist:
|
|
74
|
-
Requires-Dist:
|
|
69
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
70
|
+
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
71
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
72
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
75
73
|
Requires-Dist: zenpy; extra == "dev"
|
|
74
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
75
|
+
Requires-Dist: pydantic<2; extra == "dev"
|
|
76
76
|
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
77
|
+
Requires-Dist: slack-sdk; extra == "dev"
|
|
78
|
+
Requires-Dist: polars<=1.16.0; extra == "dev"
|
|
77
79
|
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
78
|
-
Requires-Dist:
|
|
79
|
-
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
80
|
-
Requires-Dist: pydantic<2; extra == "dev"
|
|
80
|
+
Requires-Dist: openai; extra == "dev"
|
{acryl_datahub_cloud-0.3.7.7rc2.dist-info → acryl_datahub_cloud-0.3.7.7rc3.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=kF0oOZxxRIN0wJsmP9-0GSkuZ3d28krBp561xxQTOqw,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=DS9VgFXtGDRP98dHBE4KVoB2MDFE-4FSS5RlBuYZqRY,5519
|
|
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=xpxdbHu5ZYS36v1xZo0TPUp6YWrNVsHORfdFoPAu9aI,1070142
|
|
28
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=ij01j8rZNyRZEECPw7OZPHoercAdW726Fly3iQxdsaE,1350416
|
|
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=AmTAUkUmtOVxKc-0Oi2mx0Zr1zo_xoM7NJkyp1OXDr0,1025
|
|
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=mVWedJGrSroF-CD2kjGoh8pZ7SoHK69-1EFYuzYQplQ,206224
|
|
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=JZduQByRmIdzxrLy5_JxHVOoIiULN54mAVUA49oyQdA,2840
|
|
132
|
+
acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc,sha256=HCxlza4yND8EV-OXq5gl3HW0Wm_ieLBt0nDB0UUESkM,130692
|
|
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=KXg4_seydINUdEFyCSjw6xbYrNZkZYwlbPxmnIqePyg,207205
|
|
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=GVGe8zB_eAmKkssdtn1U-yNZyD2l5u2P6MJ0u9utDe4,4259
|
|
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=KItgnvran9xSSpAjmt2RYsF_5ERh5FnlygeMT6bnhiA,1053
|
|
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=YVxllocfr7wjN9JhcP5puhLAXgXAiL1JuGxxWvx0FAI,400489
|
|
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=H6yCJBxaSyJKvKTnn-WlMednDUm2pZFm2RiNzC4HupY,275078
|
|
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=zETgZc8hurAZxhD1tQTeOH7bCAlyrPKiPeFfZlSNxBo,999
|
|
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,9 +354,8 @@ 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=
|
|
359
|
-
acryl_datahub_cloud/metadata/schemas/StructuredPropertySettings.avsc,sha256=EDNlXfT1TqogfulCanIc-nuYO9ZxRFOGzD9tl3ZJdB8,3732
|
|
357
|
+
acryl_datahub_cloud/metadata/schemas/StructuredPropertyDefinition.avsc,sha256=xetghmPnH684RcG6n1fpr-7okLbLfRwzRIBumqz9Miw,12197
|
|
358
|
+
acryl_datahub_cloud/metadata/schemas/StructuredPropertyKey.avsc,sha256=TOVMmlEwM3uMqmQNofHlmyDFJupF5wbj8aDuYGCpSUQ,613
|
|
360
359
|
acryl_datahub_cloud/metadata/schemas/SubTypes.avsc,sha256=bhXbzK020zDyQno97Xp05vmoMeZ82IGu2jz7pWDo3RQ,655
|
|
361
360
|
acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc,sha256=ZTPsp2moR8t9BEzG4tKLcflAsAlY_Yeve-81k7aZ6bY,13143
|
|
362
361
|
acryl_datahub_cloud/metadata/schemas/SubscriptionKey.avsc,sha256=ChdTAOA1c6Ojx3HqNPDfQaupwezhp7SLUOmgIaeSD2Q,486
|
|
@@ -374,8 +373,8 @@ acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=B7mqUWVwduvWSP9zp
|
|
|
374
373
|
acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
|
|
375
374
|
acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
|
|
376
375
|
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
|
|
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.
|
|
381
|
-
acryl_datahub_cloud-0.3.7.
|
|
376
|
+
acryl_datahub_cloud-0.3.7.7rc3.dist-info/METADATA,sha256=RgvxuCLqqonKphUq8IYRhaSkDq5Wb-tdknVhdv-VNlk,4067
|
|
377
|
+
acryl_datahub_cloud-0.3.7.7rc3.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
378
|
+
acryl_datahub_cloud-0.3.7.7rc3.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
|
|
379
|
+
acryl_datahub_cloud-0.3.7.7rc3.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
380
|
+
acryl_datahub_cloud-0.3.7.7rc3.dist-info/RECORD,,
|
|
@@ -1,114 +0,0 @@
|
|
|
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
|
-
}
|
|
File without changes
|
|
File without changes
|
{acryl_datahub_cloud-0.3.7.7rc2.dist-info → acryl_datahub_cloud-0.3.7.7rc3.dist-info}/top_level.txt
RENAMED
|
File without changes
|