acryl-datahub-cloud 0.3.13rc2__py3-none-any.whl → 0.3.13rc4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +56 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py +53 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
- acryl_datahub_cloud/metadata/schema.avsc +666 -33
- acryl_datahub_cloud/metadata/schema_classes.py +1077 -1
- acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc +136 -1
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc +683 -0
- acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +136 -1
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +4 -0
- {acryl_datahub_cloud-0.3.13rc2.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/METADATA +45 -45
- {acryl_datahub_cloud-0.3.13rc2.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/RECORD +16 -13
- {acryl_datahub_cloud-0.3.13rc2.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.13rc2.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.13rc2.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "actionWorkflowKey",
|
|
5
|
+
"keyForEntity": "actionWorkflow",
|
|
6
|
+
"entityCategory": "internal",
|
|
7
|
+
"entityAspects": [
|
|
8
|
+
"actionWorkflowInfo"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"name": "ActionWorkflowKey",
|
|
12
|
+
"namespace": "com.linkedin.pegasus2avro.metadata.key",
|
|
13
|
+
"fields": [
|
|
14
|
+
{
|
|
15
|
+
"type": "string",
|
|
16
|
+
"name": "id",
|
|
17
|
+
"doc": " The unique identifier for the workflow "
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"doc": "Key for an ActionRequestWorkflow"
|
|
21
|
+
}
|
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
},
|
|
244
244
|
"type": "string",
|
|
245
245
|
"name": "type",
|
|
246
|
-
"doc": "The type of the action request, for example 'TAG_ASSOCIATION'"
|
|
246
|
+
"doc": "The type of the action request, for example 'TAG_ASSOCIATION', 'WORKFLOW_FORM_REQUEST'"
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
"Searchable": {
|
|
@@ -1000,6 +1000,141 @@
|
|
|
1000
1000
|
"name": "dataContractProposal",
|
|
1001
1001
|
"default": null,
|
|
1002
1002
|
"doc": "A proposal to create or modify a Data Contract"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"type": [
|
|
1006
|
+
"null",
|
|
1007
|
+
{
|
|
1008
|
+
"type": "record",
|
|
1009
|
+
"name": "ActionWorkflowFormRequest",
|
|
1010
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1011
|
+
"fields": [
|
|
1012
|
+
{
|
|
1013
|
+
"Searchable": {
|
|
1014
|
+
"fieldName": "actionWorkflow"
|
|
1015
|
+
},
|
|
1016
|
+
"java": {
|
|
1017
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
1018
|
+
},
|
|
1019
|
+
"type": "string",
|
|
1020
|
+
"name": "workflow",
|
|
1021
|
+
"doc": "The urn of the associated access request workflow.",
|
|
1022
|
+
"Urn": "Urn"
|
|
1023
|
+
},
|
|
1024
|
+
{
|
|
1025
|
+
"Searchable": {
|
|
1026
|
+
"fieldName": "workflowCategory"
|
|
1027
|
+
},
|
|
1028
|
+
"type": {
|
|
1029
|
+
"type": "enum",
|
|
1030
|
+
"symbolDocs": {
|
|
1031
|
+
"ACCESS": "Workflow for requesting access to a resource, such as a dataset or data job.\nRequires the `access` field to be populated with specific access parameters.",
|
|
1032
|
+
"CUSTOM": "Custom, non-access related workflow. For example, may be used to model workflows like\nasset creation, asset cleanup or deletion, etc."
|
|
1033
|
+
},
|
|
1034
|
+
"name": "ActionWorkflowCategory",
|
|
1035
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1036
|
+
"symbols": [
|
|
1037
|
+
"ACCESS",
|
|
1038
|
+
"CUSTOM"
|
|
1039
|
+
]
|
|
1040
|
+
},
|
|
1041
|
+
"name": "category",
|
|
1042
|
+
"doc": "The category of the workflow. \nPrimarily used for searching / filtering action requests."
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
"Searchable": {
|
|
1046
|
+
"fieldName": "customWorkflowCategory"
|
|
1047
|
+
},
|
|
1048
|
+
"type": [
|
|
1049
|
+
"null",
|
|
1050
|
+
"string"
|
|
1051
|
+
],
|
|
1052
|
+
"name": "customCategory",
|
|
1053
|
+
"default": null,
|
|
1054
|
+
"doc": "The custom category of the workflow, if category is custom.\nPrimarily used for searching / filtering action requests."
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"type": {
|
|
1058
|
+
"type": "array",
|
|
1059
|
+
"items": {
|
|
1060
|
+
"type": "record",
|
|
1061
|
+
"name": "ActionWorkflowFormRequestField",
|
|
1062
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1063
|
+
"fields": [
|
|
1064
|
+
{
|
|
1065
|
+
"type": "string",
|
|
1066
|
+
"name": "id",
|
|
1067
|
+
"doc": "Workflow-local id for the field"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"type": {
|
|
1071
|
+
"type": "array",
|
|
1072
|
+
"items": [
|
|
1073
|
+
"string",
|
|
1074
|
+
"double"
|
|
1075
|
+
]
|
|
1076
|
+
},
|
|
1077
|
+
"name": "values",
|
|
1078
|
+
"doc": "Value, reused model from structured properties. Empty if no response was provided."
|
|
1079
|
+
}
|
|
1080
|
+
],
|
|
1081
|
+
"doc": "Simply capture the field id + the value."
|
|
1082
|
+
}
|
|
1083
|
+
},
|
|
1084
|
+
"name": "fields",
|
|
1085
|
+
"doc": "Custom fields provided by the user making the request if the action request is of type FORM_SUBMITTED\nEventually, these may need to become search indexed. For now, not indexed."
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"type": [
|
|
1089
|
+
"null",
|
|
1090
|
+
{
|
|
1091
|
+
"type": "record",
|
|
1092
|
+
"name": "ActionWorkflowRequestAccess",
|
|
1093
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1094
|
+
"fields": [
|
|
1095
|
+
{
|
|
1096
|
+
"Searchable": {},
|
|
1097
|
+
"type": [
|
|
1098
|
+
"null",
|
|
1099
|
+
"long"
|
|
1100
|
+
],
|
|
1101
|
+
"name": "expiresAt",
|
|
1102
|
+
"default": null,
|
|
1103
|
+
"doc": "Expiration time for the action request (optional, if part of the template)."
|
|
1104
|
+
}
|
|
1105
|
+
]
|
|
1106
|
+
}
|
|
1107
|
+
],
|
|
1108
|
+
"name": "access",
|
|
1109
|
+
"default": null,
|
|
1110
|
+
"doc": "Details specific for access request workflow requests."
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"type": {
|
|
1114
|
+
"type": "record",
|
|
1115
|
+
"name": "ActionWorkflowRequestStepState",
|
|
1116
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
1117
|
+
"fields": [
|
|
1118
|
+
{
|
|
1119
|
+
"Searchable": {
|
|
1120
|
+
"fieldName": "workflowStepId"
|
|
1121
|
+
},
|
|
1122
|
+
"type": "string",
|
|
1123
|
+
"name": "stepId",
|
|
1124
|
+
"doc": "The id of the current step in the workflow, which should be of type ACTION_REQUEST_REVIEW."
|
|
1125
|
+
}
|
|
1126
|
+
]
|
|
1127
|
+
},
|
|
1128
|
+
"name": "stepState",
|
|
1129
|
+
"doc": "State related to steps. This should correspond to a step of type ACTION_REQUEST_REVIEW in the workflow \ndefinition."
|
|
1130
|
+
}
|
|
1131
|
+
],
|
|
1132
|
+
"doc": "A request for an access workflow form to be reviewed.\n\nFor an access workflow of trigger type FORM, this action request currently represents the \"state\" \nof the workflow instance. \n\nIn the future, we may add more features like due dates, escalations, etc.\nIdeally, for now we are keeping these out of here."
|
|
1133
|
+
}
|
|
1134
|
+
],
|
|
1135
|
+
"name": "workflowFormRequest",
|
|
1136
|
+
"default": null,
|
|
1137
|
+
"doc": "An action workflow form request."
|
|
1003
1138
|
}
|
|
1004
1139
|
],
|
|
1005
1140
|
"doc": "Parameters provided with a particular action request. Only one of the fields will be populated,\ndepending on the action request type."
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
"type": {
|
|
17
17
|
"type": "enum",
|
|
18
18
|
"symbolDocs": {
|
|
19
|
+
"BROADCAST_ACTION_WORKFLOW_FORM_REQUEST_STATUS_CHANGE": "Broadcast that an action workflow form request has been completed (approved or denied).",
|
|
19
20
|
"BROADCAST_ASSERTION_STATUS_CHANGE": "Assertion change notification template.",
|
|
21
|
+
"BROADCAST_NEW_ACTION_WORKFLOW_FORM_REQUEST": "Broadcast that a new action workflow form request has been created or needs review.",
|
|
20
22
|
"BROADCAST_NEW_INCIDENT_UPDATE": "Updates the broadcasted incident if possible.",
|
|
21
23
|
"CUSTOM": "Legacy template types to support backwards compatibility.",
|
|
22
24
|
"OWNERSHIP_CHANGE": "Ownership change notification template."
|
|
@@ -35,6 +37,8 @@
|
|
|
35
37
|
"BROADCAST_NEW_PROPOSAL",
|
|
36
38
|
"BROADCAST_PROPOSAL_STATUS_CHANGE",
|
|
37
39
|
"BROADCAST_COMPLIANCE_FORM_PUBLISH",
|
|
40
|
+
"BROADCAST_NEW_ACTION_WORKFLOW_FORM_REQUEST",
|
|
41
|
+
"BROADCAST_ACTION_WORKFLOW_FORM_REQUEST_STATUS_CHANGE",
|
|
38
42
|
"INVALID_TEMPLATE"
|
|
39
43
|
],
|
|
40
44
|
"doc": "Possible notification template types."
|
{acryl_datahub_cloud-0.3.13rc2.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.13rc4
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: avro-gen3==0.7.16
|
|
6
6
|
Requires-Dist: acryl-datahub
|
|
@@ -9,93 +9,93 @@ Requires-Dist: pytz
|
|
|
9
9
|
Requires-Dist: types-croniter
|
|
10
10
|
Requires-Dist: tzlocal
|
|
11
11
|
Provides-Extra: datahub-lineage-features
|
|
12
|
+
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
12
13
|
Requires-Dist: tenacity; extra == "datahub-lineage-features"
|
|
14
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
13
15
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
14
|
-
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
15
16
|
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
16
|
-
Requires-Dist:
|
|
17
|
-
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
17
|
+
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
18
18
|
Provides-Extra: datahub-reporting-forms
|
|
19
|
+
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
20
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
19
21
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
20
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
21
22
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
22
23
|
Requires-Dist: termcolor==2.5.0; extra == "datahub-reporting-forms"
|
|
23
|
-
Requires-Dist:
|
|
24
|
-
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
24
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
25
25
|
Provides-Extra: datahub-reporting-extract-graph
|
|
26
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
27
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
28
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
29
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
30
26
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
27
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
31
28
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
29
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
30
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
31
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
32
32
|
Provides-Extra: datahub-reporting-extract-sql
|
|
33
|
-
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
34
|
-
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
35
|
-
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
36
33
|
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
37
34
|
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
35
|
+
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
36
|
+
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
37
|
+
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
38
38
|
Provides-Extra: datahub-usage-reporting
|
|
39
|
-
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
40
39
|
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-reporting"
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
40
|
+
Requires-Dist: numpy<2; extra == "datahub-usage-reporting"
|
|
43
41
|
Requires-Dist: boto3; extra == "datahub-usage-reporting"
|
|
44
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
45
|
-
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
46
42
|
Requires-Dist: pydantic<2; extra == "datahub-usage-reporting"
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
43
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-reporting"
|
|
49
44
|
Requires-Dist: pandas; extra == "datahub-usage-reporting"
|
|
50
45
|
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-reporting"
|
|
46
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-reporting"
|
|
47
|
+
Requires-Dist: polars==1.30.0; extra == "datahub-usage-reporting"
|
|
48
|
+
Requires-Dist: duckdb; extra == "datahub-usage-reporting"
|
|
49
|
+
Requires-Dist: termcolor==2.5.0; extra == "datahub-usage-reporting"
|
|
50
|
+
Requires-Dist: pyarrow; extra == "datahub-usage-reporting"
|
|
51
51
|
Provides-Extra: datahub-metadata-sharing
|
|
52
52
|
Requires-Dist: tenacity; extra == "datahub-metadata-sharing"
|
|
53
53
|
Provides-Extra: datahub-action-request-owner
|
|
54
54
|
Requires-Dist: tenacity; extra == "datahub-action-request-owner"
|
|
55
55
|
Provides-Extra: acryl-cs-issues
|
|
56
|
-
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
57
|
-
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
58
56
|
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
59
57
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
58
|
+
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
59
|
+
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
60
60
|
Provides-Extra: datahub-forms-notifications
|
|
61
61
|
Requires-Dist: tenacity; extra == "datahub-forms-notifications"
|
|
62
62
|
Provides-Extra: all
|
|
63
|
-
Requires-Dist:
|
|
64
|
-
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
65
|
-
Requires-Dist: jinja2; extra == "all"
|
|
66
|
-
Requires-Dist: zenpy; extra == "all"
|
|
63
|
+
Requires-Dist: openai; extra == "all"
|
|
67
64
|
Requires-Dist: tenacity; extra == "all"
|
|
68
|
-
Requires-Dist:
|
|
65
|
+
Requires-Dist: slack-sdk; extra == "all"
|
|
69
66
|
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
70
|
-
Requires-Dist:
|
|
67
|
+
Requires-Dist: pandas; extra == "all"
|
|
71
68
|
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
72
69
|
Requires-Dist: duckdb; extra == "all"
|
|
73
|
-
Requires-Dist:
|
|
70
|
+
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
71
|
+
Requires-Dist: numpy<2; extra == "all"
|
|
74
72
|
Requires-Dist: boto3; extra == "all"
|
|
75
|
-
Requires-Dist: polars==1.30.0; extra == "all"
|
|
76
73
|
Requires-Dist: pydantic<2; extra == "all"
|
|
74
|
+
Requires-Dist: zenpy; extra == "all"
|
|
75
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
76
|
+
Requires-Dist: polars==1.30.0; extra == "all"
|
|
77
|
+
Requires-Dist: jinja2; extra == "all"
|
|
78
|
+
Requires-Dist: termcolor==2.5.0; extra == "all"
|
|
77
79
|
Requires-Dist: pyarrow; extra == "all"
|
|
78
|
-
Requires-Dist: slack-sdk; extra == "all"
|
|
79
|
-
Requires-Dist: pandas; extra == "all"
|
|
80
80
|
Provides-Extra: dev
|
|
81
|
-
Requires-Dist: numpy<2; extra == "dev"
|
|
82
81
|
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
83
|
-
Requires-Dist: duckdb; extra == "dev"
|
|
84
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
85
|
-
Requires-Dist: jinja2; extra == "dev"
|
|
86
|
-
Requires-Dist: boto3; extra == "dev"
|
|
87
|
-
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
88
|
-
Requires-Dist: zenpy; extra == "dev"
|
|
89
82
|
Requires-Dist: tenacity; extra == "dev"
|
|
90
|
-
Requires-Dist:
|
|
83
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
84
|
+
Requires-Dist: openai; extra == "dev"
|
|
85
|
+
Requires-Dist: boto3; extra == "dev"
|
|
91
86
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
92
|
-
Requires-Dist:
|
|
93
|
-
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
94
|
-
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
87
|
+
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
95
88
|
Requires-Dist: slack-sdk; extra == "dev"
|
|
96
89
|
Requires-Dist: pandas; extra == "dev"
|
|
97
|
-
Requires-Dist: openai; extra == "dev"
|
|
98
90
|
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
91
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
92
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
|
93
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
94
|
+
Requires-Dist: polars==1.30.0; extra == "dev"
|
|
95
|
+
Requires-Dist: duckdb; extra == "dev"
|
|
96
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
97
|
+
Requires-Dist: termcolor==2.5.0; extra == "dev"
|
|
98
|
+
Requires-Dist: pyarrow; extra == "dev"
|
|
99
99
|
Dynamic: provides-extra
|
|
100
100
|
Dynamic: requires-dist
|
|
101
101
|
Dynamic: requires-python
|
|
@@ -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=rj36aQ_jn1X-FsV_DHco1lxLQc_zcKCbrRikTl8Ne3w,556
|
|
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=uqYPmluXYdlgyq3C09gxIU5nEkKiqHoZ53h2oN5etj0,25227
|
|
@@ -44,10 +44,10 @@ acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vE
|
|
|
44
44
|
acryl_datahub_cloud/lineage_features/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
acryl_datahub_cloud/lineage_features/source.py,sha256=8je_BMcDAiiY-jV4ONYDW973vDC5AwD-DqAi64nGp_c,13800
|
|
46
46
|
acryl_datahub_cloud/metadata/__init__.py,sha256=AjhXPjI6cnpdcrBRrE5gOWo15vv2TTl2ctU4UAnUN7A,238
|
|
47
|
-
acryl_datahub_cloud/metadata/schema.avsc,sha256=
|
|
48
|
-
acryl_datahub_cloud/metadata/schema_classes.py,sha256=
|
|
47
|
+
acryl_datahub_cloud/metadata/schema.avsc,sha256=0n9ynAa-1Yhs_69o4j_V4bfNHpN8G_pA8wBJ6QFejZY,1088181
|
|
48
|
+
acryl_datahub_cloud/metadata/schema_classes.py,sha256=9kSzifM8WQ17UMLYrusf8Xk87xlulxfEynausZVbO6g,1559640
|
|
49
49
|
acryl_datahub_cloud/metadata/_urns/__init__.py,sha256=cOF3GHMDgPhmbLKbN02NPpuLGHSu0qNgQyBRv08eqF0,243
|
|
50
|
-
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=
|
|
50
|
+
acryl_datahub_cloud/metadata/_urns/urn_defs.py,sha256=bR5vZzLsfARdXNdrt3ZZuP1vfaYAOIgb0b4l4DlxG58,170696
|
|
51
51
|
acryl_datahub_cloud/metadata/com/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
52
52
|
acryl_datahub_cloud/metadata/com/linkedin/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
53
53
|
acryl_datahub_cloud/metadata/com/linkedin/events/__init__.py,sha256=s_dR0plZF-rOxxIbE8ojekJqwiHzl2WYR-Z3kW6kKS0,298
|
|
@@ -56,6 +56,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/access/__init__.py,sha256
|
|
|
56
56
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/access/token/__init__.py,sha256=P9M7NqIc8XBu520VXQp1nBtXjzo09JPY5GoFR82iTjQ,318
|
|
57
57
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/action/__init__.py,sha256=d9mZhCz_MdTL1ucBCEZUT1kZlbGsJ56rp7mpD9VQMIM,1090
|
|
58
58
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionrequest/__init__.py,sha256=vtlFiz0hWtPezweYsp8dJIb_JkbS0bADkK1bLYuMmOk,1818
|
|
59
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/actionworkflow/__init__.py,sha256=2xFRo96MKPgTpEbd_HOEYoDDaofuhJa4R4VwU03zjEU,2716
|
|
59
60
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ai/__init__.py,sha256=5KsPzzfbk6D4z6ld1hXSpzoH2VndqFwKk-q83rMndLs,772
|
|
60
61
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py,sha256=D_1FX-evDTjvbNow603v6OMo0qJylHiu0PXxSU3asjg,709
|
|
61
62
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/application/__init__.py,sha256=1ibbZG6OriSnpn8dxvQNtKEwfJnY_On_Jw6XMbDUxZQ,486
|
|
@@ -101,7 +102,7 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/inferred/__init__.py,sha2
|
|
|
101
102
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/ingestion/__init__.py,sha256=1bfG2naq4iS_pwU4J-BVer_gfL0hDbJbnH0gh1MPNgA,871
|
|
102
103
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/link/__init__.py,sha256=4DfT4T_I6dh-iGk9LXYjrp98L9D66xZzM7Boqc7jmNg,388
|
|
103
104
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
104
|
-
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py,sha256=
|
|
105
|
+
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py,sha256=SFUUCe0CkR5eTHQ1mtkfLTk9nJ7SfhW5RJ-o2EX34J8,6531
|
|
105
106
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/query/__init__.py,sha256=gsAIuTxzfJdI7a9ybZlgMIHMAYksM1SxGxXjtySgKSc,202
|
|
106
107
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/query/filter/__init__.py,sha256=DBP_QtxkFmC5q_kuk4dGjb4uOKbB4xKgqTWXGxmNbBQ,532
|
|
107
108
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/recommendation/__init__.py,sha256=6XhFJ-Qf_H8RkEG_kZV6TcUWa0z-RXNlze6MLhV85l4,927
|
|
@@ -146,9 +147,11 @@ acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/versionset/__init__.py,sh
|
|
|
146
147
|
acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/view/__init__.py,sha256=-Le-jOqUJKv3ppwMhJHFFV3WwKTKjj1ETTkl9r7fY0o,498
|
|
147
148
|
acryl_datahub_cloud/metadata/schemas/Access.avsc,sha256=37CHwmencwo4f_DAVFGbRZmDG8zNMWSEXj0CFlwUH7E,1522
|
|
148
149
|
acryl_datahub_cloud/metadata/schemas/ActionRequestArchived.avsc,sha256=kZ1ShkVXW4wDAd2LZfb2J-xA9jVmJJ4AQ--BGgNeSq4,2409
|
|
149
|
-
acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc,sha256=
|
|
150
|
+
acryl_datahub_cloud/metadata/schemas/ActionRequestInfo.avsc,sha256=0yCqjr2Q72Lj9HaqbO_F0Q5v7p3qWgM6_L5jIBYvSt4,46309
|
|
150
151
|
acryl_datahub_cloud/metadata/schemas/ActionRequestKey.avsc,sha256=vQSAUp-dDcCIPZsE3fN_tKOgjdz-_MVKQXyt7Mx6UAU,426
|
|
151
152
|
acryl_datahub_cloud/metadata/schemas/ActionRequestStatus.avsc,sha256=u_GIp80s3w_EU_F_xSZ-K5lNH5RUKVbOtblWFdYqDjQ,3185
|
|
153
|
+
acryl_datahub_cloud/metadata/schemas/ActionWorkflowInfo.avsc,sha256=mGVAM_zoU231u8GFBSF0lYlgVRta_PHWCHTKESJpYtQ,37546
|
|
154
|
+
acryl_datahub_cloud/metadata/schemas/ActionWorkflowKey.avsc,sha256=jfYreAXgdcehBvBpMCI3nYN1IpimV6eCMiKWzz8vlpY,466
|
|
152
155
|
acryl_datahub_cloud/metadata/schemas/Actors.avsc,sha256=M76L2_Dlp7VyhVtu9__jhnh8rBNvNobtNJUfvl7bcPE,1188
|
|
153
156
|
acryl_datahub_cloud/metadata/schemas/AiInferenceMetadata.avsc,sha256=NxZqYu3hKy-I6uuUlZE0LEk2Z3IDSvZDjnYA9efmyo8,1171
|
|
154
157
|
acryl_datahub_cloud/metadata/schemas/AnomaliesSummary.avsc,sha256=EhwcEm-B4pSpYKlUWyYcytNvmA4vnpmzhA7QhJUi4nU,3477
|
|
@@ -350,7 +353,7 @@ acryl_datahub_cloud/metadata/schemas/MLModelProperties.avsc,sha256=-iJy0wMeKiJDt
|
|
|
350
353
|
acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc,sha256=KcVMo7SYGW7k39rktVw8f7k7SeVFcEVMW5krDCB4o-A,1207
|
|
351
354
|
acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyProperties.avsc,sha256=9unOw5ZdIaNj8eQut5I16LWy1FeIWUtsRjiKw-myWd4,6918
|
|
352
355
|
acryl_datahub_cloud/metadata/schemas/MLTrainingRunProperties.avsc,sha256=WGgj0MuQrGD4UgvyHCJHzTnHja2LlJTOr1gLu8SySj0,4269
|
|
353
|
-
acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=
|
|
356
|
+
acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc,sha256=UMrYOwivfBZ-K__t8dPYU-zGf17yv7GSO9a_xU7vniA,436611
|
|
354
357
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeLog.avsc,sha256=Cf5eECeShCA_XHFr2MRhRQpPE61F6Xv-z1jjoBLJLgc,12239
|
|
355
358
|
acryl_datahub_cloud/metadata/schemas/MetadataChangeProposal.avsc,sha256=tvO5cGIqZAIvUbMon1RAKgSY4E0jvBqT5VmLWAuNGkY,9770
|
|
356
359
|
acryl_datahub_cloud/metadata/schemas/Metrics.avsc,sha256=O7DJGjOwmHbb1x_Zj7AuM_HaHKjBvkfJKfUsX8icXD4,690
|
|
@@ -364,7 +367,7 @@ acryl_datahub_cloud/metadata/schemas/NativeGroupMembership.avsc,sha256=9mh9tzyj3
|
|
|
364
367
|
acryl_datahub_cloud/metadata/schemas/NotebookContent.avsc,sha256=ck3yDt0qK5Hn3-mWTNLlYnohXCs6kMUUWPXm7o1JEWE,12496
|
|
365
368
|
acryl_datahub_cloud/metadata/schemas/NotebookInfo.avsc,sha256=7WRavX6dQZmLrwP1F4nMQOmeHPHjHF9NTVFAgLUdw4c,5833
|
|
366
369
|
acryl_datahub_cloud/metadata/schemas/NotebookKey.avsc,sha256=EYpUWpC2pZxn3qgp0oPAYB959n_MdLV1UCRsGuwUENs,1260
|
|
367
|
-
acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc,sha256=
|
|
370
|
+
acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc,sha256=Z6n9dahSwANl66hYawE2L48IP99_sx-63lLxnuuU01o,20462
|
|
368
371
|
acryl_datahub_cloud/metadata/schemas/Operation.avsc,sha256=YHNzTCDT9lPB7zRddU13o2AsFWvwHY0aTKfVHsBsPh4,13319
|
|
369
372
|
acryl_datahub_cloud/metadata/schemas/Origin.avsc,sha256=1IAzS9VzVaMf7NTMyej4lOzKR_lnYWDgPZiJytoXA7M,6144
|
|
370
373
|
acryl_datahub_cloud/metadata/schemas/Ownership.avsc,sha256=J0rEclNsuIZ0IRC73Sc3FvPVhWKanIXyGVeqSeKKhyA,9750
|
|
@@ -464,8 +467,8 @@ acryl_datahub_cloud/sdk/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRk
|
|
|
464
467
|
acryl_datahub_cloud/sdk/entities/assertion.py,sha256=-OILvHyKAI4-5mS2bb_P44Fvk6rBOOcvaxSMXfEYvRw,15077
|
|
465
468
|
acryl_datahub_cloud/sdk/entities/monitor.py,sha256=NMrhJrWYNPvorxA33S_5FOl8YCtSmmeAavTzFLtWcOo,9665
|
|
466
469
|
acryl_datahub_cloud/sdk/entities/subscription.py,sha256=WbDZqjE4QCMBh1_0culwN5btcUPoFuUReRYMJU3uYas,2332
|
|
467
|
-
acryl_datahub_cloud-0.3.
|
|
468
|
-
acryl_datahub_cloud-0.3.
|
|
469
|
-
acryl_datahub_cloud-0.3.
|
|
470
|
-
acryl_datahub_cloud-0.3.
|
|
471
|
-
acryl_datahub_cloud-0.3.
|
|
470
|
+
acryl_datahub_cloud-0.3.13rc4.dist-info/METADATA,sha256=mit1WZUQb0hDPmzdgfnJ8YIXJtpnNHPgT9DEF3i8F4A,4856
|
|
471
|
+
acryl_datahub_cloud-0.3.13rc4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
472
|
+
acryl_datahub_cloud-0.3.13rc4.dist-info/entry_points.txt,sha256=veuyIaEzm7JF2q-C8Q-RcSV6V5Y9LvnVvIhTjiT5WUs,1342
|
|
473
|
+
acryl_datahub_cloud-0.3.13rc4.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
474
|
+
acryl_datahub_cloud-0.3.13rc4.dist-info/RECORD,,
|
|
File without changes
|
{acryl_datahub_cloud-0.3.13rc2.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{acryl_datahub_cloud-0.3.13rc2.dist-info → acryl_datahub_cloud-0.3.13rc4.dist-info}/top_level.txt
RENAMED
|
File without changes
|