luminarycloud 0.11.0__py3-none-any.whl → 0.12.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- luminarycloud/__init__.py +1 -0
- luminarycloud/_client/client.py +3 -0
- luminarycloud/_client/tracing.py +10 -2
- luminarycloud/_helpers/create_geometry.py +23 -1
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +139 -102
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +73 -2
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +103 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +37 -0
- luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2.py +131 -0
- luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2.pyi +186 -0
- luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2_grpc.py +207 -0
- luminarycloud/_proto/api/v0/luminarycloud/output_node/output_node_pb2_grpc.pyi +79 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +8 -7
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +10 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +198 -77
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +372 -39
- luminarycloud/_proto/client/simulation_pb2.py +253 -253
- luminarycloud/_proto/client/simulation_pb2.pyi +5 -1
- luminarycloud/_proto/frontend/output/output_pb2.py +266 -0
- luminarycloud/_proto/frontend/output/output_pb2.pyi +607 -0
- luminarycloud/_proto/quantity/quantity_pb2.py +13 -13
- luminarycloud/enum/__init__.py +11 -5
- luminarycloud/enum/calculation_type.py +6 -1
- luminarycloud/enum/force_direction_type.py +20 -0
- luminarycloud/enum/output_node_includes.py +29 -0
- luminarycloud/enum/quantity_type.py +37 -3
- luminarycloud/enum/residual_type.py +23 -0
- luminarycloud/enum/space_averaging_type.py +21 -0
- luminarycloud/enum/vis_enums.py +12 -3
- luminarycloud/enum/volume_reduction_type.py +21 -0
- luminarycloud/geometry.py +161 -5
- luminarycloud/meshing/mesh_generation_params.py +26 -14
- luminarycloud/outputs/__init__.py +18 -0
- luminarycloud/outputs/output_nodes.py +603 -0
- luminarycloud/params/geometry/shapes.py +3 -4
- luminarycloud/params/param_wrappers/simulation_param/monitor_plane_.py +2 -4
- luminarycloud/params/param_wrappers/simulation_param/output_.py +4 -0
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/adjoint_controls_fluid_.py +2 -4
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/inlet_.py +1 -2
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/wall_.py +2 -4
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid/turbulence/komega_sst_.py +1 -2
- luminarycloud/params/param_wrappers/simulation_param/physics/fluid_.py +20 -0
- luminarycloud/params/param_wrappers/simulation_param/physics/heat/boundary_conditions_heat_.py +1 -2
- luminarycloud/params/param_wrappers/simulation_param/physics/heat/heat_source_.py +1 -2
- luminarycloud/project.py +46 -0
- luminarycloud/types/__init__.py +1 -0
- luminarycloud/types/ids.py +1 -0
- luminarycloud/types/vector3.py +14 -1
- luminarycloud/vis/__init__.py +6 -1
- luminarycloud/vis/display.py +10 -7
- luminarycloud/vis/filters.py +220 -43
- luminarycloud/vis/util.py +46 -0
- luminarycloud/vis/visualization.py +107 -31
- {luminarycloud-0.11.0.dist-info → luminarycloud-0.12.0.dist-info}/METADATA +1 -1
- {luminarycloud-0.11.0.dist-info → luminarycloud-0.12.0.dist-info}/RECORD +57 -43
- {luminarycloud-0.11.0.dist-info → luminarycloud-0.12.0.dist-info}/WHEEL +1 -1
- {luminarycloud-0.11.0.dist-info → luminarycloud-0.12.0.dist-info}/top_level.txt +0 -0
luminarycloud/__init__.py
CHANGED
luminarycloud/_client/client.py
CHANGED
|
@@ -11,6 +11,7 @@ import grpc
|
|
|
11
11
|
from .._auth import Auth0Client
|
|
12
12
|
from .._proto.api.v0.luminarycloud.geometry.geometry_pb2_grpc import GeometryServiceStub
|
|
13
13
|
from .._proto.api.v0.luminarycloud.mesh.mesh_pb2_grpc import MeshServiceStub
|
|
14
|
+
from .._proto.api.v0.luminarycloud.output_node.output_node_pb2_grpc import OutputNodeServiceStub
|
|
14
15
|
from .._proto.api.v0.luminarycloud.project.project_pb2_grpc import ProjectServiceStub
|
|
15
16
|
from .._proto.api.v0.luminarycloud.simulation.simulation_pb2_grpc import (
|
|
16
17
|
SimulationServiceStub,
|
|
@@ -40,6 +41,7 @@ class Client(
|
|
|
40
41
|
SolutionServiceStub,
|
|
41
42
|
UploadServiceStub,
|
|
42
43
|
VisAPIServiceStub,
|
|
44
|
+
OutputNodeServiceStub,
|
|
43
45
|
):
|
|
44
46
|
"""
|
|
45
47
|
Creates a Luminary API client.
|
|
@@ -180,6 +182,7 @@ class Client(
|
|
|
180
182
|
SolutionServiceStub.__init__(self, self._channel)
|
|
181
183
|
SimulationTemplateServiceStub.__init__(self, self._channel)
|
|
182
184
|
VisAPIServiceStub.__init__(self, self._channel)
|
|
185
|
+
OutputNodeServiceStub.__init__(self, self._channel)
|
|
183
186
|
|
|
184
187
|
for name, value in self.__dict__.items():
|
|
185
188
|
if isinstance(value, grpc.UnaryUnaryMultiCallable):
|
luminarycloud/_client/tracing.py
CHANGED
|
@@ -64,7 +64,11 @@ class Auth0SpanExporter(OTLPSpanExporter):
|
|
|
64
64
|
"authorization": "Bearer " + token,
|
|
65
65
|
}
|
|
66
66
|
self._session.headers.update(headers)
|
|
67
|
-
|
|
67
|
+
try:
|
|
68
|
+
return OTLPSpanExporter.export(self, spans)
|
|
69
|
+
except Exception as e:
|
|
70
|
+
logger.debug(f"Failed to export traces: {e}")
|
|
71
|
+
return SpanExportResult.FAILURE
|
|
68
72
|
|
|
69
73
|
|
|
70
74
|
class ApiKeySpanExporter(OTLPSpanExporter):
|
|
@@ -88,7 +92,11 @@ class ApiKeySpanExporter(OTLPSpanExporter):
|
|
|
88
92
|
"x-api-key": self.api_key,
|
|
89
93
|
}
|
|
90
94
|
self._session.headers.update(headers)
|
|
91
|
-
|
|
95
|
+
try:
|
|
96
|
+
return OTLPSpanExporter.export(self, spans)
|
|
97
|
+
except Exception as e:
|
|
98
|
+
logger.debug(f"Failed to export traces: {e}")
|
|
99
|
+
return SpanExportResult.FAILURE
|
|
92
100
|
|
|
93
101
|
|
|
94
102
|
def _get_collector_endpoint(primary_domain: str) -> str:
|
|
@@ -6,6 +6,9 @@ from .._client import Client
|
|
|
6
6
|
from .upload import upload_file
|
|
7
7
|
from typing import Any, Optional
|
|
8
8
|
from luminarycloud._helpers import util
|
|
9
|
+
import uuid
|
|
10
|
+
import random
|
|
11
|
+
import time
|
|
9
12
|
|
|
10
13
|
import logging
|
|
11
14
|
|
|
@@ -43,11 +46,30 @@ def create_geometry(
|
|
|
43
46
|
if scaling is None:
|
|
44
47
|
# default to no scaling
|
|
45
48
|
scaling = 1.0
|
|
49
|
+
|
|
46
50
|
create_geo_res: geometrypb.CreateGeometryResponse = client.CreateGeometry(
|
|
47
51
|
geometrypb.CreateGeometryRequest(
|
|
48
|
-
project_id=project_id,
|
|
52
|
+
project_id=project_id,
|
|
53
|
+
name=name,
|
|
54
|
+
url=finish_res.url,
|
|
55
|
+
scaling=scaling,
|
|
56
|
+
wait=False,
|
|
57
|
+
request_id=str(uuid.uuid4()),
|
|
49
58
|
)
|
|
50
59
|
)
|
|
51
60
|
geo = create_geo_res.geometry
|
|
61
|
+
|
|
62
|
+
# Prefer polling on the client than waiting on the server (although waiting on the server
|
|
63
|
+
# notifies the clients potentially faster).
|
|
64
|
+
if wait:
|
|
65
|
+
last_version_id = ""
|
|
66
|
+
while not last_version_id:
|
|
67
|
+
jitter = random.uniform(0.5, 1.5)
|
|
68
|
+
time.sleep(2 + jitter)
|
|
69
|
+
req = geometrypb.GetGeometryRequest(geometry_id=create_geo_res.geometry.id)
|
|
70
|
+
res_geo: geometrypb.GetGeometryResponse = client.GetGeometry(req)
|
|
71
|
+
geo = res_geo.geometry
|
|
72
|
+
last_version_id = geo.last_version_id
|
|
73
|
+
|
|
52
74
|
logger.info(f"created geometry {geo.name} ({geo.id})")
|
|
53
75
|
return geo
|
|
@@ -13,6 +13,7 @@ _sym_db = _symbol_database.Default()
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
16
|
+
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
|
|
16
17
|
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
|
17
18
|
from luminarycloud._proto.geometry import geometry_pb2 as proto_dot_geometry_dot_geometry__pb2
|
|
18
19
|
from luminarycloud._proto.cadmetadata import cadmetadata_pb2 as proto_dot_cadmetadata_dot_cadmetadata__pb2
|
|
@@ -20,7 +21,7 @@ from luminarycloud._proto.lcn import lcmesh_pb2 as proto_dot_lcn_dot_lcmesh__pb2
|
|
|
20
21
|
from luminarycloud._proto.ratelimit import ratelimit_pb2 as proto_dot_ratelimit_dot_ratelimit__pb2
|
|
21
22
|
|
|
22
23
|
|
|
23
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2proto/api/v0/luminarycloud/geometry/geometry.proto\x12,luminary.proto.api.v0.luminarycloud.geometry\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1dproto/geometry/geometry.proto\x1a#proto/cadmetadata/cadmetadata.proto\x1a\x16proto/lcn/lcmesh.proto\x1a\x1fproto/ratelimit/ratelimit.proto\"\xc4\x01\n\x08Geometry\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x64\x65leted\x18\x05 \x01(\x08\x12\x17\n\x0flast_version_id\x18\x06 \x01(\t\x12\x11\n\tuses_tags\x18\x07 \x01(\x08\x12\x16\n\x0e\x66orce_discrete\x18\x08 \x01(\x08\x12\x12\n\nproject_id\x18\t \x01(\tJ\x04\x08\x04\x10\x05\"c\n\x0fGeometryVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bgeometry_id\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xdb\x01\n\x10TessellationData\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12\x11\n\tmeta_data\x18\x02 \x01(\x0c\x12\x36\n\x08lcn_meta\x18\x03 \x01(\x0b\x32$.luminary.proto.lcn.MeshFileMetadata\x12=\n\x0c\x63\x61\x64_metadata\x18\x04 \x01(\x0b\x32\'.luminary.proto.cadmetadata.CadMetadata\x12\x1b\n\x13geometry_version_id\x18\x05 \x01(\t\x12\x12\n\nfeature_id\x18\x06 \x01(\t\")\n\x12GetGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"_\n\x13GetGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"i\n\x1bListGeometryFeaturesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"R\n\x1cListGeometryFeaturesResponse\x12\x32\n\x08\x66\x65\x61tures\x18\x01 \x03(\x0b\x32 .luminary.proto.geometry.Feature\"n\n ListGeometryFeatureIssuesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"d\n!ListGeometryFeatureIssuesResponse\x12?\n\x0f\x66\x65\x61tures_issues\x18\x01 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\"i\n\x1bListGeometryEntitiesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"{\n\x1cListGeometryEntitiesResponse\x12,\n\x05\x66\x61\x63\x65s\x18\x01 \x03(\x0b\x32\x1d.luminary.proto.geometry.Face\x12-\n\x06\x62odies\x18\x02 \x03(\x0b\x32\x1d.luminary.proto.geometry.Body\"+\n\x15ListGeometriesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"d\n\x16ListGeometriesResponse\x12J\n\ngeometries\x18\x01 \x03(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"I\n\x18SubscribeGeometryRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x13\n\x0bgeometry_id\x18\x02 \x01(\tJ\x04\x08\x03\x10\x04\"\xa0\x02\n\x0fGeometryHistory\x12\x61\n\rhistory_entry\x18\x01 \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.geometry.GeometryHistory.HistoryEntry\x1a\xa9\x01\n\x0cHistoryEntry\x12;\n\x0cmodification\x18\x01 \x01(\x0b\x32%.luminary.proto.geometry.Modification\x12#\n\x1bgeometry_version_initial_id\x18\x02 \x01(\t\x12\x1f\n\x17geometry_version_new_id\x18\x03 \x01(\t\x12\x16\n\x0e\x63heckpoint_url\x18\x04 \x01(\t\"\xc9\x0e\n\x19SubscribeGeometryResponse\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12p\n\ncheckpoint\x18\x05 \x01(\x0b\x32Z.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.GeometryCheckpointH\x00\x12\x61\n\x04\x62usy\x18\x06 \x01(\x0b\x32Q.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyStateH\x00\x12\x1d\n\x13worker_disconnected\x18\x07 \x01(\x08H\x00\x12\x18\n\x0ereceived_error\x18\x08 \x01(\x08H\x00\x1a\xaa\x03\n\x12GeometryCheckpoint\x12\x10\n\x08mesh_url\x18\x02 \x01(\t\x12\x32\n\x08\x66\x65\x61tures\x18\x03 \x03(\x0b\x32 .luminary.proto.geometry.Feature\x12?\n\x0f\x66\x65\x61tures_issues\x18\x08 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\x12W\n\x10geometry_history\x18\x04 \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryHistory\x12Y\n\x11tessellation_data\x18\x05 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.geometry.TessellationData\x12\x15\n\rn_avail_undos\x18\x06 \x01(\x05\x12\x15\n\rn_avail_redos\x18\x07 \x01(\x05\x12+\n\x04tags\x18\t \x01(\x0b\x32\x1d.luminary.proto.geometry.Tags\x1a\xcb\x08\n\tBusyState\x12\x0f\n\x07message\x18\x01 \x01(\t\x12}\n\x10\x66\x65\x61ture_progress\x18\x05 \x01(\x0b\x32\x61.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.FeatureProgressH\x00\x12\x85\x01\n\x14\x66\x65\x61ture_tessellation\x18\x06 \x01(\x0b\x32\x65.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.FeatureTessellationH\x00\x12o\n\tundo_redo\x18\x07 \x01(\x0b\x32Z.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.UndoRedoH\x00\x12p\n\treloading\x18\x08 \x01(\x0b\x32[.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.ReloadingH\x00\x12y\n\x0e\x64\x65lete_feature\x18\t \x01(\x0b\x32_.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.DeleteFeatureH\x00\x12y\n\x0erename_feature\x18\n \x01(\x0b\x32_.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.RenameFeatureH\x00\x12w\n\rtag_operation\x18\x0b \x01(\x0b\x32^.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.TagOperationH\x00\x1a%\n\x0f\x46\x65\x61tureProgress\x12\x12\n\nfeature_id\x18\x02 \x01(\t\x1a)\n\x13\x46\x65\x61tureTessellation\x12\x12\n\nfeature_id\x18\x03 \x01(\t\x1a\n\n\x08UndoRedo\x1a\x0b\n\tReloading\x1a#\n\rDeleteFeature\x12\x12\n\nfeature_id\x18\x04 \x01(\t\x1a#\n\rRenameFeature\x12\x12\n\nfeature_id\x18\x01 \x01(\t\x1a\x0e\n\x0cTagOperationB\x0f\n\rBusyStateTypeB\x0e\n\x0cResponseType\"}\n\x15ModifyGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12;\n\x0cmodification\x18\x02 \x01(\x0b\x32%.luminary.proto.geometry.Modification\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"\xbf\x01\n\x16ModifyGeometryResponse\x12\x32\n\x08\x66\x65\x61tures\x18\x01 \x03(\x0b\x32 .luminary.proto.geometry.Feature\x12\x30\n\x07volumes\x18\x02 \x03(\x0b\x32\x1f.luminary.proto.geometry.Volume\x12?\n\x0f\x66\x65\x61tures_issues\x18\x03 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\"\x83\x01\n\x15\x43reateGeometryRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0b\n\x03url\x18\x03 \x01(\t\x12\x0f\n\x07scaling\x18\x04 \x01(\x01\x12\x0c\n\x04wait\x18\x05 \x01(\x08\x12\x16\n\x0e\x66orce_discrete\x18\x07 \x01(\x08J\x04\x08\x06\x10\x07\"b\n\x16\x43reateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"+\n\x14\x43heckGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"3\n\x15\x43heckGeometryResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0e\n\x06issues\x18\x02 \x03(\t\"S\n#TessellationUpToModificationRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x17\n\x0fmodification_id\x18\x02 \x01(\t\":\n$TessellationUpToModificationResponse\x12\x12\n\ntessel_url\x18\x01 \x01(\t\"0\n\x19LatestTessellationRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"5\n\x1aLatestTessellationResponse\x12\x17\n\x0ftesselation_url\x18\x01 \x01(\t\"\'\n\x10KeepAliveRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x13\n\x11KeepAliveResponse\"\x0e\n\x0cPanicRequest\"\x0f\n\rPanicResponse\"(\n\x11StopWorkerRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x14\n\x12StopWorkerResponse\"B\n\x0eGetTagsRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\">\n\x0fGetTagsResponse\x12+\n\x04tags\x18\x01 \x01(\x0b\x32\x1d.luminary.proto.geometry.Tags\"R\n\x03Tag\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06\x62odies\x18\x03 \x03(\x05\x12\x0f\n\x07volumes\x18\x04 \x03(\t\x12\x10\n\x08surfaces\x18\x05 \x03(\t\"]\n\x0fListTagsRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"S\n\x10ListTagsResponse\x12?\n\x04tags\x18\x01 \x03(\x0b\x32\x31.luminary.proto.api.v0.luminarycloud.geometry.Tag\"8\n\x19GetGeometryVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\"u\n\x1aGetGeometryVersionResponse\x12W\n\x10geometry_version\x18\x01 \x01(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion2\xa2\x1b\n\x0fGeometryService\x12\xd3\x01\n\x0eListGeometries\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesResponse\"6\x82\xd3\xe4\x93\x02&\x12$/v0/projects/{project_id}/geometries\x8a\xb5\x18\x06\x08<\x12\x02\x08\x01\x12\x91\x02\n\x14ListGeometryEntities\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesResponse\"b\x82\xd3\xe4\x93\x02\\\x12#/v0/geometry/{geometry_id}/entitiesZ5\x12\x33/v0/geometry_version/{geometry_version_id}/entities\x12\xb6\x01\n\x0bGetGeometry\x12@.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/geometry/{geometry_id}\x12\x91\x02\n\x14ListGeometryFeatures\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesResponse\"b\x82\xd3\xe4\x93\x02\\\x12#/v0/geometry/{geometry_id}/featuresZ5\x12\x33/v0/geometry_version/{geometry_version_id}/features\x12\xae\x02\n\x19ListGeometryFeatureIssues\x12N.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesRequest\x1aO.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesResponse\"p\x82\xd3\xe4\x93\x02j\x12*/v0/geometry/{geometry_id}/features/issuesZ<\x12:/v0/geometry_version/{geometry_version_id}/features/issues\x12\xae\x01\n\x11SubscribeGeometry\x12\x46.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryRequest\x1aG.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse\"\x06\x8a\xb5\x18\x02\x08\x32\x30\x01\x12\xd3\x01\n\x0eModifyGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryResponse\"6\x82\xd3\xe4\x93\x02&\"!/v0/geometry/{geometry_id}/modify:\x01*\x8a\xb5\x18\x06\x08<\x12\x02\x08\x01\x12\xdb\x01\n\x0e\x43reateGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.CreateGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.CreateGeometryResponse\">\x82\xd3\xe4\x93\x02.\")/v0/projects/{project_id}/create-geometry:\x01*\x8a\xb5\x18\x06\x08(\x12\x02\x08\x01\x12\xc5\x01\n\rCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x43.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryResponse\"+\x82\xd3\xe4\x93\x02%\" /v0/geometry/{geometry_id}/check:\x01*\x12\xd0\x01\n\x1bTesselationUpToModification\x12Q.luminary.proto.api.v0.luminarycloud.geometry.TessellationUpToModificationRequest\x1aR.luminary.proto.api.v0.luminarycloud.geometry.TessellationUpToModificationResponse\"\n\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\xa7\x01\n\x12LatestTessellation\x12G.luminary.proto.api.v0.luminarycloud.geometry.LatestTessellationRequest\x1aH.luminary.proto.api.v0.luminarycloud.geometry.LatestTessellationResponse\x12\x98\x01\n\tKeepAlive\x12>.luminary.proto.api.v0.luminarycloud.geometry.KeepAliveRequest\x1a?.luminary.proto.api.v0.luminarycloud.geometry.KeepAliveResponse\"\n\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\x80\x01\n\x05Panic\x12:.luminary.proto.api.v0.luminarycloud.geometry.PanicRequest\x1a;.luminary.proto.api.v0.luminarycloud.geometry.PanicResponse\x12\x8f\x01\n\nStopWorker\x12?.luminary.proto.api.v0.luminarycloud.geometry.StopWorkerRequest\x1a@.luminary.proto.api.v0.luminarycloud.geometry.StopWorkerResponse\x12\x86\x01\n\x07GetTags\x12<.luminary.proto.api.v0.luminarycloud.geometry.GetTagsRequest\x1a=.luminary.proto.api.v0.luminarycloud.geometry.GetTagsResponse\x12\xe5\x01\n\x08ListTags\x12=.luminary.proto.api.v0.luminarycloud.geometry.ListTagsRequest\x1a>.luminary.proto.api.v0.luminarycloud.geometry.ListTagsResponse\"Z\x82\xd3\xe4\x93\x02T\x12\x1f/v0/geometry/{geometry_id}/tagsZ1\x12//v0/geometry_version/{geometry_version_id}/tags\x12\xdb\x01\n\x12GetGeometryVersion\x12G.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionRequest\x1aH.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionResponse\"2\x82\xd3\xe4\x93\x02,\x12*/v0/geometry_version/{geometry_version_id}B<Z:luminarycloud.com/core/proto/api/v0/luminarycloud/geometryb\x06proto3')
|
|
24
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2proto/api/v0/luminarycloud/geometry/geometry.proto\x12,luminary.proto.api.v0.luminarycloud.geometry\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1dproto/geometry/geometry.proto\x1a#proto/cadmetadata/cadmetadata.proto\x1a\x16proto/lcn/lcmesh.proto\x1a\x1fproto/ratelimit/ratelimit.proto\"\xc4\x01\n\x08Geometry\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0f\n\x07\x64\x65leted\x18\x05 \x01(\x08\x12\x17\n\x0flast_version_id\x18\x06 \x01(\t\x12\x11\n\tuses_tags\x18\x07 \x01(\x08\x12\x16\n\x0e\x66orce_discrete\x18\x08 \x01(\x08\x12\x12\n\nproject_id\x18\t \x01(\tJ\x04\x08\x04\x10\x05\"c\n\x0fGeometryVersion\x12\n\n\x02id\x18\x01 \x01(\t\x12\x13\n\x0bgeometry_id\x18\x02 \x01(\t\x12/\n\x0b\x63reate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xdb\x01\n\x10TessellationData\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12\x11\n\tmeta_data\x18\x02 \x01(\x0c\x12\x36\n\x08lcn_meta\x18\x03 \x01(\x0b\x32$.luminary.proto.lcn.MeshFileMetadata\x12=\n\x0c\x63\x61\x64_metadata\x18\x04 \x01(\x0b\x32\'.luminary.proto.cadmetadata.CadMetadata\x12\x1b\n\x13geometry_version_id\x18\x05 \x01(\t\x12\x12\n\nfeature_id\x18\x06 \x01(\t\")\n\x12GetGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"_\n\x13GetGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"i\n\x1bListGeometryFeaturesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"R\n\x1cListGeometryFeaturesResponse\x12\x32\n\x08\x66\x65\x61tures\x18\x01 \x03(\x0b\x32 .luminary.proto.geometry.Feature\"n\n ListGeometryFeatureIssuesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"d\n!ListGeometryFeatureIssuesResponse\x12?\n\x0f\x66\x65\x61tures_issues\x18\x01 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\"i\n\x1bListGeometryEntitiesRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"{\n\x1cListGeometryEntitiesResponse\x12,\n\x05\x66\x61\x63\x65s\x18\x01 \x03(\x0b\x32\x1d.luminary.proto.geometry.Face\x12-\n\x06\x62odies\x18\x02 \x03(\x0b\x32\x1d.luminary.proto.geometry.Body\"+\n\x15ListGeometriesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"d\n\x16ListGeometriesResponse\x12J\n\ngeometries\x18\x01 \x03(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"I\n\x18SubscribeGeometryRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x13\n\x0bgeometry_id\x18\x02 \x01(\tJ\x04\x08\x03\x10\x04\"\xa0\x02\n\x0fGeometryHistory\x12\x61\n\rhistory_entry\x18\x01 \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.geometry.GeometryHistory.HistoryEntry\x1a\xa9\x01\n\x0cHistoryEntry\x12;\n\x0cmodification\x18\x01 \x01(\x0b\x32%.luminary.proto.geometry.Modification\x12#\n\x1bgeometry_version_initial_id\x18\x02 \x01(\t\x12\x1f\n\x17geometry_version_new_id\x18\x03 \x01(\t\x12\x16\n\x0e\x63heckpoint_url\x18\x04 \x01(\t\"\xc9\x0e\n\x19SubscribeGeometryResponse\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12p\n\ncheckpoint\x18\x05 \x01(\x0b\x32Z.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.GeometryCheckpointH\x00\x12\x61\n\x04\x62usy\x18\x06 \x01(\x0b\x32Q.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyStateH\x00\x12\x1d\n\x13worker_disconnected\x18\x07 \x01(\x08H\x00\x12\x18\n\x0ereceived_error\x18\x08 \x01(\x08H\x00\x1a\xaa\x03\n\x12GeometryCheckpoint\x12\x10\n\x08mesh_url\x18\x02 \x01(\t\x12\x32\n\x08\x66\x65\x61tures\x18\x03 \x03(\x0b\x32 .luminary.proto.geometry.Feature\x12?\n\x0f\x66\x65\x61tures_issues\x18\x08 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\x12W\n\x10geometry_history\x18\x04 \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryHistory\x12Y\n\x11tessellation_data\x18\x05 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.geometry.TessellationData\x12\x15\n\rn_avail_undos\x18\x06 \x01(\x05\x12\x15\n\rn_avail_redos\x18\x07 \x01(\x05\x12+\n\x04tags\x18\t \x01(\x0b\x32\x1d.luminary.proto.geometry.Tags\x1a\xcb\x08\n\tBusyState\x12\x0f\n\x07message\x18\x01 \x01(\t\x12}\n\x10\x66\x65\x61ture_progress\x18\x05 \x01(\x0b\x32\x61.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.FeatureProgressH\x00\x12\x85\x01\n\x14\x66\x65\x61ture_tessellation\x18\x06 \x01(\x0b\x32\x65.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.FeatureTessellationH\x00\x12o\n\tundo_redo\x18\x07 \x01(\x0b\x32Z.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.UndoRedoH\x00\x12p\n\treloading\x18\x08 \x01(\x0b\x32[.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.ReloadingH\x00\x12y\n\x0e\x64\x65lete_feature\x18\t \x01(\x0b\x32_.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.DeleteFeatureH\x00\x12y\n\x0erename_feature\x18\n \x01(\x0b\x32_.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.RenameFeatureH\x00\x12w\n\rtag_operation\x18\x0b \x01(\x0b\x32^.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse.BusyState.TagOperationH\x00\x1a%\n\x0f\x46\x65\x61tureProgress\x12\x12\n\nfeature_id\x18\x02 \x01(\t\x1a)\n\x13\x46\x65\x61tureTessellation\x12\x12\n\nfeature_id\x18\x03 \x01(\t\x1a\n\n\x08UndoRedo\x1a\x0b\n\tReloading\x1a#\n\rDeleteFeature\x12\x12\n\nfeature_id\x18\x04 \x01(\t\x1a#\n\rRenameFeature\x12\x12\n\nfeature_id\x18\x01 \x01(\t\x1a\x0e\n\x0cTagOperationB\x0f\n\rBusyStateTypeB\x0e\n\x0cResponseType\"}\n\x15ModifyGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12;\n\x0cmodification\x18\x02 \x01(\x0b\x32%.luminary.proto.geometry.Modification\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"\xbf\x01\n\x16ModifyGeometryResponse\x12\x32\n\x08\x66\x65\x61tures\x18\x01 \x03(\x0b\x32 .luminary.proto.geometry.Feature\x12\x30\n\x07volumes\x18\x02 \x03(\x0b\x32\x1f.luminary.proto.geometry.Volume\x12?\n\x0f\x66\x65\x61tures_issues\x18\x03 \x03(\x0b\x32&.luminary.proto.geometry.FeatureIssues\"\x97\x01\n\x15\x43reateGeometryRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0b\n\x03url\x18\x03 \x01(\t\x12\x0f\n\x07scaling\x18\x04 \x01(\x01\x12\x0c\n\x04wait\x18\x05 \x01(\x08\x12\x16\n\x0e\x66orce_discrete\x18\x07 \x01(\x08\x12\x12\n\nrequest_id\x18\x08 \x01(\tJ\x04\x08\x06\x10\x07\"b\n\x16\x43reateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"H\n\x14\x43heckGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\"3\n\x15\x43heckGeometryResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0e\n\x06issues\x18\x02 \x03(\t\"H\n\x18GetCheckGeometryResponse\x12\n\n\x02ok\x18\x01 \x01(\x08\x12\x0e\n\x06issues\x18\x02 \x03(\t\x12\x10\n\x08\x66inished\x18\x03 \x01(\x08\"S\n#TessellationUpToModificationRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x17\n\x0fmodification_id\x18\x02 \x01(\t\":\n$TessellationUpToModificationResponse\x12\x12\n\ntessel_url\x18\x01 \x01(\t\"0\n\x19LatestTessellationRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"5\n\x1aLatestTessellationResponse\x12\x17\n\x0ftesselation_url\x18\x01 \x01(\t\"\'\n\x10KeepAliveRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x13\n\x11KeepAliveResponse\"\x0e\n\x0cPanicRequest\"\x0f\n\rPanicResponse\"(\n\x11StopWorkerRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x14\n\x12StopWorkerResponse\"B\n\x0eGetTagsRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\">\n\x0fGetTagsResponse\x12+\n\x04tags\x18\x01 \x01(\x0b\x32\x1d.luminary.proto.geometry.Tags\"R\n\x03Tag\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06\x62odies\x18\x03 \x03(\x05\x12\x0f\n\x07volumes\x18\x04 \x03(\t\x12\x10\n\x08surfaces\x18\x05 \x03(\t\"]\n\x0fListTagsRequest\x12\x15\n\x0bgeometry_id\x18\x01 \x01(\tH\x00\x12\x1d\n\x13geometry_version_id\x18\x02 \x01(\tH\x00\x42\x14\n\x12parent_resource_id\"S\n\x10ListTagsResponse\x12?\n\x04tags\x18\x01 \x03(\x0b\x32\x31.luminary.proto.api.v0.luminarycloud.geometry.Tag\"8\n\x19GetGeometryVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\"u\n\x1aGetGeometryVersionResponse\x12W\n\x10geometry_version\x18\x01 \x01(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\"E\n\x11GetSdkCodeRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x1b\n\x13geometry_version_id\x18\x02 \x01(\t\"&\n\x12GetSdkCodeResponse\x12\x10\n\x08sdk_code\x18\x01 \x01(\t2\xe3\x1f\n\x0fGeometryService\x12\xd3\x01\n\x0eListGeometries\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ListGeometriesResponse\"6\x82\xd3\xe4\x93\x02&\x12$/v0/projects/{project_id}/geometries\x8a\xb5\x18\x06\x08<\x12\x02\x08\x01\x12\x91\x02\n\x14ListGeometryEntities\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryEntitiesResponse\"b\x82\xd3\xe4\x93\x02\\\x12#/v0/geometry/{geometry_id}/entitiesZ5\x12\x33/v0/geometry_version/{geometry_version_id}/entities\x12\xb6\x01\n\x0bGetGeometry\x12@.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/geometry/{geometry_id}\x12\x91\x02\n\x14ListGeometryFeatures\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeaturesResponse\"b\x82\xd3\xe4\x93\x02\\\x12#/v0/geometry/{geometry_id}/featuresZ5\x12\x33/v0/geometry_version/{geometry_version_id}/features\x12\xae\x02\n\x19ListGeometryFeatureIssues\x12N.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesRequest\x1aO.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryFeatureIssuesResponse\"p\x82\xd3\xe4\x93\x02j\x12*/v0/geometry/{geometry_id}/features/issuesZ<\x12:/v0/geometry_version/{geometry_version_id}/features/issues\x12\xae\x01\n\x11SubscribeGeometry\x12\x46.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryRequest\x1aG.luminary.proto.api.v0.luminarycloud.geometry.SubscribeGeometryResponse\"\x06\x8a\xb5\x18\x02\x08\x32\x30\x01\x12\xd3\x01\n\x0eModifyGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.ModifyGeometryResponse\"6\x82\xd3\xe4\x93\x02&\"!/v0/geometry/{geometry_id}/modify:\x01*\x8a\xb5\x18\x06\x08<\x12\x02\x08\x01\x12\xdb\x01\n\x0e\x43reateGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.CreateGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.CreateGeometryResponse\">\x82\xd3\xe4\x93\x02.\")/v0/projects/{project_id}/create-geometry:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x03\x12\xad\x01\n\x12StartCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x16.google.protobuf.Empty\";\x82\xd3\xe4\x93\x02+\"&/v0/geometry/{geometry_id}/start_check:\x01*\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\xcf\x01\n\x10GetCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x46.luminary.proto.api.v0.luminarycloud.geometry.GetCheckGeometryResponse\"/\x82\xd3\xe4\x93\x02)\"$/v0/geometry/{geometry_id}/get_check:\x01*\x12\xc5\x01\n\rCheckGeometry\x12\x42.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryRequest\x1a\x43.luminary.proto.api.v0.luminarycloud.geometry.CheckGeometryResponse\"+\x82\xd3\xe4\x93\x02%\" /v0/geometry/{geometry_id}/check:\x01*\x12\xd0\x01\n\x1bTesselationUpToModification\x12Q.luminary.proto.api.v0.luminarycloud.geometry.TessellationUpToModificationRequest\x1aR.luminary.proto.api.v0.luminarycloud.geometry.TessellationUpToModificationResponse\"\n\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\xa7\x01\n\x12LatestTessellation\x12G.luminary.proto.api.v0.luminarycloud.geometry.LatestTessellationRequest\x1aH.luminary.proto.api.v0.luminarycloud.geometry.LatestTessellationResponse\x12\x98\x01\n\tKeepAlive\x12>.luminary.proto.api.v0.luminarycloud.geometry.KeepAliveRequest\x1a?.luminary.proto.api.v0.luminarycloud.geometry.KeepAliveResponse\"\n\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\x12\x80\x01\n\x05Panic\x12:.luminary.proto.api.v0.luminarycloud.geometry.PanicRequest\x1a;.luminary.proto.api.v0.luminarycloud.geometry.PanicResponse\x12\x8f\x01\n\nStopWorker\x12?.luminary.proto.api.v0.luminarycloud.geometry.StopWorkerRequest\x1a@.luminary.proto.api.v0.luminarycloud.geometry.StopWorkerResponse\x12\x86\x01\n\x07GetTags\x12<.luminary.proto.api.v0.luminarycloud.geometry.GetTagsRequest\x1a=.luminary.proto.api.v0.luminarycloud.geometry.GetTagsResponse\x12\xe5\x01\n\x08ListTags\x12=.luminary.proto.api.v0.luminarycloud.geometry.ListTagsRequest\x1a>.luminary.proto.api.v0.luminarycloud.geometry.ListTagsResponse\"Z\x82\xd3\xe4\x93\x02T\x12\x1f/v0/geometry/{geometry_id}/tagsZ1\x12//v0/geometry_version/{geometry_version_id}/tags\x12\xdb\x01\n\x12GetGeometryVersion\x12G.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionRequest\x1aH.luminary.proto.api.v0.luminarycloud.geometry.GetGeometryVersionResponse\"2\x82\xd3\xe4\x93\x02,\x12*/v0/geometry_version/{geometry_version_id}\x12\xbc\x01\n\nGetSdkCode\x12?.luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeRequest\x1a@.luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeResponse\"+\x82\xd3\xe4\x93\x02%\x12#/v0/geometry/{geometry_id}/sdk-codeB<Z:luminarycloud.com/core/proto/api/v0/luminarycloud/geometryb\x06proto3')
|
|
24
25
|
|
|
25
26
|
|
|
26
27
|
|
|
@@ -56,6 +57,7 @@ _CREATEGEOMETRYREQUEST = DESCRIPTOR.message_types_by_name['CreateGeometryRequest
|
|
|
56
57
|
_CREATEGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['CreateGeometryResponse']
|
|
57
58
|
_CHECKGEOMETRYREQUEST = DESCRIPTOR.message_types_by_name['CheckGeometryRequest']
|
|
58
59
|
_CHECKGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['CheckGeometryResponse']
|
|
60
|
+
_GETCHECKGEOMETRYRESPONSE = DESCRIPTOR.message_types_by_name['GetCheckGeometryResponse']
|
|
59
61
|
_TESSELLATIONUPTOMODIFICATIONREQUEST = DESCRIPTOR.message_types_by_name['TessellationUpToModificationRequest']
|
|
60
62
|
_TESSELLATIONUPTOMODIFICATIONRESPONSE = DESCRIPTOR.message_types_by_name['TessellationUpToModificationResponse']
|
|
61
63
|
_LATESTTESSELLATIONREQUEST = DESCRIPTOR.message_types_by_name['LatestTessellationRequest']
|
|
@@ -73,6 +75,8 @@ _LISTTAGSREQUEST = DESCRIPTOR.message_types_by_name['ListTagsRequest']
|
|
|
73
75
|
_LISTTAGSRESPONSE = DESCRIPTOR.message_types_by_name['ListTagsResponse']
|
|
74
76
|
_GETGEOMETRYVERSIONREQUEST = DESCRIPTOR.message_types_by_name['GetGeometryVersionRequest']
|
|
75
77
|
_GETGEOMETRYVERSIONRESPONSE = DESCRIPTOR.message_types_by_name['GetGeometryVersionResponse']
|
|
78
|
+
_GETSDKCODEREQUEST = DESCRIPTOR.message_types_by_name['GetSdkCodeRequest']
|
|
79
|
+
_GETSDKCODERESPONSE = DESCRIPTOR.message_types_by_name['GetSdkCodeResponse']
|
|
76
80
|
Geometry = _reflection.GeneratedProtocolMessageType('Geometry', (_message.Message,), {
|
|
77
81
|
'DESCRIPTOR' : _GEOMETRY,
|
|
78
82
|
'__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
|
|
@@ -307,6 +311,13 @@ CheckGeometryResponse = _reflection.GeneratedProtocolMessageType('CheckGeometryR
|
|
|
307
311
|
})
|
|
308
312
|
_sym_db.RegisterMessage(CheckGeometryResponse)
|
|
309
313
|
|
|
314
|
+
GetCheckGeometryResponse = _reflection.GeneratedProtocolMessageType('GetCheckGeometryResponse', (_message.Message,), {
|
|
315
|
+
'DESCRIPTOR' : _GETCHECKGEOMETRYRESPONSE,
|
|
316
|
+
'__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
|
|
317
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.GetCheckGeometryResponse)
|
|
318
|
+
})
|
|
319
|
+
_sym_db.RegisterMessage(GetCheckGeometryResponse)
|
|
320
|
+
|
|
310
321
|
TessellationUpToModificationRequest = _reflection.GeneratedProtocolMessageType('TessellationUpToModificationRequest', (_message.Message,), {
|
|
311
322
|
'DESCRIPTOR' : _TESSELLATIONUPTOMODIFICATIONREQUEST,
|
|
312
323
|
'__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
|
|
@@ -426,6 +437,20 @@ GetGeometryVersionResponse = _reflection.GeneratedProtocolMessageType('GetGeomet
|
|
|
426
437
|
})
|
|
427
438
|
_sym_db.RegisterMessage(GetGeometryVersionResponse)
|
|
428
439
|
|
|
440
|
+
GetSdkCodeRequest = _reflection.GeneratedProtocolMessageType('GetSdkCodeRequest', (_message.Message,), {
|
|
441
|
+
'DESCRIPTOR' : _GETSDKCODEREQUEST,
|
|
442
|
+
'__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
|
|
443
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeRequest)
|
|
444
|
+
})
|
|
445
|
+
_sym_db.RegisterMessage(GetSdkCodeRequest)
|
|
446
|
+
|
|
447
|
+
GetSdkCodeResponse = _reflection.GeneratedProtocolMessageType('GetSdkCodeResponse', (_message.Message,), {
|
|
448
|
+
'DESCRIPTOR' : _GETSDKCODERESPONSE,
|
|
449
|
+
'__module__' : 'proto.api.v0.luminarycloud.geometry.geometry_pb2'
|
|
450
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.geometry.GetSdkCodeResponse)
|
|
451
|
+
})
|
|
452
|
+
_sym_db.RegisterMessage(GetSdkCodeResponse)
|
|
453
|
+
|
|
429
454
|
_GEOMETRYSERVICE = DESCRIPTOR.services_by_name['GeometryService']
|
|
430
455
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
431
456
|
|
|
@@ -446,7 +471,11 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
446
471
|
_GEOMETRYSERVICE.methods_by_name['ModifyGeometry']._options = None
|
|
447
472
|
_GEOMETRYSERVICE.methods_by_name['ModifyGeometry']._serialized_options = b'\202\323\344\223\002&\"!/v0/geometry/{geometry_id}/modify:\001*\212\265\030\006\010<\022\002\010\001'
|
|
448
473
|
_GEOMETRYSERVICE.methods_by_name['CreateGeometry']._options = None
|
|
449
|
-
_GEOMETRYSERVICE.methods_by_name['CreateGeometry']._serialized_options = b'\202\323\344\223\002.\")/v0/projects/{project_id}/create-geometry:\001*\212\265\030\006\010
|
|
474
|
+
_GEOMETRYSERVICE.methods_by_name['CreateGeometry']._serialized_options = b'\202\323\344\223\002.\")/v0/projects/{project_id}/create-geometry:\001*\212\265\030\006\010\036\022\002\010\003'
|
|
475
|
+
_GEOMETRYSERVICE.methods_by_name['StartCheckGeometry']._options = None
|
|
476
|
+
_GEOMETRYSERVICE.methods_by_name['StartCheckGeometry']._serialized_options = b'\202\323\344\223\002+\"&/v0/geometry/{geometry_id}/start_check:\001*\212\265\030\006\010\024\022\002\010\001'
|
|
477
|
+
_GEOMETRYSERVICE.methods_by_name['GetCheckGeometry']._options = None
|
|
478
|
+
_GEOMETRYSERVICE.methods_by_name['GetCheckGeometry']._serialized_options = b'\202\323\344\223\002)\"$/v0/geometry/{geometry_id}/get_check:\001*'
|
|
450
479
|
_GEOMETRYSERVICE.methods_by_name['CheckGeometry']._options = None
|
|
451
480
|
_GEOMETRYSERVICE.methods_by_name['CheckGeometry']._serialized_options = b'\202\323\344\223\002%\" /v0/geometry/{geometry_id}/check:\001*'
|
|
452
481
|
_GEOMETRYSERVICE.methods_by_name['TesselationUpToModification']._options = None
|
|
@@ -457,104 +486,112 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
457
486
|
_GEOMETRYSERVICE.methods_by_name['ListTags']._serialized_options = b'\202\323\344\223\002T\022\037/v0/geometry/{geometry_id}/tagsZ1\022//v0/geometry_version/{geometry_version_id}/tags'
|
|
458
487
|
_GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._options = None
|
|
459
488
|
_GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._serialized_options = b'\202\323\344\223\002,\022*/v0/geometry_version/{geometry_version_id}'
|
|
460
|
-
|
|
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
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
489
|
+
_GEOMETRYSERVICE.methods_by_name['GetSdkCode']._options = None
|
|
490
|
+
_GEOMETRYSERVICE.methods_by_name['GetSdkCode']._serialized_options = b'\202\323\344\223\002%\022#/v0/geometry/{geometry_id}/sdk-code'
|
|
491
|
+
_GEOMETRY._serialized_start=318
|
|
492
|
+
_GEOMETRY._serialized_end=514
|
|
493
|
+
_GEOMETRYVERSION._serialized_start=516
|
|
494
|
+
_GEOMETRYVERSION._serialized_end=615
|
|
495
|
+
_TESSELLATIONDATA._serialized_start=618
|
|
496
|
+
_TESSELLATIONDATA._serialized_end=837
|
|
497
|
+
_GETGEOMETRYREQUEST._serialized_start=839
|
|
498
|
+
_GETGEOMETRYREQUEST._serialized_end=880
|
|
499
|
+
_GETGEOMETRYRESPONSE._serialized_start=882
|
|
500
|
+
_GETGEOMETRYRESPONSE._serialized_end=977
|
|
501
|
+
_LISTGEOMETRYFEATURESREQUEST._serialized_start=979
|
|
502
|
+
_LISTGEOMETRYFEATURESREQUEST._serialized_end=1084
|
|
503
|
+
_LISTGEOMETRYFEATURESRESPONSE._serialized_start=1086
|
|
504
|
+
_LISTGEOMETRYFEATURESRESPONSE._serialized_end=1168
|
|
505
|
+
_LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=1170
|
|
506
|
+
_LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=1280
|
|
507
|
+
_LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=1282
|
|
508
|
+
_LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=1382
|
|
509
|
+
_LISTGEOMETRYENTITIESREQUEST._serialized_start=1384
|
|
510
|
+
_LISTGEOMETRYENTITIESREQUEST._serialized_end=1489
|
|
511
|
+
_LISTGEOMETRYENTITIESRESPONSE._serialized_start=1491
|
|
512
|
+
_LISTGEOMETRYENTITIESRESPONSE._serialized_end=1614
|
|
513
|
+
_LISTGEOMETRIESREQUEST._serialized_start=1616
|
|
514
|
+
_LISTGEOMETRIESREQUEST._serialized_end=1659
|
|
515
|
+
_LISTGEOMETRIESRESPONSE._serialized_start=1661
|
|
516
|
+
_LISTGEOMETRIESRESPONSE._serialized_end=1761
|
|
517
|
+
_SUBSCRIBEGEOMETRYREQUEST._serialized_start=1763
|
|
518
|
+
_SUBSCRIBEGEOMETRYREQUEST._serialized_end=1836
|
|
519
|
+
_GEOMETRYHISTORY._serialized_start=1839
|
|
520
|
+
_GEOMETRYHISTORY._serialized_end=2127
|
|
521
|
+
_GEOMETRYHISTORY_HISTORYENTRY._serialized_start=1958
|
|
522
|
+
_GEOMETRYHISTORY_HISTORYENTRY._serialized_end=2127
|
|
523
|
+
_SUBSCRIBEGEOMETRYRESPONSE._serialized_start=2130
|
|
524
|
+
_SUBSCRIBEGEOMETRYRESPONSE._serialized_end=3995
|
|
525
|
+
_SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=2451
|
|
526
|
+
_SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=2877
|
|
527
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=2880
|
|
528
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=3979
|
|
529
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=3767
|
|
530
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=3804
|
|
531
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=3806
|
|
532
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=3847
|
|
533
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=3849
|
|
534
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=3859
|
|
535
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=3861
|
|
536
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=3872
|
|
537
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=3874
|
|
538
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=3909
|
|
539
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=3911
|
|
540
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=3946
|
|
541
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=3948
|
|
542
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=3962
|
|
543
|
+
_MODIFYGEOMETRYREQUEST._serialized_start=3997
|
|
544
|
+
_MODIFYGEOMETRYREQUEST._serialized_end=4122
|
|
545
|
+
_MODIFYGEOMETRYRESPONSE._serialized_start=4125
|
|
546
|
+
_MODIFYGEOMETRYRESPONSE._serialized_end=4316
|
|
547
|
+
_CREATEGEOMETRYREQUEST._serialized_start=4319
|
|
548
|
+
_CREATEGEOMETRYREQUEST._serialized_end=4470
|
|
549
|
+
_CREATEGEOMETRYRESPONSE._serialized_start=4472
|
|
550
|
+
_CREATEGEOMETRYRESPONSE._serialized_end=4570
|
|
551
|
+
_CHECKGEOMETRYREQUEST._serialized_start=4572
|
|
552
|
+
_CHECKGEOMETRYREQUEST._serialized_end=4644
|
|
553
|
+
_CHECKGEOMETRYRESPONSE._serialized_start=4646
|
|
554
|
+
_CHECKGEOMETRYRESPONSE._serialized_end=4697
|
|
555
|
+
_GETCHECKGEOMETRYRESPONSE._serialized_start=4699
|
|
556
|
+
_GETCHECKGEOMETRYRESPONSE._serialized_end=4771
|
|
557
|
+
_TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=4773
|
|
558
|
+
_TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=4856
|
|
559
|
+
_TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=4858
|
|
560
|
+
_TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=4916
|
|
561
|
+
_LATESTTESSELLATIONREQUEST._serialized_start=4918
|
|
562
|
+
_LATESTTESSELLATIONREQUEST._serialized_end=4966
|
|
563
|
+
_LATESTTESSELLATIONRESPONSE._serialized_start=4968
|
|
564
|
+
_LATESTTESSELLATIONRESPONSE._serialized_end=5021
|
|
565
|
+
_KEEPALIVEREQUEST._serialized_start=5023
|
|
566
|
+
_KEEPALIVEREQUEST._serialized_end=5062
|
|
567
|
+
_KEEPALIVERESPONSE._serialized_start=5064
|
|
568
|
+
_KEEPALIVERESPONSE._serialized_end=5083
|
|
569
|
+
_PANICREQUEST._serialized_start=5085
|
|
570
|
+
_PANICREQUEST._serialized_end=5099
|
|
571
|
+
_PANICRESPONSE._serialized_start=5101
|
|
572
|
+
_PANICRESPONSE._serialized_end=5116
|
|
573
|
+
_STOPWORKERREQUEST._serialized_start=5118
|
|
574
|
+
_STOPWORKERREQUEST._serialized_end=5158
|
|
575
|
+
_STOPWORKERRESPONSE._serialized_start=5160
|
|
576
|
+
_STOPWORKERRESPONSE._serialized_end=5180
|
|
577
|
+
_GETTAGSREQUEST._serialized_start=5182
|
|
578
|
+
_GETTAGSREQUEST._serialized_end=5248
|
|
579
|
+
_GETTAGSRESPONSE._serialized_start=5250
|
|
580
|
+
_GETTAGSRESPONSE._serialized_end=5312
|
|
581
|
+
_TAG._serialized_start=5314
|
|
582
|
+
_TAG._serialized_end=5396
|
|
583
|
+
_LISTTAGSREQUEST._serialized_start=5398
|
|
584
|
+
_LISTTAGSREQUEST._serialized_end=5491
|
|
585
|
+
_LISTTAGSRESPONSE._serialized_start=5493
|
|
586
|
+
_LISTTAGSRESPONSE._serialized_end=5576
|
|
587
|
+
_GETGEOMETRYVERSIONREQUEST._serialized_start=5578
|
|
588
|
+
_GETGEOMETRYVERSIONREQUEST._serialized_end=5634
|
|
589
|
+
_GETGEOMETRYVERSIONRESPONSE._serialized_start=5636
|
|
590
|
+
_GETGEOMETRYVERSIONRESPONSE._serialized_end=5753
|
|
591
|
+
_GETSDKCODEREQUEST._serialized_start=5755
|
|
592
|
+
_GETSDKCODEREQUEST._serialized_end=5824
|
|
593
|
+
_GETSDKCODERESPONSE._serialized_start=5826
|
|
594
|
+
_GETSDKCODERESPONSE._serialized_end=5864
|
|
595
|
+
_GEOMETRYSERVICE._serialized_start=5867
|
|
596
|
+
_GEOMETRYSERVICE._serialized_end=9934
|
|
560
597
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -622,6 +622,7 @@ class CreateGeometryRequest(google.protobuf.message.Message):
|
|
|
622
622
|
SCALING_FIELD_NUMBER: builtins.int
|
|
623
623
|
WAIT_FIELD_NUMBER: builtins.int
|
|
624
624
|
FORCE_DISCRETE_FIELD_NUMBER: builtins.int
|
|
625
|
+
REQUEST_ID_FIELD_NUMBER: builtins.int
|
|
625
626
|
project_id: builtins.str
|
|
626
627
|
"""Required. The project to create the new mesh in."""
|
|
627
628
|
name: builtins.str
|
|
@@ -641,6 +642,11 @@ class CreateGeometryRequest(google.protobuf.message.Message):
|
|
|
641
642
|
immediately and the import will occur in the background. Defaults to false.
|
|
642
643
|
"""
|
|
643
644
|
force_discrete: builtins.bool
|
|
645
|
+
request_id: builtins.str
|
|
646
|
+
"""Optional. Used to deduplicate requests. If it is not set, no deduplication
|
|
647
|
+
attempts will be made. Else, the server will check that no geometry was
|
|
648
|
+
previously created with this request ID.
|
|
649
|
+
"""
|
|
644
650
|
def __init__(
|
|
645
651
|
self,
|
|
646
652
|
*,
|
|
@@ -650,8 +656,9 @@ class CreateGeometryRequest(google.protobuf.message.Message):
|
|
|
650
656
|
scaling: builtins.float = ...,
|
|
651
657
|
wait: builtins.bool = ...,
|
|
652
658
|
force_discrete: builtins.bool = ...,
|
|
659
|
+
request_id: builtins.str = ...,
|
|
653
660
|
) -> None: ...
|
|
654
|
-
def ClearField(self, field_name: typing_extensions.Literal["force_discrete", b"force_discrete", "name", b"name", "project_id", b"project_id", "scaling", b"scaling", "url", b"url", "wait", b"wait"]) -> None: ...
|
|
661
|
+
def ClearField(self, field_name: typing_extensions.Literal["force_discrete", b"force_discrete", "name", b"name", "project_id", b"project_id", "request_id", b"request_id", "scaling", b"scaling", "url", b"url", "wait", b"wait"]) -> None: ...
|
|
655
662
|
|
|
656
663
|
global___CreateGeometryRequest = CreateGeometryRequest
|
|
657
664
|
|
|
@@ -675,14 +682,18 @@ class CheckGeometryRequest(google.protobuf.message.Message):
|
|
|
675
682
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
676
683
|
|
|
677
684
|
GEOMETRY_ID_FIELD_NUMBER: builtins.int
|
|
685
|
+
GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
678
686
|
geometry_id: builtins.str
|
|
679
687
|
"""The geometry to check."""
|
|
688
|
+
geometry_version_id: builtins.str
|
|
689
|
+
"""Optional. The geometry version ID."""
|
|
680
690
|
def __init__(
|
|
681
691
|
self,
|
|
682
692
|
*,
|
|
683
693
|
geometry_id: builtins.str = ...,
|
|
694
|
+
geometry_version_id: builtins.str = ...,
|
|
684
695
|
) -> None: ...
|
|
685
|
-
def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id"]) -> None: ...
|
|
696
|
+
def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id"]) -> None: ...
|
|
686
697
|
|
|
687
698
|
global___CheckGeometryRequest = CheckGeometryRequest
|
|
688
699
|
|
|
@@ -710,6 +721,34 @@ class CheckGeometryResponse(google.protobuf.message.Message):
|
|
|
710
721
|
|
|
711
722
|
global___CheckGeometryResponse = CheckGeometryResponse
|
|
712
723
|
|
|
724
|
+
class GetCheckGeometryResponse(google.protobuf.message.Message):
|
|
725
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
726
|
+
|
|
727
|
+
OK_FIELD_NUMBER: builtins.int
|
|
728
|
+
ISSUES_FIELD_NUMBER: builtins.int
|
|
729
|
+
FINISHED_FIELD_NUMBER: builtins.int
|
|
730
|
+
ok: builtins.bool
|
|
731
|
+
"""If true, the geometry is ready for meshing (issues may be non-empty and
|
|
732
|
+
contain informational or warning messages).
|
|
733
|
+
If false, the geometry contains errors. Inspect issues and resolve any
|
|
734
|
+
errors.
|
|
735
|
+
"""
|
|
736
|
+
@property
|
|
737
|
+
def issues(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
|
|
738
|
+
"""A list of issues with the geometry."""
|
|
739
|
+
finished: builtins.bool
|
|
740
|
+
"""Whether the check has finished."""
|
|
741
|
+
def __init__(
|
|
742
|
+
self,
|
|
743
|
+
*,
|
|
744
|
+
ok: builtins.bool = ...,
|
|
745
|
+
issues: collections.abc.Iterable[builtins.str] | None = ...,
|
|
746
|
+
finished: builtins.bool = ...,
|
|
747
|
+
) -> None: ...
|
|
748
|
+
def ClearField(self, field_name: typing_extensions.Literal["finished", b"finished", "issues", b"issues", "ok", b"ok"]) -> None: ...
|
|
749
|
+
|
|
750
|
+
global___GetCheckGeometryResponse = GetCheckGeometryResponse
|
|
751
|
+
|
|
713
752
|
class TessellationUpToModificationRequest(google.protobuf.message.Message):
|
|
714
753
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
715
754
|
|
|
@@ -971,3 +1010,35 @@ class GetGeometryVersionResponse(google.protobuf.message.Message):
|
|
|
971
1010
|
def ClearField(self, field_name: typing_extensions.Literal["geometry_version", b"geometry_version"]) -> None: ...
|
|
972
1011
|
|
|
973
1012
|
global___GetGeometryVersionResponse = GetGeometryVersionResponse
|
|
1013
|
+
|
|
1014
|
+
class GetSdkCodeRequest(google.protobuf.message.Message):
|
|
1015
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1016
|
+
|
|
1017
|
+
GEOMETRY_ID_FIELD_NUMBER: builtins.int
|
|
1018
|
+
GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
1019
|
+
geometry_id: builtins.str
|
|
1020
|
+
geometry_version_id: builtins.str
|
|
1021
|
+
"""Optional. If empty, the latest version of the geometry will be used."""
|
|
1022
|
+
def __init__(
|
|
1023
|
+
self,
|
|
1024
|
+
*,
|
|
1025
|
+
geometry_id: builtins.str = ...,
|
|
1026
|
+
geometry_version_id: builtins.str = ...,
|
|
1027
|
+
) -> None: ...
|
|
1028
|
+
def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id"]) -> None: ...
|
|
1029
|
+
|
|
1030
|
+
global___GetSdkCodeRequest = GetSdkCodeRequest
|
|
1031
|
+
|
|
1032
|
+
class GetSdkCodeResponse(google.protobuf.message.Message):
|
|
1033
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1034
|
+
|
|
1035
|
+
SDK_CODE_FIELD_NUMBER: builtins.int
|
|
1036
|
+
sdk_code: builtins.str
|
|
1037
|
+
def __init__(
|
|
1038
|
+
self,
|
|
1039
|
+
*,
|
|
1040
|
+
sdk_code: builtins.str = ...,
|
|
1041
|
+
) -> None: ...
|
|
1042
|
+
def ClearField(self, field_name: typing_extensions.Literal["sdk_code", b"sdk_code"]) -> None: ...
|
|
1043
|
+
|
|
1044
|
+
global___GetSdkCodeResponse = GetSdkCodeResponse
|