acryl-datahub-cloud 0.3.13rc3__py3-none-any.whl → 0.3.13rc5__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.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc5.dist-info}/METADATA +38 -38
- {acryl_datahub_cloud-0.3.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc5.dist-info}/RECORD +16 -13
- {acryl_datahub_cloud-0.3.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc5.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc5.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.13rc3.dist-info → acryl_datahub_cloud-0.3.13rc5.dist-info}/top_level.txt +0 -0
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"type": "string",
|
|
15
15
|
"name": "type",
|
|
16
|
-
"doc": "The type of the action request, for example 'TAG_ASSOCIATION'"
|
|
16
|
+
"doc": "The type of the action request, for example 'TAG_ASSOCIATION', 'WORKFLOW_FORM_REQUEST'"
|
|
17
17
|
},
|
|
18
18
|
{
|
|
19
19
|
"Searchable": {
|
|
@@ -813,6 +813,141 @@
|
|
|
813
813
|
"name": "dataContractProposal",
|
|
814
814
|
"default": null,
|
|
815
815
|
"doc": "A proposal to create or modify a Data Contract"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"type": [
|
|
819
|
+
"null",
|
|
820
|
+
{
|
|
821
|
+
"type": "record",
|
|
822
|
+
"name": "ActionWorkflowFormRequest",
|
|
823
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
824
|
+
"fields": [
|
|
825
|
+
{
|
|
826
|
+
"Searchable": {
|
|
827
|
+
"fieldName": "actionWorkflow"
|
|
828
|
+
},
|
|
829
|
+
"java": {
|
|
830
|
+
"class": "com.linkedin.pegasus2avro.common.urn.Urn"
|
|
831
|
+
},
|
|
832
|
+
"type": "string",
|
|
833
|
+
"name": "workflow",
|
|
834
|
+
"doc": "The urn of the associated access request workflow.",
|
|
835
|
+
"Urn": "Urn"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"Searchable": {
|
|
839
|
+
"fieldName": "workflowCategory"
|
|
840
|
+
},
|
|
841
|
+
"type": {
|
|
842
|
+
"type": "enum",
|
|
843
|
+
"symbolDocs": {
|
|
844
|
+
"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.",
|
|
845
|
+
"CUSTOM": "Custom, non-access related workflow. For example, may be used to model workflows like\nasset creation, asset cleanup or deletion, etc."
|
|
846
|
+
},
|
|
847
|
+
"name": "ActionWorkflowCategory",
|
|
848
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
849
|
+
"symbols": [
|
|
850
|
+
"ACCESS",
|
|
851
|
+
"CUSTOM"
|
|
852
|
+
]
|
|
853
|
+
},
|
|
854
|
+
"name": "category",
|
|
855
|
+
"doc": "The category of the workflow. \nPrimarily used for searching / filtering action requests."
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"Searchable": {
|
|
859
|
+
"fieldName": "customWorkflowCategory"
|
|
860
|
+
},
|
|
861
|
+
"type": [
|
|
862
|
+
"null",
|
|
863
|
+
"string"
|
|
864
|
+
],
|
|
865
|
+
"name": "customCategory",
|
|
866
|
+
"default": null,
|
|
867
|
+
"doc": "The custom category of the workflow, if category is custom.\nPrimarily used for searching / filtering action requests."
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"type": {
|
|
871
|
+
"type": "array",
|
|
872
|
+
"items": {
|
|
873
|
+
"type": "record",
|
|
874
|
+
"name": "ActionWorkflowFormRequestField",
|
|
875
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
876
|
+
"fields": [
|
|
877
|
+
{
|
|
878
|
+
"type": "string",
|
|
879
|
+
"name": "id",
|
|
880
|
+
"doc": "Workflow-local id for the field"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"type": {
|
|
884
|
+
"type": "array",
|
|
885
|
+
"items": [
|
|
886
|
+
"string",
|
|
887
|
+
"double"
|
|
888
|
+
]
|
|
889
|
+
},
|
|
890
|
+
"name": "values",
|
|
891
|
+
"doc": "Value, reused model from structured properties. Empty if no response was provided."
|
|
892
|
+
}
|
|
893
|
+
],
|
|
894
|
+
"doc": "Simply capture the field id + the value."
|
|
895
|
+
}
|
|
896
|
+
},
|
|
897
|
+
"name": "fields",
|
|
898
|
+
"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."
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"type": [
|
|
902
|
+
"null",
|
|
903
|
+
{
|
|
904
|
+
"type": "record",
|
|
905
|
+
"name": "ActionWorkflowRequestAccess",
|
|
906
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
907
|
+
"fields": [
|
|
908
|
+
{
|
|
909
|
+
"Searchable": {},
|
|
910
|
+
"type": [
|
|
911
|
+
"null",
|
|
912
|
+
"long"
|
|
913
|
+
],
|
|
914
|
+
"name": "expiresAt",
|
|
915
|
+
"default": null,
|
|
916
|
+
"doc": "Expiration time for the action request (optional, if part of the template)."
|
|
917
|
+
}
|
|
918
|
+
]
|
|
919
|
+
}
|
|
920
|
+
],
|
|
921
|
+
"name": "access",
|
|
922
|
+
"default": null,
|
|
923
|
+
"doc": "Details specific for access request workflow requests."
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"type": {
|
|
927
|
+
"type": "record",
|
|
928
|
+
"name": "ActionWorkflowRequestStepState",
|
|
929
|
+
"namespace": "com.linkedin.pegasus2avro.actionworkflow",
|
|
930
|
+
"fields": [
|
|
931
|
+
{
|
|
932
|
+
"Searchable": {
|
|
933
|
+
"fieldName": "workflowStepId"
|
|
934
|
+
},
|
|
935
|
+
"type": "string",
|
|
936
|
+
"name": "stepId",
|
|
937
|
+
"doc": "The id of the current step in the workflow, which should be of type ACTION_REQUEST_REVIEW."
|
|
938
|
+
}
|
|
939
|
+
]
|
|
940
|
+
},
|
|
941
|
+
"name": "stepState",
|
|
942
|
+
"doc": "State related to steps. This should correspond to a step of type ACTION_REQUEST_REVIEW in the workflow \ndefinition."
|
|
943
|
+
}
|
|
944
|
+
],
|
|
945
|
+
"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."
|
|
946
|
+
}
|
|
947
|
+
],
|
|
948
|
+
"name": "workflowFormRequest",
|
|
949
|
+
"default": null,
|
|
950
|
+
"doc": "An action workflow form request."
|
|
816
951
|
}
|
|
817
952
|
],
|
|
818
953
|
"doc": "Parameters provided with a particular action request. Only one of the fields will be populated,\ndepending on the action request type."
|