tracdap-runtime 0.5.30__py3-none-any.whl → 0.6.0__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/dev_mode.py +2 -1
- tracdap/rt/_impl/data.py +1 -28
- tracdap/rt/_impl/static_api.py +5 -1
- tracdap/rt/_impl/storage.py +586 -10
- tracdap/rt/_impl/util.py +24 -3
- tracdap/rt/_plugins/_helpers.py +26 -25
- tracdap/rt/_plugins/storage_aws.py +162 -76
- tracdap/rt/_plugins/storage_azure.py +155 -0
- tracdap/rt/_plugins/storage_gcp.py +183 -0
- tracdap/rt/_plugins/storage_local.py +249 -98
- tracdap/rt/_version.py +1 -1
- tracdap/rt/api/static_api.py +2 -1
- tracdap/rt/config/__init__.py +8 -13
- tracdap/rt/config/common.py +10 -0
- tracdap/rt/config/common_pb2.py +38 -31
- tracdap/rt/config/job_pb2.py +21 -20
- tracdap/rt/config/platform.py +60 -25
- tracdap/rt/config/platform_pb2.py +52 -45
- tracdap/rt/config/result_pb2.py +15 -14
- tracdap/rt/config/runtime.py +0 -1
- tracdap/rt/config/runtime_pb2.py +24 -24
- tracdap/rt/exceptions.py +9 -0
- tracdap/rt/ext/plugins.py +0 -12
- tracdap/rt/ext/storage.py +47 -29
- tracdap/rt/metadata/common_pb2.py +15 -14
- tracdap/rt/metadata/custom_pb2.py +9 -8
- tracdap/rt/metadata/data_pb2.py +31 -30
- tracdap/rt/metadata/file_pb2.py +9 -8
- tracdap/rt/metadata/flow_pb2.py +33 -32
- tracdap/rt/metadata/job_pb2.py +55 -54
- tracdap/rt/metadata/model_pb2.py +31 -30
- tracdap/rt/metadata/object_id_pb2.py +13 -12
- tracdap/rt/metadata/object_pb2.py +9 -8
- tracdap/rt/metadata/search_pb2.py +19 -18
- tracdap/rt/metadata/stoarge_pb2.py +31 -30
- tracdap/rt/metadata/tag_pb2.py +13 -12
- tracdap/rt/metadata/tag_update_pb2.py +11 -10
- tracdap/rt/metadata/type_pb2.py +29 -28
- {tracdap_runtime-0.5.30.dist-info → tracdap_runtime-0.6.0.dist-info}/METADATA +26 -15
- {tracdap_runtime-0.5.30.dist-info → tracdap_runtime-0.6.0.dist-info}/RECORD +43 -43
- tracdap/rt/config/gateway.py +0 -104
- tracdap/rt/config/gateway_pb2.py +0 -45
- {tracdap_runtime-0.5.30.dist-info → tracdap_runtime-0.6.0.dist-info}/LICENSE +0 -0
- {tracdap_runtime-0.5.30.dist-info → tracdap_runtime-0.6.0.dist-info}/WHEEL +0 -0
- {tracdap_runtime-0.5.30.dist-info → tracdap_runtime-0.6.0.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,10 @@
|
|
1
1
|
tracdap/rt/__init__.py,sha256=rz9ERpKMlnR4LFZNGLtdNE26B_Y2V168bdd8hRmasKk,643
|
2
|
-
tracdap/rt/_version.py,sha256
|
3
|
-
tracdap/rt/exceptions.py,sha256=
|
2
|
+
tracdap/rt/_version.py,sha256=-2X4e_FfFQmBYWQ5fzIIQovflwHBwJcfd7sJmh0kejg,631
|
3
|
+
tracdap/rt/exceptions.py,sha256=AV2o9g5d5miMoRfsYW3DZ6or4SLVGwcZjfw4UsQ-HTY,7907
|
4
4
|
tracdap/rt/_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
5
|
tracdap/rt/_exec/actors.py,sha256=faZ7hCxsONLbjQKrFRZv-wL_aXaKjsgbLOHDI0uUXDc,32242
|
6
6
|
tracdap/rt/_exec/context.py,sha256=U8er9ri8WG8gSJKERlFbW2phQdPhbMKSpknc2j2H2YU,12013
|
7
|
-
tracdap/rt/_exec/dev_mode.py,sha256=
|
7
|
+
tracdap/rt/_exec/dev_mode.py,sha256=tJfotKAVSUE3U87HvUP-zw_z-U8TqFRV8H5Ae10wPTU,29337
|
8
8
|
tracdap/rt/_exec/engine.py,sha256=jGrQlqbVLr4n5iuAUwOjJBdEAu9s_szJ4CUFtNtDPxo,29952
|
9
9
|
tracdap/rt/_exec/functions.py,sha256=m4RI5_Sttky9bLx3dgQyGCpCV5o8VQGXP0jyumwNID8,23310
|
10
10
|
tracdap/rt/_exec/graph.py,sha256=xjaXFN0NkSUrua_iQWxcnMMOgG57OYhohVWTbyMCe58,10991
|
@@ -12,85 +12,85 @@ tracdap/rt/_exec/graph_builder.py,sha256=5vDjgLuzt8HrZp0c-U5CQ8dm_cwebEgeYfgR2ht
|
|
12
12
|
tracdap/rt/_exec/runtime.py,sha256=MCfpEBwbh1vs5Ir4vOOK_R2z6XVaK-teAm2Iz3pAmLo,13708
|
13
13
|
tracdap/rt/_impl/__init__.py,sha256=eBZMpgFx9uHJxMA-yMWHCQMvShTKxJRAizdz4vy5eWg,609
|
14
14
|
tracdap/rt/_impl/config_parser.py,sha256=udnYRafOcP3aQSVXSfjCc70gOEbh7MxJpR1v0wqnBUw,15263
|
15
|
-
tracdap/rt/_impl/data.py,sha256=
|
15
|
+
tracdap/rt/_impl/data.py,sha256=hp_GYPsxWt69OBOyP5bTtPi-QsBeTKySkMuHEvit4Ag,32274
|
16
16
|
tracdap/rt/_impl/guard_rails.py,sha256=eZbhmBvAY-6SP-Y1CM33bMOQu4xLmAjDVctSR-yocZk,10724
|
17
17
|
tracdap/rt/_impl/models.py,sha256=BWTL7y1fcSWCOxBn7f4NLpzcNrPABzP9hC7bWTVT2wc,9020
|
18
18
|
tracdap/rt/_impl/repos.py,sha256=bdpUkBbNOIQOKJQGOhCDdXUMz2bY91YNIYlKRKTtM4Y,2063
|
19
19
|
tracdap/rt/_impl/schemas.py,sha256=KhMvh_i2ZLx0-P6vzx8ro2-KbnB3upfJgryTHbXMJrs,7417
|
20
20
|
tracdap/rt/_impl/shim.py,sha256=WV9AldhKdt-oLuQ5x89Dkocdn_gJoYZEo9buHHFIYd8,23148
|
21
|
-
tracdap/rt/_impl/static_api.py,sha256=
|
22
|
-
tracdap/rt/_impl/storage.py,sha256=
|
21
|
+
tracdap/rt/_impl/static_api.py,sha256=5MRTicKpq-afaX7z3bCBJqQjbncXzCL-t__9UDR90r8,7684
|
22
|
+
tracdap/rt/_impl/storage.py,sha256=9ShRUu7-d_PcoMvEJFX-IyPomEybTEcAU2z0SJR_6pk,34920
|
23
23
|
tracdap/rt/_impl/type_system.py,sha256=yycCyGZgszCkpO1tA5sMg0W_-2uYwk9dTaL2gg68D6k,12010
|
24
|
-
tracdap/rt/_impl/util.py,sha256=
|
24
|
+
tracdap/rt/_impl/util.py,sha256=KfQiKoDhnNQuH7WqkPO58hIXt7NBwtqQ-QGOdj5GKA0,11207
|
25
25
|
tracdap/rt/_impl/validation.py,sha256=AgSnr_SZ6nbyh7beiz3QP5BEg-sOuXvFzarqiPvuuUQ,16241
|
26
26
|
tracdap/rt/_plugins/__init__.py,sha256=NT9Aq8FDZwJgAG6u6K2E0B6ByAo3x0i48wFNfRkSLZc,609
|
27
|
-
tracdap/rt/_plugins/_helpers.py,sha256=
|
27
|
+
tracdap/rt/_plugins/_helpers.py,sha256=NRsTM4UMFYC8Y_bNWcsQPc-zqMW5TkXsGLlKXWNtYuo,5563
|
28
28
|
tracdap/rt/_plugins/format_arrow.py,sha256=C4mcRRD-bIZhytxEn4meM1gwIaq1cSl_YgmUGUwzuPY,2210
|
29
29
|
tracdap/rt/_plugins/format_csv.py,sha256=e9yr5ZSseuns-YHa-dKPMOO0EvFM4Kx3CJbvHQQika4,16823
|
30
30
|
tracdap/rt/_plugins/format_parquet.py,sha256=clOkTGvqEPgnF7eRaxceyDDiWgFbSHZcYQWGOr2130c,2159
|
31
31
|
tracdap/rt/_plugins/repo_git.py,sha256=Y78b72PyjKSEuxPQRAJZfDpYRKXbFcWLjag7pyOj0CM,9864
|
32
32
|
tracdap/rt/_plugins/repo_local.py,sha256=oW35YZIjOI4uRTGWI44Vnr9mzelQL-HuLvLnmHZHzTU,2726
|
33
33
|
tracdap/rt/_plugins/repo_pypi.py,sha256=ZnTHdMix5thhhyZf3t3anLIVv22lgNSRaX2lMRaU57o,13272
|
34
|
-
tracdap/rt/_plugins/storage_aws.py,sha256=
|
35
|
-
tracdap/rt/_plugins/
|
34
|
+
tracdap/rt/_plugins/storage_aws.py,sha256=1XyWJcHmRQqr3LpS6yGvR6-yaz4g7_3zFc_KUJPWmz8,12973
|
35
|
+
tracdap/rt/_plugins/storage_azure.py,sha256=Q7c063SXlbbsyZHWPu4ma8BDwV-sE0ipOyb0Roi9ad0,5813
|
36
|
+
tracdap/rt/_plugins/storage_gcp.py,sha256=ENMrgTzqX0QjSDnMfeGyFK6YUwaFaJgqF7PQzEqviKk,6464
|
37
|
+
tracdap/rt/_plugins/storage_local.py,sha256=Px94B0YWPCEDEK6kYizZSpQ2pBRnzuuC_-YJbgNxMz4,15092
|
36
38
|
tracdap/rt/api/__init__.py,sha256=rOiUwK6sav9QTXohpZAFXJ9MgsL0KBfUyKA7dYspfGQ,1124
|
37
39
|
tracdap/rt/api/hook.py,sha256=3gc90J2mzp27koDysHvl8HwiSePw0hjg1BED3VhZVR4,4033
|
38
40
|
tracdap/rt/api/model_api.py,sha256=S2Dz7cre5pFIK3jw8Qlv6D90bv6KSULdbPkMBurEkAM,15402
|
39
|
-
tracdap/rt/api/static_api.py,sha256=
|
40
|
-
tracdap/rt/config/__init__.py,sha256=
|
41
|
-
tracdap/rt/config/common.py,sha256=
|
42
|
-
tracdap/rt/config/common_pb2.py,sha256=
|
43
|
-
tracdap/rt/config/gateway.py,sha256=Uz1ihOTHGLU0GBBIHAaZCV0ufyyHQJtQnAHeqD1dyOM,1551
|
44
|
-
tracdap/rt/config/gateway_pb2.py,sha256=d9UHmDkRqSiEY7tANqwhWmVuTUplXuYA0wpTBrWg9eI,3820
|
41
|
+
tracdap/rt/api/static_api.py,sha256=Q4Cd5Kc97xt8X50nd_36LMcN0UYQMAuN7IKRS-9AwAM,20930
|
42
|
+
tracdap/rt/config/__init__.py,sha256=EM0d8enXkfKzsBBwFuCjMH2Fin39OopJ6qOOUk7P0-E,887
|
43
|
+
tracdap/rt/config/common.py,sha256=0R57K63-aJ-flvV8RwPyklgPYlLIPUoy5MnZagKFP4A,1202
|
44
|
+
tracdap/rt/config/common_pb2.py,sha256=aQV7N81HMw7O2-ltQhqGlggU98r8LcX-em67n3x8JVA,4796
|
45
45
|
tracdap/rt/config/job.py,sha256=txzOSBBOoEHWo8tzFNhv9HvjOo4q4C9YfVKadNwZKBQ,575
|
46
|
-
tracdap/rt/config/job_pb2.py,sha256=
|
47
|
-
tracdap/rt/config/platform.py,sha256=
|
48
|
-
tracdap/rt/config/platform_pb2.py,sha256=
|
46
|
+
tracdap/rt/config/job_pb2.py,sha256=mee2IaLREot0BxSFQwyaVUEOeV8YyXKI3jHnwdQESQM,3160
|
47
|
+
tracdap/rt/config/platform.py,sha256=f1pxmZNImUkNpdaLDk9uotsbL9n7XdeNw3C5lcpYhYE,2794
|
48
|
+
tracdap/rt/config/platform_pb2.py,sha256=WG_b0g9J_Qx9PzmFO3v1j5Wsnnt01eaUPboqC6kzikU,7766
|
49
49
|
tracdap/rt/config/result.py,sha256=ChxZ2R5UtMGuO7h0PVijskbzVo8cXqWIA2PyAkYT-PQ,588
|
50
|
-
tracdap/rt/config/result_pb2.py,sha256=
|
51
|
-
tracdap/rt/config/runtime.py,sha256=
|
52
|
-
tracdap/rt/config/runtime_pb2.py,sha256=
|
50
|
+
tracdap/rt/config/result_pb2.py,sha256=mBY7_BzwKE3FwnNW8i2LY1bE4MxXFk-YHRr-tUJ--w8,2544
|
51
|
+
tracdap/rt/config/runtime.py,sha256=M7FoknJkLULrSUX3ZN6dH5KsLKT3spsBtEsCSDGumq0,554
|
52
|
+
tracdap/rt/config/runtime_pb2.py,sha256=KZFtDiObAa5KXXzn-opAz5F7f0T_3eqvyrQ3HETgKX0,3020
|
53
53
|
tracdap/rt/ext/__init__.py,sha256=0yYnHpdaHioyof9IyG0R2Z6us1PsaRjOfDX0hSLc_g8,608
|
54
54
|
tracdap/rt/ext/_guard.py,sha256=ySID0WTbkdrVRzplyMJRl4cc7EqIR1_CImV-e2INiAY,1301
|
55
55
|
tracdap/rt/ext/embed.py,sha256=_Uz396ELYH0tMKcQRt6W2SznWYSB48zEqAp8P8B6H98,2146
|
56
|
-
tracdap/rt/ext/plugins.py,sha256=
|
56
|
+
tracdap/rt/ext/plugins.py,sha256=PLi66dhcqN7W7IWBGIb_hGS8t7MwonpeDWP4ivH00FU,2871
|
57
57
|
tracdap/rt/ext/repos.py,sha256=hnoGadBthdQK_8IQV5lvfxiiTBC7by7YbcD74qBC5Dw,3110
|
58
|
-
tracdap/rt/ext/storage.py,sha256=
|
58
|
+
tracdap/rt/ext/storage.py,sha256=mOZKtxFTiPnfOEvUu7RMi3s-Z6PHUX5g4Dq7N6809Dc,4793
|
59
59
|
tracdap/rt/launch/__init__.py,sha256=Zz_4f_ODsmweCxRmG2Dq1Slpb927jSugYclfF_Wgfws,673
|
60
60
|
tracdap/rt/launch/__main__.py,sha256=9UVYYSsqvvMVOqjjBBeLNdzV_6IeIa_97KWOMXIpXY4,654
|
61
61
|
tracdap/rt/launch/cli.py,sha256=giC30Dffz9eYd-7fDQqTZ65OXDDf0OPmKb6NV_meePE,2196
|
62
62
|
tracdap/rt/launch/launch.py,sha256=ap6PWdIS4eg43aCK2A-bdAoXS75ZUIT3Kt-6Uc-4eNw,4497
|
63
63
|
tracdap/rt/metadata/__init__.py,sha256=hm_6z9Dr8lCyOLzcqo69xtWTg0KkiCKH0I4Mnb1Umlc,1779
|
64
64
|
tracdap/rt/metadata/common.py,sha256=HIOphjbX_y7gRpERThb0Hrgiij1qaSc9XmvcWiuE3nI,1453
|
65
|
-
tracdap/rt/metadata/common_pb2.py,sha256=
|
65
|
+
tracdap/rt/metadata/common_pb2.py,sha256=yMxUFZprDeTQRWruhly0qtcR-cn6pw1v7hCEsfM9SxQ,1882
|
66
66
|
tracdap/rt/metadata/custom.py,sha256=bNG2Fy8uYz1qE8idgN1h4EHkecV95BG0ruEl7XUWvRU,295
|
67
|
-
tracdap/rt/metadata/custom_pb2.py,sha256=
|
67
|
+
tracdap/rt/metadata/custom_pb2.py,sha256=Dzn08-oG6LHjSk2XgWQS59OxGezOmhe5Wmga6J3PQbE,1358
|
68
68
|
tracdap/rt/metadata/data.py,sha256=OR7axOmrcyIOdWTqq2fuMV-kWF2H6-rJuKfV3ok1OnM,2773
|
69
|
-
tracdap/rt/metadata/data_pb2.py,sha256=
|
69
|
+
tracdap/rt/metadata/data_pb2.py,sha256=coUhh5Lbaf_U6SydUTcGdaheNnGrXPu1voEBAiBk8Bo,4988
|
70
70
|
tracdap/rt/metadata/file.py,sha256=LeZGMkS8j2wlsbAw_qojYtrvljgj-YwraU-V00p4rvY,385
|
71
|
-
tracdap/rt/metadata/file_pb2.py,sha256=
|
71
|
+
tracdap/rt/metadata/file_pb2.py,sha256=ytzjuWhcoUlEP93Z_mfyUrQ3XHYNncDcz7MwhWdaZBY,1598
|
72
72
|
tracdap/rt/metadata/flow.py,sha256=zBwmEK9NrO3R3QcgGHQz2k6X72RSed7uZXEaJKHPdHY,1347
|
73
|
-
tracdap/rt/metadata/flow_pb2.py,sha256=
|
73
|
+
tracdap/rt/metadata/flow_pb2.py,sha256=tWZqIDssFdf8dTQIPI2eQOoQfE4C83gDwVVkhGuoaWE,4877
|
74
74
|
tracdap/rt/metadata/job.py,sha256=JVbfHYOxOiXDfYlcVTEyHjrxVVXjc4qQnCDO6aKwUbQ,2160
|
75
|
-
tracdap/rt/metadata/job_pb2.py,sha256=
|
75
|
+
tracdap/rt/metadata/job_pb2.py,sha256=uCofiCvevL_cSzmv-Y5edt1M6FTFNuJNo7SJGx61b10,7983
|
76
76
|
tracdap/rt/metadata/model.py,sha256=U7LA6v-0BrYcVgk1PucSfMwVww9CzAKPtxxLnDZIFJQ,2613
|
77
|
-
tracdap/rt/metadata/model_pb2.py,sha256=
|
77
|
+
tracdap/rt/metadata/model_pb2.py,sha256=cv4kj293kJv-cli9Qla1x-_E007XYxPHouX1U66_leQ,4769
|
78
78
|
tracdap/rt/metadata/object.py,sha256=AYBx-LJ1kUp6bTqDOsDkd5GJtAZJK8XFaHYGeSt023M,2709
|
79
79
|
tracdap/rt/metadata/object_id.py,sha256=U4g55EGUrnXMxynYdpAW1kFxzTlmpERa-0pwHxXZDV0,4313
|
80
|
-
tracdap/rt/metadata/object_id_pb2.py,sha256=
|
81
|
-
tracdap/rt/metadata/object_pb2.py,sha256=
|
80
|
+
tracdap/rt/metadata/object_id_pb2.py,sha256=EYYNi7f3ZTQR-4vuOp9dFZyY1iLE1XR4CaVhF9Ws5fE,2783
|
81
|
+
tracdap/rt/metadata/object_pb2.py,sha256=OWmKz1PLSPJqe-fMYK1otxPuoVBdigpsGVaMdlHJZXY,2929
|
82
82
|
tracdap/rt/metadata/search.py,sha256=2wTk6VQF7GuJfZYRBxoOhRxDQ1zOPgN3fWyUV7wIZiY,9811
|
83
|
-
tracdap/rt/metadata/search_pb2.py,sha256=
|
83
|
+
tracdap/rt/metadata/search_pb2.py,sha256=WixbniXcaaU42rbvjuF_KfCI5uv_A0m9Jq8rsOahjx4,3421
|
84
84
|
tracdap/rt/metadata/stoarge.py,sha256=E0gEO4zwH2os92_Fp8JzuqNIfdHbeAilfVe-TkXOtMU,1336
|
85
|
-
tracdap/rt/metadata/stoarge_pb2.py,sha256=
|
85
|
+
tracdap/rt/metadata/stoarge_pb2.py,sha256=3D9zNxJIHpyNlJoB6JFQBeptRIOkITqh04nYHRqd-XI,4504
|
86
86
|
tracdap/rt/metadata/tag.py,sha256=qO1Lxn64UllfAt3CSdvQf04HuKlaUG0ET0keW1Soz_c,5079
|
87
|
-
tracdap/rt/metadata/tag_pb2.py,sha256=
|
87
|
+
tracdap/rt/metadata/tag_pb2.py,sha256=6WRhKiIGIDhTwRyl0AFIcPCUMKTxruxNdq4HqyH2oHA,2126
|
88
88
|
tracdap/rt/metadata/tag_update.py,sha256=gSNG1Nv4mIhcmBcuMa5P6pmuj_R4DwHc9R7riSwk0bI,3718
|
89
|
-
tracdap/rt/metadata/tag_update_pb2.py,sha256=
|
89
|
+
tracdap/rt/metadata/tag_update_pb2.py,sha256=n_TPfBnA3bUzGW15y1TqQIBcI5f0zJ3551Shbbg-mT4,1940
|
90
90
|
tracdap/rt/metadata/type.py,sha256=a11dBdO8Cp8fkXfS9Xom1IDqz3BQZenzvGY20V855QE,9402
|
91
|
-
tracdap/rt/metadata/type_pb2.py,sha256=
|
92
|
-
tracdap_runtime-0.
|
93
|
-
tracdap_runtime-0.
|
94
|
-
tracdap_runtime-0.
|
95
|
-
tracdap_runtime-0.
|
96
|
-
tracdap_runtime-0.
|
91
|
+
tracdap/rt/metadata/type_pb2.py,sha256=18CyFTHyGWvHbdyvrMU7rI5JDi1GogSYrtpxNUnyBtE,4260
|
92
|
+
tracdap_runtime-0.6.0.dist-info/LICENSE,sha256=Q5Gh9SdMNa_F2ehQRShh7dJBz6qW_EQFtWzLukOWFWY,11365
|
93
|
+
tracdap_runtime-0.6.0.dist-info/METADATA,sha256=t-CJeSs44pIL-TFJJJs1E_E5vEYPfU3isewwlXRdgnM,4781
|
94
|
+
tracdap_runtime-0.6.0.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
95
|
+
tracdap_runtime-0.6.0.dist-info/top_level.txt,sha256=Uv0JfaE1Lp4JnCzqW8lqXNJAEcsAFpAUGOghJolVNdM,8
|
96
|
+
tracdap_runtime-0.6.0.dist-info/RECORD,,
|
tracdap/rt/config/gateway.py
DELETED
@@ -1,104 +0,0 @@
|
|
1
|
-
# Code generated by TRAC
|
2
|
-
|
3
|
-
from __future__ import annotations
|
4
|
-
import typing as _tp # noqa
|
5
|
-
import dataclasses as _dc # noqa
|
6
|
-
import enum as _enum # noqa
|
7
|
-
|
8
|
-
from .common import * # noqa
|
9
|
-
|
10
|
-
|
11
|
-
class GwProtocol(_enum.Enum):
|
12
|
-
|
13
|
-
PROTOCOL_NOT_SET = 0,
|
14
|
-
|
15
|
-
HTTP = 1,
|
16
|
-
|
17
|
-
GRPC = 2,
|
18
|
-
|
19
|
-
GRPC_WEB = 3,
|
20
|
-
|
21
|
-
REST = 4,
|
22
|
-
|
23
|
-
|
24
|
-
class GwRestMapping(_enum.Enum):
|
25
|
-
|
26
|
-
REST_MAPPING_NOT_SET = 0,
|
27
|
-
|
28
|
-
TRAC_META = 1,
|
29
|
-
|
30
|
-
TRAC_DATA = 2,
|
31
|
-
|
32
|
-
TRAC_ORCH = 3,
|
33
|
-
|
34
|
-
|
35
|
-
@_dc.dataclass
|
36
|
-
class GatewayConfig:
|
37
|
-
|
38
|
-
config: _tp.Dict[str, str] = _dc.field(default_factory=dict)
|
39
|
-
|
40
|
-
platformInfo: PlatformInfo = None
|
41
|
-
|
42
|
-
authentication: AuthenticationConfig = None
|
43
|
-
|
44
|
-
routes: _tp.List[GwRoute] = _dc.field(default_factory=list)
|
45
|
-
|
46
|
-
services: GwServiceMap = None
|
47
|
-
|
48
|
-
port: int = None
|
49
|
-
|
50
|
-
idleTimeout: int = None
|
51
|
-
|
52
|
-
|
53
|
-
@_dc.dataclass
|
54
|
-
class GwRoute:
|
55
|
-
|
56
|
-
routeName: str = None
|
57
|
-
|
58
|
-
routeType: GwProtocol = GwProtocol.PROTOCOL_NOT_SET
|
59
|
-
|
60
|
-
protocols: _tp.List[GwProtocol] = _dc.field(default_factory=list)
|
61
|
-
|
62
|
-
restMapping: GwRestMapping = GwRestMapping.REST_MAPPING_NOT_SET
|
63
|
-
|
64
|
-
match: GwMatch = None
|
65
|
-
|
66
|
-
target: GwTarget = None
|
67
|
-
|
68
|
-
|
69
|
-
@_dc.dataclass
|
70
|
-
class GwMatch:
|
71
|
-
|
72
|
-
host: str = None
|
73
|
-
|
74
|
-
path: str = None
|
75
|
-
|
76
|
-
|
77
|
-
@_dc.dataclass
|
78
|
-
class GwTarget:
|
79
|
-
|
80
|
-
scheme: str = None
|
81
|
-
|
82
|
-
host: str = None
|
83
|
-
|
84
|
-
port: int = None
|
85
|
-
|
86
|
-
path: str = None
|
87
|
-
|
88
|
-
|
89
|
-
@_dc.dataclass
|
90
|
-
class GwServiceMap:
|
91
|
-
|
92
|
-
meta: GwService = None
|
93
|
-
|
94
|
-
data: GwService = None
|
95
|
-
|
96
|
-
orch: GwService = None
|
97
|
-
|
98
|
-
|
99
|
-
@_dc.dataclass
|
100
|
-
class GwService:
|
101
|
-
|
102
|
-
protocols: _tp.List[GwProtocol] = _dc.field(default_factory=list)
|
103
|
-
|
104
|
-
target: GwTarget = None
|
tracdap/rt/config/gateway_pb2.py
DELETED
@@ -1,45 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/config/gateway.proto
|
4
|
-
"""Generated protocol buffer code."""
|
5
|
-
from google.protobuf.internal import builder as _builder
|
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
|
-
# @@protoc_insertion_point(imports)
|
10
|
-
|
11
|
-
_sym_db = _symbol_database.Default()
|
12
|
-
|
13
|
-
|
14
|
-
from tracdap.config import common_pb2 as tracdap_dot_config_dot_common__pb2
|
15
|
-
|
16
|
-
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ctracdap/config/gateway.proto\x12\x0etracdap.config\x1a\x1btracdap/config/common.proto\"\xe7\x02\n\rGatewayConfig\x12\x39\n\x06\x63onfig\x18\x01 \x03(\x0b\x32).tracdap.config.GatewayConfig.ConfigEntry\x12\x32\n\x0cplatformInfo\x18\x07 \x01(\x0b\x32\x1c.tracdap.config.PlatformInfo\x12<\n\x0e\x61uthentication\x18\x06 \x01(\x0b\x32$.tracdap.config.AuthenticationConfig\x12\'\n\x06routes\x18\x02 \x03(\x0b\x32\x17.tracdap.config.GwRoute\x12.\n\x08services\x18\x03 \x01(\x0b\x32\x1c.tracdap.config.GwServiceMap\x12\x0c\n\x04port\x18\x04 \x01(\r\x12\x13\n\x0bidleTimeout\x18\x05 \x01(\r\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x80\x02\n\x07GwRoute\x12\x11\n\trouteName\x18\x01 \x01(\t\x12-\n\trouteType\x18\x02 \x01(\x0e\x32\x1a.tracdap.config.GwProtocol\x12-\n\tprotocols\x18\x03 \x03(\x0e\x32\x1a.tracdap.config.GwProtocol\x12\x32\n\x0brestMapping\x18\x04 \x01(\x0e\x32\x1d.tracdap.config.GwRestMapping\x12&\n\x05match\x18\x05 \x01(\x0b\x32\x17.tracdap.config.GwMatch\x12(\n\x06target\x18\x06 \x01(\x0b\x32\x18.tracdap.config.GwTarget\"%\n\x07GwMatch\x12\x0c\n\x04host\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"D\n\x08GwTarget\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\"\x89\x01\n\x0cGwServiceMap\x12\'\n\x04meta\x18\x01 \x01(\x0b\x32\x19.tracdap.config.GwService\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.tracdap.config.GwService\x12\'\n\x04orch\x18\x03 \x01(\x0b\x32\x19.tracdap.config.GwService\"d\n\tGwService\x12-\n\tprotocols\x18\x01 \x03(\x0e\x32\x1a.tracdap.config.GwProtocol\x12(\n\x06target\x18\x02 \x01(\x0b\x32\x18.tracdap.config.GwTarget*N\n\nGwProtocol\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*V\n\rGwRestMapping\x12\x18\n\x14REST_MAPPING_NOT_SET\x10\x00\x12\r\n\tTRAC_META\x10\x01\x12\r\n\tTRAC_DATA\x10\x02\x12\r\n\tTRAC_ORCH\x10\x03\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
|
18
|
-
|
19
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
20
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.gateway_pb2', globals())
|
21
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
22
|
-
|
23
|
-
DESCRIPTOR._options = None
|
24
|
-
DESCRIPTOR._serialized_options = b'\n\030org.finos.tracdap.configP\001'
|
25
|
-
_GATEWAYCONFIG_CONFIGENTRY._options = None
|
26
|
-
_GATEWAYCONFIG_CONFIGENTRY._serialized_options = b'8\001'
|
27
|
-
_GWPROTOCOL._serialized_start=1049
|
28
|
-
_GWPROTOCOL._serialized_end=1127
|
29
|
-
_GWRESTMAPPING._serialized_start=1129
|
30
|
-
_GWRESTMAPPING._serialized_end=1215
|
31
|
-
_GATEWAYCONFIG._serialized_start=78
|
32
|
-
_GATEWAYCONFIG._serialized_end=437
|
33
|
-
_GATEWAYCONFIG_CONFIGENTRY._serialized_start=392
|
34
|
-
_GATEWAYCONFIG_CONFIGENTRY._serialized_end=437
|
35
|
-
_GWROUTE._serialized_start=440
|
36
|
-
_GWROUTE._serialized_end=696
|
37
|
-
_GWMATCH._serialized_start=698
|
38
|
-
_GWMATCH._serialized_end=735
|
39
|
-
_GWTARGET._serialized_start=737
|
40
|
-
_GWTARGET._serialized_end=805
|
41
|
-
_GWSERVICEMAP._serialized_start=808
|
42
|
-
_GWSERVICEMAP._serialized_end=945
|
43
|
-
_GWSERVICE._serialized_start=947
|
44
|
-
_GWSERVICE._serialized_end=1047
|
45
|
-
# @@protoc_insertion_point(module_scope)
|
File without changes
|
File without changes
|
File without changes
|