tracdap-runtime 0.6.1.dev2__py3-none-any.whl → 0.6.2__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.
- tracdap/rt/_exec/context.py +25 -1
- tracdap/rt/_exec/dev_mode.py +277 -213
- tracdap/rt/_exec/functions.py +37 -8
- tracdap/rt/_exec/graph.py +2 -0
- tracdap/rt/_exec/graph_builder.py +118 -56
- tracdap/rt/_exec/runtime.py +28 -0
- tracdap/rt/_exec/server.py +68 -0
- tracdap/rt/_impl/data.py +14 -0
- tracdap/rt/_impl/grpc/__init__.py +13 -0
- tracdap/rt/_impl/grpc/codec.py +44 -0
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py +51 -0
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi +59 -0
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py +183 -0
- tracdap/rt/_impl/grpc/tracdap/config/common_pb2.py +55 -0
- tracdap/rt/_impl/grpc/tracdap/config/common_pb2.pyi +103 -0
- tracdap/rt/_impl/grpc/tracdap/config/job_pb2.py +42 -0
- tracdap/rt/_impl/grpc/tracdap/config/job_pb2.pyi +44 -0
- tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.py +71 -0
- tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.pyi +197 -0
- tracdap/rt/_impl/grpc/tracdap/config/result_pb2.py +37 -0
- tracdap/rt/_impl/grpc/tracdap/config/result_pb2.pyi +35 -0
- tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.py +42 -0
- tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.pyi +46 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py +33 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi +34 -0
- tracdap/rt/{metadata → _impl/grpc/tracdap/metadata}/custom_pb2.py +5 -5
- tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi +15 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py +51 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi +115 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py +28 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi +22 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py +59 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi +109 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py +76 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi +177 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py +51 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi +92 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py +32 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi +68 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py +35 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi +35 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py +39 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi +83 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py +50 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.pyi +89 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.py +34 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.pyi +26 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.py +30 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.pyi +34 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py +47 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi +101 -0
- tracdap/rt/_impl/guard_rails.py +5 -6
- tracdap/rt/_impl/static_api.py +10 -6
- tracdap/rt/_version.py +1 -1
- tracdap/rt/api/hook.py +6 -2
- tracdap/rt/api/model_api.py +22 -0
- tracdap/rt/api/static_api.py +14 -4
- tracdap/rt/config/__init__.py +3 -3
- tracdap/rt/config/platform.py +9 -9
- tracdap/rt/launch/cli.py +3 -5
- tracdap/rt/launch/launch.py +15 -3
- tracdap/rt/metadata/__init__.py +15 -15
- tracdap/rt/metadata/common.py +7 -7
- tracdap/rt/metadata/custom.py +2 -0
- tracdap/rt/metadata/data.py +28 -5
- tracdap/rt/metadata/file.py +2 -0
- tracdap/rt/metadata/flow.py +66 -4
- tracdap/rt/metadata/job.py +56 -16
- tracdap/rt/metadata/model.py +4 -0
- tracdap/rt/metadata/object_id.py +9 -9
- tracdap/rt/metadata/search.py +35 -13
- tracdap/rt/metadata/stoarge.py +64 -6
- tracdap/rt/metadata/tag_update.py +21 -7
- tracdap/rt/metadata/type.py +28 -13
- {tracdap_runtime-0.6.1.dev2.dist-info → tracdap_runtime-0.6.2.dist-info}/METADATA +22 -19
- tracdap_runtime-0.6.2.dist-info/RECORD +121 -0
- {tracdap_runtime-0.6.1.dev2.dist-info → tracdap_runtime-0.6.2.dist-info}/WHEEL +1 -1
- tracdap/rt/config/common_pb2.py +0 -55
- tracdap/rt/config/job_pb2.py +0 -42
- tracdap/rt/config/platform_pb2.py +0 -71
- tracdap/rt/config/result_pb2.py +0 -37
- tracdap/rt/config/runtime_pb2.py +0 -42
- tracdap/rt/metadata/common_pb2.py +0 -33
- tracdap/rt/metadata/data_pb2.py +0 -51
- tracdap/rt/metadata/file_pb2.py +0 -28
- tracdap/rt/metadata/flow_pb2.py +0 -55
- tracdap/rt/metadata/job_pb2.py +0 -76
- tracdap/rt/metadata/model_pb2.py +0 -51
- tracdap/rt/metadata/object_id_pb2.py +0 -32
- tracdap/rt/metadata/object_pb2.py +0 -35
- tracdap/rt/metadata/search_pb2.py +0 -39
- tracdap/rt/metadata/stoarge_pb2.py +0 -50
- tracdap/rt/metadata/tag_pb2.py +0 -34
- tracdap/rt/metadata/tag_update_pb2.py +0 -30
- tracdap/rt/metadata/type_pb2.py +0 -48
- tracdap_runtime-0.6.1.dev2.dist-info/RECORD +0 -96
- {tracdap_runtime-0.6.1.dev2.dist-info → tracdap_runtime-0.6.2.dist-info}/LICENSE +0 -0
- {tracdap_runtime-0.6.1.dev2.dist-info → tracdap_runtime-0.6.2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tracdap-runtime
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.2
|
4
4
|
Summary: Runtime package for building models on the TRAC Data & Analytics Platform
|
5
5
|
Home-page: https://tracdap.finos.org/
|
6
6
|
Author: Martin Traverse
|
@@ -16,28 +16,31 @@ Classifier: Operating System :: OS Independent
|
|
16
16
|
Requires-Python: <3.13,>=3.8
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
License-File: LICENSE
|
19
|
-
Requires-Dist: protobuf
|
20
|
-
Requires-Dist: pyarrow
|
21
|
-
Requires-Dist: pyyaml
|
22
|
-
Requires-Dist: dulwich
|
23
|
-
Requires-Dist: requests
|
24
|
-
Requires-Dist: pandas
|
25
|
-
Requires-Dist: numpy
|
19
|
+
Requires-Dist: protobuf==5.27.4
|
20
|
+
Requires-Dist: pyarrow==16.0.0
|
21
|
+
Requires-Dist: pyyaml==6.0.1
|
22
|
+
Requires-Dist: dulwich==0.22.1
|
23
|
+
Requires-Dist: requests==2.32.3
|
24
|
+
Requires-Dist: pandas<2.3.0,>=1.2.0
|
25
|
+
Requires-Dist: numpy<2.0.0
|
26
26
|
Provides-Extra: aws
|
27
|
-
Requires-Dist: botocore
|
28
|
-
Requires-Dist: boto3
|
27
|
+
Requires-Dist: botocore==1.34.93; extra == "aws"
|
28
|
+
Requires-Dist: boto3==1.34.93; extra == "aws"
|
29
29
|
Provides-Extra: azure
|
30
|
-
Requires-Dist: azure-core
|
31
|
-
Requires-Dist: azure-identity
|
32
|
-
Requires-Dist: azure-storage-blob
|
33
|
-
Requires-Dist: adlfs
|
30
|
+
Requires-Dist: azure-core==1.30.1; extra == "azure"
|
31
|
+
Requires-Dist: azure-identity==1.16.1; extra == "azure"
|
32
|
+
Requires-Dist: azure-storage-blob==12.19.1; extra == "azure"
|
33
|
+
Requires-Dist: adlfs==2024.4.1; extra == "azure"
|
34
34
|
Provides-Extra: gcp
|
35
|
-
Requires-Dist: google-auth
|
36
|
-
Requires-Dist: google-
|
37
|
-
Requires-Dist: google-cloud-storage
|
38
|
-
Requires-Dist: gcsfs
|
35
|
+
Requires-Dist: google-auth==2.34.0; extra == "gcp"
|
36
|
+
Requires-Dist: google-api-core==2.19.2; extra == "gcp"
|
37
|
+
Requires-Dist: google-cloud-storage==2.18.2; extra == "gcp"
|
38
|
+
Requires-Dist: gcsfs==2024.3.1; extra == "gcp"
|
39
|
+
Provides-Extra: grpc
|
40
|
+
Requires-Dist: grpcio==1.66.1; extra == "grpc"
|
41
|
+
Requires-Dist: grpcio-status==1.66.1; extra == "grpc"
|
39
42
|
Provides-Extra: spark
|
40
|
-
Requires-Dist: pyspark
|
43
|
+
Requires-Dist: pyspark<3.6.0,>=3.0.0; extra == "spark"
|
41
44
|
|
42
45
|
# TRAC Model Runtime for Python
|
43
46
|
|
@@ -0,0 +1,121 @@
|
|
1
|
+
tracdap/rt/__init__.py,sha256=rz9ERpKMlnR4LFZNGLtdNE26B_Y2V168bdd8hRmasKk,643
|
2
|
+
tracdap/rt/_version.py,sha256=l_9i8A1v3tcyFZyYjsXLFCcldsgs4Sx_g9QFf1btW_4,631
|
3
|
+
tracdap/rt/exceptions.py,sha256=AV2o9g5d5miMoRfsYW3DZ6or4SLVGwcZjfw4UsQ-HTY,7907
|
4
|
+
tracdap/rt/_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
+
tracdap/rt/_exec/actors.py,sha256=faZ7hCxsONLbjQKrFRZv-wL_aXaKjsgbLOHDI0uUXDc,32242
|
6
|
+
tracdap/rt/_exec/context.py,sha256=H0W5ukFHiSDcRVY6emLVUAF3z71xTRHgaJZn502yhEo,12751
|
7
|
+
tracdap/rt/_exec/dev_mode.py,sha256=KxxnYljRXHqfXXLdqI2hIukBPDcTT5d5yQbpxgmJDao,32721
|
8
|
+
tracdap/rt/_exec/engine.py,sha256=jGrQlqbVLr4n5iuAUwOjJBdEAu9s_szJ4CUFtNtDPxo,29952
|
9
|
+
tracdap/rt/_exec/functions.py,sha256=A21xIC0K1IsI6VBYtb-Oxv2pajegbl149bVmhgD6OuQ,24323
|
10
|
+
tracdap/rt/_exec/graph.py,sha256=wOzOLBD-dKwqFhJtbGg2r49g68CkDNaveK5yi6mmm2A,11084
|
11
|
+
tracdap/rt/_exec/graph_builder.py,sha256=waf74ogwfqSyxdU2yvwEwtNdt6U9qaExQdOZ7ghNY3M,32845
|
12
|
+
tracdap/rt/_exec/runtime.py,sha256=EbU0uBwxftvFaRydxxsrcStpIOakuhvrcrtnDzKC_m4,14630
|
13
|
+
tracdap/rt/_exec/server.py,sha256=BYJiF4-YL1_94otOp3Ex6RCIyH3OgbfCo3r1wsJAg0Q,2477
|
14
|
+
tracdap/rt/_impl/__init__.py,sha256=eBZMpgFx9uHJxMA-yMWHCQMvShTKxJRAizdz4vy5eWg,609
|
15
|
+
tracdap/rt/_impl/config_parser.py,sha256=udnYRafOcP3aQSVXSfjCc70gOEbh7MxJpR1v0wqnBUw,15263
|
16
|
+
tracdap/rt/_impl/data.py,sha256=ZBt545h-qJnSIO-9vASkzzdg3T6L2_bcilqEtHTEbmU,32707
|
17
|
+
tracdap/rt/_impl/guard_rails.py,sha256=WkV3R-gyfCI_M-H6RVIKW2A87NVsQX2ocdR3CRpma2U,10745
|
18
|
+
tracdap/rt/_impl/models.py,sha256=4Rqj-ftjCaetZ9Ty39-EUc--x6ZFX_inLfQYRHMaFyI,9216
|
19
|
+
tracdap/rt/_impl/repos.py,sha256=bdpUkBbNOIQOKJQGOhCDdXUMz2bY91YNIYlKRKTtM4Y,2063
|
20
|
+
tracdap/rt/_impl/schemas.py,sha256=KhMvh_i2ZLx0-P6vzx8ro2-KbnB3upfJgryTHbXMJrs,7417
|
21
|
+
tracdap/rt/_impl/shim.py,sha256=WV9AldhKdt-oLuQ5x89Dkocdn_gJoYZEo9buHHFIYd8,23148
|
22
|
+
tracdap/rt/_impl/static_api.py,sha256=N9YODftUC3H88meiZ2Om3zd7ayYKezfolI211s4tdy8,7856
|
23
|
+
tracdap/rt/_impl/storage.py,sha256=vvu1Qlk0-GHqzNj0M33L_jB9eKv0dh9Fr9MBBiaQ2uM,35075
|
24
|
+
tracdap/rt/_impl/type_system.py,sha256=yycCyGZgszCkpO1tA5sMg0W_-2uYwk9dTaL2gg68D6k,12010
|
25
|
+
tracdap/rt/_impl/util.py,sha256=HeswbIL4dQHjWnCJL3-WEqwsQaYo-xnEuGRoaRJ7kyU,11075
|
26
|
+
tracdap/rt/_impl/validation.py,sha256=AgSnr_SZ6nbyh7beiz3QP5BEg-sOuXvFzarqiPvuuUQ,16241
|
27
|
+
tracdap/rt/_impl/grpc/__init__.py,sha256=VFwsBdvvDZhB9OmzGnVPNkApXql5KjYoVSnIteKWTRI,608
|
28
|
+
tracdap/rt/_impl/grpc/codec.py,sha256=uVNE3WgaS2G0HTP26e_gy5HRn4hja5W-_6igH1XRkhw,1643
|
29
|
+
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py,sha256=BdjkU70n30n9yriY39AByRm6unjMk6_pu3btz-BS5w4,4983
|
30
|
+
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi,sha256=dBzJNEpyFxHMXqvpXURlQOa1EPXYnQDW50XFBuQffx8,3074
|
31
|
+
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py,sha256=QSq3gPLGnOde9cLdo7FBWzktPMK9eHlK1oS8uhO_jJc,8399
|
32
|
+
tracdap/rt/_impl/grpc/tracdap/config/common_pb2.py,sha256=oSwJJjB55F4cDNksPZizguf1AcHMBuUjgoASIcr1e84,4859
|
33
|
+
tracdap/rt/_impl/grpc/tracdap/config/common_pb2.pyi,sha256=c3e0DHDPgwKuVBnD7JB7isucoOPlx6vzmT4gWgGHCU0,4983
|
34
|
+
tracdap/rt/_impl/grpc/tracdap/config/job_pb2.py,sha256=Y4ZOso2YJ-KZlt0XhsZzMtbqseRWCrDcIkR2nvKF6ZA,3475
|
35
|
+
tracdap/rt/_impl/grpc/tracdap/config/job_pb2.pyi,sha256=l7r-FYaw0GN98ywpf2kpc50o0bqRm6Isz95ofAvRijI,2638
|
36
|
+
tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.py,sha256=GZum7dfEJLYLZUE1HD8r9fWVdhhI8qzC7bUaKBsM6g8,8081
|
37
|
+
tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.pyi,sha256=LZolS_XwpcQlCCkamNxy_C4p9OjzGRiOOJnsYhT8FZg,9897
|
38
|
+
tracdap/rt/_impl/grpc/tracdap/config/result_pb2.py,sha256=PTbAIWWtqLQBS7Dc43FjzLG1-jw1SVvUY8v62uvKqH4,2945
|
39
|
+
tracdap/rt/_impl/grpc/tracdap/config/result_pb2.pyi,sha256=bK0vLTPeTey-bAH5Yx0w7wdVYp1wGGM6nVXYPnaRsEI,2035
|
40
|
+
tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.py,sha256=xKRbe90Jsmc15A3Sayx-ogYsOqpzmMnfDZ3OIweQKLM,3167
|
41
|
+
tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.pyi,sha256=txhlxeXA36WB-2yTUsCF2SAhaNvKiSLq9uNA_RuaH3o,2345
|
42
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py,sha256=oql1naNGBKxpPIQZViewQSzUmMpt9U8gB-qSJpxkBwo,1945
|
43
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi,sha256=R7fTC8HV0j8zB2E2KVtLWXSAeu5MVLrgeL-PnnOsUxg,1275
|
44
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.py,sha256=DfHhxxvKU_htkLjUdvsVfxl8Gj8z5GenAuhCSuMT6Ps,1421
|
45
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi,sha256=_GubsAG9rpuV_QhhXKTDOPeWIpkAkg5jlHkSZxaILak,702
|
46
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py,sha256=1ZJWSAtULaLxts2h4LRaHhk_wUqVEvDTCidqpOYo4FU,5220
|
47
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi,sha256=6F7O59tKIXWMFmmCm8zMJQKPQ3hM-fJ8px25Z_ae_Nc,5856
|
48
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py,sha256=FwZ9CZrS6-n96sYjV_EQXzviRRnjAs1bDahOSfbJ_v0,1748
|
49
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi,sha256=nRBVl47NUBTOLUJ7HOeztUMJoh9sVbPtqpxKLcCMEEw,1085
|
50
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py,sha256=GyY4iaqp9wtZ29byMllPmk4o2nosUgdazdqf9KKUg-g,5799
|
51
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi,sha256=yCP4usBn7VWxFWdlB6NERiCd0R7BqqmH5k29WdKNk04,5880
|
52
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py,sha256=iuHQEwWXSlbr76XPiv3txYinpRqkllSfrSIjhXVRTCs,8305
|
53
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi,sha256=n1OEkSYBCPRLNWo1JtvwQwiOXC4xw5a6OWvloNvMlZ8,9411
|
54
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py,sha256=mvWQY3lOCluV5ssejj5zEjb0VL-43PLWPp7WubFzgfg,5081
|
55
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi,sha256=WsjK_DIhoTavs_Q7252qa2tnM8FmCJ9qKTdE_eKvcLo,4770
|
56
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py,sha256=cdNa1Byx6jvZPeakr28VrsEkGIj6av1xvdOM1N8NtuE,2933
|
57
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi,sha256=vWMjD_CG4ozUBSVsl44kjux-Qr-L_7cLgvQRpuUM7x0,3238
|
58
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py,sha256=QCPOqIII_yPy66Z8zkKpea0x8WedKNf_K_vH5-NBIEM,3659
|
59
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi,sha256=Y7Ga0jYLwPCPJHn6p43jMzne3vCfXK-rfkuN9VbHugM,2349
|
60
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py,sha256=YsUl-xK3jOQ6mOMCPe8G3-BWOFFz-MpUOXDWMV90DrQ,3654
|
61
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi,sha256=PU-OYKRufI3v5Zx8RI4RvEZq3KPh91AOb8sDNwxyySY,3762
|
62
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py,sha256=Zyi6y4vOSN8-VI00cq0gC2xv7YQcFrpMEC2phQxk32k,4652
|
63
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.pyi,sha256=ImU8YT62pfiAMDYwTtX5E6nyI_n1PuhUWabFJlRFvnE,4746
|
64
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.py,sha256=bQ6gA21bizykXQZPzC8AhaN5IgUYddzVEp7KSzz6KNM,2441
|
65
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.pyi,sha256=6gP3-Rdiq84ng5d6DtVNEWZj5syt1xyD33jRWg3YcgU,1454
|
66
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.py,sha256=HwJtcqjYwbYZw5LpZIaMux1qusVfEitl0wX-J8NMprI,2090
|
67
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.pyi,sha256=Q3687BMYoH8OzJF2tYu6nEOR8Yz3UkU8f2cjxQ3lFv8,1470
|
68
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py,sha256=Vbr4xCD2r4wDEnZMV1ZnEgWvYhZph6EAwL4eZZrO4IE,4206
|
69
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi,sha256=h-5HTqHMxFhTvfzZH7q-qWt7GeUhYnsQ8EqN9VoH_Ys,4356
|
70
|
+
tracdap/rt/_plugins/__init__.py,sha256=NT9Aq8FDZwJgAG6u6K2E0B6ByAo3x0i48wFNfRkSLZc,609
|
71
|
+
tracdap/rt/_plugins/_helpers.py,sha256=_PhYVVNFZaktERkyrKSvMCzMJn9EXSun0MXmWInq_ew,5840
|
72
|
+
tracdap/rt/_plugins/format_arrow.py,sha256=C4mcRRD-bIZhytxEn4meM1gwIaq1cSl_YgmUGUwzuPY,2210
|
73
|
+
tracdap/rt/_plugins/format_csv.py,sha256=e9yr5ZSseuns-YHa-dKPMOO0EvFM4Kx3CJbvHQQika4,16823
|
74
|
+
tracdap/rt/_plugins/format_parquet.py,sha256=clOkTGvqEPgnF7eRaxceyDDiWgFbSHZcYQWGOr2130c,2159
|
75
|
+
tracdap/rt/_plugins/repo_git.py,sha256=68nE9NBw5M4wId9tgTI8K9Pv80V8BDAG7oJDPf5_C9I,10276
|
76
|
+
tracdap/rt/_plugins/repo_local.py,sha256=oW35YZIjOI4uRTGWI44Vnr9mzelQL-HuLvLnmHZHzTU,2726
|
77
|
+
tracdap/rt/_plugins/repo_pypi.py,sha256=DGNgoUGM7fbAYtxqW-Liu2d2Lpx0OHAOnMnT-t0hEbA,13345
|
78
|
+
tracdap/rt/_plugins/storage_aws.py,sha256=1XyWJcHmRQqr3LpS6yGvR6-yaz4g7_3zFc_KUJPWmz8,12973
|
79
|
+
tracdap/rt/_plugins/storage_azure.py,sha256=Q7c063SXlbbsyZHWPu4ma8BDwV-sE0ipOyb0Roi9ad0,5813
|
80
|
+
tracdap/rt/_plugins/storage_gcp.py,sha256=ENMrgTzqX0QjSDnMfeGyFK6YUwaFaJgqF7PQzEqviKk,6464
|
81
|
+
tracdap/rt/_plugins/storage_local.py,sha256=ep0EvFzhA8ZKStxwSvtbOPIJBt3HjtYKkmFlnUU_AqU,15555
|
82
|
+
tracdap/rt/api/__init__.py,sha256=rOiUwK6sav9QTXohpZAFXJ9MgsL0KBfUyKA7dYspfGQ,1124
|
83
|
+
tracdap/rt/api/hook.py,sha256=tO7cuCisGdz6N-YJ9Gur3cRevg-C0csz8gHKdO8irX8,4129
|
84
|
+
tracdap/rt/api/model_api.py,sha256=6cVYlxYN5jKf4GMPq9Dayl7vhxTGSIvr3GnmSrWu-BA,16336
|
85
|
+
tracdap/rt/api/static_api.py,sha256=CIO9jt-Z2layCmlOXLdlJNuabE8fznGyf0W4s9S74mU,21298
|
86
|
+
tracdap/rt/config/__init__.py,sha256=Z57lKVTpUwza4abOH_EqTyev_ZSqLMC97nVfCXg26yg,887
|
87
|
+
tracdap/rt/config/common.py,sha256=0R57K63-aJ-flvV8RwPyklgPYlLIPUoy5MnZagKFP4A,1202
|
88
|
+
tracdap/rt/config/job.py,sha256=txzOSBBOoEHWo8tzFNhv9HvjOo4q4C9YfVKadNwZKBQ,575
|
89
|
+
tracdap/rt/config/platform.py,sha256=JKnQ_fdUJsdiJ-pCpZgypjw56pkdXdaCgMh6ugKQXiQ,2854
|
90
|
+
tracdap/rt/config/result.py,sha256=ChxZ2R5UtMGuO7h0PVijskbzVo8cXqWIA2PyAkYT-PQ,588
|
91
|
+
tracdap/rt/config/runtime.py,sha256=M7FoknJkLULrSUX3ZN6dH5KsLKT3spsBtEsCSDGumq0,554
|
92
|
+
tracdap/rt/ext/__init__.py,sha256=0yYnHpdaHioyof9IyG0R2Z6us1PsaRjOfDX0hSLc_g8,608
|
93
|
+
tracdap/rt/ext/_guard.py,sha256=ySID0WTbkdrVRzplyMJRl4cc7EqIR1_CImV-e2INiAY,1301
|
94
|
+
tracdap/rt/ext/embed.py,sha256=_Uz396ELYH0tMKcQRt6W2SznWYSB48zEqAp8P8B6H98,2146
|
95
|
+
tracdap/rt/ext/plugins.py,sha256=PLi66dhcqN7W7IWBGIb_hGS8t7MwonpeDWP4ivH00FU,2871
|
96
|
+
tracdap/rt/ext/repos.py,sha256=hnoGadBthdQK_8IQV5lvfxiiTBC7by7YbcD74qBC5Dw,3110
|
97
|
+
tracdap/rt/ext/storage.py,sha256=mOZKtxFTiPnfOEvUu7RMi3s-Z6PHUX5g4Dq7N6809Dc,4793
|
98
|
+
tracdap/rt/launch/__init__.py,sha256=Zz_4f_ODsmweCxRmG2Dq1Slpb927jSugYclfF_Wgfws,673
|
99
|
+
tracdap/rt/launch/__main__.py,sha256=9UVYYSsqvvMVOqjjBBeLNdzV_6IeIa_97KWOMXIpXY4,654
|
100
|
+
tracdap/rt/launch/cli.py,sha256=FUwpPDEt51zVqAy7FxqS3HG7HKoRc79WHDZMMxBt33c,2187
|
101
|
+
tracdap/rt/launch/launch.py,sha256=yEYeiOdBjGTaF9DQcCShUhg6pz7saymvh6WAz4t6vlY,4857
|
102
|
+
tracdap/rt/metadata/__init__.py,sha256=-83WMLpXVdD2kI4l-16EwRV2a9rKYVrJ8bkMT6VLF_E,1779
|
103
|
+
tracdap/rt/metadata/common.py,sha256=ftFmQtij14Sv2T_Kcd_jFrDw4mr2TjagQrQyj8dX704,1439
|
104
|
+
tracdap/rt/metadata/custom.py,sha256=rcUrB8FYYcY8sM4W-Khk3ATfgx2hfBe1PBgbIP2Eop0,387
|
105
|
+
tracdap/rt/metadata/data.py,sha256=nzlaL7cKnLQLLceh9vE_3W4skfx-26EoXux6rK7_ndk,3386
|
106
|
+
tracdap/rt/metadata/file.py,sha256=4vNg0mO6oHOBtWFkU7H533pruu7oJ0CnRSAv3SvCVYs,448
|
107
|
+
tracdap/rt/metadata/flow.py,sha256=c4Xi2cdmszknpWYl770i-jX8A2Q4WfIAS6KyU7BeiUA,3358
|
108
|
+
tracdap/rt/metadata/job.py,sha256=QgtRInflyRAYaPGRChNcx_ptvC9o8RUZnGD30oAyraI,3283
|
109
|
+
tracdap/rt/metadata/model.py,sha256=oMqioywIQ5HLCdKofEQw7rSHMQN1k9epowy-_eu9IOk,2667
|
110
|
+
tracdap/rt/metadata/object.py,sha256=AYBx-LJ1kUp6bTqDOsDkd5GJtAZJK8XFaHYGeSt023M,2709
|
111
|
+
tracdap/rt/metadata/object_id.py,sha256=o46-KNBrWT-2OMe0yf2sSfSpdoJMXpaYKlhW3vwWRyo,4295
|
112
|
+
tracdap/rt/metadata/search.py,sha256=A2Yrz-ATM0AL7wbX7J24FB7AD2O0QGyvD-K-f7GecxM,9851
|
113
|
+
tracdap/rt/metadata/stoarge.py,sha256=8pRptS66sbhKufVF7P1GTudxLby0-Kv4drt05XvlC8s,3070
|
114
|
+
tracdap/rt/metadata/tag.py,sha256=qO1Lxn64UllfAt3CSdvQf04HuKlaUG0ET0keW1Soz_c,5079
|
115
|
+
tracdap/rt/metadata/tag_update.py,sha256=kTeEppUZ1c4ecamVAuTMXs9GnorETNjc6pzbj_W1HfI,3746
|
116
|
+
tracdap/rt/metadata/type.py,sha256=ztDQdzh1tHoY3rLjkfVW32BBdxxkKIQ6KNYl349tuE0,9404
|
117
|
+
tracdap_runtime-0.6.2.dist-info/LICENSE,sha256=Q5Gh9SdMNa_F2ehQRShh7dJBz6qW_EQFtWzLukOWFWY,11365
|
118
|
+
tracdap_runtime-0.6.2.dist-info/METADATA,sha256=82gK3M5F7VVrYULXC63wDQoZ6TI3-SFQtIIHiGhdxIA,4873
|
119
|
+
tracdap_runtime-0.6.2.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
120
|
+
tracdap_runtime-0.6.2.dist-info/top_level.txt,sha256=Uv0JfaE1Lp4JnCzqW8lqXNJAEcsAFpAUGOghJolVNdM,8
|
121
|
+
tracdap_runtime-0.6.2.dist-info/RECORD,,
|
tracdap/rt/config/common_pb2.py
DELETED
@@ -1,55 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/config/common.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1btracdap/config/common.proto\x12\x0etracdap.config\"u\n\x0b_ConfigFile\x12\x37\n\x06\x63onfig\x18\x01 \x03(\x0b\x32\'.tracdap.config._ConfigFile.ConfigEntry\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x81\x02\n\x0cPluginConfig\x12\x10\n\x08protocol\x18\x01 \x01(\t\x12@\n\nproperties\x18\x02 \x03(\x0b\x32,.tracdap.config.PluginConfig.PropertiesEntry\x12:\n\x07secrets\x18\x03 \x03(\x0b\x32).tracdap.config.PluginConfig.SecretsEntry\x1a\x31\n\x0fPropertiesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a.\n\x0cSecretsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb8\x01\n\x0cPlatformInfo\x12\x13\n\x0b\x65nvironment\x18\x01 \x01(\t\x12\x12\n\nproduction\x18\x02 \x01(\x08\x12H\n\x0e\x64\x65ploymentInfo\x18\x03 \x03(\x0b\x32\x30.tracdap.config.PlatformInfo.DeploymentInfoEntry\x1a\x35\n\x13\x44\x65ploymentInfoEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xba\x02\n\x14\x41uthenticationConfig\x12\x11\n\tjwtIssuer\x18\x01 \x01(\t\x12\x11\n\tjwtExpiry\x18\x02 \x01(\x11\x12\x10\n\x08jwtLimit\x18\x06 \x01(\x11\x12\x12\n\njwtRefresh\x18\x07 \x01(\x11\x12\x33\n\x08provider\x18\x03 \x01(\x0b\x32\x1c.tracdap.config.PluginConfigH\x00\x88\x01\x01\x12\x13\n\x0b\x64isableAuth\x18\x04 \x01(\x08\x12\x16\n\x0e\x64isableSigning\x18\x05 \x01(\x08\x12\x14\n\x0csystemUserId\x18\x08 \x01(\t\x12\x16\n\x0esystemUserName\x18\t \x01(\t\x12\x1c\n\x14systemTicketDuration\x18\n \x01(\x11\x12\x1b\n\x13systemTicketRefresh\x18\x0b \x01(\x11\x42\x0b\n\t_provider\"\xc8\x01\n\rStorageConfig\x12;\n\x07\x62uckets\x18\x01 \x03(\x0b\x32*.tracdap.config.StorageConfig.BucketsEntry\x12\x15\n\rdefaultBucket\x18\x02 \x01(\t\x12\x15\n\rdefaultFormat\x18\x03 \x01(\t\x1aL\n\x0c\x42ucketsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig:\x02\x38\x01\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
|
18
|
-
|
19
|
-
_globals = globals()
|
20
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
21
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.common_pb2', _globals)
|
22
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
23
|
-
_globals['DESCRIPTOR']._options = None
|
24
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
|
25
|
-
_globals['__CONFIGFILE_CONFIGENTRY']._options = None
|
26
|
-
_globals['__CONFIGFILE_CONFIGENTRY']._serialized_options = b'8\001'
|
27
|
-
_globals['_PLUGINCONFIG_PROPERTIESENTRY']._options = None
|
28
|
-
_globals['_PLUGINCONFIG_PROPERTIESENTRY']._serialized_options = b'8\001'
|
29
|
-
_globals['_PLUGINCONFIG_SECRETSENTRY']._options = None
|
30
|
-
_globals['_PLUGINCONFIG_SECRETSENTRY']._serialized_options = b'8\001'
|
31
|
-
_globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._options = None
|
32
|
-
_globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._serialized_options = b'8\001'
|
33
|
-
_globals['_STORAGECONFIG_BUCKETSENTRY']._options = None
|
34
|
-
_globals['_STORAGECONFIG_BUCKETSENTRY']._serialized_options = b'8\001'
|
35
|
-
_globals['__CONFIGFILE']._serialized_start=47
|
36
|
-
_globals['__CONFIGFILE']._serialized_end=164
|
37
|
-
_globals['__CONFIGFILE_CONFIGENTRY']._serialized_start=119
|
38
|
-
_globals['__CONFIGFILE_CONFIGENTRY']._serialized_end=164
|
39
|
-
_globals['_PLUGINCONFIG']._serialized_start=167
|
40
|
-
_globals['_PLUGINCONFIG']._serialized_end=424
|
41
|
-
_globals['_PLUGINCONFIG_PROPERTIESENTRY']._serialized_start=327
|
42
|
-
_globals['_PLUGINCONFIG_PROPERTIESENTRY']._serialized_end=376
|
43
|
-
_globals['_PLUGINCONFIG_SECRETSENTRY']._serialized_start=378
|
44
|
-
_globals['_PLUGINCONFIG_SECRETSENTRY']._serialized_end=424
|
45
|
-
_globals['_PLATFORMINFO']._serialized_start=427
|
46
|
-
_globals['_PLATFORMINFO']._serialized_end=611
|
47
|
-
_globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._serialized_start=558
|
48
|
-
_globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._serialized_end=611
|
49
|
-
_globals['_AUTHENTICATIONCONFIG']._serialized_start=614
|
50
|
-
_globals['_AUTHENTICATIONCONFIG']._serialized_end=928
|
51
|
-
_globals['_STORAGECONFIG']._serialized_start=931
|
52
|
-
_globals['_STORAGECONFIG']._serialized_end=1131
|
53
|
-
_globals['_STORAGECONFIG_BUCKETSENTRY']._serialized_start=1055
|
54
|
-
_globals['_STORAGECONFIG_BUCKETSENTRY']._serialized_end=1131
|
55
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/config/job_pb2.py
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/config/job.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
16
|
-
from tracdap.metadata import object_pb2 as tracdap_dot_metadata_dot_object__pb2
|
17
|
-
from tracdap.metadata import job_pb2 as tracdap_dot_metadata_dot_job__pb2
|
18
|
-
|
19
|
-
|
20
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x18tracdap/config/job.proto\x12\x0etracdap.config\x1a tracdap/metadata/object_id.proto\x1a\x1dtracdap/metadata/object.proto\x1a\x1atracdap/metadata/job.proto\"\xae\x04\n\tJobConfig\x12*\n\x05jobId\x18\x01 \x01(\x0b\x32\x1b.tracdap.metadata.TagHeader\x12,\n\x03job\x18\x02 \x01(\x0b\x32\x1f.tracdap.metadata.JobDefinition\x12;\n\tresources\x18\x03 \x03(\x0b\x32(.tracdap.config.JobConfig.ResourcesEntry\x12G\n\x0fresourceMapping\x18\x04 \x03(\x0b\x32..tracdap.config.JobConfig.ResourceMappingEntry\x12\x43\n\rresultMapping\x18\x05 \x03(\x0b\x32,.tracdap.config.JobConfig.ResultMappingEntry\x1aT\n\x0eResourcesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\".tracdap.metadata.ObjectDefinition:\x02\x38\x01\x1aS\n\x14ResourceMappingEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12*\n\x05value\x18\x02 \x01(\x0b\x32\x1b.tracdap.metadata.TagHeader:\x02\x38\x01\x1aQ\n\x12ResultMappingEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12*\n\x05value\x18\x02 \x01(\x0b\x32\x1b.tracdap.metadata.TagHeader:\x02\x38\x01\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
|
21
|
-
|
22
|
-
_globals = globals()
|
23
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
24
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.job_pb2', _globals)
|
25
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
26
|
-
_globals['DESCRIPTOR']._options = None
|
27
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
|
28
|
-
_globals['_JOBCONFIG_RESOURCESENTRY']._options = None
|
29
|
-
_globals['_JOBCONFIG_RESOURCESENTRY']._serialized_options = b'8\001'
|
30
|
-
_globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._options = None
|
31
|
-
_globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._serialized_options = b'8\001'
|
32
|
-
_globals['_JOBCONFIG_RESULTMAPPINGENTRY']._options = None
|
33
|
-
_globals['_JOBCONFIG_RESULTMAPPINGENTRY']._serialized_options = b'8\001'
|
34
|
-
_globals['_JOBCONFIG']._serialized_start=138
|
35
|
-
_globals['_JOBCONFIG']._serialized_end=696
|
36
|
-
_globals['_JOBCONFIG_RESOURCESENTRY']._serialized_start=444
|
37
|
-
_globals['_JOBCONFIG_RESOURCESENTRY']._serialized_end=528
|
38
|
-
_globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._serialized_start=530
|
39
|
-
_globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._serialized_end=613
|
40
|
-
_globals['_JOBCONFIG_RESULTMAPPINGENTRY']._serialized_start=615
|
41
|
-
_globals['_JOBCONFIG_RESULTMAPPINGENTRY']._serialized_end=696
|
42
|
-
# @@protoc_insertion_point(module_scope)
|
@@ -1,71 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/config/platform.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import common_pb2 as tracdap_dot_metadata_dot_common__pb2
|
16
|
-
from tracdap.config import common_pb2 as tracdap_dot_config_dot_common__pb2
|
17
|
-
|
18
|
-
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dtracdap/config/platform.proto\x12\x0etracdap.config\x1a\x1dtracdap/metadata/common.proto\x1a\x1btracdap/config/common.proto\"\xa4\x08\n\x0ePlatformConfig\x12:\n\x06\x63onfig\x18\x01 \x03(\x0b\x32*.tracdap.config.PlatformConfig.ConfigEntry\x12\x32\n\x0cplatformInfo\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.PlatformInfo\x12<\n\x0e\x61uthentication\x18\x05 \x01(\x0b\x32$.tracdap.config.AuthenticationConfig\x12\x30\n\x08metadata\x18\x06 \x01(\x0b\x32\x1e.tracdap.config.MetadataConfig\x12.\n\x07storage\x18\x07 \x01(\x0b\x32\x1d.tracdap.config.StorageConfig\x12\x46\n\x0crepositories\x18\x08 \x03(\x0b\x32\x30.tracdap.config.PlatformConfig.RepositoriesEntry\x12.\n\x08\x65xecutor\x18\t \x01(\x0b\x32\x1c.tracdap.config.PluginConfig\x12.\n\x08jobCache\x18\x0c \x01(\x0b\x32\x1c.tracdap.config.PluginConfig\x12<\n\x07tenants\x18\n \x03(\x0b\x32+.tracdap.config.PlatformConfig.TenantsEntry\x12\x37\n\twebServer\x18\x0b \x01(\x0b\x32\x1f.tracdap.config.WebServerConfigH\x00\x88\x01\x01\x12\x33\n\x07gateway\x18\r \x01(\x0b\x32\x1d.tracdap.config.GatewayConfigH\x01\x88\x01\x01\x12>\n\x08services\x18\x04 \x03(\x0b\x32,.tracdap.config.PlatformConfig.ServicesEntry\x12\x34\n\ndeployment\x18\x0e \x01(\x0b\x32 .tracdap.config.DeploymentConfig\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aQ\n\x11RepositoriesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig:\x02\x38\x01\x1aL\n\x0cTenantsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.TenantConfig:\x02\x38\x01\x1aN\n\rServicesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.config.ServiceConfig:\x02\x38\x01\x42\x0c\n\n_webServerB\n\n\x08_gateway\"r\n\x0eMetadataConfig\x12.\n\x08\x64\x61tabase\x18\x01 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig\x12\x30\n\x06\x66ormat\x18\x02 \x01(\x0e\x32 .tracdap.metadata.MetadataFormat\"j\n\x0cTenantConfig\x12\x1a\n\rdefaultBucket\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rdefaultFormat\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x10\n\x0e_defaultBucketB\x10\n\x0e_defaultFormat\"\xc7\x01\n\x0fWebServerConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x31\n\x0b\x63ontentRoot\x18\x03 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig\x12:\n\x0crewriteRules\x18\x04 \x03(\x0b\x32$.tracdap.config.WebServerRewriteRule\x12\x34\n\tredirects\x18\x05 \x03(\x0b\x32!.tracdap.config.WebServerRedirect\"6\n\x14WebServerRewriteRule\x12\x0e\n\x06source\x18\x01 \x01(\t\x12\x0e\n\x06target\x18\x02 \x01(\t\"C\n\x11WebServerRedirect\x12\x0e\n\x06source\x18\x01 \x01(\t\x12\x0e\n\x06target\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\x05\"\x87\x01\n\rGatewayConfig\x12\x13\n\x0bidleTimeout\x18\x01 \x01(\r\x12+\n\x06routes\x18\x02 \x03(\x0b\x32\x1b.tracdap.config.RouteConfig\x12\x34\n\tredirects\x18\x03 \x03(\x0b\x32!.tracdap.config.WebServerRedirect\"\xe4\x01\n\x0bRouteConfig\x12\x11\n\trouteName\x18\x01 \x01(\t\x12\x32\n\trouteType\x18\x02 \x01(\x0e\x32\x1f.tracdap.config.RoutingProtocol\x12\x32\n\tprotocols\x18\x03 \x03(\x0e\x32\x1f.tracdap.config.RoutingProtocol\x12+\n\x05match\x18\x05 \x01(\x0b\x32\x1c.tracdap.config.RoutingMatch\x12-\n\x06target\x18\x06 \x01(\x0b\x32\x1d.tracdap.config.RoutingTarget\"*\n\x0cRoutingMatch\x12\x0c\n\x04host\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"I\n\rRoutingTarget\x12\x0e\n\x06scheme\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x0c\n\x04port\x18\x03 \x01(\r\x12\x0c\n\x04path\x18\x04 \x01(\t\"N\n\rServiceConfig\x12\x14\n\x07\x65nabled\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12\r\n\x05\x61lias\x18\x02 \x01(\t\x12\x0c\n\x04port\x18\x03 \x01(\rB\n\n\x08_enabled\"D\n\x10\x44\x65ploymentConfig\x12\x30\n\x06layout\x18\x01 \x01(\x0e\x32 .tracdap.config.DeploymentLayout*S\n\x0fRoutingProtocol\x12\x14\n\x10PROTOCOL_NOT_SET\x10\x00\x12\x08\n\x04HTTP\x10\x01\x12\x08\n\x04GRPC\x10\x02\x12\x0c\n\x08GRPC_WEB\x10\x03\x12\x08\n\x04REST\x10\x04*K\n\x10\x44\x65ploymentLayout\x12\x12\n\x0eLAYOUT_NOT_SET\x10\x00\x12\x0b\n\x07SANDBOX\x10\x01\x12\n\n\x06HOSTED\x10\x02\x12\n\n\x06\x43USTOM\x10\x03\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
|
20
|
-
|
21
|
-
_globals = globals()
|
22
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
23
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.platform_pb2', _globals)
|
24
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
25
|
-
_globals['DESCRIPTOR']._options = None
|
26
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
|
27
|
-
_globals['_PLATFORMCONFIG_CONFIGENTRY']._options = None
|
28
|
-
_globals['_PLATFORMCONFIG_CONFIGENTRY']._serialized_options = b'8\001'
|
29
|
-
_globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._options = None
|
30
|
-
_globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._serialized_options = b'8\001'
|
31
|
-
_globals['_PLATFORMCONFIG_TENANTSENTRY']._options = None
|
32
|
-
_globals['_PLATFORMCONFIG_TENANTSENTRY']._serialized_options = b'8\001'
|
33
|
-
_globals['_PLATFORMCONFIG_SERVICESENTRY']._options = None
|
34
|
-
_globals['_PLATFORMCONFIG_SERVICESENTRY']._serialized_options = b'8\001'
|
35
|
-
_globals['_ROUTINGPROTOCOL']._serialized_start=2361
|
36
|
-
_globals['_ROUTINGPROTOCOL']._serialized_end=2444
|
37
|
-
_globals['_DEPLOYMENTLAYOUT']._serialized_start=2446
|
38
|
-
_globals['_DEPLOYMENTLAYOUT']._serialized_end=2521
|
39
|
-
_globals['_PLATFORMCONFIG']._serialized_start=110
|
40
|
-
_globals['_PLATFORMCONFIG']._serialized_end=1170
|
41
|
-
_globals['_PLATFORMCONFIG_CONFIGENTRY']._serialized_start=858
|
42
|
-
_globals['_PLATFORMCONFIG_CONFIGENTRY']._serialized_end=903
|
43
|
-
_globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._serialized_start=905
|
44
|
-
_globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._serialized_end=986
|
45
|
-
_globals['_PLATFORMCONFIG_TENANTSENTRY']._serialized_start=988
|
46
|
-
_globals['_PLATFORMCONFIG_TENANTSENTRY']._serialized_end=1064
|
47
|
-
_globals['_PLATFORMCONFIG_SERVICESENTRY']._serialized_start=1066
|
48
|
-
_globals['_PLATFORMCONFIG_SERVICESENTRY']._serialized_end=1144
|
49
|
-
_globals['_METADATACONFIG']._serialized_start=1172
|
50
|
-
_globals['_METADATACONFIG']._serialized_end=1286
|
51
|
-
_globals['_TENANTCONFIG']._serialized_start=1288
|
52
|
-
_globals['_TENANTCONFIG']._serialized_end=1394
|
53
|
-
_globals['_WEBSERVERCONFIG']._serialized_start=1397
|
54
|
-
_globals['_WEBSERVERCONFIG']._serialized_end=1596
|
55
|
-
_globals['_WEBSERVERREWRITERULE']._serialized_start=1598
|
56
|
-
_globals['_WEBSERVERREWRITERULE']._serialized_end=1652
|
57
|
-
_globals['_WEBSERVERREDIRECT']._serialized_start=1654
|
58
|
-
_globals['_WEBSERVERREDIRECT']._serialized_end=1721
|
59
|
-
_globals['_GATEWAYCONFIG']._serialized_start=1724
|
60
|
-
_globals['_GATEWAYCONFIG']._serialized_end=1859
|
61
|
-
_globals['_ROUTECONFIG']._serialized_start=1862
|
62
|
-
_globals['_ROUTECONFIG']._serialized_end=2090
|
63
|
-
_globals['_ROUTINGMATCH']._serialized_start=2092
|
64
|
-
_globals['_ROUTINGMATCH']._serialized_end=2134
|
65
|
-
_globals['_ROUTINGTARGET']._serialized_start=2136
|
66
|
-
_globals['_ROUTINGTARGET']._serialized_end=2209
|
67
|
-
_globals['_SERVICECONFIG']._serialized_start=2211
|
68
|
-
_globals['_SERVICECONFIG']._serialized_end=2289
|
69
|
-
_globals['_DEPLOYMENTCONFIG']._serialized_start=2291
|
70
|
-
_globals['_DEPLOYMENTCONFIG']._serialized_end=2359
|
71
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/config/result_pb2.py
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/config/result.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
16
|
-
from tracdap.metadata import object_pb2 as tracdap_dot_metadata_dot_object__pb2
|
17
|
-
from tracdap.metadata import job_pb2 as tracdap_dot_metadata_dot_job__pb2
|
18
|
-
from tracdap.metadata import tag_update_pb2 as tracdap_dot_metadata_dot_tag__update__pb2
|
19
|
-
|
20
|
-
|
21
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1btracdap/config/result.proto\x12\x0etracdap.config\x1a tracdap/metadata/object_id.proto\x1a\x1dtracdap/metadata/object.proto\x1a\x1atracdap/metadata/job.proto\x1a!tracdap/metadata/tag_update.proto\";\n\rTagUpdateList\x12*\n\x05\x61ttrs\x18\x01 \x03(\x0b\x32\x1b.tracdap.metadata.TagUpdate\"\x9d\x02\n\tJobResult\x12*\n\x05jobId\x18\x01 \x01(\x0b\x32\x1b.tracdap.metadata.TagHeader\x12\x33\n\nstatusCode\x18\x02 \x01(\x0e\x32\x1f.tracdap.metadata.JobStatusCode\x12\x15\n\rstatusMessage\x18\x03 \x01(\t\x12\x37\n\x07results\x18\x04 \x03(\x0b\x32&.tracdap.config.JobResult.ResultsEntry\x1aR\n\x0cResultsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\".tracdap.metadata.ObjectDefinition:\x02\x38\x01J\x04\x08\x05\x10\x06R\x05\x61ttrsB\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
|
22
|
-
|
23
|
-
_globals = globals()
|
24
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
25
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.result_pb2', _globals)
|
26
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
27
|
-
_globals['DESCRIPTOR']._options = None
|
28
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
|
29
|
-
_globals['_JOBRESULT_RESULTSENTRY']._options = None
|
30
|
-
_globals['_JOBRESULT_RESULTSENTRY']._serialized_options = b'8\001'
|
31
|
-
_globals['_TAGUPDATELIST']._serialized_start=175
|
32
|
-
_globals['_TAGUPDATELIST']._serialized_end=234
|
33
|
-
_globals['_JOBRESULT']._serialized_start=237
|
34
|
-
_globals['_JOBRESULT']._serialized_end=522
|
35
|
-
_globals['_JOBRESULT_RESULTSENTRY']._serialized_start=427
|
36
|
-
_globals['_JOBRESULT_RESULTSENTRY']._serialized_end=509
|
37
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/config/runtime_pb2.py
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/config/runtime.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.config import common_pb2 as tracdap_dot_config_dot_common__pb2
|
16
|
-
|
17
|
-
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ctracdap/config/runtime.proto\x12\x0etracdap.config\x1a\x1btracdap/config/common.proto\"\xf9\x02\n\rRuntimeConfig\x12\x39\n\x06\x63onfig\x18\x01 \x03(\x0b\x32).tracdap.config.RuntimeConfig.ConfigEntry\x12.\n\x07storage\x18\x02 \x01(\x0b\x32\x1d.tracdap.config.StorageConfig\x12\x45\n\x0crepositories\x18\x03 \x03(\x0b\x32/.tracdap.config.RuntimeConfig.RepositoriesEntry\x12\x34\n\rsparkSettings\x18\x05 \x01(\x0b\x32\x1d.tracdap.config.SparkSettings\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aQ\n\x11RepositoriesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig:\x02\x38\x01\"\x85\x01\n\rSparkSettings\x12\x41\n\nsparkProps\x18\x01 \x03(\x0b\x32-.tracdap.config.SparkSettings.SparkPropsEntry\x1a\x31\n\x0fSparkPropsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
|
19
|
-
|
20
|
-
_globals = globals()
|
21
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
22
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.runtime_pb2', _globals)
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
24
|
-
_globals['DESCRIPTOR']._options = None
|
25
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
|
26
|
-
_globals['_RUNTIMECONFIG_CONFIGENTRY']._options = None
|
27
|
-
_globals['_RUNTIMECONFIG_CONFIGENTRY']._serialized_options = b'8\001'
|
28
|
-
_globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._options = None
|
29
|
-
_globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._serialized_options = b'8\001'
|
30
|
-
_globals['_SPARKSETTINGS_SPARKPROPSENTRY']._options = None
|
31
|
-
_globals['_SPARKSETTINGS_SPARKPROPSENTRY']._serialized_options = b'8\001'
|
32
|
-
_globals['_RUNTIMECONFIG']._serialized_start=78
|
33
|
-
_globals['_RUNTIMECONFIG']._serialized_end=455
|
34
|
-
_globals['_RUNTIMECONFIG_CONFIGENTRY']._serialized_start=327
|
35
|
-
_globals['_RUNTIMECONFIG_CONFIGENTRY']._serialized_end=372
|
36
|
-
_globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._serialized_start=374
|
37
|
-
_globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._serialized_end=455
|
38
|
-
_globals['_SPARKSETTINGS']._serialized_start=458
|
39
|
-
_globals['_SPARKSETTINGS']._serialized_end=591
|
40
|
-
_globals['_SPARKSETTINGS_SPARKPROPSENTRY']._serialized_start=542
|
41
|
-
_globals['_SPARKSETTINGS_SPARKPROPSENTRY']._serialized_end=591
|
42
|
-
# @@protoc_insertion_point(module_scope)
|
@@ -1,33 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/common.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dtracdap/metadata/common.proto\x12\x10tracdap.metadata\"5\n\nTenantInfo\x12\x12\n\ntenantCode\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t*L\n\x0eMetadataFormat\x12\x1b\n\x17METADATA_FORMAT_NOT_SET\x10\x00\x12\t\n\x05PROTO\x10\x01\x12\x08\n\x04JSON\x10\x02\x12\x08\n\x04YAML\x10\x03*H\n\x0fMetadataVersion\x12\x1c\n\x18METADATA_VERSION_NOT_SET\x10\x00\x12\x06\n\x02V1\x10\x01\x12\x0b\n\x07\x43URRENT\x10\x01\x1a\x02\x10\x01\x42\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
18
|
-
|
19
|
-
_globals = globals()
|
20
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
21
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.common_pb2', _globals)
|
22
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
23
|
-
_globals['DESCRIPTOR']._options = None
|
24
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
25
|
-
_globals['_METADATAVERSION']._options = None
|
26
|
-
_globals['_METADATAVERSION']._serialized_options = b'\020\001'
|
27
|
-
_globals['_METADATAFORMAT']._serialized_start=106
|
28
|
-
_globals['_METADATAFORMAT']._serialized_end=182
|
29
|
-
_globals['_METADATAVERSION']._serialized_start=184
|
30
|
-
_globals['_METADATAVERSION']._serialized_end=256
|
31
|
-
_globals['_TENANTINFO']._serialized_start=51
|
32
|
-
_globals['_TENANTINFO']._serialized_end=104
|
33
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/metadata/data_pb2.py
DELETED
@@ -1,51 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/data.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import type_pb2 as tracdap_dot_metadata_dot_type__pb2
|
16
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
17
|
-
|
18
|
-
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1btracdap/metadata/data.proto\x12\x10tracdap.metadata\x1a\x1btracdap/metadata/type.proto\x1a tracdap/metadata/object_id.proto\"\xe7\x01\n\x0b\x46ieldSchema\x12\x11\n\tfieldName\x18\x01 \x01(\t\x12\x12\n\nfieldOrder\x18\x02 \x01(\x11\x12.\n\tfieldType\x18\x03 \x01(\x0e\x32\x1b.tracdap.metadata.BasicType\x12\r\n\x05label\x18\x04 \x01(\t\x12\x13\n\x0b\x62usinessKey\x18\x05 \x01(\x08\x12\x13\n\x0b\x63\x61tegorical\x18\x06 \x01(\x08\x12\x14\n\x07notNull\x18\x08 \x01(\x08H\x00\x88\x01\x01\x12\x17\n\nformatCode\x18\x07 \x01(\tH\x01\x88\x01\x01\x42\n\n\x08_notNullB\r\n\x0b_formatCode\"<\n\x0bTableSchema\x12-\n\x06\x66ields\x18\x01 \x03(\x0b\x32\x1d.tracdap.metadata.FieldSchema\"\xba\x01\n\x10SchemaDefinition\x12\x30\n\nschemaType\x18\x01 \x01(\x0e\x32\x1c.tracdap.metadata.SchemaType\x12,\n\x08partType\x18\x02 \x01(\x0e\x32\x1a.tracdap.metadata.PartType\x12.\n\x05table\x18\x03 \x01(\x0b\x32\x1d.tracdap.metadata.TableSchemaH\x00\x42\x16\n\x14schemaTypeDefinition\"\x81\x02\n\x07PartKey\x12\x11\n\topaqueKey\x18\x01 \x01(\t\x12,\n\x08partType\x18\x02 \x01(\x0e\x32\x1a.tracdap.metadata.PartType\x12+\n\npartValues\x18\x03 \x03(\x0b\x32\x17.tracdap.metadata.Value\x12\x32\n\x0cpartRangeMin\x18\x04 \x01(\x0b\x32\x17.tracdap.metadata.ValueH\x00\x88\x01\x01\x12\x32\n\x0cpartRangeMax\x18\x05 \x01(\x0b\x32\x17.tracdap.metadata.ValueH\x01\x88\x01\x01\x42\x0f\n\r_partRangeMinB\x0f\n\r_partRangeMax\"\xba\x04\n\x0e\x44\x61taDefinition\x12\x31\n\x08schemaId\x18\x01 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelectorH\x00\x12\x34\n\x06schema\x18\x02 \x01(\x0b\x32\".tracdap.metadata.SchemaDefinitionH\x00\x12:\n\x05parts\x18\x03 \x03(\x0b\x32+.tracdap.metadata.DataDefinition.PartsEntry\x12\x30\n\tstorageId\x18\x04 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector\x1a-\n\x05\x44\x65lta\x12\x12\n\ndeltaIndex\x18\x01 \x01(\r\x12\x10\n\x08\x64\x61taItem\x18\x02 \x01(\t\x1aQ\n\x04Snap\x12\x11\n\tsnapIndex\x18\x01 \x01(\r\x12\x36\n\x06\x64\x65ltas\x18\x02 \x03(\x0b\x32&.tracdap.metadata.DataDefinition.Delta\x1ag\n\x04Part\x12*\n\x07partKey\x18\x01 \x01(\x0b\x32\x19.tracdap.metadata.PartKey\x12\x33\n\x04snap\x18\x02 \x01(\x0b\x32%.tracdap.metadata.DataDefinition.Snap\x1aS\n\nPartsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x34\n\x05value\x18\x02 \x01(\x0b\x32%.tracdap.metadata.DataDefinition.Part:\x02\x38\x01\x42\x11\n\x0fschemaSpecifier*0\n\nSchemaType\x12\x17\n\x13SCHEMA_TYPE_NOT_SET\x10\x00\x12\t\n\x05TABLE\x10\x01*?\n\x08PartType\x12\r\n\tPART_ROOT\x10\x00\x12\x11\n\rPART_BY_RANGE\x10\x01\x12\x11\n\rPART_BY_VALUE\x10\x02\x42\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
20
|
-
|
21
|
-
_globals = globals()
|
22
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
23
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.data_pb2', _globals)
|
24
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
25
|
-
_globals['DESCRIPTOR']._options = None
|
26
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
27
|
-
_globals['_DATADEFINITION_PARTSENTRY']._options = None
|
28
|
-
_globals['_DATADEFINITION_PARTSENTRY']._serialized_options = b'8\001'
|
29
|
-
_globals['_SCHEMATYPE']._serialized_start=1430
|
30
|
-
_globals['_SCHEMATYPE']._serialized_end=1478
|
31
|
-
_globals['_PARTTYPE']._serialized_start=1480
|
32
|
-
_globals['_PARTTYPE']._serialized_end=1543
|
33
|
-
_globals['_FIELDSCHEMA']._serialized_start=113
|
34
|
-
_globals['_FIELDSCHEMA']._serialized_end=344
|
35
|
-
_globals['_TABLESCHEMA']._serialized_start=346
|
36
|
-
_globals['_TABLESCHEMA']._serialized_end=406
|
37
|
-
_globals['_SCHEMADEFINITION']._serialized_start=409
|
38
|
-
_globals['_SCHEMADEFINITION']._serialized_end=595
|
39
|
-
_globals['_PARTKEY']._serialized_start=598
|
40
|
-
_globals['_PARTKEY']._serialized_end=855
|
41
|
-
_globals['_DATADEFINITION']._serialized_start=858
|
42
|
-
_globals['_DATADEFINITION']._serialized_end=1428
|
43
|
-
_globals['_DATADEFINITION_DELTA']._serialized_start=1091
|
44
|
-
_globals['_DATADEFINITION_DELTA']._serialized_end=1136
|
45
|
-
_globals['_DATADEFINITION_SNAP']._serialized_start=1138
|
46
|
-
_globals['_DATADEFINITION_SNAP']._serialized_end=1219
|
47
|
-
_globals['_DATADEFINITION_PART']._serialized_start=1221
|
48
|
-
_globals['_DATADEFINITION_PART']._serialized_end=1324
|
49
|
-
_globals['_DATADEFINITION_PARTSENTRY']._serialized_start=1326
|
50
|
-
_globals['_DATADEFINITION_PARTSENTRY']._serialized_end=1409
|
51
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/metadata/file_pb2.py
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/file.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
16
|
-
|
17
|
-
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1btracdap/metadata/file.proto\x12\x10tracdap.metadata\x1a tracdap/metadata/object_id.proto\"\x95\x01\n\x0e\x46ileDefinition\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\textension\x18\x02 \x01(\t\x12\x10\n\x08mimeType\x18\x03 \x01(\t\x12\x0c\n\x04size\x18\x04 \x01(\x04\x12\x30\n\tstorageId\x18\x05 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector\x12\x10\n\x08\x64\x61taItem\x18\x06 \x01(\tB\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
19
|
-
|
20
|
-
_globals = globals()
|
21
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
22
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.file_pb2', _globals)
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
24
|
-
_globals['DESCRIPTOR']._options = None
|
25
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
26
|
-
_globals['_FILEDEFINITION']._serialized_start=84
|
27
|
-
_globals['_FILEDEFINITION']._serialized_end=233
|
28
|
-
# @@protoc_insertion_point(module_scope)
|