tracdap-runtime 0.6.2__py3-none-any.whl → 0.6.4__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/actors.py +87 -10
- tracdap/rt/_exec/context.py +207 -100
- tracdap/rt/_exec/dev_mode.py +52 -20
- tracdap/rt/_exec/engine.py +79 -14
- tracdap/rt/_exec/functions.py +14 -17
- tracdap/rt/_exec/runtime.py +83 -40
- tracdap/rt/_exec/server.py +306 -29
- tracdap/rt/_impl/config_parser.py +219 -49
- tracdap/rt/_impl/data.py +70 -5
- tracdap/rt/_impl/grpc/codec.py +60 -5
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py +19 -19
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi +11 -9
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py +25 -25
- tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py +18 -18
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py +28 -16
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi +37 -6
- tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py +8 -3
- tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi +13 -2
- tracdap/rt/_impl/guard_rails.py +21 -0
- tracdap/rt/_impl/models.py +25 -0
- tracdap/rt/_impl/static_api.py +43 -13
- tracdap/rt/_impl/type_system.py +17 -0
- tracdap/rt/_impl/validation.py +47 -4
- tracdap/rt/_plugins/config_local.py +49 -0
- tracdap/rt/_version.py +1 -1
- tracdap/rt/api/hook.py +6 -5
- tracdap/rt/api/model_api.py +50 -7
- tracdap/rt/api/static_api.py +81 -23
- tracdap/rt/config/__init__.py +4 -4
- tracdap/rt/config/common.py +25 -15
- tracdap/rt/config/job.py +2 -2
- tracdap/rt/config/platform.py +25 -35
- tracdap/rt/config/result.py +2 -2
- tracdap/rt/config/runtime.py +4 -2
- tracdap/rt/ext/config.py +34 -0
- tracdap/rt/ext/embed.py +1 -3
- tracdap/rt/ext/plugins.py +47 -6
- tracdap/rt/launch/cli.py +11 -4
- tracdap/rt/launch/launch.py +53 -12
- tracdap/rt/metadata/__init__.py +17 -17
- tracdap/rt/metadata/common.py +2 -2
- tracdap/rt/metadata/custom.py +3 -3
- tracdap/rt/metadata/data.py +12 -12
- tracdap/rt/metadata/file.py +6 -6
- tracdap/rt/metadata/flow.py +6 -6
- tracdap/rt/metadata/job.py +8 -8
- tracdap/rt/metadata/model.py +21 -11
- tracdap/rt/metadata/object.py +3 -0
- tracdap/rt/metadata/object_id.py +8 -8
- tracdap/rt/metadata/search.py +5 -5
- tracdap/rt/metadata/stoarge.py +6 -6
- tracdap/rt/metadata/tag.py +1 -1
- tracdap/rt/metadata/tag_update.py +1 -1
- tracdap/rt/metadata/type.py +4 -4
- {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.4.dist-info}/METADATA +4 -4
- tracdap_runtime-0.6.4.dist-info/RECORD +112 -0
- {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.4.dist-info}/WHEEL +1 -1
- tracdap/rt/_impl/grpc/tracdap/config/common_pb2.py +0 -55
- tracdap/rt/_impl/grpc/tracdap/config/common_pb2.pyi +0 -103
- tracdap/rt/_impl/grpc/tracdap/config/job_pb2.py +0 -42
- tracdap/rt/_impl/grpc/tracdap/config/job_pb2.pyi +0 -44
- tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.py +0 -71
- tracdap/rt/_impl/grpc/tracdap/config/platform_pb2.pyi +0 -197
- tracdap/rt/_impl/grpc/tracdap/config/result_pb2.py +0 -37
- tracdap/rt/_impl/grpc/tracdap/config/result_pb2.pyi +0 -35
- tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.py +0 -42
- tracdap/rt/_impl/grpc/tracdap/config/runtime_pb2.pyi +0 -46
- tracdap/rt/ext/_guard.py +0 -37
- tracdap_runtime-0.6.2.dist-info/RECORD +0 -121
- {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.4.dist-info}/LICENSE +0 -0
- {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.4.dist-info}/top_level.txt +0 -0
tracdap/rt/metadata/search.py
CHANGED
@@ -175,7 +175,7 @@ class SearchTerm:
|
|
175
175
|
Applies a search operator against an individual tag attribute.
|
176
176
|
"""
|
177
177
|
|
178
|
-
attrName: str =
|
178
|
+
attrName: str = ""
|
179
179
|
|
180
180
|
"""The name of the attribute to search for"""
|
181
181
|
|
@@ -187,7 +187,7 @@ class SearchTerm:
|
|
187
187
|
|
188
188
|
"""The search operator to apply"""
|
189
189
|
|
190
|
-
searchValue: Value =
|
190
|
+
searchValue: Value = _dc.field(default_factory=lambda: Value())
|
191
191
|
|
192
192
|
"""The search value to look for"""
|
193
193
|
|
@@ -244,7 +244,7 @@ class SearchParameters:
|
|
244
244
|
|
245
245
|
"""The type of object to search for"""
|
246
246
|
|
247
|
-
search: SearchExpression =
|
247
|
+
search: SearchExpression = _dc.field(default_factory=lambda: SearchExpression())
|
248
248
|
|
249
249
|
"""
|
250
250
|
A search expression based on tag attributes.
|
@@ -268,7 +268,7 @@ class SearchParameters:
|
|
268
268
|
current time.
|
269
269
|
"""
|
270
270
|
|
271
|
-
priorVersions: bool =
|
271
|
+
priorVersions: bool = False
|
272
272
|
|
273
273
|
"""
|
274
274
|
Include prior versions of objects in the search.
|
@@ -287,7 +287,7 @@ class SearchParameters:
|
|
287
287
|
latest tag is considered for each object.
|
288
288
|
"""
|
289
289
|
|
290
|
-
priorTags: bool =
|
290
|
+
priorTags: bool = False
|
291
291
|
|
292
292
|
"""
|
293
293
|
Include prior tags in the search.
|
tracdap/rt/metadata/stoarge.py
CHANGED
@@ -60,15 +60,15 @@ class StorageCopy:
|
|
60
60
|
:class:`StorageDefinition <StorageDefinition>`
|
61
61
|
"""
|
62
62
|
|
63
|
-
storageKey: str =
|
63
|
+
storageKey: str = ""
|
64
64
|
|
65
|
-
storagePath: str =
|
65
|
+
storagePath: str = ""
|
66
66
|
|
67
|
-
storageFormat: str =
|
67
|
+
storageFormat: str = ""
|
68
68
|
|
69
69
|
copyStatus: CopyStatus = CopyStatus.COPY_STATUS_NOT_SET
|
70
70
|
|
71
|
-
copyTimestamp: DatetimeValue =
|
71
|
+
copyTimestamp: DatetimeValue = _dc.field(default_factory=lambda: DatetimeValue())
|
72
72
|
|
73
73
|
storageOptions: _tp.Dict[str, Value] = _dc.field(default_factory=dict)
|
74
74
|
|
@@ -85,9 +85,9 @@ class StorageIncarnation:
|
|
85
85
|
|
86
86
|
copies: _tp.List[StorageCopy] = _dc.field(default_factory=list)
|
87
87
|
|
88
|
-
incarnationIndex: int =
|
88
|
+
incarnationIndex: int = 0
|
89
89
|
|
90
|
-
incarnationTimestamp: DatetimeValue =
|
90
|
+
incarnationTimestamp: DatetimeValue = _dc.field(default_factory=lambda: DatetimeValue())
|
91
91
|
|
92
92
|
incarnationStatus: IncarnationStatus = IncarnationStatus.INCARNATION_STATUS_NOT_SET
|
93
93
|
|
tracdap/rt/metadata/tag.py
CHANGED
tracdap/rt/metadata/type.py
CHANGED
@@ -127,7 +127,7 @@ class DecimalValue:
|
|
127
127
|
:class:`DECIMAL <BasicType.DECIMAL>`
|
128
128
|
"""
|
129
129
|
|
130
|
-
decimal: str =
|
130
|
+
decimal: str = ""
|
131
131
|
|
132
132
|
|
133
133
|
@_dc.dataclass
|
@@ -142,7 +142,7 @@ class DateValue:
|
|
142
142
|
:class:`DATE <BasicType.DATE>`
|
143
143
|
"""
|
144
144
|
|
145
|
-
isoDate: str =
|
145
|
+
isoDate: str = ""
|
146
146
|
|
147
147
|
|
148
148
|
@_dc.dataclass
|
@@ -157,7 +157,7 @@ class DatetimeValue:
|
|
157
157
|
:class:`DATETIME <BasicType.DATETIME>`
|
158
158
|
"""
|
159
159
|
|
160
|
-
isoDatetime: str =
|
160
|
+
isoDatetime: str = ""
|
161
161
|
|
162
162
|
|
163
163
|
@_dc.dataclass
|
@@ -187,7 +187,7 @@ class Value:
|
|
187
187
|
:class:`TypeDescriptor <TypeDescriptor>`
|
188
188
|
"""
|
189
189
|
|
190
|
-
type: TypeDescriptor =
|
190
|
+
type: TypeDescriptor = _dc.field(default_factory=lambda: TypeDescriptor())
|
191
191
|
|
192
192
|
"""
|
193
193
|
Type descriptor for the current value.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tracdap-runtime
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.4
|
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,9 +16,9 @@ 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==5.
|
20
|
-
Requires-Dist: pyarrow==16.
|
21
|
-
Requires-Dist: pyyaml==6.0.
|
19
|
+
Requires-Dist: protobuf==5.28.2
|
20
|
+
Requires-Dist: pyarrow==16.1.0
|
21
|
+
Requires-Dist: pyyaml==6.0.2
|
22
22
|
Requires-Dist: dulwich==0.22.1
|
23
23
|
Requires-Dist: requests==2.32.3
|
24
24
|
Requires-Dist: pandas<2.3.0,>=1.2.0
|
@@ -0,0 +1,112 @@
|
|
1
|
+
tracdap/rt/__init__.py,sha256=rz9ERpKMlnR4LFZNGLtdNE26B_Y2V168bdd8hRmasKk,643
|
2
|
+
tracdap/rt/_version.py,sha256=H6vRGF3YEHXAfyrJ_ntMEk3X5sqm3R6_C-FSQ242tDk,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=CPSiLsEIPRbYfjeFjPcDqyPv3GKv-2nOFbUGqPOwnSA,34957
|
6
|
+
tracdap/rt/_exec/context.py,sha256=JLEOSehpNcC3J3goeuFRlO4a8vmAdb1yhgsCwXaZkPI,17803
|
7
|
+
tracdap/rt/_exec/dev_mode.py,sha256=rQ6aVmgJIPj5nhX7fmijMa244puGA28KOKkd1ETIhU8,34233
|
8
|
+
tracdap/rt/_exec/engine.py,sha256=KQPCLYgIlbSrzsoMJxxvd9kwWi16yEp-Ms3fTVdzcAo,32130
|
9
|
+
tracdap/rt/_exec/functions.py,sha256=2JHX9CKEbsq_j3xUAppNUHc_gwZbLdJ1HJ_xsc7zMS0,24041
|
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=P9G0dqzl-9Rn-IZJppk1u9nib7OVG7UPEJaBxBQQl1Q,15942
|
13
|
+
tracdap/rt/_exec/server.py,sha256=Nq3r0Fvt5GjvdMUQs74vv8JelLR6F3F1xRQh5PCo1EY,12397
|
14
|
+
tracdap/rt/_impl/__init__.py,sha256=eBZMpgFx9uHJxMA-yMWHCQMvShTKxJRAizdz4vy5eWg,609
|
15
|
+
tracdap/rt/_impl/config_parser.py,sha256=ZIQpTGwx41nMh4RWt9KW1iheZ2zwjBeTrowysF2u3mM,22586
|
16
|
+
tracdap/rt/_impl/data.py,sha256=159Cd5cOSlai8xG-SLRR-yfjkQkLO19tXcyuGDUSYjc,35180
|
17
|
+
tracdap/rt/_impl/guard_rails.py,sha256=Pj_LafXK0uw6cwFUS5bL2hZfi4AzWTd6agQlaH0MHNY,11424
|
18
|
+
tracdap/rt/_impl/models.py,sha256=TZwR-Prnnvgclu8JMXyIb9K-H0M8FT-ye-SHf5WhfD8,10177
|
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=t_pnXHaLeYo8QHNA23ui2Yi2nTWwB4Dnpydezm9n_44,8849
|
23
|
+
tracdap/rt/_impl/storage.py,sha256=vvu1Qlk0-GHqzNj0M33L_jB9eKv0dh9Fr9MBBiaQ2uM,35075
|
24
|
+
tracdap/rt/_impl/type_system.py,sha256=SBircgzdEIG324le7THmUuAxrJlqDVDyqcQOQVeCUjQ,12710
|
25
|
+
tracdap/rt/_impl/util.py,sha256=HeswbIL4dQHjWnCJL3-WEqwsQaYo-xnEuGRoaRJ7kyU,11075
|
26
|
+
tracdap/rt/_impl/validation.py,sha256=Uk1qOMgBgFKasu7PsVuY0mzOaPx3NlvwTMF3VsRRlGU,18137
|
27
|
+
tracdap/rt/_impl/grpc/__init__.py,sha256=VFwsBdvvDZhB9OmzGnVPNkApXql5KjYoVSnIteKWTRI,608
|
28
|
+
tracdap/rt/_impl/grpc/codec.py,sha256=OTDOET1F0mCvj9-mXRTgxZ2S7RQ9yjGrSWC4tKCQFVg,3783
|
29
|
+
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py,sha256=eH1JFEG4KwIhFAxMJfzw8JmpnTSNiY4seT_Mls2J2sM,5127
|
30
|
+
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi,sha256=78VhnLgm_m6HSgQT0bg7j86O9g8GNMADkm3SotQ39lg,3227
|
31
|
+
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py,sha256=6DA9EkXMa8KBOG2IUY4TnCmX1wyRJuV40tA9fLgQKyA,8461
|
32
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py,sha256=oql1naNGBKxpPIQZViewQSzUmMpt9U8gB-qSJpxkBwo,1945
|
33
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi,sha256=R7fTC8HV0j8zB2E2KVtLWXSAeu5MVLrgeL-PnnOsUxg,1275
|
34
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.py,sha256=DfHhxxvKU_htkLjUdvsVfxl8Gj8z5GenAuhCSuMT6Ps,1421
|
35
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi,sha256=_GubsAG9rpuV_QhhXKTDOPeWIpkAkg5jlHkSZxaILak,702
|
36
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py,sha256=lpEdZORVyg_y9h-Tg0wMwmASmrJRCt1LtYMb1BbZJIk,5211
|
37
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi,sha256=6F7O59tKIXWMFmmCm8zMJQKPQ3hM-fJ8px25Z_ae_Nc,5856
|
38
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py,sha256=FwZ9CZrS6-n96sYjV_EQXzviRRnjAs1bDahOSfbJ_v0,1748
|
39
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi,sha256=nRBVl47NUBTOLUJ7HOeztUMJoh9sVbPtqpxKLcCMEEw,1085
|
40
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py,sha256=GyY4iaqp9wtZ29byMllPmk4o2nosUgdazdqf9KKUg-g,5799
|
41
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi,sha256=yCP4usBn7VWxFWdlB6NERiCd0R7BqqmH5k29WdKNk04,5880
|
42
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py,sha256=iuHQEwWXSlbr76XPiv3txYinpRqkllSfrSIjhXVRTCs,8305
|
43
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi,sha256=n1OEkSYBCPRLNWo1JtvwQwiOXC4xw5a6OWvloNvMlZ8,9411
|
44
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py,sha256=Of31c23jixxmSlsgh58NwSPSu01LQcfL8ublXFdnVdE,6731
|
45
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi,sha256=86-0-hECYmRL5wJEdqacWa3jJPiAIPjO-9RFxrPkezM,6517
|
46
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py,sha256=cdNa1Byx6jvZPeakr28VrsEkGIj6av1xvdOM1N8NtuE,2933
|
47
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi,sha256=vWMjD_CG4ozUBSVsl44kjux-Qr-L_7cLgvQRpuUM7x0,3238
|
48
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py,sha256=G5MkYnJ7Nx_US_bjJw4KFtijbHcOHbgb_Bq1VN7hSd0,4378
|
49
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi,sha256=BSTvD36Vvk1WrbplWwv5ZLGWIX-zHug5moAWYGO5HZc,3010
|
50
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py,sha256=YsUl-xK3jOQ6mOMCPe8G3-BWOFFz-MpUOXDWMV90DrQ,3654
|
51
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi,sha256=PU-OYKRufI3v5Zx8RI4RvEZq3KPh91AOb8sDNwxyySY,3762
|
52
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py,sha256=Zyi6y4vOSN8-VI00cq0gC2xv7YQcFrpMEC2phQxk32k,4652
|
53
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.pyi,sha256=ImU8YT62pfiAMDYwTtX5E6nyI_n1PuhUWabFJlRFvnE,4746
|
54
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.py,sha256=bQ6gA21bizykXQZPzC8AhaN5IgUYddzVEp7KSzz6KNM,2441
|
55
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.pyi,sha256=6gP3-Rdiq84ng5d6DtVNEWZj5syt1xyD33jRWg3YcgU,1454
|
56
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.py,sha256=HwJtcqjYwbYZw5LpZIaMux1qusVfEitl0wX-J8NMprI,2090
|
57
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.pyi,sha256=Q3687BMYoH8OzJF2tYu6nEOR8Yz3UkU8f2cjxQ3lFv8,1470
|
58
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py,sha256=Vbr4xCD2r4wDEnZMV1ZnEgWvYhZph6EAwL4eZZrO4IE,4206
|
59
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi,sha256=h-5HTqHMxFhTvfzZH7q-qWt7GeUhYnsQ8EqN9VoH_Ys,4356
|
60
|
+
tracdap/rt/_plugins/__init__.py,sha256=NT9Aq8FDZwJgAG6u6K2E0B6ByAo3x0i48wFNfRkSLZc,609
|
61
|
+
tracdap/rt/_plugins/_helpers.py,sha256=_PhYVVNFZaktERkyrKSvMCzMJn9EXSun0MXmWInq_ew,5840
|
62
|
+
tracdap/rt/_plugins/config_local.py,sha256=lDA_idZ_C6fkcxECyfzN08LsYgTlmXVIOZGZGboGucc,1757
|
63
|
+
tracdap/rt/_plugins/format_arrow.py,sha256=C4mcRRD-bIZhytxEn4meM1gwIaq1cSl_YgmUGUwzuPY,2210
|
64
|
+
tracdap/rt/_plugins/format_csv.py,sha256=e9yr5ZSseuns-YHa-dKPMOO0EvFM4Kx3CJbvHQQika4,16823
|
65
|
+
tracdap/rt/_plugins/format_parquet.py,sha256=clOkTGvqEPgnF7eRaxceyDDiWgFbSHZcYQWGOr2130c,2159
|
66
|
+
tracdap/rt/_plugins/repo_git.py,sha256=68nE9NBw5M4wId9tgTI8K9Pv80V8BDAG7oJDPf5_C9I,10276
|
67
|
+
tracdap/rt/_plugins/repo_local.py,sha256=oW35YZIjOI4uRTGWI44Vnr9mzelQL-HuLvLnmHZHzTU,2726
|
68
|
+
tracdap/rt/_plugins/repo_pypi.py,sha256=DGNgoUGM7fbAYtxqW-Liu2d2Lpx0OHAOnMnT-t0hEbA,13345
|
69
|
+
tracdap/rt/_plugins/storage_aws.py,sha256=1XyWJcHmRQqr3LpS6yGvR6-yaz4g7_3zFc_KUJPWmz8,12973
|
70
|
+
tracdap/rt/_plugins/storage_azure.py,sha256=Q7c063SXlbbsyZHWPu4ma8BDwV-sE0ipOyb0Roi9ad0,5813
|
71
|
+
tracdap/rt/_plugins/storage_gcp.py,sha256=ENMrgTzqX0QjSDnMfeGyFK6YUwaFaJgqF7PQzEqviKk,6464
|
72
|
+
tracdap/rt/_plugins/storage_local.py,sha256=ep0EvFzhA8ZKStxwSvtbOPIJBt3HjtYKkmFlnUU_AqU,15555
|
73
|
+
tracdap/rt/api/__init__.py,sha256=rOiUwK6sav9QTXohpZAFXJ9MgsL0KBfUyKA7dYspfGQ,1124
|
74
|
+
tracdap/rt/api/hook.py,sha256=FDrfBpUuvY0xHplu4nAi2IegVXuDd5EelKvkT4EAVm4,4365
|
75
|
+
tracdap/rt/api/model_api.py,sha256=2Phmgd_5xqbL7FxNWSvlSo1T5GgzCWvfLNVJ5Qxr2jI,19221
|
76
|
+
tracdap/rt/api/static_api.py,sha256=dGvw9HCXmw568hW-WOylzFFkMBZ0Jg_H7HF_ar-e2sg,24738
|
77
|
+
tracdap/rt/config/__init__.py,sha256=jVp_duXrHMjjC5s-MfzDviabHd0XXn6RzmCN-hRIh1Y,885
|
78
|
+
tracdap/rt/config/common.py,sha256=hdFTMqf6atqiUBYIGjz3tXHJQURNo41E0jirKeSsj7E,1294
|
79
|
+
tracdap/rt/config/job.py,sha256=H6U0FOtCNYbsyCDh12aR4Te7m8HRGKNT7GiRGtFGaRk,681
|
80
|
+
tracdap/rt/config/platform.py,sha256=813H2EnuXCxClKjgxDiL7nkuBFJ-ehYv0-ATQBd7uu4,3214
|
81
|
+
tracdap/rt/config/result.py,sha256=abWmt3GUpQgTSoybfv0k2RJ4JDo8MzaPFvbQO9OzKF4,637
|
82
|
+
tracdap/rt/config/runtime.py,sha256=yhwb0ICc2_nliQd5Fh0Z1gqSs05ngExbJorzYtXB3hA,730
|
83
|
+
tracdap/rt/ext/__init__.py,sha256=0yYnHpdaHioyof9IyG0R2Z6us1PsaRjOfDX0hSLc_g8,608
|
84
|
+
tracdap/rt/ext/config.py,sha256=s9SgQw1NedPC7JQMBzjXmVi_Q6VigKa6Cy3kgLzq4ec,1037
|
85
|
+
tracdap/rt/ext/embed.py,sha256=13W9oP6ASWnzD0U1n9RFvwCXCErQxhIs_N5zjU1CpGo,2105
|
86
|
+
tracdap/rt/ext/plugins.py,sha256=cDULRrtPKB-kdOslBSSwcrlA3eCCjVRlaUwlvB7xSKQ,4380
|
87
|
+
tracdap/rt/ext/repos.py,sha256=hnoGadBthdQK_8IQV5lvfxiiTBC7by7YbcD74qBC5Dw,3110
|
88
|
+
tracdap/rt/ext/storage.py,sha256=mOZKtxFTiPnfOEvUu7RMi3s-Z6PHUX5g4Dq7N6809Dc,4793
|
89
|
+
tracdap/rt/launch/__init__.py,sha256=Zz_4f_ODsmweCxRmG2Dq1Slpb927jSugYclfF_Wgfws,673
|
90
|
+
tracdap/rt/launch/__main__.py,sha256=9UVYYSsqvvMVOqjjBBeLNdzV_6IeIa_97KWOMXIpXY4,654
|
91
|
+
tracdap/rt/launch/cli.py,sha256=pQCmFQj9h6YKn3R7DKxh5nvIRi7pfiUfPgVB49F8ulY,2451
|
92
|
+
tracdap/rt/launch/launch.py,sha256=nMOjLRnY8m9BMLi_YegIr6T2jKcQcRXeyPdxvDPg4ds,6602
|
93
|
+
tracdap/rt/metadata/__init__.py,sha256=UsipN-xle6_HGBPR9gGuFJ36w8NPi0pNabMxu3iShE0,1779
|
94
|
+
tracdap/rt/metadata/common.py,sha256=1rA7z2jaVxvmDKxLC5ZZv5CjpVA1iDo84KhVnyntCV8,1435
|
95
|
+
tracdap/rt/metadata/custom.py,sha256=AJmTWg4-Q5969l1UxsMrKf75SUqY2MvJkBijmMIkjcc,381
|
96
|
+
tracdap/rt/metadata/data.py,sha256=hD6qO1oOG3ubtdEqqzo86hfnKEi59FPe90mBxAYztjQ,3507
|
97
|
+
tracdap/rt/metadata/file.py,sha256=cupU2fY9P81JxE8t-uuxBFlidKEAQtwAS96WUEGLahM,481
|
98
|
+
tracdap/rt/metadata/flow.py,sha256=jnT08Nj3_-Qc5b9BQlcY9nNu82_X6JTpkDPm73qlsl0,3487
|
99
|
+
tracdap/rt/metadata/job.py,sha256=47XIwZLcgsjOdqf0eBekbFTR10ZLEoH7-Iq4n13AvmI,3359
|
100
|
+
tracdap/rt/metadata/model.py,sha256=w6oVvpGcSE6EJLO74lQIF8ECJhEZOzKQBn04yofWTag,3073
|
101
|
+
tracdap/rt/metadata/object.py,sha256=DgRX5AoEu-Ig7BD-Yxzqyx4DTRBgY6z9kdHpI0NWDNc,2810
|
102
|
+
tracdap/rt/metadata/object_id.py,sha256=-3L22nfq243EJ9wuDR3t1zF1A-mjgdoz0-9rh189NdU,4379
|
103
|
+
tracdap/rt/metadata/search.py,sha256=u-fo3uDH1tsUAWs3cN9AspBofFGloyflgOauGt6EkLI,9938
|
104
|
+
tracdap/rt/metadata/stoarge.py,sha256=Z7AF0M8F4MxyG6EP9rIgGBEPsV9R3f9oBvY506BJbfE,3153
|
105
|
+
tracdap/rt/metadata/tag.py,sha256=wvfEBWbjpInZt0STuxDkpd_SLUyxQDDLHfPCz9aeAOE,5121
|
106
|
+
tracdap/rt/metadata/tag_update.py,sha256=jXVJ0zmQT7JyrLtkvrhlId1ayHtpTN48xfM_AK0HdXk,3744
|
107
|
+
tracdap/rt/metadata/type.py,sha256=_0BwsZSbis-mIq3uZE1RXtjvoV0uEm68jj1FGy3qZKs,9445
|
108
|
+
tracdap_runtime-0.6.4.dist-info/LICENSE,sha256=Q5Gh9SdMNa_F2ehQRShh7dJBz6qW_EQFtWzLukOWFWY,11365
|
109
|
+
tracdap_runtime-0.6.4.dist-info/METADATA,sha256=W-7kk2vxRspbeyjQzk9tKVlTJPx5LyODmyN38X5GgtA,4873
|
110
|
+
tracdap_runtime-0.6.4.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
111
|
+
tracdap_runtime-0.6.4.dist-info/top_level.txt,sha256=Uv0JfaE1Lp4JnCzqW8lqXNJAEcsAFpAUGOghJolVNdM,8
|
112
|
+
tracdap_runtime-0.6.4.dist-info/RECORD,,
|
@@ -1,55 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/rt/_impl/grpc/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'\n1tracdap/rt/_impl/grpc/tracdap/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.rt._impl.grpc.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=69
|
36
|
-
_globals['__CONFIGFILE']._serialized_end=186
|
37
|
-
_globals['__CONFIGFILE_CONFIGENTRY']._serialized_start=141
|
38
|
-
_globals['__CONFIGFILE_CONFIGENTRY']._serialized_end=186
|
39
|
-
_globals['_PLUGINCONFIG']._serialized_start=189
|
40
|
-
_globals['_PLUGINCONFIG']._serialized_end=446
|
41
|
-
_globals['_PLUGINCONFIG_PROPERTIESENTRY']._serialized_start=349
|
42
|
-
_globals['_PLUGINCONFIG_PROPERTIESENTRY']._serialized_end=398
|
43
|
-
_globals['_PLUGINCONFIG_SECRETSENTRY']._serialized_start=400
|
44
|
-
_globals['_PLUGINCONFIG_SECRETSENTRY']._serialized_end=446
|
45
|
-
_globals['_PLATFORMINFO']._serialized_start=449
|
46
|
-
_globals['_PLATFORMINFO']._serialized_end=633
|
47
|
-
_globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._serialized_start=580
|
48
|
-
_globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._serialized_end=633
|
49
|
-
_globals['_AUTHENTICATIONCONFIG']._serialized_start=636
|
50
|
-
_globals['_AUTHENTICATIONCONFIG']._serialized_end=950
|
51
|
-
_globals['_STORAGECONFIG']._serialized_start=953
|
52
|
-
_globals['_STORAGECONFIG']._serialized_end=1153
|
53
|
-
_globals['_STORAGECONFIG_BUCKETSENTRY']._serialized_start=1077
|
54
|
-
_globals['_STORAGECONFIG_BUCKETSENTRY']._serialized_end=1153
|
55
|
-
# @@protoc_insertion_point(module_scope)
|
@@ -1,103 +0,0 @@
|
|
1
|
-
from google.protobuf.internal import containers as _containers
|
2
|
-
from google.protobuf import descriptor as _descriptor
|
3
|
-
from google.protobuf import message as _message
|
4
|
-
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
5
|
-
|
6
|
-
DESCRIPTOR: _descriptor.FileDescriptor
|
7
|
-
|
8
|
-
class _ConfigFile(_message.Message):
|
9
|
-
__slots__ = ("config",)
|
10
|
-
class ConfigEntry(_message.Message):
|
11
|
-
__slots__ = ("key", "value")
|
12
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
13
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
14
|
-
key: str
|
15
|
-
value: str
|
16
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
17
|
-
CONFIG_FIELD_NUMBER: _ClassVar[int]
|
18
|
-
config: _containers.ScalarMap[str, str]
|
19
|
-
def __init__(self, config: _Optional[_Mapping[str, str]] = ...) -> None: ...
|
20
|
-
|
21
|
-
class PluginConfig(_message.Message):
|
22
|
-
__slots__ = ("protocol", "properties", "secrets")
|
23
|
-
class PropertiesEntry(_message.Message):
|
24
|
-
__slots__ = ("key", "value")
|
25
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
26
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
27
|
-
key: str
|
28
|
-
value: str
|
29
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
30
|
-
class SecretsEntry(_message.Message):
|
31
|
-
__slots__ = ("key", "value")
|
32
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
33
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
34
|
-
key: str
|
35
|
-
value: str
|
36
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
37
|
-
PROTOCOL_FIELD_NUMBER: _ClassVar[int]
|
38
|
-
PROPERTIES_FIELD_NUMBER: _ClassVar[int]
|
39
|
-
SECRETS_FIELD_NUMBER: _ClassVar[int]
|
40
|
-
protocol: str
|
41
|
-
properties: _containers.ScalarMap[str, str]
|
42
|
-
secrets: _containers.ScalarMap[str, str]
|
43
|
-
def __init__(self, protocol: _Optional[str] = ..., properties: _Optional[_Mapping[str, str]] = ..., secrets: _Optional[_Mapping[str, str]] = ...) -> None: ...
|
44
|
-
|
45
|
-
class PlatformInfo(_message.Message):
|
46
|
-
__slots__ = ("environment", "production", "deploymentInfo")
|
47
|
-
class DeploymentInfoEntry(_message.Message):
|
48
|
-
__slots__ = ("key", "value")
|
49
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
50
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
51
|
-
key: str
|
52
|
-
value: str
|
53
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[str] = ...) -> None: ...
|
54
|
-
ENVIRONMENT_FIELD_NUMBER: _ClassVar[int]
|
55
|
-
PRODUCTION_FIELD_NUMBER: _ClassVar[int]
|
56
|
-
DEPLOYMENTINFO_FIELD_NUMBER: _ClassVar[int]
|
57
|
-
environment: str
|
58
|
-
production: bool
|
59
|
-
deploymentInfo: _containers.ScalarMap[str, str]
|
60
|
-
def __init__(self, environment: _Optional[str] = ..., production: bool = ..., deploymentInfo: _Optional[_Mapping[str, str]] = ...) -> None: ...
|
61
|
-
|
62
|
-
class AuthenticationConfig(_message.Message):
|
63
|
-
__slots__ = ("jwtIssuer", "jwtExpiry", "jwtLimit", "jwtRefresh", "provider", "disableAuth", "disableSigning", "systemUserId", "systemUserName", "systemTicketDuration", "systemTicketRefresh")
|
64
|
-
JWTISSUER_FIELD_NUMBER: _ClassVar[int]
|
65
|
-
JWTEXPIRY_FIELD_NUMBER: _ClassVar[int]
|
66
|
-
JWTLIMIT_FIELD_NUMBER: _ClassVar[int]
|
67
|
-
JWTREFRESH_FIELD_NUMBER: _ClassVar[int]
|
68
|
-
PROVIDER_FIELD_NUMBER: _ClassVar[int]
|
69
|
-
DISABLEAUTH_FIELD_NUMBER: _ClassVar[int]
|
70
|
-
DISABLESIGNING_FIELD_NUMBER: _ClassVar[int]
|
71
|
-
SYSTEMUSERID_FIELD_NUMBER: _ClassVar[int]
|
72
|
-
SYSTEMUSERNAME_FIELD_NUMBER: _ClassVar[int]
|
73
|
-
SYSTEMTICKETDURATION_FIELD_NUMBER: _ClassVar[int]
|
74
|
-
SYSTEMTICKETREFRESH_FIELD_NUMBER: _ClassVar[int]
|
75
|
-
jwtIssuer: str
|
76
|
-
jwtExpiry: int
|
77
|
-
jwtLimit: int
|
78
|
-
jwtRefresh: int
|
79
|
-
provider: PluginConfig
|
80
|
-
disableAuth: bool
|
81
|
-
disableSigning: bool
|
82
|
-
systemUserId: str
|
83
|
-
systemUserName: str
|
84
|
-
systemTicketDuration: int
|
85
|
-
systemTicketRefresh: int
|
86
|
-
def __init__(self, jwtIssuer: _Optional[str] = ..., jwtExpiry: _Optional[int] = ..., jwtLimit: _Optional[int] = ..., jwtRefresh: _Optional[int] = ..., provider: _Optional[_Union[PluginConfig, _Mapping]] = ..., disableAuth: bool = ..., disableSigning: bool = ..., systemUserId: _Optional[str] = ..., systemUserName: _Optional[str] = ..., systemTicketDuration: _Optional[int] = ..., systemTicketRefresh: _Optional[int] = ...) -> None: ...
|
87
|
-
|
88
|
-
class StorageConfig(_message.Message):
|
89
|
-
__slots__ = ("buckets", "defaultBucket", "defaultFormat")
|
90
|
-
class BucketsEntry(_message.Message):
|
91
|
-
__slots__ = ("key", "value")
|
92
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
93
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
94
|
-
key: str
|
95
|
-
value: PluginConfig
|
96
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[PluginConfig, _Mapping]] = ...) -> None: ...
|
97
|
-
BUCKETS_FIELD_NUMBER: _ClassVar[int]
|
98
|
-
DEFAULTBUCKET_FIELD_NUMBER: _ClassVar[int]
|
99
|
-
DEFAULTFORMAT_FIELD_NUMBER: _ClassVar[int]
|
100
|
-
buckets: _containers.MessageMap[str, PluginConfig]
|
101
|
-
defaultBucket: str
|
102
|
-
defaultFormat: str
|
103
|
-
def __init__(self, buckets: _Optional[_Mapping[str, PluginConfig]] = ..., defaultBucket: _Optional[str] = ..., defaultFormat: _Optional[str] = ...) -> None: ...
|
@@ -1,42 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/rt/_impl/grpc/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.rt._impl.grpc.tracdap.metadata import object_id_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_metadata_dot_object__id__pb2
|
16
|
-
from tracdap.rt._impl.grpc.tracdap.metadata import object_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_metadata_dot_object__pb2
|
17
|
-
from tracdap.rt._impl.grpc.tracdap.metadata import job_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_metadata_dot_job__pb2
|
18
|
-
|
19
|
-
|
20
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n.tracdap/rt/_impl/grpc/tracdap/config/job.proto\x12\x0etracdap.config\x1a\x36tracdap/rt/_impl/grpc/tracdap/metadata/object_id.proto\x1a\x33tracdap/rt/_impl/grpc/tracdap/metadata/object.proto\x1a\x30tracdap/rt/_impl/grpc/tracdap/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.rt._impl.grpc.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=226
|
35
|
-
_globals['_JOBCONFIG']._serialized_end=784
|
36
|
-
_globals['_JOBCONFIG_RESOURCESENTRY']._serialized_start=532
|
37
|
-
_globals['_JOBCONFIG_RESOURCESENTRY']._serialized_end=616
|
38
|
-
_globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._serialized_start=618
|
39
|
-
_globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._serialized_end=701
|
40
|
-
_globals['_JOBCONFIG_RESULTMAPPINGENTRY']._serialized_start=703
|
41
|
-
_globals['_JOBCONFIG_RESULTMAPPINGENTRY']._serialized_end=784
|
42
|
-
# @@protoc_insertion_point(module_scope)
|
@@ -1,44 +0,0 @@
|
|
1
|
-
from tracdap.rt._impl.grpc.tracdap.metadata import object_id_pb2 as _object_id_pb2
|
2
|
-
from tracdap.rt._impl.grpc.tracdap.metadata import object_pb2 as _object_pb2
|
3
|
-
from tracdap.rt._impl.grpc.tracdap.metadata import job_pb2 as _job_pb2
|
4
|
-
from google.protobuf.internal import containers as _containers
|
5
|
-
from google.protobuf import descriptor as _descriptor
|
6
|
-
from google.protobuf import message as _message
|
7
|
-
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
8
|
-
|
9
|
-
DESCRIPTOR: _descriptor.FileDescriptor
|
10
|
-
|
11
|
-
class JobConfig(_message.Message):
|
12
|
-
__slots__ = ("jobId", "job", "resources", "resourceMapping", "resultMapping")
|
13
|
-
class ResourcesEntry(_message.Message):
|
14
|
-
__slots__ = ("key", "value")
|
15
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
16
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
17
|
-
key: str
|
18
|
-
value: _object_pb2.ObjectDefinition
|
19
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[_object_pb2.ObjectDefinition, _Mapping]] = ...) -> None: ...
|
20
|
-
class ResourceMappingEntry(_message.Message):
|
21
|
-
__slots__ = ("key", "value")
|
22
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
23
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
24
|
-
key: str
|
25
|
-
value: _object_id_pb2.TagHeader
|
26
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[_object_id_pb2.TagHeader, _Mapping]] = ...) -> None: ...
|
27
|
-
class ResultMappingEntry(_message.Message):
|
28
|
-
__slots__ = ("key", "value")
|
29
|
-
KEY_FIELD_NUMBER: _ClassVar[int]
|
30
|
-
VALUE_FIELD_NUMBER: _ClassVar[int]
|
31
|
-
key: str
|
32
|
-
value: _object_id_pb2.TagHeader
|
33
|
-
def __init__(self, key: _Optional[str] = ..., value: _Optional[_Union[_object_id_pb2.TagHeader, _Mapping]] = ...) -> None: ...
|
34
|
-
JOBID_FIELD_NUMBER: _ClassVar[int]
|
35
|
-
JOB_FIELD_NUMBER: _ClassVar[int]
|
36
|
-
RESOURCES_FIELD_NUMBER: _ClassVar[int]
|
37
|
-
RESOURCEMAPPING_FIELD_NUMBER: _ClassVar[int]
|
38
|
-
RESULTMAPPING_FIELD_NUMBER: _ClassVar[int]
|
39
|
-
jobId: _object_id_pb2.TagHeader
|
40
|
-
job: _job_pb2.JobDefinition
|
41
|
-
resources: _containers.MessageMap[str, _object_pb2.ObjectDefinition]
|
42
|
-
resourceMapping: _containers.MessageMap[str, _object_id_pb2.TagHeader]
|
43
|
-
resultMapping: _containers.MessageMap[str, _object_id_pb2.TagHeader]
|
44
|
-
def __init__(self, jobId: _Optional[_Union[_object_id_pb2.TagHeader, _Mapping]] = ..., job: _Optional[_Union[_job_pb2.JobDefinition, _Mapping]] = ..., resources: _Optional[_Mapping[str, _object_pb2.ObjectDefinition]] = ..., resourceMapping: _Optional[_Mapping[str, _object_id_pb2.TagHeader]] = ..., resultMapping: _Optional[_Mapping[str, _object_id_pb2.TagHeader]] = ...) -> None: ...
|
@@ -1,71 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/rt/_impl/grpc/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.rt._impl.grpc.tracdap.metadata import common_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_metadata_dot_common__pb2
|
16
|
-
from tracdap.rt._impl.grpc.tracdap.config import common_pb2 as tracdap_dot_rt_dot___impl_dot_grpc_dot_tracdap_dot_config_dot_common__pb2
|
17
|
-
|
18
|
-
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n3tracdap/rt/_impl/grpc/tracdap/config/platform.proto\x12\x0etracdap.config\x1a\x33tracdap/rt/_impl/grpc/tracdap/metadata/common.proto\x1a\x31tracdap/rt/_impl/grpc/tracdap/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.rt._impl.grpc.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=2427
|
36
|
-
_globals['_ROUTINGPROTOCOL']._serialized_end=2510
|
37
|
-
_globals['_DEPLOYMENTLAYOUT']._serialized_start=2512
|
38
|
-
_globals['_DEPLOYMENTLAYOUT']._serialized_end=2587
|
39
|
-
_globals['_PLATFORMCONFIG']._serialized_start=176
|
40
|
-
_globals['_PLATFORMCONFIG']._serialized_end=1236
|
41
|
-
_globals['_PLATFORMCONFIG_CONFIGENTRY']._serialized_start=924
|
42
|
-
_globals['_PLATFORMCONFIG_CONFIGENTRY']._serialized_end=969
|
43
|
-
_globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._serialized_start=971
|
44
|
-
_globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._serialized_end=1052
|
45
|
-
_globals['_PLATFORMCONFIG_TENANTSENTRY']._serialized_start=1054
|
46
|
-
_globals['_PLATFORMCONFIG_TENANTSENTRY']._serialized_end=1130
|
47
|
-
_globals['_PLATFORMCONFIG_SERVICESENTRY']._serialized_start=1132
|
48
|
-
_globals['_PLATFORMCONFIG_SERVICESENTRY']._serialized_end=1210
|
49
|
-
_globals['_METADATACONFIG']._serialized_start=1238
|
50
|
-
_globals['_METADATACONFIG']._serialized_end=1352
|
51
|
-
_globals['_TENANTCONFIG']._serialized_start=1354
|
52
|
-
_globals['_TENANTCONFIG']._serialized_end=1460
|
53
|
-
_globals['_WEBSERVERCONFIG']._serialized_start=1463
|
54
|
-
_globals['_WEBSERVERCONFIG']._serialized_end=1662
|
55
|
-
_globals['_WEBSERVERREWRITERULE']._serialized_start=1664
|
56
|
-
_globals['_WEBSERVERREWRITERULE']._serialized_end=1718
|
57
|
-
_globals['_WEBSERVERREDIRECT']._serialized_start=1720
|
58
|
-
_globals['_WEBSERVERREDIRECT']._serialized_end=1787
|
59
|
-
_globals['_GATEWAYCONFIG']._serialized_start=1790
|
60
|
-
_globals['_GATEWAYCONFIG']._serialized_end=1925
|
61
|
-
_globals['_ROUTECONFIG']._serialized_start=1928
|
62
|
-
_globals['_ROUTECONFIG']._serialized_end=2156
|
63
|
-
_globals['_ROUTINGMATCH']._serialized_start=2158
|
64
|
-
_globals['_ROUTINGMATCH']._serialized_end=2200
|
65
|
-
_globals['_ROUTINGTARGET']._serialized_start=2202
|
66
|
-
_globals['_ROUTINGTARGET']._serialized_end=2275
|
67
|
-
_globals['_SERVICECONFIG']._serialized_start=2277
|
68
|
-
_globals['_SERVICECONFIG']._serialized_end=2355
|
69
|
-
_globals['_DEPLOYMENTCONFIG']._serialized_start=2357
|
70
|
-
_globals['_DEPLOYMENTCONFIG']._serialized_end=2425
|
71
|
-
# @@protoc_insertion_point(module_scope)
|