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.
Files changed (102) hide show
  1. tracdap/rt/_exec/actors.py +87 -10
  2. tracdap/rt/_exec/context.py +25 -1
  3. tracdap/rt/_exec/dev_mode.py +277 -221
  4. tracdap/rt/_exec/engine.py +79 -14
  5. tracdap/rt/_exec/functions.py +37 -8
  6. tracdap/rt/_exec/graph.py +2 -0
  7. tracdap/rt/_exec/graph_builder.py +118 -56
  8. tracdap/rt/_exec/runtime.py +108 -37
  9. tracdap/rt/_exec/server.py +345 -0
  10. tracdap/rt/_impl/config_parser.py +219 -49
  11. tracdap/rt/_impl/data.py +14 -0
  12. tracdap/rt/_impl/grpc/__init__.py +13 -0
  13. tracdap/rt/_impl/grpc/codec.py +99 -0
  14. tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py +51 -0
  15. tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi +61 -0
  16. tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py +183 -0
  17. tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py +33 -0
  18. tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi +34 -0
  19. tracdap/rt/{metadata → _impl/grpc/tracdap/metadata}/custom_pb2.py +5 -5
  20. tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi +15 -0
  21. tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py +51 -0
  22. tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi +115 -0
  23. tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py +28 -0
  24. tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi +22 -0
  25. tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py +59 -0
  26. tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi +109 -0
  27. tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py +76 -0
  28. tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi +177 -0
  29. tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py +63 -0
  30. tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi +119 -0
  31. tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py +32 -0
  32. tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi +68 -0
  33. tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py +40 -0
  34. tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi +46 -0
  35. tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py +39 -0
  36. tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi +83 -0
  37. tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py +50 -0
  38. tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.pyi +89 -0
  39. tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.py +34 -0
  40. tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.pyi +26 -0
  41. tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.py +30 -0
  42. tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.pyi +34 -0
  43. tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py +47 -0
  44. tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi +101 -0
  45. tracdap/rt/_impl/guard_rails.py +26 -6
  46. tracdap/rt/_impl/models.py +25 -0
  47. tracdap/rt/_impl/static_api.py +27 -9
  48. tracdap/rt/_impl/type_system.py +17 -0
  49. tracdap/rt/_impl/validation.py +10 -0
  50. tracdap/rt/_plugins/config_local.py +49 -0
  51. tracdap/rt/_version.py +1 -1
  52. tracdap/rt/api/hook.py +10 -3
  53. tracdap/rt/api/model_api.py +22 -0
  54. tracdap/rt/api/static_api.py +79 -19
  55. tracdap/rt/config/__init__.py +3 -3
  56. tracdap/rt/config/common.py +10 -0
  57. tracdap/rt/config/platform.py +9 -19
  58. tracdap/rt/config/runtime.py +2 -0
  59. tracdap/rt/ext/config.py +34 -0
  60. tracdap/rt/ext/embed.py +1 -3
  61. tracdap/rt/ext/plugins.py +47 -6
  62. tracdap/rt/launch/cli.py +7 -5
  63. tracdap/rt/launch/launch.py +49 -12
  64. tracdap/rt/metadata/__init__.py +24 -24
  65. tracdap/rt/metadata/common.py +7 -7
  66. tracdap/rt/metadata/custom.py +2 -0
  67. tracdap/rt/metadata/data.py +28 -5
  68. tracdap/rt/metadata/file.py +2 -0
  69. tracdap/rt/metadata/flow.py +66 -4
  70. tracdap/rt/metadata/job.py +56 -16
  71. tracdap/rt/metadata/model.py +10 -0
  72. tracdap/rt/metadata/object.py +3 -0
  73. tracdap/rt/metadata/object_id.py +9 -9
  74. tracdap/rt/metadata/search.py +35 -13
  75. tracdap/rt/metadata/stoarge.py +64 -6
  76. tracdap/rt/metadata/tag_update.py +21 -7
  77. tracdap/rt/metadata/type.py +28 -13
  78. {tracdap_runtime-0.6.1.dev3.dist-info → tracdap_runtime-0.6.3.dist-info}/METADATA +22 -19
  79. tracdap_runtime-0.6.3.dist-info/RECORD +112 -0
  80. {tracdap_runtime-0.6.1.dev3.dist-info → tracdap_runtime-0.6.3.dist-info}/WHEEL +1 -1
  81. tracdap/rt/config/common_pb2.py +0 -55
  82. tracdap/rt/config/job_pb2.py +0 -42
  83. tracdap/rt/config/platform_pb2.py +0 -71
  84. tracdap/rt/config/result_pb2.py +0 -37
  85. tracdap/rt/config/runtime_pb2.py +0 -42
  86. tracdap/rt/ext/_guard.py +0 -37
  87. tracdap/rt/metadata/common_pb2.py +0 -33
  88. tracdap/rt/metadata/data_pb2.py +0 -51
  89. tracdap/rt/metadata/file_pb2.py +0 -28
  90. tracdap/rt/metadata/flow_pb2.py +0 -55
  91. tracdap/rt/metadata/job_pb2.py +0 -76
  92. tracdap/rt/metadata/model_pb2.py +0 -51
  93. tracdap/rt/metadata/object_id_pb2.py +0 -32
  94. tracdap/rt/metadata/object_pb2.py +0 -35
  95. tracdap/rt/metadata/search_pb2.py +0 -39
  96. tracdap/rt/metadata/stoarge_pb2.py +0 -50
  97. tracdap/rt/metadata/tag_pb2.py +0 -34
  98. tracdap/rt/metadata/tag_update_pb2.py +0 -30
  99. tracdap/rt/metadata/type_pb2.py +0 -48
  100. tracdap_runtime-0.6.1.dev3.dist-info/RECORD +0 -96
  101. {tracdap_runtime-0.6.1.dev3.dist-info → tracdap_runtime-0.6.3.dist-info}/LICENSE +0 -0
  102. {tracdap_runtime-0.6.1.dev3.dist-info → tracdap_runtime-0.6.3.dist-info}/top_level.txt +0 -0
@@ -10,25 +10,56 @@ from .type import * # noqa
10
10
 
11
11
  class CopyStatus(_enum.Enum):
12
12
 
13
- COPY_STATUS_NOT_SET = 0,
13
+ """
14
+ Status of an individual copy of a data storage item
15
+
16
+ .. seealso::
17
+ :class:`StorageDefinition <StorageDefinition>`,
18
+ :class:`StorageCopy <StorageCopy>`
19
+ """
14
20
 
15
- COPY_AVAILABLE = 1,
21
+ COPY_STATUS_NOT_SET = 0
16
22
 
17
- COPY_EXPUNGED = 2,
23
+ COPY_AVAILABLE = 1
24
+
25
+ """The copy of the data item is available in storage to access"""
26
+
27
+ COPY_EXPUNGED = 2
28
+
29
+ """The copy of the data item has been expunged and is no longer available"""
18
30
 
19
31
 
20
32
  class IncarnationStatus(_enum.Enum):
21
33
 
22
- INCARNATION_STATUS_NOT_SET = 0,
34
+ """
35
+ Status of an individual incarnation of a data storage item
36
+
37
+ .. seealso::
38
+ :class:`StorageDefinition <StorageDefinition>`,
39
+ :class:`StorageIncarnation <StorageIncarnation>`
40
+ """
41
+
42
+ INCARNATION_STATUS_NOT_SET = 0
43
+
44
+ INCARNATION_AVAILABLE = 1
23
45
 
24
- INCARNATION_AVAILABLE = 1,
46
+ """The incarnation of the data item has at least one copy available in storage"""
25
47
 
26
- INCARNATION_EXPUNGED = 2,
48
+ INCARNATION_EXPUNGED = 2
49
+
50
+ """This incarnation of the data item is no longer available in storage, all copies have been expunged"""
27
51
 
28
52
 
29
53
  @_dc.dataclass
30
54
  class StorageCopy:
31
55
 
56
+ """
57
+ Define physical storage for an individual copy of a data item
58
+
59
+ .. seealso::
60
+ :class:`StorageDefinition <StorageDefinition>`
61
+ """
62
+
32
63
  storageKey: str = None
33
64
 
34
65
  storagePath: str = None
@@ -45,6 +76,13 @@ class StorageCopy:
45
76
  @_dc.dataclass
46
77
  class StorageIncarnation:
47
78
 
79
+ """
80
+ Define physical storage for an individual incarnation of a data item
81
+
82
+ .. seealso::
83
+ :class:`StorageDefinition <StorageDefinition>`
84
+ """
85
+
48
86
  copies: _tp.List[StorageCopy] = _dc.field(default_factory=list)
49
87
 
50
88
  incarnationIndex: int = None
@@ -57,12 +95,32 @@ class StorageIncarnation:
57
95
  @_dc.dataclass
58
96
  class StorageItem:
59
97
 
98
+ """
99
+ Define physical storage for an individual data item
100
+
101
+ .. seealso::
102
+ :class:`StorageDefinition <StorageDefinition>`
103
+ """
104
+
60
105
  incarnations: _tp.List[StorageIncarnation] = _dc.field(default_factory=list)
61
106
 
62
107
 
63
108
  @_dc.dataclass
64
109
  class StorageDefinition:
65
110
 
111
+ """
112
+ Defines the physical storage for a file or dataset object
113
+
114
+ Each storage item corresponds to one logical data item, such as a version of
115
+ a file or a snapshot of a data partition. Storage for each item is broken down
116
+ into incarnations (data that has been expunged and recomputed) and copies
117
+ (physical file-level copies for resilience, locality etc).
118
+
119
+ .. seealso::
120
+ :class:`DataDefinition <DataDefinition>`,
121
+ :class:`FileDefinition <FileDefinition>`
122
+ """
123
+
66
124
  dataItems: _tp.Dict[str, StorageItem] = _dc.field(default_factory=dict)
67
125
 
68
126
  storageOptions: _tp.Dict[str, Value] = _dc.field(default_factory=dict)
@@ -17,7 +17,9 @@ class TagOperation(_enum.Enum):
17
17
  :class:`TagUpdate <TagUpdate>`
18
18
  """
19
19
 
20
- CREATE_OR_REPLACE_ATTR = 0, """Add an attribute to a tag or replace it if it already exists.
20
+ CREATE_OR_REPLACE_ATTR = 0
21
+
22
+ """Add an attribute to a tag or replace it if it already exists.
21
23
 
22
24
  This is the default operation if no operation is specified. If the
23
25
  attribute does not exist it will be created using CREATE_ATTR, otherwise
@@ -28,7 +30,9 @@ class TagOperation(_enum.Enum):
28
30
  :class:`REPLACE_ATTR <TagOperation.REPLACE_ATTR>`
29
31
  """
30
32
 
31
- CREATE_OR_APPEND_ATTR = 1, """Add an attribute to a tag or append to it if it already exists.
33
+ CREATE_OR_APPEND_ATTR = 1
34
+
35
+ """Add an attribute to a tag or append to it if it already exists.
32
36
 
33
37
  If the attribute does not exist it will be created using CREATE_ATTR,
34
38
  otherwise it will appended to using APPEND_ATTR.
@@ -38,9 +42,13 @@ class TagOperation(_enum.Enum):
38
42
  :class:`APPEND_ATTR <TagOperation.APPEND_ATTR>`
39
43
  """
40
44
 
41
- CREATE_ATTR = 2, """Add an attribute to a tag, fail if the attribute already exists."""
45
+ CREATE_ATTR = 2
46
+
47
+ """Add an attribute to a tag, fail if the attribute already exists."""
48
+
49
+ REPLACE_ATTR = 3
42
50
 
43
- REPLACE_ATTR = 3, """Replace an attribute on a tag, fail if the attribute does not exist.
51
+ """Replace an attribute on a tag, fail if the attribute does not exist.
44
52
 
45
53
  When replacing an attribute, the new attribute must be of the same basic
46
54
  type as the old one. It is allowed to replace a single-valued attribute
@@ -53,7 +61,9 @@ class TagOperation(_enum.Enum):
53
61
  DELETE_ATTR followed by CREATE_ATTR.
54
62
  """
55
63
 
56
- APPEND_ATTR = 4, """Append one or more values to an existing attribute, fail if the attribute
64
+ APPEND_ATTR = 4
65
+
66
+ """Append one or more values to an existing attribute, fail if the attribute
57
67
  does not exist.
58
68
 
59
69
  The existing attribute may be single- or multi-valued and the append
@@ -62,9 +72,13 @@ class TagOperation(_enum.Enum):
62
72
  existing value(s).
63
73
  """
64
74
 
65
- DELETE_ATTR = 5, """Remove an attribute from a tag, fail if the attribute does not exist."""
75
+ DELETE_ATTR = 5
76
+
77
+ """Remove an attribute from a tag, fail if the attribute does not exist."""
78
+
79
+ CLEAR_ALL_ATTR = 6
66
80
 
67
- CLEAR_ALL_ATTR = 6, """Remove all the attributes from a tag.
81
+ """Remove all the attributes from a tag.
68
82
 
69
83
  This operation does not affect controlled attributes, which are still
70
84
  managed by TRAC according to its normal rules.
@@ -5,29 +5,36 @@ import typing as _tp # noqa
5
5
  import dataclasses as _dc # noqa
6
6
  import enum as _enum # noqa
7
7
 
8
- from .common import * # noqa
9
-
10
-
11
8
  class BasicType(_enum.Enum):
12
9
 
13
10
  """Basic types provide the set of core types available in the TRAC type system."""
14
11
 
15
- BASIC_TYPE_NOT_SET = 0,
12
+ BASIC_TYPE_NOT_SET = 0
13
+
14
+ BOOLEAN = 1
15
+
16
+ """A true/false value"""
17
+
18
+ INTEGER = 2
19
+
20
+ """64 bit signed integer"""
16
21
 
17
- BOOLEAN = 1, """A true/false value"""
22
+ FLOAT = 3
18
23
 
19
- INTEGER = 2, """64 bit signed integer"""
24
+ """64 bit signed floating point number (referred to as 'double' in many languages)"""
20
25
 
21
- FLOAT = 3, """64 bit signed floating point number (referred to as 'double' in many languages)"""
26
+ STRING = 4
22
27
 
23
- STRING = 4, """UTF encoded string value of arbitrary length.
28
+ """UTF encoded string value of arbitrary length.
24
29
 
25
30
  The encoding used (e.g. UTF-8, UTF-16, UCS-16) varies between languages / platforms,
26
31
  generally TRAC will present strings using the standard encoding for a given language or
27
32
  protocol.
28
33
  """
29
34
 
30
- DECIMAL = 5, """A fixed-point decimal value with known precision and scale.
35
+ DECIMAL = 5
36
+
37
+ """A fixed-point decimal value with known precision and scale.
31
38
 
32
39
  The available precision and scale may vary between languages / platforms.
33
40
 
@@ -37,12 +44,16 @@ class BasicType(_enum.Enum):
37
44
  precision - scale >= 21
38
45
  """
39
46
 
40
- DATE = 6, """A date value.
47
+ DATE = 6
48
+
49
+ """A date value.
41
50
 
42
51
  Dates do not take any account of time zones or offsets from UTC.
43
52
  """
44
53
 
45
- DATETIME = 7, """A date-time value.
54
+ DATETIME = 7
55
+
56
+ """A date-time value.
46
57
 
47
58
  Date-time values may be expressed with an offset from UTC, as per ISO 8601.
48
59
  The available sub-second precision may vary depending on language / platform.
@@ -52,12 +63,16 @@ class BasicType(_enum.Enum):
52
63
  supplied with an offset.
53
64
  """
54
65
 
55
- ARRAY = 8, """An array of values, which may be primitive or composite values.
66
+ ARRAY = 8
67
+
68
+ """An array of values, which may be primitive or composite values.
56
69
 
57
70
  All items in an array must have the same type (i.e. the same type descriptor).
58
71
  """
59
72
 
60
- MAP = 9, """An key-value map with string keys, values may be primitive or composite values.
73
+ MAP = 9
74
+
75
+ """An key-value map with string keys, values may be primitive or composite values.
61
76
 
62
77
  Maps may be uniform, in which case all the values are of the same type, or non-
63
78
  uniform in which case values can be of any type. For uniform maps the type
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tracdap-runtime
3
- Version: 0.6.1.dev3
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,28 +16,31 @@ Classifier: Operating System :: OS Independent
16
16
  Requires-Python: <3.13,>=3.8
17
17
  Description-Content-Type: text/markdown
18
18
  License-File: LICENSE
19
- Requires-Dist: protobuf ==4.25.3
20
- Requires-Dist: pyarrow ==16.0.0
21
- Requires-Dist: pyyaml ==6.0.1
22
- Requires-Dist: dulwich ==0.22.1
23
- Requires-Dist: requests ==2.32.3
24
- Requires-Dist: pandas <2.3.0,>=1.2.0
25
- Requires-Dist: numpy <2.0.0
19
+ Requires-Dist: protobuf==5.28.2
20
+ Requires-Dist: pyarrow==16.1.0
21
+ Requires-Dist: pyyaml==6.0.2
22
+ Requires-Dist: dulwich==0.22.1
23
+ Requires-Dist: requests==2.32.3
24
+ Requires-Dist: pandas<2.3.0,>=1.2.0
25
+ Requires-Dist: numpy<2.0.0
26
26
  Provides-Extra: aws
27
- Requires-Dist: botocore ==1.34.93 ; extra == 'aws'
28
- Requires-Dist: boto3 ==1.34.93 ; extra == 'aws'
27
+ Requires-Dist: botocore==1.34.93; extra == "aws"
28
+ Requires-Dist: boto3==1.34.93; extra == "aws"
29
29
  Provides-Extra: azure
30
- Requires-Dist: azure-core ==1.30.1 ; extra == 'azure'
31
- Requires-Dist: azure-identity ==1.16.1 ; extra == 'azure'
32
- Requires-Dist: azure-storage-blob ==12.19.1 ; extra == 'azure'
33
- Requires-Dist: adlfs ==2024.4.1 ; extra == 'azure'
30
+ Requires-Dist: azure-core==1.30.1; extra == "azure"
31
+ Requires-Dist: azure-identity==1.16.1; extra == "azure"
32
+ Requires-Dist: azure-storage-blob==12.19.1; extra == "azure"
33
+ Requires-Dist: adlfs==2024.4.1; extra == "azure"
34
34
  Provides-Extra: gcp
35
- Requires-Dist: google-auth ==2.29.0 ; extra == 'gcp'
36
- Requires-Dist: google-cloud-core ==2.4.1 ; extra == 'gcp'
37
- Requires-Dist: google-cloud-storage ==2.16.0 ; extra == 'gcp'
38
- Requires-Dist: gcsfs ==2024.3.1 ; extra == 'gcp'
35
+ Requires-Dist: google-auth==2.34.0; extra == "gcp"
36
+ Requires-Dist: google-api-core==2.19.2; extra == "gcp"
37
+ Requires-Dist: google-cloud-storage==2.18.2; extra == "gcp"
38
+ Requires-Dist: gcsfs==2024.3.1; extra == "gcp"
39
+ Provides-Extra: grpc
40
+ Requires-Dist: grpcio==1.66.1; extra == "grpc"
41
+ Requires-Dist: grpcio-status==1.66.1; extra == "grpc"
39
42
  Provides-Extra: spark
40
- Requires-Dist: pyspark <3.6.0,>=3.0.0 ; extra == 'spark'
43
+ Requires-Dist: pyspark<3.6.0,>=3.0.0; extra == "spark"
41
44
 
42
45
  # TRAC Model Runtime for Python
43
46
 
@@ -0,0 +1,112 @@
1
+ tracdap/rt/__init__.py,sha256=rz9ERpKMlnR4LFZNGLtdNE26B_Y2V168bdd8hRmasKk,643
2
+ tracdap/rt/_version.py,sha256=Vs6p7WbmHpml7FTgGhDVVuFwna58xT0_XJjXD7Tu2N0,631
3
+ tracdap/rt/exceptions.py,sha256=AV2o9g5d5miMoRfsYW3DZ6or4SLVGwcZjfw4UsQ-HTY,7907
4
+ tracdap/rt/_exec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ tracdap/rt/_exec/actors.py,sha256=CPSiLsEIPRbYfjeFjPcDqyPv3GKv-2nOFbUGqPOwnSA,34957
6
+ tracdap/rt/_exec/context.py,sha256=H0W5ukFHiSDcRVY6emLVUAF3z71xTRHgaJZn502yhEo,12751
7
+ tracdap/rt/_exec/dev_mode.py,sha256=wqYC_0AhBcQ0mkBR3qXM5r1UX1NLkq2MiTpQ60ok7eY,32320
8
+ tracdap/rt/_exec/engine.py,sha256=KQPCLYgIlbSrzsoMJxxvd9kwWi16yEp-Ms3fTVdzcAo,32130
9
+ tracdap/rt/_exec/functions.py,sha256=A21xIC0K1IsI6VBYtb-Oxv2pajegbl149bVmhgD6OuQ,24323
10
+ tracdap/rt/_exec/graph.py,sha256=wOzOLBD-dKwqFhJtbGg2r49g68CkDNaveK5yi6mmm2A,11084
11
+ tracdap/rt/_exec/graph_builder.py,sha256=waf74ogwfqSyxdU2yvwEwtNdt6U9qaExQdOZ7ghNY3M,32845
12
+ tracdap/rt/_exec/runtime.py,sha256=P9G0dqzl-9Rn-IZJppk1u9nib7OVG7UPEJaBxBQQl1Q,15942
13
+ tracdap/rt/_exec/server.py,sha256=Nq3r0Fvt5GjvdMUQs74vv8JelLR6F3F1xRQh5PCo1EY,12397
14
+ tracdap/rt/_impl/__init__.py,sha256=eBZMpgFx9uHJxMA-yMWHCQMvShTKxJRAizdz4vy5eWg,609
15
+ tracdap/rt/_impl/config_parser.py,sha256=ZIQpTGwx41nMh4RWt9KW1iheZ2zwjBeTrowysF2u3mM,22586
16
+ tracdap/rt/_impl/data.py,sha256=ZBt545h-qJnSIO-9vASkzzdg3T6L2_bcilqEtHTEbmU,32707
17
+ tracdap/rt/_impl/guard_rails.py,sha256=Pj_LafXK0uw6cwFUS5bL2hZfi4AzWTd6agQlaH0MHNY,11424
18
+ tracdap/rt/_impl/models.py,sha256=TZwR-Prnnvgclu8JMXyIb9K-H0M8FT-ye-SHf5WhfD8,10177
19
+ tracdap/rt/_impl/repos.py,sha256=bdpUkBbNOIQOKJQGOhCDdXUMz2bY91YNIYlKRKTtM4Y,2063
20
+ tracdap/rt/_impl/schemas.py,sha256=KhMvh_i2ZLx0-P6vzx8ro2-KbnB3upfJgryTHbXMJrs,7417
21
+ tracdap/rt/_impl/shim.py,sha256=WV9AldhKdt-oLuQ5x89Dkocdn_gJoYZEo9buHHFIYd8,23148
22
+ tracdap/rt/_impl/static_api.py,sha256=1SVCunntUWjM5TSuOScgzjVoe2bnrThxGv7OWlbT82s,8357
23
+ tracdap/rt/_impl/storage.py,sha256=vvu1Qlk0-GHqzNj0M33L_jB9eKv0dh9Fr9MBBiaQ2uM,35075
24
+ tracdap/rt/_impl/type_system.py,sha256=SBircgzdEIG324le7THmUuAxrJlqDVDyqcQOQVeCUjQ,12710
25
+ tracdap/rt/_impl/util.py,sha256=HeswbIL4dQHjWnCJL3-WEqwsQaYo-xnEuGRoaRJ7kyU,11075
26
+ tracdap/rt/_impl/validation.py,sha256=hBt3zcmFI7-X9LFLiJlA_gBWjyFZiaiZer3PtivFBVM,16771
27
+ tracdap/rt/_impl/grpc/__init__.py,sha256=VFwsBdvvDZhB9OmzGnVPNkApXql5KjYoVSnIteKWTRI,608
28
+ tracdap/rt/_impl/grpc/codec.py,sha256=OTDOET1F0mCvj9-mXRTgxZ2S7RQ9yjGrSWC4tKCQFVg,3783
29
+ tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.py,sha256=eH1JFEG4KwIhFAxMJfzw8JmpnTSNiY4seT_Mls2J2sM,5127
30
+ tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2.pyi,sha256=78VhnLgm_m6HSgQT0bg7j86O9g8GNMADkm3SotQ39lg,3227
31
+ tracdap/rt/_impl/grpc/tracdap/api/internal/runtime_pb2_grpc.py,sha256=6DA9EkXMa8KBOG2IUY4TnCmX1wyRJuV40tA9fLgQKyA,8461
32
+ tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.py,sha256=oql1naNGBKxpPIQZViewQSzUmMpt9U8gB-qSJpxkBwo,1945
33
+ tracdap/rt/_impl/grpc/tracdap/metadata/common_pb2.pyi,sha256=R7fTC8HV0j8zB2E2KVtLWXSAeu5MVLrgeL-PnnOsUxg,1275
34
+ tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.py,sha256=DfHhxxvKU_htkLjUdvsVfxl8Gj8z5GenAuhCSuMT6Ps,1421
35
+ tracdap/rt/_impl/grpc/tracdap/metadata/custom_pb2.pyi,sha256=_GubsAG9rpuV_QhhXKTDOPeWIpkAkg5jlHkSZxaILak,702
36
+ tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.py,sha256=1ZJWSAtULaLxts2h4LRaHhk_wUqVEvDTCidqpOYo4FU,5220
37
+ tracdap/rt/_impl/grpc/tracdap/metadata/data_pb2.pyi,sha256=6F7O59tKIXWMFmmCm8zMJQKPQ3hM-fJ8px25Z_ae_Nc,5856
38
+ tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.py,sha256=FwZ9CZrS6-n96sYjV_EQXzviRRnjAs1bDahOSfbJ_v0,1748
39
+ tracdap/rt/_impl/grpc/tracdap/metadata/file_pb2.pyi,sha256=nRBVl47NUBTOLUJ7HOeztUMJoh9sVbPtqpxKLcCMEEw,1085
40
+ tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.py,sha256=GyY4iaqp9wtZ29byMllPmk4o2nosUgdazdqf9KKUg-g,5799
41
+ tracdap/rt/_impl/grpc/tracdap/metadata/flow_pb2.pyi,sha256=yCP4usBn7VWxFWdlB6NERiCd0R7BqqmH5k29WdKNk04,5880
42
+ tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.py,sha256=iuHQEwWXSlbr76XPiv3txYinpRqkllSfrSIjhXVRTCs,8305
43
+ tracdap/rt/_impl/grpc/tracdap/metadata/job_pb2.pyi,sha256=n1OEkSYBCPRLNWo1JtvwQwiOXC4xw5a6OWvloNvMlZ8,9411
44
+ tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.py,sha256=9PgK1n1IcbdZ5Ggwl3wnnkWzgk_FsmdV7N1ot-F2VQA,6647
45
+ tracdap/rt/_impl/grpc/tracdap/metadata/model_pb2.pyi,sha256=M3GwnkPr55D5teeKtxayO28JHsArEaCEcOUETFllxnY,6335
46
+ tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.py,sha256=cdNa1Byx6jvZPeakr28VrsEkGIj6av1xvdOM1N8NtuE,2933
47
+ tracdap/rt/_impl/grpc/tracdap/metadata/object_id_pb2.pyi,sha256=vWMjD_CG4ozUBSVsl44kjux-Qr-L_7cLgvQRpuUM7x0,3238
48
+ tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.py,sha256=G5MkYnJ7Nx_US_bjJw4KFtijbHcOHbgb_Bq1VN7hSd0,4378
49
+ tracdap/rt/_impl/grpc/tracdap/metadata/object_pb2.pyi,sha256=BSTvD36Vvk1WrbplWwv5ZLGWIX-zHug5moAWYGO5HZc,3010
50
+ tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.py,sha256=YsUl-xK3jOQ6mOMCPe8G3-BWOFFz-MpUOXDWMV90DrQ,3654
51
+ tracdap/rt/_impl/grpc/tracdap/metadata/search_pb2.pyi,sha256=PU-OYKRufI3v5Zx8RI4RvEZq3KPh91AOb8sDNwxyySY,3762
52
+ tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.py,sha256=Zyi6y4vOSN8-VI00cq0gC2xv7YQcFrpMEC2phQxk32k,4652
53
+ tracdap/rt/_impl/grpc/tracdap/metadata/stoarge_pb2.pyi,sha256=ImU8YT62pfiAMDYwTtX5E6nyI_n1PuhUWabFJlRFvnE,4746
54
+ tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.py,sha256=bQ6gA21bizykXQZPzC8AhaN5IgUYddzVEp7KSzz6KNM,2441
55
+ tracdap/rt/_impl/grpc/tracdap/metadata/tag_pb2.pyi,sha256=6gP3-Rdiq84ng5d6DtVNEWZj5syt1xyD33jRWg3YcgU,1454
56
+ tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.py,sha256=HwJtcqjYwbYZw5LpZIaMux1qusVfEitl0wX-J8NMprI,2090
57
+ tracdap/rt/_impl/grpc/tracdap/metadata/tag_update_pb2.pyi,sha256=Q3687BMYoH8OzJF2tYu6nEOR8Yz3UkU8f2cjxQ3lFv8,1470
58
+ tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.py,sha256=Vbr4xCD2r4wDEnZMV1ZnEgWvYhZph6EAwL4eZZrO4IE,4206
59
+ tracdap/rt/_impl/grpc/tracdap/metadata/type_pb2.pyi,sha256=h-5HTqHMxFhTvfzZH7q-qWt7GeUhYnsQ8EqN9VoH_Ys,4356
60
+ tracdap/rt/_plugins/__init__.py,sha256=NT9Aq8FDZwJgAG6u6K2E0B6ByAo3x0i48wFNfRkSLZc,609
61
+ tracdap/rt/_plugins/_helpers.py,sha256=_PhYVVNFZaktERkyrKSvMCzMJn9EXSun0MXmWInq_ew,5840
62
+ tracdap/rt/_plugins/config_local.py,sha256=lDA_idZ_C6fkcxECyfzN08LsYgTlmXVIOZGZGboGucc,1757
63
+ tracdap/rt/_plugins/format_arrow.py,sha256=C4mcRRD-bIZhytxEn4meM1gwIaq1cSl_YgmUGUwzuPY,2210
64
+ tracdap/rt/_plugins/format_csv.py,sha256=e9yr5ZSseuns-YHa-dKPMOO0EvFM4Kx3CJbvHQQika4,16823
65
+ tracdap/rt/_plugins/format_parquet.py,sha256=clOkTGvqEPgnF7eRaxceyDDiWgFbSHZcYQWGOr2130c,2159
66
+ tracdap/rt/_plugins/repo_git.py,sha256=68nE9NBw5M4wId9tgTI8K9Pv80V8BDAG7oJDPf5_C9I,10276
67
+ tracdap/rt/_plugins/repo_local.py,sha256=oW35YZIjOI4uRTGWI44Vnr9mzelQL-HuLvLnmHZHzTU,2726
68
+ tracdap/rt/_plugins/repo_pypi.py,sha256=DGNgoUGM7fbAYtxqW-Liu2d2Lpx0OHAOnMnT-t0hEbA,13345
69
+ tracdap/rt/_plugins/storage_aws.py,sha256=1XyWJcHmRQqr3LpS6yGvR6-yaz4g7_3zFc_KUJPWmz8,12973
70
+ tracdap/rt/_plugins/storage_azure.py,sha256=Q7c063SXlbbsyZHWPu4ma8BDwV-sE0ipOyb0Roi9ad0,5813
71
+ tracdap/rt/_plugins/storage_gcp.py,sha256=ENMrgTzqX0QjSDnMfeGyFK6YUwaFaJgqF7PQzEqviKk,6464
72
+ tracdap/rt/_plugins/storage_local.py,sha256=ep0EvFzhA8ZKStxwSvtbOPIJBt3HjtYKkmFlnUU_AqU,15555
73
+ tracdap/rt/api/__init__.py,sha256=rOiUwK6sav9QTXohpZAFXJ9MgsL0KBfUyKA7dYspfGQ,1124
74
+ tracdap/rt/api/hook.py,sha256=SJqFwoQpmBywFRbGu1pZaG9tvut2fXmAYw9O5nUb0XQ,4343
75
+ tracdap/rt/api/model_api.py,sha256=6cVYlxYN5jKf4GMPq9Dayl7vhxTGSIvr3GnmSrWu-BA,16336
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
79
+ tracdap/rt/config/job.py,sha256=txzOSBBOoEHWo8tzFNhv9HvjOo4q4C9YfVKadNwZKBQ,575
80
+ tracdap/rt/config/platform.py,sha256=grOEl1TYlF7bTUr3HpEZ0FeukPVA0mhmPzY1FGeYZeU,2731
81
+ tracdap/rt/config/result.py,sha256=ChxZ2R5UtMGuO7h0PVijskbzVo8cXqWIA2PyAkYT-PQ,588
82
+ tracdap/rt/config/runtime.py,sha256=KEo2qCKSjKVM1syWPXppxKO4L0rzxQb1CE8qEtKLNdk,592
83
+ tracdap/rt/ext/__init__.py,sha256=0yYnHpdaHioyof9IyG0R2Z6us1PsaRjOfDX0hSLc_g8,608
84
+ tracdap/rt/ext/config.py,sha256=s9SgQw1NedPC7JQMBzjXmVi_Q6VigKa6Cy3kgLzq4ec,1037
85
+ tracdap/rt/ext/embed.py,sha256=13W9oP6ASWnzD0U1n9RFvwCXCErQxhIs_N5zjU1CpGo,2105
86
+ tracdap/rt/ext/plugins.py,sha256=cDULRrtPKB-kdOslBSSwcrlA3eCCjVRlaUwlvB7xSKQ,4380
87
+ tracdap/rt/ext/repos.py,sha256=hnoGadBthdQK_8IQV5lvfxiiTBC7by7YbcD74qBC5Dw,3110
88
+ tracdap/rt/ext/storage.py,sha256=mOZKtxFTiPnfOEvUu7RMi3s-Z6PHUX5g4Dq7N6809Dc,4793
89
+ tracdap/rt/launch/__init__.py,sha256=Zz_4f_ODsmweCxRmG2Dq1Slpb927jSugYclfF_Wgfws,673
90
+ tracdap/rt/launch/__main__.py,sha256=9UVYYSsqvvMVOqjjBBeLNdzV_6IeIa_97KWOMXIpXY4,654
91
+ tracdap/rt/launch/cli.py,sha256=zgU0hI64kkb4nNqp7YNuD3nIJ0xrWab9UBxD4tcHUpI,2353
92
+ tracdap/rt/launch/launch.py,sha256=eOMCuzCpS9WMq2ydXmrw6CFGwomtRXF2BiEM-bGlQSw,5834
93
+ tracdap/rt/metadata/__init__.py,sha256=UsipN-xle6_HGBPR9gGuFJ36w8NPi0pNabMxu3iShE0,1779
94
+ tracdap/rt/metadata/common.py,sha256=ftFmQtij14Sv2T_Kcd_jFrDw4mr2TjagQrQyj8dX704,1439
95
+ tracdap/rt/metadata/custom.py,sha256=rcUrB8FYYcY8sM4W-Khk3ATfgx2hfBe1PBgbIP2Eop0,387
96
+ tracdap/rt/metadata/data.py,sha256=nzlaL7cKnLQLLceh9vE_3W4skfx-26EoXux6rK7_ndk,3386
97
+ tracdap/rt/metadata/file.py,sha256=4vNg0mO6oHOBtWFkU7H533pruu7oJ0CnRSAv3SvCVYs,448
98
+ tracdap/rt/metadata/flow.py,sha256=c4Xi2cdmszknpWYl770i-jX8A2Q4WfIAS6KyU7BeiUA,3358
99
+ tracdap/rt/metadata/job.py,sha256=QgtRInflyRAYaPGRChNcx_ptvC9o8RUZnGD30oAyraI,3283
100
+ tracdap/rt/metadata/model.py,sha256=Ck_-EKYVv1r6vbYYd8m0GdtrRHaZo8jYFAe1_T_RrhI,2884
101
+ tracdap/rt/metadata/object.py,sha256=DgRX5AoEu-Ig7BD-Yxzqyx4DTRBgY6z9kdHpI0NWDNc,2810
102
+ tracdap/rt/metadata/object_id.py,sha256=o46-KNBrWT-2OMe0yf2sSfSpdoJMXpaYKlhW3vwWRyo,4295
103
+ tracdap/rt/metadata/search.py,sha256=A2Yrz-ATM0AL7wbX7J24FB7AD2O0QGyvD-K-f7GecxM,9851
104
+ tracdap/rt/metadata/stoarge.py,sha256=8pRptS66sbhKufVF7P1GTudxLby0-Kv4drt05XvlC8s,3070
105
+ tracdap/rt/metadata/tag.py,sha256=qO1Lxn64UllfAt3CSdvQf04HuKlaUG0ET0keW1Soz_c,5079
106
+ tracdap/rt/metadata/tag_update.py,sha256=kTeEppUZ1c4ecamVAuTMXs9GnorETNjc6pzbj_W1HfI,3746
107
+ tracdap/rt/metadata/type.py,sha256=ztDQdzh1tHoY3rLjkfVW32BBdxxkKIQ6KNYl349tuE0,9404
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,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.3.0)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,55 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: tracdap/config/common.proto
4
- # Protobuf Python Version: 4.25.3
5
- """Generated protocol buffer code."""
6
- from google.protobuf import descriptor as _descriptor
7
- from google.protobuf import descriptor_pool as _descriptor_pool
8
- from google.protobuf import symbol_database as _symbol_database
9
- from google.protobuf.internal import builder as _builder
10
- # @@protoc_insertion_point(imports)
11
-
12
- _sym_db = _symbol_database.Default()
13
-
14
-
15
-
16
-
17
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1btracdap/config/common.proto\x12\x0etracdap.config\"u\n\x0b_ConfigFile\x12\x37\n\x06\x63onfig\x18\x01 \x03(\x0b\x32\'.tracdap.config._ConfigFile.ConfigEntry\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x81\x02\n\x0cPluginConfig\x12\x10\n\x08protocol\x18\x01 \x01(\t\x12@\n\nproperties\x18\x02 \x03(\x0b\x32,.tracdap.config.PluginConfig.PropertiesEntry\x12:\n\x07secrets\x18\x03 \x03(\x0b\x32).tracdap.config.PluginConfig.SecretsEntry\x1a\x31\n\x0fPropertiesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a.\n\x0cSecretsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb8\x01\n\x0cPlatformInfo\x12\x13\n\x0b\x65nvironment\x18\x01 \x01(\t\x12\x12\n\nproduction\x18\x02 \x01(\x08\x12H\n\x0e\x64\x65ploymentInfo\x18\x03 \x03(\x0b\x32\x30.tracdap.config.PlatformInfo.DeploymentInfoEntry\x1a\x35\n\x13\x44\x65ploymentInfoEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xba\x02\n\x14\x41uthenticationConfig\x12\x11\n\tjwtIssuer\x18\x01 \x01(\t\x12\x11\n\tjwtExpiry\x18\x02 \x01(\x11\x12\x10\n\x08jwtLimit\x18\x06 \x01(\x11\x12\x12\n\njwtRefresh\x18\x07 \x01(\x11\x12\x33\n\x08provider\x18\x03 \x01(\x0b\x32\x1c.tracdap.config.PluginConfigH\x00\x88\x01\x01\x12\x13\n\x0b\x64isableAuth\x18\x04 \x01(\x08\x12\x16\n\x0e\x64isableSigning\x18\x05 \x01(\x08\x12\x14\n\x0csystemUserId\x18\x08 \x01(\t\x12\x16\n\x0esystemUserName\x18\t \x01(\t\x12\x1c\n\x14systemTicketDuration\x18\n \x01(\x11\x12\x1b\n\x13systemTicketRefresh\x18\x0b \x01(\x11\x42\x0b\n\t_provider\"\xc8\x01\n\rStorageConfig\x12;\n\x07\x62uckets\x18\x01 \x03(\x0b\x32*.tracdap.config.StorageConfig.BucketsEntry\x12\x15\n\rdefaultBucket\x18\x02 \x01(\t\x12\x15\n\rdefaultFormat\x18\x03 \x01(\t\x1aL\n\x0c\x42ucketsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig:\x02\x38\x01\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
18
-
19
- _globals = globals()
20
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
21
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.common_pb2', _globals)
22
- if _descriptor._USE_C_DESCRIPTORS == False:
23
- _globals['DESCRIPTOR']._options = None
24
- _globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
25
- _globals['__CONFIGFILE_CONFIGENTRY']._options = None
26
- _globals['__CONFIGFILE_CONFIGENTRY']._serialized_options = b'8\001'
27
- _globals['_PLUGINCONFIG_PROPERTIESENTRY']._options = None
28
- _globals['_PLUGINCONFIG_PROPERTIESENTRY']._serialized_options = b'8\001'
29
- _globals['_PLUGINCONFIG_SECRETSENTRY']._options = None
30
- _globals['_PLUGINCONFIG_SECRETSENTRY']._serialized_options = b'8\001'
31
- _globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._options = None
32
- _globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._serialized_options = b'8\001'
33
- _globals['_STORAGECONFIG_BUCKETSENTRY']._options = None
34
- _globals['_STORAGECONFIG_BUCKETSENTRY']._serialized_options = b'8\001'
35
- _globals['__CONFIGFILE']._serialized_start=47
36
- _globals['__CONFIGFILE']._serialized_end=164
37
- _globals['__CONFIGFILE_CONFIGENTRY']._serialized_start=119
38
- _globals['__CONFIGFILE_CONFIGENTRY']._serialized_end=164
39
- _globals['_PLUGINCONFIG']._serialized_start=167
40
- _globals['_PLUGINCONFIG']._serialized_end=424
41
- _globals['_PLUGINCONFIG_PROPERTIESENTRY']._serialized_start=327
42
- _globals['_PLUGINCONFIG_PROPERTIESENTRY']._serialized_end=376
43
- _globals['_PLUGINCONFIG_SECRETSENTRY']._serialized_start=378
44
- _globals['_PLUGINCONFIG_SECRETSENTRY']._serialized_end=424
45
- _globals['_PLATFORMINFO']._serialized_start=427
46
- _globals['_PLATFORMINFO']._serialized_end=611
47
- _globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._serialized_start=558
48
- _globals['_PLATFORMINFO_DEPLOYMENTINFOENTRY']._serialized_end=611
49
- _globals['_AUTHENTICATIONCONFIG']._serialized_start=614
50
- _globals['_AUTHENTICATIONCONFIG']._serialized_end=928
51
- _globals['_STORAGECONFIG']._serialized_start=931
52
- _globals['_STORAGECONFIG']._serialized_end=1131
53
- _globals['_STORAGECONFIG_BUCKETSENTRY']._serialized_start=1055
54
- _globals['_STORAGECONFIG_BUCKETSENTRY']._serialized_end=1131
55
- # @@protoc_insertion_point(module_scope)
@@ -1,42 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: tracdap/config/job.proto
4
- # Protobuf Python Version: 4.25.3
5
- """Generated protocol buffer code."""
6
- from google.protobuf import descriptor as _descriptor
7
- from google.protobuf import descriptor_pool as _descriptor_pool
8
- from google.protobuf import symbol_database as _symbol_database
9
- from google.protobuf.internal import builder as _builder
10
- # @@protoc_insertion_point(imports)
11
-
12
- _sym_db = _symbol_database.Default()
13
-
14
-
15
- from tracdap.metadata import object_id_pb2 as tracdap_dot_metadata_dot_object__id__pb2
16
- from tracdap.metadata import object_pb2 as tracdap_dot_metadata_dot_object__pb2
17
- from tracdap.metadata import job_pb2 as tracdap_dot_metadata_dot_job__pb2
18
-
19
-
20
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x18tracdap/config/job.proto\x12\x0etracdap.config\x1a tracdap/metadata/object_id.proto\x1a\x1dtracdap/metadata/object.proto\x1a\x1atracdap/metadata/job.proto\"\xae\x04\n\tJobConfig\x12*\n\x05jobId\x18\x01 \x01(\x0b\x32\x1b.tracdap.metadata.TagHeader\x12,\n\x03job\x18\x02 \x01(\x0b\x32\x1f.tracdap.metadata.JobDefinition\x12;\n\tresources\x18\x03 \x03(\x0b\x32(.tracdap.config.JobConfig.ResourcesEntry\x12G\n\x0fresourceMapping\x18\x04 \x03(\x0b\x32..tracdap.config.JobConfig.ResourceMappingEntry\x12\x43\n\rresultMapping\x18\x05 \x03(\x0b\x32,.tracdap.config.JobConfig.ResultMappingEntry\x1aT\n\x0eResourcesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x31\n\x05value\x18\x02 \x01(\x0b\x32\".tracdap.metadata.ObjectDefinition:\x02\x38\x01\x1aS\n\x14ResourceMappingEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12*\n\x05value\x18\x02 \x01(\x0b\x32\x1b.tracdap.metadata.TagHeader:\x02\x38\x01\x1aQ\n\x12ResultMappingEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12*\n\x05value\x18\x02 \x01(\x0b\x32\x1b.tracdap.metadata.TagHeader:\x02\x38\x01\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
21
-
22
- _globals = globals()
23
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
24
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.job_pb2', _globals)
25
- if _descriptor._USE_C_DESCRIPTORS == False:
26
- _globals['DESCRIPTOR']._options = None
27
- _globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
28
- _globals['_JOBCONFIG_RESOURCESENTRY']._options = None
29
- _globals['_JOBCONFIG_RESOURCESENTRY']._serialized_options = b'8\001'
30
- _globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._options = None
31
- _globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._serialized_options = b'8\001'
32
- _globals['_JOBCONFIG_RESULTMAPPINGENTRY']._options = None
33
- _globals['_JOBCONFIG_RESULTMAPPINGENTRY']._serialized_options = b'8\001'
34
- _globals['_JOBCONFIG']._serialized_start=138
35
- _globals['_JOBCONFIG']._serialized_end=696
36
- _globals['_JOBCONFIG_RESOURCESENTRY']._serialized_start=444
37
- _globals['_JOBCONFIG_RESOURCESENTRY']._serialized_end=528
38
- _globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._serialized_start=530
39
- _globals['_JOBCONFIG_RESOURCEMAPPINGENTRY']._serialized_end=613
40
- _globals['_JOBCONFIG_RESULTMAPPINGENTRY']._serialized_start=615
41
- _globals['_JOBCONFIG_RESULTMAPPINGENTRY']._serialized_end=696
42
- # @@protoc_insertion_point(module_scope)
@@ -1,71 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- # Generated by the protocol buffer compiler. DO NOT EDIT!
3
- # source: tracdap/config/platform.proto
4
- # Protobuf Python Version: 4.25.3
5
- """Generated protocol buffer code."""
6
- from google.protobuf import descriptor as _descriptor
7
- from google.protobuf import descriptor_pool as _descriptor_pool
8
- from google.protobuf import symbol_database as _symbol_database
9
- from google.protobuf.internal import builder as _builder
10
- # @@protoc_insertion_point(imports)
11
-
12
- _sym_db = _symbol_database.Default()
13
-
14
-
15
- from tracdap.metadata import common_pb2 as tracdap_dot_metadata_dot_common__pb2
16
- from tracdap.config import common_pb2 as tracdap_dot_config_dot_common__pb2
17
-
18
-
19
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1dtracdap/config/platform.proto\x12\x0etracdap.config\x1a\x1dtracdap/metadata/common.proto\x1a\x1btracdap/config/common.proto\"\xa4\x08\n\x0ePlatformConfig\x12:\n\x06\x63onfig\x18\x01 \x03(\x0b\x32*.tracdap.config.PlatformConfig.ConfigEntry\x12\x32\n\x0cplatformInfo\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.PlatformInfo\x12<\n\x0e\x61uthentication\x18\x05 \x01(\x0b\x32$.tracdap.config.AuthenticationConfig\x12\x30\n\x08metadata\x18\x06 \x01(\x0b\x32\x1e.tracdap.config.MetadataConfig\x12.\n\x07storage\x18\x07 \x01(\x0b\x32\x1d.tracdap.config.StorageConfig\x12\x46\n\x0crepositories\x18\x08 \x03(\x0b\x32\x30.tracdap.config.PlatformConfig.RepositoriesEntry\x12.\n\x08\x65xecutor\x18\t \x01(\x0b\x32\x1c.tracdap.config.PluginConfig\x12.\n\x08jobCache\x18\x0c \x01(\x0b\x32\x1c.tracdap.config.PluginConfig\x12<\n\x07tenants\x18\n \x03(\x0b\x32+.tracdap.config.PlatformConfig.TenantsEntry\x12\x37\n\twebServer\x18\x0b \x01(\x0b\x32\x1f.tracdap.config.WebServerConfigH\x00\x88\x01\x01\x12\x33\n\x07gateway\x18\r \x01(\x0b\x32\x1d.tracdap.config.GatewayConfigH\x01\x88\x01\x01\x12>\n\x08services\x18\x04 \x03(\x0b\x32,.tracdap.config.PlatformConfig.ServicesEntry\x12\x34\n\ndeployment\x18\x0e \x01(\x0b\x32 .tracdap.config.DeploymentConfig\x1a-\n\x0b\x43onfigEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1aQ\n\x11RepositoriesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig:\x02\x38\x01\x1aL\n\x0cTenantsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.tracdap.config.TenantConfig:\x02\x38\x01\x1aN\n\rServicesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12,\n\x05value\x18\x02 \x01(\x0b\x32\x1d.tracdap.config.ServiceConfig:\x02\x38\x01\x42\x0c\n\n_webServerB\n\n\x08_gateway\"r\n\x0eMetadataConfig\x12.\n\x08\x64\x61tabase\x18\x01 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig\x12\x30\n\x06\x66ormat\x18\x02 \x01(\x0e\x32 .tracdap.metadata.MetadataFormat\"j\n\x0cTenantConfig\x12\x1a\n\rdefaultBucket\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x1a\n\rdefaultFormat\x18\x02 \x01(\tH\x01\x88\x01\x01\x42\x10\n\x0e_defaultBucketB\x10\n\x0e_defaultFormat\"\xc7\x01\n\x0fWebServerConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x31\n\x0b\x63ontentRoot\x18\x03 \x01(\x0b\x32\x1c.tracdap.config.PluginConfig\x12:\n\x0crewriteRules\x18\x04 \x03(\x0b\x32$.tracdap.config.WebServerRewriteRule\x12\x34\n\tredirects\x18\x05 \x03(\x0b\x32!.tracdap.config.WebServerRedirect\"6\n\x14WebServerRewriteRule\x12\x0e\n\x06source\x18\x01 \x01(\t\x12\x0e\n\x06target\x18\x02 \x01(\t\"C\n\x11WebServerRedirect\x12\x0e\n\x06source\x18\x01 \x01(\t\x12\x0e\n\x06target\x18\x02 \x01(\t\x12\x0e\n\x06status\x18\x03 \x01(\x05\"\x87\x01\n\rGatewayConfig\x12\x13\n\x0bidleTimeout\x18\x01 \x01(\r\x12+\n\x06routes\x18\x02 \x03(\x0b\x32\x1b.tracdap.config.RouteConfig\x12\x34\n\tredirects\x18\x03 \x03(\x0b\x32!.tracdap.config.WebServerRedirect\"\xe4\x01\n\x0bRouteConfig\x12\x11\n\trouteName\x18\x01 \x01(\t\x12\x32\n\trouteType\x18\x02 \x01(\x0e\x32\x1f.tracdap.config.RoutingProtocol\x12\x32\n\tprotocols\x18\x03 \x03(\x0e\x32\x1f.tracdap.config.RoutingProtocol\x12+\n\x05match\x18\x05 \x01(\x0b\x32\x1c.tracdap.config.RoutingMatch\x12-\n\x06target\x18\x06 \x01(\x0b\x32\x1d.tracdap.config.RoutingTarget\"*\n\x0cRoutingMatch\x12\x0c\n\x04host\x18\x01 \x01(\t\x12\x0c\n\x04path\x18\x02 \x01(\t\"I\n\rRoutingTarget\x12\x0e\n\x06scheme\x18\x01 \x01(\t\x12\x0c\n\x04host\x18\x02 \x01(\t\x12\x0c\n\x04port\x18\x03 \x01(\r\x12\x0c\n\x04path\x18\x04 \x01(\t\"N\n\rServiceConfig\x12\x14\n\x07\x65nabled\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12\r\n\x05\x61lias\x18\x02 \x01(\t\x12\x0c\n\x04port\x18\x03 \x01(\rB\n\n\x08_enabled\"D\n\x10\x44\x65ploymentConfig\x12\x30\n\x06layout\x18\x01 \x01(\x0e\x32 .tracdap.config.DeploymentLayout*S\n\x0fRoutingProtocol\x12\x14\n\x10PROTOCOL_NOT_SET\x10\x00\x12\x08\n\x04HTTP\x10\x01\x12\x08\n\x04GRPC\x10\x02\x12\x0c\n\x08GRPC_WEB\x10\x03\x12\x08\n\x04REST\x10\x04*K\n\x10\x44\x65ploymentLayout\x12\x12\n\x0eLAYOUT_NOT_SET\x10\x00\x12\x0b\n\x07SANDBOX\x10\x01\x12\n\n\x06HOSTED\x10\x02\x12\n\n\x06\x43USTOM\x10\x03\x42\x1c\n\x18org.finos.tracdap.configP\x01\x62\x06proto3')
20
-
21
- _globals = globals()
22
- _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
23
- _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'tracdap.config.platform_pb2', _globals)
24
- if _descriptor._USE_C_DESCRIPTORS == False:
25
- _globals['DESCRIPTOR']._options = None
26
- _globals['DESCRIPTOR']._serialized_options = b'\n\030org.finos.tracdap.configP\001'
27
- _globals['_PLATFORMCONFIG_CONFIGENTRY']._options = None
28
- _globals['_PLATFORMCONFIG_CONFIGENTRY']._serialized_options = b'8\001'
29
- _globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._options = None
30
- _globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._serialized_options = b'8\001'
31
- _globals['_PLATFORMCONFIG_TENANTSENTRY']._options = None
32
- _globals['_PLATFORMCONFIG_TENANTSENTRY']._serialized_options = b'8\001'
33
- _globals['_PLATFORMCONFIG_SERVICESENTRY']._options = None
34
- _globals['_PLATFORMCONFIG_SERVICESENTRY']._serialized_options = b'8\001'
35
- _globals['_ROUTINGPROTOCOL']._serialized_start=2361
36
- _globals['_ROUTINGPROTOCOL']._serialized_end=2444
37
- _globals['_DEPLOYMENTLAYOUT']._serialized_start=2446
38
- _globals['_DEPLOYMENTLAYOUT']._serialized_end=2521
39
- _globals['_PLATFORMCONFIG']._serialized_start=110
40
- _globals['_PLATFORMCONFIG']._serialized_end=1170
41
- _globals['_PLATFORMCONFIG_CONFIGENTRY']._serialized_start=858
42
- _globals['_PLATFORMCONFIG_CONFIGENTRY']._serialized_end=903
43
- _globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._serialized_start=905
44
- _globals['_PLATFORMCONFIG_REPOSITORIESENTRY']._serialized_end=986
45
- _globals['_PLATFORMCONFIG_TENANTSENTRY']._serialized_start=988
46
- _globals['_PLATFORMCONFIG_TENANTSENTRY']._serialized_end=1064
47
- _globals['_PLATFORMCONFIG_SERVICESENTRY']._serialized_start=1066
48
- _globals['_PLATFORMCONFIG_SERVICESENTRY']._serialized_end=1144
49
- _globals['_METADATACONFIG']._serialized_start=1172
50
- _globals['_METADATACONFIG']._serialized_end=1286
51
- _globals['_TENANTCONFIG']._serialized_start=1288
52
- _globals['_TENANTCONFIG']._serialized_end=1394
53
- _globals['_WEBSERVERCONFIG']._serialized_start=1397
54
- _globals['_WEBSERVERCONFIG']._serialized_end=1596
55
- _globals['_WEBSERVERREWRITERULE']._serialized_start=1598
56
- _globals['_WEBSERVERREWRITERULE']._serialized_end=1652
57
- _globals['_WEBSERVERREDIRECT']._serialized_start=1654
58
- _globals['_WEBSERVERREDIRECT']._serialized_end=1721
59
- _globals['_GATEWAYCONFIG']._serialized_start=1724
60
- _globals['_GATEWAYCONFIG']._serialized_end=1859
61
- _globals['_ROUTECONFIG']._serialized_start=1862
62
- _globals['_ROUTECONFIG']._serialized_end=2090
63
- _globals['_ROUTINGMATCH']._serialized_start=2092
64
- _globals['_ROUTINGMATCH']._serialized_end=2134
65
- _globals['_ROUTINGTARGET']._serialized_start=2136
66
- _globals['_ROUTINGTARGET']._serialized_end=2209
67
- _globals['_SERVICECONFIG']._serialized_start=2211
68
- _globals['_SERVICECONFIG']._serialized_end=2289
69
- _globals['_DEPLOYMENTCONFIG']._serialized_start=2291
70
- _globals['_DEPLOYMENTCONFIG']._serialized_end=2359
71
- # @@protoc_insertion_point(module_scope)