tracdap-runtime 0.6.1.dev3__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/context.py +25 -1
- tracdap/rt/_exec/dev_mode.py +277 -221
- tracdap/rt/_exec/engine.py +79 -14
- tracdap/rt/_exec/functions.py +37 -8
- tracdap/rt/_exec/graph.py +2 -0
- tracdap/rt/_exec/graph_builder.py +118 -56
- tracdap/rt/_exec/runtime.py +108 -37
- tracdap/rt/_exec/server.py +345 -0
- tracdap/rt/_impl/config_parser.py +219 -49
- tracdap/rt/_impl/data.py +14 -0
- tracdap/rt/_impl/grpc/__init__.py +13 -0
- tracdap/rt/_impl/grpc/codec.py +99 -0
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py +51 -0
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi +61 -0
- tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py +183 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py +33 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi +34 -0
- tracdap/rt/{metadata → _impl/grpc/tracdap/metadata}/custom_pb2.py +5 -5
- tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi +15 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py +51 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi +115 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py +28 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi +22 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py +59 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi +109 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py +76 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi +177 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py +63 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi +119 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py +32 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi +68 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py +40 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi +46 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py +39 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi +83 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py +50 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.pyi +89 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.py +34 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.pyi +26 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.py +30 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.pyi +34 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py +47 -0
- tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi +101 -0
- tracdap/rt/_impl/guard_rails.py +26 -6
- tracdap/rt/_impl/models.py +25 -0
- tracdap/rt/_impl/static_api.py +27 -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 +10 -3
- tracdap/rt/api/model_api.py +22 -0
- tracdap/rt/api/static_api.py +79 -19
- tracdap/rt/config/__init__.py +3 -3
- tracdap/rt/config/common.py +10 -0
- tracdap/rt/config/platform.py +9 -19
- 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 +7 -5
- tracdap/rt/launch/launch.py +49 -12
- tracdap/rt/metadata/__init__.py +24 -24
- tracdap/rt/metadata/common.py +7 -7
- tracdap/rt/metadata/custom.py +2 -0
- tracdap/rt/metadata/data.py +28 -5
- tracdap/rt/metadata/file.py +2 -0
- tracdap/rt/metadata/flow.py +66 -4
- tracdap/rt/metadata/job.py +56 -16
- tracdap/rt/metadata/model.py +10 -0
- tracdap/rt/metadata/object.py +3 -0
- tracdap/rt/metadata/object_id.py +9 -9
- tracdap/rt/metadata/search.py +35 -13
- tracdap/rt/metadata/stoarge.py +64 -6
- tracdap/rt/metadata/tag_update.py +21 -7
- tracdap/rt/metadata/type.py +28 -13
- {tracdap_runtime-0.6.1.dev3.dist-info → tracdap_runtime-0.6.3.dist-info}/METADATA +22 -19
- tracdap_runtime-0.6.3.dist-info/RECORD +112 -0
- {tracdap_runtime-0.6.1.dev3.dist-info → tracdap_runtime-0.6.3.dist-info}/WHEEL +1 -1
- tracdap/rt/config/common_pb2.py +0 -55
- tracdap/rt/config/job_pb2.py +0 -42
- tracdap/rt/config/platform_pb2.py +0 -71
- tracdap/rt/config/result_pb2.py +0 -37
- tracdap/rt/config/runtime_pb2.py +0 -42
- tracdap/rt/ext/_guard.py +0 -37
- tracdap/rt/metadata/common_pb2.py +0 -33
- tracdap/rt/metadata/data_pb2.py +0 -51
- tracdap/rt/metadata/file_pb2.py +0 -28
- tracdap/rt/metadata/flow_pb2.py +0 -55
- tracdap/rt/metadata/job_pb2.py +0 -76
- tracdap/rt/metadata/model_pb2.py +0 -51
- tracdap/rt/metadata/object_id_pb2.py +0 -32
- tracdap/rt/metadata/object_pb2.py +0 -35
- tracdap/rt/metadata/search_pb2.py +0 -39
- tracdap/rt/metadata/stoarge_pb2.py +0 -50
- tracdap/rt/metadata/tag_pb2.py +0 -34
- tracdap/rt/metadata/tag_update_pb2.py +0 -30
- tracdap/rt/metadata/type_pb2.py +0 -48
- tracdap_runtime-0.6.1.dev3.dist-info/RECORD +0 -96
- {tracdap_runtime-0.6.1.dev3.dist-info → tracdap_runtime-0.6.3.dist-info}/LICENSE +0 -0
- {tracdap_runtime-0.6.1.dev3.dist-info → tracdap_runtime-0.6.3.dist-info}/top_level.txt +0 -0
tracdap/rt/config/result_pb2.py
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/config/result.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
16
|
-
from tracdap.metadata import object_pb2 as tracdap_dot_metadata_dot_object__pb2
|
17
|
-
from tracdap.metadata import job_pb2 as tracdap_dot_metadata_dot_job__pb2
|
18
|
-
from tracdap.metadata import tag_update_pb2 as tracdap_dot_metadata_dot_tag__update__pb2
|
19
|
-
|
20
|
-
|
21
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1btracdap/config/result.proto\x12\x0etracdap.config\x1a tracdap/metadata/object_id.proto\x1a\x1dtracdap/metadata/object.proto\x1a\x1atracdap/metadata/job.proto\x1a!tracdap/metadata/tag_update.proto\";\n\rTagUpdateList\x12*\n\x05\x61ttrs\x18\x01 \x03(\x0b\x32\x1b.tracdap.metadata.TagUpdate\"\x9d\x02\n\tJobResult\x12*\n\x05jobId\x18\x01 \x01(\x0b\x32\x1b.tracdap.metadata.TagHeader\x12\x33\n\nstatusCode\x18\x02 \x01(\x0e\x32\x1f.tracdap.metadata.JobStatusCode\x12\x15\n\rstatusMessage\x18\x03 \x01(\t\x12\x37\n\x07results\x18\x04 \x03(\x0b\x32&.tracdap.config.JobResult.ResultsEntry\x1aR\n\x0cResultsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\".tracdap.metadata.ObjectDefinition:\x02\x38\x01J\x04\x08\x05\x10\x06R\x05\x61ttrsB\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
|
22
|
-
|
23
|
-
_globals = globals()
|
24
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
25
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.result_pb2', _globals)
|
26
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
27
|
-
_globals['DESCRIPTOR']._options = None
|
28
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
|
29
|
-
_globals['_JOBRESULT_RESULTSENTRY']._options = None
|
30
|
-
_globals['_JOBRESULT_RESULTSENTRY']._serialized_options = b'8\001'
|
31
|
-
_globals['_TAGUPDATELIST']._serialized_start=175
|
32
|
-
_globals['_TAGUPDATELIST']._serialized_end=234
|
33
|
-
_globals['_JOBRESULT']._serialized_start=237
|
34
|
-
_globals['_JOBRESULT']._serialized_end=522
|
35
|
-
_globals['_JOBRESULT_RESULTSENTRY']._serialized_start=427
|
36
|
-
_globals['_JOBRESULT_RESULTSENTRY']._serialized_end=509
|
37
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/config/runtime_pb2.py
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/config/runtime.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.config import common_pb2 as tracdap_dot_config_dot_common__pb2
|
16
|
-
|
17
|
-
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ctracdap/config/runtime.proto\x12\x0etracdap.config\x1a\x1btracdap/config/common.proto\"\xf9\x02\n\rRuntimeConfig\x12\x39\n\x06\x63onfig\x18\x01 \x03(\x0b\x32).tracdap.config.RuntimeConfig.ConfigEntry\x12.\n\x07storage\x18\x02 \x01(\x0b\x32\x1d.tracdap.config.StorageConfig\x12\x45\n\x0crepositories\x18\x03 \x03(\x0b\x32/.tracdap.config.RuntimeConfig.RepositoriesEntry\x12\x34\n\rsparkSettings\x18\x05 \x01(\x0b\x32\x1d.tracdap.config.SparkSettings\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aQ\n\x11RepositoriesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig:\x02\x38\x01\"\x85\x01\n\rSparkSettings\x12\x41\n\nsparkProps\x18\x01 \x03(\x0b\x32-.tracdap.config.SparkSettings.SparkPropsEntry\x1a\x31\n\x0fSparkPropsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
|
19
|
-
|
20
|
-
_globals = globals()
|
21
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
22
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.runtime_pb2', _globals)
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
24
|
-
_globals['DESCRIPTOR']._options = None
|
25
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
|
26
|
-
_globals['_RUNTIMECONFIG_CONFIGENTRY']._options = None
|
27
|
-
_globals['_RUNTIMECONFIG_CONFIGENTRY']._serialized_options = b'8\001'
|
28
|
-
_globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._options = None
|
29
|
-
_globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._serialized_options = b'8\001'
|
30
|
-
_globals['_SPARKSETTINGS_SPARKPROPSENTRY']._options = None
|
31
|
-
_globals['_SPARKSETTINGS_SPARKPROPSENTRY']._serialized_options = b'8\001'
|
32
|
-
_globals['_RUNTIMECONFIG']._serialized_start=78
|
33
|
-
_globals['_RUNTIMECONFIG']._serialized_end=455
|
34
|
-
_globals['_RUNTIMECONFIG_CONFIGENTRY']._serialized_start=327
|
35
|
-
_globals['_RUNTIMECONFIG_CONFIGENTRY']._serialized_end=372
|
36
|
-
_globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._serialized_start=374
|
37
|
-
_globals['_RUNTIMECONFIG_REPOSITORIESENTRY']._serialized_end=455
|
38
|
-
_globals['_SPARKSETTINGS']._serialized_start=458
|
39
|
-
_globals['_SPARKSETTINGS']._serialized_end=591
|
40
|
-
_globals['_SPARKSETTINGS_SPARKPROPSENTRY']._serialized_start=542
|
41
|
-
_globals['_SPARKSETTINGS_SPARKPROPSENTRY']._serialized_end=591
|
42
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/ext/_guard.py
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
# Copyright 2023 Accenture Global Solutions Limited
|
2
|
-
#
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
-
# you may not use this file except in compliance with the License.
|
5
|
-
# You may obtain a copy of the License at
|
6
|
-
#
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
8
|
-
#
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12
|
-
# See the License for the specific language governing permissions and
|
13
|
-
# limitations under the License.
|
14
|
-
|
15
|
-
import inspect
|
16
|
-
import tracdap.rt.exceptions as ex
|
17
|
-
|
18
|
-
|
19
|
-
def run_model_guard(operation: str = None):
|
20
|
-
|
21
|
-
# Loading resources from inside run_model is an invalid use of the runtime API
|
22
|
-
# If a model attempts this, throw back a runtime validation error
|
23
|
-
|
24
|
-
stack = inspect.stack()
|
25
|
-
frame = stack[-1]
|
26
|
-
|
27
|
-
if operation is None:
|
28
|
-
operation = f"Calling {frame.function}()"
|
29
|
-
|
30
|
-
for frame_index in range(len(stack) - 2, 0, -1):
|
31
|
-
|
32
|
-
parent_frame = frame
|
33
|
-
frame = stack[frame_index]
|
34
|
-
|
35
|
-
if frame.function == "run_model" and parent_frame.function == "_execute":
|
36
|
-
err = f"{operation} is not allowed inside run_model()"
|
37
|
-
raise ex.ERuntimeValidation(err)
|
@@ -1,33 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/common.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dtracdap/metadata/common.proto\x12\x10tracdap.metadata\"5\n\nTenantInfo\x12\x12\n\ntenantCode\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t*L\n\x0eMetadataFormat\x12\x1b\n\x17METADATA_FORMAT_NOT_SET\x10\x00\x12\t\n\x05PROTO\x10\x01\x12\x08\n\x04JSON\x10\x02\x12\x08\n\x04YAML\x10\x03*H\n\x0fMetadataVersion\x12\x1c\n\x18METADATA_VERSION_NOT_SET\x10\x00\x12\x06\n\x02V1\x10\x01\x12\x0b\n\x07\x43URRENT\x10\x01\x1a\x02\x10\x01\x42\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
18
|
-
|
19
|
-
_globals = globals()
|
20
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
21
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.common_pb2', _globals)
|
22
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
23
|
-
_globals['DESCRIPTOR']._options = None
|
24
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
25
|
-
_globals['_METADATAVERSION']._options = None
|
26
|
-
_globals['_METADATAVERSION']._serialized_options = b'\020\001'
|
27
|
-
_globals['_METADATAFORMAT']._serialized_start=106
|
28
|
-
_globals['_METADATAFORMAT']._serialized_end=182
|
29
|
-
_globals['_METADATAVERSION']._serialized_start=184
|
30
|
-
_globals['_METADATAVERSION']._serialized_end=256
|
31
|
-
_globals['_TENANTINFO']._serialized_start=51
|
32
|
-
_globals['_TENANTINFO']._serialized_end=104
|
33
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/metadata/data_pb2.py
DELETED
@@ -1,51 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/data.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import type_pb2 as tracdap_dot_metadata_dot_type__pb2
|
16
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
17
|
-
|
18
|
-
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1btracdap/metadata/data.proto\x12\x10tracdap.metadata\x1a\x1btracdap/metadata/type.proto\x1a tracdap/metadata/object_id.proto\"\xe7\x01\n\x0b\x46ieldSchema\x12\x11\n\tfieldName\x18\x01 \x01(\t\x12\x12\n\nfieldOrder\x18\x02 \x01(\x11\x12.\n\tfieldType\x18\x03 \x01(\x0e\x32\x1b.tracdap.metadata.BasicType\x12\r\n\x05label\x18\x04 \x01(\t\x12\x13\n\x0b\x62usinessKey\x18\x05 \x01(\x08\x12\x13\n\x0b\x63\x61tegorical\x18\x06 \x01(\x08\x12\x14\n\x07notNull\x18\x08 \x01(\x08H\x00\x88\x01\x01\x12\x17\n\nformatCode\x18\x07 \x01(\tH\x01\x88\x01\x01\x42\n\n\x08_notNullB\r\n\x0b_formatCode\"<\n\x0bTableSchema\x12-\n\x06\x66ields\x18\x01 \x03(\x0b\x32\x1d.tracdap.metadata.FieldSchema\"\xba\x01\n\x10SchemaDefinition\x12\x30\n\nschemaType\x18\x01 \x01(\x0e\x32\x1c.tracdap.metadata.SchemaType\x12,\n\x08partType\x18\x02 \x01(\x0e\x32\x1a.tracdap.metadata.PartType\x12.\n\x05table\x18\x03 \x01(\x0b\x32\x1d.tracdap.metadata.TableSchemaH\x00\x42\x16\n\x14schemaTypeDefinition\"\x81\x02\n\x07PartKey\x12\x11\n\topaqueKey\x18\x01 \x01(\t\x12,\n\x08partType\x18\x02 \x01(\x0e\x32\x1a.tracdap.metadata.PartType\x12+\n\npartValues\x18\x03 \x03(\x0b\x32\x17.tracdap.metadata.Value\x12\x32\n\x0cpartRangeMin\x18\x04 \x01(\x0b\x32\x17.tracdap.metadata.ValueH\x00\x88\x01\x01\x12\x32\n\x0cpartRangeMax\x18\x05 \x01(\x0b\x32\x17.tracdap.metadata.ValueH\x01\x88\x01\x01\x42\x0f\n\r_partRangeMinB\x0f\n\r_partRangeMax\"\xba\x04\n\x0e\x44\x61taDefinition\x12\x31\n\x08schemaId\x18\x01 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelectorH\x00\x12\x34\n\x06schema\x18\x02 \x01(\x0b\x32\".tracdap.metadata.SchemaDefinitionH\x00\x12:\n\x05parts\x18\x03 \x03(\x0b\x32+.tracdap.metadata.DataDefinition.PartsEntry\x12\x30\n\tstorageId\x18\x04 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector\x1a-\n\x05\x44\x65lta\x12\x12\n\ndeltaIndex\x18\x01 \x01(\r\x12\x10\n\x08\x64\x61taItem\x18\x02 \x01(\t\x1aQ\n\x04Snap\x12\x11\n\tsnapIndex\x18\x01 \x01(\r\x12\x36\n\x06\x64\x65ltas\x18\x02 \x03(\x0b\x32&.tracdap.metadata.DataDefinition.Delta\x1ag\n\x04Part\x12*\n\x07partKey\x18\x01 \x01(\x0b\x32\x19.tracdap.metadata.PartKey\x12\x33\n\x04snap\x18\x02 \x01(\x0b\x32%.tracdap.metadata.DataDefinition.Snap\x1aS\n\nPartsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x34\n\x05value\x18\x02 \x01(\x0b\x32%.tracdap.metadata.DataDefinition.Part:\x02\x38\x01\x42\x11\n\x0fschemaSpecifier*0\n\nSchemaType\x12\x17\n\x13SCHEMA_TYPE_NOT_SET\x10\x00\x12\t\n\x05TABLE\x10\x01*?\n\x08PartType\x12\r\n\tPART_ROOT\x10\x00\x12\x11\n\rPART_BY_RANGE\x10\x01\x12\x11\n\rPART_BY_VALUE\x10\x02\x42\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
20
|
-
|
21
|
-
_globals = globals()
|
22
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
23
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.data_pb2', _globals)
|
24
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
25
|
-
_globals['DESCRIPTOR']._options = None
|
26
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
27
|
-
_globals['_DATADEFINITION_PARTSENTRY']._options = None
|
28
|
-
_globals['_DATADEFINITION_PARTSENTRY']._serialized_options = b'8\001'
|
29
|
-
_globals['_SCHEMATYPE']._serialized_start=1430
|
30
|
-
_globals['_SCHEMATYPE']._serialized_end=1478
|
31
|
-
_globals['_PARTTYPE']._serialized_start=1480
|
32
|
-
_globals['_PARTTYPE']._serialized_end=1543
|
33
|
-
_globals['_FIELDSCHEMA']._serialized_start=113
|
34
|
-
_globals['_FIELDSCHEMA']._serialized_end=344
|
35
|
-
_globals['_TABLESCHEMA']._serialized_start=346
|
36
|
-
_globals['_TABLESCHEMA']._serialized_end=406
|
37
|
-
_globals['_SCHEMADEFINITION']._serialized_start=409
|
38
|
-
_globals['_SCHEMADEFINITION']._serialized_end=595
|
39
|
-
_globals['_PARTKEY']._serialized_start=598
|
40
|
-
_globals['_PARTKEY']._serialized_end=855
|
41
|
-
_globals['_DATADEFINITION']._serialized_start=858
|
42
|
-
_globals['_DATADEFINITION']._serialized_end=1428
|
43
|
-
_globals['_DATADEFINITION_DELTA']._serialized_start=1091
|
44
|
-
_globals['_DATADEFINITION_DELTA']._serialized_end=1136
|
45
|
-
_globals['_DATADEFINITION_SNAP']._serialized_start=1138
|
46
|
-
_globals['_DATADEFINITION_SNAP']._serialized_end=1219
|
47
|
-
_globals['_DATADEFINITION_PART']._serialized_start=1221
|
48
|
-
_globals['_DATADEFINITION_PART']._serialized_end=1324
|
49
|
-
_globals['_DATADEFINITION_PARTSENTRY']._serialized_start=1326
|
50
|
-
_globals['_DATADEFINITION_PARTSENTRY']._serialized_end=1409
|
51
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/metadata/file_pb2.py
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/file.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
16
|
-
|
17
|
-
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1btracdap/metadata/file.proto\x12\x10tracdap.metadata\x1a tracdap/metadata/object_id.proto\"\x95\x01\n\x0e\x46ileDefinition\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x11\n\textension\x18\x02 \x01(\t\x12\x10\n\x08mimeType\x18\x03 \x01(\t\x12\x0c\n\x04size\x18\x04 \x01(\x04\x12\x30\n\tstorageId\x18\x05 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector\x12\x10\n\x08\x64\x61taItem\x18\x06 \x01(\tB\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
19
|
-
|
20
|
-
_globals = globals()
|
21
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
22
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.file_pb2', _globals)
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
24
|
-
_globals['DESCRIPTOR']._options = None
|
25
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
26
|
-
_globals['_FILEDEFINITION']._serialized_start=84
|
27
|
-
_globals['_FILEDEFINITION']._serialized_end=233
|
28
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/metadata/flow_pb2.py
DELETED
@@ -1,55 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/flow.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import type_pb2 as tracdap_dot_metadata_dot_type__pb2
|
16
|
-
from tracdap.metadata import model_pb2 as tracdap_dot_metadata_dot_model__pb2
|
17
|
-
from tracdap.metadata import search_pb2 as tracdap_dot_metadata_dot_search__pb2
|
18
|
-
from tracdap.metadata import tag_update_pb2 as tracdap_dot_metadata_dot_tag__update__pb2
|
19
|
-
|
20
|
-
|
21
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1btracdap/metadata/flow.proto\x12\x10tracdap.metadata\x1a\x1btracdap/metadata/type.proto\x1a\x1ctracdap/metadata/model.proto\x1a\x1dtracdap/metadata/search.proto\x1a!tracdap/metadata/tag_update.proto\"\xe1\x01\n\x08\x46lowNode\x12\x30\n\x08nodeType\x18\x01 \x01(\x0e\x32\x1e.tracdap.metadata.FlowNodeType\x12\x0e\n\x06inputs\x18\x02 \x03(\t\x12\x0f\n\x07outputs\x18\x03 \x03(\t\x12\x36\n\nnodeSearch\x18\x04 \x01(\x0b\x32\".tracdap.metadata.SearchExpression\x12.\n\tnodeAttrs\x18\x05 \x03(\x0b\x32\x1b.tracdap.metadata.TagUpdate\x12\r\n\x05label\x18\x06 \x01(\tR\x0bparameters;\"*\n\nFlowSocket\x12\x0c\n\x04node\x18\x01 \x01(\t\x12\x0e\n\x06socket\x18\x02 \x01(\t\"f\n\x08\x46lowEdge\x12,\n\x06source\x18\x01 \x01(\x0b\x32\x1c.tracdap.metadata.FlowSocket\x12,\n\x06target\x18\x02 \x01(\x0b\x32\x1c.tracdap.metadata.FlowSocket\"\x82\x05\n\x0e\x46lowDefinition\x12:\n\x05nodes\x18\x01 \x03(\x0b\x32+.tracdap.metadata.FlowDefinition.NodesEntry\x12)\n\x05\x65\x64ges\x18\x02 \x03(\x0b\x32\x1a.tracdap.metadata.FlowEdge\x12\x44\n\nparameters\x18\x03 \x03(\x0b\x32\x30.tracdap.metadata.FlowDefinition.ParametersEntry\x12<\n\x06inputs\x18\x04 \x03(\x0b\x32,.tracdap.metadata.FlowDefinition.InputsEntry\x12>\n\x07outputs\x18\x05 \x03(\x0b\x32-.tracdap.metadata.FlowDefinition.OutputsEntry\x1aH\n\nNodesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12)\n\x05value\x18\x02 \x01(\x0b\x32\x1a.tracdap.metadata.FlowNode:\x02\x38\x01\x1aS\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12/\n\x05value\x18\x02 \x01(\x0b\x32 .tracdap.metadata.ModelParameter:\x02\x38\x01\x1aQ\n\x0bInputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\".tracdap.metadata.ModelInputSchema:\x02\x38\x01\x1aS\n\x0cOutputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.tracdap.metadata.ModelOutputSchema:\x02\x38\x01*V\n\x0c\x46lowNodeType\x12\x15\n\x11NODE_TYPE_NOT_SET\x10\x00\x12\x0e\n\nINPUT_NODE\x10\x01\x12\x0f\n\x0bOUTPUT_NODE\x10\x02\x12\x0e\n\nMODEL_NODE\x10\x03\x42\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
22
|
-
|
23
|
-
_globals = globals()
|
24
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
25
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.flow_pb2', _globals)
|
26
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
27
|
-
_globals['DESCRIPTOR']._options = None
|
28
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
29
|
-
_globals['_FLOWDEFINITION_NODESENTRY']._options = None
|
30
|
-
_globals['_FLOWDEFINITION_NODESENTRY']._serialized_options = b'8\001'
|
31
|
-
_globals['_FLOWDEFINITION_PARAMETERSENTRY']._options = None
|
32
|
-
_globals['_FLOWDEFINITION_PARAMETERSENTRY']._serialized_options = b'8\001'
|
33
|
-
_globals['_FLOWDEFINITION_INPUTSENTRY']._options = None
|
34
|
-
_globals['_FLOWDEFINITION_INPUTSENTRY']._serialized_options = b'8\001'
|
35
|
-
_globals['_FLOWDEFINITION_OUTPUTSENTRY']._options = None
|
36
|
-
_globals['_FLOWDEFINITION_OUTPUTSENTRY']._serialized_options = b'8\001'
|
37
|
-
_globals['_FLOWNODETYPE']._serialized_start=1195
|
38
|
-
_globals['_FLOWNODETYPE']._serialized_end=1281
|
39
|
-
_globals['_FLOWNODE']._serialized_start=175
|
40
|
-
_globals['_FLOWNODE']._serialized_end=400
|
41
|
-
_globals['_FLOWSOCKET']._serialized_start=402
|
42
|
-
_globals['_FLOWSOCKET']._serialized_end=444
|
43
|
-
_globals['_FLOWEDGE']._serialized_start=446
|
44
|
-
_globals['_FLOWEDGE']._serialized_end=548
|
45
|
-
_globals['_FLOWDEFINITION']._serialized_start=551
|
46
|
-
_globals['_FLOWDEFINITION']._serialized_end=1193
|
47
|
-
_globals['_FLOWDEFINITION_NODESENTRY']._serialized_start=868
|
48
|
-
_globals['_FLOWDEFINITION_NODESENTRY']._serialized_end=940
|
49
|
-
_globals['_FLOWDEFINITION_PARAMETERSENTRY']._serialized_start=942
|
50
|
-
_globals['_FLOWDEFINITION_PARAMETERSENTRY']._serialized_end=1025
|
51
|
-
_globals['_FLOWDEFINITION_INPUTSENTRY']._serialized_start=1027
|
52
|
-
_globals['_FLOWDEFINITION_INPUTSENTRY']._serialized_end=1108
|
53
|
-
_globals['_FLOWDEFINITION_OUTPUTSENTRY']._serialized_start=1110
|
54
|
-
_globals['_FLOWDEFINITION_OUTPUTSENTRY']._serialized_end=1193
|
55
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/metadata/job_pb2.py
DELETED
@@ -1,76 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/job.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import type_pb2 as tracdap_dot_metadata_dot_type__pb2
|
16
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
17
|
-
from tracdap.metadata import tag_update_pb2 as tracdap_dot_metadata_dot_tag__update__pb2
|
18
|
-
|
19
|
-
|
20
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1atracdap/metadata/job.proto\x12\x10tracdap.metadata\x1a\x1btracdap/metadata/type.proto\x1a tracdap/metadata/object_id.proto\x1a!tracdap/metadata/tag_update.proto\"\xe6\x01\n\rJobDefinition\x12*\n\x07jobType\x18\x01 \x01(\x0e\x32\x19.tracdap.metadata.JobType\x12\x31\n\x08runModel\x18\x02 \x01(\x0b\x32\x1d.tracdap.metadata.RunModelJobH\x00\x12/\n\x07runFlow\x18\x03 \x01(\x0b\x32\x1c.tracdap.metadata.RunFlowJobH\x00\x12\x37\n\x0bimportModel\x18\x04 \x01(\x0b\x32 .tracdap.metadata.ImportModelJobH\x00\x42\x0c\n\njobDetails\"\xac\x05\n\x0bRunModelJob\x12,\n\x05model\x18\x01 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector\x12\x41\n\nparameters\x18\x02 \x03(\x0b\x32-.tracdap.metadata.RunModelJob.ParametersEntry\x12\x39\n\x06inputs\x18\x03 \x03(\x0b\x32).tracdap.metadata.RunModelJob.InputsEntry\x12;\n\x07outputs\x18\x04 \x03(\x0b\x32*.tracdap.metadata.RunModelJob.OutputsEntry\x12\x45\n\x0cpriorOutputs\x18\x05 \x03(\x0b\x32/.tracdap.metadata.RunModelJob.PriorOutputsEntry\x12\x30\n\x0boutputAttrs\x18\x06 \x03(\x0b\x32\x1b.tracdap.metadata.TagUpdate\x1aJ\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.tracdap.metadata.Value:\x02\x38\x01\x1aL\n\x0bInputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector:\x02\x38\x01\x1aM\n\x0cOutputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector:\x02\x38\x01\x1aR\n\x11PriorOutputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector:\x02\x38\x01\"\xae\x06\n\nRunFlowJob\x12+\n\x04\x66low\x18\x01 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector\x12@\n\nparameters\x18\x02 \x03(\x0b\x32,.tracdap.metadata.RunFlowJob.ParametersEntry\x12\x38\n\x06inputs\x18\x03 \x03(\x0b\x32(.tracdap.metadata.RunFlowJob.InputsEntry\x12:\n\x07outputs\x18\x04 \x03(\x0b\x32).tracdap.metadata.RunFlowJob.OutputsEntry\x12\x44\n\x0cpriorOutputs\x18\x05 \x03(\x0b\x32..tracdap.metadata.RunFlowJob.PriorOutputsEntry\x12\x38\n\x06models\x18\x06 \x03(\x0b\x32(.tracdap.metadata.RunFlowJob.ModelsEntry\x12\x30\n\x0boutputAttrs\x18\x07 \x03(\x0b\x32\x1b.tracdap.metadata.TagUpdate\x1aJ\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.tracdap.metadata.Value:\x02\x38\x01\x1aL\n\x0bInputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector:\x02\x38\x01\x1aM\n\x0cOutputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector:\x02\x38\x01\x1aR\n\x11PriorOutputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector:\x02\x38\x01\x1aL\n\x0bModelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.metadata.TagSelector:\x02\x38\x01\"\xd7\x01\n\x0eImportModelJob\x12\x10\n\x08language\x18\x01 \x01(\t\x12\x12\n\nrepository\x18\x02 \x01(\t\x12\x19\n\x0cpackageGroup\x18\x07 \x01(\tH\x00\x88\x01\x01\x12\x0f\n\x07package\x18\x08 \x01(\t\x12\x0f\n\x07version\x18\x05 \x01(\t\x12\x12\n\nentryPoint\x18\x04 \x01(\t\x12\x0c\n\x04path\x18\x03 \x01(\t\x12/\n\nmodelAttrs\x18\x06 \x03(\x0b\x32\x1b.tracdap.metadata.TagUpdateB\x0f\n\r_packageGroup*_\n\x07JobType\x12\x14\n\x10JOB_TYPE_NOT_SET\x10\x00\x12\r\n\tRUN_MODEL\x10\x01\x12\x0c\n\x08RUN_FLOW\x10\x02\x12\x10\n\x0cIMPORT_MODEL\x10\x03\x12\x0f\n\x0bIMPORT_DATA\x10\x04*\xb8\x01\n\rJobStatusCode\x12\x1b\n\x17JOB_STATUS_CODE_NOT_SET\x10\x00\x12\r\n\tPREPARING\x10\x01\x12\r\n\tVALIDATED\x10\x02\x12\x0b\n\x07PENDING\x10\x03\x12\n\n\x06QUEUED\x10\x04\x12\r\n\tSUBMITTED\x10\x05\x12\x0b\n\x07RUNNING\x10\x06\x12\r\n\tFINISHING\x10\x07\x12\r\n\tSUCCEEDED\x10\x08\x12\n\n\x06\x46\x41ILED\x10\t\x12\r\n\tCANCELLED\x10\nB\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
21
|
-
|
22
|
-
_globals = globals()
|
23
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
24
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.job_pb2', _globals)
|
25
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
26
|
-
_globals['DESCRIPTOR']._options = None
|
27
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
28
|
-
_globals['_RUNMODELJOB_PARAMETERSENTRY']._options = None
|
29
|
-
_globals['_RUNMODELJOB_PARAMETERSENTRY']._serialized_options = b'8\001'
|
30
|
-
_globals['_RUNMODELJOB_INPUTSENTRY']._options = None
|
31
|
-
_globals['_RUNMODELJOB_INPUTSENTRY']._serialized_options = b'8\001'
|
32
|
-
_globals['_RUNMODELJOB_OUTPUTSENTRY']._options = None
|
33
|
-
_globals['_RUNMODELJOB_OUTPUTSENTRY']._serialized_options = b'8\001'
|
34
|
-
_globals['_RUNMODELJOB_PRIOROUTPUTSENTRY']._options = None
|
35
|
-
_globals['_RUNMODELJOB_PRIOROUTPUTSENTRY']._serialized_options = b'8\001'
|
36
|
-
_globals['_RUNFLOWJOB_PARAMETERSENTRY']._options = None
|
37
|
-
_globals['_RUNFLOWJOB_PARAMETERSENTRY']._serialized_options = b'8\001'
|
38
|
-
_globals['_RUNFLOWJOB_INPUTSENTRY']._options = None
|
39
|
-
_globals['_RUNFLOWJOB_INPUTSENTRY']._serialized_options = b'8\001'
|
40
|
-
_globals['_RUNFLOWJOB_OUTPUTSENTRY']._options = None
|
41
|
-
_globals['_RUNFLOWJOB_OUTPUTSENTRY']._serialized_options = b'8\001'
|
42
|
-
_globals['_RUNFLOWJOB_PRIOROUTPUTSENTRY']._options = None
|
43
|
-
_globals['_RUNFLOWJOB_PRIOROUTPUTSENTRY']._serialized_options = b'8\001'
|
44
|
-
_globals['_RUNFLOWJOB_MODELSENTRY']._options = None
|
45
|
-
_globals['_RUNFLOWJOB_MODELSENTRY']._serialized_options = b'8\001'
|
46
|
-
_globals['_JOBTYPE']._serialized_start=2101
|
47
|
-
_globals['_JOBTYPE']._serialized_end=2196
|
48
|
-
_globals['_JOBSTATUSCODE']._serialized_start=2199
|
49
|
-
_globals['_JOBSTATUSCODE']._serialized_end=2383
|
50
|
-
_globals['_JOBDEFINITION']._serialized_start=147
|
51
|
-
_globals['_JOBDEFINITION']._serialized_end=377
|
52
|
-
_globals['_RUNMODELJOB']._serialized_start=380
|
53
|
-
_globals['_RUNMODELJOB']._serialized_end=1064
|
54
|
-
_globals['_RUNMODELJOB_PARAMETERSENTRY']._serialized_start=749
|
55
|
-
_globals['_RUNMODELJOB_PARAMETERSENTRY']._serialized_end=823
|
56
|
-
_globals['_RUNMODELJOB_INPUTSENTRY']._serialized_start=825
|
57
|
-
_globals['_RUNMODELJOB_INPUTSENTRY']._serialized_end=901
|
58
|
-
_globals['_RUNMODELJOB_OUTPUTSENTRY']._serialized_start=903
|
59
|
-
_globals['_RUNMODELJOB_OUTPUTSENTRY']._serialized_end=980
|
60
|
-
_globals['_RUNMODELJOB_PRIOROUTPUTSENTRY']._serialized_start=982
|
61
|
-
_globals['_RUNMODELJOB_PRIOROUTPUTSENTRY']._serialized_end=1064
|
62
|
-
_globals['_RUNFLOWJOB']._serialized_start=1067
|
63
|
-
_globals['_RUNFLOWJOB']._serialized_end=1881
|
64
|
-
_globals['_RUNFLOWJOB_PARAMETERSENTRY']._serialized_start=749
|
65
|
-
_globals['_RUNFLOWJOB_PARAMETERSENTRY']._serialized_end=823
|
66
|
-
_globals['_RUNFLOWJOB_INPUTSENTRY']._serialized_start=825
|
67
|
-
_globals['_RUNFLOWJOB_INPUTSENTRY']._serialized_end=901
|
68
|
-
_globals['_RUNFLOWJOB_OUTPUTSENTRY']._serialized_start=903
|
69
|
-
_globals['_RUNFLOWJOB_OUTPUTSENTRY']._serialized_end=980
|
70
|
-
_globals['_RUNFLOWJOB_PRIOROUTPUTSENTRY']._serialized_start=982
|
71
|
-
_globals['_RUNFLOWJOB_PRIOROUTPUTSENTRY']._serialized_end=1064
|
72
|
-
_globals['_RUNFLOWJOB_MODELSENTRY']._serialized_start=1805
|
73
|
-
_globals['_RUNFLOWJOB_MODELSENTRY']._serialized_end=1881
|
74
|
-
_globals['_IMPORTMODELJOB']._serialized_start=1884
|
75
|
-
_globals['_IMPORTMODELJOB']._serialized_end=2099
|
76
|
-
# @@protoc_insertion_point(module_scope)
|
tracdap/rt/metadata/model_pb2.py
DELETED
@@ -1,51 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/model.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import type_pb2 as tracdap_dot_metadata_dot_type__pb2
|
16
|
-
from tracdap.metadata import data_pb2 as tracdap_dot_metadata_dot_data__pb2
|
17
|
-
|
18
|
-
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ctracdap/metadata/model.proto\x12\x10tracdap.metadata\x1a\x1btracdap/metadata/type.proto\x1a\x1btracdap/metadata/data.proto\"\x99\x01\n\x0eModelParameter\x12\x33\n\tparamType\x18\x01 \x01(\x0b\x32 .tracdap.metadata.TypeDescriptor\x12\r\n\x05label\x18\x02 \x01(\t\x12\x32\n\x0c\x64\x65\x66\x61ultValue\x18\x03 \x01(\x0b\x32\x17.tracdap.metadata.ValueH\x00\x88\x01\x01\x42\x0f\n\r_defaultValue\"d\n\x10ModelInputSchema\x12\x32\n\x06schema\x18\x01 \x01(\x0b\x32\".tracdap.metadata.SchemaDefinition\x12\x12\n\x05label\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_label\"e\n\x11ModelOutputSchema\x12\x32\n\x06schema\x18\x01 \x01(\x0b\x32\".tracdap.metadata.SchemaDefinition\x12\x12\n\x05label\x18\x02 \x01(\tH\x00\x88\x01\x01\x42\x08\n\x06_label\"\x9e\x06\n\x0fModelDefinition\x12\x10\n\x08language\x18\x01 \x01(\t\x12\x12\n\nrepository\x18\x02 \x01(\t\x12\x19\n\x0cpackageGroup\x18\n \x01(\tH\x00\x88\x01\x01\x12\x0f\n\x07package\x18\x0b \x01(\t\x12\x0f\n\x07version\x18\x06 \x01(\t\x12\x12\n\nentryPoint\x18\x05 \x01(\t\x12\x11\n\x04path\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\x45\n\nparameters\x18\x07 \x03(\x0b\x32\x31.tracdap.metadata.ModelDefinition.ParametersEntry\x12=\n\x06inputs\x18\x08 \x03(\x0b\x32-.tracdap.metadata.ModelDefinition.InputsEntry\x12?\n\x07outputs\x18\t \x03(\x0b\x32..tracdap.metadata.ModelDefinition.OutputsEntry\x12Q\n\x10staticAttributes\x18\x0c \x03(\x0b\x32\x37.tracdap.metadata.ModelDefinition.StaticAttributesEntry\x1aS\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12/\n\x05value\x18\x02 \x01(\x0b\x32 .tracdap.metadata.ModelParameter:\x02\x38\x01\x1aQ\n\x0bInputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\".tracdap.metadata.ModelInputSchema:\x02\x38\x01\x1aS\n\x0cOutputsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.tracdap.metadata.ModelOutputSchema:\x02\x38\x01\x1aP\n\x15StaticAttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.tracdap.metadata.Value:\x02\x38\x01\x42\x0f\n\r_packageGroupB\x07\n\x05_pathB\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
20
|
-
|
21
|
-
_globals = globals()
|
22
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
23
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.model_pb2', _globals)
|
24
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
25
|
-
_globals['DESCRIPTOR']._options = None
|
26
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
27
|
-
_globals['_MODELDEFINITION_PARAMETERSENTRY']._options = None
|
28
|
-
_globals['_MODELDEFINITION_PARAMETERSENTRY']._serialized_options = b'8\001'
|
29
|
-
_globals['_MODELDEFINITION_INPUTSENTRY']._options = None
|
30
|
-
_globals['_MODELDEFINITION_INPUTSENTRY']._serialized_options = b'8\001'
|
31
|
-
_globals['_MODELDEFINITION_OUTPUTSENTRY']._options = None
|
32
|
-
_globals['_MODELDEFINITION_OUTPUTSENTRY']._serialized_options = b'8\001'
|
33
|
-
_globals['_MODELDEFINITION_STATICATTRIBUTESENTRY']._options = None
|
34
|
-
_globals['_MODELDEFINITION_STATICATTRIBUTESENTRY']._serialized_options = b'8\001'
|
35
|
-
_globals['_MODELPARAMETER']._serialized_start=109
|
36
|
-
_globals['_MODELPARAMETER']._serialized_end=262
|
37
|
-
_globals['_MODELINPUTSCHEMA']._serialized_start=264
|
38
|
-
_globals['_MODELINPUTSCHEMA']._serialized_end=364
|
39
|
-
_globals['_MODELOUTPUTSCHEMA']._serialized_start=366
|
40
|
-
_globals['_MODELOUTPUTSCHEMA']._serialized_end=467
|
41
|
-
_globals['_MODELDEFINITION']._serialized_start=470
|
42
|
-
_globals['_MODELDEFINITION']._serialized_end=1268
|
43
|
-
_globals['_MODELDEFINITION_PARAMETERSENTRY']._serialized_start=909
|
44
|
-
_globals['_MODELDEFINITION_PARAMETERSENTRY']._serialized_end=992
|
45
|
-
_globals['_MODELDEFINITION_INPUTSENTRY']._serialized_start=994
|
46
|
-
_globals['_MODELDEFINITION_INPUTSENTRY']._serialized_end=1075
|
47
|
-
_globals['_MODELDEFINITION_OUTPUTSENTRY']._serialized_start=1077
|
48
|
-
_globals['_MODELDEFINITION_OUTPUTSENTRY']._serialized_end=1160
|
49
|
-
_globals['_MODELDEFINITION_STATICATTRIBUTESENTRY']._serialized_start=1162
|
50
|
-
_globals['_MODELDEFINITION_STATICATTRIBUTESENTRY']._serialized_end=1242
|
51
|
-
# @@protoc_insertion_point(module_scope)
|
@@ -1,32 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/object_id.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import type_pb2 as tracdap_dot_metadata_dot_type__pb2
|
16
|
-
|
17
|
-
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n tracdap/metadata/object_id.proto\x12\x10tracdap.metadata\x1a\x1btracdap/metadata/type.proto\"\x98\x02\n\tTagHeader\x12\x30\n\nobjectType\x18\x01 \x01(\x0e\x32\x1c.tracdap.metadata.ObjectType\x12\x10\n\x08objectId\x18\x02 \x01(\t\x12\x15\n\robjectVersion\x18\x03 \x01(\x05\x12\x38\n\x0fobjectTimestamp\x18\x04 \x01(\x0b\x32\x1f.tracdap.metadata.DatetimeValue\x12\x12\n\ntagVersion\x18\x05 \x01(\x05\x12\x35\n\x0ctagTimestamp\x18\x06 \x01(\x0b\x32\x1f.tracdap.metadata.DatetimeValue\x12\x16\n\x0eisLatestObject\x18\x07 \x01(\x08\x12\x13\n\x0bisLatestTag\x18\x08 \x01(\x08\"\xb9\x02\n\x0bTagSelector\x12\x30\n\nobjectType\x18\x01 \x01(\x0e\x32\x1c.tracdap.metadata.ObjectType\x12\x10\n\x08objectId\x18\x02 \x01(\t\x12\x16\n\x0clatestObject\x18\x03 \x01(\x08H\x00\x12\x17\n\robjectVersion\x18\x04 \x01(\x05H\x00\x12\x35\n\nobjectAsOf\x18\x05 \x01(\x0b\x32\x1f.tracdap.metadata.DatetimeValueH\x00\x12\x13\n\tlatestTag\x18\x06 \x01(\x08H\x01\x12\x14\n\ntagVersion\x18\x07 \x01(\x05H\x01\x12\x32\n\x07tagAsOf\x18\x08 \x01(\x0b\x32\x1f.tracdap.metadata.DatetimeValueH\x01\x42\x10\n\x0eobjectCriteriaB\r\n\x0btagCriteria*|\n\nObjectType\x12\x17\n\x13OBJECT_TYPE_NOT_SET\x10\x00\x12\x08\n\x04\x44\x41TA\x10\x01\x12\t\n\x05MODEL\x10\x02\x12\x08\n\x04\x46LOW\x10\x03\x12\x07\n\x03JOB\x10\x04\x12\x08\n\x04\x46ILE\x10\x05\x12\n\n\x06\x43USTOM\x10\x06\x12\x0b\n\x07STORAGE\x10\x07\x12\n\n\x06SCHEMA\x10\x08\x42\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
19
|
-
|
20
|
-
_globals = globals()
|
21
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
22
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.object_id_pb2', _globals)
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
24
|
-
_globals['DESCRIPTOR']._options = None
|
25
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
26
|
-
_globals['_OBJECTTYPE']._serialized_start=682
|
27
|
-
_globals['_OBJECTTYPE']._serialized_end=806
|
28
|
-
_globals['_TAGHEADER']._serialized_start=84
|
29
|
-
_globals['_TAGHEADER']._serialized_end=364
|
30
|
-
_globals['_TAGSELECTOR']._serialized_start=367
|
31
|
-
_globals['_TAGSELECTOR']._serialized_end=680
|
32
|
-
# @@protoc_insertion_point(module_scope)
|
@@ -1,35 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/object.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
16
|
-
from tracdap.metadata import data_pb2 as tracdap_dot_metadata_dot_data__pb2
|
17
|
-
from tracdap.metadata import model_pb2 as tracdap_dot_metadata_dot_model__pb2
|
18
|
-
from tracdap.metadata import flow_pb2 as tracdap_dot_metadata_dot_flow__pb2
|
19
|
-
from tracdap.metadata import job_pb2 as tracdap_dot_metadata_dot_job__pb2
|
20
|
-
from tracdap.metadata import file_pb2 as tracdap_dot_metadata_dot_file__pb2
|
21
|
-
from tracdap.metadata import custom_pb2 as tracdap_dot_metadata_dot_custom__pb2
|
22
|
-
from tracdap.metadata import stoarge_pb2 as tracdap_dot_metadata_dot_stoarge__pb2
|
23
|
-
|
24
|
-
|
25
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dtracdap/metadata/object.proto\x12\x10tracdap.metadata\x1a tracdap/metadata/object_id.proto\x1a\x1btracdap/metadata/data.proto\x1a\x1ctracdap/metadata/model.proto\x1a\x1btracdap/metadata/flow.proto\x1a\x1atracdap/metadata/job.proto\x1a\x1btracdap/metadata/file.proto\x1a\x1dtracdap/metadata/custom.proto\x1a\x1etracdap/metadata/stoarge.proto\"\xf0\x03\n\x10ObjectDefinition\x12\x30\n\nobjectType\x18\x01 \x01(\x0e\x32\x1c.tracdap.metadata.ObjectType\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .tracdap.metadata.DataDefinitionH\x00\x12\x32\n\x05model\x18\x03 \x01(\x0b\x32!.tracdap.metadata.ModelDefinitionH\x00\x12\x30\n\x04\x66low\x18\x04 \x01(\x0b\x32 .tracdap.metadata.FlowDefinitionH\x00\x12.\n\x03job\x18\x05 \x01(\x0b\x32\x1f.tracdap.metadata.JobDefinitionH\x00\x12\x30\n\x04\x66ile\x18\x06 \x01(\x0b\x32 .tracdap.metadata.FileDefinitionH\x00\x12\x34\n\x06\x63ustom\x18\x07 \x01(\x0b\x32\".tracdap.metadata.CustomDefinitionH\x00\x12\x36\n\x07storage\x18\x08 \x01(\x0b\x32#.tracdap.metadata.StorageDefinitionH\x00\x12\x34\n\x06schema\x18\t \x01(\x0b\x32\".tracdap.metadata.SchemaDefinitionH\x00\x42\x0c\n\ndefinitionB2\n\x1aorg.finos.tracdap.metadataB\x12ObjectProtoWrapperP\x01\x62\x06proto3')
|
26
|
-
|
27
|
-
_globals = globals()
|
28
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
29
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.object_pb2', _globals)
|
30
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
31
|
-
_globals['DESCRIPTOR']._options = None
|
32
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataB\022ObjectProtoWrapperP\001'
|
33
|
-
_globals['_OBJECTDEFINITION']._serialized_start=294
|
34
|
-
_globals['_OBJECTDEFINITION']._serialized_end=790
|
35
|
-
# @@protoc_insertion_point(module_scope)
|
@@ -1,39 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/search.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import type_pb2 as tracdap_dot_metadata_dot_type__pb2
|
16
|
-
from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
|
17
|
-
|
18
|
-
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dtracdap/metadata/search.proto\x12\x10tracdap.metadata\x1a\x1btracdap/metadata/type.proto\x1a tracdap/metadata/object_id.proto\"\xaf\x01\n\nSearchTerm\x12\x10\n\x08\x61ttrName\x18\x01 \x01(\t\x12-\n\x08\x61ttrType\x18\x02 \x01(\x0e\x32\x1b.tracdap.metadata.BasicType\x12\x32\n\x08operator\x18\x03 \x01(\x0e\x32 .tracdap.metadata.SearchOperator\x12,\n\x0bsearchValue\x18\x04 \x01(\x0b\x32\x17.tracdap.metadata.Value\"z\n\x11LogicalExpression\x12\x33\n\x08operator\x18\x01 \x01(\x0e\x32!.tracdap.metadata.LogicalOperator\x12\x30\n\x04\x65xpr\x18\x02 \x03(\x0b\x32\".tracdap.metadata.SearchExpression\"\x80\x01\n\x10SearchExpression\x12,\n\x04term\x18\x01 \x01(\x0b\x32\x1c.tracdap.metadata.SearchTermH\x00\x12\x36\n\x07logical\x18\x02 \x01(\x0b\x32#.tracdap.metadata.LogicalExpressionH\x00\x42\x06\n\x04\x65xpr\"\xeb\x01\n\x10SearchParameters\x12\x30\n\nobjectType\x18\x01 \x01(\x0e\x32\x1c.tracdap.metadata.ObjectType\x12\x32\n\x06search\x18\x02 \x01(\x0b\x32\".tracdap.metadata.SearchExpression\x12\x38\n\nsearchAsOf\x18\x03 \x01(\x0b\x32\x1f.tracdap.metadata.DatetimeValueH\x00\x88\x01\x01\x12\x15\n\rpriorVersions\x18\x04 \x01(\x08\x12\x11\n\tpriorTags\x18\x05 \x01(\x08\x42\r\n\x0b_searchAsOf*q\n\x0eSearchOperator\x12\x1b\n\x17SEARCH_OPERATOR_NOT_SET\x10\x00\x12\x06\n\x02\x45Q\x10\x01\x12\x06\n\x02NE\x10\x02\x12\x06\n\x02LT\x10\x03\x12\x06\n\x02LE\x10\x04\x12\x06\n\x02GT\x10\x05\x12\x06\n\x02GE\x10\x06\x12\x06\n\x02IN\x10\x07\x12\n\n\x06\x45XISTS\x10\x08*I\n\x0fLogicalOperator\x12\x1c\n\x18LOGICAL_OPERATOR_NOT_SET\x10\x00\x12\x07\n\x03\x41ND\x10\x01\x12\x06\n\x02OR\x10\x02\x12\x07\n\x03NOT\x10\x03\x42\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
20
|
-
|
21
|
-
_globals = globals()
|
22
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
23
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.search_pb2', _globals)
|
24
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
25
|
-
_globals['DESCRIPTOR']._options = None
|
26
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
27
|
-
_globals['_SEARCHOPERATOR']._serialized_start=785
|
28
|
-
_globals['_SEARCHOPERATOR']._serialized_end=898
|
29
|
-
_globals['_LOGICALOPERATOR']._serialized_start=900
|
30
|
-
_globals['_LOGICALOPERATOR']._serialized_end=973
|
31
|
-
_globals['_SEARCHTERM']._serialized_start=115
|
32
|
-
_globals['_SEARCHTERM']._serialized_end=290
|
33
|
-
_globals['_LOGICALEXPRESSION']._serialized_start=292
|
34
|
-
_globals['_LOGICALEXPRESSION']._serialized_end=414
|
35
|
-
_globals['_SEARCHEXPRESSION']._serialized_start=417
|
36
|
-
_globals['_SEARCHEXPRESSION']._serialized_end=545
|
37
|
-
_globals['_SEARCHPARAMETERS']._serialized_start=548
|
38
|
-
_globals['_SEARCHPARAMETERS']._serialized_end=783
|
39
|
-
# @@protoc_insertion_point(module_scope)
|
@@ -1,50 +0,0 @@
|
|
1
|
-
# -*- coding: utf-8 -*-
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
-
# source: tracdap/metadata/stoarge.proto
|
4
|
-
# Protobuf Python Version: 4.25.3
|
5
|
-
"""Generated protocol buffer code."""
|
6
|
-
from google.protobuf import descriptor as _descriptor
|
7
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
|
-
from google.protobuf import symbol_database as _symbol_database
|
9
|
-
from google.protobuf.internal import builder as _builder
|
10
|
-
# @@protoc_insertion_point(imports)
|
11
|
-
|
12
|
-
_sym_db = _symbol_database.Default()
|
13
|
-
|
14
|
-
|
15
|
-
from tracdap.metadata import type_pb2 as tracdap_dot_metadata_dot_type__pb2
|
16
|
-
|
17
|
-
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1etracdap/metadata/stoarge.proto\x12\x10tracdap.metadata\x1a\x1btracdap/metadata/type.proto\"\xd2\x02\n\x0bStorageCopy\x12\x12\n\nstorageKey\x18\x01 \x01(\t\x12\x13\n\x0bstoragePath\x18\x02 \x01(\t\x12\x15\n\rstorageFormat\x18\x03 \x01(\t\x12\x30\n\ncopyStatus\x18\x04 \x01(\x0e\x32\x1c.tracdap.metadata.CopyStatus\x12\x36\n\rcopyTimestamp\x18\x05 \x01(\x0b\x32\x1f.tracdap.metadata.DatetimeValue\x12I\n\x0estorageOptions\x18\x06 \x03(\x0b\x32\x31.tracdap.metadata.StorageCopy.StorageOptionsEntry\x1aN\n\x13StorageOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.tracdap.metadata.Value:\x02\x38\x01\"\xdc\x01\n\x12StorageIncarnation\x12-\n\x06\x63opies\x18\x01 \x03(\x0b\x32\x1d.tracdap.metadata.StorageCopy\x12\x18\n\x10incarnationIndex\x18\x02 \x01(\x05\x12=\n\x14incarnationTimestamp\x18\x03 \x01(\x0b\x32\x1f.tracdap.metadata.DatetimeValue\x12>\n\x11incarnationStatus\x18\x04 \x01(\x0e\x32#.tracdap.metadata.IncarnationStatus\"I\n\x0bStorageItem\x12:\n\x0cincarnations\x18\x01 \x03(\x0b\x32$.tracdap.metadata.StorageIncarnation\"\xe1\x02\n\x11StorageDefinition\x12\x45\n\tdataItems\x18\x01 \x03(\x0b\x32\x32.tracdap.metadata.StorageDefinition.DataItemsEntry\x12O\n\x0estorageOptions\x18\x03 \x03(\x0b\x32\x37.tracdap.metadata.StorageDefinition.StorageOptionsEntry\x1aO\n\x0e\x44\x61taItemsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.metadata.StorageItem:\x02\x38\x01\x1aN\n\x13StorageOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12&\n\x05value\x18\x02 \x01(\x0b\x32\x17.tracdap.metadata.Value:\x02\x38\x01J\x04\x08\x02\x10\x03R\rstorageFormat*L\n\nCopyStatus\x12\x17\n\x13\x43OPY_STATUS_NOT_SET\x10\x00\x12\x12\n\x0e\x43OPY_AVAILABLE\x10\x01\x12\x11\n\rCOPY_EXPUNGED\x10\x02*h\n\x11IncarnationStatus\x12\x1e\n\x1aINCARNATION_STATUS_NOT_SET\x10\x00\x12\x19\n\x15INCARNATION_AVAILABLE\x10\x01\x12\x18\n\x14INCARNATION_EXPUNGED\x10\x02\x42\x1e\n\x1aorg.finos.tracdap.metadataP\x01\x62\x06proto3')
|
19
|
-
|
20
|
-
_globals = globals()
|
21
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
22
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.metadata.stoarge_pb2', _globals)
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS == False:
|
24
|
-
_globals['DESCRIPTOR']._options = None
|
25
|
-
_globals['DESCRIPTOR']._serialized_options = b'\n\032org.finos.tracdap.metadataP\001'
|
26
|
-
_globals['_STORAGECOPY_STORAGEOPTIONSENTRY']._options = None
|
27
|
-
_globals['_STORAGECOPY_STORAGEOPTIONSENTRY']._serialized_options = b'8\001'
|
28
|
-
_globals['_STORAGEDEFINITION_DATAITEMSENTRY']._options = None
|
29
|
-
_globals['_STORAGEDEFINITION_DATAITEMSENTRY']._serialized_options = b'8\001'
|
30
|
-
_globals['_STORAGEDEFINITION_STORAGEOPTIONSENTRY']._options = None
|
31
|
-
_globals['_STORAGEDEFINITION_STORAGEOPTIONSENTRY']._serialized_options = b'8\001'
|
32
|
-
_globals['_COPYSTATUS']._serialized_start=1076
|
33
|
-
_globals['_COPYSTATUS']._serialized_end=1152
|
34
|
-
_globals['_INCARNATIONSTATUS']._serialized_start=1154
|
35
|
-
_globals['_INCARNATIONSTATUS']._serialized_end=1258
|
36
|
-
_globals['_STORAGECOPY']._serialized_start=82
|
37
|
-
_globals['_STORAGECOPY']._serialized_end=420
|
38
|
-
_globals['_STORAGECOPY_STORAGEOPTIONSENTRY']._serialized_start=342
|
39
|
-
_globals['_STORAGECOPY_STORAGEOPTIONSENTRY']._serialized_end=420
|
40
|
-
_globals['_STORAGEINCARNATION']._serialized_start=423
|
41
|
-
_globals['_STORAGEINCARNATION']._serialized_end=643
|
42
|
-
_globals['_STORAGEITEM']._serialized_start=645
|
43
|
-
_globals['_STORAGEITEM']._serialized_end=718
|
44
|
-
_globals['_STORAGEDEFINITION']._serialized_start=721
|
45
|
-
_globals['_STORAGEDEFINITION']._serialized_end=1074
|
46
|
-
_globals['_STORAGEDEFINITION_DATAITEMSENTRY']._serialized_start=894
|
47
|
-
_globals['_STORAGEDEFINITION_DATAITEMSENTRY']._serialized_end=973
|
48
|
-
_globals['_STORAGEDEFINITION_STORAGEOPTIONSENTRY']._serialized_start=342
|
49
|
-
_globals['_STORAGEDEFINITION_STORAGEOPTIONSENTRY']._serialized_end=420
|
50
|
-
# @@protoc_insertion_point(module_scope)
|