tracdap-runtime 0.6.2__py3-none-any.whl → 0.6.3__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/dev_mode.py +9 -17
- tracdap/rt/_exec/engine.py +79 -14
- 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/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/model_pb2.py +28 -16
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi +33 -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 +23 -9
- tracdap/rt/_impl/type_system.py +17 -0
- tracdap/rt/_impl/validation.py +10 -0
- tracdap/rt/_plugins/config_local.py +49 -0
- tracdap/rt/_version.py +1 -1
- tracdap/rt/api/hook.py +6 -3
- tracdap/rt/api/static_api.py +71 -21
- tracdap/rt/config/__init__.py +4 -4
- tracdap/rt/config/common.py +10 -0
- tracdap/rt/config/platform.py +0 -10
- tracdap/rt/config/runtime.py +2 -0
- 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 +4 -0
- tracdap/rt/launch/launch.py +34 -9
- tracdap/rt/metadata/__init__.py +17 -17
- tracdap/rt/metadata/model.py +6 -0
- tracdap/rt/metadata/object.py +3 -0
- {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.3.dist-info}/METADATA +4 -4
- {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.3.dist-info}/RECORD +40 -49
- {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.3.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 → tracdap_runtime-0.6.3.dist-info}/LICENSE +0 -0
- {tracdap_runtime-0.6.2.dist-info → tracdap_runtime-0.6.3.dist-info}/top_level.txt +0 -0
tracdap/rt/launch/cli.py
CHANGED
@@ -51,4 +51,8 @@ def _cli_args():
|
|
51
51
|
"--scratch-dir-persist", dest="scratch_dir_persist", default=False, action="store_true",
|
52
52
|
help="Do not clean up the scratch location on exit")
|
53
53
|
|
54
|
+
parser.add_argument(
|
55
|
+
"--plugin-package", dest="plugin_packages", type=str, action="append",
|
56
|
+
help="Do not clean up the scratch location on exit")
|
57
|
+
|
54
58
|
return parser.parse_args()
|
tracdap/rt/launch/launch.py
CHANGED
@@ -53,10 +53,16 @@ def _resolve_config_file(
|
|
53
53
|
return _pathlib.Path(config_path)
|
54
54
|
|
55
55
|
|
56
|
+
def _optional_arg(launch_args: _tp.Dict[str, _tp.Any], arg_name: str) -> _tp.Any:
|
57
|
+
|
58
|
+
return launch_args.get(arg_name, None)
|
59
|
+
|
60
|
+
|
56
61
|
def launch_model(
|
57
62
|
model_class: _api.TracModel.__class__,
|
58
63
|
job_config: _tp.Union[str, _pathlib.Path],
|
59
|
-
sys_config: _tp.Union[str, _pathlib.Path]
|
64
|
+
sys_config: _tp.Union[str, _pathlib.Path],
|
65
|
+
**launch_args):
|
60
66
|
|
61
67
|
"""
|
62
68
|
Launch an individual model using its Python class
|
@@ -77,6 +83,7 @@ def launch_model(
|
|
77
83
|
:param model_class: The model class that will be launched
|
78
84
|
:param job_config: Path to the job configuration file
|
79
85
|
:param sys_config: Path to the system configuration file
|
86
|
+
:param launch_args: Additional keyword args to control behavior of the TRAC runtime (not normally required)
|
80
87
|
"""
|
81
88
|
|
82
89
|
model_file = _inspect.getfile(model_class)
|
@@ -85,7 +92,10 @@ def launch_model(
|
|
85
92
|
_sys_config = _resolve_config_file(sys_config, model_dir)
|
86
93
|
_job_config = _resolve_config_file(job_config, model_dir)
|
87
94
|
|
88
|
-
|
95
|
+
plugin_package = _optional_arg(launch_args, 'plugin_package')
|
96
|
+
plugin_packages = [plugin_package] if plugin_package else None
|
97
|
+
|
98
|
+
runtime_instance = _runtime.TracRuntime(_sys_config, dev_mode=True, plugin_packages=plugin_packages)
|
89
99
|
runtime_instance.pre_start()
|
90
100
|
|
91
101
|
job = runtime_instance.load_job_config(_job_config, model_class=model_class)
|
@@ -98,7 +108,8 @@ def launch_model(
|
|
98
108
|
def launch_job(
|
99
109
|
job_config: _tp.Union[str, _pathlib.Path],
|
100
110
|
sys_config: _tp.Union[str, _pathlib.Path],
|
101
|
-
dev_mode: bool = False
|
111
|
+
dev_mode: bool = False,
|
112
|
+
**launch_args):
|
102
113
|
|
103
114
|
"""
|
104
115
|
Launch a TRAC job using external configuration files
|
@@ -106,12 +117,16 @@ def launch_job(
|
|
106
117
|
:param job_config: Path to the job configuration file
|
107
118
|
:param sys_config: Path to the system configuration file
|
108
119
|
:param dev_mode: Whether to launch in dev mode (applies dev mode translation to the job inputs)
|
120
|
+
:param launch_args: Additional keyword args to control behavior of the TRAC runtime (not normally required)
|
109
121
|
"""
|
110
122
|
|
111
123
|
_sys_config = _resolve_config_file(sys_config, None)
|
112
124
|
_job_config = _resolve_config_file(job_config, None)
|
113
125
|
|
114
|
-
|
126
|
+
plugin_package = _optional_arg(launch_args, 'plugin_package')
|
127
|
+
plugin_packages = [plugin_package] if plugin_package else None
|
128
|
+
|
129
|
+
runtime_instance = _runtime.TracRuntime(_sys_config, dev_mode=dev_mode, plugin_packages=plugin_packages)
|
115
130
|
runtime_instance.pre_start()
|
116
131
|
|
117
132
|
job = runtime_instance.load_job_config(_job_config)
|
@@ -130,7 +145,6 @@ def launch_cli():
|
|
130
145
|
launch_args = _cli_args()
|
131
146
|
|
132
147
|
_sys_config = _resolve_config_file(launch_args.sys_config, None)
|
133
|
-
_job_config = _resolve_config_file(launch_args.job_config, None)
|
134
148
|
|
135
149
|
runtime_instance = _runtime.TracRuntime(
|
136
150
|
_sys_config,
|
@@ -138,12 +152,23 @@ def launch_cli():
|
|
138
152
|
job_result_dir=launch_args.job_result_dir,
|
139
153
|
job_result_format=launch_args.job_result_format,
|
140
154
|
scratch_dir=launch_args.scratch_dir,
|
141
|
-
scratch_dir_persist=launch_args.scratch_dir_persist
|
155
|
+
scratch_dir_persist=launch_args.scratch_dir_persist,
|
156
|
+
plugin_packages=launch_args.plugin_packages)
|
142
157
|
|
143
158
|
runtime_instance.pre_start()
|
144
159
|
|
145
|
-
|
160
|
+
if launch_args.job_config is not None:
|
161
|
+
_job_config = _resolve_config_file(launch_args.job_config, None)
|
162
|
+
job = runtime_instance.load_job_config(_job_config)
|
163
|
+
else:
|
164
|
+
job = None
|
146
165
|
|
147
166
|
with runtime_instance as rt:
|
148
|
-
|
149
|
-
|
167
|
+
|
168
|
+
if job is not None:
|
169
|
+
rt.submit_job(job)
|
170
|
+
|
171
|
+
if rt.is_oneshot():
|
172
|
+
rt.wait_for_job(job.jobId)
|
173
|
+
else:
|
174
|
+
rt.run_until_done()
|
tracdap/rt/metadata/__init__.py
CHANGED
@@ -13,10 +13,6 @@ from .object_id import ObjectType
|
|
13
13
|
from .object_id import TagHeader
|
14
14
|
from .object_id import TagSelector
|
15
15
|
|
16
|
-
from .file import FileDefinition
|
17
|
-
|
18
|
-
from .custom import CustomDefinition
|
19
|
-
|
20
16
|
from .data import SchemaType
|
21
17
|
from .data import PartType
|
22
18
|
from .data import FieldSchema
|
@@ -25,6 +21,13 @@ from .data import SchemaDefinition
|
|
25
21
|
from .data import PartKey
|
26
22
|
from .data import DataDefinition
|
27
23
|
|
24
|
+
from .stoarge import CopyStatus
|
25
|
+
from .stoarge import IncarnationStatus
|
26
|
+
from .stoarge import StorageCopy
|
27
|
+
from .stoarge import StorageIncarnation
|
28
|
+
from .stoarge import StorageItem
|
29
|
+
from .stoarge import StorageDefinition
|
30
|
+
|
28
31
|
from .model import ModelParameter
|
29
32
|
from .model import ModelInputSchema
|
30
33
|
from .model import ModelOutputSchema
|
@@ -33,6 +36,15 @@ from .model import ModelDefinition
|
|
33
36
|
from .tag_update import TagOperation
|
34
37
|
from .tag_update import TagUpdate
|
35
38
|
|
39
|
+
from .job import JobType
|
40
|
+
from .job import JobStatusCode
|
41
|
+
from .job import JobDefinition
|
42
|
+
from .job import RunModelJob
|
43
|
+
from .job import RunFlowJob
|
44
|
+
from .job import ImportModelJob
|
45
|
+
|
46
|
+
from .file import FileDefinition
|
47
|
+
|
36
48
|
from .search import SearchOperator
|
37
49
|
from .search import LogicalOperator
|
38
50
|
from .search import SearchTerm
|
@@ -46,19 +58,7 @@ from .flow import FlowSocket
|
|
46
58
|
from .flow import FlowEdge
|
47
59
|
from .flow import FlowDefinition
|
48
60
|
|
49
|
-
from .
|
50
|
-
from .job import JobStatusCode
|
51
|
-
from .job import JobDefinition
|
52
|
-
from .job import RunModelJob
|
53
|
-
from .job import RunFlowJob
|
54
|
-
from .job import ImportModelJob
|
55
|
-
|
56
|
-
from .stoarge import CopyStatus
|
57
|
-
from .stoarge import IncarnationStatus
|
58
|
-
from .stoarge import StorageCopy
|
59
|
-
from .stoarge import StorageIncarnation
|
60
|
-
from .stoarge import StorageItem
|
61
|
-
from .stoarge import StorageDefinition
|
61
|
+
from .custom import CustomDefinition
|
62
62
|
|
63
63
|
from .object import ObjectDefinition
|
64
64
|
|
tracdap/rt/metadata/model.py
CHANGED
@@ -21,6 +21,8 @@ class ModelParameter:
|
|
21
21
|
|
22
22
|
defaultValue: _tp.Optional[Value] = None
|
23
23
|
|
24
|
+
paramProps: _tp.Dict[str, Value] = _dc.field(default_factory=dict)
|
25
|
+
|
24
26
|
|
25
27
|
@_dc.dataclass
|
26
28
|
class ModelInputSchema:
|
@@ -43,6 +45,8 @@ class ModelInputSchema:
|
|
43
45
|
|
44
46
|
optional: bool = None
|
45
47
|
|
48
|
+
inputProps: _tp.Dict[str, Value] = _dc.field(default_factory=dict)
|
49
|
+
|
46
50
|
|
47
51
|
@_dc.dataclass
|
48
52
|
class ModelOutputSchema:
|
@@ -66,6 +70,8 @@ class ModelOutputSchema:
|
|
66
70
|
|
67
71
|
optional: bool = None
|
68
72
|
|
73
|
+
outputProps: _tp.Dict[str, Value] = _dc.field(default_factory=dict)
|
74
|
+
|
69
75
|
|
70
76
|
@_dc.dataclass
|
71
77
|
class ModelDefinition:
|
tracdap/rt/metadata/object.py
CHANGED
@@ -6,6 +6,7 @@ import dataclasses as _dc # noqa
|
|
6
6
|
import enum as _enum # noqa
|
7
7
|
|
8
8
|
from .object_id import * # noqa
|
9
|
+
from .type import * # noqa
|
9
10
|
from .data import * # noqa
|
10
11
|
from .model import * # noqa
|
11
12
|
from .flow import * # noqa
|
@@ -69,3 +70,5 @@ class ObjectDefinition:
|
|
69
70
|
storage: _tp.Optional[StorageDefinition] = None
|
70
71
|
|
71
72
|
schema: _tp.Optional[SchemaDefinition] = None
|
73
|
+
|
74
|
+
objectProps: _tp.Dict[str, Value] = _dc.field(default_factory=dict)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: tracdap-runtime
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.3
|
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
|
@@ -1,44 +1,34 @@
|
|
1
1
|
tracdap/rt/__init__.py,sha256=rz9ERpKMlnR4LFZNGLtdNE26B_Y2V168bdd8hRmasKk,643
|
2
|
-
tracdap/rt/_version.py,sha256=
|
2
|
+
tracdap/rt/_version.py,sha256=Vs6p7WbmHpml7FTgGhDVVuFwna58xT0_XJjXD7Tu2N0,631
|
3
3
|
tracdap/rt/exceptions.py,sha256=AV2o9g5d5miMoRfsYW3DZ6or4SLVGwcZjfw4UsQ-HTY,7907
|
4
4
|
tracdap/rt/_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
tracdap/rt/_exec/actors.py,sha256=
|
5
|
+
tracdap/rt/_exec/actors.py,sha256=CPSiLsEIPRbYfjeFjPcDqyPv3GKv-2nOFbUGqPOwnSA,34957
|
6
6
|
tracdap/rt/_exec/context.py,sha256=H0W5ukFHiSDcRVY6emLVUAF3z71xTRHgaJZn502yhEo,12751
|
7
|
-
tracdap/rt/_exec/dev_mode.py,sha256=
|
8
|
-
tracdap/rt/_exec/engine.py,sha256=
|
7
|
+
tracdap/rt/_exec/dev_mode.py,sha256=wqYC_0AhBcQ0mkBR3qXM5r1UX1NLkq2MiTpQ60ok7eY,32320
|
8
|
+
tracdap/rt/_exec/engine.py,sha256=KQPCLYgIlbSrzsoMJxxvd9kwWi16yEp-Ms3fTVdzcAo,32130
|
9
9
|
tracdap/rt/_exec/functions.py,sha256=A21xIC0K1IsI6VBYtb-Oxv2pajegbl149bVmhgD6OuQ,24323
|
10
10
|
tracdap/rt/_exec/graph.py,sha256=wOzOLBD-dKwqFhJtbGg2r49g68CkDNaveK5yi6mmm2A,11084
|
11
11
|
tracdap/rt/_exec/graph_builder.py,sha256=waf74ogwfqSyxdU2yvwEwtNdt6U9qaExQdOZ7ghNY3M,32845
|
12
|
-
tracdap/rt/_exec/runtime.py,sha256=
|
13
|
-
tracdap/rt/_exec/server.py,sha256=
|
12
|
+
tracdap/rt/_exec/runtime.py,sha256=P9G0dqzl-9Rn-IZJppk1u9nib7OVG7UPEJaBxBQQl1Q,15942
|
13
|
+
tracdap/rt/_exec/server.py,sha256=Nq3r0Fvt5GjvdMUQs74vv8JelLR6F3F1xRQh5PCo1EY,12397
|
14
14
|
tracdap/rt/_impl/__init__.py,sha256=eBZMpgFx9uHJxMA-yMWHCQMvShTKxJRAizdz4vy5eWg,609
|
15
|
-
tracdap/rt/_impl/config_parser.py,sha256=
|
15
|
+
tracdap/rt/_impl/config_parser.py,sha256=ZIQpTGwx41nMh4RWt9KW1iheZ2zwjBeTrowysF2u3mM,22586
|
16
16
|
tracdap/rt/_impl/data.py,sha256=ZBt545h-qJnSIO-9vASkzzdg3T6L2_bcilqEtHTEbmU,32707
|
17
|
-
tracdap/rt/_impl/guard_rails.py,sha256=
|
18
|
-
tracdap/rt/_impl/models.py,sha256=
|
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
19
|
tracdap/rt/_impl/repos.py,sha256=bdpUkBbNOIQOKJQGOhCDdXUMz2bY91YNIYlKRKTtM4Y,2063
|
20
20
|
tracdap/rt/_impl/schemas.py,sha256=KhMvh_i2ZLx0-P6vzx8ro2-KbnB3upfJgryTHbXMJrs,7417
|
21
21
|
tracdap/rt/_impl/shim.py,sha256=WV9AldhKdt-oLuQ5x89Dkocdn_gJoYZEo9buHHFIYd8,23148
|
22
|
-
tracdap/rt/_impl/static_api.py,sha256=
|
22
|
+
tracdap/rt/_impl/static_api.py,sha256=1SVCunntUWjM5TSuOScgzjVoe2bnrThxGv7OWlbT82s,8357
|
23
23
|
tracdap/rt/_impl/storage.py,sha256=vvu1Qlk0-GHqzNj0M33L_jB9eKv0dh9Fr9MBBiaQ2uM,35075
|
24
|
-
tracdap/rt/_impl/type_system.py,sha256=
|
24
|
+
tracdap/rt/_impl/type_system.py,sha256=SBircgzdEIG324le7THmUuAxrJlqDVDyqcQOQVeCUjQ,12710
|
25
25
|
tracdap/rt/_impl/util.py,sha256=HeswbIL4dQHjWnCJL3-WEqwsQaYo-xnEuGRoaRJ7kyU,11075
|
26
|
-
tracdap/rt/_impl/validation.py,sha256=
|
26
|
+
tracdap/rt/_impl/validation.py,sha256=hBt3zcmFI7-X9LFLiJlA_gBWjyFZiaiZer3PtivFBVM,16771
|
27
27
|
tracdap/rt/_impl/grpc/__init__.py,sha256=VFwsBdvvDZhB9OmzGnVPNkApXql5KjYoVSnIteKWTRI,608
|
28
|
-
tracdap/rt/_impl/grpc/codec.py,sha256=
|
29
|
-
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py,sha256=
|
30
|
-
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi,sha256=
|
31
|
-
tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py,sha256=
|
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
|
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
|
42
32
|
tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py,sha256=oql1naNGBKxpPIQZViewQSzUmMpt9U8gB-qSJpxkBwo,1945
|
43
33
|
tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi,sha256=R7fTC8HV0j8zB2E2KVtLWXSAeu5MVLrgeL-PnnOsUxg,1275
|
44
34
|
tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.py,sha256=DfHhxxvKU_htkLjUdvsVfxl8Gj8z5GenAuhCSuMT6Ps,1421
|
@@ -51,12 +41,12 @@ tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py,sha256=GyY4iaqp9wtZ29byMllPmk
|
|
51
41
|
tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi,sha256=yCP4usBn7VWxFWdlB6NERiCd0R7BqqmH5k29WdKNk04,5880
|
52
42
|
tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py,sha256=iuHQEwWXSlbr76XPiv3txYinpRqkllSfrSIjhXVRTCs,8305
|
53
43
|
tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi,sha256=n1OEkSYBCPRLNWo1JtvwQwiOXC4xw5a6OWvloNvMlZ8,9411
|
54
|
-
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py,sha256=
|
55
|
-
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi,sha256=
|
44
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py,sha256=9PgK1n1IcbdZ5Ggwl3wnnkWzgk_FsmdV7N1ot-F2VQA,6647
|
45
|
+
tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi,sha256=M3GwnkPr55D5teeKtxayO28JHsArEaCEcOUETFllxnY,6335
|
56
46
|
tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py,sha256=cdNa1Byx6jvZPeakr28VrsEkGIj6av1xvdOM1N8NtuE,2933
|
57
47
|
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=
|
59
|
-
tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi,sha256=
|
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
|
60
50
|
tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py,sha256=YsUl-xK3jOQ6mOMCPe8G3-BWOFFz-MpUOXDWMV90DrQ,3654
|
61
51
|
tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi,sha256=PU-OYKRufI3v5Zx8RI4RvEZq3KPh91AOb8sDNwxyySY,3762
|
62
52
|
tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py,sha256=Zyi6y4vOSN8-VI00cq0gC2xv7YQcFrpMEC2phQxk32k,4652
|
@@ -69,6 +59,7 @@ tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py,sha256=Vbr4xCD2r4wDEnZMV1ZnEg
|
|
69
59
|
tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi,sha256=h-5HTqHMxFhTvfzZH7q-qWt7GeUhYnsQ8EqN9VoH_Ys,4356
|
70
60
|
tracdap/rt/_plugins/__init__.py,sha256=NT9Aq8FDZwJgAG6u6K2E0B6ByAo3x0i48wFNfRkSLZc,609
|
71
61
|
tracdap/rt/_plugins/_helpers.py,sha256=_PhYVVNFZaktERkyrKSvMCzMJn9EXSun0MXmWInq_ew,5840
|
62
|
+
tracdap/rt/_plugins/config_local.py,sha256=lDA_idZ_C6fkcxECyfzN08LsYgTlmXVIOZGZGboGucc,1757
|
72
63
|
tracdap/rt/_plugins/format_arrow.py,sha256=C4mcRRD-bIZhytxEn4meM1gwIaq1cSl_YgmUGUwzuPY,2210
|
73
64
|
tracdap/rt/_plugins/format_csv.py,sha256=e9yr5ZSseuns-YHa-dKPMOO0EvFM4Kx3CJbvHQQika4,16823
|
74
65
|
tracdap/rt/_plugins/format_parquet.py,sha256=clOkTGvqEPgnF7eRaxceyDDiWgFbSHZcYQWGOr2130c,2159
|
@@ -80,42 +71,42 @@ tracdap/rt/_plugins/storage_azure.py,sha256=Q7c063SXlbbsyZHWPu4ma8BDwV-sE0ipOyb0
|
|
80
71
|
tracdap/rt/_plugins/storage_gcp.py,sha256=ENMrgTzqX0QjSDnMfeGyFK6YUwaFaJgqF7PQzEqviKk,6464
|
81
72
|
tracdap/rt/_plugins/storage_local.py,sha256=ep0EvFzhA8ZKStxwSvtbOPIJBt3HjtYKkmFlnUU_AqU,15555
|
82
73
|
tracdap/rt/api/__init__.py,sha256=rOiUwK6sav9QTXohpZAFXJ9MgsL0KBfUyKA7dYspfGQ,1124
|
83
|
-
tracdap/rt/api/hook.py,sha256=
|
74
|
+
tracdap/rt/api/hook.py,sha256=SJqFwoQpmBywFRbGu1pZaG9tvut2fXmAYw9O5nUb0XQ,4343
|
84
75
|
tracdap/rt/api/model_api.py,sha256=6cVYlxYN5jKf4GMPq9Dayl7vhxTGSIvr3GnmSrWu-BA,16336
|
85
|
-
tracdap/rt/api/static_api.py,sha256=
|
86
|
-
tracdap/rt/config/__init__.py,sha256=
|
87
|
-
tracdap/rt/config/common.py,sha256=
|
76
|
+
tracdap/rt/api/static_api.py,sha256=yc2ps1j-fQv-SLDAPSs16C437uuKMeMKswU5VGeRkSw,24396
|
77
|
+
tracdap/rt/config/__init__.py,sha256=jVp_duXrHMjjC5s-MfzDviabHd0XXn6RzmCN-hRIh1Y,885
|
78
|
+
tracdap/rt/config/common.py,sha256=V2bOH_MaILz-tC4TABejZ75_TN_26Dr46N8B0yQY85Y,1325
|
88
79
|
tracdap/rt/config/job.py,sha256=txzOSBBOoEHWo8tzFNhv9HvjOo4q4C9YfVKadNwZKBQ,575
|
89
|
-
tracdap/rt/config/platform.py,sha256=
|
80
|
+
tracdap/rt/config/platform.py,sha256=grOEl1TYlF7bTUr3HpEZ0FeukPVA0mhmPzY1FGeYZeU,2731
|
90
81
|
tracdap/rt/config/result.py,sha256=ChxZ2R5UtMGuO7h0PVijskbzVo8cXqWIA2PyAkYT-PQ,588
|
91
|
-
tracdap/rt/config/runtime.py,sha256=
|
82
|
+
tracdap/rt/config/runtime.py,sha256=KEo2qCKSjKVM1syWPXppxKO4L0rzxQb1CE8qEtKLNdk,592
|
92
83
|
tracdap/rt/ext/__init__.py,sha256=0yYnHpdaHioyof9IyG0R2Z6us1PsaRjOfDX0hSLc_g8,608
|
93
|
-
tracdap/rt/ext/
|
94
|
-
tracdap/rt/ext/embed.py,sha256=
|
95
|
-
tracdap/rt/ext/plugins.py,sha256=
|
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
|
96
87
|
tracdap/rt/ext/repos.py,sha256=hnoGadBthdQK_8IQV5lvfxiiTBC7by7YbcD74qBC5Dw,3110
|
97
88
|
tracdap/rt/ext/storage.py,sha256=mOZKtxFTiPnfOEvUu7RMi3s-Z6PHUX5g4Dq7N6809Dc,4793
|
98
89
|
tracdap/rt/launch/__init__.py,sha256=Zz_4f_ODsmweCxRmG2Dq1Slpb927jSugYclfF_Wgfws,673
|
99
90
|
tracdap/rt/launch/__main__.py,sha256=9UVYYSsqvvMVOqjjBBeLNdzV_6IeIa_97KWOMXIpXY4,654
|
100
|
-
tracdap/rt/launch/cli.py,sha256=
|
101
|
-
tracdap/rt/launch/launch.py,sha256=
|
102
|
-
tracdap/rt/metadata/__init__.py,sha256
|
91
|
+
tracdap/rt/launch/cli.py,sha256=zgU0hI64kkb4nNqp7YNuD3nIJ0xrWab9UBxD4tcHUpI,2353
|
92
|
+
tracdap/rt/launch/launch.py,sha256=eOMCuzCpS9WMq2ydXmrw6CFGwomtRXF2BiEM-bGlQSw,5834
|
93
|
+
tracdap/rt/metadata/__init__.py,sha256=UsipN-xle6_HGBPR9gGuFJ36w8NPi0pNabMxu3iShE0,1779
|
103
94
|
tracdap/rt/metadata/common.py,sha256=ftFmQtij14Sv2T_Kcd_jFrDw4mr2TjagQrQyj8dX704,1439
|
104
95
|
tracdap/rt/metadata/custom.py,sha256=rcUrB8FYYcY8sM4W-Khk3ATfgx2hfBe1PBgbIP2Eop0,387
|
105
96
|
tracdap/rt/metadata/data.py,sha256=nzlaL7cKnLQLLceh9vE_3W4skfx-26EoXux6rK7_ndk,3386
|
106
97
|
tracdap/rt/metadata/file.py,sha256=4vNg0mO6oHOBtWFkU7H533pruu7oJ0CnRSAv3SvCVYs,448
|
107
98
|
tracdap/rt/metadata/flow.py,sha256=c4Xi2cdmszknpWYl770i-jX8A2Q4WfIAS6KyU7BeiUA,3358
|
108
99
|
tracdap/rt/metadata/job.py,sha256=QgtRInflyRAYaPGRChNcx_ptvC9o8RUZnGD30oAyraI,3283
|
109
|
-
tracdap/rt/metadata/model.py,sha256=
|
110
|
-
tracdap/rt/metadata/object.py,sha256=
|
100
|
+
tracdap/rt/metadata/model.py,sha256=Ck_-EKYVv1r6vbYYd8m0GdtrRHaZo8jYFAe1_T_RrhI,2884
|
101
|
+
tracdap/rt/metadata/object.py,sha256=DgRX5AoEu-Ig7BD-Yxzqyx4DTRBgY6z9kdHpI0NWDNc,2810
|
111
102
|
tracdap/rt/metadata/object_id.py,sha256=o46-KNBrWT-2OMe0yf2sSfSpdoJMXpaYKlhW3vwWRyo,4295
|
112
103
|
tracdap/rt/metadata/search.py,sha256=A2Yrz-ATM0AL7wbX7J24FB7AD2O0QGyvD-K-f7GecxM,9851
|
113
104
|
tracdap/rt/metadata/stoarge.py,sha256=8pRptS66sbhKufVF7P1GTudxLby0-Kv4drt05XvlC8s,3070
|
114
105
|
tracdap/rt/metadata/tag.py,sha256=qO1Lxn64UllfAt3CSdvQf04HuKlaUG0ET0keW1Soz_c,5079
|
115
106
|
tracdap/rt/metadata/tag_update.py,sha256=kTeEppUZ1c4ecamVAuTMXs9GnorETNjc6pzbj_W1HfI,3746
|
116
107
|
tracdap/rt/metadata/type.py,sha256=ztDQdzh1tHoY3rLjkfVW32BBdxxkKIQ6KNYl349tuE0,9404
|
117
|
-
tracdap_runtime-0.6.
|
118
|
-
tracdap_runtime-0.6.
|
119
|
-
tracdap_runtime-0.6.
|
120
|
-
tracdap_runtime-0.6.
|
121
|
-
tracdap_runtime-0.6.
|
108
|
+
tracdap_runtime-0.6.3.dist-info/LICENSE,sha256=Q5Gh9SdMNa_F2ehQRShh7dJBz6qW_EQFtWzLukOWFWY,11365
|
109
|
+
tracdap_runtime-0.6.3.dist-info/METADATA,sha256=DKS7kE9llRFG2PX7E8jtW6xspVEhoDl8Dq-1LPrzKF0,4873
|
110
|
+
tracdap_runtime-0.6.3.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
111
|
+
tracdap_runtime-0.6.3.dist-info/top_level.txt,sha256=Uv0JfaE1Lp4JnCzqW8lqXNJAEcsAFpAUGOghJolVNdM,8
|
112
|
+
tracdap_runtime-0.6.3.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)
|