luminarycloud 0.10.1__py3-none-any.whl → 0.11.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.
- luminarycloud/__init__.py +4 -1
- luminarycloud/_client/client.py +3 -0
- luminarycloud/_helpers/__init__.py +2 -0
- luminarycloud/_helpers/download.py +41 -15
- luminarycloud/_helpers/warnings/__init__.py +2 -0
- luminarycloud/_helpers/warnings/deprecated.py +55 -0
- luminarycloud/_helpers/warnings/experimental.py +42 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +129 -97
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +73 -9
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +33 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +10 -0
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +64 -64
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +9 -2
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.py +0 -4
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.pyi +0 -8
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +57 -100
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +9 -97
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.py +47 -3
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.pyi +64 -0
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.py +68 -0
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.pyi +24 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +384 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +813 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.py +198 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2_grpc.pyi +64 -0
- luminarycloud/_proto/base/base_pb2.py +8 -7
- luminarycloud/_proto/base/base_pb2.pyi +6 -2
- luminarycloud/_proto/client/simulation_pb2.py +217 -208
- luminarycloud/_proto/client/simulation_pb2.pyi +27 -2
- luminarycloud/_wrapper.py +4 -0
- luminarycloud/enum/__init__.py +11 -0
- luminarycloud/enum/quantity_type.py +84 -45
- luminarycloud/enum/vector3_component.py +20 -0
- luminarycloud/enum/vis_enums.py +171 -0
- luminarycloud/geometry.py +9 -31
- luminarycloud/geometry_version.py +142 -0
- luminarycloud/mesh.py +19 -0
- luminarycloud/meshing/mesh_adaptation_params.py +2 -0
- luminarycloud/meshing/mesh_generation_params.py +3 -2
- luminarycloud/meshing/sizing_strategy/__init__.py +1 -0
- luminarycloud/meshing/sizing_strategy/sizing_strategies.py +20 -0
- luminarycloud/params/convergence_criteria/convergence_criteria.py +56 -11
- luminarycloud/params/enum/_enum_wrappers.py +16 -0
- luminarycloud/params/param_wrappers/simulation_param/__init__.py +0 -1
- luminarycloud/params/param_wrappers/simulation_param/output_.py +0 -12
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/farfield_.py +5 -1
- luminarycloud/params/param_wrappers/simulation_param/time/time_step_ramp/time_step_ramp_on_.py +1 -1
- luminarycloud/params/param_wrappers/simulation_param/time_.py +2 -2
- luminarycloud/params/param_wrappers/simulation_param_.py +0 -7
- luminarycloud/project.py +14 -7
- luminarycloud/reference_values.py +27 -12
- luminarycloud/simulation.py +26 -7
- luminarycloud/simulation_param.py +78 -9
- luminarycloud/simulation_template.py +3 -2
- luminarycloud/solution.py +39 -2
- luminarycloud/tag.py +26 -0
- luminarycloud/types/__init__.py +4 -1
- luminarycloud/types/vector3.py +35 -0
- luminarycloud/vis/__init__.py +26 -0
- luminarycloud/vis/display.py +127 -0
- luminarycloud/vis/filters.py +183 -0
- luminarycloud/vis/visualization.py +471 -0
- luminarycloud/volume_selection.py +153 -45
- {luminarycloud-0.10.1.dist-info → luminarycloud-0.11.0.dist-info}/METADATA +1 -1
- {luminarycloud-0.10.1.dist-info → luminarycloud-0.11.0.dist-info}/RECORD +67 -54
- {luminarycloud-0.10.1.dist-info → luminarycloud-0.11.0.dist-info}/WHEEL +1 -1
- luminarycloud/_helpers/deprecated.py +0 -19
- luminarycloud/params/param_wrappers/simulation_param/reference_values_.py +0 -68
- {luminarycloud-0.10.1.dist-info → luminarycloud-0.11.0.dist-info}/top_level.txt +0 -0
luminarycloud/__init__.py
CHANGED
|
@@ -9,6 +9,7 @@ from . import (
|
|
|
9
9
|
meshing as meshing,
|
|
10
10
|
params as params,
|
|
11
11
|
types as types,
|
|
12
|
+
vis as vis,
|
|
12
13
|
)
|
|
13
14
|
|
|
14
15
|
from ._client import (
|
|
@@ -50,7 +51,9 @@ from .solution import (
|
|
|
50
51
|
from .reference_values import (
|
|
51
52
|
ReferenceValues as ReferenceValues,
|
|
52
53
|
)
|
|
53
|
-
|
|
54
|
+
from .volume_selection import (
|
|
55
|
+
VolumeSelection as VolumeSelection,
|
|
56
|
+
)
|
|
54
57
|
|
|
55
58
|
# Log SDK version number
|
|
56
59
|
logger = _logging.getLogger("luminarycloud")
|
luminarycloud/_client/client.py
CHANGED
|
@@ -20,6 +20,7 @@ from .._proto.api.v0.luminarycloud.simulation_template.simulation_template_pb2_g
|
|
|
20
20
|
)
|
|
21
21
|
from .._proto.api.v0.luminarycloud.solution.solution_pb2_grpc import SolutionServiceStub
|
|
22
22
|
from .._proto.api.v0.luminarycloud.upload.upload_pb2_grpc import UploadServiceStub
|
|
23
|
+
from .._proto.api.v0.luminarycloud.vis.vis_pb2_grpc import VisAPIServiceStub
|
|
23
24
|
from .authentication_plugin import AuthenticationPlugin
|
|
24
25
|
from .config import LC_DOMAIN, LC_API_KEY
|
|
25
26
|
from .logging_interceptor import LoggingInterceptor
|
|
@@ -38,6 +39,7 @@ class Client(
|
|
|
38
39
|
GeometryServiceStub,
|
|
39
40
|
SolutionServiceStub,
|
|
40
41
|
UploadServiceStub,
|
|
42
|
+
VisAPIServiceStub,
|
|
41
43
|
):
|
|
42
44
|
"""
|
|
43
45
|
Creates a Luminary API client.
|
|
@@ -177,6 +179,7 @@ class Client(
|
|
|
177
179
|
UploadServiceStub.__init__(self, self._channel)
|
|
178
180
|
SolutionServiceStub.__init__(self, self._channel)
|
|
179
181
|
SimulationTemplateServiceStub.__init__(self, self._channel)
|
|
182
|
+
VisAPIServiceStub.__init__(self, self._channel)
|
|
180
183
|
|
|
181
184
|
for name, value in self.__dict__.items():
|
|
182
185
|
if isinstance(value, grpc.UnaryUnaryMultiCallable):
|
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
115
|
-
|
|
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,55 @@
|
|
|
1
|
+
import warnings
|
|
2
|
+
from functools import wraps
|
|
3
|
+
from typing import Callable, TypeVar
|
|
4
|
+
|
|
5
|
+
C = TypeVar("C")
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def deprecated(reason: str, version: str) -> Callable[[C], C]:
|
|
9
|
+
"""
|
|
10
|
+
Mark a class or function as deprecated.
|
|
11
|
+
|
|
12
|
+
Parameters
|
|
13
|
+
----------
|
|
14
|
+
reason : str
|
|
15
|
+
The reason for deprecation.
|
|
16
|
+
version : str
|
|
17
|
+
The version in which the class or function was deprecated.
|
|
18
|
+
"""
|
|
19
|
+
|
|
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
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def _deprecated_class(cls: type[C], reason: str, version: str) -> type[C]:
|
|
30
|
+
old_init = cls.__init__
|
|
31
|
+
|
|
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
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import warnings
|
|
2
|
+
from functools import wraps
|
|
3
|
+
from typing import Callable, TypeVar
|
|
4
|
+
|
|
5
|
+
C = TypeVar("C")
|
|
6
|
+
|
|
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:
|
|
33
|
+
@wraps(f)
|
|
34
|
+
def new_func(*args, **kwargs):
|
|
35
|
+
warnings.warn(
|
|
36
|
+
f"{f.__name__}() is an experimental feature and may change or be removed without notice.",
|
|
37
|
+
category=FutureWarning,
|
|
38
|
+
stacklevel=2,
|
|
39
|
+
)
|
|
40
|
+
return f(*args, **kwargs)
|
|
41
|
+
|
|
42
|
+
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\"\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\"\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\xe5\x17\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\xda\x01\n\x14ListGeometryEntities\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesResponse\"+\x82\xd3\xe4\x93\x02%\x12#/v0/geometry/{geometry_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\xda\x01\n\x14ListGeometryFeatures\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesResponse\"+\x82\xd3\xe4\x93\x02%\x12#/v0/geometry/{geometry_id}/features\x12\xf0\x01\n\x19ListGeometryFeatureIssues\x12N.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesRequest\x1aO.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesResponse\"2\x82\xd3\xe4\x93\x02,\x12*/v0/geometry/{geometry_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\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,6 +412,20 @@ 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
|
|
|
@@ -410,13 +434,13 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
410
434
|
_GEOMETRYSERVICE.methods_by_name['ListGeometries']._options = None
|
|
411
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'
|
|
412
436
|
_GEOMETRYSERVICE.methods_by_name['ListGeometryEntities']._options = None
|
|
413
|
-
_GEOMETRYSERVICE.methods_by_name['ListGeometryEntities']._serialized_options = b'\202\323\344\223\002
|
|
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'
|
|
414
438
|
_GEOMETRYSERVICE.methods_by_name['GetGeometry']._options = None
|
|
415
439
|
_GEOMETRYSERVICE.methods_by_name['GetGeometry']._serialized_options = b'\202\323\344\223\002\034\022\032/v0/geometry/{geometry_id}'
|
|
416
440
|
_GEOMETRYSERVICE.methods_by_name['ListGeometryFeatures']._options = None
|
|
417
|
-
_GEOMETRYSERVICE.methods_by_name['ListGeometryFeatures']._serialized_options = b'\202\323\344\223\002
|
|
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'
|
|
418
442
|
_GEOMETRYSERVICE.methods_by_name['ListGeometryFeatureIssues']._options = None
|
|
419
|
-
_GEOMETRYSERVICE.methods_by_name['ListGeometryFeatureIssues']._serialized_options = b'\202\323\344\223\
|
|
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'
|
|
420
444
|
_GEOMETRYSERVICE.methods_by_name['SubscribeGeometry']._options = None
|
|
421
445
|
_GEOMETRYSERVICE.methods_by_name['SubscribeGeometry']._serialized_options = b'\212\265\030\002\0102'
|
|
422
446
|
_GEOMETRYSERVICE.methods_by_name['ModifyGeometry']._options = None
|
|
@@ -430,99 +454,107 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
430
454
|
_GEOMETRYSERVICE.methods_by_name['KeepAlive']._options = None
|
|
431
455
|
_GEOMETRYSERVICE.methods_by_name['KeepAlive']._serialized_options = b'\212\265\030\006\010\024\022\002\010\001'
|
|
432
456
|
_GEOMETRYSERVICE.methods_by_name['ListTags']._options = None
|
|
433
|
-
_GEOMETRYSERVICE.methods_by_name['ListTags']._serialized_options = b'\202\323\344\223\
|
|
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}'
|
|
434
460
|
_GEOMETRY._serialized_start=289
|
|
435
461
|
_GEOMETRY._serialized_end=485
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
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
|
|
528
560
|
# @@protoc_insertion_point(module_scope)
|