luminarycloud 0.17.0__py3-none-any.whl → 0.18.1__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 (73) hide show
  1. luminarycloud/__init__.py +4 -0
  2. luminarycloud/_client/client.py +3 -0
  3. luminarycloud/_helpers/_create_geometry.py +134 -32
  4. luminarycloud/_helpers/cond.py +0 -1
  5. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +146 -123
  6. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +81 -8
  7. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +34 -0
  8. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +12 -0
  9. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +8 -8
  10. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +12 -7
  11. luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2.py +246 -0
  12. luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2.pyi +420 -0
  13. luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2_grpc.py +240 -0
  14. luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2_grpc.pyi +90 -0
  15. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py +54 -3
  16. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi +92 -1
  17. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2_grpc.py +132 -0
  18. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2_grpc.pyi +40 -0
  19. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +88 -55
  20. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +108 -1
  21. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py +35 -0
  22. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi +16 -0
  23. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +48 -26
  24. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +30 -2
  25. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.py +36 -0
  26. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.pyi +18 -0
  27. luminarycloud/_proto/client/simulation_pb2.py +261 -251
  28. luminarycloud/_proto/client/simulation_pb2.pyi +40 -3
  29. luminarycloud/_proto/frontend/output/output_pb2.py +24 -24
  30. luminarycloud/_proto/frontend/output/output_pb2.pyi +6 -3
  31. luminarycloud/_proto/geometry/geometry_pb2.py +63 -63
  32. luminarycloud/_proto/geometry/geometry_pb2.pyi +14 -4
  33. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +10 -10
  34. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +12 -7
  35. luminarycloud/_proto/output/output_pb2.py +43 -36
  36. luminarycloud/_proto/output/output_pb2.pyi +28 -1
  37. luminarycloud/_proto/quantity/quantity_options_pb2.py +5 -4
  38. luminarycloud/_proto/quantity/quantity_options_pb2.pyi +4 -0
  39. luminarycloud/_proto/quantity/quantity_pb2.py +8 -8
  40. luminarycloud/enum/__init__.py +1 -0
  41. luminarycloud/enum/geometry_status.py +15 -8
  42. luminarycloud/enum/moment_convention_type.py +19 -0
  43. luminarycloud/enum/pipeline_job_status.py +23 -0
  44. luminarycloud/feature_modification.py +3 -1
  45. luminarycloud/geometry.py +12 -0
  46. luminarycloud/geometry_version.py +23 -0
  47. luminarycloud/outputs/output_definitions.py +5 -0
  48. luminarycloud/params/enum/_enum_wrappers.py +29 -0
  49. luminarycloud/params/simulation/monitor_plane_.py +1 -1
  50. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/fan_curve_inlet_.py +1 -1
  51. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mach_inlet_.py +5 -1
  52. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mass_flow_inlet_.py +5 -1
  53. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/total_pressure_inlet_.py +5 -1
  54. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/velocity_magnitude_inlet_.py +5 -1
  55. luminarycloud/physics_ai/inference.py +57 -30
  56. luminarycloud/pipelines/__init__.py +7 -0
  57. luminarycloud/pipelines/api.py +213 -0
  58. luminarycloud/pipelines/operators.py +4 -4
  59. luminarycloud/project.py +66 -6
  60. luminarycloud/simulation.py +6 -0
  61. luminarycloud/simulation_param.py +4 -2
  62. luminarycloud/simulation_queue.py +130 -0
  63. luminarycloud/simulation_template.py +21 -7
  64. luminarycloud/types/adfloat.py +3 -0
  65. luminarycloud/vis/__init__.py +4 -0
  66. luminarycloud/vis/interactive_inference.py +153 -0
  67. luminarycloud/vis/interactive_scene.py +49 -17
  68. luminarycloud/vis/primitives.py +9 -0
  69. luminarycloud/vis/visualization.py +22 -0
  70. luminarycloud/volume_selection.py +3 -2
  71. {luminarycloud-0.17.0.dist-info → luminarycloud-0.18.1.dist-info}/METADATA +18 -18
  72. {luminarycloud-0.17.0.dist-info → luminarycloud-0.18.1.dist-info}/RECORD +73 -64
  73. {luminarycloud-0.17.0.dist-info → luminarycloud-0.18.1.dist-info}/WHEEL +0 -0
@@ -9,6 +9,7 @@ import google.protobuf.internal.containers
9
9
  import google.protobuf.internal.enum_type_wrapper
10
10
  import google.protobuf.message
11
11
  import google.protobuf.timestamp_pb2
12
+ import luminarycloud._proto.base.base_pb2
12
13
  import luminarycloud._proto.cadmetadata.cadmetadata_pb2
13
14
  import luminarycloud._proto.geometry.geometry_pb2
14
15
  import luminarycloud._proto.lcn.lcmesh_pb2
@@ -32,17 +33,35 @@ class Geometry(google.protobuf.message.Message):
32
33
  class _StatusEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[Geometry._Status.ValueType], builtins.type): # noqa: F821
33
34
  DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
34
35
  UNKNOWN: Geometry._Status.ValueType # 0
35
- IMPORTING: Geometry._Status.ValueType # 1
36
- NEEDS_CHECK: Geometry._Status.ValueType # 2
36
+ """Status is unknown"""
37
+ BUSY: Geometry._Status.ValueType # 1
38
+ """Geometry is being processed → HAS_FEATURE_ERRORS | READY_FOR_CHECK"""
39
+ HAS_FEATURE_ERRORS: Geometry._Status.ValueType # 5
40
+ """Geometry has issues but can be processed → BUSY"""
41
+ READY_FOR_CHECK: Geometry._Status.ValueType # 2
42
+ """Geometry needs to be checked → CHECKING"""
43
+ CHECKING: Geometry._Status.ValueType # 6
44
+ """Geometry check is running → FAILED_CHECK | READY"""
37
45
  FAILED_CHECK: Geometry._Status.ValueType # 3
46
+ """Geometry failed check and cannot be used → BUSY"""
38
47
  READY: Geometry._Status.ValueType # 4
48
+ """Geometry is ready for use → BUSY"""
39
49
 
40
50
  class Status(_Status, metaclass=_StatusEnumTypeWrapper): ...
41
51
  UNKNOWN: Geometry.Status.ValueType # 0
42
- IMPORTING: Geometry.Status.ValueType # 1
43
- NEEDS_CHECK: Geometry.Status.ValueType # 2
52
+ """Status is unknown"""
53
+ BUSY: Geometry.Status.ValueType # 1
54
+ """Geometry is being processed → HAS_FEATURE_ERRORS | READY_FOR_CHECK"""
55
+ HAS_FEATURE_ERRORS: Geometry.Status.ValueType # 5
56
+ """Geometry has issues but can be processed → BUSY"""
57
+ READY_FOR_CHECK: Geometry.Status.ValueType # 2
58
+ """Geometry needs to be checked → CHECKING"""
59
+ CHECKING: Geometry.Status.ValueType # 6
60
+ """Geometry check is running → FAILED_CHECK | READY"""
44
61
  FAILED_CHECK: Geometry.Status.ValueType # 3
62
+ """Geometry failed check and cannot be used → BUSY"""
45
63
  READY: Geometry.Status.ValueType # 4
64
+ """Geometry is ready for use → BUSY"""
46
65
 
47
66
  ID_FIELD_NUMBER: builtins.int
48
67
  NAME_FIELD_NUMBER: builtins.int
@@ -664,6 +683,7 @@ class CreateGeometryRequest(google.protobuf.message.Message):
664
683
  NAME_FIELD_NUMBER: builtins.int
665
684
  URL_FIELD_NUMBER: builtins.int
666
685
  WEB_GEOMETRY_ID_FIELD_NUMBER: builtins.int
686
+ SCALING_FLOAT_FIELD_NUMBER: builtins.int
667
687
  SCALING_FIELD_NUMBER: builtins.int
668
688
  WAIT_FIELD_NUMBER: builtins.int
669
689
  REQUEST_ID_FIELD_NUMBER: builtins.int
@@ -683,8 +703,15 @@ class CreateGeometryRequest(google.protobuf.message.Message):
683
703
  """One of url/web_geometry_id required.
684
704
  Id for web_geometry, such as returned from UploadWebGeometryReply.
685
705
  """
686
- scaling: builtins.float
687
- """Required. Scaling of the source CAD file."""
706
+ scaling_float: builtins.float
707
+ """One of scaling/scaling_float required. scaling will take priority.
708
+ (deprecated) Scaling of the source CAD file.
709
+ """
710
+ @property
711
+ def scaling(self) -> luminarycloud._proto.base.base_pb2.AdFloatType:
712
+ """One of scaling/scaling_float required. scaling will take priority.
713
+ Scaling of the source CAD file.
714
+ """
688
715
  wait: builtins.bool
689
716
  """Optional. If set to true, the server will wait for the geometry import to
690
717
  complete before sending the response. Otherwise, it will respond
@@ -702,11 +729,13 @@ class CreateGeometryRequest(google.protobuf.message.Message):
702
729
  name: builtins.str = ...,
703
730
  url: builtins.str = ...,
704
731
  web_geometry_id: builtins.str = ...,
705
- scaling: builtins.float = ...,
732
+ scaling_float: builtins.float = ...,
733
+ scaling: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
706
734
  wait: builtins.bool = ...,
707
735
  request_id: builtins.str = ...,
708
736
  ) -> None: ...
709
- def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "project_id", b"project_id", "request_id", b"request_id", "scaling", b"scaling", "url", b"url", "wait", b"wait", "web_geometry_id", b"web_geometry_id"]) -> None: ...
737
+ def HasField(self, field_name: typing_extensions.Literal["scaling", b"scaling"]) -> builtins.bool: ...
738
+ def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "project_id", b"project_id", "request_id", b"request_id", "scaling", b"scaling", "scaling_float", b"scaling_float", "url", b"url", "wait", b"wait", "web_geometry_id", b"web_geometry_id"]) -> None: ...
710
739
 
711
740
  global___CreateGeometryRequest = CreateGeometryRequest
712
741
 
@@ -803,6 +832,50 @@ class CopyGeometryResponse(google.protobuf.message.Message):
803
832
 
804
833
  global___CopyGeometryResponse = CopyGeometryResponse
805
834
 
835
+ class CopyGeometryFromVersionRequest(google.protobuf.message.Message):
836
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
837
+
838
+ GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
839
+ NAME_FIELD_NUMBER: builtins.int
840
+ REQUEST_ID_FIELD_NUMBER: builtins.int
841
+ geometry_version_id: builtins.str
842
+ """Required. The ID of the geometry version to copy."""
843
+ name: builtins.str
844
+ """Optional. User specified geometry name, does not need to be unique. Maximum
845
+ allowed length is 256 characters. If omitted, a default name will be used.
846
+ """
847
+ request_id: builtins.str
848
+ """Optional. Used to deduplicate requests. If it is not set, no deduplication
849
+ attempts will be made. Else, the server will check that no geometry was
850
+ previously created with this request ID.
851
+ """
852
+ def __init__(
853
+ self,
854
+ *,
855
+ geometry_version_id: builtins.str = ...,
856
+ name: builtins.str = ...,
857
+ request_id: builtins.str = ...,
858
+ ) -> None: ...
859
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_version_id", b"geometry_version_id", "name", b"name", "request_id", b"request_id"]) -> None: ...
860
+
861
+ global___CopyGeometryFromVersionRequest = CopyGeometryFromVersionRequest
862
+
863
+ class CopyGeometryFromVersionResponse(google.protobuf.message.Message):
864
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
865
+
866
+ GEOMETRY_FIELD_NUMBER: builtins.int
867
+ @property
868
+ def geometry(self) -> global___Geometry: ...
869
+ def __init__(
870
+ self,
871
+ *,
872
+ geometry: global___Geometry | None = ...,
873
+ ) -> None: ...
874
+ def HasField(self, field_name: typing_extensions.Literal["geometry", b"geometry"]) -> builtins.bool: ...
875
+ def ClearField(self, field_name: typing_extensions.Literal["geometry", b"geometry"]) -> None: ...
876
+
877
+ global___CopyGeometryFromVersionResponse = CopyGeometryFromVersionResponse
878
+
806
879
  class DeleteGeometryRequest(google.protobuf.message.Message):
807
880
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
808
881
 
@@ -65,6 +65,11 @@ class GeometryServiceStub(object):
65
65
  request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryRequest.SerializeToString,
66
66
  response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryResponse.FromString,
67
67
  )
68
+ self.CopyGeometryFromVersion = channel.unary_unary(
69
+ '/luminary.proto.api.v0.luminarycloud.geometry.GeometryService/CopyGeometryFromVersion',
70
+ request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryFromVersionRequest.SerializeToString,
71
+ response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryFromVersionResponse.FromString,
72
+ )
68
73
  self.DeleteGeometry = channel.unary_unary(
69
74
  '/luminary.proto.api.v0.luminarycloud.geometry.GeometryService/DeleteGeometry',
70
75
  request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.DeleteGeometryRequest.SerializeToString,
@@ -207,6 +212,13 @@ class GeometryServiceServicer(object):
207
212
  context.set_details('Method not implemented!')
208
213
  raise NotImplementedError('Method not implemented!')
209
214
 
215
+ def CopyGeometryFromVersion(self, request, context):
216
+ """Create a geometry as a copy from an existing geometry version
217
+ """
218
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
219
+ context.set_details('Method not implemented!')
220
+ raise NotImplementedError('Method not implemented!')
221
+
210
222
  def DeleteGeometry(self, request, context):
211
223
  """Delete an existing geometry
212
224
  """
@@ -360,6 +372,11 @@ def add_GeometryServiceServicer_to_server(servicer, server):
360
372
  request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryRequest.FromString,
361
373
  response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryResponse.SerializeToString,
362
374
  ),
375
+ 'CopyGeometryFromVersion': grpc.unary_unary_rpc_method_handler(
376
+ servicer.CopyGeometryFromVersion,
377
+ request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryFromVersionRequest.FromString,
378
+ response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryFromVersionResponse.SerializeToString,
379
+ ),
363
380
  'DeleteGeometry': grpc.unary_unary_rpc_method_handler(
364
381
  servicer.DeleteGeometry,
365
382
  request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.DeleteGeometryRequest.FromString,
@@ -605,6 +622,23 @@ class GeometryService(object):
605
622
  options, channel_credentials,
606
623
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
607
624
 
625
+ @staticmethod
626
+ def CopyGeometryFromVersion(request,
627
+ target,
628
+ options=(),
629
+ channel_credentials=None,
630
+ call_credentials=None,
631
+ insecure=False,
632
+ compression=None,
633
+ wait_for_ready=None,
634
+ timeout=None,
635
+ metadata=None):
636
+ return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.geometry.GeometryService/CopyGeometryFromVersion',
637
+ proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryFromVersionRequest.SerializeToString,
638
+ proto_dot_api_dot_v0_dot_luminarycloud_dot_geometry_dot_geometry__pb2.CopyGeometryFromVersionResponse.FromString,
639
+ options, channel_credentials,
640
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
641
+
608
642
  @staticmethod
609
643
  def DeleteGeometry(request,
610
644
  target,
@@ -64,6 +64,11 @@ class GeometryServiceStub:
64
64
  luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.CopyGeometryResponse,
65
65
  ]
66
66
  """Copy an existing geometry"""
67
+ CopyGeometryFromVersion: grpc.UnaryUnaryMultiCallable[
68
+ luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.CopyGeometryFromVersionRequest,
69
+ luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.CopyGeometryFromVersionResponse,
70
+ ]
71
+ """Create a geometry as a copy from an existing geometry version"""
67
72
  DeleteGeometry: grpc.UnaryUnaryMultiCallable[
68
73
  luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.DeleteGeometryRequest,
69
74
  luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.DeleteGeometryResponse,
@@ -221,6 +226,13 @@ class GeometryServiceServicer(metaclass=abc.ABCMeta):
221
226
  ) -> luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.CopyGeometryResponse:
222
227
  """Copy an existing geometry"""
223
228
  @abc.abstractmethod
229
+ def CopyGeometryFromVersion(
230
+ self,
231
+ request: luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.CopyGeometryFromVersionRequest,
232
+ context: grpc.ServicerContext,
233
+ ) -> luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.CopyGeometryFromVersionResponse:
234
+ """Create a geometry as a copy from an existing geometry version"""
235
+ @abc.abstractmethod
224
236
  def DeleteGeometry(
225
237
  self,
226
238
  request: luminarycloud._proto.api.v0.luminarycloud.geometry.geometry_pb2.DeleteGeometryRequest,
@@ -18,7 +18,7 @@ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
18
18
  from luminarycloud._proto.inferenceservice import inferenceservice_pb2 as proto_dot_inferenceservice_dot_inferenceservice__pb2
19
19
 
20
20
 
21
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n4proto/api/v0/luminarycloud/inference/inference.proto\x12-luminary.proto.api.v0.luminarycloud.inference\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a-proto/inferenceservice/inferenceservice.proto\"\x8a\x01\n CreateInferenceServiceJobRequest\x12\x0f\n\x07stl_url\x18\x01 \x01(\t\x12\x16\n\x0e\x63heckpoint_url\x18\x02 \x01(\t\x12\x13\n\x0b\x63onfig_name\x18\x03 \x01(\t\x12\x14\n\x0cstencil_size\x18\x04 \x01(\x05\x12\x12\n\nproject_id\x18\x05 \x01(\t\"\x8e\x01\n!CreateInferenceServiceJobResponse\x12\x45\n\x06status\x18\x01 \x01(\x0e\x32\x35.luminary.proto.api.v0.luminarycloud.inference.Status\x12\x15\n\x08response\x18\x02 \x01(\x0cH\x00\x88\x01\x01\x42\x0b\n\t_response*D\n\x06Status\x12\x12\n\x0eSTATUS_PENDING\x10\x00\x12\x12\n\x0eSTATUS_SUCCESS\x10\x01\x12\x12\n\x0eSTATUS_FAILURE\x10\x02\x32\xea\x01\n\x10InferenceService\x12\xd5\x01\n\x19\x43reateInferenceServiceJob\x12O.luminary.proto.api.v0.luminarycloud.inference.CreateInferenceServiceJobRequest\x1aP.luminary.proto.api.v0.luminarycloud.inference.CreateInferenceServiceJobResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\"\r/v0/inferenceB=Z;luminarycloud.com/core/proto/api/v0/luminarycloud/inferenceb\x06proto3')
21
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n4proto/api/v0/luminarycloud/inference/inference.proto\x12-luminary.proto.api.v0.luminarycloud.inference\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a-proto/inferenceservice/inferenceservice.proto\"\xa9\x01\n CreateInferenceServiceJobRequest\x12\x14\n\x0c\x61rtifact_url\x18\x01 \x01(\t\x12\x0f\n\x07stl_url\x18\x02 \x01(\t\x12\x12\n\nparameters\x18\x03 \x01(\x0c\x12\x14\n\x0cstencil_size\x18\x04 \x01(\x05\x12\x12\n\nproject_id\x18\x05 \x01(\t\x12 \n\x18write_visualization_data\x18\x06 \x01(\x08\"\x8e\x01\n!CreateInferenceServiceJobResponse\x12\x45\n\x06status\x18\x01 \x01(\x0e\x32\x35.luminary.proto.api.v0.luminarycloud.inference.Status\x12\x15\n\x08response\x18\x02 \x01(\x0cH\x00\x88\x01\x01\x42\x0b\n\t_response*D\n\x06Status\x12\x12\n\x0eSTATUS_PENDING\x10\x00\x12\x12\n\x0eSTATUS_SUCCESS\x10\x01\x12\x12\n\x0eSTATUS_FAILURE\x10\x02\x32\xea\x01\n\x10InferenceService\x12\xd5\x01\n\x19\x43reateInferenceServiceJob\x12O.luminary.proto.api.v0.luminarycloud.inference.CreateInferenceServiceJobRequest\x1aP.luminary.proto.api.v0.luminarycloud.inference.CreateInferenceServiceJobResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\"\r/v0/inferenceB=Z;luminarycloud.com/core/proto/api/v0/luminarycloud/inferenceb\x06proto3')
22
22
 
23
23
  _STATUS = DESCRIPTOR.enum_types_by_name['Status']
24
24
  Status = enum_type_wrapper.EnumTypeWrapper(_STATUS)
@@ -50,12 +50,12 @@ if _descriptor._USE_C_DESCRIPTORS == False:
50
50
  DESCRIPTOR._serialized_options = b'Z;luminarycloud.com/core/proto/api/v0/luminarycloud/inference'
51
51
  _INFERENCESERVICE.methods_by_name['CreateInferenceServiceJob']._options = None
52
52
  _INFERENCESERVICE.methods_by_name['CreateInferenceServiceJob']._serialized_options = b'\202\323\344\223\002\017\"\r/v0/inference'
53
- _STATUS._serialized_start=495
54
- _STATUS._serialized_end=563
53
+ _STATUS._serialized_start=526
54
+ _STATUS._serialized_end=594
55
55
  _CREATEINFERENCESERVICEJOBREQUEST._serialized_start=210
56
- _CREATEINFERENCESERVICEJOBREQUEST._serialized_end=348
57
- _CREATEINFERENCESERVICEJOBRESPONSE._serialized_start=351
58
- _CREATEINFERENCESERVICEJOBRESPONSE._serialized_end=493
59
- _INFERENCESERVICE._serialized_start=566
60
- _INFERENCESERVICE._serialized_end=800
56
+ _CREATEINFERENCESERVICEJOBREQUEST._serialized_end=379
57
+ _CREATEINFERENCESERVICEJOBRESPONSE._serialized_start=382
58
+ _CREATEINFERENCESERVICEJOBRESPONSE._serialized_end=524
59
+ _INFERENCESERVICE._serialized_start=597
60
+ _INFERENCESERVICE._serialized_end=831
61
61
  # @@protoc_insertion_point(module_scope)
@@ -36,26 +36,31 @@ global___Status = Status
36
36
  class CreateInferenceServiceJobRequest(google.protobuf.message.Message):
37
37
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
38
38
 
39
+ ARTIFACT_URL_FIELD_NUMBER: builtins.int
39
40
  STL_URL_FIELD_NUMBER: builtins.int
40
- CHECKPOINT_URL_FIELD_NUMBER: builtins.int
41
- CONFIG_NAME_FIELD_NUMBER: builtins.int
41
+ PARAMETERS_FIELD_NUMBER: builtins.int
42
42
  STENCIL_SIZE_FIELD_NUMBER: builtins.int
43
43
  PROJECT_ID_FIELD_NUMBER: builtins.int
44
+ WRITE_VISUALIZATION_DATA_FIELD_NUMBER: builtins.int
45
+ artifact_url: builtins.str
46
+ """Eventually should be a model version id"""
44
47
  stl_url: builtins.str
45
- checkpoint_url: builtins.str
46
- config_name: builtins.str
48
+ parameters: builtins.bytes
49
+ """JSON encoded parameters, like alpha, beta, etc."""
47
50
  stencil_size: builtins.int
48
51
  project_id: builtins.str
52
+ write_visualization_data: builtins.bool
49
53
  def __init__(
50
54
  self,
51
55
  *,
56
+ artifact_url: builtins.str = ...,
52
57
  stl_url: builtins.str = ...,
53
- checkpoint_url: builtins.str = ...,
54
- config_name: builtins.str = ...,
58
+ parameters: builtins.bytes = ...,
55
59
  stencil_size: builtins.int = ...,
56
60
  project_id: builtins.str = ...,
61
+ write_visualization_data: builtins.bool = ...,
57
62
  ) -> None: ...
58
- def ClearField(self, field_name: typing_extensions.Literal["checkpoint_url", b"checkpoint_url", "config_name", b"config_name", "project_id", b"project_id", "stencil_size", b"stencil_size", "stl_url", b"stl_url"]) -> None: ...
63
+ def ClearField(self, field_name: typing_extensions.Literal["artifact_url", b"artifact_url", "parameters", b"parameters", "project_id", b"project_id", "stencil_size", b"stencil_size", "stl_url", b"stl_url", "write_visualization_data", b"write_visualization_data"]) -> None: ...
59
64
 
60
65
  global___CreateInferenceServiceJobRequest = CreateInferenceServiceJobRequest
61
66
 
@@ -0,0 +1,246 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: proto/api/v0/luminarycloud/pipelines/pipelines.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf.internal import enum_type_wrapper
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import descriptor_pool as _descriptor_pool
8
+ from google.protobuf import message as _message
9
+ from google.protobuf import reflection as _reflection
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ # @@protoc_insertion_point(imports)
12
+
13
+ _sym_db = _symbol_database.Default()
14
+
15
+
16
+ from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
17
+ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
18
+
19
+
20
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n4proto/api/v0/luminarycloud/pipelines/pipelines.proto\x12-luminary.proto.api.v0.luminarycloud.pipelines\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xb2\x01\n\x08Pipeline\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x03 \x01(\t\x12\x17\n\x0f\x64\x65\x66inition_yaml\x18\x04 \x01(\t\x12.\n\ncreated_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xb8\x03\n\x0bPipelineJob\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bpipeline_id\x18\x02 \x01(\t\x12\x12\n\nproject_id\x18\x03 \x01(\t\x12\x0c\n\x04name\x18\x04 \x01(\t\x12\x18\n\x0b\x64\x65scription\x18\x05 \x01(\tH\x00\x88\x01\x01\x12P\n\x06status\x18\x06 \x01(\x0e\x32@.luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobStatus\x12.\n\ncreated_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nupdated_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\nstarted_at\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x01\x88\x01\x01\x12\x35\n\x0c\x63ompleted_at\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampH\x02\x88\x01\x01\x42\x0e\n\x0c_descriptionB\r\n\x0b_started_atB\x0f\n\r_completed_at\"h\n\x15\x43reatePipelineRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x18\n\x0b\x64\x65scription\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x17\n\x0f\x64\x65\x66inition_yaml\x18\x03 \x01(\tB\x0e\n\x0c_description\"c\n\x16\x43reatePipelineResponse\x12I\n\x08pipeline\x18\x01 \x01(\x0b\x32\x37.luminary.proto.api.v0.luminarycloud.pipelines.Pipeline\" \n\x12GetPipelineRequest\x12\n\n\x02id\x18\x01 \x01(\t\"`\n\x13GetPipelineResponse\x12I\n\x08pipeline\x18\x01 \x01(\x0b\x32\x37.luminary.proto.api.v0.luminarycloud.pipelines.Pipeline\"\x16\n\x14ListPipelinesRequest\"c\n\x15ListPipelinesResponse\x12J\n\tpipelines\x18\x01 \x03(\x0b\x32\x37.luminary.proto.api.v0.luminarycloud.pipelines.Pipeline\"\xfa\x04\n\x15PipelineJobArgsColumn\x12j\n\rstring_column\x18\x01 \x01(\x0b\x32Q.luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn.StringColumnH\x00\x12\x64\n\nint_column\x18\x02 \x01(\x0b\x32N.luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn.IntColumnH\x00\x12j\n\rdouble_column\x18\x03 \x01(\x0b\x32Q.luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn.DoubleColumnH\x00\x12\x66\n\x0b\x62ool_column\x18\x04 \x01(\x0b\x32O.luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn.BoolColumnH\x00\x1a,\n\x0cStringColumn\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06values\x18\x02 \x03(\t\x1a)\n\tIntColumn\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06values\x18\x02 \x03(\x03\x1a,\n\x0c\x44oubleColumn\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06values\x18\x02 \x03(\x01\x1a*\n\nBoolColumn\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06values\x18\x02 \x03(\x08\x42\x08\n\x06\x63olumn\"\xd7\x01\n\x18\x43reatePipelineJobRequest\x12\x13\n\x0bpipeline_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x18\n\x0b\x64\x65scription\x18\x03 \x01(\tH\x00\x88\x01\x01\x12Z\n\x0c\x61rgs_columns\x18\x04 \x03(\x0b\x32\x44.luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn\x12\x12\n\nproject_id\x18\x05 \x01(\tB\x0e\n\x0c_description\"m\n\x19\x43reatePipelineJobResponse\x12P\n\x0cpipeline_job\x18\x01 \x01(\x0b\x32:.luminary.proto.api.v0.luminarycloud.pipelines.PipelineJob\"#\n\x15GetPipelineJobRequest\x12\n\n\x02id\x18\x01 \x01(\t\"j\n\x16GetPipelineJobResponse\x12P\n\x0cpipeline_job\x18\x01 \x01(\x0b\x32:.luminary.proto.api.v0.luminarycloud.pipelines.PipelineJob\"\x19\n\x17ListPipelineJobsRequest\"m\n\x18ListPipelineJobsResponse\x12Q\n\rpipeline_jobs\x18\x01 \x03(\x0b\x32:.luminary.proto.api.v0.luminarycloud.pipelines.PipelineJob*\xbd\x01\n\x11PipelineJobStatus\x12#\n\x1fPIPELINE_JOB_STATUS_UNSPECIFIED\x10\x00\x12\x1f\n\x1bPIPELINE_JOB_STATUS_PENDING\x10\x01\x12\x1f\n\x1bPIPELINE_JOB_STATUS_RUNNING\x10\x02\x12!\n\x1dPIPELINE_JOB_STATUS_COMPLETED\x10\x03\x12\x1e\n\x1aPIPELINE_JOB_STATUS_FAILED\x10\x04\x32\x89\t\n\x0fPipelineService\x12\xb7\x01\n\x0e\x43reatePipeline\x12\x44.luminary.proto.api.v0.luminarycloud.pipelines.CreatePipelineRequest\x1a\x45.luminary.proto.api.v0.luminarycloud.pipelines.CreatePipelineResponse\"\x18\x82\xd3\xe4\x93\x02\x12\"\r/v0/pipelines:\x01*\x12\xb0\x01\n\x0bGetPipeline\x12\x41.luminary.proto.api.v0.luminarycloud.pipelines.GetPipelineRequest\x1a\x42.luminary.proto.api.v0.luminarycloud.pipelines.GetPipelineResponse\"\x1a\x82\xd3\xe4\x93\x02\x14\x12\x12/v0/pipelines/{id}\x12\xb1\x01\n\rListPipelines\x12\x43.luminary.proto.api.v0.luminarycloud.pipelines.ListPipelinesRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.pipelines.ListPipelinesResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\x12\r/v0/pipelines\x12\xd3\x01\n\x11\x43reatePipelineJob\x12G.luminary.proto.api.v0.luminarycloud.pipelines.CreatePipelineJobRequest\x1aH.luminary.proto.api.v0.luminarycloud.pipelines.CreatePipelineJobResponse\"+\x82\xd3\xe4\x93\x02%\" /v0/pipelines/{pipeline_id}/jobs:\x01*\x12\xbd\x01\n\x0eGetPipelineJob\x12\x44.luminary.proto.api.v0.luminarycloud.pipelines.GetPipelineJobRequest\x1a\x45.luminary.proto.api.v0.luminarycloud.pipelines.GetPipelineJobResponse\"\x1e\x82\xd3\xe4\x93\x02\x18\x12\x16/v0/pipeline_jobs/{id}\x12\xbe\x01\n\x10ListPipelineJobs\x12\x46.luminary.proto.api.v0.luminarycloud.pipelines.ListPipelineJobsRequest\x1aG.luminary.proto.api.v0.luminarycloud.pipelines.ListPipelineJobsResponse\"\x19\x82\xd3\xe4\x93\x02\x13\x12\x11/v0/pipeline_jobsB=Z;luminarycloud.com/core/proto/api/v0/luminarycloud/pipelinesb\x06proto3')
21
+
22
+ _PIPELINEJOBSTATUS = DESCRIPTOR.enum_types_by_name['PipelineJobStatus']
23
+ PipelineJobStatus = enum_type_wrapper.EnumTypeWrapper(_PIPELINEJOBSTATUS)
24
+ PIPELINE_JOB_STATUS_UNSPECIFIED = 0
25
+ PIPELINE_JOB_STATUS_PENDING = 1
26
+ PIPELINE_JOB_STATUS_RUNNING = 2
27
+ PIPELINE_JOB_STATUS_COMPLETED = 3
28
+ PIPELINE_JOB_STATUS_FAILED = 4
29
+
30
+
31
+ _PIPELINE = DESCRIPTOR.message_types_by_name['Pipeline']
32
+ _PIPELINEJOB = DESCRIPTOR.message_types_by_name['PipelineJob']
33
+ _CREATEPIPELINEREQUEST = DESCRIPTOR.message_types_by_name['CreatePipelineRequest']
34
+ _CREATEPIPELINERESPONSE = DESCRIPTOR.message_types_by_name['CreatePipelineResponse']
35
+ _GETPIPELINEREQUEST = DESCRIPTOR.message_types_by_name['GetPipelineRequest']
36
+ _GETPIPELINERESPONSE = DESCRIPTOR.message_types_by_name['GetPipelineResponse']
37
+ _LISTPIPELINESREQUEST = DESCRIPTOR.message_types_by_name['ListPipelinesRequest']
38
+ _LISTPIPELINESRESPONSE = DESCRIPTOR.message_types_by_name['ListPipelinesResponse']
39
+ _PIPELINEJOBARGSCOLUMN = DESCRIPTOR.message_types_by_name['PipelineJobArgsColumn']
40
+ _PIPELINEJOBARGSCOLUMN_STRINGCOLUMN = _PIPELINEJOBARGSCOLUMN.nested_types_by_name['StringColumn']
41
+ _PIPELINEJOBARGSCOLUMN_INTCOLUMN = _PIPELINEJOBARGSCOLUMN.nested_types_by_name['IntColumn']
42
+ _PIPELINEJOBARGSCOLUMN_DOUBLECOLUMN = _PIPELINEJOBARGSCOLUMN.nested_types_by_name['DoubleColumn']
43
+ _PIPELINEJOBARGSCOLUMN_BOOLCOLUMN = _PIPELINEJOBARGSCOLUMN.nested_types_by_name['BoolColumn']
44
+ _CREATEPIPELINEJOBREQUEST = DESCRIPTOR.message_types_by_name['CreatePipelineJobRequest']
45
+ _CREATEPIPELINEJOBRESPONSE = DESCRIPTOR.message_types_by_name['CreatePipelineJobResponse']
46
+ _GETPIPELINEJOBREQUEST = DESCRIPTOR.message_types_by_name['GetPipelineJobRequest']
47
+ _GETPIPELINEJOBRESPONSE = DESCRIPTOR.message_types_by_name['GetPipelineJobResponse']
48
+ _LISTPIPELINEJOBSREQUEST = DESCRIPTOR.message_types_by_name['ListPipelineJobsRequest']
49
+ _LISTPIPELINEJOBSRESPONSE = DESCRIPTOR.message_types_by_name['ListPipelineJobsResponse']
50
+ Pipeline = _reflection.GeneratedProtocolMessageType('Pipeline', (_message.Message,), {
51
+ 'DESCRIPTOR' : _PIPELINE,
52
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
53
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.Pipeline)
54
+ })
55
+ _sym_db.RegisterMessage(Pipeline)
56
+
57
+ PipelineJob = _reflection.GeneratedProtocolMessageType('PipelineJob', (_message.Message,), {
58
+ 'DESCRIPTOR' : _PIPELINEJOB,
59
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
60
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.PipelineJob)
61
+ })
62
+ _sym_db.RegisterMessage(PipelineJob)
63
+
64
+ CreatePipelineRequest = _reflection.GeneratedProtocolMessageType('CreatePipelineRequest', (_message.Message,), {
65
+ 'DESCRIPTOR' : _CREATEPIPELINEREQUEST,
66
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
67
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.CreatePipelineRequest)
68
+ })
69
+ _sym_db.RegisterMessage(CreatePipelineRequest)
70
+
71
+ CreatePipelineResponse = _reflection.GeneratedProtocolMessageType('CreatePipelineResponse', (_message.Message,), {
72
+ 'DESCRIPTOR' : _CREATEPIPELINERESPONSE,
73
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
74
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.CreatePipelineResponse)
75
+ })
76
+ _sym_db.RegisterMessage(CreatePipelineResponse)
77
+
78
+ GetPipelineRequest = _reflection.GeneratedProtocolMessageType('GetPipelineRequest', (_message.Message,), {
79
+ 'DESCRIPTOR' : _GETPIPELINEREQUEST,
80
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
81
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.GetPipelineRequest)
82
+ })
83
+ _sym_db.RegisterMessage(GetPipelineRequest)
84
+
85
+ GetPipelineResponse = _reflection.GeneratedProtocolMessageType('GetPipelineResponse', (_message.Message,), {
86
+ 'DESCRIPTOR' : _GETPIPELINERESPONSE,
87
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
88
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.GetPipelineResponse)
89
+ })
90
+ _sym_db.RegisterMessage(GetPipelineResponse)
91
+
92
+ ListPipelinesRequest = _reflection.GeneratedProtocolMessageType('ListPipelinesRequest', (_message.Message,), {
93
+ 'DESCRIPTOR' : _LISTPIPELINESREQUEST,
94
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
95
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.ListPipelinesRequest)
96
+ })
97
+ _sym_db.RegisterMessage(ListPipelinesRequest)
98
+
99
+ ListPipelinesResponse = _reflection.GeneratedProtocolMessageType('ListPipelinesResponse', (_message.Message,), {
100
+ 'DESCRIPTOR' : _LISTPIPELINESRESPONSE,
101
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
102
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.ListPipelinesResponse)
103
+ })
104
+ _sym_db.RegisterMessage(ListPipelinesResponse)
105
+
106
+ PipelineJobArgsColumn = _reflection.GeneratedProtocolMessageType('PipelineJobArgsColumn', (_message.Message,), {
107
+
108
+ 'StringColumn' : _reflection.GeneratedProtocolMessageType('StringColumn', (_message.Message,), {
109
+ 'DESCRIPTOR' : _PIPELINEJOBARGSCOLUMN_STRINGCOLUMN,
110
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
111
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn.StringColumn)
112
+ })
113
+ ,
114
+
115
+ 'IntColumn' : _reflection.GeneratedProtocolMessageType('IntColumn', (_message.Message,), {
116
+ 'DESCRIPTOR' : _PIPELINEJOBARGSCOLUMN_INTCOLUMN,
117
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
118
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn.IntColumn)
119
+ })
120
+ ,
121
+
122
+ 'DoubleColumn' : _reflection.GeneratedProtocolMessageType('DoubleColumn', (_message.Message,), {
123
+ 'DESCRIPTOR' : _PIPELINEJOBARGSCOLUMN_DOUBLECOLUMN,
124
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
125
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn.DoubleColumn)
126
+ })
127
+ ,
128
+
129
+ 'BoolColumn' : _reflection.GeneratedProtocolMessageType('BoolColumn', (_message.Message,), {
130
+ 'DESCRIPTOR' : _PIPELINEJOBARGSCOLUMN_BOOLCOLUMN,
131
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
132
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn.BoolColumn)
133
+ })
134
+ ,
135
+ 'DESCRIPTOR' : _PIPELINEJOBARGSCOLUMN,
136
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
137
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.PipelineJobArgsColumn)
138
+ })
139
+ _sym_db.RegisterMessage(PipelineJobArgsColumn)
140
+ _sym_db.RegisterMessage(PipelineJobArgsColumn.StringColumn)
141
+ _sym_db.RegisterMessage(PipelineJobArgsColumn.IntColumn)
142
+ _sym_db.RegisterMessage(PipelineJobArgsColumn.DoubleColumn)
143
+ _sym_db.RegisterMessage(PipelineJobArgsColumn.BoolColumn)
144
+
145
+ CreatePipelineJobRequest = _reflection.GeneratedProtocolMessageType('CreatePipelineJobRequest', (_message.Message,), {
146
+ 'DESCRIPTOR' : _CREATEPIPELINEJOBREQUEST,
147
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
148
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.CreatePipelineJobRequest)
149
+ })
150
+ _sym_db.RegisterMessage(CreatePipelineJobRequest)
151
+
152
+ CreatePipelineJobResponse = _reflection.GeneratedProtocolMessageType('CreatePipelineJobResponse', (_message.Message,), {
153
+ 'DESCRIPTOR' : _CREATEPIPELINEJOBRESPONSE,
154
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
155
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.CreatePipelineJobResponse)
156
+ })
157
+ _sym_db.RegisterMessage(CreatePipelineJobResponse)
158
+
159
+ GetPipelineJobRequest = _reflection.GeneratedProtocolMessageType('GetPipelineJobRequest', (_message.Message,), {
160
+ 'DESCRIPTOR' : _GETPIPELINEJOBREQUEST,
161
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
162
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.GetPipelineJobRequest)
163
+ })
164
+ _sym_db.RegisterMessage(GetPipelineJobRequest)
165
+
166
+ GetPipelineJobResponse = _reflection.GeneratedProtocolMessageType('GetPipelineJobResponse', (_message.Message,), {
167
+ 'DESCRIPTOR' : _GETPIPELINEJOBRESPONSE,
168
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
169
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.GetPipelineJobResponse)
170
+ })
171
+ _sym_db.RegisterMessage(GetPipelineJobResponse)
172
+
173
+ ListPipelineJobsRequest = _reflection.GeneratedProtocolMessageType('ListPipelineJobsRequest', (_message.Message,), {
174
+ 'DESCRIPTOR' : _LISTPIPELINEJOBSREQUEST,
175
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
176
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.ListPipelineJobsRequest)
177
+ })
178
+ _sym_db.RegisterMessage(ListPipelineJobsRequest)
179
+
180
+ ListPipelineJobsResponse = _reflection.GeneratedProtocolMessageType('ListPipelineJobsResponse', (_message.Message,), {
181
+ 'DESCRIPTOR' : _LISTPIPELINEJOBSRESPONSE,
182
+ '__module__' : 'proto.api.v0.luminarycloud.pipelines.pipelines_pb2'
183
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.pipelines.ListPipelineJobsResponse)
184
+ })
185
+ _sym_db.RegisterMessage(ListPipelineJobsResponse)
186
+
187
+ _PIPELINESERVICE = DESCRIPTOR.services_by_name['PipelineService']
188
+ if _descriptor._USE_C_DESCRIPTORS == False:
189
+
190
+ DESCRIPTOR._options = None
191
+ DESCRIPTOR._serialized_options = b'Z;luminarycloud.com/core/proto/api/v0/luminarycloud/pipelines'
192
+ _PIPELINESERVICE.methods_by_name['CreatePipeline']._options = None
193
+ _PIPELINESERVICE.methods_by_name['CreatePipeline']._serialized_options = b'\202\323\344\223\002\022\"\r/v0/pipelines:\001*'
194
+ _PIPELINESERVICE.methods_by_name['GetPipeline']._options = None
195
+ _PIPELINESERVICE.methods_by_name['GetPipeline']._serialized_options = b'\202\323\344\223\002\024\022\022/v0/pipelines/{id}'
196
+ _PIPELINESERVICE.methods_by_name['ListPipelines']._options = None
197
+ _PIPELINESERVICE.methods_by_name['ListPipelines']._serialized_options = b'\202\323\344\223\002\017\022\r/v0/pipelines'
198
+ _PIPELINESERVICE.methods_by_name['CreatePipelineJob']._options = None
199
+ _PIPELINESERVICE.methods_by_name['CreatePipelineJob']._serialized_options = b'\202\323\344\223\002%\" /v0/pipelines/{pipeline_id}/jobs:\001*'
200
+ _PIPELINESERVICE.methods_by_name['GetPipelineJob']._options = None
201
+ _PIPELINESERVICE.methods_by_name['GetPipelineJob']._serialized_options = b'\202\323\344\223\002\030\022\026/v0/pipeline_jobs/{id}'
202
+ _PIPELINESERVICE.methods_by_name['ListPipelineJobs']._options = None
203
+ _PIPELINESERVICE.methods_by_name['ListPipelineJobs']._serialized_options = b'\202\323\344\223\002\023\022\021/v0/pipeline_jobs'
204
+ _PIPELINEJOBSTATUS._serialized_start=2504
205
+ _PIPELINEJOBSTATUS._serialized_end=2693
206
+ _PIPELINE._serialized_start=167
207
+ _PIPELINE._serialized_end=345
208
+ _PIPELINEJOB._serialized_start=348
209
+ _PIPELINEJOB._serialized_end=788
210
+ _CREATEPIPELINEREQUEST._serialized_start=790
211
+ _CREATEPIPELINEREQUEST._serialized_end=894
212
+ _CREATEPIPELINERESPONSE._serialized_start=896
213
+ _CREATEPIPELINERESPONSE._serialized_end=995
214
+ _GETPIPELINEREQUEST._serialized_start=997
215
+ _GETPIPELINEREQUEST._serialized_end=1029
216
+ _GETPIPELINERESPONSE._serialized_start=1031
217
+ _GETPIPELINERESPONSE._serialized_end=1127
218
+ _LISTPIPELINESREQUEST._serialized_start=1129
219
+ _LISTPIPELINESREQUEST._serialized_end=1151
220
+ _LISTPIPELINESRESPONSE._serialized_start=1153
221
+ _LISTPIPELINESRESPONSE._serialized_end=1252
222
+ _PIPELINEJOBARGSCOLUMN._serialized_start=1255
223
+ _PIPELINEJOBARGSCOLUMN._serialized_end=1889
224
+ _PIPELINEJOBARGSCOLUMN_STRINGCOLUMN._serialized_start=1702
225
+ _PIPELINEJOBARGSCOLUMN_STRINGCOLUMN._serialized_end=1746
226
+ _PIPELINEJOBARGSCOLUMN_INTCOLUMN._serialized_start=1748
227
+ _PIPELINEJOBARGSCOLUMN_INTCOLUMN._serialized_end=1789
228
+ _PIPELINEJOBARGSCOLUMN_DOUBLECOLUMN._serialized_start=1791
229
+ _PIPELINEJOBARGSCOLUMN_DOUBLECOLUMN._serialized_end=1835
230
+ _PIPELINEJOBARGSCOLUMN_BOOLCOLUMN._serialized_start=1837
231
+ _PIPELINEJOBARGSCOLUMN_BOOLCOLUMN._serialized_end=1879
232
+ _CREATEPIPELINEJOBREQUEST._serialized_start=1892
233
+ _CREATEPIPELINEJOBREQUEST._serialized_end=2107
234
+ _CREATEPIPELINEJOBRESPONSE._serialized_start=2109
235
+ _CREATEPIPELINEJOBRESPONSE._serialized_end=2218
236
+ _GETPIPELINEJOBREQUEST._serialized_start=2220
237
+ _GETPIPELINEJOBREQUEST._serialized_end=2255
238
+ _GETPIPELINEJOBRESPONSE._serialized_start=2257
239
+ _GETPIPELINEJOBRESPONSE._serialized_end=2363
240
+ _LISTPIPELINEJOBSREQUEST._serialized_start=2365
241
+ _LISTPIPELINEJOBSREQUEST._serialized_end=2390
242
+ _LISTPIPELINEJOBSRESPONSE._serialized_start=2392
243
+ _LISTPIPELINEJOBSRESPONSE._serialized_end=2501
244
+ _PIPELINESERVICE._serialized_start=2696
245
+ _PIPELINESERVICE._serialized_end=3857
246
+ # @@protoc_insertion_point(module_scope)