luminarycloud 0.10.2__py3-none-any.whl → 0.12.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 (72) hide show
  1. luminarycloud/__init__.py +5 -1
  2. luminarycloud/_client/client.py +6 -0
  3. luminarycloud/_client/tracing.py +10 -2
  4. luminarycloud/_helpers/create_geometry.py +23 -1
  5. luminarycloud/_helpers/warnings/deprecated.py +39 -15
  6. luminarycloud/_helpers/warnings/experimental.py +28 -4
  7. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +139 -102
  8. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +73 -2
  9. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +103 -0
  10. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +37 -0
  11. luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2.py +131 -0
  12. luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2.pyi +186 -0
  13. luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2_grpc.py +207 -0
  14. luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2_grpc.pyi +79 -0
  15. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +58 -100
  16. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +19 -97
  17. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +505 -0
  18. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +1146 -0
  19. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.py +198 -0
  20. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.pyi +64 -0
  21. luminarycloud/_proto/client/simulation_pb2.py +253 -253
  22. luminarycloud/_proto/client/simulation_pb2.pyi +5 -1
  23. luminarycloud/_proto/frontend/output/output_pb2.py +266 -0
  24. luminarycloud/_proto/frontend/output/output_pb2.pyi +607 -0
  25. luminarycloud/_proto/quantity/quantity_pb2.py +13 -13
  26. luminarycloud/enum/__init__.py +22 -5
  27. luminarycloud/enum/calculation_type.py +6 -1
  28. luminarycloud/enum/force_direction_type.py +20 -0
  29. luminarycloud/enum/output_node_includes.py +29 -0
  30. luminarycloud/enum/quantity_type.py +118 -45
  31. luminarycloud/enum/residual_type.py +23 -0
  32. luminarycloud/enum/space_averaging_type.py +21 -0
  33. luminarycloud/enum/vector3_component.py +20 -0
  34. luminarycloud/enum/vis_enums.py +180 -0
  35. luminarycloud/enum/volume_reduction_type.py +21 -0
  36. luminarycloud/geometry.py +161 -5
  37. luminarycloud/meshing/mesh_adaptation_params.py +2 -0
  38. luminarycloud/meshing/mesh_generation_params.py +29 -16
  39. luminarycloud/meshing/sizing_strategy/__init__.py +1 -0
  40. luminarycloud/meshing/sizing_strategy/sizing_strategies.py +20 -0
  41. luminarycloud/outputs/__init__.py +18 -0
  42. luminarycloud/outputs/output_nodes.py +603 -0
  43. luminarycloud/params/geometry/shapes.py +3 -4
  44. luminarycloud/params/param_wrappers/simulation_param/__init__.py +0 -1
  45. luminarycloud/params/param_wrappers/simulation_param/monitor_plane_.py +2 -4
  46. luminarycloud/params/param_wrappers/simulation_param/output_.py +4 -0
  47. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/adjoint_controls_fluid_.py +2 -4
  48. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/inlet_.py +1 -2
  49. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/wall_.py +2 -4
  50. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/turbulence/komega_sst_.py +1 -2
  51. luminarycloud/params/param_wrappers/simulation_param/physics/fluid_.py +20 -0
  52. luminarycloud/params/param_wrappers/simulation_param/physics/heat/boundary_conditions_heat_.py +1 -2
  53. luminarycloud/params/param_wrappers/simulation_param/physics/heat/heat_source_.py +1 -2
  54. luminarycloud/params/param_wrappers/simulation_param_.py +0 -7
  55. luminarycloud/project.py +46 -0
  56. luminarycloud/reference_values.py +27 -12
  57. luminarycloud/simulation.py +9 -3
  58. luminarycloud/simulation_param.py +66 -4
  59. luminarycloud/simulation_template.py +3 -2
  60. luminarycloud/types/__init__.py +1 -0
  61. luminarycloud/types/ids.py +1 -0
  62. luminarycloud/types/vector3.py +23 -2
  63. luminarycloud/vis/__init__.py +31 -0
  64. luminarycloud/vis/display.py +130 -0
  65. luminarycloud/vis/filters.py +360 -0
  66. luminarycloud/vis/util.py +46 -0
  67. luminarycloud/vis/visualization.py +547 -0
  68. {luminarycloud-0.10.2.dist-info → luminarycloud-0.12.0.dist-info}/METADATA +1 -1
  69. {luminarycloud-0.10.2.dist-info → luminarycloud-0.12.0.dist-info}/RECORD +71 -48
  70. {luminarycloud-0.10.2.dist-info → luminarycloud-0.12.0.dist-info}/WHEEL +1 -1
  71. luminarycloud/params/param_wrappers/simulation_param/reference_values_.py +0 -68
  72. {luminarycloud-0.10.2.dist-info → luminarycloud-0.12.0.dist-info}/top_level.txt +0 -0
luminarycloud/__init__.py CHANGED
@@ -7,8 +7,10 @@ from . import (
7
7
  _patch as _patch,
8
8
  exceptions as exceptions,
9
9
  meshing as meshing,
10
+ outputs as outputs,
10
11
  params as params,
11
12
  types as types,
13
+ vis as vis,
12
14
  )
13
15
 
14
16
  from ._client import (
@@ -50,7 +52,9 @@ from .solution import (
50
52
  from .reference_values import (
51
53
  ReferenceValues as ReferenceValues,
52
54
  )
53
-
55
+ from .volume_selection import (
56
+ VolumeSelection as VolumeSelection,
57
+ )
54
58
 
55
59
  # Log SDK version number
56
60
  logger = _logging.getLogger("luminarycloud")
@@ -11,6 +11,7 @@ import grpc
11
11
  from .._auth import Auth0Client
12
12
  from .._proto.api.v0.luminarycloud.geometry.geometry_pb2_grpc import GeometryServiceStub
13
13
  from .._proto.api.v0.luminarycloud.mesh.mesh_pb2_grpc import MeshServiceStub
14
+ from .._proto.api.v0.luminarycloud.output_node.output_node_pb2_grpc import OutputNodeServiceStub
14
15
  from .._proto.api.v0.luminarycloud.project.project_pb2_grpc import ProjectServiceStub
15
16
  from .._proto.api.v0.luminarycloud.simulation.simulation_pb2_grpc import (
16
17
  SimulationServiceStub,
@@ -20,6 +21,7 @@ from .._proto.api.v0.luminarycloud.simulation_template.simulation_template_pb2_g
20
21
  )
21
22
  from .._proto.api.v0.luminarycloud.solution.solution_pb2_grpc import SolutionServiceStub
22
23
  from .._proto.api.v0.luminarycloud.upload.upload_pb2_grpc import UploadServiceStub
24
+ from .._proto.api.v0.luminarycloud.vis.vis_pb2_grpc import VisAPIServiceStub
23
25
  from .authentication_plugin import AuthenticationPlugin
24
26
  from .config import LC_DOMAIN, LC_API_KEY
25
27
  from .logging_interceptor import LoggingInterceptor
@@ -38,6 +40,8 @@ class Client(
38
40
  GeometryServiceStub,
39
41
  SolutionServiceStub,
40
42
  UploadServiceStub,
43
+ VisAPIServiceStub,
44
+ OutputNodeServiceStub,
41
45
  ):
42
46
  """
43
47
  Creates a Luminary API client.
@@ -177,6 +181,8 @@ class Client(
177
181
  UploadServiceStub.__init__(self, self._channel)
178
182
  SolutionServiceStub.__init__(self, self._channel)
179
183
  SimulationTemplateServiceStub.__init__(self, self._channel)
184
+ VisAPIServiceStub.__init__(self, self._channel)
185
+ OutputNodeServiceStub.__init__(self, self._channel)
180
186
 
181
187
  for name, value in self.__dict__.items():
182
188
  if isinstance(value, grpc.UnaryUnaryMultiCallable):
@@ -64,7 +64,11 @@ class Auth0SpanExporter(OTLPSpanExporter):
64
64
  "authorization": "Bearer " + token,
65
65
  }
66
66
  self._session.headers.update(headers)
67
- return OTLPSpanExporter.export(self, spans)
67
+ try:
68
+ return OTLPSpanExporter.export(self, spans)
69
+ except Exception as e:
70
+ logger.debug(f"Failed to export traces: {e}")
71
+ return SpanExportResult.FAILURE
68
72
 
69
73
 
70
74
  class ApiKeySpanExporter(OTLPSpanExporter):
@@ -88,7 +92,11 @@ class ApiKeySpanExporter(OTLPSpanExporter):
88
92
  "x-api-key": self.api_key,
89
93
  }
90
94
  self._session.headers.update(headers)
91
- return OTLPSpanExporter.export(self, spans)
95
+ try:
96
+ return OTLPSpanExporter.export(self, spans)
97
+ except Exception as e:
98
+ logger.debug(f"Failed to export traces: {e}")
99
+ return SpanExportResult.FAILURE
92
100
 
93
101
 
94
102
  def _get_collector_endpoint(primary_domain: str) -> str:
@@ -6,6 +6,9 @@ from .._client import Client
6
6
  from .upload import upload_file
7
7
  from typing import Any, Optional
8
8
  from luminarycloud._helpers import util
9
+ import uuid
10
+ import random
11
+ import time
9
12
 
10
13
  import logging
11
14
 
@@ -43,11 +46,30 @@ def create_geometry(
43
46
  if scaling is None:
44
47
  # default to no scaling
45
48
  scaling = 1.0
49
+
46
50
  create_geo_res: geometrypb.CreateGeometryResponse = client.CreateGeometry(
47
51
  geometrypb.CreateGeometryRequest(
48
- project_id=project_id, name=name, url=finish_res.url, scaling=scaling, wait=wait
52
+ project_id=project_id,
53
+ name=name,
54
+ url=finish_res.url,
55
+ scaling=scaling,
56
+ wait=False,
57
+ request_id=str(uuid.uuid4()),
49
58
  )
50
59
  )
51
60
  geo = create_geo_res.geometry
61
+
62
+ # Prefer polling on the client than waiting on the server (although waiting on the server
63
+ # notifies the clients potentially faster).
64
+ if wait:
65
+ last_version_id = ""
66
+ while not last_version_id:
67
+ jitter = random.uniform(0.5, 1.5)
68
+ time.sleep(2 + jitter)
69
+ req = geometrypb.GetGeometryRequest(geometry_id=create_geo_res.geometry.id)
70
+ res_geo: geometrypb.GetGeometryResponse = client.GetGeometry(req)
71
+ geo = res_geo.geometry
72
+ last_version_id = geo.last_version_id
73
+
52
74
  logger.info(f"created geometry {geo.name} ({geo.id})")
53
75
  return geo
@@ -1,31 +1,55 @@
1
1
  import warnings
2
2
  from functools import wraps
3
- from typing import Callable
3
+ from typing import Callable, TypeVar
4
4
 
5
+ C = TypeVar("C")
5
6
 
6
- def deprecated(reason: str, version: str) -> Callable[[Callable], Callable]:
7
+
8
+ def deprecated(reason: str, version: str) -> Callable[[C], C]:
7
9
  """
8
- Mark a function as deprecated.
10
+ Mark a class or function as deprecated.
9
11
 
10
12
  Parameters
11
13
  ----------
12
14
  reason : str
13
15
  The reason for deprecation.
14
16
  version : str
15
- The version in which the function was deprecated.
17
+ The version in which the class or function was deprecated.
16
18
  """
17
19
 
18
- def decorator(f: Callable) -> Callable:
20
+ def decorator(f: Callable | type[C]) -> Callable | type[C]:
21
+ if isinstance(f, type):
22
+ return _deprecated_class(f, reason, version)
23
+ else:
24
+ return _deprecated_function(f, reason, version)
25
+
26
+ return decorator
19
27
 
20
- @wraps(f)
21
- def new_func(*args, **kwargs):
22
- warnings.warn(
23
- f"{f.__name__} is deprecated since version {version}: {reason}",
24
- category=DeprecationWarning,
25
- stacklevel=2,
26
- )
27
- return f(*args, **kwargs)
28
28
 
29
- return new_func
29
+ def _deprecated_class(cls: type[C], reason: str, version: str) -> type[C]:
30
+ old_init = cls.__init__
30
31
 
31
- return decorator
32
+ @wraps(old_init)
33
+ def new_init(self, *args, **kwargs):
34
+ warnings.warn(
35
+ f"{cls.__name__} is deprecated after version {version}: {reason}",
36
+ category=DeprecationWarning,
37
+ stacklevel=2,
38
+ )
39
+ return old_init(self, *args, **kwargs)
40
+
41
+ cls.__init__ = new_init
42
+ return cls
43
+
44
+
45
+ def _deprecated_function(f: Callable, reason: str, version: str) -> Callable:
46
+ @wraps(f)
47
+ def new_func(*args, **kwargs):
48
+ warnings.warn(
49
+ f"{f.__name__}() is deprecated after version {version}: {reason}",
50
+ category=DeprecationWarning,
51
+ stacklevel=2,
52
+ )
53
+ return f(*args, **kwargs)
54
+
55
+ return new_func
@@ -1,15 +1,39 @@
1
1
  import warnings
2
2
  from functools import wraps
3
- from typing import Callable
3
+ from typing import Callable, TypeVar
4
4
 
5
+ C = TypeVar("C")
5
6
 
6
- def experimental(f: Callable) -> Callable:
7
- """Mark a function as experimental."""
8
7
 
8
+ def experimental(f: Callable | type[C]) -> Callable | type[C]:
9
+ """Mark a function or class as experimental."""
10
+ if isinstance(f, type):
11
+ return _experimental_class(f)
12
+ else:
13
+ return _experimental_function(f)
14
+
15
+
16
+ def _experimental_class(cls: type[C]) -> type[C]:
17
+ old_init = cls.__init__
18
+
19
+ @wraps(old_init)
20
+ def new_init(self, *args, **kwargs):
21
+ warnings.warn(
22
+ f"{cls.__name__} is an experimental feature and may change or be removed without notice.",
23
+ category=FutureWarning,
24
+ stacklevel=2,
25
+ )
26
+ return old_init(self, *args, **kwargs)
27
+
28
+ cls.__init__ = new_init
29
+ return cls
30
+
31
+
32
+ def _experimental_function(f: Callable) -> Callable:
9
33
  @wraps(f)
10
34
  def new_func(*args, **kwargs):
11
35
  warnings.warn(
12
- f"{f.__name__} is an experimental feature and may change or be removed without notice.",
36
+ f"{f.__name__}() is an experimental feature and may change or be removed without notice.",
13
37
  category=FutureWarning,
14
38
  stacklevel=2,
15
39
  )
@@ -13,6 +13,7 @@ _sym_db = _symbol_database.Default()
13
13
 
14
14
 
15
15
  from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
16
+ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
16
17
  from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
17
18
  from luminarycloud._proto.geometry import geometry_pb2 as proto_dot_geometry_dot_geometry__pb2
18
19
  from luminarycloud._proto.cadmetadata import cadmetadata_pb2 as proto_dot_cadmetadata_dot_cadmetadata__pb2
@@ -20,7 +21,7 @@ from luminarycloud._proto.lcn import lcmesh_pb2 as proto_dot_lcn_dot_lcmesh__pb2
20
21
  from luminarycloud._proto.ratelimit import ratelimit_pb2 as proto_dot_ratelimit_dot_ratelimit__pb2
21
22
 
22
23
 
23
- 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\x1fgoogle/protobuf/timestamp.proto\x1a\x1dproto/geometry/geometry.proto\x1a#proto/cadmetadata/cadmetadata.proto\x1a\x16proto/lcn/lcmesh.proto\x1a\x1fproto/ratelimit/ratelimit.proto\"\xc4\x01\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\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(\tJ\x04\x08\x04\x10\x05\"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\"\xdb\x01\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\")\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\"\xc9\x0e\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\xaa\x03\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\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\"\x83\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\x0f\n\x07scaling\x18\x04 \x01(\x01\x12\x0c\n\x04wait\x18\x05 \x01(\x08\x12\x16\n\x0e\x66orce_discrete\x18\x07 \x01(\x08J\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\x14\x43heckGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"3\n\x15\x43heckGeometryResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0e\n\x06issues\x18\x02 \x03(\t\"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.GeometryVersion2\xa2\x1b\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(\x12\x02\x08\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}B<Z:luminarycloud.com/core/proto/api/v0/luminarycloud/geometryb\x06proto3')
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\"\xc4\x01\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\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(\tJ\x04\x08\x04\x10\x05\"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\"\xdb\x01\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\")\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\"\xc9\x0e\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\xaa\x03\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\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\"\x97\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\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\"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\xe3\x1f\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\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')
24
25
 
25
26
 
26
27
 
@@ -56,6 +57,7 @@ _CREATEGEOMETRYREQUEST = DESCRIPTOR.message_types_by_name['CreateGeometryRequest
56
57
  _CREATEGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['CreateGeometryResponse']
57
58
  _CHECKGEOMETRYREQUEST = DESCRIPTOR.message_types_by_name['CheckGeometryRequest']
58
59
  _CHECKGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['CheckGeometryResponse']
60
+ _GETCHECKGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['GetCheckGeometryResponse']
59
61
  _TESSELLATIONUPTOMODIFICATIONREQUEST = DESCRIPTOR.message_types_by_name['TessellationUpToModificationRequest']
60
62
  _TESSELLATIONUPTOMODIFICATIONRESPONSE = DESCRIPTOR.message_types_by_name['TessellationUpToModificationResponse']
61
63
  _LATESTTESSELLATIONREQUEST = DESCRIPTOR.message_types_by_name['LatestTessellationRequest']
@@ -73,6 +75,8 @@ _LISTTAGSREQUEST = DESCRIPTOR.message_types_by_name['ListTagsRequest']
73
75
  _LISTTAGSRESPONSE = DESCRIPTOR.message_types_by_name['ListTagsResponse']
74
76
  _GETGEOMETRYVERSIONREQUEST = DESCRIPTOR.message_types_by_name['GetGeometryVersionRequest']
75
77
  _GETGEOMETRYVERSIONRESPONSE = DESCRIPTOR.message_types_by_name['GetGeometryVersionResponse']
78
+ _GETSDKCODEREQUEST = DESCRIPTOR.message_types_by_name['GetSdkCodeRequest']
79
+ _GETSDKCODERESPONSE = DESCRIPTOR.message_types_by_name['GetSdkCodeResponse']
76
80
  Geometry = _reflection.GeneratedProtocolMessageType('Geometry', (_message.Message,), {
77
81
  'DESCRIPTOR' : _GEOMETRY,
78
82
  '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
@@ -307,6 +311,13 @@ CheckGeometryResponse = _reflection.GeneratedProtocolMessageType('CheckGeometryR
307
311
  })
308
312
  _sym_db.RegisterMessage(CheckGeometryResponse)
309
313
 
314
+ GetCheckGeometryResponse = _reflection.GeneratedProtocolMessageType('GetCheckGeometryResponse', (_message.Message,), {
315
+ 'DESCRIPTOR' : _GETCHECKGEOMETRYRESPONSE,
316
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
317
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.GetCheckGeometryResponse)
318
+ })
319
+ _sym_db.RegisterMessage(GetCheckGeometryResponse)
320
+
310
321
  TessellationUpToModificationRequest = _reflection.GeneratedProtocolMessageType('TessellationUpToModificationRequest', (_message.Message,), {
311
322
  'DESCRIPTOR' : _TESSELLATIONUPTOMODIFICATIONREQUEST,
312
323
  '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
@@ -426,6 +437,20 @@ GetGeometryVersionResponse = _reflection.GeneratedProtocolMessageType('GetGeomet
426
437
  })
427
438
  _sym_db.RegisterMessage(GetGeometryVersionResponse)
428
439
 
440
+ GetSdkCodeRequest = _reflection.GeneratedProtocolMessageType('GetSdkCodeRequest', (_message.Message,), {
441
+ 'DESCRIPTOR' : _GETSDKCODEREQUEST,
442
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
443
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeRequest)
444
+ })
445
+ _sym_db.RegisterMessage(GetSdkCodeRequest)
446
+
447
+ GetSdkCodeResponse = _reflection.GeneratedProtocolMessageType('GetSdkCodeResponse', (_message.Message,), {
448
+ 'DESCRIPTOR' : _GETSDKCODERESPONSE,
449
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
450
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeResponse)
451
+ })
452
+ _sym_db.RegisterMessage(GetSdkCodeResponse)
453
+
429
454
  _GEOMETRYSERVICE = DESCRIPTOR.services_by_name['GeometryService']
430
455
  if _descriptor._USE_C_DESCRIPTORS == False:
431
456
 
@@ -446,7 +471,11 @@ if _descriptor._USE_C_DESCRIPTORS == False:
446
471
  _GEOMETRYSERVICE.methods_by_name['ModifyGeometry']._options = None
447
472
  _GEOMETRYSERVICE.methods_by_name['ModifyGeometry']._serialized_options = b'\202\323\344\223\002&\"!/v0/geometry/{geometry_id}/modify:\001*\212\265\030\006\010<\022\002\010\001'
448
473
  _GEOMETRYSERVICE.methods_by_name['CreateGeometry']._options = None
449
- _GEOMETRYSERVICE.methods_by_name['CreateGeometry']._serialized_options = b'\202\323\344\223\002.\")/v0/projects/{project_id}/create-geometry:\001*\212\265\030\006\010(\022\002\010\001'
474
+ _GEOMETRYSERVICE.methods_by_name['CreateGeometry']._serialized_options = b'\202\323\344\223\002.\")/v0/projects/{project_id}/create-geometry:\001*\212\265\030\006\010\036\022\002\010\003'
475
+ _GEOMETRYSERVICE.methods_by_name['StartCheckGeometry']._options = None
476
+ _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'
477
+ _GEOMETRYSERVICE.methods_by_name['GetCheckGeometry']._options = None
478
+ _GEOMETRYSERVICE.methods_by_name['GetCheckGeometry']._serialized_options = b'\202\323\344\223\002)\"$/v0/geometry/{geometry_id}/get_check:\001*'
450
479
  _GEOMETRYSERVICE.methods_by_name['CheckGeometry']._options = None
451
480
  _GEOMETRYSERVICE.methods_by_name['CheckGeometry']._serialized_options = b'\202\323\344\223\002%\" /v0/geometry/{geometry_id}/check:\001*'
452
481
  _GEOMETRYSERVICE.methods_by_name['TesselationUpToModification']._options = None
@@ -457,104 +486,112 @@ if _descriptor._USE_C_DESCRIPTORS == False:
457
486
  _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'
458
487
  _GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._options = None
459
488
  _GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._serialized_options = b'\202\323\344\223\002,\022*/v0/geometry_version/{geometry_version_id}'
460
- _GEOMETRY._serialized_start=289
461
- _GEOMETRY._serialized_end=485
462
- _GEOMETRYVERSION._serialized_start=487
463
- _GEOMETRYVERSION._serialized_end=586
464
- _TESSELLATIONDATA._serialized_start=589
465
- _TESSELLATIONDATA._serialized_end=808
466
- _GETGEOMETRYREQUEST._serialized_start=810
467
- _GETGEOMETRYREQUEST._serialized_end=851
468
- _GETGEOMETRYRESPONSE._serialized_start=853
469
- _GETGEOMETRYRESPONSE._serialized_end=948
470
- _LISTGEOMETRYFEATURESREQUEST._serialized_start=950
471
- _LISTGEOMETRYFEATURESREQUEST._serialized_end=1055
472
- _LISTGEOMETRYFEATURESRESPONSE._serialized_start=1057
473
- _LISTGEOMETRYFEATURESRESPONSE._serialized_end=1139
474
- _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=1141
475
- _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=1251
476
- _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=1253
477
- _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=1353
478
- _LISTGEOMETRYENTITIESREQUEST._serialized_start=1355
479
- _LISTGEOMETRYENTITIESREQUEST._serialized_end=1460
480
- _LISTGEOMETRYENTITIESRESPONSE._serialized_start=1462
481
- _LISTGEOMETRYENTITIESRESPONSE._serialized_end=1585
482
- _LISTGEOMETRIESREQUEST._serialized_start=1587
483
- _LISTGEOMETRIESREQUEST._serialized_end=1630
484
- _LISTGEOMETRIESRESPONSE._serialized_start=1632
485
- _LISTGEOMETRIESRESPONSE._serialized_end=1732
486
- _SUBSCRIBEGEOMETRYREQUEST._serialized_start=1734
487
- _SUBSCRIBEGEOMETRYREQUEST._serialized_end=1807
488
- _GEOMETRYHISTORY._serialized_start=1810
489
- _GEOMETRYHISTORY._serialized_end=2098
490
- _GEOMETRYHISTORY_HISTORYENTRY._serialized_start=1929
491
- _GEOMETRYHISTORY_HISTORYENTRY._serialized_end=2098
492
- _SUBSCRIBEGEOMETRYRESPONSE._serialized_start=2101
493
- _SUBSCRIBEGEOMETRYRESPONSE._serialized_end=3966
494
- _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=2422
495
- _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=2848
496
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=2851
497
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=3950
498
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=3738
499
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=3775
500
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=3777
501
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=3818
502
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=3820
503
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=3830
504
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=3832
505
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=3843
506
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=3845
507
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=3880
508
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=3882
509
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=3917
510
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=3919
511
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=3933
512
- _MODIFYGEOMETRYREQUEST._serialized_start=3968
513
- _MODIFYGEOMETRYREQUEST._serialized_end=4093
514
- _MODIFYGEOMETRYRESPONSE._serialized_start=4096
515
- _MODIFYGEOMETRYRESPONSE._serialized_end=4287
516
- _CREATEGEOMETRYREQUEST._serialized_start=4290
517
- _CREATEGEOMETRYREQUEST._serialized_end=4421
518
- _CREATEGEOMETRYRESPONSE._serialized_start=4423
519
- _CREATEGEOMETRYRESPONSE._serialized_end=4521
520
- _CHECKGEOMETRYREQUEST._serialized_start=4523
521
- _CHECKGEOMETRYREQUEST._serialized_end=4566
522
- _CHECKGEOMETRYRESPONSE._serialized_start=4568
523
- _CHECKGEOMETRYRESPONSE._serialized_end=4619
524
- _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=4621
525
- _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=4704
526
- _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=4706
527
- _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=4764
528
- _LATESTTESSELLATIONREQUEST._serialized_start=4766
529
- _LATESTTESSELLATIONREQUEST._serialized_end=4814
530
- _LATESTTESSELLATIONRESPONSE._serialized_start=4816
531
- _LATESTTESSELLATIONRESPONSE._serialized_end=4869
532
- _KEEPALIVEREQUEST._serialized_start=4871
533
- _KEEPALIVEREQUEST._serialized_end=4910
534
- _KEEPALIVERESPONSE._serialized_start=4912
535
- _KEEPALIVERESPONSE._serialized_end=4931
536
- _PANICREQUEST._serialized_start=4933
537
- _PANICREQUEST._serialized_end=4947
538
- _PANICRESPONSE._serialized_start=4949
539
- _PANICRESPONSE._serialized_end=4964
540
- _STOPWORKERREQUEST._serialized_start=4966
541
- _STOPWORKERREQUEST._serialized_end=5006
542
- _STOPWORKERRESPONSE._serialized_start=5008
543
- _STOPWORKERRESPONSE._serialized_end=5028
544
- _GETTAGSREQUEST._serialized_start=5030
545
- _GETTAGSREQUEST._serialized_end=5096
546
- _GETTAGSRESPONSE._serialized_start=5098
547
- _GETTAGSRESPONSE._serialized_end=5160
548
- _TAG._serialized_start=5162
549
- _TAG._serialized_end=5244
550
- _LISTTAGSREQUEST._serialized_start=5246
551
- _LISTTAGSREQUEST._serialized_end=5339
552
- _LISTTAGSRESPONSE._serialized_start=5341
553
- _LISTTAGSRESPONSE._serialized_end=5424
554
- _GETGEOMETRYVERSIONREQUEST._serialized_start=5426
555
- _GETGEOMETRYVERSIONREQUEST._serialized_end=5482
556
- _GETGEOMETRYVERSIONRESPONSE._serialized_start=5484
557
- _GETGEOMETRYVERSIONRESPONSE._serialized_end=5601
558
- _GEOMETRYSERVICE._serialized_start=5604
559
- _GEOMETRYSERVICE._serialized_end=9094
489
+ _GEOMETRYSERVICE.methods_by_name['GetSdkCode']._options = None
490
+ _GEOMETRYSERVICE.methods_by_name['GetSdkCode']._serialized_options = b'\202\323\344\223\002%\022#/v0/geometry/{geometry_id}/sdk-code'
491
+ _GEOMETRY._serialized_start=318
492
+ _GEOMETRY._serialized_end=514
493
+ _GEOMETRYVERSION._serialized_start=516
494
+ _GEOMETRYVERSION._serialized_end=615
495
+ _TESSELLATIONDATA._serialized_start=618
496
+ _TESSELLATIONDATA._serialized_end=837
497
+ _GETGEOMETRYREQUEST._serialized_start=839
498
+ _GETGEOMETRYREQUEST._serialized_end=880
499
+ _GETGEOMETRYRESPONSE._serialized_start=882
500
+ _GETGEOMETRYRESPONSE._serialized_end=977
501
+ _LISTGEOMETRYFEATURESREQUEST._serialized_start=979
502
+ _LISTGEOMETRYFEATURESREQUEST._serialized_end=1084
503
+ _LISTGEOMETRYFEATURESRESPONSE._serialized_start=1086
504
+ _LISTGEOMETRYFEATURESRESPONSE._serialized_end=1168
505
+ _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=1170
506
+ _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=1280
507
+ _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=1282
508
+ _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=1382
509
+ _LISTGEOMETRYENTITIESREQUEST._serialized_start=1384
510
+ _LISTGEOMETRYENTITIESREQUEST._serialized_end=1489
511
+ _LISTGEOMETRYENTITIESRESPONSE._serialized_start=1491
512
+ _LISTGEOMETRYENTITIESRESPONSE._serialized_end=1614
513
+ _LISTGEOMETRIESREQUEST._serialized_start=1616
514
+ _LISTGEOMETRIESREQUEST._serialized_end=1659
515
+ _LISTGEOMETRIESRESPONSE._serialized_start=1661
516
+ _LISTGEOMETRIESRESPONSE._serialized_end=1761
517
+ _SUBSCRIBEGEOMETRYREQUEST._serialized_start=1763
518
+ _SUBSCRIBEGEOMETRYREQUEST._serialized_end=1836
519
+ _GEOMETRYHISTORY._serialized_start=1839
520
+ _GEOMETRYHISTORY._serialized_end=2127
521
+ _GEOMETRYHISTORY_HISTORYENTRY._serialized_start=1958
522
+ _GEOMETRYHISTORY_HISTORYENTRY._serialized_end=2127
523
+ _SUBSCRIBEGEOMETRYRESPONSE._serialized_start=2130
524
+ _SUBSCRIBEGEOMETRYRESPONSE._serialized_end=3995
525
+ _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=2451
526
+ _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=2877
527
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=2880
528
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=3979
529
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=3767
530
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=3804
531
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=3806
532
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=3847
533
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=3849
534
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=3859
535
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=3861
536
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=3872
537
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=3874
538
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=3909
539
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=3911
540
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=3946
541
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=3948
542
+ _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=3962
543
+ _MODIFYGEOMETRYREQUEST._serialized_start=3997
544
+ _MODIFYGEOMETRYREQUEST._serialized_end=4122
545
+ _MODIFYGEOMETRYRESPONSE._serialized_start=4125
546
+ _MODIFYGEOMETRYRESPONSE._serialized_end=4316
547
+ _CREATEGEOMETRYREQUEST._serialized_start=4319
548
+ _CREATEGEOMETRYREQUEST._serialized_end=4470
549
+ _CREATEGEOMETRYRESPONSE._serialized_start=4472
550
+ _CREATEGEOMETRYRESPONSE._serialized_end=4570
551
+ _CHECKGEOMETRYREQUEST._serialized_start=4572
552
+ _CHECKGEOMETRYREQUEST._serialized_end=4644
553
+ _CHECKGEOMETRYRESPONSE._serialized_start=4646
554
+ _CHECKGEOMETRYRESPONSE._serialized_end=4697
555
+ _GETCHECKGEOMETRYRESPONSE._serialized_start=4699
556
+ _GETCHECKGEOMETRYRESPONSE._serialized_end=4771
557
+ _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=4773
558
+ _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=4856
559
+ _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=4858
560
+ _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=4916
561
+ _LATESTTESSELLATIONREQUEST._serialized_start=4918
562
+ _LATESTTESSELLATIONREQUEST._serialized_end=4966
563
+ _LATESTTESSELLATIONRESPONSE._serialized_start=4968
564
+ _LATESTTESSELLATIONRESPONSE._serialized_end=5021
565
+ _KEEPALIVEREQUEST._serialized_start=5023
566
+ _KEEPALIVEREQUEST._serialized_end=5062
567
+ _KEEPALIVERESPONSE._serialized_start=5064
568
+ _KEEPALIVERESPONSE._serialized_end=5083
569
+ _PANICREQUEST._serialized_start=5085
570
+ _PANICREQUEST._serialized_end=5099
571
+ _PANICRESPONSE._serialized_start=5101
572
+ _PANICRESPONSE._serialized_end=5116
573
+ _STOPWORKERREQUEST._serialized_start=5118
574
+ _STOPWORKERREQUEST._serialized_end=5158
575
+ _STOPWORKERRESPONSE._serialized_start=5160
576
+ _STOPWORKERRESPONSE._serialized_end=5180
577
+ _GETTAGSREQUEST._serialized_start=5182
578
+ _GETTAGSREQUEST._serialized_end=5248
579
+ _GETTAGSRESPONSE._serialized_start=5250
580
+ _GETTAGSRESPONSE._serialized_end=5312
581
+ _TAG._serialized_start=5314
582
+ _TAG._serialized_end=5396
583
+ _LISTTAGSREQUEST._serialized_start=5398
584
+ _LISTTAGSREQUEST._serialized_end=5491
585
+ _LISTTAGSRESPONSE._serialized_start=5493
586
+ _LISTTAGSRESPONSE._serialized_end=5576
587
+ _GETGEOMETRYVERSIONREQUEST._serialized_start=5578
588
+ _GETGEOMETRYVERSIONREQUEST._serialized_end=5634
589
+ _GETGEOMETRYVERSIONRESPONSE._serialized_start=5636
590
+ _GETGEOMETRYVERSIONRESPONSE._serialized_end=5753
591
+ _GETSDKCODEREQUEST._serialized_start=5755
592
+ _GETSDKCODEREQUEST._serialized_end=5824
593
+ _GETSDKCODERESPONSE._serialized_start=5826
594
+ _GETSDKCODERESPONSE._serialized_end=5864
595
+ _GEOMETRYSERVICE._serialized_start=5867
596
+ _GEOMETRYSERVICE._serialized_end=9934
560
597
  # @@protoc_insertion_point(module_scope)