luminarycloud 0.19.0__py3-none-any.whl → 0.22.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 (110) hide show
  1. luminarycloud/__init__.py +5 -1
  2. luminarycloud/_client/client.py +7 -0
  3. luminarycloud/_client/http_client.py +10 -8
  4. luminarycloud/_feature_flag.py +22 -0
  5. luminarycloud/_helpers/_create_simulation.py +7 -2
  6. luminarycloud/_helpers/_upload_mesh.py +1 -0
  7. luminarycloud/_helpers/_wait_for_mesh.py +6 -5
  8. luminarycloud/_helpers/_wait_for_simulation.py +3 -3
  9. luminarycloud/_helpers/download.py +3 -1
  10. luminarycloud/_helpers/pagination.py +62 -0
  11. luminarycloud/_helpers/proto_decorator.py +13 -5
  12. luminarycloud/_helpers/upload.py +18 -12
  13. luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.py +55 -0
  14. luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.pyi +52 -0
  15. luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.py +72 -0
  16. luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.pyi +35 -0
  17. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +168 -124
  18. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +133 -4
  19. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +66 -0
  20. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +20 -0
  21. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.py +8 -8
  22. luminarycloud/_proto/api/v0/luminarycloud/inference/inference_pb2.pyi +5 -5
  23. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +74 -73
  24. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +17 -3
  25. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +96 -25
  26. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +235 -1
  27. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.py +34 -0
  28. luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2_grpc.pyi +12 -0
  29. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py +16 -16
  30. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi +7 -3
  31. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +97 -61
  32. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +77 -4
  33. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py +34 -0
  34. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi +12 -0
  35. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +33 -31
  36. luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +23 -2
  37. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +126 -27
  38. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +183 -0
  39. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.py +99 -0
  40. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.pyi +30 -0
  41. luminarycloud/_proto/assistant/assistant_pb2.py +74 -41
  42. luminarycloud/_proto/assistant/assistant_pb2.pyi +64 -2
  43. luminarycloud/_proto/assistant/assistant_pb2_grpc.py +33 -0
  44. luminarycloud/_proto/assistant/assistant_pb2_grpc.pyi +10 -0
  45. luminarycloud/_proto/base/base_pb2.py +20 -7
  46. luminarycloud/_proto/base/base_pb2.pyi +38 -0
  47. luminarycloud/_proto/cad/shape_pb2.py +39 -19
  48. luminarycloud/_proto/cad/shape_pb2.pyi +86 -34
  49. luminarycloud/_proto/cad/transformation_pb2.py +60 -16
  50. luminarycloud/_proto/cad/transformation_pb2.pyi +138 -32
  51. luminarycloud/_proto/client/simulation_pb2.py +501 -348
  52. luminarycloud/_proto/client/simulation_pb2.pyi +607 -11
  53. luminarycloud/_proto/geometry/geometry_pb2.py +77 -63
  54. luminarycloud/_proto/geometry/geometry_pb2.pyi +42 -3
  55. luminarycloud/_proto/hexmesh/hexmesh_pb2.py +24 -18
  56. luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +23 -2
  57. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.py +10 -10
  58. luminarycloud/_proto/inferenceservice/inferenceservice_pb2.pyi +5 -5
  59. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +29 -0
  60. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.pyi +7 -0
  61. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +70 -0
  62. luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +30 -0
  63. luminarycloud/_proto/quantity/quantity_options_pb2.py +6 -6
  64. luminarycloud/_proto/quantity/quantity_options_pb2.pyi +10 -1
  65. luminarycloud/_proto/quantity/quantity_pb2.py +176 -167
  66. luminarycloud/_proto/quantity/quantity_pb2.pyi +11 -5
  67. luminarycloud/enum/__init__.py +1 -0
  68. luminarycloud/enum/gpu_type.py +2 -0
  69. luminarycloud/enum/quantity_type.py +9 -0
  70. luminarycloud/enum/vis_enums.py +23 -3
  71. luminarycloud/exceptions.py +7 -1
  72. luminarycloud/feature_modification.py +45 -35
  73. luminarycloud/geometry.py +107 -9
  74. luminarycloud/geometry_version.py +57 -3
  75. luminarycloud/mesh.py +1 -2
  76. luminarycloud/meshing/mesh_generation_params.py +8 -8
  77. luminarycloud/params/enum/_enum_wrappers.py +562 -30
  78. luminarycloud/params/simulation/adaptive_mesh_refinement_.py +4 -0
  79. luminarycloud/params/simulation/material/material_solid_.py +15 -1
  80. luminarycloud/params/simulation/physics/__init__.py +0 -1
  81. luminarycloud/params/simulation/physics/periodic_pair_.py +12 -31
  82. luminarycloud/physics_ai/architectures.py +58 -0
  83. luminarycloud/physics_ai/inference.py +13 -13
  84. luminarycloud/physics_ai/solution.py +3 -1
  85. luminarycloud/physics_ai/training_jobs.py +37 -0
  86. luminarycloud/pipelines/__init__.py +11 -3
  87. luminarycloud/pipelines/api.py +248 -16
  88. luminarycloud/pipelines/arguments.py +15 -0
  89. luminarycloud/pipelines/core.py +113 -96
  90. luminarycloud/pipelines/{operators.py → stages.py} +96 -39
  91. luminarycloud/project.py +15 -47
  92. luminarycloud/simulation.py +69 -5
  93. luminarycloud/simulation_param.py +0 -9
  94. luminarycloud/simulation_template.py +2 -1
  95. luminarycloud/types/matrix3.py +12 -0
  96. luminarycloud/vis/__init__.py +17 -0
  97. luminarycloud/vis/data_extraction.py +20 -4
  98. luminarycloud/vis/interactive_report.py +110 -0
  99. luminarycloud/vis/interactive_scene.py +29 -2
  100. luminarycloud/vis/report.py +252 -0
  101. luminarycloud/vis/visualization.py +127 -5
  102. luminarycloud/volume_selection.py +132 -69
  103. {luminarycloud-0.19.0.dist-info → luminarycloud-0.22.0.dist-info}/METADATA +1 -1
  104. {luminarycloud-0.19.0.dist-info → luminarycloud-0.22.0.dist-info}/RECORD +105 -97
  105. luminarycloud/params/simulation/physics/periodic_pair/__init__.py +0 -2
  106. luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/__init__.py +0 -2
  107. luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/rotational_periodicity_.py +0 -31
  108. luminarycloud/params/simulation/physics/periodic_pair/periodicity_type/translational_periodicity_.py +0 -29
  109. luminarycloud/params/simulation/physics/periodic_pair/periodicity_type_.py +0 -25
  110. {luminarycloud-0.19.0.dist-info → luminarycloud-0.22.0.dist-info}/WHEEL +0 -0
@@ -22,7 +22,7 @@ from luminarycloud._proto.lcn import lcmesh_pb2 as proto_dot_lcn_dot_lcmesh__pb2
22
22
  from luminarycloud._proto.ratelimit import ratelimit_pb2 as proto_dot_ratelimit_dot_ratelimit__pb2
23
23
 
24
24
 
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
+ 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\"\x86\x04\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\x12O\n\x08versions\x18\x0b \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\"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\"\xd2\x01\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\x12\x0c\n\x04name\x18\x04 \x01(\t\x12\x38\n\x0bkernel_type\x18\x05 \x01(\x0e\x32#.luminary.proto.geometry.KernelType\x12%\n\x1dnamed_variable_set_version_id\x18\x06 \x01(\t\"\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\"O\n\x12GetGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12$\n\x1cinclude_interesting_versions\x18\x02 \x01(\x08\"_\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\"Q\n\x15ListGeometriesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12$\n\x1cinclude_interesting_versions\x18\x02 \x01(\x08\"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\"\x94\x01\n\x1bListGeometryVersionsRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x12\n\nunfiltered\x18\x02 \x01(\x08\x12\x16\n\tpage_size\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x17\n\npage_token\x18\x04 \x01(\tH\x01\x88\x01\x01\x42\x0c\n\n_page_sizeB\r\n\x0b_page_token\"\xa6\x01\n\x1cListGeometryVersionsResponse\x12X\n\x11geometry_versions\x18\x01 \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0btotal_count\x18\x03 \x01(\x05\"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\"I\n\x1cUpdateGeometryVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"x\n\x1dUpdateGeometryVersionResponse\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\x92*\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\xe4\x01\n\x14ListGeometryVersions\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryVersionsRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryVersionsResponse\"5\x82\xd3\xe4\x93\x02%\x12#/v0/geometry/{geometry_id}/versions\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\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\xe7\x01\n\x15UpdateGeometryVersion\x12J.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryVersionRequest\x1aK.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryVersionResponse\"5\x82\xd3\xe4\x93\x02/2*/v0/geometry_version/{geometry_version_id}:\x01*\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')
26
26
 
27
27
 
28
28
 
@@ -82,8 +82,12 @@ _GETTAGSRESPONSE = DESCRIPTOR.message_types_by_name['GetTagsResponse']
82
82
  _TAG = DESCRIPTOR.message_types_by_name['Tag']
83
83
  _LISTTAGSREQUEST = DESCRIPTOR.message_types_by_name['ListTagsRequest']
84
84
  _LISTTAGSRESPONSE = DESCRIPTOR.message_types_by_name['ListTagsResponse']
85
+ _LISTGEOMETRYVERSIONSREQUEST = DESCRIPTOR.message_types_by_name['ListGeometryVersionsRequest']
86
+ _LISTGEOMETRYVERSIONSRESPONSE = DESCRIPTOR.message_types_by_name['ListGeometryVersionsResponse']
85
87
  _GETGEOMETRYVERSIONREQUEST = DESCRIPTOR.message_types_by_name['GetGeometryVersionRequest']
86
88
  _GETGEOMETRYVERSIONRESPONSE = DESCRIPTOR.message_types_by_name['GetGeometryVersionResponse']
89
+ _UPDATEGEOMETRYVERSIONREQUEST = DESCRIPTOR.message_types_by_name['UpdateGeometryVersionRequest']
90
+ _UPDATEGEOMETRYVERSIONRESPONSE = DESCRIPTOR.message_types_by_name['UpdateGeometryVersionResponse']
87
91
  _GETSDKCODEREQUEST = DESCRIPTOR.message_types_by_name['GetSdkCodeRequest']
88
92
  _GETSDKCODERESPONSE = DESCRIPTOR.message_types_by_name['GetSdkCodeResponse']
89
93
  _GEOMETRY_STATUS = _GEOMETRY.enum_types_by_name['Status']
@@ -489,6 +493,20 @@ ListTagsResponse = _reflection.GeneratedProtocolMessageType('ListTagsResponse',
489
493
  })
490
494
  _sym_db.RegisterMessage(ListTagsResponse)
491
495
 
496
+ ListGeometryVersionsRequest = _reflection.GeneratedProtocolMessageType('ListGeometryVersionsRequest', (_message.Message,), {
497
+ 'DESCRIPTOR' : _LISTGEOMETRYVERSIONSREQUEST,
498
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
499
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.ListGeometryVersionsRequest)
500
+ })
501
+ _sym_db.RegisterMessage(ListGeometryVersionsRequest)
502
+
503
+ ListGeometryVersionsResponse = _reflection.GeneratedProtocolMessageType('ListGeometryVersionsResponse', (_message.Message,), {
504
+ 'DESCRIPTOR' : _LISTGEOMETRYVERSIONSRESPONSE,
505
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
506
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.ListGeometryVersionsResponse)
507
+ })
508
+ _sym_db.RegisterMessage(ListGeometryVersionsResponse)
509
+
492
510
  GetGeometryVersionRequest = _reflection.GeneratedProtocolMessageType('GetGeometryVersionRequest', (_message.Message,), {
493
511
  'DESCRIPTOR' : _GETGEOMETRYVERSIONREQUEST,
494
512
  '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
@@ -503,6 +521,20 @@ GetGeometryVersionResponse = _reflection.GeneratedProtocolMessageType('GetGeomet
503
521
  })
504
522
  _sym_db.RegisterMessage(GetGeometryVersionResponse)
505
523
 
524
+ UpdateGeometryVersionRequest = _reflection.GeneratedProtocolMessageType('UpdateGeometryVersionRequest', (_message.Message,), {
525
+ 'DESCRIPTOR' : _UPDATEGEOMETRYVERSIONREQUEST,
526
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
527
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryVersionRequest)
528
+ })
529
+ _sym_db.RegisterMessage(UpdateGeometryVersionRequest)
530
+
531
+ UpdateGeometryVersionResponse = _reflection.GeneratedProtocolMessageType('UpdateGeometryVersionResponse', (_message.Message,), {
532
+ 'DESCRIPTOR' : _UPDATEGEOMETRYVERSIONRESPONSE,
533
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
534
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryVersionResponse)
535
+ })
536
+ _sym_db.RegisterMessage(UpdateGeometryVersionResponse)
537
+
506
538
  GetSdkCodeRequest = _reflection.GeneratedProtocolMessageType('GetSdkCodeRequest', (_message.Message,), {
507
539
  'DESCRIPTOR' : _GETSDKCODEREQUEST,
508
540
  '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
@@ -558,132 +590,144 @@ if _descriptor._USE_C_DESCRIPTORS == False:
558
590
  _GEOMETRYSERVICE.methods_by_name['KeepAlive']._serialized_options = b'\212\265\030\006\010\024\022\002\010\001'
559
591
  _GEOMETRYSERVICE.methods_by_name['ListTags']._options = None
560
592
  _GEOMETRYSERVICE.methods_by_name['ListTags']._serialized_options = b'\202\323\344\223\002T\022\037/v0/geometry/{geometry_id}/tagsZ1\022//v0/geometry_version/{geometry_version_id}/tags'
593
+ _GEOMETRYSERVICE.methods_by_name['ListGeometryVersions']._options = None
594
+ _GEOMETRYSERVICE.methods_by_name['ListGeometryVersions']._serialized_options = b'\202\323\344\223\002%\022#/v0/geometry/{geometry_id}/versions\212\265\030\006\010\024\022\002\010\001'
561
595
  _GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._options = None
562
596
  _GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._serialized_options = b'\202\323\344\223\002,\022*/v0/geometry_version/{geometry_version_id}'
597
+ _GEOMETRYSERVICE.methods_by_name['UpdateGeometryVersion']._options = None
598
+ _GEOMETRYSERVICE.methods_by_name['UpdateGeometryVersion']._serialized_options = b'\202\323\344\223\002/2*/v0/geometry_version/{geometry_version_id}:\001*'
563
599
  _GEOMETRYSERVICE.methods_by_name['GetSdkCode']._options = None
564
600
  _GEOMETRYSERVICE.methods_by_name['GetSdkCode']._serialized_options = b'\202\323\344\223\002%\022#/v0/geometry/{geometry_id}/sdk-code'
565
601
  _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
602
+ _GEOMETRY._serialized_end=859
603
+ _GEOMETRY_STATUS._serialized_start=723
604
+ _GEOMETRY_STATUS._serialized_end=842
605
+ _GEOMETRYVERSION._serialized_start=862
606
+ _GEOMETRYVERSION._serialized_end=1072
607
+ _TESSELLATIONDATA._serialized_start=1075
608
+ _TESSELLATIONDATA._serialized_end=1335
609
+ _GETGEOMETRYREQUEST._serialized_start=1337
610
+ _GETGEOMETRYREQUEST._serialized_end=1416
611
+ _GETGEOMETRYRESPONSE._serialized_start=1418
612
+ _GETGEOMETRYRESPONSE._serialized_end=1513
613
+ _LISTGEOMETRYFEATURESREQUEST._serialized_start=1515
614
+ _LISTGEOMETRYFEATURESREQUEST._serialized_end=1620
615
+ _LISTGEOMETRYFEATURESRESPONSE._serialized_start=1622
616
+ _LISTGEOMETRYFEATURESRESPONSE._serialized_end=1704
617
+ _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=1706
618
+ _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=1816
619
+ _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=1818
620
+ _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=1918
621
+ _LISTGEOMETRYENTITIESREQUEST._serialized_start=1920
622
+ _LISTGEOMETRYENTITIESREQUEST._serialized_end=2025
623
+ _LISTGEOMETRYENTITIESRESPONSE._serialized_start=2027
624
+ _LISTGEOMETRYENTITIESRESPONSE._serialized_end=2150
625
+ _LISTGEOMETRIESREQUEST._serialized_start=2152
626
+ _LISTGEOMETRIESREQUEST._serialized_end=2233
627
+ _LISTGEOMETRIESRESPONSE._serialized_start=2235
628
+ _LISTGEOMETRIESRESPONSE._serialized_end=2335
629
+ _SUBSCRIBEGEOMETRYREQUEST._serialized_start=2337
630
+ _SUBSCRIBEGEOMETRYREQUEST._serialized_end=2410
631
+ _GEOMETRYHISTORY._serialized_start=2413
632
+ _GEOMETRYHISTORY._serialized_end=2701
633
+ _GEOMETRYHISTORY_HISTORYENTRY._serialized_start=2532
634
+ _GEOMETRYHISTORY_HISTORYENTRY._serialized_end=2701
635
+ _SUBSCRIBEGEOMETRYRESPONSE._serialized_start=2704
636
+ _SUBSCRIBEGEOMETRYRESPONSE._serialized_end=4666
637
+ _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=3025
638
+ _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=3548
639
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=3551
640
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=4650
641
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=4438
642
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=4475
643
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=4477
644
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=4518
645
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=4520
646
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=4530
647
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=4532
648
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=4543
649
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=4545
650
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=4580
651
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=4582
652
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=4617
653
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=4619
654
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=4633
655
+ _MODIFYGEOMETRYREQUEST._serialized_start=4668
656
+ _MODIFYGEOMETRYREQUEST._serialized_end=4793
657
+ _MODIFYGEOMETRYRESPONSE._serialized_start=4796
658
+ _MODIFYGEOMETRYRESPONSE._serialized_end=4987
659
+ _CREATEGEOMETRYREQUEST._serialized_start=4990
660
+ _CREATEGEOMETRYREQUEST._serialized_end=5205
661
+ _CREATEGEOMETRYRESPONSE._serialized_start=5207
662
+ _CREATEGEOMETRYRESPONSE._serialized_end=5305
663
+ _UPDATEGEOMETRYREQUEST._serialized_start=5307
664
+ _UPDATEGEOMETRYREQUEST._serialized_end=5365
665
+ _UPDATEGEOMETRYRESPONSE._serialized_start=5367
666
+ _UPDATEGEOMETRYRESPONSE._serialized_end=5465
667
+ _COPYGEOMETRYREQUEST._serialized_start=5467
668
+ _COPYGEOMETRYREQUEST._serialized_end=5543
669
+ _COPYGEOMETRYRESPONSE._serialized_start=5545
670
+ _COPYGEOMETRYRESPONSE._serialized_end=5641
671
+ _COPYGEOMETRYFROMVERSIONREQUEST._serialized_start=5643
672
+ _COPYGEOMETRYFROMVERSIONREQUEST._serialized_end=5738
673
+ _COPYGEOMETRYFROMVERSIONRESPONSE._serialized_start=5740
674
+ _COPYGEOMETRYFROMVERSIONRESPONSE._serialized_end=5847
675
+ _DELETEGEOMETRYREQUEST._serialized_start=5849
676
+ _DELETEGEOMETRYREQUEST._serialized_end=5893
677
+ _DELETEGEOMETRYRESPONSE._serialized_start=5895
678
+ _DELETEGEOMETRYRESPONSE._serialized_end=5919
679
+ _CHECKGEOMETRYREQUEST._serialized_start=5921
680
+ _CHECKGEOMETRYREQUEST._serialized_end=5993
681
+ _CHECKGEOMETRYRESPONSE._serialized_start=5995
682
+ _CHECKGEOMETRYRESPONSE._serialized_end=6046
683
+ _GETCHECKGEOMETRYRESPONSE._serialized_start=6048
684
+ _GETCHECKGEOMETRYRESPONSE._serialized_end=6120
685
+ _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=6122
686
+ _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=6205
687
+ _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=6207
688
+ _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=6265
689
+ _LATESTTESSELLATIONREQUEST._serialized_start=6267
690
+ _LATESTTESSELLATIONREQUEST._serialized_end=6315
691
+ _LATESTTESSELLATIONRESPONSE._serialized_start=6317
692
+ _LATESTTESSELLATIONRESPONSE._serialized_end=6370
693
+ _KEEPALIVEREQUEST._serialized_start=6372
694
+ _KEEPALIVEREQUEST._serialized_end=6411
695
+ _KEEPALIVERESPONSE._serialized_start=6413
696
+ _KEEPALIVERESPONSE._serialized_end=6432
697
+ _PANICREQUEST._serialized_start=6434
698
+ _PANICREQUEST._serialized_end=6448
699
+ _PANICRESPONSE._serialized_start=6450
700
+ _PANICRESPONSE._serialized_end=6465
701
+ _STOPWORKERREQUEST._serialized_start=6467
702
+ _STOPWORKERREQUEST._serialized_end=6507
703
+ _STOPWORKERRESPONSE._serialized_start=6509
704
+ _STOPWORKERRESPONSE._serialized_end=6529
705
+ _GETTAGSREQUEST._serialized_start=6531
706
+ _GETTAGSREQUEST._serialized_end=6597
707
+ _GETTAGSRESPONSE._serialized_start=6599
708
+ _GETTAGSRESPONSE._serialized_end=6661
709
+ _TAG._serialized_start=6663
710
+ _TAG._serialized_end=6745
711
+ _LISTTAGSREQUEST._serialized_start=6747
712
+ _LISTTAGSREQUEST._serialized_end=6840
713
+ _LISTTAGSRESPONSE._serialized_start=6842
714
+ _LISTTAGSRESPONSE._serialized_end=6925
715
+ _LISTGEOMETRYVERSIONSREQUEST._serialized_start=6928
716
+ _LISTGEOMETRYVERSIONSREQUEST._serialized_end=7076
717
+ _LISTGEOMETRYVERSIONSRESPONSE._serialized_start=7079
718
+ _LISTGEOMETRYVERSIONSRESPONSE._serialized_end=7245
719
+ _GETGEOMETRYVERSIONREQUEST._serialized_start=7247
720
+ _GETGEOMETRYVERSIONREQUEST._serialized_end=7303
721
+ _GETGEOMETRYVERSIONRESPONSE._serialized_start=7305
722
+ _GETGEOMETRYVERSIONRESPONSE._serialized_end=7422
723
+ _UPDATEGEOMETRYVERSIONREQUEST._serialized_start=7424
724
+ _UPDATEGEOMETRYVERSIONREQUEST._serialized_end=7497
725
+ _UPDATEGEOMETRYVERSIONRESPONSE._serialized_start=7499
726
+ _UPDATEGEOMETRYVERSIONRESPONSE._serialized_end=7619
727
+ _GETSDKCODEREQUEST._serialized_start=7621
728
+ _GETSDKCODEREQUEST._serialized_end=7690
729
+ _GETSDKCODERESPONSE._serialized_start=7692
730
+ _GETSDKCODERESPONSE._serialized_end=7730
731
+ _GEOMETRYSERVICE._serialized_start=7733
732
+ _GEOMETRYSERVICE._serialized_end=13127
689
733
  # @@protoc_insertion_point(module_scope)
@@ -72,6 +72,7 @@ class Geometry(google.protobuf.message.Message):
72
72
  USES_TAGS_FIELD_NUMBER: builtins.int
73
73
  PROJECT_ID_FIELD_NUMBER: builtins.int
74
74
  STATUS_FIELD_NUMBER: builtins.int
75
+ VERSIONS_FIELD_NUMBER: builtins.int
75
76
  id: builtins.str
76
77
  name: builtins.str
77
78
  @property
@@ -83,6 +84,9 @@ class Geometry(google.protobuf.message.Message):
83
84
  uses_tags: builtins.bool
84
85
  project_id: builtins.str
85
86
  status: global___Geometry.Status.ValueType
87
+ @property
88
+ def versions(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___GeometryVersion]:
89
+ """Versions are not populated by default, but can be included by request."""
86
90
  def __init__(
87
91
  self,
88
92
  *,
@@ -95,9 +99,10 @@ class Geometry(google.protobuf.message.Message):
95
99
  uses_tags: builtins.bool = ...,
96
100
  project_id: builtins.str = ...,
97
101
  status: global___Geometry.Status.ValueType | None = ...,
102
+ versions: collections.abc.Iterable[global___GeometryVersion] | None = ...,
98
103
  ) -> None: ...
99
104
  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: ...
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: ...
105
+ 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", "versions", b"versions"]) -> None: ...
101
106
  def WhichOneof(self, oneof_group: typing_extensions.Literal["_status", b"_status"]) -> typing_extensions.Literal["status"] | None: ...
102
107
 
103
108
  global___Geometry = Geometry
@@ -108,19 +113,28 @@ class GeometryVersion(google.protobuf.message.Message):
108
113
  ID_FIELD_NUMBER: builtins.int
109
114
  GEOMETRY_ID_FIELD_NUMBER: builtins.int
110
115
  CREATE_TIME_FIELD_NUMBER: builtins.int
116
+ NAME_FIELD_NUMBER: builtins.int
117
+ KERNEL_TYPE_FIELD_NUMBER: builtins.int
118
+ NAMED_VARIABLE_SET_VERSION_ID_FIELD_NUMBER: builtins.int
111
119
  id: builtins.str
112
120
  geometry_id: builtins.str
113
121
  @property
114
122
  def create_time(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
123
+ name: builtins.str
124
+ kernel_type: luminarycloud._proto.geometry.geometry_pb2.KernelType.ValueType
125
+ named_variable_set_version_id: builtins.str
115
126
  def __init__(
116
127
  self,
117
128
  *,
118
129
  id: builtins.str = ...,
119
130
  geometry_id: builtins.str = ...,
120
131
  create_time: google.protobuf.timestamp_pb2.Timestamp | None = ...,
132
+ name: builtins.str = ...,
133
+ kernel_type: luminarycloud._proto.geometry.geometry_pb2.KernelType.ValueType = ...,
134
+ named_variable_set_version_id: builtins.str = ...,
121
135
  ) -> None: ...
122
136
  def HasField(self, field_name: typing_extensions.Literal["create_time", b"create_time"]) -> builtins.bool: ...
123
- def ClearField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "geometry_id", b"geometry_id", "id", b"id"]) -> None: ...
137
+ def ClearField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "geometry_id", b"geometry_id", "id", b"id", "kernel_type", b"kernel_type", "name", b"name", "named_variable_set_version_id", b"named_variable_set_version_id"]) -> None: ...
124
138
 
125
139
  global___GeometryVersion = GeometryVersion
126
140
 
@@ -177,13 +191,20 @@ class GetGeometryRequest(google.protobuf.message.Message):
177
191
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
178
192
 
179
193
  GEOMETRY_ID_FIELD_NUMBER: builtins.int
194
+ INCLUDE_INTERESTING_VERSIONS_FIELD_NUMBER: builtins.int
180
195
  geometry_id: builtins.str
196
+ include_interesting_versions: builtins.bool
197
+ """Optional. By default, versions are not included for the geometry. If true, the server will
198
+ include a subset of the geometry's versions, specifically those that are named OR have an
199
+ associated Mesh OR are the latest version of the geometry.
200
+ """
181
201
  def __init__(
182
202
  self,
183
203
  *,
184
204
  geometry_id: builtins.str = ...,
205
+ include_interesting_versions: builtins.bool = ...,
185
206
  ) -> None: ...
186
- def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id"]) -> None: ...
207
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "include_interesting_versions", b"include_interesting_versions"]) -> None: ...
187
208
 
188
209
  global___GetGeometryRequest = GetGeometryRequest
189
210
 
@@ -321,13 +342,20 @@ class ListGeometriesRequest(google.protobuf.message.Message):
321
342
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
322
343
 
323
344
  PROJECT_ID_FIELD_NUMBER: builtins.int
345
+ INCLUDE_INTERESTING_VERSIONS_FIELD_NUMBER: builtins.int
324
346
  project_id: builtins.str
347
+ include_interesting_versions: builtins.bool
348
+ """Optional. By default, versions are not included for the geometries. If true, the server will
349
+ include a subset of the gemoetries' versions, specifically those that are named OR have an
350
+ associated Mesh OR are the latest version of their geometry.
351
+ """
325
352
  def __init__(
326
353
  self,
327
354
  *,
328
355
  project_id: builtins.str = ...,
356
+ include_interesting_versions: builtins.bool = ...,
329
357
  ) -> None: ...
330
- def ClearField(self, field_name: typing_extensions.Literal["project_id", b"project_id"]) -> None: ...
358
+ def ClearField(self, field_name: typing_extensions.Literal["include_interesting_versions", b"include_interesting_versions", "project_id", b"project_id"]) -> None: ...
331
359
 
332
360
  global___ListGeometriesRequest = ListGeometriesRequest
333
361
 
@@ -1202,6 +1230,74 @@ class ListTagsResponse(google.protobuf.message.Message):
1202
1230
 
1203
1231
  global___ListTagsResponse = ListTagsResponse
1204
1232
 
1233
+ class ListGeometryVersionsRequest(google.protobuf.message.Message):
1234
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1235
+
1236
+ GEOMETRY_ID_FIELD_NUMBER: builtins.int
1237
+ UNFILTERED_FIELD_NUMBER: builtins.int
1238
+ PAGE_SIZE_FIELD_NUMBER: builtins.int
1239
+ PAGE_TOKEN_FIELD_NUMBER: builtins.int
1240
+ geometry_id: builtins.str
1241
+ """Required. The ID of the geometry to list versions for."""
1242
+ unfiltered: builtins.bool
1243
+ """Optional. By default, the server only returns versions that are named OR have an associated
1244
+ Mesh OR are the latest version of the geometry. If `unfiltered` is true, the server returns all
1245
+ versions.
1246
+ """
1247
+ page_size: builtins.int
1248
+ """Optional. The maximum number of versions to return. The service may return fewer than this
1249
+ value. Default is 50, max is 500. Values above 500 will be clipped to 500.
1250
+ """
1251
+ page_token: builtins.str
1252
+ """A page token, received from a previous `ListGeometryVersions` call. Provide this to retrieve the
1253
+ subsequent page.
1254
+
1255
+ When paginating, all other parameters provided to `ListGeometryVersions` must match the call that
1256
+ provided the page token.
1257
+ """
1258
+ def __init__(
1259
+ self,
1260
+ *,
1261
+ geometry_id: builtins.str = ...,
1262
+ unfiltered: builtins.bool = ...,
1263
+ page_size: builtins.int | None = ...,
1264
+ page_token: builtins.str | None = ...,
1265
+ ) -> None: ...
1266
+ def HasField(self, field_name: typing_extensions.Literal["_page_size", b"_page_size", "_page_token", b"_page_token", "page_size", b"page_size", "page_token", b"page_token"]) -> builtins.bool: ...
1267
+ def ClearField(self, field_name: typing_extensions.Literal["_page_size", b"_page_size", "_page_token", b"_page_token", "geometry_id", b"geometry_id", "page_size", b"page_size", "page_token", b"page_token", "unfiltered", b"unfiltered"]) -> None: ...
1268
+ @typing.overload
1269
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["_page_size", b"_page_size"]) -> typing_extensions.Literal["page_size"] | None: ...
1270
+ @typing.overload
1271
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["_page_token", b"_page_token"]) -> typing_extensions.Literal["page_token"] | None: ...
1272
+
1273
+ global___ListGeometryVersionsRequest = ListGeometryVersionsRequest
1274
+
1275
+ class ListGeometryVersionsResponse(google.protobuf.message.Message):
1276
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1277
+
1278
+ GEOMETRY_VERSIONS_FIELD_NUMBER: builtins.int
1279
+ NEXT_PAGE_TOKEN_FIELD_NUMBER: builtins.int
1280
+ TOTAL_COUNT_FIELD_NUMBER: builtins.int
1281
+ @property
1282
+ def geometry_versions(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___GeometryVersion]:
1283
+ """Versions ordered by creation time, oldest first."""
1284
+ next_page_token: builtins.str
1285
+ """A token that can be used to retrieve the next page of results.
1286
+ If empty, there are no more results.
1287
+ """
1288
+ total_count: builtins.int
1289
+ """The total number of versions that match the request parameters."""
1290
+ def __init__(
1291
+ self,
1292
+ *,
1293
+ geometry_versions: collections.abc.Iterable[global___GeometryVersion] | None = ...,
1294
+ next_page_token: builtins.str = ...,
1295
+ total_count: builtins.int = ...,
1296
+ ) -> None: ...
1297
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_versions", b"geometry_versions", "next_page_token", b"next_page_token", "total_count", b"total_count"]) -> None: ...
1298
+
1299
+ global___ListGeometryVersionsResponse = ListGeometryVersionsResponse
1300
+
1205
1301
  class GetGeometryVersionRequest(google.protobuf.message.Message):
1206
1302
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
1207
1303
 
@@ -1232,6 +1328,39 @@ class GetGeometryVersionResponse(google.protobuf.message.Message):
1232
1328
 
1233
1329
  global___GetGeometryVersionResponse = GetGeometryVersionResponse
1234
1330
 
1331
+ class UpdateGeometryVersionRequest(google.protobuf.message.Message):
1332
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1333
+
1334
+ GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
1335
+ NAME_FIELD_NUMBER: builtins.int
1336
+ geometry_version_id: builtins.str
1337
+ name: builtins.str
1338
+ def __init__(
1339
+ self,
1340
+ *,
1341
+ geometry_version_id: builtins.str = ...,
1342
+ name: builtins.str = ...,
1343
+ ) -> None: ...
1344
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_version_id", b"geometry_version_id", "name", b"name"]) -> None: ...
1345
+
1346
+ global___UpdateGeometryVersionRequest = UpdateGeometryVersionRequest
1347
+
1348
+ class UpdateGeometryVersionResponse(google.protobuf.message.Message):
1349
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
1350
+
1351
+ GEOMETRY_VERSION_FIELD_NUMBER: builtins.int
1352
+ @property
1353
+ def geometry_version(self) -> global___GeometryVersion: ...
1354
+ def __init__(
1355
+ self,
1356
+ *,
1357
+ geometry_version: global___GeometryVersion | None = ...,
1358
+ ) -> None: ...
1359
+ def HasField(self, field_name: typing_extensions.Literal["geometry_version", b"geometry_version"]) -> builtins.bool: ...
1360
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_version", b"geometry_version"]) -> None: ...
1361
+
1362
+ global___UpdateGeometryVersionResponse = UpdateGeometryVersionResponse
1363
+
1235
1364
  class GetSdkCodeRequest(google.protobuf.message.Message):
1236
1365
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
1237
1366