luminarycloud 0.16.2__py3-none-any.whl → 0.18.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- luminarycloud/_auth/auth.py +23 -34
- luminarycloud/_client/client.py +23 -4
- luminarycloud/_client/retry_interceptor.py +7 -0
- luminarycloud/_helpers/_create_geometry.py +134 -34
- luminarycloud/_helpers/_wait_for_mesh.py +14 -4
- luminarycloud/_helpers/cond.py +0 -1
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +146 -123
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +82 -15
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +8 -8
- luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +12 -7
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +25 -3
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +30 -0
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2.py +246 -0
- luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2.pyi +420 -0
- luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2_grpc.py +240 -0
- luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2_grpc.pyi +90 -0
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py +54 -3
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi +92 -1
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2_grpc.py +132 -0
- luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2_grpc.pyi +40 -0
- luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2.py +97 -0
- luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2.pyi +93 -0
- luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2_grpc.py +132 -0
- luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2_grpc.pyi +44 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +48 -26
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +30 -2
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.py +36 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.pyi +18 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +153 -133
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +51 -3
- luminarycloud/_proto/client/simulation_pb2.py +261 -251
- luminarycloud/_proto/client/simulation_pb2.pyi +35 -2
- luminarycloud/_proto/frontend/output/output_pb2.py +24 -24
- luminarycloud/_proto/frontend/output/output_pb2.pyi +6 -3
- luminarycloud/_proto/geometry/geometry_pb2.py +63 -63
- luminarycloud/_proto/geometry/geometry_pb2.pyi +16 -8
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +17 -4
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +22 -1
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +10 -10
- luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +12 -7
- luminarycloud/_proto/quantity/quantity_pb2.py +19 -19
- luminarycloud/enum/geometry_status.py +15 -8
- luminarycloud/enum/pipeline_job_status.py +23 -0
- luminarycloud/feature_modification.py +3 -6
- luminarycloud/geometry.py +25 -0
- luminarycloud/geometry_version.py +23 -0
- luminarycloud/mesh.py +16 -0
- luminarycloud/params/enum/_enum_wrappers.py +29 -0
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/fan_curve_inlet_.py +1 -1
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mach_inlet_.py +5 -1
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mass_flow_inlet_.py +5 -1
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/total_pressure_inlet_.py +5 -1
- luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/velocity_magnitude_inlet_.py +5 -1
- luminarycloud/physics_ai/inference.py +46 -30
- luminarycloud/pipelines/__init__.py +7 -0
- luminarycloud/pipelines/api.py +213 -0
- luminarycloud/project.py +98 -11
- luminarycloud/simulation_template.py +15 -6
- luminarycloud/vis/__init__.py +6 -0
- luminarycloud/vis/data_extraction.py +201 -31
- luminarycloud/vis/filters.py +94 -35
- luminarycloud/vis/interactive_inference.py +153 -0
- luminarycloud/vis/interactive_scene.py +35 -16
- luminarycloud/vis/primitives.py +87 -1
- luminarycloud/vis/visualization.py +50 -6
- luminarycloud/volume_selection.py +3 -6
- {luminarycloud-0.16.2.dist-info → luminarycloud-0.18.0.dist-info}/METADATA +18 -18
- {luminarycloud-0.16.2.dist-info → luminarycloud-0.18.0.dist-info}/RECORD +73 -62
- {luminarycloud-0.16.2.dist-info → luminarycloud-0.18.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,420 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
import builtins
|
|
6
|
+
import collections.abc
|
|
7
|
+
import google.protobuf.descriptor
|
|
8
|
+
import google.protobuf.internal.containers
|
|
9
|
+
import google.protobuf.internal.enum_type_wrapper
|
|
10
|
+
import google.protobuf.message
|
|
11
|
+
import google.protobuf.timestamp_pb2
|
|
12
|
+
import sys
|
|
13
|
+
import typing
|
|
14
|
+
|
|
15
|
+
if sys.version_info >= (3, 10):
|
|
16
|
+
import typing as typing_extensions
|
|
17
|
+
else:
|
|
18
|
+
import typing_extensions
|
|
19
|
+
|
|
20
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
|
21
|
+
|
|
22
|
+
class _PipelineJobStatus:
|
|
23
|
+
ValueType = typing.NewType("ValueType", builtins.int)
|
|
24
|
+
V: typing_extensions.TypeAlias = ValueType
|
|
25
|
+
|
|
26
|
+
class _PipelineJobStatusEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[_PipelineJobStatus.ValueType], builtins.type): # noqa: F821
|
|
27
|
+
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
|
28
|
+
PIPELINE_JOB_STATUS_UNSPECIFIED: _PipelineJobStatus.ValueType # 0
|
|
29
|
+
PIPELINE_JOB_STATUS_PENDING: _PipelineJobStatus.ValueType # 1
|
|
30
|
+
PIPELINE_JOB_STATUS_RUNNING: _PipelineJobStatus.ValueType # 2
|
|
31
|
+
PIPELINE_JOB_STATUS_COMPLETED: _PipelineJobStatus.ValueType # 3
|
|
32
|
+
PIPELINE_JOB_STATUS_FAILED: _PipelineJobStatus.ValueType # 4
|
|
33
|
+
|
|
34
|
+
class PipelineJobStatus(_PipelineJobStatus, metaclass=_PipelineJobStatusEnumTypeWrapper):
|
|
35
|
+
"""NOTE: changes here must be reflected in the `status_map` in `python/pipelines/src/routers/pipeline_jobs_from_proto.py`"""
|
|
36
|
+
|
|
37
|
+
PIPELINE_JOB_STATUS_UNSPECIFIED: PipelineJobStatus.ValueType # 0
|
|
38
|
+
PIPELINE_JOB_STATUS_PENDING: PipelineJobStatus.ValueType # 1
|
|
39
|
+
PIPELINE_JOB_STATUS_RUNNING: PipelineJobStatus.ValueType # 2
|
|
40
|
+
PIPELINE_JOB_STATUS_COMPLETED: PipelineJobStatus.ValueType # 3
|
|
41
|
+
PIPELINE_JOB_STATUS_FAILED: PipelineJobStatus.ValueType # 4
|
|
42
|
+
global___PipelineJobStatus = PipelineJobStatus
|
|
43
|
+
|
|
44
|
+
class Pipeline(google.protobuf.message.Message):
|
|
45
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
46
|
+
|
|
47
|
+
ID_FIELD_NUMBER: builtins.int
|
|
48
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
49
|
+
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
50
|
+
DEFINITION_YAML_FIELD_NUMBER: builtins.int
|
|
51
|
+
CREATED_AT_FIELD_NUMBER: builtins.int
|
|
52
|
+
UPDATED_AT_FIELD_NUMBER: builtins.int
|
|
53
|
+
id: builtins.str
|
|
54
|
+
name: builtins.str
|
|
55
|
+
description: builtins.str
|
|
56
|
+
definition_yaml: builtins.str
|
|
57
|
+
@property
|
|
58
|
+
def created_at(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
|
|
59
|
+
@property
|
|
60
|
+
def updated_at(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
|
|
61
|
+
def __init__(
|
|
62
|
+
self,
|
|
63
|
+
*,
|
|
64
|
+
id: builtins.str = ...,
|
|
65
|
+
name: builtins.str = ...,
|
|
66
|
+
description: builtins.str = ...,
|
|
67
|
+
definition_yaml: builtins.str = ...,
|
|
68
|
+
created_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
69
|
+
updated_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
70
|
+
) -> None: ...
|
|
71
|
+
def HasField(self, field_name: typing_extensions.Literal["created_at", b"created_at", "updated_at", b"updated_at"]) -> builtins.bool: ...
|
|
72
|
+
def ClearField(self, field_name: typing_extensions.Literal["created_at", b"created_at", "definition_yaml", b"definition_yaml", "description", b"description", "id", b"id", "name", b"name", "updated_at", b"updated_at"]) -> None: ...
|
|
73
|
+
|
|
74
|
+
global___Pipeline = Pipeline
|
|
75
|
+
|
|
76
|
+
class PipelineJob(google.protobuf.message.Message):
|
|
77
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
78
|
+
|
|
79
|
+
ID_FIELD_NUMBER: builtins.int
|
|
80
|
+
PIPELINE_ID_FIELD_NUMBER: builtins.int
|
|
81
|
+
PROJECT_ID_FIELD_NUMBER: builtins.int
|
|
82
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
83
|
+
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
84
|
+
STATUS_FIELD_NUMBER: builtins.int
|
|
85
|
+
CREATED_AT_FIELD_NUMBER: builtins.int
|
|
86
|
+
UPDATED_AT_FIELD_NUMBER: builtins.int
|
|
87
|
+
STARTED_AT_FIELD_NUMBER: builtins.int
|
|
88
|
+
COMPLETED_AT_FIELD_NUMBER: builtins.int
|
|
89
|
+
id: builtins.str
|
|
90
|
+
pipeline_id: builtins.str
|
|
91
|
+
project_id: builtins.str
|
|
92
|
+
name: builtins.str
|
|
93
|
+
description: builtins.str
|
|
94
|
+
status: global___PipelineJobStatus.ValueType
|
|
95
|
+
@property
|
|
96
|
+
def created_at(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
|
|
97
|
+
@property
|
|
98
|
+
def updated_at(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
|
|
99
|
+
@property
|
|
100
|
+
def started_at(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
|
|
101
|
+
@property
|
|
102
|
+
def completed_at(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
|
|
103
|
+
def __init__(
|
|
104
|
+
self,
|
|
105
|
+
*,
|
|
106
|
+
id: builtins.str = ...,
|
|
107
|
+
pipeline_id: builtins.str = ...,
|
|
108
|
+
project_id: builtins.str = ...,
|
|
109
|
+
name: builtins.str = ...,
|
|
110
|
+
description: builtins.str | None = ...,
|
|
111
|
+
status: global___PipelineJobStatus.ValueType = ...,
|
|
112
|
+
created_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
113
|
+
updated_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
114
|
+
started_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
115
|
+
completed_at: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
116
|
+
) -> None: ...
|
|
117
|
+
def HasField(self, field_name: typing_extensions.Literal["_completed_at", b"_completed_at", "_description", b"_description", "_started_at", b"_started_at", "completed_at", b"completed_at", "created_at", b"created_at", "description", b"description", "started_at", b"started_at", "updated_at", b"updated_at"]) -> builtins.bool: ...
|
|
118
|
+
def ClearField(self, field_name: typing_extensions.Literal["_completed_at", b"_completed_at", "_description", b"_description", "_started_at", b"_started_at", "completed_at", b"completed_at", "created_at", b"created_at", "description", b"description", "id", b"id", "name", b"name", "pipeline_id", b"pipeline_id", "project_id", b"project_id", "started_at", b"started_at", "status", b"status", "updated_at", b"updated_at"]) -> None: ...
|
|
119
|
+
@typing.overload
|
|
120
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_completed_at", b"_completed_at"]) -> typing_extensions.Literal["completed_at"] | None: ...
|
|
121
|
+
@typing.overload
|
|
122
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_description", b"_description"]) -> typing_extensions.Literal["description"] | None: ...
|
|
123
|
+
@typing.overload
|
|
124
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_started_at", b"_started_at"]) -> typing_extensions.Literal["started_at"] | None: ...
|
|
125
|
+
|
|
126
|
+
global___PipelineJob = PipelineJob
|
|
127
|
+
|
|
128
|
+
class CreatePipelineRequest(google.protobuf.message.Message):
|
|
129
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
130
|
+
|
|
131
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
132
|
+
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
133
|
+
DEFINITION_YAML_FIELD_NUMBER: builtins.int
|
|
134
|
+
name: builtins.str
|
|
135
|
+
"""Required. The name of the pipeline."""
|
|
136
|
+
description: builtins.str
|
|
137
|
+
"""Optional. The description of the pipeline."""
|
|
138
|
+
definition_yaml: builtins.str
|
|
139
|
+
"""Required. The definition of the pipeline, formatted as a YAML string."""
|
|
140
|
+
def __init__(
|
|
141
|
+
self,
|
|
142
|
+
*,
|
|
143
|
+
name: builtins.str = ...,
|
|
144
|
+
description: builtins.str | None = ...,
|
|
145
|
+
definition_yaml: builtins.str = ...,
|
|
146
|
+
) -> None: ...
|
|
147
|
+
def HasField(self, field_name: typing_extensions.Literal["_description", b"_description", "description", b"description"]) -> builtins.bool: ...
|
|
148
|
+
def ClearField(self, field_name: typing_extensions.Literal["_description", b"_description", "definition_yaml", b"definition_yaml", "description", b"description", "name", b"name"]) -> None: ...
|
|
149
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_description", b"_description"]) -> typing_extensions.Literal["description"] | None: ...
|
|
150
|
+
|
|
151
|
+
global___CreatePipelineRequest = CreatePipelineRequest
|
|
152
|
+
|
|
153
|
+
class CreatePipelineResponse(google.protobuf.message.Message):
|
|
154
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
155
|
+
|
|
156
|
+
PIPELINE_FIELD_NUMBER: builtins.int
|
|
157
|
+
@property
|
|
158
|
+
def pipeline(self) -> global___Pipeline:
|
|
159
|
+
"""The newly created pipeline."""
|
|
160
|
+
def __init__(
|
|
161
|
+
self,
|
|
162
|
+
*,
|
|
163
|
+
pipeline: global___Pipeline | None = ...,
|
|
164
|
+
) -> None: ...
|
|
165
|
+
def HasField(self, field_name: typing_extensions.Literal["pipeline", b"pipeline"]) -> builtins.bool: ...
|
|
166
|
+
def ClearField(self, field_name: typing_extensions.Literal["pipeline", b"pipeline"]) -> None: ...
|
|
167
|
+
|
|
168
|
+
global___CreatePipelineResponse = CreatePipelineResponse
|
|
169
|
+
|
|
170
|
+
class GetPipelineRequest(google.protobuf.message.Message):
|
|
171
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
172
|
+
|
|
173
|
+
ID_FIELD_NUMBER: builtins.int
|
|
174
|
+
id: builtins.str
|
|
175
|
+
def __init__(
|
|
176
|
+
self,
|
|
177
|
+
*,
|
|
178
|
+
id: builtins.str = ...,
|
|
179
|
+
) -> None: ...
|
|
180
|
+
def ClearField(self, field_name: typing_extensions.Literal["id", b"id"]) -> None: ...
|
|
181
|
+
|
|
182
|
+
global___GetPipelineRequest = GetPipelineRequest
|
|
183
|
+
|
|
184
|
+
class GetPipelineResponse(google.protobuf.message.Message):
|
|
185
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
186
|
+
|
|
187
|
+
PIPELINE_FIELD_NUMBER: builtins.int
|
|
188
|
+
@property
|
|
189
|
+
def pipeline(self) -> global___Pipeline: ...
|
|
190
|
+
def __init__(
|
|
191
|
+
self,
|
|
192
|
+
*,
|
|
193
|
+
pipeline: global___Pipeline | None = ...,
|
|
194
|
+
) -> None: ...
|
|
195
|
+
def HasField(self, field_name: typing_extensions.Literal["pipeline", b"pipeline"]) -> builtins.bool: ...
|
|
196
|
+
def ClearField(self, field_name: typing_extensions.Literal["pipeline", b"pipeline"]) -> None: ...
|
|
197
|
+
|
|
198
|
+
global___GetPipelineResponse = GetPipelineResponse
|
|
199
|
+
|
|
200
|
+
class ListPipelinesRequest(google.protobuf.message.Message):
|
|
201
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
202
|
+
|
|
203
|
+
def __init__(
|
|
204
|
+
self,
|
|
205
|
+
) -> None: ...
|
|
206
|
+
|
|
207
|
+
global___ListPipelinesRequest = ListPipelinesRequest
|
|
208
|
+
|
|
209
|
+
class ListPipelinesResponse(google.protobuf.message.Message):
|
|
210
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
211
|
+
|
|
212
|
+
PIPELINES_FIELD_NUMBER: builtins.int
|
|
213
|
+
@property
|
|
214
|
+
def pipelines(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___Pipeline]: ...
|
|
215
|
+
def __init__(
|
|
216
|
+
self,
|
|
217
|
+
*,
|
|
218
|
+
pipelines: collections.abc.Iterable[global___Pipeline] | None = ...,
|
|
219
|
+
) -> None: ...
|
|
220
|
+
def ClearField(self, field_name: typing_extensions.Literal["pipelines", b"pipelines"]) -> None: ...
|
|
221
|
+
|
|
222
|
+
global___ListPipelinesResponse = ListPipelinesResponse
|
|
223
|
+
|
|
224
|
+
class PipelineJobArgsColumn(google.protobuf.message.Message):
|
|
225
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
226
|
+
|
|
227
|
+
class StringColumn(google.protobuf.message.Message):
|
|
228
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
229
|
+
|
|
230
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
231
|
+
VALUES_FIELD_NUMBER: builtins.int
|
|
232
|
+
name: builtins.str
|
|
233
|
+
@property
|
|
234
|
+
def values(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
|
|
235
|
+
def __init__(
|
|
236
|
+
self,
|
|
237
|
+
*,
|
|
238
|
+
name: builtins.str = ...,
|
|
239
|
+
values: collections.abc.Iterable[builtins.str] | None = ...,
|
|
240
|
+
) -> None: ...
|
|
241
|
+
def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "values", b"values"]) -> None: ...
|
|
242
|
+
|
|
243
|
+
class IntColumn(google.protobuf.message.Message):
|
|
244
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
245
|
+
|
|
246
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
247
|
+
VALUES_FIELD_NUMBER: builtins.int
|
|
248
|
+
name: builtins.str
|
|
249
|
+
@property
|
|
250
|
+
def values(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.int]: ...
|
|
251
|
+
def __init__(
|
|
252
|
+
self,
|
|
253
|
+
*,
|
|
254
|
+
name: builtins.str = ...,
|
|
255
|
+
values: collections.abc.Iterable[builtins.int] | None = ...,
|
|
256
|
+
) -> None: ...
|
|
257
|
+
def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "values", b"values"]) -> None: ...
|
|
258
|
+
|
|
259
|
+
class DoubleColumn(google.protobuf.message.Message):
|
|
260
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
261
|
+
|
|
262
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
263
|
+
VALUES_FIELD_NUMBER: builtins.int
|
|
264
|
+
name: builtins.str
|
|
265
|
+
@property
|
|
266
|
+
def values(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.float]: ...
|
|
267
|
+
def __init__(
|
|
268
|
+
self,
|
|
269
|
+
*,
|
|
270
|
+
name: builtins.str = ...,
|
|
271
|
+
values: collections.abc.Iterable[builtins.float] | None = ...,
|
|
272
|
+
) -> None: ...
|
|
273
|
+
def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "values", b"values"]) -> None: ...
|
|
274
|
+
|
|
275
|
+
class BoolColumn(google.protobuf.message.Message):
|
|
276
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
277
|
+
|
|
278
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
279
|
+
VALUES_FIELD_NUMBER: builtins.int
|
|
280
|
+
name: builtins.str
|
|
281
|
+
@property
|
|
282
|
+
def values(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.bool]: ...
|
|
283
|
+
def __init__(
|
|
284
|
+
self,
|
|
285
|
+
*,
|
|
286
|
+
name: builtins.str = ...,
|
|
287
|
+
values: collections.abc.Iterable[builtins.bool] | None = ...,
|
|
288
|
+
) -> None: ...
|
|
289
|
+
def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "values", b"values"]) -> None: ...
|
|
290
|
+
|
|
291
|
+
STRING_COLUMN_FIELD_NUMBER: builtins.int
|
|
292
|
+
INT_COLUMN_FIELD_NUMBER: builtins.int
|
|
293
|
+
DOUBLE_COLUMN_FIELD_NUMBER: builtins.int
|
|
294
|
+
BOOL_COLUMN_FIELD_NUMBER: builtins.int
|
|
295
|
+
@property
|
|
296
|
+
def string_column(self) -> global___PipelineJobArgsColumn.StringColumn: ...
|
|
297
|
+
@property
|
|
298
|
+
def int_column(self) -> global___PipelineJobArgsColumn.IntColumn: ...
|
|
299
|
+
@property
|
|
300
|
+
def double_column(self) -> global___PipelineJobArgsColumn.DoubleColumn: ...
|
|
301
|
+
@property
|
|
302
|
+
def bool_column(self) -> global___PipelineJobArgsColumn.BoolColumn: ...
|
|
303
|
+
def __init__(
|
|
304
|
+
self,
|
|
305
|
+
*,
|
|
306
|
+
string_column: global___PipelineJobArgsColumn.StringColumn | None = ...,
|
|
307
|
+
int_column: global___PipelineJobArgsColumn.IntColumn | None = ...,
|
|
308
|
+
double_column: global___PipelineJobArgsColumn.DoubleColumn | None = ...,
|
|
309
|
+
bool_column: global___PipelineJobArgsColumn.BoolColumn | None = ...,
|
|
310
|
+
) -> None: ...
|
|
311
|
+
def HasField(self, field_name: typing_extensions.Literal["bool_column", b"bool_column", "column", b"column", "double_column", b"double_column", "int_column", b"int_column", "string_column", b"string_column"]) -> builtins.bool: ...
|
|
312
|
+
def ClearField(self, field_name: typing_extensions.Literal["bool_column", b"bool_column", "column", b"column", "double_column", b"double_column", "int_column", b"int_column", "string_column", b"string_column"]) -> None: ...
|
|
313
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["column", b"column"]) -> typing_extensions.Literal["string_column", "int_column", "double_column", "bool_column"] | None: ...
|
|
314
|
+
|
|
315
|
+
global___PipelineJobArgsColumn = PipelineJobArgsColumn
|
|
316
|
+
|
|
317
|
+
class CreatePipelineJobRequest(google.protobuf.message.Message):
|
|
318
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
319
|
+
|
|
320
|
+
PIPELINE_ID_FIELD_NUMBER: builtins.int
|
|
321
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
322
|
+
DESCRIPTION_FIELD_NUMBER: builtins.int
|
|
323
|
+
ARGS_COLUMNS_FIELD_NUMBER: builtins.int
|
|
324
|
+
PROJECT_ID_FIELD_NUMBER: builtins.int
|
|
325
|
+
pipeline_id: builtins.str
|
|
326
|
+
name: builtins.str
|
|
327
|
+
description: builtins.str
|
|
328
|
+
@property
|
|
329
|
+
def args_columns(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___PipelineJobArgsColumn]:
|
|
330
|
+
"""The PipelineJobArgs formatted in columns."""
|
|
331
|
+
project_id: builtins.str
|
|
332
|
+
"""PipelineJobs are scoped to a project. Maybe some day we can lift this restriction, but for
|
|
333
|
+
now, all permissions are scoped to a project (as are all the resources a pipeline might
|
|
334
|
+
reference like sim templates, named variable sets, etc.), so it simplifies things to constrain
|
|
335
|
+
a pipeline job to a single project.
|
|
336
|
+
"""
|
|
337
|
+
def __init__(
|
|
338
|
+
self,
|
|
339
|
+
*,
|
|
340
|
+
pipeline_id: builtins.str = ...,
|
|
341
|
+
name: builtins.str = ...,
|
|
342
|
+
description: builtins.str | None = ...,
|
|
343
|
+
args_columns: collections.abc.Iterable[global___PipelineJobArgsColumn] | None = ...,
|
|
344
|
+
project_id: builtins.str = ...,
|
|
345
|
+
) -> None: ...
|
|
346
|
+
def HasField(self, field_name: typing_extensions.Literal["_description", b"_description", "description", b"description"]) -> builtins.bool: ...
|
|
347
|
+
def ClearField(self, field_name: typing_extensions.Literal["_description", b"_description", "args_columns", b"args_columns", "description", b"description", "name", b"name", "pipeline_id", b"pipeline_id", "project_id", b"project_id"]) -> None: ...
|
|
348
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_description", b"_description"]) -> typing_extensions.Literal["description"] | None: ...
|
|
349
|
+
|
|
350
|
+
global___CreatePipelineJobRequest = CreatePipelineJobRequest
|
|
351
|
+
|
|
352
|
+
class CreatePipelineJobResponse(google.protobuf.message.Message):
|
|
353
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
354
|
+
|
|
355
|
+
PIPELINE_JOB_FIELD_NUMBER: builtins.int
|
|
356
|
+
@property
|
|
357
|
+
def pipeline_job(self) -> global___PipelineJob: ...
|
|
358
|
+
def __init__(
|
|
359
|
+
self,
|
|
360
|
+
*,
|
|
361
|
+
pipeline_job: global___PipelineJob | None = ...,
|
|
362
|
+
) -> None: ...
|
|
363
|
+
def HasField(self, field_name: typing_extensions.Literal["pipeline_job", b"pipeline_job"]) -> builtins.bool: ...
|
|
364
|
+
def ClearField(self, field_name: typing_extensions.Literal["pipeline_job", b"pipeline_job"]) -> None: ...
|
|
365
|
+
|
|
366
|
+
global___CreatePipelineJobResponse = CreatePipelineJobResponse
|
|
367
|
+
|
|
368
|
+
class GetPipelineJobRequest(google.protobuf.message.Message):
|
|
369
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
370
|
+
|
|
371
|
+
ID_FIELD_NUMBER: builtins.int
|
|
372
|
+
id: builtins.str
|
|
373
|
+
def __init__(
|
|
374
|
+
self,
|
|
375
|
+
*,
|
|
376
|
+
id: builtins.str = ...,
|
|
377
|
+
) -> None: ...
|
|
378
|
+
def ClearField(self, field_name: typing_extensions.Literal["id", b"id"]) -> None: ...
|
|
379
|
+
|
|
380
|
+
global___GetPipelineJobRequest = GetPipelineJobRequest
|
|
381
|
+
|
|
382
|
+
class GetPipelineJobResponse(google.protobuf.message.Message):
|
|
383
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
384
|
+
|
|
385
|
+
PIPELINE_JOB_FIELD_NUMBER: builtins.int
|
|
386
|
+
@property
|
|
387
|
+
def pipeline_job(self) -> global___PipelineJob: ...
|
|
388
|
+
def __init__(
|
|
389
|
+
self,
|
|
390
|
+
*,
|
|
391
|
+
pipeline_job: global___PipelineJob | None = ...,
|
|
392
|
+
) -> None: ...
|
|
393
|
+
def HasField(self, field_name: typing_extensions.Literal["pipeline_job", b"pipeline_job"]) -> builtins.bool: ...
|
|
394
|
+
def ClearField(self, field_name: typing_extensions.Literal["pipeline_job", b"pipeline_job"]) -> None: ...
|
|
395
|
+
|
|
396
|
+
global___GetPipelineJobResponse = GetPipelineJobResponse
|
|
397
|
+
|
|
398
|
+
class ListPipelineJobsRequest(google.protobuf.message.Message):
|
|
399
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
400
|
+
|
|
401
|
+
def __init__(
|
|
402
|
+
self,
|
|
403
|
+
) -> None: ...
|
|
404
|
+
|
|
405
|
+
global___ListPipelineJobsRequest = ListPipelineJobsRequest
|
|
406
|
+
|
|
407
|
+
class ListPipelineJobsResponse(google.protobuf.message.Message):
|
|
408
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
409
|
+
|
|
410
|
+
PIPELINE_JOBS_FIELD_NUMBER: builtins.int
|
|
411
|
+
@property
|
|
412
|
+
def pipeline_jobs(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___PipelineJob]: ...
|
|
413
|
+
def __init__(
|
|
414
|
+
self,
|
|
415
|
+
*,
|
|
416
|
+
pipeline_jobs: collections.abc.Iterable[global___PipelineJob] | None = ...,
|
|
417
|
+
) -> None: ...
|
|
418
|
+
def ClearField(self, field_name: typing_extensions.Literal["pipeline_jobs", b"pipeline_jobs"]) -> None: ...
|
|
419
|
+
|
|
420
|
+
global___ListPipelineJobsResponse = ListPipelineJobsResponse
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from luminarycloud._proto.api.v0.luminarycloud.pipelines import pipelines_pb2 as proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class PipelineServiceStub(object):
|
|
9
|
+
"""Manages Pipelines
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
def __init__(self, channel):
|
|
13
|
+
"""Constructor.
|
|
14
|
+
|
|
15
|
+
Args:
|
|
16
|
+
channel: A grpc.Channel.
|
|
17
|
+
"""
|
|
18
|
+
self.CreatePipeline = channel.unary_unary(
|
|
19
|
+
'/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/CreatePipeline',
|
|
20
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineRequest.SerializeToString,
|
|
21
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineResponse.FromString,
|
|
22
|
+
)
|
|
23
|
+
self.GetPipeline = channel.unary_unary(
|
|
24
|
+
'/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/GetPipeline',
|
|
25
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineRequest.SerializeToString,
|
|
26
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineResponse.FromString,
|
|
27
|
+
)
|
|
28
|
+
self.ListPipelines = channel.unary_unary(
|
|
29
|
+
'/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/ListPipelines',
|
|
30
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelinesRequest.SerializeToString,
|
|
31
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelinesResponse.FromString,
|
|
32
|
+
)
|
|
33
|
+
self.CreatePipelineJob = channel.unary_unary(
|
|
34
|
+
'/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/CreatePipelineJob',
|
|
35
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineJobRequest.SerializeToString,
|
|
36
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineJobResponse.FromString,
|
|
37
|
+
)
|
|
38
|
+
self.GetPipelineJob = channel.unary_unary(
|
|
39
|
+
'/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/GetPipelineJob',
|
|
40
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineJobRequest.SerializeToString,
|
|
41
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineJobResponse.FromString,
|
|
42
|
+
)
|
|
43
|
+
self.ListPipelineJobs = channel.unary_unary(
|
|
44
|
+
'/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/ListPipelineJobs',
|
|
45
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelineJobsRequest.SerializeToString,
|
|
46
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelineJobsResponse.FromString,
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
class PipelineServiceServicer(object):
|
|
51
|
+
"""Manages Pipelines
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
def CreatePipeline(self, request, context):
|
|
55
|
+
"""Creates a new pipeline.
|
|
56
|
+
"""
|
|
57
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
58
|
+
context.set_details('Method not implemented!')
|
|
59
|
+
raise NotImplementedError('Method not implemented!')
|
|
60
|
+
|
|
61
|
+
def GetPipeline(self, request, context):
|
|
62
|
+
"""Retrieves a pipeline.
|
|
63
|
+
"""
|
|
64
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
65
|
+
context.set_details('Method not implemented!')
|
|
66
|
+
raise NotImplementedError('Method not implemented!')
|
|
67
|
+
|
|
68
|
+
def ListPipelines(self, request, context):
|
|
69
|
+
"""Lists all pipelines.
|
|
70
|
+
"""
|
|
71
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
72
|
+
context.set_details('Method not implemented!')
|
|
73
|
+
raise NotImplementedError('Method not implemented!')
|
|
74
|
+
|
|
75
|
+
def CreatePipelineJob(self, request, context):
|
|
76
|
+
"""Creates a new pipeline job.
|
|
77
|
+
"""
|
|
78
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
79
|
+
context.set_details('Method not implemented!')
|
|
80
|
+
raise NotImplementedError('Method not implemented!')
|
|
81
|
+
|
|
82
|
+
def GetPipelineJob(self, request, context):
|
|
83
|
+
"""Retrieves a pipeline job.
|
|
84
|
+
"""
|
|
85
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
86
|
+
context.set_details('Method not implemented!')
|
|
87
|
+
raise NotImplementedError('Method not implemented!')
|
|
88
|
+
|
|
89
|
+
def ListPipelineJobs(self, request, context):
|
|
90
|
+
"""Lists all pipeline jobs.
|
|
91
|
+
"""
|
|
92
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
93
|
+
context.set_details('Method not implemented!')
|
|
94
|
+
raise NotImplementedError('Method not implemented!')
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
def add_PipelineServiceServicer_to_server(servicer, server):
|
|
98
|
+
rpc_method_handlers = {
|
|
99
|
+
'CreatePipeline': grpc.unary_unary_rpc_method_handler(
|
|
100
|
+
servicer.CreatePipeline,
|
|
101
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineRequest.FromString,
|
|
102
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineResponse.SerializeToString,
|
|
103
|
+
),
|
|
104
|
+
'GetPipeline': grpc.unary_unary_rpc_method_handler(
|
|
105
|
+
servicer.GetPipeline,
|
|
106
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineRequest.FromString,
|
|
107
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineResponse.SerializeToString,
|
|
108
|
+
),
|
|
109
|
+
'ListPipelines': grpc.unary_unary_rpc_method_handler(
|
|
110
|
+
servicer.ListPipelines,
|
|
111
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelinesRequest.FromString,
|
|
112
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelinesResponse.SerializeToString,
|
|
113
|
+
),
|
|
114
|
+
'CreatePipelineJob': grpc.unary_unary_rpc_method_handler(
|
|
115
|
+
servicer.CreatePipelineJob,
|
|
116
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineJobRequest.FromString,
|
|
117
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineJobResponse.SerializeToString,
|
|
118
|
+
),
|
|
119
|
+
'GetPipelineJob': grpc.unary_unary_rpc_method_handler(
|
|
120
|
+
servicer.GetPipelineJob,
|
|
121
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineJobRequest.FromString,
|
|
122
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineJobResponse.SerializeToString,
|
|
123
|
+
),
|
|
124
|
+
'ListPipelineJobs': grpc.unary_unary_rpc_method_handler(
|
|
125
|
+
servicer.ListPipelineJobs,
|
|
126
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelineJobsRequest.FromString,
|
|
127
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelineJobsResponse.SerializeToString,
|
|
128
|
+
),
|
|
129
|
+
}
|
|
130
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
131
|
+
'luminary.proto.api.v0.luminarycloud.pipelines.PipelineService', rpc_method_handlers)
|
|
132
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
# This class is part of an EXPERIMENTAL API.
|
|
136
|
+
class PipelineService(object):
|
|
137
|
+
"""Manages Pipelines
|
|
138
|
+
"""
|
|
139
|
+
|
|
140
|
+
@staticmethod
|
|
141
|
+
def CreatePipeline(request,
|
|
142
|
+
target,
|
|
143
|
+
options=(),
|
|
144
|
+
channel_credentials=None,
|
|
145
|
+
call_credentials=None,
|
|
146
|
+
insecure=False,
|
|
147
|
+
compression=None,
|
|
148
|
+
wait_for_ready=None,
|
|
149
|
+
timeout=None,
|
|
150
|
+
metadata=None):
|
|
151
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/CreatePipeline',
|
|
152
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineRequest.SerializeToString,
|
|
153
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineResponse.FromString,
|
|
154
|
+
options, channel_credentials,
|
|
155
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
156
|
+
|
|
157
|
+
@staticmethod
|
|
158
|
+
def GetPipeline(request,
|
|
159
|
+
target,
|
|
160
|
+
options=(),
|
|
161
|
+
channel_credentials=None,
|
|
162
|
+
call_credentials=None,
|
|
163
|
+
insecure=False,
|
|
164
|
+
compression=None,
|
|
165
|
+
wait_for_ready=None,
|
|
166
|
+
timeout=None,
|
|
167
|
+
metadata=None):
|
|
168
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/GetPipeline',
|
|
169
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineRequest.SerializeToString,
|
|
170
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineResponse.FromString,
|
|
171
|
+
options, channel_credentials,
|
|
172
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
173
|
+
|
|
174
|
+
@staticmethod
|
|
175
|
+
def ListPipelines(request,
|
|
176
|
+
target,
|
|
177
|
+
options=(),
|
|
178
|
+
channel_credentials=None,
|
|
179
|
+
call_credentials=None,
|
|
180
|
+
insecure=False,
|
|
181
|
+
compression=None,
|
|
182
|
+
wait_for_ready=None,
|
|
183
|
+
timeout=None,
|
|
184
|
+
metadata=None):
|
|
185
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/ListPipelines',
|
|
186
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelinesRequest.SerializeToString,
|
|
187
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelinesResponse.FromString,
|
|
188
|
+
options, channel_credentials,
|
|
189
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
190
|
+
|
|
191
|
+
@staticmethod
|
|
192
|
+
def CreatePipelineJob(request,
|
|
193
|
+
target,
|
|
194
|
+
options=(),
|
|
195
|
+
channel_credentials=None,
|
|
196
|
+
call_credentials=None,
|
|
197
|
+
insecure=False,
|
|
198
|
+
compression=None,
|
|
199
|
+
wait_for_ready=None,
|
|
200
|
+
timeout=None,
|
|
201
|
+
metadata=None):
|
|
202
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/CreatePipelineJob',
|
|
203
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineJobRequest.SerializeToString,
|
|
204
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.CreatePipelineJobResponse.FromString,
|
|
205
|
+
options, channel_credentials,
|
|
206
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
207
|
+
|
|
208
|
+
@staticmethod
|
|
209
|
+
def GetPipelineJob(request,
|
|
210
|
+
target,
|
|
211
|
+
options=(),
|
|
212
|
+
channel_credentials=None,
|
|
213
|
+
call_credentials=None,
|
|
214
|
+
insecure=False,
|
|
215
|
+
compression=None,
|
|
216
|
+
wait_for_ready=None,
|
|
217
|
+
timeout=None,
|
|
218
|
+
metadata=None):
|
|
219
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/GetPipelineJob',
|
|
220
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineJobRequest.SerializeToString,
|
|
221
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.GetPipelineJobResponse.FromString,
|
|
222
|
+
options, channel_credentials,
|
|
223
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
224
|
+
|
|
225
|
+
@staticmethod
|
|
226
|
+
def ListPipelineJobs(request,
|
|
227
|
+
target,
|
|
228
|
+
options=(),
|
|
229
|
+
channel_credentials=None,
|
|
230
|
+
call_credentials=None,
|
|
231
|
+
insecure=False,
|
|
232
|
+
compression=None,
|
|
233
|
+
wait_for_ready=None,
|
|
234
|
+
timeout=None,
|
|
235
|
+
metadata=None):
|
|
236
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.pipelines.PipelineService/ListPipelineJobs',
|
|
237
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelineJobsRequest.SerializeToString,
|
|
238
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_pipelines_dot_pipelines__pb2.ListPipelineJobsResponse.FromString,
|
|
239
|
+
options, channel_credentials,
|
|
240
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|