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.
Files changed (73) hide show
  1. luminarycloud/_auth/auth.py +23 -34
  2. luminarycloud/_client/client.py +23 -4
  3. luminarycloud/_client/retry_interceptor.py +7 -0
  4. luminarycloud/_helpers/_create_geometry.py +134 -34
  5. luminarycloud/_helpers/_wait_for_mesh.py +14 -4
  6. luminarycloud/_helpers/cond.py +0 -1
  7. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +146 -123
  8. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +82 -15
  9. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +34 -0
  10. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +12 -0
  11. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +8 -8
  12. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +12 -7
  13. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +25 -3
  14. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +30 -0
  15. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.py +34 -0
  16. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.pyi +12 -0
  17. luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2.py +246 -0
  18. luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2.pyi +420 -0
  19. luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2_grpc.py +240 -0
  20. luminarycloud/_proto/api/v0/luminarycloud/pipelines/pipelines_pb2_grpc.pyi +90 -0
  21. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py +54 -3
  22. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi +92 -1
  23. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2_grpc.py +132 -0
  24. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2_grpc.pyi +40 -0
  25. luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2.py +97 -0
  26. luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2.pyi +93 -0
  27. luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2_grpc.py +132 -0
  28. luminarycloud/_proto/api/v0/luminarycloud/project_ui_state/project_ui_state_pb2_grpc.pyi +44 -0
  29. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +48 -26
  30. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +30 -2
  31. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.py +36 -0
  32. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2_grpc.pyi +18 -0
  33. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +153 -133
  34. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +51 -3
  35. luminarycloud/_proto/client/simulation_pb2.py +261 -251
  36. luminarycloud/_proto/client/simulation_pb2.pyi +35 -2
  37. luminarycloud/_proto/frontend/output/output_pb2.py +24 -24
  38. luminarycloud/_proto/frontend/output/output_pb2.pyi +6 -3
  39. luminarycloud/_proto/geometry/geometry_pb2.py +63 -63
  40. luminarycloud/_proto/geometry/geometry_pb2.pyi +16 -8
  41. luminarycloud/_proto/hexmesh/hexmesh_pb2.py +17 -4
  42. luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +22 -1
  43. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +10 -10
  44. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +12 -7
  45. luminarycloud/_proto/quantity/quantity_pb2.py +19 -19
  46. luminarycloud/enum/geometry_status.py +15 -8
  47. luminarycloud/enum/pipeline_job_status.py +23 -0
  48. luminarycloud/feature_modification.py +3 -6
  49. luminarycloud/geometry.py +25 -0
  50. luminarycloud/geometry_version.py +23 -0
  51. luminarycloud/mesh.py +16 -0
  52. luminarycloud/params/enum/_enum_wrappers.py +29 -0
  53. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/fan_curve_inlet_.py +1 -1
  54. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mach_inlet_.py +5 -1
  55. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/mass_flow_inlet_.py +5 -1
  56. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/total_pressure_inlet_.py +5 -1
  57. luminarycloud/params/simulation/physics/fluid/boundary_conditions/inlet/velocity_magnitude_inlet_.py +5 -1
  58. luminarycloud/physics_ai/inference.py +46 -30
  59. luminarycloud/pipelines/__init__.py +7 -0
  60. luminarycloud/pipelines/api.py +213 -0
  61. luminarycloud/project.py +98 -11
  62. luminarycloud/simulation_template.py +15 -6
  63. luminarycloud/vis/__init__.py +6 -0
  64. luminarycloud/vis/data_extraction.py +201 -31
  65. luminarycloud/vis/filters.py +94 -35
  66. luminarycloud/vis/interactive_inference.py +153 -0
  67. luminarycloud/vis/interactive_scene.py +35 -16
  68. luminarycloud/vis/primitives.py +87 -1
  69. luminarycloud/vis/visualization.py +50 -6
  70. luminarycloud/volume_selection.py +3 -6
  71. {luminarycloud-0.16.2.dist-info → luminarycloud-0.18.0.dist-info}/METADATA +18 -18
  72. {luminarycloud-0.16.2.dist-info → luminarycloud-0.18.0.dist-info}/RECORD +73 -62
  73. {luminarycloud-0.16.2.dist-info → luminarycloud-0.18.0.dist-info}/WHEEL +0 -0
@@ -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
 
@@ -22,7 +22,7 @@ from luminarycloud._proto.api.v0.luminarycloud.common import common_pb2 as proto
22
22
  from luminarycloud._proto.upload import upload_pb2 as proto_dot_upload_dot_upload__pb2
23
23
 
24
24
 
25
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*proto/api/v0/luminarycloud/mesh/mesh.proto\x12(luminary.proto.api.v0.luminarycloud.mesh\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/hexmesh/hexmesh.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x19proto/upload/upload.proto\"\xe2\x02\n\x04Mesh\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12I\n\x06status\x18\x04 \x01(\x0e\x32\x39.luminary.proto.api.v0.luminarycloud.mesh.Mesh.MeshStatus\x12 \n\x13geometry_version_id\x18\x05 \x01(\tH\x00\x88\x01\x01\x12\x12\n\nproject_id\x18\x06 \x01(\t\"v\n\nMeshStatus\x12\x1b\n\x17MESH_STATUS_UNSPECIFIED\x10\x00\x12\x18\n\x14MESH_STATUS_CREATING\x10\x01\x12\x19\n\x15MESH_STATUS_COMPLETED\x10\x02\x12\x16\n\x12MESH_STATUS_FAILED\x10\x03\x42\x16\n\x14_geometry_version_id\"\x1c\n\x0eGetMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"O\n\x0fGetMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"$\n\x16GetMeshMetadataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"h\n\x17GetMeshMetadataResponse\x12M\n\rmesh_metadata\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata\"\xd2\x04\n\x0cMeshMetadata\x12J\n\x05zones\x18\x01 \x03(\x0b\x32;.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Zone\x1a\xcd\x01\n\tMeshStats\x12\x10\n\x08n_points\x18\x01 \x01(\x03\x12\x0f\n\x07n_faces\x18\x02 \x01(\x03\x12\r\n\x05n_cvs\x18\x03 \x01(\x03\x12\x46\n\tmin_coord\x18\x05 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12\x46\n\tmax_coord\x18\x06 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x1ai\n\x08\x42oundary\x12\x0c\n\x04name\x18\x01 \x01(\t\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x1a\xba\x01\n\x04Zone\x12S\n\nboundaries\x18\x01 \x03(\x0b\x32?.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Boundary\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x12\x0c\n\x04name\x18\x03 \x01(\t\"\'\n\x11ListMeshesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"T\n\x12ListMeshesResponse\x12>\n\x06meshes\x18\x01 \x03(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"-\n\x11UpdateMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"R\n\x12UpdateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xab\x02\n\x11\x43reateMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x16mesh_adaptation_params\x18\x03 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshAdaptationParamsH\x00\x12`\n\x16mesh_generation_params\x18\x04 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParamsH\x00\x12\x17\n\nrequest_id\x18\x05 \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06paramsB\r\n\x0b_request_id\"R\n\x12\x43reateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xff\x01\n\x11UploadMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07scaling\x18\x03 \x01(\x01\x12\x14\n\x0cupload_token\x18\x04 \x01(\t\x12I\n\nfile_chunk\x18\x05 \x01(\x0b\x32\x35.luminary.proto.api.v0.luminarycloud.common.FileChunk\x12\x32\n\tmesh_type\x18\x06 \x01(\x0e\x32\x1f.luminary.proto.upload.MeshType\x12\"\n\x1a\x64o_not_read_zones_openfoam\x18\x07 \x01(\x08\"h\n\x12UploadMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\x12\x14\n\x0cupload_token\x18\x02 \x01(\t\"\x1f\n\x11\x44\x65leteMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"t\n\x14MeshAdaptationParams\x12\x1c\n\x14source_simulation_id\x18\x01 \x01(\t\x12\x17\n\x0ftarget_cv_count\x18\x02 \x01(\x04\x12\x0f\n\x07h_ratio\x18\x03 \x01(\x01\x12\x14\n\x0c\x61spect_ratio\x18\x04 \x01(\x01\"\xcd\x10\n\x14MeshGenerationParams\x12\x33\n\x0b\x62ody_x_axis\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x33\n\x0b\x62ody_y_axis\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x16\n\x0e\x61\x64\x64_refinement\x18\x03 \x01(\x08\x12\x18\n\x10proximity_layers\x18\x04 \x01(\r\x12\x62\n\rvolume_params\x18\x05 \x03(\x0b\x32K.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.VolumeParams\x12`\n\x0cmodel_params\x18\x06 \x03(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.ModelParams\x12\x65\n\tbl_params\x18\x07 \x03(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.BoundaryLayerParams\x12l\n\rrefine_params\x18\x08 \x03(\x0b\x32U.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.RefinementRegionParams\x12\x13\n\x0bgeometry_id\x18\t \x01(\t\x12s\n\x16mesh_complexity_params\x18\n \x01(\x0b\x32S.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams\x12\x64\n\x0eoverset_params\x18\x0b \x01(\x0b\x32L.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.OversetParams\x12`\n\x0cmeshing_mode\x18\x0c \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode\x12\x10\n\x08use_wrap\x18\r \x01(\x08\x1a`\n\x0cVolumeParams\x12\x10\n\x08min_size\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x13\n\x07volumes\x18\x03 \x03(\x03\x42\x02\x18\x01\x12\x17\n\x0fvolume_entities\x18\x04 \x03(\t\x1a\x44\n\x0bModelParams\x12\x11\n\tcurvature\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x10\n\x08surfaces\x18\x03 \x03(\t\x1a\x64\n\x13\x42oundaryLayerParams\x12\x10\n\x08n_layers\x18\x01 \x01(\r\x12\x14\n\x0cinitial_size\x18\x02 \x01(\x01\x12\x13\n\x0bgrowth_rate\x18\x03 \x01(\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\t\x1a\x8b\x03\n\x16RefinementRegionParams\x12\x0f\n\x07h_limit\x18\x01 \x01(\x01\x12,\n\x06sphere\x18\x02 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\x37\n\x0csphere_shell\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.SphereShellH\x00\x12(\n\x04\x63ube\x18\x04 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x39\n\roriented_cube\x18\x05 \x01(\x0b\x32 .luminary.proto.cad.OrientedCubeH\x00\x12\x30\n\x08\x63ylinder\x18\x06 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12?\n\x10\x61nnular_cylinder\x18\x07 \x01(\x0b\x32#.luminary.proto.cad.AnnularCylinderH\x00\x12\n\n\x02id\x18\x08 \x01(\t\x12\x0c\n\x04name\x18\t \x01(\tB\x07\n\x05shape\x1a\xe7\x01\n\x14MeshComplexityParams\x12\x14\n\x0ctarget_cells\x18\x01 \x01(\x04\x12\x17\n\x0flimit_max_cells\x18\x02 \x01(\x04\x12p\n\x04type\x18\x03 \x01(\x0e\x32\x62.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams.ComplexityType\".\n\x0e\x43omplexityType\x12\x07\n\x03MAX\x10\x00\x12\n\n\x06TARGET\x10\x01\x12\x07\n\x03MIN\x10\x02\x1a!\n\rOversetParams\x12\x10\n\x08surfaces\x18\x01 \x03(\t\x1a\xf0\x01\n\x0bMeshingMode\x12\x65\n\x07\x64\x65\x66\x61ult\x18\x01 \x01(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.DefaultH\x00\x12_\n\x04\x62\x61se\x18\x02 \x01(\x0b\x32O.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.BaseH\x00\x1a\t\n\x07\x44\x65\x66\x61ult\x1a\x06\n\x04\x42\x61seB\x06\n\x04mode\"h\n\x14\x43reateHexMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12<\n\x0fhex_mesh_config\x18\x02 \x01(\x0b\x32#.luminary.proto.hexmesh.HexMeshSpec\"(\n\x15\x43reateHexMeshResponse\x12\x0f\n\x07mesh_id\x18\x01 \x01(\t2\xac\n\n\x0bMeshService\x12\x97\x01\n\x07GetMesh\x12\x38.luminary.proto.api.v0.luminarycloud.mesh.GetMeshRequest\x1a\x39.luminary.proto.api.v0.luminarycloud.mesh.GetMeshResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/v0/meshes/{id}\x12\xba\x01\n\x0fGetMeshMetadata\x12@.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/meshes:getmeshmetadata\x12\xb1\x01\n\nListMeshes\x12;.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/projects/{project_id}/meshes\x12\xa3\x01\n\nUpdateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshResponse\"\x1a\x82\xd3\xe4\x93\x02\x14\x32\x0f/v0/meshes/{id}:\x01*\x12\xbb\x01\n\nUploadMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshResponse\"2\x82\xd3\xe4\x93\x02,\"\'/v0/projects/{project_id}/meshes:upload:\x01*\x12z\n\nDeleteMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.DeleteMeshRequest\x1a\x16.google.protobuf.Empty\"\x17\x82\xd3\xe4\x93\x02\x11*\x0f/v0/meshes/{id}\x12\x9e\x01\n\nCreateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\"\n/v0/meshes:\x01*\x12\x90\x01\n\rCreateHexMesh\x12>.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshRequest\x1a?.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshResponseB8Z6luminarycloud.com/core/proto/api/v0/luminarycloud/meshb\x06proto3')
25
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*proto/api/v0/luminarycloud/mesh/mesh.proto\x12(luminary.proto.api.v0.luminarycloud.mesh\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/hexmesh/hexmesh.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x19proto/upload/upload.proto\"\xe2\x02\n\x04Mesh\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12I\n\x06status\x18\x04 \x01(\x0e\x32\x39.luminary.proto.api.v0.luminarycloud.mesh.Mesh.MeshStatus\x12 \n\x13geometry_version_id\x18\x05 \x01(\tH\x00\x88\x01\x01\x12\x12\n\nproject_id\x18\x06 \x01(\t\"v\n\nMeshStatus\x12\x1b\n\x17MESH_STATUS_UNSPECIFIED\x10\x00\x12\x18\n\x14MESH_STATUS_CREATING\x10\x01\x12\x19\n\x15MESH_STATUS_COMPLETED\x10\x02\x12\x16\n\x12MESH_STATUS_FAILED\x10\x03\x42\x16\n\x14_geometry_version_id\"\x1c\n\x0eGetMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"O\n\x0fGetMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"$\n\x16GetMeshMetadataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"h\n\x17GetMeshMetadataResponse\x12M\n\rmesh_metadata\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata\"\xd2\x04\n\x0cMeshMetadata\x12J\n\x05zones\x18\x01 \x03(\x0b\x32;.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Zone\x1a\xcd\x01\n\tMeshStats\x12\x10\n\x08n_points\x18\x01 \x01(\x03\x12\x0f\n\x07n_faces\x18\x02 \x01(\x03\x12\r\n\x05n_cvs\x18\x03 \x01(\x03\x12\x46\n\tmin_coord\x18\x05 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12\x46\n\tmax_coord\x18\x06 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x1ai\n\x08\x42oundary\x12\x0c\n\x04name\x18\x01 \x01(\t\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x1a\xba\x01\n\x04Zone\x12S\n\nboundaries\x18\x01 \x03(\x0b\x32?.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Boundary\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x12\x0c\n\x04name\x18\x03 \x01(\t\"\'\n\x11ListMeshesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"T\n\x12ListMeshesResponse\x12>\n\x06meshes\x18\x01 \x03(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"-\n\x11UpdateMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"R\n\x12UpdateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xab\x02\n\x11\x43reateMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x16mesh_adaptation_params\x18\x03 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshAdaptationParamsH\x00\x12`\n\x16mesh_generation_params\x18\x04 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParamsH\x00\x12\x17\n\nrequest_id\x18\x05 \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06paramsB\r\n\x0b_request_id\"R\n\x12\x43reateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xff\x01\n\x11UploadMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07scaling\x18\x03 \x01(\x01\x12\x14\n\x0cupload_token\x18\x04 \x01(\t\x12I\n\nfile_chunk\x18\x05 \x01(\x0b\x32\x35.luminary.proto.api.v0.luminarycloud.common.FileChunk\x12\x32\n\tmesh_type\x18\x06 \x01(\x0e\x32\x1f.luminary.proto.upload.MeshType\x12\"\n\x1a\x64o_not_read_zones_openfoam\x18\x07 \x01(\x08\"h\n\x12UploadMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\x12\x14\n\x0cupload_token\x18\x02 \x01(\t\"\x1f\n\x11\x44\x65leteMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"t\n\x14MeshAdaptationParams\x12\x1c\n\x14source_simulation_id\x18\x01 \x01(\t\x12\x17\n\x0ftarget_cv_count\x18\x02 \x01(\x04\x12\x0f\n\x07h_ratio\x18\x03 \x01(\x01\x12\x14\n\x0c\x61spect_ratio\x18\x04 \x01(\x01\"\xcd\x10\n\x14MeshGenerationParams\x12\x33\n\x0b\x62ody_x_axis\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x33\n\x0b\x62ody_y_axis\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x16\n\x0e\x61\x64\x64_refinement\x18\x03 \x01(\x08\x12\x18\n\x10proximity_layers\x18\x04 \x01(\r\x12\x62\n\rvolume_params\x18\x05 \x03(\x0b\x32K.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.VolumeParams\x12`\n\x0cmodel_params\x18\x06 \x03(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.ModelParams\x12\x65\n\tbl_params\x18\x07 \x03(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.BoundaryLayerParams\x12l\n\rrefine_params\x18\x08 \x03(\x0b\x32U.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.RefinementRegionParams\x12\x13\n\x0bgeometry_id\x18\t \x01(\t\x12s\n\x16mesh_complexity_params\x18\n \x01(\x0b\x32S.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams\x12\x64\n\x0eoverset_params\x18\x0b \x01(\x0b\x32L.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.OversetParams\x12`\n\x0cmeshing_mode\x18\x0c \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode\x12\x10\n\x08use_wrap\x18\r \x01(\x08\x1a`\n\x0cVolumeParams\x12\x10\n\x08min_size\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x13\n\x07volumes\x18\x03 \x03(\x03\x42\x02\x18\x01\x12\x17\n\x0fvolume_entities\x18\x04 \x03(\t\x1a\x44\n\x0bModelParams\x12\x11\n\tcurvature\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x10\n\x08surfaces\x18\x03 \x03(\t\x1a\x64\n\x13\x42oundaryLayerParams\x12\x10\n\x08n_layers\x18\x01 \x01(\r\x12\x14\n\x0cinitial_size\x18\x02 \x01(\x01\x12\x13\n\x0bgrowth_rate\x18\x03 \x01(\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\t\x1a\x8b\x03\n\x16RefinementRegionParams\x12\x0f\n\x07h_limit\x18\x01 \x01(\x01\x12,\n\x06sphere\x18\x02 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\x37\n\x0csphere_shell\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.SphereShellH\x00\x12(\n\x04\x63ube\x18\x04 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x39\n\roriented_cube\x18\x05 \x01(\x0b\x32 .luminary.proto.cad.OrientedCubeH\x00\x12\x30\n\x08\x63ylinder\x18\x06 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12?\n\x10\x61nnular_cylinder\x18\x07 \x01(\x0b\x32#.luminary.proto.cad.AnnularCylinderH\x00\x12\n\n\x02id\x18\x08 \x01(\t\x12\x0c\n\x04name\x18\t \x01(\tB\x07\n\x05shape\x1a\xe7\x01\n\x14MeshComplexityParams\x12\x14\n\x0ctarget_cells\x18\x01 \x01(\x04\x12\x17\n\x0flimit_max_cells\x18\x02 \x01(\x04\x12p\n\x04type\x18\x03 \x01(\x0e\x32\x62.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams.ComplexityType\".\n\x0e\x43omplexityType\x12\x07\n\x03MAX\x10\x00\x12\n\n\x06TARGET\x10\x01\x12\x07\n\x03MIN\x10\x02\x1a!\n\rOversetParams\x12\x10\n\x08surfaces\x18\x01 \x03(\t\x1a\xf0\x01\n\x0bMeshingMode\x12\x65\n\x07\x64\x65\x66\x61ult\x18\x01 \x01(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.DefaultH\x00\x12_\n\x04\x62\x61se\x18\x02 \x01(\x0b\x32O.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.BaseH\x00\x1a\t\n\x07\x44\x65\x66\x61ult\x1a\x06\n\x04\x42\x61seB\x06\n\x04mode\"h\n\x14\x43reateHexMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12<\n\x0fhex_mesh_config\x18\x02 \x01(\x0b\x32#.luminary.proto.hexmesh.HexMeshSpec\"(\n\x15\x43reateHexMeshResponse\x12\x0f\n\x07mesh_id\x18\x01 \x01(\t\"-\n\x1fGetMeshGenerationSdkCodeRequest\x12\n\n\x02id\x18\x01 \x01(\t\"4\n GetMeshGenerationSdkCodeResponse\x12\x10\n\x08sdk_code\x18\x01 \x01(\t2\x8b\x0c\n\x0bMeshService\x12\x97\x01\n\x07GetMesh\x12\x38.luminary.proto.api.v0.luminarycloud.mesh.GetMeshRequest\x1a\x39.luminary.proto.api.v0.luminarycloud.mesh.GetMeshResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/v0/meshes/{id}\x12\xba\x01\n\x0fGetMeshMetadata\x12@.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/meshes:getmeshmetadata\x12\xb1\x01\n\nListMeshes\x12;.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/projects/{project_id}/meshes\x12\xa3\x01\n\nUpdateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshResponse\"\x1a\x82\xd3\xe4\x93\x02\x14\x32\x0f/v0/meshes/{id}:\x01*\x12\xbb\x01\n\nUploadMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshResponse\"2\x82\xd3\xe4\x93\x02,\"\'/v0/projects/{project_id}/meshes:upload:\x01*\x12z\n\nDeleteMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.DeleteMeshRequest\x1a\x16.google.protobuf.Empty\"\x17\x82\xd3\xe4\x93\x02\x11*\x0f/v0/meshes/{id}\x12\x9e\x01\n\nCreateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\"\n/v0/meshes:\x01*\x12\x90\x01\n\rCreateHexMesh\x12>.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshRequest\x1a?.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshResponse\x12\xdc\x01\n\x18GetMeshGenerationSdkCode\x12I.luminary.proto.api.v0.luminarycloud.mesh.GetMeshGenerationSdkCodeRequest\x1aJ.luminary.proto.api.v0.luminarycloud.mesh.GetMeshGenerationSdkCodeResponse\")\x82\xd3\xe4\x93\x02#\x12!/v0/meshes/{id}:generate-sdk-codeB8Z6luminarycloud.com/core/proto/api/v0/luminarycloud/meshb\x06proto3')
26
26
 
27
27
 
28
28
 
@@ -57,6 +57,8 @@ _MESHGENERATIONPARAMS_MESHINGMODE_DEFAULT = _MESHGENERATIONPARAMS_MESHINGMODE.ne
57
57
  _MESHGENERATIONPARAMS_MESHINGMODE_BASE = _MESHGENERATIONPARAMS_MESHINGMODE.nested_types_by_name['Base']
58
58
  _CREATEHEXMESHREQUEST = DESCRIPTOR.message_types_by_name['CreateHexMeshRequest']
59
59
  _CREATEHEXMESHRESPONSE = DESCRIPTOR.message_types_by_name['CreateHexMeshResponse']
60
+ _GETMESHGENERATIONSDKCODEREQUEST = DESCRIPTOR.message_types_by_name['GetMeshGenerationSdkCodeRequest']
61
+ _GETMESHGENERATIONSDKCODERESPONSE = DESCRIPTOR.message_types_by_name['GetMeshGenerationSdkCodeResponse']
60
62
  _MESH_MESHSTATUS = _MESH.enum_types_by_name['MeshStatus']
61
63
  _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS_COMPLEXITYTYPE = _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS.enum_types_by_name['ComplexityType']
62
64
  Mesh = _reflection.GeneratedProtocolMessageType('Mesh', (_message.Message,), {
@@ -288,6 +290,20 @@ CreateHexMeshResponse = _reflection.GeneratedProtocolMessageType('CreateHexMeshR
288
290
  })
289
291
  _sym_db.RegisterMessage(CreateHexMeshResponse)
290
292
 
293
+ GetMeshGenerationSdkCodeRequest = _reflection.GeneratedProtocolMessageType('GetMeshGenerationSdkCodeRequest', (_message.Message,), {
294
+ 'DESCRIPTOR' : _GETMESHGENERATIONSDKCODEREQUEST,
295
+ '__module__' : 'proto.api.v0.luminarycloud.mesh.mesh_pb2'
296
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.mesh.GetMeshGenerationSdkCodeRequest)
297
+ })
298
+ _sym_db.RegisterMessage(GetMeshGenerationSdkCodeRequest)
299
+
300
+ GetMeshGenerationSdkCodeResponse = _reflection.GeneratedProtocolMessageType('GetMeshGenerationSdkCodeResponse', (_message.Message,), {
301
+ 'DESCRIPTOR' : _GETMESHGENERATIONSDKCODERESPONSE,
302
+ '__module__' : 'proto.api.v0.luminarycloud.mesh.mesh_pb2'
303
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.mesh.GetMeshGenerationSdkCodeResponse)
304
+ })
305
+ _sym_db.RegisterMessage(GetMeshGenerationSdkCodeResponse)
306
+
291
307
  _MESHSERVICE = DESCRIPTOR.services_by_name['MeshService']
292
308
  if _descriptor._USE_C_DESCRIPTORS == False:
293
309
 
@@ -309,6 +325,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
309
325
  _MESHSERVICE.methods_by_name['DeleteMesh']._serialized_options = b'\202\323\344\223\002\021*\017/v0/meshes/{id}'
310
326
  _MESHSERVICE.methods_by_name['CreateMesh']._options = None
311
327
  _MESHSERVICE.methods_by_name['CreateMesh']._serialized_options = b'\202\323\344\223\002\017\"\n/v0/meshes:\001*'
328
+ _MESHSERVICE.methods_by_name['GetMeshGenerationSdkCode']._options = None
329
+ _MESHSERVICE.methods_by_name['GetMeshGenerationSdkCode']._serialized_options = b'\202\323\344\223\002#\022!/v0/meshes/{id}:generate-sdk-code'
312
330
  _MESH._serialized_start=331
313
331
  _MESH._serialized_end=685
314
332
  _MESH_MESHSTATUS._serialized_start=543
@@ -375,6 +393,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
375
393
  _CREATEHEXMESHREQUEST._serialized_end=4930
376
394
  _CREATEHEXMESHRESPONSE._serialized_start=4932
377
395
  _CREATEHEXMESHRESPONSE._serialized_end=4972
378
- _MESHSERVICE._serialized_start=4975
379
- _MESHSERVICE._serialized_end=6299
396
+ _GETMESHGENERATIONSDKCODEREQUEST._serialized_start=4974
397
+ _GETMESHGENERATIONSDKCODEREQUEST._serialized_end=5019
398
+ _GETMESHGENERATIONSDKCODERESPONSE._serialized_start=5021
399
+ _GETMESHGENERATIONSDKCODERESPONSE._serialized_end=5073
400
+ _MESHSERVICE._serialized_start=5076
401
+ _MESHSERVICE._serialized_end=6623
380
402
  # @@protoc_insertion_point(module_scope)
@@ -858,3 +858,33 @@ class CreateHexMeshResponse(google.protobuf.message.Message):
858
858
  def ClearField(self, field_name: typing_extensions.Literal["mesh_id", b"mesh_id"]) -> None: ...
859
859
 
860
860
  global___CreateHexMeshResponse = CreateHexMeshResponse
861
+
862
+ class GetMeshGenerationSdkCodeRequest(google.protobuf.message.Message):
863
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
864
+
865
+ ID_FIELD_NUMBER: builtins.int
866
+ id: builtins.str
867
+ """Required. Identifies the mesh to generate SDK code for."""
868
+ def __init__(
869
+ self,
870
+ *,
871
+ id: builtins.str = ...,
872
+ ) -> None: ...
873
+ def ClearField(self, field_name: typing_extensions.Literal["id", b"id"]) -> None: ...
874
+
875
+ global___GetMeshGenerationSdkCodeRequest = GetMeshGenerationSdkCodeRequest
876
+
877
+ class GetMeshGenerationSdkCodeResponse(google.protobuf.message.Message):
878
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
879
+
880
+ SDK_CODE_FIELD_NUMBER: builtins.int
881
+ sdk_code: builtins.str
882
+ """The generated SDK code that can recreate this mesh."""
883
+ def __init__(
884
+ self,
885
+ *,
886
+ sdk_code: builtins.str = ...,
887
+ ) -> None: ...
888
+ def ClearField(self, field_name: typing_extensions.Literal["sdk_code", b"sdk_code"]) -> None: ...
889
+
890
+ global___GetMeshGenerationSdkCodeResponse = GetMeshGenerationSdkCodeResponse
@@ -56,6 +56,11 @@ class MeshServiceStub(object):
56
56
  request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.CreateHexMeshRequest.SerializeToString,
57
57
  response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.CreateHexMeshResponse.FromString,
58
58
  )
59
+ self.GetMeshGenerationSdkCode = channel.unary_unary(
60
+ '/luminary.proto.api.v0.luminarycloud.mesh.MeshService/GetMeshGenerationSdkCode',
61
+ request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.GetMeshGenerationSdkCodeRequest.SerializeToString,
62
+ response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.GetMeshGenerationSdkCodeResponse.FromString,
63
+ )
59
64
 
60
65
 
61
66
  class MeshServiceServicer(object):
@@ -119,6 +124,13 @@ class MeshServiceServicer(object):
119
124
  context.set_details('Method not implemented!')
120
125
  raise NotImplementedError('Method not implemented!')
121
126
 
127
+ def GetMeshGenerationSdkCode(self, request, context):
128
+ """Gets the SDK code to recreate a mesh.
129
+ """
130
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
131
+ context.set_details('Method not implemented!')
132
+ raise NotImplementedError('Method not implemented!')
133
+
122
134
 
123
135
  def add_MeshServiceServicer_to_server(servicer, server):
124
136
  rpc_method_handlers = {
@@ -162,6 +174,11 @@ def add_MeshServiceServicer_to_server(servicer, server):
162
174
  request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.CreateHexMeshRequest.FromString,
163
175
  response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.CreateHexMeshResponse.SerializeToString,
164
176
  ),
177
+ 'GetMeshGenerationSdkCode': grpc.unary_unary_rpc_method_handler(
178
+ servicer.GetMeshGenerationSdkCode,
179
+ request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.GetMeshGenerationSdkCodeRequest.FromString,
180
+ response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.GetMeshGenerationSdkCodeResponse.SerializeToString,
181
+ ),
165
182
  }
166
183
  generic_handler = grpc.method_handlers_generic_handler(
167
184
  'luminary.proto.api.v0.luminarycloud.mesh.MeshService', rpc_method_handlers)
@@ -308,3 +325,20 @@ class MeshService(object):
308
325
  proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.CreateHexMeshResponse.FromString,
309
326
  options, channel_credentials,
310
327
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
328
+
329
+ @staticmethod
330
+ def GetMeshGenerationSdkCode(request,
331
+ target,
332
+ options=(),
333
+ channel_credentials=None,
334
+ call_credentials=None,
335
+ insecure=False,
336
+ compression=None,
337
+ wait_for_ready=None,
338
+ timeout=None,
339
+ metadata=None):
340
+ return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.mesh.MeshService/GetMeshGenerationSdkCode',
341
+ proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.GetMeshGenerationSdkCodeRequest.SerializeToString,
342
+ proto_dot_api_dot_v0_dot_luminarycloud_dot_mesh_dot_mesh__pb2.GetMeshGenerationSdkCodeResponse.FromString,
343
+ options, channel_credentials,
344
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -54,6 +54,11 @@ class MeshServiceStub:
54
54
  luminarycloud._proto.api.v0.luminarycloud.mesh.mesh_pb2.CreateHexMeshRequest,
55
55
  luminarycloud._proto.api.v0.luminarycloud.mesh.mesh_pb2.CreateHexMeshResponse,
56
56
  ]
57
+ GetMeshGenerationSdkCode: grpc.UnaryUnaryMultiCallable[
58
+ luminarycloud._proto.api.v0.luminarycloud.mesh.mesh_pb2.GetMeshGenerationSdkCodeRequest,
59
+ luminarycloud._proto.api.v0.luminarycloud.mesh.mesh_pb2.GetMeshGenerationSdkCodeResponse,
60
+ ]
61
+ """Gets the SDK code to recreate a mesh."""
57
62
 
58
63
  class MeshServiceServicer(metaclass=abc.ABCMeta):
59
64
  """Manages a user's meshes."""
@@ -117,5 +122,12 @@ class MeshServiceServicer(metaclass=abc.ABCMeta):
117
122
  request: luminarycloud._proto.api.v0.luminarycloud.mesh.mesh_pb2.CreateHexMeshRequest,
118
123
  context: grpc.ServicerContext,
119
124
  ) -> luminarycloud._proto.api.v0.luminarycloud.mesh.mesh_pb2.CreateHexMeshResponse: ...
125
+ @abc.abstractmethod
126
+ def GetMeshGenerationSdkCode(
127
+ self,
128
+ request: luminarycloud._proto.api.v0.luminarycloud.mesh.mesh_pb2.GetMeshGenerationSdkCodeRequest,
129
+ context: grpc.ServicerContext,
130
+ ) -> luminarycloud._proto.api.v0.luminarycloud.mesh.mesh_pb2.GetMeshGenerationSdkCodeResponse:
131
+ """Gets the SDK code to recreate a mesh."""
120
132
 
121
133
  def add_MeshServiceServicer_to_server(servicer: MeshServiceServicer, server: grpc.Server) -> None: ...
@@ -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)