luminarycloud 0.10.0__py3-none-any.whl → 0.10.2__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 (102) hide show
  1. luminarycloud/__init__.py +1 -0
  2. luminarycloud/_helpers/__init__.py +5 -0
  3. luminarycloud/_helpers/_upload_table.py +2 -5
  4. luminarycloud/_helpers/create_geometry.py +1 -1
  5. luminarycloud/_helpers/download.py +41 -15
  6. luminarycloud/_helpers/proto_decorator.py +47 -0
  7. luminarycloud/_helpers/upload.py +2 -2
  8. luminarycloud/_helpers/warnings/__init__.py +2 -0
  9. luminarycloud/_helpers/warnings/deprecated.py +31 -0
  10. luminarycloud/_helpers/warnings/experimental.py +18 -0
  11. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +139 -97
  12. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +77 -10
  13. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +33 -0
  14. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +10 -0
  15. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +64 -64
  16. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +9 -2
  17. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.py +0 -4
  18. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.pyi +0 -8
  19. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.py +16 -16
  20. luminarycloud/_proto/api/v0/luminarycloud/project/project_pb2.pyi +35 -4
  21. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +56 -56
  22. luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +5 -1
  23. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.py +47 -3
  24. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.pyi +64 -0
  25. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.py +68 -0
  26. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.pyi +24 -0
  27. luminarycloud/_proto/base/base_pb2.py +23 -12
  28. luminarycloud/_proto/base/base_pb2.pyi +24 -2
  29. luminarycloud/_proto/client/simulation_pb2.py +387 -372
  30. luminarycloud/_proto/client/simulation_pb2.pyi +343 -303
  31. luminarycloud/_proto/upload/upload_pb2.py +35 -25
  32. luminarycloud/_proto/upload/upload_pb2.pyi +16 -3
  33. luminarycloud/_wrapper.py +4 -0
  34. luminarycloud/geometry.py +73 -22
  35. luminarycloud/geometry_version.py +142 -0
  36. luminarycloud/mesh.py +19 -0
  37. luminarycloud/params/convergence_criteria/convergence_criteria.py +56 -11
  38. luminarycloud/params/convergence_criteria/stopping_condition.py +13 -4
  39. luminarycloud/params/enum/_enum_wrappers.py +16 -0
  40. luminarycloud/params/geometry/shapes.py +11 -0
  41. luminarycloud/params/outputs/residual_output.py +2 -2
  42. luminarycloud/params/param_wrappers/simulation_param/__init__.py +17 -17
  43. luminarycloud/params/param_wrappers/simulation_param/adjoint_.py +5 -0
  44. luminarycloud/params/param_wrappers/simulation_param/material/fluid/__init__.py +4 -4
  45. luminarycloud/params/param_wrappers/simulation_param/material/fluid/material_model/__init__.py +1 -1
  46. luminarycloud/params/param_wrappers/simulation_param/material/fluid/thermal_conductivity_model/__init__.py +1 -1
  47. luminarycloud/params/param_wrappers/simulation_param/motion_data/__init__.py +1 -1
  48. luminarycloud/params/param_wrappers/simulation_param/motion_data/motion_type/__init__.py +1 -1
  49. luminarycloud/params/param_wrappers/simulation_param/motion_data_.py +12 -1
  50. luminarycloud/params/param_wrappers/simulation_param/output_.py +0 -12
  51. luminarycloud/params/param_wrappers/simulation_param/physics/__init__.py +2 -2
  52. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/__init__.py +7 -7
  53. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/__init__.py +4 -4
  54. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/farfield_.py +5 -1
  55. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/inlet/__init__.py +3 -3
  56. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/outlet/outlet_strategy/__init__.py +1 -1
  57. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/__init__.py +1 -1
  58. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/komega/__init__.py +1 -1
  59. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/turbulence/spalart_allmaras/__init__.py +1 -1
  60. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/wall/__init__.py +1 -1
  61. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/wall/momentum/__init__.py +1 -1
  62. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/__init__.py +2 -2
  63. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/__init__.py +1 -1
  64. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/komega/__init__.py +1 -1
  65. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/initialization/turbulence/spalart_allmaras/__init__.py +1 -1
  66. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/physical_behavior/__init__.py +1 -1
  67. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/physical_behavior/physical_behavior_model/__init__.py +3 -3
  68. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/physical_behavior/physical_behavior_model/actuator_disk_model/__init__.py +2 -2
  69. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/solution_controls/fluid_relaxation_method/__init__.py +1 -1
  70. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/solution_controls/fluid_relaxation_method/fluid_implicit_relaxation/robust_startup/__init__.py +1 -1
  71. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/solution_controls/pseudo_time_step_method/__init__.py +1 -1
  72. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/spatial_discretization/__init__.py +1 -1
  73. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/spatial_discretization/convective_scheme/__init__.py +2 -2
  74. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/turbulence/__init__.py +5 -5
  75. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/turbulence/des_formulation/__init__.py +2 -2
  76. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/turbulence/komega_sst/constants/__init__.py +1 -1
  77. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/turbulence/komega_sst_.py +9 -4
  78. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/turbulence/sub_grid_scale_model/__init__.py +2 -2
  79. luminarycloud/params/param_wrappers/simulation_param/physics/fluid_.py +23 -4
  80. luminarycloud/params/param_wrappers/simulation_param/physics/heat/__init__.py +3 -3
  81. luminarycloud/params/param_wrappers/simulation_param/physics/heat/boundary_conditions/__init__.py +3 -3
  82. luminarycloud/params/param_wrappers/simulation_param/physics/heat/heat_source/heat_source_type/__init__.py +1 -1
  83. luminarycloud/params/param_wrappers/simulation_param/physics/heat/initialization/__init__.py +1 -1
  84. luminarycloud/params/param_wrappers/simulation_param/physics/heat_.py +30 -3
  85. luminarycloud/params/param_wrappers/simulation_param/time/__init__.py +2 -2
  86. luminarycloud/params/param_wrappers/simulation_param/time/time_step_ramp/time_step_ramp_on_.py +1 -1
  87. luminarycloud/params/param_wrappers/simulation_param/time_.py +2 -2
  88. luminarycloud/params/param_wrappers/simulation_param_.py +2 -1
  89. luminarycloud/project.py +155 -22
  90. luminarycloud/simulation.py +22 -8
  91. luminarycloud/simulation_param.py +12 -5
  92. luminarycloud/solution.py +39 -2
  93. luminarycloud/tag.py +26 -0
  94. luminarycloud/types/__init__.py +5 -1
  95. luminarycloud/types/matrix3.py +26 -0
  96. luminarycloud/types/vector3.py +27 -0
  97. luminarycloud/volume_selection.py +678 -0
  98. {luminarycloud-0.10.0.dist-info → luminarycloud-0.10.2.dist-info}/METADATA +2 -1
  99. {luminarycloud-0.10.0.dist-info → luminarycloud-0.10.2.dist-info}/RECORD +101 -94
  100. {luminarycloud-0.10.0.dist-info → luminarycloud-0.10.2.dist-info}/WHEEL +1 -1
  101. luminarycloud/_helpers/deprecated.py +0 -19
  102. {luminarycloud-0.10.0.dist-info → luminarycloud-0.10.2.dist-info}/top_level.txt +0 -0
luminarycloud/__init__.py CHANGED
@@ -29,6 +29,7 @@ from .project import (
29
29
  create_project as create_project,
30
30
  get_project as get_project,
31
31
  list_projects as list_projects,
32
+ iterate_projects as iterate_projects,
32
33
  Project as Project,
33
34
  )
34
35
  from .simulation import (
@@ -8,6 +8,8 @@ from .create_simulation import (
8
8
  from .download import (
9
9
  download_surface_solution,
10
10
  download_volume_solution,
11
+ download_surface_deformation_template,
12
+ download_surface_sensitivity_data,
11
13
  save_file,
12
14
  )
13
15
  from .file_chunk_stream import (
@@ -20,6 +22,9 @@ from .simulation_params_from_json import (
20
22
  from .timestamp_to_datetime import (
21
23
  timestamp_to_datetime,
22
24
  )
25
+ from .upload import (
26
+ upload_file,
27
+ )
23
28
  from ._upload_mesh import (
24
29
  upload_mesh,
25
30
  upload_mesh_from_local_file,
@@ -57,13 +57,12 @@ def upload_table_as_json(
57
57
  project_id,
58
58
  uploadpb.ResourceParams(geometry_params=uploadpb.GeometryParams()),
59
59
  pathlib.Path(tmp_file_path),
60
- ).url
60
+ )[1].url
61
61
 
62
62
 
63
63
  def upload_c81_as_json(
64
64
  client: Client,
65
65
  project_id: str,
66
- name: str,
67
66
  c81: PathLike,
68
67
  ) -> str:
69
68
  """
@@ -75,8 +74,6 @@ def upload_c81_as_json(
75
74
  A LuminaryCloud Client (see client.py)
76
75
  project_id: str
77
76
  The ID of the project to upload the table under
78
- name: str
79
- Name to use for the uploaded file
80
77
  c81: PathLike
81
78
  Path to c81 file to upload
82
79
 
@@ -91,4 +88,4 @@ def upload_c81_as_json(
91
88
  project_id,
92
89
  uploadpb.ResourceParams(c81_params=uploadpb.C81Params()),
93
90
  pathlib.Path(c81),
94
- ).url
91
+ )[1].url
@@ -34,7 +34,7 @@ def create_geometry(
34
34
  project_id,
35
35
  uploadpb.ResourceParams(geometry_params=uploadpb.GeometryParams()),
36
36
  cad_file_path,
37
- )
37
+ )[1]
38
38
 
39
39
  # create geometry
40
40
  if name is None:
@@ -4,13 +4,15 @@ import logging
4
4
  import os
5
5
  from pathlib import Path
6
6
  import requests
7
- from typing import Iterator, Optional, Union, cast
7
+ from typing import Any, Iterator, Optional, Union, cast
8
8
 
9
9
  from .file_chunk_stream import FileChunkStream
10
10
  from .._proto.api.v0.luminarycloud.common import common_pb2 as commonpb
11
11
  from .._proto.api.v0.luminarycloud.solution.solution_pb2 import (
12
12
  GetSolutionSurfaceDataRequest,
13
13
  GetSolutionVolumeDataRequest,
14
+ GetSurfaceDeformationTemplateRequest,
15
+ GetSurfaceSensitivityDataRequest,
14
16
  )
15
17
  from .._client import Client
16
18
 
@@ -59,6 +61,17 @@ def _iter_url(
59
61
  yield chunk
60
62
 
61
63
 
64
+ def _create_file_chunk_stream(
65
+ client: Client, solution_id: str, data_desc: str, file: Any
66
+ ) -> FileChunkStream:
67
+ if file.signed_url:
68
+ logger.info(f"Begin streaming {data_desc} via signed URL for solution {solution_id}.")
69
+ return FileChunkStream(file.metadata, _iter_url(client, file.signed_url))
70
+
71
+ logger.info(f"Begin streaming {data_desc} via fetch URL for solution {solution_id}.")
72
+ return FileChunkStream(file.metadata, _iter_file_id(client, file.file_id))
73
+
74
+
62
75
  def download_surface_solution(
63
76
  client: Client,
64
77
  solution_id: str,
@@ -77,14 +90,7 @@ def download_surface_solution(
77
90
 
78
91
  request = GetSolutionSurfaceDataRequest(id=solution_id)
79
92
  response = client.GetSolutionSurfaceData(request)
80
- file = response.file
81
-
82
- if file.signed_url:
83
- logger.info(f"Begin streaming surface data via signed URL for solution {solution_id}.")
84
- return FileChunkStream(file.metadata, _iter_url(client, file.signed_url))
85
-
86
- logger.info(f"Begin streaming surface data via fetch URL for solution {solution_id}.")
87
- return FileChunkStream(file.metadata, _iter_file_id(client, file.file_id))
93
+ return _create_file_chunk_stream(client, solution_id, "surface solution", response.file)
88
94
 
89
95
 
90
96
  def download_volume_solution(
@@ -105,14 +111,34 @@ def download_volume_solution(
105
111
 
106
112
  request = GetSolutionVolumeDataRequest(id=solution_id)
107
113
  response = client.GetSolutionVolumeData(request)
108
- file = response.file
114
+ return _create_file_chunk_stream(client, solution_id, "volume solution", response.file)
109
115
 
110
- if file.signed_url:
111
- logger.info(f"Begin streaming volume data via signed URL for solution {solution_id}.")
112
- return FileChunkStream(file.metadata, _iter_url(client, file.signed_url))
113
116
 
114
- logger.info(f"Begin streaming volume solution via fetch URL for solution {solution_id}.")
115
- return FileChunkStream(file.metadata, _iter_file_id(client, file.file_id))
117
+ def download_surface_deformation_template(
118
+ client: Client,
119
+ solution_id: str,
120
+ ) -> FileChunkStream:
121
+ """
122
+ Similar to download_surface_solution.
123
+ """
124
+ request = GetSurfaceDeformationTemplateRequest(id=solution_id)
125
+ response = client.GetSurfaceDeformationTemplate(request)
126
+ return _create_file_chunk_stream(
127
+ client, solution_id, "surface deformation template", response.file
128
+ )
129
+
130
+
131
+ def download_surface_sensitivity_data(
132
+ client: Client,
133
+ solution_id: str,
134
+ ) -> FileChunkStream:
135
+ """
136
+ Similar to download_surface_solution.
137
+ """
138
+
139
+ request = GetSurfaceSensitivityDataRequest(id=solution_id)
140
+ response = client.GetSurfaceSensitivityData(request)
141
+ return _create_file_chunk_stream(client, solution_id, "surface sensitivity data", response.file)
116
142
 
117
143
 
118
144
  def save_file(
@@ -0,0 +1,47 @@
1
+ # Copyright 2025 Luminary Cloud, Inc. All Rights Reserved.
2
+ from typing import (
3
+ Generic,
4
+ TypeVar,
5
+ get_type_hints,
6
+ get_origin,
7
+ )
8
+
9
+ from google.protobuf.message import Message
10
+
11
+ from luminarycloud.types import Vector3
12
+
13
+ P = TypeVar("P", bound=Message)
14
+ C = TypeVar("C")
15
+
16
+
17
+ class proto_decorator(Generic[P]):
18
+ """
19
+ A decorator that adds a `to_proto` method to a class.
20
+
21
+ NOTE: only works for primitive and basepb.Vector3 fields right now.
22
+ """
23
+
24
+ def __init__(decorator, proto_type: type[P]):
25
+ decorator.proto_type = proto_type
26
+
27
+ def __call__(decorator, cls: type[C]) -> type[C]:
28
+ type_hints = get_type_hints(cls)
29
+ fields = decorator.proto_type.DESCRIPTOR.fields
30
+
31
+ def _to_proto(self) -> decorator.proto_type:
32
+ proto = decorator.proto_type()
33
+ for field in fields:
34
+ _type = type_hints.get(field.name, None)
35
+ if _type:
36
+ value = getattr(self, field.name)
37
+ if issubclass(_type, Vector3):
38
+ vector_proto = getattr(proto, field.name)
39
+ vector_proto.x = value.x
40
+ vector_proto.y = value.y
41
+ vector_proto.z = value.z
42
+ else:
43
+ setattr(proto, field.name, value)
44
+ return proto
45
+
46
+ setattr(cls, "_to_proto", _to_proto)
47
+ return cls
@@ -71,7 +71,7 @@ def upload_file(
71
71
  project_id: str,
72
72
  resource_params: uploadpb.ResourceParams,
73
73
  file_path: PathLike,
74
- ) -> uploadpb.FinishUploadReply:
74
+ ) -> tuple[str, uploadpb.FinishUploadReply]:
75
75
  file_metadata = util.get_file_metadata(pathlib.Path(file_path))
76
76
 
77
77
  create_upload_res: uploadpb.CreateUploadReply = client.CreateUpload(
@@ -101,4 +101,4 @@ def upload_file(
101
101
  )
102
102
  logger.debug(f"finished upload")
103
103
 
104
- return finish_res
104
+ return upload_id, finish_res
@@ -0,0 +1,2 @@
1
+ from .deprecated import deprecated
2
+ from .experimental import experimental
@@ -0,0 +1,31 @@
1
+ import warnings
2
+ from functools import wraps
3
+ from typing import Callable
4
+
5
+
6
+ def deprecated(reason: str, version: str) -> Callable[[Callable], Callable]:
7
+ """
8
+ Mark a function as deprecated.
9
+
10
+ Parameters
11
+ ----------
12
+ reason : str
13
+ The reason for deprecation.
14
+ version : str
15
+ The version in which the function was deprecated.
16
+ """
17
+
18
+ def decorator(f: Callable) -> Callable:
19
+
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
+
29
+ return new_func
30
+
31
+ return decorator
@@ -0,0 +1,18 @@
1
+ import warnings
2
+ from functools import wraps
3
+ from typing import Callable
4
+
5
+
6
+ def experimental(f: Callable) -> Callable:
7
+ """Mark a function as experimental."""
8
+
9
+ @wraps(f)
10
+ def new_func(*args, **kwargs):
11
+ warnings.warn(
12
+ f"{f.__name__} is an experimental feature and may change or be removed without notice.",
13
+ category=FutureWarning,
14
+ stacklevel=2,
15
+ )
16
+ return f(*args, **kwargs)
17
+
18
+ return new_func
@@ -20,11 +20,12 @@ from luminarycloud._proto.lcn import lcmesh_pb2 as proto_dot_lcn_dot_lcmesh__pb2
20
20
  from luminarycloud._proto.ratelimit import ratelimit_pb2 as proto_dot_ratelimit_dot_ratelimit__pb2
21
21
 
22
22
 
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\"\xb0\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(\x08J\x04\x08\x04\x10\x05\"\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\"2\n\x1bListGeometryFeaturesRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"R\n\x1cListGeometryFeaturesResponse\x12\x32\n\x08\x66\x65\x61tures\x18\x01 \x03(\x0b\x32 .luminary.proto.geometry.Feature\"7\n ListGeometryFeatureIssuesRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"d\n!ListGeometryFeatureIssuesResponse\x12?\n\x0f\x66\x65\x61tures_issues\x18\x01 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\"2\n\x1bListGeometryEntitiesRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"{\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\"C\n\x0fListTagsRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\"S\n\x10ListTagsResponse\x12?\n\x04tags\x18\x01 \x03(\x0b\x32\x31.luminary.proto.api.v0.luminarycloud.geometry.Tag2\xb8\x15\n\x0fGeometryService\x12\xa7\x01\n\x0eListGeometries\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesResponse\"\n\x8a\xb5\x18\x06\x08<\x12\x02\x08\x01\x12\xaf\x01\n\x14ListGeometryEntities\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesResponse\"\x00\x12\x94\x01\n\x0bGetGeometry\x12@.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryResponse\"\x00\x12\xaf\x01\n\x14ListGeometryFeatures\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesResponse\"\x00\x12\xbe\x01\n\x19ListGeometryFeatureIssues\x12N.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesRequest\x1aO.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesResponse\"\x00\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\xa7\x01\n\x0eModifyGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryResponse\"\n\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\x9a\x01\n\rCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x43.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryResponse\"\x00\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\xb2\x01\n\x08ListTags\x12=.luminary.proto.api.v0.luminarycloud.geometry.ListTagsRequest\x1a>.luminary.proto.api.v0.luminarycloud.geometry.ListTagsResponse\"\'\x82\xd3\xe4\x93\x02!\x12\x1f/v0/geometry/{geometry_id}/tagsB<Z:luminarycloud.com/core/proto/api/v0/luminarycloud/geometryb\x06proto3')
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
24
 
25
25
 
26
26
 
27
27
  _GEOMETRY = DESCRIPTOR.message_types_by_name['Geometry']
28
+ _GEOMETRYVERSION = DESCRIPTOR.message_types_by_name['GeometryVersion']
28
29
  _TESSELLATIONDATA = DESCRIPTOR.message_types_by_name['TessellationData']
29
30
  _GETGEOMETRYREQUEST = DESCRIPTOR.message_types_by_name['GetGeometryRequest']
30
31
  _GETGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['GetGeometryResponse']
@@ -70,6 +71,8 @@ _GETTAGSRESPONSE = DESCRIPTOR.message_types_by_name['GetTagsResponse']
70
71
  _TAG = DESCRIPTOR.message_types_by_name['Tag']
71
72
  _LISTTAGSREQUEST = DESCRIPTOR.message_types_by_name['ListTagsRequest']
72
73
  _LISTTAGSRESPONSE = DESCRIPTOR.message_types_by_name['ListTagsResponse']
74
+ _GETGEOMETRYVERSIONREQUEST = DESCRIPTOR.message_types_by_name['GetGeometryVersionRequest']
75
+ _GETGEOMETRYVERSIONRESPONSE = DESCRIPTOR.message_types_by_name['GetGeometryVersionResponse']
73
76
  Geometry = _reflection.GeneratedProtocolMessageType('Geometry', (_message.Message,), {
74
77
  'DESCRIPTOR' : _GEOMETRY,
75
78
  '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
@@ -77,6 +80,13 @@ Geometry = _reflection.GeneratedProtocolMessageType('Geometry', (_message.Messag
77
80
  })
78
81
  _sym_db.RegisterMessage(Geometry)
79
82
 
83
+ GeometryVersion = _reflection.GeneratedProtocolMessageType('GeometryVersion', (_message.Message,), {
84
+ 'DESCRIPTOR' : _GEOMETRYVERSION,
85
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
86
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion)
87
+ })
88
+ _sym_db.RegisterMessage(GeometryVersion)
89
+
80
90
  TessellationData = _reflection.GeneratedProtocolMessageType('TessellationData', (_message.Message,), {
81
91
  'DESCRIPTOR' : _TESSELLATIONDATA,
82
92
  '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
@@ -402,117 +412,149 @@ ListTagsResponse = _reflection.GeneratedProtocolMessageType('ListTagsResponse',
402
412
  })
403
413
  _sym_db.RegisterMessage(ListTagsResponse)
404
414
 
415
+ GetGeometryVersionRequest = _reflection.GeneratedProtocolMessageType('GetGeometryVersionRequest', (_message.Message,), {
416
+ 'DESCRIPTOR' : _GETGEOMETRYVERSIONREQUEST,
417
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
418
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionRequest)
419
+ })
420
+ _sym_db.RegisterMessage(GetGeometryVersionRequest)
421
+
422
+ GetGeometryVersionResponse = _reflection.GeneratedProtocolMessageType('GetGeometryVersionResponse', (_message.Message,), {
423
+ 'DESCRIPTOR' : _GETGEOMETRYVERSIONRESPONSE,
424
+ '__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
425
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionResponse)
426
+ })
427
+ _sym_db.RegisterMessage(GetGeometryVersionResponse)
428
+
405
429
  _GEOMETRYSERVICE = DESCRIPTOR.services_by_name['GeometryService']
406
430
  if _descriptor._USE_C_DESCRIPTORS == False:
407
431
 
408
432
  DESCRIPTOR._options = None
409
433
  DESCRIPTOR._serialized_options = b'Z:luminarycloud.com/core/proto/api/v0/luminarycloud/geometry'
410
434
  _GEOMETRYSERVICE.methods_by_name['ListGeometries']._options = None
411
- _GEOMETRYSERVICE.methods_by_name['ListGeometries']._serialized_options = b'\212\265\030\006\010<\022\002\010\001'
435
+ _GEOMETRYSERVICE.methods_by_name['ListGeometries']._serialized_options = b'\202\323\344\223\002&\022$/v0/projects/{project_id}/geometries\212\265\030\006\010<\022\002\010\001'
436
+ _GEOMETRYSERVICE.methods_by_name['ListGeometryEntities']._options = None
437
+ _GEOMETRYSERVICE.methods_by_name['ListGeometryEntities']._serialized_options = b'\202\323\344\223\002\\\022#/v0/geometry/{geometry_id}/entitiesZ5\0223/v0/geometry_version/{geometry_version_id}/entities'
438
+ _GEOMETRYSERVICE.methods_by_name['GetGeometry']._options = None
439
+ _GEOMETRYSERVICE.methods_by_name['GetGeometry']._serialized_options = b'\202\323\344\223\002\034\022\032/v0/geometry/{geometry_id}'
440
+ _GEOMETRYSERVICE.methods_by_name['ListGeometryFeatures']._options = None
441
+ _GEOMETRYSERVICE.methods_by_name['ListGeometryFeatures']._serialized_options = b'\202\323\344\223\002\\\022#/v0/geometry/{geometry_id}/featuresZ5\0223/v0/geometry_version/{geometry_version_id}/features'
442
+ _GEOMETRYSERVICE.methods_by_name['ListGeometryFeatureIssues']._options = None
443
+ _GEOMETRYSERVICE.methods_by_name['ListGeometryFeatureIssues']._serialized_options = b'\202\323\344\223\002j\022*/v0/geometry/{geometry_id}/features/issuesZ<\022:/v0/geometry_version/{geometry_version_id}/features/issues'
412
444
  _GEOMETRYSERVICE.methods_by_name['SubscribeGeometry']._options = None
413
445
  _GEOMETRYSERVICE.methods_by_name['SubscribeGeometry']._serialized_options = b'\212\265\030\002\0102'
414
446
  _GEOMETRYSERVICE.methods_by_name['ModifyGeometry']._options = None
415
- _GEOMETRYSERVICE.methods_by_name['ModifyGeometry']._serialized_options = b'\212\265\030\006\010<\022\002\010\001'
447
+ _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'
416
448
  _GEOMETRYSERVICE.methods_by_name['CreateGeometry']._options = None
417
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'
450
+ _GEOMETRYSERVICE.methods_by_name['CheckGeometry']._options = None
451
+ _GEOMETRYSERVICE.methods_by_name['CheckGeometry']._serialized_options = b'\202\323\344\223\002%\" /v0/geometry/{geometry_id}/check:\001*'
418
452
  _GEOMETRYSERVICE.methods_by_name['TesselationUpToModification']._options = None
419
453
  _GEOMETRYSERVICE.methods_by_name['TesselationUpToModification']._serialized_options = b'\212\265\030\006\010\024\022\002\010\001'
420
454
  _GEOMETRYSERVICE.methods_by_name['KeepAlive']._options = None
421
455
  _GEOMETRYSERVICE.methods_by_name['KeepAlive']._serialized_options = b'\212\265\030\006\010\024\022\002\010\001'
422
456
  _GEOMETRYSERVICE.methods_by_name['ListTags']._options = None
423
- _GEOMETRYSERVICE.methods_by_name['ListTags']._serialized_options = b'\202\323\344\223\002!\022\037/v0/geometry/{geometry_id}/tags'
457
+ _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
+ _GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._options = None
459
+ _GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._serialized_options = b'\202\323\344\223\002,\022*/v0/geometry_version/{geometry_version_id}'
424
460
  _GEOMETRY._serialized_start=289
425
- _GEOMETRY._serialized_end=465
426
- _TESSELLATIONDATA._serialized_start=468
427
- _TESSELLATIONDATA._serialized_end=687
428
- _GETGEOMETRYREQUEST._serialized_start=689
429
- _GETGEOMETRYREQUEST._serialized_end=730
430
- _GETGEOMETRYRESPONSE._serialized_start=732
431
- _GETGEOMETRYRESPONSE._serialized_end=827
432
- _LISTGEOMETRYFEATURESREQUEST._serialized_start=829
433
- _LISTGEOMETRYFEATURESREQUEST._serialized_end=879
434
- _LISTGEOMETRYFEATURESRESPONSE._serialized_start=881
435
- _LISTGEOMETRYFEATURESRESPONSE._serialized_end=963
436
- _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=965
437
- _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=1020
438
- _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=1022
439
- _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=1122
440
- _LISTGEOMETRYENTITIESREQUEST._serialized_start=1124
441
- _LISTGEOMETRYENTITIESREQUEST._serialized_end=1174
442
- _LISTGEOMETRYENTITIESRESPONSE._serialized_start=1176
443
- _LISTGEOMETRYENTITIESRESPONSE._serialized_end=1299
444
- _LISTGEOMETRIESREQUEST._serialized_start=1301
445
- _LISTGEOMETRIESREQUEST._serialized_end=1344
446
- _LISTGEOMETRIESRESPONSE._serialized_start=1346
447
- _LISTGEOMETRIESRESPONSE._serialized_end=1446
448
- _SUBSCRIBEGEOMETRYREQUEST._serialized_start=1448
449
- _SUBSCRIBEGEOMETRYREQUEST._serialized_end=1521
450
- _GEOMETRYHISTORY._serialized_start=1524
451
- _GEOMETRYHISTORY._serialized_end=1812
452
- _GEOMETRYHISTORY_HISTORYENTRY._serialized_start=1643
453
- _GEOMETRYHISTORY_HISTORYENTRY._serialized_end=1812
454
- _SUBSCRIBEGEOMETRYRESPONSE._serialized_start=1815
455
- _SUBSCRIBEGEOMETRYRESPONSE._serialized_end=3680
456
- _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=2136
457
- _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=2562
458
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=2565
459
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=3664
460
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=3452
461
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=3489
462
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=3491
463
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=3532
464
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=3534
465
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=3544
466
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=3546
467
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=3557
468
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=3559
469
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=3594
470
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=3596
471
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=3631
472
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=3633
473
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=3647
474
- _MODIFYGEOMETRYREQUEST._serialized_start=3682
475
- _MODIFYGEOMETRYREQUEST._serialized_end=3807
476
- _MODIFYGEOMETRYRESPONSE._serialized_start=3810
477
- _MODIFYGEOMETRYRESPONSE._serialized_end=4001
478
- _CREATEGEOMETRYREQUEST._serialized_start=4004
479
- _CREATEGEOMETRYREQUEST._serialized_end=4135
480
- _CREATEGEOMETRYRESPONSE._serialized_start=4137
481
- _CREATEGEOMETRYRESPONSE._serialized_end=4235
482
- _CHECKGEOMETRYREQUEST._serialized_start=4237
483
- _CHECKGEOMETRYREQUEST._serialized_end=4280
484
- _CHECKGEOMETRYRESPONSE._serialized_start=4282
485
- _CHECKGEOMETRYRESPONSE._serialized_end=4333
486
- _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=4335
487
- _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=4418
488
- _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=4420
489
- _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=4478
490
- _LATESTTESSELLATIONREQUEST._serialized_start=4480
491
- _LATESTTESSELLATIONREQUEST._serialized_end=4528
492
- _LATESTTESSELLATIONRESPONSE._serialized_start=4530
493
- _LATESTTESSELLATIONRESPONSE._serialized_end=4583
494
- _KEEPALIVEREQUEST._serialized_start=4585
495
- _KEEPALIVEREQUEST._serialized_end=4624
496
- _KEEPALIVERESPONSE._serialized_start=4626
497
- _KEEPALIVERESPONSE._serialized_end=4645
498
- _PANICREQUEST._serialized_start=4647
499
- _PANICREQUEST._serialized_end=4661
500
- _PANICRESPONSE._serialized_start=4663
501
- _PANICRESPONSE._serialized_end=4678
502
- _STOPWORKERREQUEST._serialized_start=4680
503
- _STOPWORKERREQUEST._serialized_end=4720
504
- _STOPWORKERRESPONSE._serialized_start=4722
505
- _STOPWORKERRESPONSE._serialized_end=4742
506
- _GETTAGSREQUEST._serialized_start=4744
507
- _GETTAGSREQUEST._serialized_end=4810
508
- _GETTAGSRESPONSE._serialized_start=4812
509
- _GETTAGSRESPONSE._serialized_end=4874
510
- _TAG._serialized_start=4876
511
- _TAG._serialized_end=4958
512
- _LISTTAGSREQUEST._serialized_start=4960
513
- _LISTTAGSREQUEST._serialized_end=5027
514
- _LISTTAGSRESPONSE._serialized_start=5029
515
- _LISTTAGSRESPONSE._serialized_end=5112
516
- _GEOMETRYSERVICE._serialized_start=5115
517
- _GEOMETRYSERVICE._serialized_end=7859
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
518
560
  # @@protoc_insertion_point(module_scope)