luminarycloud 0.10.1__py3-none-any.whl → 0.10.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. luminarycloud/_helpers/__init__.py +2 -0
  2. luminarycloud/_helpers/download.py +41 -15
  3. luminarycloud/_helpers/warnings/__init__.py +2 -0
  4. luminarycloud/_helpers/warnings/deprecated.py +31 -0
  5. luminarycloud/_helpers/warnings/experimental.py +18 -0
  6. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +129 -97
  7. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +73 -9
  8. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.py +33 -0
  9. luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2_grpc.pyi +10 -0
  10. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +64 -64
  11. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +9 -2
  12. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.py +0 -4
  13. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2_grpc.pyi +0 -8
  14. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.py +47 -3
  15. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.pyi +64 -0
  16. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.py +68 -0
  17. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.pyi +24 -0
  18. luminarycloud/_proto/base/base_pb2.py +8 -7
  19. luminarycloud/_proto/base/base_pb2.pyi +6 -2
  20. luminarycloud/_proto/client/simulation_pb2.py +217 -208
  21. luminarycloud/_proto/client/simulation_pb2.pyi +27 -2
  22. luminarycloud/_wrapper.py +4 -0
  23. luminarycloud/geometry.py +9 -31
  24. luminarycloud/geometry_version.py +142 -0
  25. luminarycloud/mesh.py +19 -0
  26. luminarycloud/params/convergence_criteria/convergence_criteria.py +56 -11
  27. luminarycloud/params/enum/_enum_wrappers.py +16 -0
  28. luminarycloud/params/param_wrappers/simulation_param/output_.py +0 -12
  29. luminarycloud/params/param_wrappers/simulation_param/physics/fluid/boundary_conditions/farfield_.py +5 -1
  30. luminarycloud/params/param_wrappers/simulation_param/time/time_step_ramp/time_step_ramp_on_.py +1 -1
  31. luminarycloud/params/param_wrappers/simulation_param/time_.py +2 -2
  32. luminarycloud/project.py +14 -7
  33. luminarycloud/simulation.py +20 -7
  34. luminarycloud/simulation_param.py +12 -5
  35. luminarycloud/solution.py +39 -2
  36. luminarycloud/tag.py +26 -0
  37. luminarycloud/types/__init__.py +4 -1
  38. luminarycloud/types/vector3.py +27 -0
  39. luminarycloud/volume_selection.py +153 -45
  40. {luminarycloud-0.10.1.dist-info → luminarycloud-0.10.2.dist-info}/METADATA +1 -1
  41. {luminarycloud-0.10.1.dist-info → luminarycloud-0.10.2.dist-info}/RECORD +43 -39
  42. {luminarycloud-0.10.1.dist-info → luminarycloud-0.10.2.dist-info}/WHEEL +1 -1
  43. luminarycloud/_helpers/deprecated.py +0 -19
  44. {luminarycloud-0.10.1.dist-info → luminarycloud-0.10.2.dist-info}/top_level.txt +0 -0
@@ -8,6 +8,8 @@ from .create_simulation import (
8
8
  from .download import (
9
9
  download_surface_solution,
10
10
  download_volume_solution,
11
+ download_surface_deformation_template,
12
+ download_surface_sensitivity_data,
11
13
  save_file,
12
14
  )
13
15
  from .file_chunk_stream import (
@@ -4,13 +4,15 @@ import logging
4
4
  import os
5
5
  from pathlib import Path
6
6
  import requests
7
- from typing import Iterator, Optional, Union, cast
7
+ from typing import Any, Iterator, Optional, Union, cast
8
8
 
9
9
  from .file_chunk_stream import FileChunkStream
10
10
  from .._proto.api.v0.luminarycloud.common import common_pb2 as commonpb
11
11
  from .._proto.api.v0.luminarycloud.solution.solution_pb2 import (
12
12
  GetSolutionSurfaceDataRequest,
13
13
  GetSolutionVolumeDataRequest,
14
+ GetSurfaceDeformationTemplateRequest,
15
+ GetSurfaceSensitivityDataRequest,
14
16
  )
15
17
  from .._client import Client
16
18
 
@@ -59,6 +61,17 @@ def _iter_url(
59
61
  yield chunk
60
62
 
61
63
 
64
+ def _create_file_chunk_stream(
65
+ client: Client, solution_id: str, data_desc: str, file: Any
66
+ ) -> FileChunkStream:
67
+ if file.signed_url:
68
+ logger.info(f"Begin streaming {data_desc} via signed URL for solution {solution_id}.")
69
+ return FileChunkStream(file.metadata, _iter_url(client, file.signed_url))
70
+
71
+ logger.info(f"Begin streaming {data_desc} via fetch URL for solution {solution_id}.")
72
+ return FileChunkStream(file.metadata, _iter_file_id(client, file.file_id))
73
+
74
+
62
75
  def download_surface_solution(
63
76
  client: Client,
64
77
  solution_id: str,
@@ -77,14 +90,7 @@ def download_surface_solution(
77
90
 
78
91
  request = GetSolutionSurfaceDataRequest(id=solution_id)
79
92
  response = client.GetSolutionSurfaceData(request)
80
- file = response.file
81
-
82
- if file.signed_url:
83
- logger.info(f"Begin streaming surface data via signed URL for solution {solution_id}.")
84
- return FileChunkStream(file.metadata, _iter_url(client, file.signed_url))
85
-
86
- logger.info(f"Begin streaming surface data via fetch URL for solution {solution_id}.")
87
- return FileChunkStream(file.metadata, _iter_file_id(client, file.file_id))
93
+ return _create_file_chunk_stream(client, solution_id, "surface solution", response.file)
88
94
 
89
95
 
90
96
  def download_volume_solution(
@@ -105,14 +111,34 @@ def download_volume_solution(
105
111
 
106
112
  request = GetSolutionVolumeDataRequest(id=solution_id)
107
113
  response = client.GetSolutionVolumeData(request)
108
- file = response.file
114
+ return _create_file_chunk_stream(client, solution_id, "volume solution", response.file)
109
115
 
110
- if file.signed_url:
111
- logger.info(f"Begin streaming volume data via signed URL for solution {solution_id}.")
112
- return FileChunkStream(file.metadata, _iter_url(client, file.signed_url))
113
116
 
114
- logger.info(f"Begin streaming volume solution via fetch URL for solution {solution_id}.")
115
- return FileChunkStream(file.metadata, _iter_file_id(client, file.file_id))
117
+ def download_surface_deformation_template(
118
+ client: Client,
119
+ solution_id: str,
120
+ ) -> FileChunkStream:
121
+ """
122
+ Similar to download_surface_solution.
123
+ """
124
+ request = GetSurfaceDeformationTemplateRequest(id=solution_id)
125
+ response = client.GetSurfaceDeformationTemplate(request)
126
+ return _create_file_chunk_stream(
127
+ client, solution_id, "surface deformation template", response.file
128
+ )
129
+
130
+
131
+ def download_surface_sensitivity_data(
132
+ client: Client,
133
+ solution_id: str,
134
+ ) -> FileChunkStream:
135
+ """
136
+ Similar to download_surface_solution.
137
+ """
138
+
139
+ request = GetSurfaceSensitivityDataRequest(id=solution_id)
140
+ response = client.GetSurfaceSensitivityData(request)
141
+ return _create_file_chunk_stream(client, solution_id, "surface sensitivity data", response.file)
116
142
 
117
143
 
118
144
  def save_file(
@@ -0,0 +1,2 @@
1
+ from .deprecated import deprecated
2
+ from .experimental import experimental
@@ -0,0 +1,31 @@
1
+ import warnings
2
+ from functools import wraps
3
+ from typing import Callable
4
+
5
+
6
+ def deprecated(reason: str, version: str) -> Callable[[Callable], Callable]:
7
+ """
8
+ Mark a function as deprecated.
9
+
10
+ Parameters
11
+ ----------
12
+ reason : str
13
+ The reason for deprecation.
14
+ version : str
15
+ The version in which the function was deprecated.
16
+ """
17
+
18
+ def decorator(f: Callable) -> Callable:
19
+
20
+ @wraps(f)
21
+ def new_func(*args, **kwargs):
22
+ warnings.warn(
23
+ f"{f.__name__} is deprecated since version {version}: {reason}",
24
+ category=DeprecationWarning,
25
+ stacklevel=2,
26
+ )
27
+ return f(*args, **kwargs)
28
+
29
+ return new_func
30
+
31
+ return decorator
@@ -0,0 +1,18 @@
1
+ import warnings
2
+ from functools import wraps
3
+ from typing import Callable
4
+
5
+
6
+ def experimental(f: Callable) -> Callable:
7
+ """Mark a function as experimental."""
8
+
9
+ @wraps(f)
10
+ def new_func(*args, **kwargs):
11
+ warnings.warn(
12
+ f"{f.__name__} is an experimental feature and may change or be removed without notice.",
13
+ category=FutureWarning,
14
+ stacklevel=2,
15
+ )
16
+ return f(*args, **kwargs)
17
+
18
+ return new_func
@@ -20,11 +20,12 @@ from luminarycloud._proto.lcn import lcmesh_pb2 as proto_dot_lcn_dot_lcmesh__pb2
20
20
  from luminarycloud._proto.ratelimit import ratelimit_pb2 as proto_dot_ratelimit_dot_ratelimit__pb2
21
21
 
22
22
 
23
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2proto/api/v0/luminarycloud/geometry/geometry.proto\x12,luminary.proto.api.v0.luminarycloud.geometry\x1a\x1cgoogle/api/annotations.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1dproto/geometry/geometry.proto\x1a#proto/cadmetadata/cadmetadata.proto\x1a\x16proto/lcn/lcmesh.proto\x1a\x1fproto/ratelimit/ratelimit.proto\"\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%\022#/v0/geometry/{geometry_id}/entities'
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%\022#/v0/geometry/{geometry_id}/features'
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\002,\022*/v0/geometry/{geometry_id}/features/issues'
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\002!\022\037/v0/geometry/{geometry_id}/tags'
457
+ _GEOMETRYSERVICE.methods_by_name['ListTags']._serialized_options = b'\202\323\344\223\002T\022\037/v0/geometry/{geometry_id}/tagsZ1\022//v0/geometry_version/{geometry_version_id}/tags'
458
+ _GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._options = None
459
+ _GEOMETRYSERVICE.methods_by_name['GetGeometryVersion']._serialized_options = b'\202\323\344\223\002,\022*/v0/geometry_version/{geometry_version_id}'
434
460
  _GEOMETRY._serialized_start=289
435
461
  _GEOMETRY._serialized_end=485
436
- _TESSELLATIONDATA._serialized_start=488
437
- _TESSELLATIONDATA._serialized_end=707
438
- _GETGEOMETRYREQUEST._serialized_start=709
439
- _GETGEOMETRYREQUEST._serialized_end=750
440
- _GETGEOMETRYRESPONSE._serialized_start=752
441
- _GETGEOMETRYRESPONSE._serialized_end=847
442
- _LISTGEOMETRYFEATURESREQUEST._serialized_start=849
443
- _LISTGEOMETRYFEATURESREQUEST._serialized_end=899
444
- _LISTGEOMETRYFEATURESRESPONSE._serialized_start=901
445
- _LISTGEOMETRYFEATURESRESPONSE._serialized_end=983
446
- _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=985
447
- _LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=1040
448
- _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=1042
449
- _LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=1142
450
- _LISTGEOMETRYENTITIESREQUEST._serialized_start=1144
451
- _LISTGEOMETRYENTITIESREQUEST._serialized_end=1194
452
- _LISTGEOMETRYENTITIESRESPONSE._serialized_start=1196
453
- _LISTGEOMETRYENTITIESRESPONSE._serialized_end=1319
454
- _LISTGEOMETRIESREQUEST._serialized_start=1321
455
- _LISTGEOMETRIESREQUEST._serialized_end=1364
456
- _LISTGEOMETRIESRESPONSE._serialized_start=1366
457
- _LISTGEOMETRIESRESPONSE._serialized_end=1466
458
- _SUBSCRIBEGEOMETRYREQUEST._serialized_start=1468
459
- _SUBSCRIBEGEOMETRYREQUEST._serialized_end=1541
460
- _GEOMETRYHISTORY._serialized_start=1544
461
- _GEOMETRYHISTORY._serialized_end=1832
462
- _GEOMETRYHISTORY_HISTORYENTRY._serialized_start=1663
463
- _GEOMETRYHISTORY_HISTORYENTRY._serialized_end=1832
464
- _SUBSCRIBEGEOMETRYRESPONSE._serialized_start=1835
465
- _SUBSCRIBEGEOMETRYRESPONSE._serialized_end=3700
466
- _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=2156
467
- _SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=2582
468
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=2585
469
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=3684
470
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=3472
471
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=3509
472
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=3511
473
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=3552
474
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=3554
475
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=3564
476
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=3566
477
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=3577
478
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=3579
479
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=3614
480
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=3616
481
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=3651
482
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=3653
483
- _SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=3667
484
- _MODIFYGEOMETRYREQUEST._serialized_start=3702
485
- _MODIFYGEOMETRYREQUEST._serialized_end=3827
486
- _MODIFYGEOMETRYRESPONSE._serialized_start=3830
487
- _MODIFYGEOMETRYRESPONSE._serialized_end=4021
488
- _CREATEGEOMETRYREQUEST._serialized_start=4024
489
- _CREATEGEOMETRYREQUEST._serialized_end=4155
490
- _CREATEGEOMETRYRESPONSE._serialized_start=4157
491
- _CREATEGEOMETRYRESPONSE._serialized_end=4255
492
- _CHECKGEOMETRYREQUEST._serialized_start=4257
493
- _CHECKGEOMETRYREQUEST._serialized_end=4300
494
- _CHECKGEOMETRYRESPONSE._serialized_start=4302
495
- _CHECKGEOMETRYRESPONSE._serialized_end=4353
496
- _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=4355
497
- _TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=4438
498
- _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=4440
499
- _TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=4498
500
- _LATESTTESSELLATIONREQUEST._serialized_start=4500
501
- _LATESTTESSELLATIONREQUEST._serialized_end=4548
502
- _LATESTTESSELLATIONRESPONSE._serialized_start=4550
503
- _LATESTTESSELLATIONRESPONSE._serialized_end=4603
504
- _KEEPALIVEREQUEST._serialized_start=4605
505
- _KEEPALIVEREQUEST._serialized_end=4644
506
- _KEEPALIVERESPONSE._serialized_start=4646
507
- _KEEPALIVERESPONSE._serialized_end=4665
508
- _PANICREQUEST._serialized_start=4667
509
- _PANICREQUEST._serialized_end=4681
510
- _PANICRESPONSE._serialized_start=4683
511
- _PANICRESPONSE._serialized_end=4698
512
- _STOPWORKERREQUEST._serialized_start=4700
513
- _STOPWORKERREQUEST._serialized_end=4740
514
- _STOPWORKERRESPONSE._serialized_start=4742
515
- _STOPWORKERRESPONSE._serialized_end=4762
516
- _GETTAGSREQUEST._serialized_start=4764
517
- _GETTAGSREQUEST._serialized_end=4830
518
- _GETTAGSRESPONSE._serialized_start=4832
519
- _GETTAGSRESPONSE._serialized_end=4894
520
- _TAG._serialized_start=4896
521
- _TAG._serialized_end=4978
522
- _LISTTAGSREQUEST._serialized_start=4980
523
- _LISTTAGSREQUEST._serialized_end=5047
524
- _LISTTAGSRESPONSE._serialized_start=5049
525
- _LISTTAGSRESPONSE._serialized_end=5132
526
- _GEOMETRYSERVICE._serialized_start=5135
527
- _GEOMETRYSERVICE._serialized_end=8180
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)
@@ -57,6 +57,28 @@ class Geometry(google.protobuf.message.Message):
57
57
 
58
58
  global___Geometry = Geometry
59
59
 
60
+ class GeometryVersion(google.protobuf.message.Message):
61
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
62
+
63
+ ID_FIELD_NUMBER: builtins.int
64
+ GEOMETRY_ID_FIELD_NUMBER: builtins.int
65
+ CREATE_TIME_FIELD_NUMBER: builtins.int
66
+ id: builtins.str
67
+ geometry_id: builtins.str
68
+ @property
69
+ def create_time(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
70
+ def __init__(
71
+ self,
72
+ *,
73
+ id: builtins.str = ...,
74
+ geometry_id: builtins.str = ...,
75
+ create_time: google.protobuf.timestamp_pb2.Timestamp | None = ...,
76
+ ) -> None: ...
77
+ def HasField(self, field_name: typing_extensions.Literal["create_time", b"create_time"]) -> builtins.bool: ...
78
+ def ClearField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "geometry_id", b"geometry_id", "id", b"id"]) -> None: ...
79
+
80
+ global___GeometryVersion = GeometryVersion
81
+
60
82
  class TessellationData(google.protobuf.message.Message):
61
83
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
62
84
 
@@ -128,13 +150,18 @@ class ListGeometryFeaturesRequest(google.protobuf.message.Message):
128
150
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
129
151
 
130
152
  GEOMETRY_ID_FIELD_NUMBER: builtins.int
153
+ GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
131
154
  geometry_id: builtins.str
155
+ geometry_version_id: builtins.str
132
156
  def __init__(
133
157
  self,
134
158
  *,
135
159
  geometry_id: builtins.str = ...,
160
+ geometry_version_id: builtins.str = ...,
136
161
  ) -> None: ...
137
- def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id"]) -> None: ...
162
+ def HasField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id", "parent_resource_id", b"parent_resource_id"]) -> builtins.bool: ...
163
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id", "parent_resource_id", b"parent_resource_id"]) -> None: ...
164
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["parent_resource_id", b"parent_resource_id"]) -> typing_extensions.Literal["geometry_id", "geometry_version_id"] | None: ...
138
165
 
139
166
  global___ListGeometryFeaturesRequest = ListGeometryFeaturesRequest
140
167
 
@@ -160,13 +187,18 @@ class ListGeometryFeatureIssuesRequest(google.protobuf.message.Message):
160
187
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
161
188
 
162
189
  GEOMETRY_ID_FIELD_NUMBER: builtins.int
190
+ GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
163
191
  geometry_id: builtins.str
192
+ geometry_version_id: builtins.str
164
193
  def __init__(
165
194
  self,
166
195
  *,
167
196
  geometry_id: builtins.str = ...,
197
+ geometry_version_id: builtins.str = ...,
168
198
  ) -> None: ...
169
- def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id"]) -> None: ...
199
+ def HasField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id", "parent_resource_id", b"parent_resource_id"]) -> builtins.bool: ...
200
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id", "parent_resource_id", b"parent_resource_id"]) -> None: ...
201
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["parent_resource_id", b"parent_resource_id"]) -> typing_extensions.Literal["geometry_id", "geometry_version_id"] | None: ...
170
202
 
171
203
  global___ListGeometryFeatureIssuesRequest = ListGeometryFeatureIssuesRequest
172
204
 
@@ -192,14 +224,18 @@ class ListGeometryEntitiesRequest(google.protobuf.message.Message):
192
224
  DESCRIPTOR: google.protobuf.descriptor.Descriptor
193
225
 
194
226
  GEOMETRY_ID_FIELD_NUMBER: builtins.int
227
+ GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
195
228
  geometry_id: builtins.str
196
- """Required. The geometry to list the entities of."""
229
+ geometry_version_id: builtins.str
197
230
  def __init__(
198
231
  self,
199
232
  *,
200
233
  geometry_id: builtins.str = ...,
234
+ geometry_version_id: builtins.str = ...,
201
235
  ) -> None: ...
202
- def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id"]) -> None: ...
236
+ def HasField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id", "parent_resource_id", b"parent_resource_id"]) -> builtins.bool: ...
237
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id", "parent_resource_id", b"parent_resource_id"]) -> None: ...
238
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["parent_resource_id", b"parent_resource_id"]) -> typing_extensions.Literal["geometry_id", "geometry_version_id"] | None: ...
203
239
 
204
240
  global___ListGeometryEntitiesRequest = ListGeometryEntitiesRequest
205
241
 
@@ -878,18 +914,16 @@ class ListTagsRequest(google.protobuf.message.Message):
878
914
  GEOMETRY_ID_FIELD_NUMBER: builtins.int
879
915
  GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
880
916
  geometry_id: builtins.str
881
- """Required. The geometry to retrieve tags for."""
882
917
  geometry_version_id: builtins.str
883
- """Optional. If not specified, tags will be returned for the latest geometry
884
- at the time of the request.
885
- """
886
918
  def __init__(
887
919
  self,
888
920
  *,
889
921
  geometry_id: builtins.str = ...,
890
922
  geometry_version_id: builtins.str = ...,
891
923
  ) -> None: ...
892
- def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id"]) -> None: ...
924
+ def HasField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id", "parent_resource_id", b"parent_resource_id"]) -> builtins.bool: ...
925
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_id", b"geometry_id", "geometry_version_id", b"geometry_version_id", "parent_resource_id", b"parent_resource_id"]) -> None: ...
926
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["parent_resource_id", b"parent_resource_id"]) -> typing_extensions.Literal["geometry_id", "geometry_version_id"] | None: ...
893
927
 
894
928
  global___ListTagsRequest = ListTagsRequest
895
929
 
@@ -907,3 +941,33 @@ class ListTagsResponse(google.protobuf.message.Message):
907
941
  def ClearField(self, field_name: typing_extensions.Literal["tags", b"tags"]) -> None: ...
908
942
 
909
943
  global___ListTagsResponse = ListTagsResponse
944
+
945
+ class GetGeometryVersionRequest(google.protobuf.message.Message):
946
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
947
+
948
+ GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
949
+ geometry_version_id: builtins.str
950
+ def __init__(
951
+ self,
952
+ *,
953
+ geometry_version_id: builtins.str = ...,
954
+ ) -> None: ...
955
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_version_id", b"geometry_version_id"]) -> None: ...
956
+
957
+ global___GetGeometryVersionRequest = GetGeometryVersionRequest
958
+
959
+ class GetGeometryVersionResponse(google.protobuf.message.Message):
960
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor
961
+
962
+ GEOMETRY_VERSION_FIELD_NUMBER: builtins.int
963
+ @property
964
+ def geometry_version(self) -> global___GeometryVersion: ...
965
+ def __init__(
966
+ self,
967
+ *,
968
+ geometry_version: global___GeometryVersion | None = ...,
969
+ ) -> None: ...
970
+ def HasField(self, field_name: typing_extensions.Literal["geometry_version", b"geometry_version"]) -> builtins.bool: ...
971
+ def ClearField(self, field_name: typing_extensions.Literal["geometry_version", b"geometry_version"]) -> None: ...
972
+
973
+ global___GetGeometryVersionResponse = GetGeometryVersionResponse