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
@@ -16,12 +16,13 @@ from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
16
16
  from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
17
17
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
18
18
  from luminarycloud._proto.geometry import geometry_pb2 as proto_dot_geometry_dot_geometry__pb2
19
+ from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
19
20
  from luminarycloud._proto.cadmetadata import cadmetadata_pb2 as proto_dot_cadmetadata_dot_cadmetadata__pb2
20
21
  from luminarycloud._proto.lcn import lcmesh_pb2 as proto_dot_lcn_dot_lcmesh__pb2
21
22
  from luminarycloud._proto.ratelimit import ratelimit_pb2 as proto_dot_ratelimit_dot_ratelimit__pb2
22
23
 
23
24
 
24
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2proto/api/v0/luminarycloud/geometry/geometry.proto\x12,luminary.proto.api.v0.luminarycloud.geometry\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1dproto/geometry/geometry.proto\x1a#proto/cadmetadata/cadmetadata.proto\x1a\x16proto/lcn/lcmesh.proto\x1a\x1fproto/ratelimit/ratelimit.proto\"\xa2\x03\n\x08Geometry\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\x12/\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x64\x65leted\x18\x05 \x01(\x08\x12\x17\n\x0flast_version_id\x18\x06 \x01(\t\x12\x11\n\tuses_tags\x18\x07 \x01(\x08\x12\x16\n\x0e\x66orce_discrete\x18\x08 \x01(\x08\x12\x12\n\nproject_id\x18\t \x01(\t\x12R\n\x06status\x18\n \x01(\x0e\x32=.luminary.proto.api.v0.luminarycloud.geometry.Geometry.StatusH\x00\x88\x01\x01\"R\n\x06Status\x12\x0b\n\x07UNKNOWN\x10\x00\x12\r\n\tIMPORTING\x10\x01\x12\x0f\n\x0bNEEDS_CHECK\x10\x02\x12\x10\n\x0c\x46\x41ILED_CHECK\x10\x03\x12\t\n\x05READY\x10\x04\x42\t\n\x07_status\"c\n\x0fGeometryVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bgeometry_id\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x84\x02\n\x10TessellationData\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12\x11\n\tmeta_data\x18\x02 \x01(\x0c\x12\x36\n\x08lcn_meta\x18\x03 \x01(\x0b\x32$.luminary.proto.lcn.MeshFileMetadata\x12=\n\x0c\x63\x61\x64_metadata\x18\x04 \x01(\x0b\x32\'.luminary.proto.cadmetadata.CadMetadata\x12\x1b\n\x13geometry_version_id\x18\x05 \x01(\t\x12\x12\n\nfeature_id\x18\x06 \x01(\t\x12\x10\n\x08\x64\x61ta_url\x18\x07 \x01(\t\x12\x15\n\rmeta_data_url\x18\x08 \x01(\t\")\n\x12GetGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"_\n\x13GetGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"i\n\x1bListGeometryFeaturesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"R\n\x1cListGeometryFeaturesResponse\x12\x32\n\x08\x66\x65\x61tures\x18\x01 \x03(\x0b\x32 .luminary.proto.geometry.Feature\"n\n ListGeometryFeatureIssuesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"d\n!ListGeometryFeatureIssuesResponse\x12?\n\x0f\x66\x65\x61tures_issues\x18\x01 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\"i\n\x1bListGeometryEntitiesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"{\n\x1cListGeometryEntitiesResponse\x12,\n\x05\x66\x61\x63\x65s\x18\x01 \x03(\x0b\x32\x1d.luminary.proto.geometry.Face\x12-\n\x06\x62odies\x18\x02 \x03(\x0b\x32\x1d.luminary.proto.geometry.Body\"+\n\x15ListGeometriesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"d\n\x16ListGeometriesResponse\x12J\n\ngeometries\x18\x01 \x03(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"I\n\x18SubscribeGeometryRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x13\n\x0bgeometry_id\x18\x02 \x01(\tJ\x04\x08\x03\x10\x04\"\xa0\x02\n\x0fGeometryHistory\x12\x61\n\rhistory_entry\x18\x01 \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.geometry.GeometryHistory.HistoryEntry\x1a\xa9\x01\n\x0cHistoryEntry\x12;\n\x0cmodification\x18\x01 \x01(\x0b\x32%.luminary.proto.geometry.Modification\x12#\n\x1bgeometry_version_initial_id\x18\x02 \x01(\t\x12\x1f\n\x17geometry_version_new_id\x18\x03 \x01(\t\x12\x16\n\x0e\x63heckpoint_url\x18\x04 \x01(\t\"\xaa\x0f\n\x19SubscribeGeometryResponse\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12p\n\ncheckpoint\x18\x05 \x01(\x0b\x32Z.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.GeometryCheckpointH\x00\x12\x61\n\x04\x62usy\x18\x06 \x01(\x0b\x32Q.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyStateH\x00\x12\x1d\n\x13worker_disconnected\x18\x07 \x01(\x08H\x00\x12\x18\n\x0ereceived_error\x18\x08 \x01(\x08H\x00\x1a\x8b\x04\n\x12GeometryCheckpoint\x12\x10\n\x08mesh_url\x18\x02 \x01(\t\x12\x32\n\x08\x66\x65\x61tures\x18\x03 \x03(\x0b\x32 .luminary.proto.geometry.Feature\x12?\n\x0f\x66\x65\x61tures_issues\x18\x08 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\x12W\n\x10geometry_history\x18\x04 \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryHistory\x12Y\n\x11tessellation_data\x18\x05 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.geometry.TessellationData\x12\x15\n\rn_avail_undos\x18\x06 \x01(\x05\x12\x15\n\rn_avail_redos\x18\x07 \x01(\x05\x12+\n\x04tags\x18\t \x01(\x0b\x32\x1d.luminary.proto.geometry.Tags\x12\x38\n\x0bkernel_type\x18\n \x01(\x0e\x32#.luminary.proto.geometry.KernelType\x12%\n\x1dnamed_variable_set_version_id\x18\x0b \x01(\t\x1a\xcb\x08\n\tBusyState\x12\x0f\n\x07message\x18\x01 \x01(\t\x12}\n\x10\x66\x65\x61ture_progress\x18\x05 \x01(\x0b\x32\x61.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.FeatureProgressH\x00\x12\x85\x01\n\x14\x66\x65\x61ture_tessellation\x18\x06 \x01(\x0b\x32\x65.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.FeatureTessellationH\x00\x12o\n\tundo_redo\x18\x07 \x01(\x0b\x32Z.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.UndoRedoH\x00\x12p\n\treloading\x18\x08 \x01(\x0b\x32[.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.ReloadingH\x00\x12y\n\x0e\x64\x65lete_feature\x18\t \x01(\x0b\x32_.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.DeleteFeatureH\x00\x12y\n\x0erename_feature\x18\n \x01(\x0b\x32_.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.RenameFeatureH\x00\x12w\n\rtag_operation\x18\x0b \x01(\x0b\x32^.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.TagOperationH\x00\x1a%\n\x0f\x46\x65\x61tureProgress\x12\x12\n\nfeature_id\x18\x02 \x01(\t\x1a)\n\x13\x46\x65\x61tureTessellation\x12\x12\n\nfeature_id\x18\x03 \x01(\t\x1a\n\n\x08UndoRedo\x1a\x0b\n\tReloading\x1a#\n\rDeleteFeature\x12\x12\n\nfeature_id\x18\x04 \x01(\t\x1a#\n\rRenameFeature\x12\x12\n\nfeature_id\x18\x01 \x01(\t\x1a\x0e\n\x0cTagOperationB\x0f\n\rBusyStateTypeB\x0e\n\x0cResponseType\"}\n\x15ModifyGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12;\n\x0cmodification\x18\x02 \x01(\x0b\x32%.luminary.proto.geometry.Modification\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"\xbf\x01\n\x16ModifyGeometryResponse\x12\x32\n\x08\x66\x65\x61tures\x18\x01 \x03(\x0b\x32 .luminary.proto.geometry.Feature\x12\x30\n\x07volumes\x18\x02 \x03(\x0b\x32\x1f.luminary.proto.geometry.Volume\x12?\n\x0f\x66\x65\x61tures_issues\x18\x03 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\"\xb0\x01\n\x15\x43reateGeometryRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0b\n\x03url\x18\x03 \x01(\t\x12\x17\n\x0fweb_geometry_id\x18\t \x01(\t\x12\x0f\n\x07scaling\x18\x04 \x01(\x01\x12\x0c\n\x04wait\x18\x05 \x01(\x08\x12\x16\n\x0e\x66orce_discrete\x18\x07 \x01(\x08\x12\x12\n\nrequest_id\x18\x08 \x01(\tJ\x04\x08\x06\x10\x07\"b\n\x16\x43reateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\":\n\x15UpdateGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"b\n\x16UpdateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"L\n\x13\x43opyGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"`\n\x14\x43opyGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\",\n\x15\x44\x65leteGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x18\n\x16\x44\x65leteGeometryResponse\"H\n\x14\x43heckGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\"3\n\x15\x43heckGeometryResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0e\n\x06issues\x18\x02 \x03(\t\"H\n\x18GetCheckGeometryResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0e\n\x06issues\x18\x02 \x03(\t\x12\x10\n\x08\x66inished\x18\x03 \x01(\x08\"S\n#TessellationUpToModificationRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x17\n\x0fmodification_id\x18\x02 \x01(\t\":\n$TessellationUpToModificationResponse\x12\x12\n\ntessel_url\x18\x01 \x01(\t\"0\n\x19LatestTessellationRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"5\n\x1aLatestTessellationResponse\x12\x17\n\x0ftesselation_url\x18\x01 \x01(\t\"\'\n\x10KeepAliveRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x13\n\x11KeepAliveResponse\"\x0e\n\x0cPanicRequest\"\x0f\n\rPanicResponse\"(\n\x11StopWorkerRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x14\n\x12StopWorkerResponse\"B\n\x0eGetTagsRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\">\n\x0fGetTagsResponse\x12+\n\x04tags\x18\x01 \x01(\x0b\x32\x1d.luminary.proto.geometry.Tags\"R\n\x03Tag\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06\x62odies\x18\x03 \x03(\x05\x12\x0f\n\x07volumes\x18\x04 \x03(\t\x12\x10\n\x08surfaces\x18\x05 \x03(\t\"]\n\x0fListTagsRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"S\n\x10ListTagsResponse\x12?\n\x04tags\x18\x01 \x03(\x0b\x32\x31.luminary.proto.api.v0.luminarycloud.geometry.Tag\"8\n\x19GetGeometryVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\"u\n\x1aGetGeometryVersionResponse\x12W\n\x10geometry_version\x18\x01 \x01(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\"E\n\x11GetSdkCodeRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\"&\n\x12GetSdkCodeResponse\x12\x10\n\x08sdk_code\x18\x01 \x01(\t2\xcc$\n\x0fGeometryService\x12\xd3\x01\n\x0eListGeometries\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesResponse\"6\x82\xd3\xe4\x93\x02&\x12$/v0/projects/{project_id}/geometries\x8a\xb5\x18\x06\x08<\x12\x02\x08\x01\x12\x91\x02\n\x14ListGeometryEntities\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesResponse\"b\x82\xd3\xe4\x93\x02\\\x12#/v0/geometry/{geometry_id}/entitiesZ5\x12\x33/v0/geometry_version/{geometry_version_id}/entities\x12\xb6\x01\n\x0bGetGeometry\x12@.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/geometry/{geometry_id}\x12\x91\x02\n\x14ListGeometryFeatures\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesResponse\"b\x82\xd3\xe4\x93\x02\\\x12#/v0/geometry/{geometry_id}/featuresZ5\x12\x33/v0/geometry_version/{geometry_version_id}/features\x12\xae\x02\n\x19ListGeometryFeatureIssues\x12N.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesRequest\x1aO.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesResponse\"p\x82\xd3\xe4\x93\x02j\x12*/v0/geometry/{geometry_id}/features/issuesZ<\x12:/v0/geometry_version/{geometry_version_id}/features/issues\x12\xae\x01\n\x11SubscribeGeometry\x12\x46.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryRequest\x1aG.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse\"\x06\x8a\xb5\x18\x02\x08\x32\x30\x01\x12\xd3\x01\n\x0eModifyGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryResponse\"6\x82\xd3\xe4\x93\x02&\"!/v0/geometry/{geometry_id}/modify:\x01*\x8a\xb5\x18\x06\x08<\x12\x02\x08\x01\x12\xdb\x01\n\x0e\x43reateGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.CreateGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.CreateGeometryResponse\">\x82\xd3\xe4\x93\x02.\")/v0/projects/{project_id}/create-geometry:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x03\x12\xc2\x01\n\x0eUpdateGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryResponse\"%\x82\xd3\xe4\x93\x02\x1f\x32\x1a/v0/geometry/{geometry_id}:\x01*\x12\xcb\x01\n\x0c\x43opyGeometry\x12\x41.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryRequest\x1a\x42.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryResponse\"4\x82\xd3\xe4\x93\x02$\"\x1f/v0/geometry/{geometry_id}:copy:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x03\x12\xd3\x01\n\x0e\x44\x65leteGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.DeleteGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.DeleteGeometryResponse\"6\x82\xd3\xe4\x93\x02&\"!/v0/geometry/{geometry_id}:delete:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x03\x12\xad\x01\n\x12StartCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x16.google.protobuf.Empty\";\x82\xd3\xe4\x93\x02+\"&/v0/geometry/{geometry_id}/start_check:\x01*\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\xcf\x01\n\x10GetCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x46.luminary.proto.api.v0.luminarycloud.geometry.GetCheckGeometryResponse\"/\x82\xd3\xe4\x93\x02)\"$/v0/geometry/{geometry_id}/get_check:\x01*\x12\xc5\x01\n\rCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x43.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryResponse\"+\x82\xd3\xe4\x93\x02%\" /v0/geometry/{geometry_id}/check:\x01*\x12\xd0\x01\n\x1bTesselationUpToModification\x12Q.luminary.proto.api.v0.luminarycloud.geometry.TessellationUpToModificationRequest\x1aR.luminary.proto.api.v0.luminarycloud.geometry.TessellationUpToModificationResponse\"\n\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\xa7\x01\n\x12LatestTessellation\x12G.luminary.proto.api.v0.luminarycloud.geometry.LatestTessellationRequest\x1aH.luminary.proto.api.v0.luminarycloud.geometry.LatestTessellationResponse\x12\x98\x01\n\tKeepAlive\x12>.luminary.proto.api.v0.luminarycloud.geometry.KeepAliveRequest\x1a?.luminary.proto.api.v0.luminarycloud.geometry.KeepAliveResponse\"\n\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\x80\x01\n\x05Panic\x12:.luminary.proto.api.v0.luminarycloud.geometry.PanicRequest\x1a;.luminary.proto.api.v0.luminarycloud.geometry.PanicResponse\x12\x8f\x01\n\nStopWorker\x12?.luminary.proto.api.v0.luminarycloud.geometry.StopWorkerRequest\x1a@.luminary.proto.api.v0.luminarycloud.geometry.StopWorkerResponse\x12\x86\x01\n\x07GetTags\x12<.luminary.proto.api.v0.luminarycloud.geometry.GetTagsRequest\x1a=.luminary.proto.api.v0.luminarycloud.geometry.GetTagsResponse\x12\xe5\x01\n\x08ListTags\x12=.luminary.proto.api.v0.luminarycloud.geometry.ListTagsRequest\x1a>.luminary.proto.api.v0.luminarycloud.geometry.ListTagsResponse\"Z\x82\xd3\xe4\x93\x02T\x12\x1f/v0/geometry/{geometry_id}/tagsZ1\x12//v0/geometry_version/{geometry_version_id}/tags\x12\xdb\x01\n\x12GetGeometryVersion\x12G.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionRequest\x1aH.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionResponse\"2\x82\xd3\xe4\x93\x02,\x12*/v0/geometry_version/{geometry_version_id}\x12\xbc\x01\n\nGetSdkCode\x12?.luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeRequest\x1a@.luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeResponse\"+\x82\xd3\xe4\x93\x02%\x12#/v0/geometry/{geometry_id}/sdk-codeB<Z:luminarycloud.com/core/proto/api/v0/luminarycloud/geometryb\x06proto3')
25
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2proto/api/v0/luminarycloud/geometry/geometry.proto\x12,luminary.proto.api.v0.luminarycloud.geometry\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1dproto/geometry/geometry.proto\x1a\x15proto/base/base.proto\x1a#proto/cadmetadata/cadmetadata.proto\x1a\x16proto/lcn/lcmesh.proto\x1a\x1fproto/ratelimit/ratelimit.proto\"\xb5\x03\n\x08Geometry\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\x12/\n\x0bupdate_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x64\x65leted\x18\x05 \x01(\x08\x12\x17\n\x0flast_version_id\x18\x06 \x01(\t\x12\x11\n\tuses_tags\x18\x07 \x01(\x08\x12\x12\n\nproject_id\x18\t \x01(\t\x12R\n\x06status\x18\n \x01(\x0e\x32=.luminary.proto.api.v0.luminarycloud.geometry.Geometry.StatusH\x00\x88\x01\x01\"w\n\x06Status\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x08\n\x04\x42USY\x10\x01\x12\x16\n\x12HAS_FEATURE_ERRORS\x10\x05\x12\x13\n\x0fREADY_FOR_CHECK\x10\x02\x12\x0c\n\x08\x43HECKING\x10\x06\x12\x10\n\x0c\x46\x41ILED_CHECK\x10\x03\x12\t\n\x05READY\x10\x04\x42\t\n\x07_statusJ\x04\x08\x08\x10\t\"c\n\x0fGeometryVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bgeometry_id\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x84\x02\n\x10TessellationData\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12\x11\n\tmeta_data\x18\x02 \x01(\x0c\x12\x36\n\x08lcn_meta\x18\x03 \x01(\x0b\x32$.luminary.proto.lcn.MeshFileMetadata\x12=\n\x0c\x63\x61\x64_metadata\x18\x04 \x01(\x0b\x32\'.luminary.proto.cadmetadata.CadMetadata\x12\x1b\n\x13geometry_version_id\x18\x05 \x01(\t\x12\x12\n\nfeature_id\x18\x06 \x01(\t\x12\x10\n\x08\x64\x61ta_url\x18\x07 \x01(\t\x12\x15\n\rmeta_data_url\x18\x08 \x01(\t\")\n\x12GetGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"_\n\x13GetGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"i\n\x1bListGeometryFeaturesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"R\n\x1cListGeometryFeaturesResponse\x12\x32\n\x08\x66\x65\x61tures\x18\x01 \x03(\x0b\x32 .luminary.proto.geometry.Feature\"n\n ListGeometryFeatureIssuesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"d\n!ListGeometryFeatureIssuesResponse\x12?\n\x0f\x66\x65\x61tures_issues\x18\x01 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\"i\n\x1bListGeometryEntitiesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"{\n\x1cListGeometryEntitiesResponse\x12,\n\x05\x66\x61\x63\x65s\x18\x01 \x03(\x0b\x32\x1d.luminary.proto.geometry.Face\x12-\n\x06\x62odies\x18\x02 \x03(\x0b\x32\x1d.luminary.proto.geometry.Body\"+\n\x15ListGeometriesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"d\n\x16ListGeometriesResponse\x12J\n\ngeometries\x18\x01 \x03(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"I\n\x18SubscribeGeometryRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x13\n\x0bgeometry_id\x18\x02 \x01(\tJ\x04\x08\x03\x10\x04\"\xa0\x02\n\x0fGeometryHistory\x12\x61\n\rhistory_entry\x18\x01 \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.geometry.GeometryHistory.HistoryEntry\x1a\xa9\x01\n\x0cHistoryEntry\x12;\n\x0cmodification\x18\x01 \x01(\x0b\x32%.luminary.proto.geometry.Modification\x12#\n\x1bgeometry_version_initial_id\x18\x02 \x01(\t\x12\x1f\n\x17geometry_version_new_id\x18\x03 \x01(\t\x12\x16\n\x0e\x63heckpoint_url\x18\x04 \x01(\t\"\xaa\x0f\n\x19SubscribeGeometryResponse\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12p\n\ncheckpoint\x18\x05 \x01(\x0b\x32Z.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.GeometryCheckpointH\x00\x12\x61\n\x04\x62usy\x18\x06 \x01(\x0b\x32Q.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyStateH\x00\x12\x1d\n\x13worker_disconnected\x18\x07 \x01(\x08H\x00\x12\x18\n\x0ereceived_error\x18\x08 \x01(\x08H\x00\x1a\x8b\x04\n\x12GeometryCheckpoint\x12\x10\n\x08mesh_url\x18\x02 \x01(\t\x12\x32\n\x08\x66\x65\x61tures\x18\x03 \x03(\x0b\x32 .luminary.proto.geometry.Feature\x12?\n\x0f\x66\x65\x61tures_issues\x18\x08 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\x12W\n\x10geometry_history\x18\x04 \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryHistory\x12Y\n\x11tessellation_data\x18\x05 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.geometry.TessellationData\x12\x15\n\rn_avail_undos\x18\x06 \x01(\x05\x12\x15\n\rn_avail_redos\x18\x07 \x01(\x05\x12+\n\x04tags\x18\t \x01(\x0b\x32\x1d.luminary.proto.geometry.Tags\x12\x38\n\x0bkernel_type\x18\n \x01(\x0e\x32#.luminary.proto.geometry.KernelType\x12%\n\x1dnamed_variable_set_version_id\x18\x0b \x01(\t\x1a\xcb\x08\n\tBusyState\x12\x0f\n\x07message\x18\x01 \x01(\t\x12}\n\x10\x66\x65\x61ture_progress\x18\x05 \x01(\x0b\x32\x61.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.FeatureProgressH\x00\x12\x85\x01\n\x14\x66\x65\x61ture_tessellation\x18\x06 \x01(\x0b\x32\x65.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.FeatureTessellationH\x00\x12o\n\tundo_redo\x18\x07 \x01(\x0b\x32Z.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.UndoRedoH\x00\x12p\n\treloading\x18\x08 \x01(\x0b\x32[.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.ReloadingH\x00\x12y\n\x0e\x64\x65lete_feature\x18\t \x01(\x0b\x32_.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.DeleteFeatureH\x00\x12y\n\x0erename_feature\x18\n \x01(\x0b\x32_.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.RenameFeatureH\x00\x12w\n\rtag_operation\x18\x0b \x01(\x0b\x32^.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.TagOperationH\x00\x1a%\n\x0f\x46\x65\x61tureProgress\x12\x12\n\nfeature_id\x18\x02 \x01(\t\x1a)\n\x13\x46\x65\x61tureTessellation\x12\x12\n\nfeature_id\x18\x03 \x01(\t\x1a\n\n\x08UndoRedo\x1a\x0b\n\tReloading\x1a#\n\rDeleteFeature\x12\x12\n\nfeature_id\x18\x04 \x01(\t\x1a#\n\rRenameFeature\x12\x12\n\nfeature_id\x18\x01 \x01(\t\x1a\x0e\n\x0cTagOperationB\x0f\n\rBusyStateTypeB\x0e\n\x0cResponseType\"}\n\x15ModifyGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12;\n\x0cmodification\x18\x02 \x01(\x0b\x32%.luminary.proto.geometry.Modification\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"\xbf\x01\n\x16ModifyGeometryResponse\x12\x32\n\x08\x66\x65\x61tures\x18\x01 \x03(\x0b\x32 .luminary.proto.geometry.Feature\x12\x30\n\x07volumes\x18\x02 \x03(\x0b\x32\x1f.luminary.proto.geometry.Volume\x12?\n\x0f\x66\x65\x61tures_issues\x18\x03 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\"\xd7\x01\n\x15\x43reateGeometryRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0b\n\x03url\x18\x03 \x01(\t\x12\x17\n\x0fweb_geometry_id\x18\t \x01(\t\x12\x15\n\rscaling_float\x18\x04 \x01(\x01\x12\x31\n\x07scaling\x18\n \x01(\x0b\x32 .luminary.proto.base.AdFloatType\x12\x0c\n\x04wait\x18\x05 \x01(\x08\x12\x12\n\nrequest_id\x18\x08 \x01(\tJ\x04\x08\x06\x10\x07J\x04\x08\x07\x10\x08\"b\n\x16\x43reateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\":\n\x15UpdateGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"b\n\x16UpdateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"L\n\x13\x43opyGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"`\n\x14\x43opyGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"_\n\x1e\x43opyGeometryFromVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"k\n\x1f\x43opyGeometryFromVersionResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\",\n\x15\x44\x65leteGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x18\n\x16\x44\x65leteGeometryResponse\"H\n\x14\x43heckGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\"3\n\x15\x43heckGeometryResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0e\n\x06issues\x18\x02 \x03(\t\"H\n\x18GetCheckGeometryResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0e\n\x06issues\x18\x02 \x03(\t\x12\x10\n\x08\x66inished\x18\x03 \x01(\x08\"S\n#TessellationUpToModificationRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x17\n\x0fmodification_id\x18\x02 \x01(\t\":\n$TessellationUpToModificationResponse\x12\x12\n\ntessel_url\x18\x01 \x01(\t\"0\n\x19LatestTessellationRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"5\n\x1aLatestTessellationResponse\x12\x17\n\x0ftesselation_url\x18\x01 \x01(\t\"\'\n\x10KeepAliveRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x13\n\x11KeepAliveResponse\"\x0e\n\x0cPanicRequest\"\x0f\n\rPanicResponse\"(\n\x11StopWorkerRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x14\n\x12StopWorkerResponse\"B\n\x0eGetTagsRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\">\n\x0fGetTagsResponse\x12+\n\x04tags\x18\x01 \x01(\x0b\x32\x1d.luminary.proto.geometry.Tags\"R\n\x03Tag\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06\x62odies\x18\x03 \x03(\x05\x12\x0f\n\x07volumes\x18\x04 \x03(\t\x12\x10\n\x08surfaces\x18\x05 \x03(\t\"]\n\x0fListTagsRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"S\n\x10ListTagsResponse\x12?\n\x04tags\x18\x01 \x03(\x0b\x32\x31.luminary.proto.api.v0.luminarycloud.geometry.Tag\"8\n\x19GetGeometryVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\"u\n\x1aGetGeometryVersionResponse\x12W\n\x10geometry_version\x18\x01 \x01(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\"E\n\x11GetSdkCodeRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\"&\n\x12GetSdkCodeResponse\x12\x10\n\x08sdk_code\x18\x01 \x01(\t2\xc1&\n\x0fGeometryService\x12\xd3\x01\n\x0eListGeometries\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesResponse\"6\x82\xd3\xe4\x93\x02&\x12$/v0/projects/{project_id}/geometries\x8a\xb5\x18\x06\x08<\x12\x02\x08\x01\x12\x91\x02\n\x14ListGeometryEntities\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesResponse\"b\x82\xd3\xe4\x93\x02\\\x12#/v0/geometry/{geometry_id}/entitiesZ5\x12\x33/v0/geometry_version/{geometry_version_id}/entities\x12\xb6\x01\n\x0bGetGeometry\x12@.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/geometry/{geometry_id}\x12\x91\x02\n\x14ListGeometryFeatures\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesResponse\"b\x82\xd3\xe4\x93\x02\\\x12#/v0/geometry/{geometry_id}/featuresZ5\x12\x33/v0/geometry_version/{geometry_version_id}/features\x12\xae\x02\n\x19ListGeometryFeatureIssues\x12N.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesRequest\x1aO.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesResponse\"p\x82\xd3\xe4\x93\x02j\x12*/v0/geometry/{geometry_id}/features/issuesZ<\x12:/v0/geometry_version/{geometry_version_id}/features/issues\x12\xae\x01\n\x11SubscribeGeometry\x12\x46.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryRequest\x1aG.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse\"\x06\x8a\xb5\x18\x02\x08\x32\x30\x01\x12\xd3\x01\n\x0eModifyGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryResponse\"6\x82\xd3\xe4\x93\x02&\"!/v0/geometry/{geometry_id}/modify:\x01*\x8a\xb5\x18\x06\x08<\x12\x02\x08\x01\x12\xdb\x01\n\x0e\x43reateGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.CreateGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.CreateGeometryResponse\">\x82\xd3\xe4\x93\x02.\")/v0/projects/{project_id}/create-geometry:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x03\x12\xc2\x01\n\x0eUpdateGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryResponse\"%\x82\xd3\xe4\x93\x02\x1f\x32\x1a/v0/geometry/{geometry_id}:\x01*\x12\xcb\x01\n\x0c\x43opyGeometry\x12\x41.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryRequest\x1a\x42.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryResponse\"4\x82\xd3\xe4\x93\x02$\"\x1f/v0/geometry/{geometry_id}:copy:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x01\x12\xfc\x01\n\x17\x43opyGeometryFromVersion\x12L.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryFromVersionRequest\x1aM.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryFromVersionResponse\"D\x82\xd3\xe4\x93\x02\x34\"//v0/geometry_from_version/{geometry_version_id}:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x01\x12\xc9\x01\n\x0e\x44\x65leteGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.DeleteGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.DeleteGeometryResponse\",\x82\xd3\xe4\x93\x02&\"!/v0/geometry/{geometry_id}:delete:\x01*\x12\xad\x01\n\x12StartCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x16.google.protobuf.Empty\";\x82\xd3\xe4\x93\x02+\"&/v0/geometry/{geometry_id}/start_check:\x01*\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\xcf\x01\n\x10GetCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x46.luminary.proto.api.v0.luminarycloud.geometry.GetCheckGeometryResponse\"/\x82\xd3\xe4\x93\x02)\"$/v0/geometry/{geometry_id}/get_check:\x01*\x12\xc5\x01\n\rCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x43.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryResponse\"+\x82\xd3\xe4\x93\x02%\" /v0/geometry/{geometry_id}/check:\x01*\x12\xd0\x01\n\x1bTesselationUpToModification\x12Q.luminary.proto.api.v0.luminarycloud.geometry.TessellationUpToModificationRequest\x1aR.luminary.proto.api.v0.luminarycloud.geometry.TessellationUpToModificationResponse\"\n\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\xa7\x01\n\x12LatestTessellation\x12G.luminary.proto.api.v0.luminarycloud.geometry.LatestTessellationRequest\x1aH.luminary.proto.api.v0.luminarycloud.geometry.LatestTessellationResponse\x12\x98\x01\n\tKeepAlive\x12>.luminary.proto.api.v0.luminarycloud.geometry.KeepAliveRequest\x1a?.luminary.proto.api.v0.luminarycloud.geometry.KeepAliveResponse\"\n\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\x80\x01\n\x05Panic\x12:.luminary.proto.api.v0.luminarycloud.geometry.PanicRequest\x1a;.luminary.proto.api.v0.luminarycloud.geometry.PanicResponse\x12\x8f\x01\n\nStopWorker\x12?.luminary.proto.api.v0.luminarycloud.geometry.StopWorkerRequest\x1a@.luminary.proto.api.v0.luminarycloud.geometry.StopWorkerResponse\x12\x86\x01\n\x07GetTags\x12<.luminary.proto.api.v0.luminarycloud.geometry.GetTagsRequest\x1a=.luminary.proto.api.v0.luminarycloud.geometry.GetTagsResponse\x12\xe5\x01\n\x08ListTags\x12=.luminary.proto.api.v0.luminarycloud.geometry.ListTagsRequest\x1a>.luminary.proto.api.v0.luminarycloud.geometry.ListTagsResponse\"Z\x82\xd3\xe4\x93\x02T\x12\x1f/v0/geometry/{geometry_id}/tagsZ1\x12//v0/geometry_version/{geometry_version_id}/tags\x12\xdb\x01\n\x12GetGeometryVersion\x12G.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionRequest\x1aH.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionResponse\"2\x82\xd3\xe4\x93\x02,\x12*/v0/geometry_version/{geometry_version_id}\x12\xbc\x01\n\nGetSdkCode\x12?.luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeRequest\x1a@.luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeResponse\"+\x82\xd3\xe4\x93\x02%\x12#/v0/geometry/{geometry_id}/sdk-codeB<Z:luminarycloud.com/core/proto/api/v0/luminarycloud/geometryb\x06proto3')
25
26
 
26
27
 
27
28
 
@@ -59,6 +60,8 @@ _UPDATEGEOMETRYREQUEST = DESCRIPTOR.message_types_by_name['UpdateGeometryRequest
59
60
  _UPDATEGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['UpdateGeometryResponse']
60
61
  _COPYGEOMETRYREQUEST = DESCRIPTOR.message_types_by_name['CopyGeometryRequest']
61
62
  _COPYGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['CopyGeometryResponse']
63
+ _COPYGEOMETRYFROMVERSIONREQUEST = DESCRIPTOR.message_types_by_name['CopyGeometryFromVersionRequest']
64
+ _COPYGEOMETRYFROMVERSIONRESPONSE = DESCRIPTOR.message_types_by_name['CopyGeometryFromVersionResponse']
62
65
  _DELETEGEOMETRYREQUEST = DESCRIPTOR.message_types_by_name['DeleteGeometryRequest']
63
66
  _DELETEGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['DeleteGeometryResponse']
64
67
  _CHECKGEOMETRYREQUEST = DESCRIPTOR.message_types_by_name['CheckGeometryRequest']
@@ -332,6 +335,20 @@ CopyGeometryResponse = _reflection.GeneratedProtocolMessageType('CopyGeometryRes
332
335
  })
333
336
  _sym_db.RegisterMessage(CopyGeometryResponse)
334
337
 
338
+ CopyGeometryFromVersionRequest = _reflection.GeneratedProtocolMessageType('CopyGeometryFromVersionRequest', (_message.Message,), {
339
+ 'DESCRIPTOR' : _COPYGEOMETRYFROMVERSIONREQUEST,
340
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
341
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryFromVersionRequest)
342
+ })
343
+ _sym_db.RegisterMessage(CopyGeometryFromVersionRequest)
344
+
345
+ CopyGeometryFromVersionResponse = _reflection.GeneratedProtocolMessageType('CopyGeometryFromVersionResponse', (_message.Message,), {
346
+ 'DESCRIPTOR' : _COPYGEOMETRYFROMVERSIONRESPONSE,
347
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
348
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryFromVersionResponse)
349
+ })
350
+ _sym_db.RegisterMessage(CopyGeometryFromVersionResponse)
351
+
335
352
  DeleteGeometryRequest = _reflection.GeneratedProtocolMessageType('DeleteGeometryRequest', (_message.Message,), {
336
353
  'DESCRIPTOR' : _DELETEGEOMETRYREQUEST,
337
354
  '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
@@ -524,9 +541,11 @@ if _descriptor._USE_C_DESCRIPTORS == False:
524
541
  _GEOMETRYSERVICE.methods_by_name['UpdateGeometry']._options = None
525
542
  _GEOMETRYSERVICE.methods_by_name['UpdateGeometry']._serialized_options = b'\202\323\344\223\002\0372\032/v0/geometry/{geometry_id}:\001*'
526
543
  _GEOMETRYSERVICE.methods_by_name['CopyGeometry']._options = None
527
- _GEOMETRYSERVICE.methods_by_name['CopyGeometry']._serialized_options = b'\202\323\344\223\002$\"\037/v0/geometry/{geometry_id}:copy:\001*\212\265\030\006\010\036\022\002\010\003'
544
+ _GEOMETRYSERVICE.methods_by_name['CopyGeometry']._serialized_options = b'\202\323\344\223\002$\"\037/v0/geometry/{geometry_id}:copy:\001*\212\265\030\006\010\036\022\002\010\001'
545
+ _GEOMETRYSERVICE.methods_by_name['CopyGeometryFromVersion']._options = None
546
+ _GEOMETRYSERVICE.methods_by_name['CopyGeometryFromVersion']._serialized_options = b'\202\323\344\223\0024\"//v0/geometry_from_version/{geometry_version_id}:\001*\212\265\030\006\010\036\022\002\010\001'
528
547
  _GEOMETRYSERVICE.methods_by_name['DeleteGeometry']._options = None
529
- _GEOMETRYSERVICE.methods_by_name['DeleteGeometry']._serialized_options = b'\202\323\344\223\002&\"!/v0/geometry/{geometry_id}:delete:\001*\212\265\030\006\010\036\022\002\010\003'
548
+ _GEOMETRYSERVICE.methods_by_name['DeleteGeometry']._serialized_options = b'\202\323\344\223\002&\"!/v0/geometry/{geometry_id}:delete:\001*'
530
549
  _GEOMETRYSERVICE.methods_by_name['StartCheckGeometry']._options = None
531
550
  _GEOMETRYSERVICE.methods_by_name['StartCheckGeometry']._serialized_options = b'\202\323\344\223\002+\"&/v0/geometry/{geometry_id}/start_check:\001*\212\265\030\006\010\024\022\002\010\001'
532
551
  _GEOMETRYSERVICE.methods_by_name['GetCheckGeometry']._options = None
@@ -543,124 +562,128 @@ if _descriptor._USE_C_DESCRIPTORS == False:
543
562
  _GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._serialized_options = b'\202\323\344\223\002,\022*/v0/geometry_version/{geometry_version_id}'
544
563
  _GEOMETRYSERVICE.methods_by_name['GetSdkCode']._options = None
545
564
  _GEOMETRYSERVICE.methods_by_name['GetSdkCode']._serialized_options = b'\202\323\344\223\002%\022#/v0/geometry/{geometry_id}/sdk-code'
546
- _GEOMETRY._serialized_start=318
547
- _GEOMETRY._serialized_end=736
548
- _GEOMETRY_STATUS._serialized_start=643
549
- _GEOMETRY_STATUS._serialized_end=725
550
- _GEOMETRYVERSION._serialized_start=738
551
- _GEOMETRYVERSION._serialized_end=837
552
- _TESSELLATIONDATA._serialized_start=840
553
- _TESSELLATIONDATA._serialized_end=1100
554
- _GETGEOMETRYREQUEST._serialized_start=1102
555
- _GETGEOMETRYREQUEST._serialized_end=1143
556
- _GETGEOMETRYRESPONSE._serialized_start=1145
557
- _GETGEOMETRYRESPONSE._serialized_end=1240
558
- _LISTGEOMETRYFEATURESREQUEST._serialized_start=1242
559
- _LISTGEOMETRYFEATURESREQUEST._serialized_end=1347
560
- _LISTGEOMETRYFEATURESRESPONSE._serialized_start=1349
561
- _LISTGEOMETRYFEATURESRESPONSE._serialized_end=1431
562
- _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=1433
563
- _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=1543
564
- _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=1545
565
- _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=1645
566
- _LISTGEOMETRYENTITIESREQUEST._serialized_start=1647
567
- _LISTGEOMETRYENTITIESREQUEST._serialized_end=1752
568
- _LISTGEOMETRYENTITIESRESPONSE._serialized_start=1754
569
- _LISTGEOMETRYENTITIESRESPONSE._serialized_end=1877
570
- _LISTGEOMETRIESREQUEST._serialized_start=1879
571
- _LISTGEOMETRIESREQUEST._serialized_end=1922
572
- _LISTGEOMETRIESRESPONSE._serialized_start=1924
573
- _LISTGEOMETRIESRESPONSE._serialized_end=2024
574
- _SUBSCRIBEGEOMETRYREQUEST._serialized_start=2026
575
- _SUBSCRIBEGEOMETRYREQUEST._serialized_end=2099
576
- _GEOMETRYHISTORY._serialized_start=2102
577
- _GEOMETRYHISTORY._serialized_end=2390
578
- _GEOMETRYHISTORY_HISTORYENTRY._serialized_start=2221
579
- _GEOMETRYHISTORY_HISTORYENTRY._serialized_end=2390
580
- _SUBSCRIBEGEOMETRYRESPONSE._serialized_start=2393
581
- _SUBSCRIBEGEOMETRYRESPONSE._serialized_end=4355
582
- _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=2714
583
- _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=3237
584
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=3240
585
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=4339
586
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=4127
587
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=4164
588
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=4166
589
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=4207
590
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=4209
591
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=4219
592
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=4221
593
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=4232
594
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=4234
595
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=4269
596
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=4271
597
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=4306
598
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=4308
599
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=4322
600
- _MODIFYGEOMETRYREQUEST._serialized_start=4357
601
- _MODIFYGEOMETRYREQUEST._serialized_end=4482
602
- _MODIFYGEOMETRYRESPONSE._serialized_start=4485
603
- _MODIFYGEOMETRYRESPONSE._serialized_end=4676
604
- _CREATEGEOMETRYREQUEST._serialized_start=4679
605
- _CREATEGEOMETRYREQUEST._serialized_end=4855
606
- _CREATEGEOMETRYRESPONSE._serialized_start=4857
607
- _CREATEGEOMETRYRESPONSE._serialized_end=4955
608
- _UPDATEGEOMETRYREQUEST._serialized_start=4957
609
- _UPDATEGEOMETRYREQUEST._serialized_end=5015
610
- _UPDATEGEOMETRYRESPONSE._serialized_start=5017
611
- _UPDATEGEOMETRYRESPONSE._serialized_end=5115
612
- _COPYGEOMETRYREQUEST._serialized_start=5117
613
- _COPYGEOMETRYREQUEST._serialized_end=5193
614
- _COPYGEOMETRYRESPONSE._serialized_start=5195
615
- _COPYGEOMETRYRESPONSE._serialized_end=5291
616
- _DELETEGEOMETRYREQUEST._serialized_start=5293
617
- _DELETEGEOMETRYREQUEST._serialized_end=5337
618
- _DELETEGEOMETRYRESPONSE._serialized_start=5339
619
- _DELETEGEOMETRYRESPONSE._serialized_end=5363
620
- _CHECKGEOMETRYREQUEST._serialized_start=5365
621
- _CHECKGEOMETRYREQUEST._serialized_end=5437
622
- _CHECKGEOMETRYRESPONSE._serialized_start=5439
623
- _CHECKGEOMETRYRESPONSE._serialized_end=5490
624
- _GETCHECKGEOMETRYRESPONSE._serialized_start=5492
625
- _GETCHECKGEOMETRYRESPONSE._serialized_end=5564
626
- _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=5566
627
- _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=5649
628
- _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=5651
629
- _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=5709
630
- _LATESTTESSELLATIONREQUEST._serialized_start=5711
631
- _LATESTTESSELLATIONREQUEST._serialized_end=5759
632
- _LATESTTESSELLATIONRESPONSE._serialized_start=5761
633
- _LATESTTESSELLATIONRESPONSE._serialized_end=5814
634
- _KEEPALIVEREQUEST._serialized_start=5816
635
- _KEEPALIVEREQUEST._serialized_end=5855
636
- _KEEPALIVERESPONSE._serialized_start=5857
637
- _KEEPALIVERESPONSE._serialized_end=5876
638
- _PANICREQUEST._serialized_start=5878
639
- _PANICREQUEST._serialized_end=5892
640
- _PANICRESPONSE._serialized_start=5894
641
- _PANICRESPONSE._serialized_end=5909
642
- _STOPWORKERREQUEST._serialized_start=5911
643
- _STOPWORKERREQUEST._serialized_end=5951
644
- _STOPWORKERRESPONSE._serialized_start=5953
645
- _STOPWORKERRESPONSE._serialized_end=5973
646
- _GETTAGSREQUEST._serialized_start=5975
647
- _GETTAGSREQUEST._serialized_end=6041
648
- _GETTAGSRESPONSE._serialized_start=6043
649
- _GETTAGSRESPONSE._serialized_end=6105
650
- _TAG._serialized_start=6107
651
- _TAG._serialized_end=6189
652
- _LISTTAGSREQUEST._serialized_start=6191
653
- _LISTTAGSREQUEST._serialized_end=6284
654
- _LISTTAGSRESPONSE._serialized_start=6286
655
- _LISTTAGSRESPONSE._serialized_end=6369
656
- _GETGEOMETRYVERSIONREQUEST._serialized_start=6371
657
- _GETGEOMETRYVERSIONREQUEST._serialized_end=6427
658
- _GETGEOMETRYVERSIONRESPONSE._serialized_start=6429
659
- _GETGEOMETRYVERSIONRESPONSE._serialized_end=6546
660
- _GETSDKCODEREQUEST._serialized_start=6548
661
- _GETSDKCODEREQUEST._serialized_end=6617
662
- _GETSDKCODERESPONSE._serialized_start=6619
663
- _GETSDKCODERESPONSE._serialized_end=6657
664
- _GEOMETRYSERVICE._serialized_start=6660
665
- _GEOMETRYSERVICE._serialized_end=11344
565
+ _GEOMETRY._serialized_start=341
566
+ _GEOMETRY._serialized_end=778
567
+ _GEOMETRY_STATUS._serialized_start=642
568
+ _GEOMETRY_STATUS._serialized_end=761
569
+ _GEOMETRYVERSION._serialized_start=780
570
+ _GEOMETRYVERSION._serialized_end=879
571
+ _TESSELLATIONDATA._serialized_start=882
572
+ _TESSELLATIONDATA._serialized_end=1142
573
+ _GETGEOMETRYREQUEST._serialized_start=1144
574
+ _GETGEOMETRYREQUEST._serialized_end=1185
575
+ _GETGEOMETRYRESPONSE._serialized_start=1187
576
+ _GETGEOMETRYRESPONSE._serialized_end=1282
577
+ _LISTGEOMETRYFEATURESREQUEST._serialized_start=1284
578
+ _LISTGEOMETRYFEATURESREQUEST._serialized_end=1389
579
+ _LISTGEOMETRYFEATURESRESPONSE._serialized_start=1391
580
+ _LISTGEOMETRYFEATURESRESPONSE._serialized_end=1473
581
+ _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=1475
582
+ _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=1585
583
+ _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=1587
584
+ _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=1687
585
+ _LISTGEOMETRYENTITIESREQUEST._serialized_start=1689
586
+ _LISTGEOMETRYENTITIESREQUEST._serialized_end=1794
587
+ _LISTGEOMETRYENTITIESRESPONSE._serialized_start=1796
588
+ _LISTGEOMETRYENTITIESRESPONSE._serialized_end=1919
589
+ _LISTGEOMETRIESREQUEST._serialized_start=1921
590
+ _LISTGEOMETRIESREQUEST._serialized_end=1964
591
+ _LISTGEOMETRIESRESPONSE._serialized_start=1966
592
+ _LISTGEOMETRIESRESPONSE._serialized_end=2066
593
+ _SUBSCRIBEGEOMETRYREQUEST._serialized_start=2068
594
+ _SUBSCRIBEGEOMETRYREQUEST._serialized_end=2141
595
+ _GEOMETRYHISTORY._serialized_start=2144
596
+ _GEOMETRYHISTORY._serialized_end=2432
597
+ _GEOMETRYHISTORY_HISTORYENTRY._serialized_start=2263
598
+ _GEOMETRYHISTORY_HISTORYENTRY._serialized_end=2432
599
+ _SUBSCRIBEGEOMETRYRESPONSE._serialized_start=2435
600
+ _SUBSCRIBEGEOMETRYRESPONSE._serialized_end=4397
601
+ _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=2756
602
+ _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=3279
603
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=3282
604
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=4381
605
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=4169
606
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=4206
607
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=4208
608
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=4249
609
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=4251
610
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=4261
611
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=4263
612
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=4274
613
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=4276
614
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=4311
615
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=4313
616
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=4348
617
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=4350
618
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=4364
619
+ _MODIFYGEOMETRYREQUEST._serialized_start=4399
620
+ _MODIFYGEOMETRYREQUEST._serialized_end=4524
621
+ _MODIFYGEOMETRYRESPONSE._serialized_start=4527
622
+ _MODIFYGEOMETRYRESPONSE._serialized_end=4718
623
+ _CREATEGEOMETRYREQUEST._serialized_start=4721
624
+ _CREATEGEOMETRYREQUEST._serialized_end=4936
625
+ _CREATEGEOMETRYRESPONSE._serialized_start=4938
626
+ _CREATEGEOMETRYRESPONSE._serialized_end=5036
627
+ _UPDATEGEOMETRYREQUEST._serialized_start=5038
628
+ _UPDATEGEOMETRYREQUEST._serialized_end=5096
629
+ _UPDATEGEOMETRYRESPONSE._serialized_start=5098
630
+ _UPDATEGEOMETRYRESPONSE._serialized_end=5196
631
+ _COPYGEOMETRYREQUEST._serialized_start=5198
632
+ _COPYGEOMETRYREQUEST._serialized_end=5274
633
+ _COPYGEOMETRYRESPONSE._serialized_start=5276
634
+ _COPYGEOMETRYRESPONSE._serialized_end=5372
635
+ _COPYGEOMETRYFROMVERSIONREQUEST._serialized_start=5374
636
+ _COPYGEOMETRYFROMVERSIONREQUEST._serialized_end=5469
637
+ _COPYGEOMETRYFROMVERSIONRESPONSE._serialized_start=5471
638
+ _COPYGEOMETRYFROMVERSIONRESPONSE._serialized_end=5578
639
+ _DELETEGEOMETRYREQUEST._serialized_start=5580
640
+ _DELETEGEOMETRYREQUEST._serialized_end=5624
641
+ _DELETEGEOMETRYRESPONSE._serialized_start=5626
642
+ _DELETEGEOMETRYRESPONSE._serialized_end=5650
643
+ _CHECKGEOMETRYREQUEST._serialized_start=5652
644
+ _CHECKGEOMETRYREQUEST._serialized_end=5724
645
+ _CHECKGEOMETRYRESPONSE._serialized_start=5726
646
+ _CHECKGEOMETRYRESPONSE._serialized_end=5777
647
+ _GETCHECKGEOMETRYRESPONSE._serialized_start=5779
648
+ _GETCHECKGEOMETRYRESPONSE._serialized_end=5851
649
+ _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=5853
650
+ _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=5936
651
+ _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=5938
652
+ _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=5996
653
+ _LATESTTESSELLATIONREQUEST._serialized_start=5998
654
+ _LATESTTESSELLATIONREQUEST._serialized_end=6046
655
+ _LATESTTESSELLATIONRESPONSE._serialized_start=6048
656
+ _LATESTTESSELLATIONRESPONSE._serialized_end=6101
657
+ _KEEPALIVEREQUEST._serialized_start=6103
658
+ _KEEPALIVEREQUEST._serialized_end=6142
659
+ _KEEPALIVERESPONSE._serialized_start=6144
660
+ _KEEPALIVERESPONSE._serialized_end=6163
661
+ _PANICREQUEST._serialized_start=6165
662
+ _PANICREQUEST._serialized_end=6179
663
+ _PANICRESPONSE._serialized_start=6181
664
+ _PANICRESPONSE._serialized_end=6196
665
+ _STOPWORKERREQUEST._serialized_start=6198
666
+ _STOPWORKERREQUEST._serialized_end=6238
667
+ _STOPWORKERRESPONSE._serialized_start=6240
668
+ _STOPWORKERRESPONSE._serialized_end=6260
669
+ _GETTAGSREQUEST._serialized_start=6262
670
+ _GETTAGSREQUEST._serialized_end=6328
671
+ _GETTAGSRESPONSE._serialized_start=6330
672
+ _GETTAGSRESPONSE._serialized_end=6392
673
+ _TAG._serialized_start=6394
674
+ _TAG._serialized_end=6476
675
+ _LISTTAGSREQUEST._serialized_start=6478
676
+ _LISTTAGSREQUEST._serialized_end=6571
677
+ _LISTTAGSRESPONSE._serialized_start=6573
678
+ _LISTTAGSRESPONSE._serialized_end=6656
679
+ _GETGEOMETRYVERSIONREQUEST._serialized_start=6658
680
+ _GETGEOMETRYVERSIONREQUEST._serialized_end=6714
681
+ _GETGEOMETRYVERSIONRESPONSE._serialized_start=6716
682
+ _GETGEOMETRYVERSIONRESPONSE._serialized_end=6833
683
+ _GETSDKCODEREQUEST._serialized_start=6835
684
+ _GETSDKCODEREQUEST._serialized_end=6904
685
+ _GETSDKCODERESPONSE._serialized_start=6906
686
+ _GETSDKCODERESPONSE._serialized_end=6944
687
+ _GEOMETRYSERVICE._serialized_start=6947
688
+ _GEOMETRYSERVICE._serialized_end=11876
666
689
  # @@protoc_insertion_point(module_scope)
@@ -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
@@ -51,7 +70,6 @@ class Geometry(google.protobuf.message.Message):
51
70
  DELETED_FIELD_NUMBER: builtins.int
52
71
  LAST_VERSION_ID_FIELD_NUMBER: builtins.int
53
72
  USES_TAGS_FIELD_NUMBER: builtins.int
54
- FORCE_DISCRETE_FIELD_NUMBER: builtins.int
55
73
  PROJECT_ID_FIELD_NUMBER: builtins.int
56
74
  STATUS_FIELD_NUMBER: builtins.int
57
75
  id: builtins.str
@@ -63,7 +81,6 @@ class Geometry(google.protobuf.message.Message):
63
81
  deleted: builtins.bool
64
82
  last_version_id: builtins.str
65
83
  uses_tags: builtins.bool
66
- force_discrete: builtins.bool
67
84
  project_id: builtins.str
68
85
  status: global___Geometry.Status.ValueType
69
86
  def __init__(
@@ -76,12 +93,11 @@ class Geometry(google.protobuf.message.Message):
76
93
  deleted: builtins.bool = ...,
77
94
  last_version_id: builtins.str = ...,
78
95
  uses_tags: builtins.bool = ...,
79
- force_discrete: builtins.bool = ...,
80
96
  project_id: builtins.str = ...,
81
97
  status: global___Geometry.Status.ValueType | None = ...,
82
98
  ) -> None: ...
83
99
  def HasField(self, field_name: typing_extensions.Literal["_status", b"_status", "create_time", b"create_time", "status", b"status", "update_time", b"update_time"]) -> builtins.bool: ...
84
- def ClearField(self, field_name: typing_extensions.Literal["_status", b"_status", "create_time", b"create_time", "deleted", b"deleted", "force_discrete", b"force_discrete", "id", b"id", "last_version_id", b"last_version_id", "name", b"name", "project_id", b"project_id", "status", b"status", "update_time", b"update_time", "uses_tags", b"uses_tags"]) -> None: ...
100
+ def ClearField(self, field_name: typing_extensions.Literal["_status", b"_status", "create_time", b"create_time", "deleted", b"deleted", "id", b"id", "last_version_id", b"last_version_id", "name", b"name", "project_id", b"project_id", "status", b"status", "update_time", b"update_time", "uses_tags", b"uses_tags"]) -> None: ...
85
101
  def WhichOneof(self, oneof_group: typing_extensions.Literal["_status", b"_status"]) -> typing_extensions.Literal["status"] | None: ...
86
102
 
87
103
  global___Geometry = Geometry
@@ -667,9 +683,9 @@ class CreateGeometryRequest(google.protobuf.message.Message):
667
683
  NAME_FIELD_NUMBER: builtins.int
668
684
  URL_FIELD_NUMBER: builtins.int
669
685
  WEB_GEOMETRY_ID_FIELD_NUMBER: builtins.int
686
+ SCALING_FLOAT_FIELD_NUMBER: builtins.int
670
687
  SCALING_FIELD_NUMBER: builtins.int
671
688
  WAIT_FIELD_NUMBER: builtins.int
672
- FORCE_DISCRETE_FIELD_NUMBER: builtins.int
673
689
  REQUEST_ID_FIELD_NUMBER: builtins.int
674
690
  project_id: builtins.str
675
691
  """Required. The project to create the new geometry in."""
@@ -687,14 +703,20 @@ class CreateGeometryRequest(google.protobuf.message.Message):
687
703
  """One of url/web_geometry_id required.
688
704
  Id for web_geometry, such as returned from UploadWebGeometryReply.
689
705
  """
690
- scaling: builtins.float
691
- """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
+ """
692
715
  wait: builtins.bool
693
716
  """Optional. If set to true, the server will wait for the geometry import to
694
717
  complete before sending the response. Otherwise, it will respond
695
718
  immediately and the import will occur in the background. Defaults to false.
696
719
  """
697
- force_discrete: builtins.bool
698
720
  request_id: builtins.str
699
721
  """Optional. Used to deduplicate requests. If it is not set, no deduplication
700
722
  attempts will be made. Else, the server will check that no geometry was
@@ -707,12 +729,13 @@ class CreateGeometryRequest(google.protobuf.message.Message):
707
729
  name: builtins.str = ...,
708
730
  url: builtins.str = ...,
709
731
  web_geometry_id: builtins.str = ...,
710
- scaling: builtins.float = ...,
732
+ scaling_float: builtins.float = ...,
733
+ scaling: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
711
734
  wait: builtins.bool = ...,
712
- force_discrete: builtins.bool = ...,
713
735
  request_id: builtins.str = ...,
714
736
  ) -> None: ...
715
- def ClearField(self, field_name: typing_extensions.Literal["force_discrete", b"force_discrete", "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: ...
716
739
 
717
740
  global___CreateGeometryRequest = CreateGeometryRequest
718
741
 
@@ -809,6 +832,50 @@ class CopyGeometryResponse(google.protobuf.message.Message):
809
832
 
810
833
  global___CopyGeometryResponse = CopyGeometryResponse
811
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
+
812
879
  class DeleteGeometryRequest(google.protobuf.message.Message):
813
880
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
814
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,