luminarycloud 0.21.2__py3-none-any.whl → 0.22.1__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 +3 -1
- luminarycloud/_client/authentication_plugin.py +49 -0
- luminarycloud/_client/client.py +38 -8
- luminarycloud/_client/http_client.py +1 -1
- luminarycloud/_client/retry_interceptor.py +64 -2
- luminarycloud/_feature_flag.py +22 -0
- luminarycloud/_helpers/_create_simulation.py +7 -2
- luminarycloud/_helpers/download.py +11 -0
- luminarycloud/_helpers/proto_decorator.py +13 -5
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.py +55 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2.pyi +52 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.py +72 -0
- luminarycloud/_proto/api/v0/luminarycloud/feature_flag/feature_flag_pb2_grpc.pyi +35 -0
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.py +132 -132
- luminarycloud/_proto/api/v0/luminarycloud/geometry/geometry_pb2.pyi +36 -8
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +74 -73
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +8 -1
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.py +53 -23
- luminarycloud/_proto/api/v0/luminarycloud/physics_ai/physics_ai_pb2.pyi +54 -1
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.py +195 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2.pyi +361 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.py +172 -0
- luminarycloud/_proto/api/v0/luminarycloud/physicsaiinference/physicsaiinference_pb2_grpc.pyi +66 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.py +97 -61
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2.pyi +68 -3
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation/simulation_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.py +33 -31
- luminarycloud/_proto/api/v0/luminarycloud/simulation_template/simulation_template_pb2.pyi +23 -2
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.py +88 -65
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2.pyi +42 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/thirdpartyintegration/onshape/onshape_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/base/base_pb2.py +7 -6
- luminarycloud/_proto/base/base_pb2.pyi +4 -0
- luminarycloud/_proto/cad/shape_pb2.py +39 -19
- luminarycloud/_proto/cad/shape_pb2.pyi +86 -34
- luminarycloud/_proto/client/simulation_pb2.py +3 -3
- luminarycloud/_proto/geometry/geometry_pb2.py +77 -63
- luminarycloud/_proto/geometry/geometry_pb2.pyi +42 -3
- luminarycloud/_proto/hexmesh/hexmesh_pb2.py +22 -18
- luminarycloud/_proto/hexmesh/hexmesh_pb2.pyi +18 -2
- luminarycloud/_proto/physicsaiinferenceservice/physicsaiinferenceservice_pb2.py +30 -0
- luminarycloud/_proto/physicsaiinferenceservice/physicsaiinferenceservice_pb2.pyi +7 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2.py +2 -2
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.py +34 -0
- luminarycloud/_proto/physicsaitrainingservice/physicsaitrainingservice_pb2_grpc.pyi +12 -0
- luminarycloud/enum/vis_enums.py +6 -0
- luminarycloud/feature_modification.py +32 -1
- luminarycloud/geometry.py +67 -7
- luminarycloud/geometry_version.py +4 -0
- luminarycloud/mesh.py +4 -0
- luminarycloud/meshing/mesh_generation_params.py +13 -14
- luminarycloud/meshing/sizing_strategy/sizing_strategies.py +1 -2
- luminarycloud/physics_ai/solution.py +4 -0
- luminarycloud/pipelines/api.py +99 -8
- luminarycloud/pipelines/core.py +12 -2
- luminarycloud/pipelines/stages.py +22 -9
- luminarycloud/project.py +5 -8
- luminarycloud/simulation.py +57 -0
- luminarycloud/types/vector3.py +1 -2
- luminarycloud/vis/data_extraction.py +7 -7
- luminarycloud/vis/interactive_report.py +163 -7
- luminarycloud/vis/report.py +113 -1
- luminarycloud/volume_selection.py +71 -7
- {luminarycloud-0.21.2.dist-info → luminarycloud-0.22.1.dist-info}/METADATA +1 -1
- {luminarycloud-0.21.2.dist-info → luminarycloud-0.22.1.dist-info}/RECORD +68 -58
- {luminarycloud-0.21.2.dist-info → luminarycloud-0.22.1.dist-info}/WHEEL +1 -1
- luminarycloud/pipeline_util/dictable.py +0 -27
|
@@ -22,7 +22,7 @@ from luminarycloud._proto.lcn import lcmesh_pb2 as proto_dot_lcn_dot_lcmesh__pb2
|
|
|
22
22
|
from luminarycloud._proto.ratelimit import ratelimit_pb2 as proto_dot_ratelimit_dot_ratelimit__pb2
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
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\x15proto/base/base.proto\x1a#proto/cadmetadata/cadmetadata.proto\x1a\x16proto/lcn/lcmesh.proto\x1a\x1fproto/ratelimit/ratelimit.proto\"\x86\x04\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/\n\x0bupdate_time\x18\x04 \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\x12\n\nproject_id\x18\t \x01(\t\x12R\n\x06status\x18\n \x01(\x0e\x32=.luminary.proto.api.v0.luminarycloud.geometry.Geometry.StatusH\x00\x88\x01\x01\x12O\n\x08versions\x18\x0b \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\"w\n\x06Status\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x08\n\x04\x42USY\x10\x01\x12\x16\n\x12HAS_FEATURE_ERRORS\x10\x05\x12\x13\n\x0fREADY_FOR_CHECK\x10\x02\x12\x0c\n\x08\x43HECKING\x10\x06\x12\x10\n\x0c\x46\x41ILED_CHECK\x10\x03\x12\t\n\x05READY\x10\x04\x42\t\n\x07_statusJ\x04\x08\x08\x10\t\"\xd2\x01\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\x12\x0c\n\x04name\x18\x04 \x01(\t\x12\x38\n\x0bkernel_type\x18\x05 \x01(\x0e\x32#.luminary.proto.geometry.KernelType\x12%\n\x1dnamed_variable_set_version_id\x18\x06 \x01(\t\"\x84\x02\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\x12\x10\n\x08\x64\x61ta_url\x18\x07 \x01(\t\x12\x15\n\rmeta_data_url\x18\x08 \x01(\t\"O\n\x12GetGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12$\n\x1cinclude_interesting_versions\x18\x02 \x01(\x08\"_\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\"Q\n\x15ListGeometriesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12$\n\x1cinclude_interesting_versions\x18\x02 \x01(\x08\"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\"\xaa\x0f\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\x8b\x04\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\x12\x38\n\x0bkernel_type\x18\n \x01(\x0e\x32#.luminary.proto.geometry.KernelType\x12%\n\x1dnamed_variable_set_version_id\x18\x0b \x01(\t\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\"\xd7\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\x17\n\x0fweb_geometry_id\x18\t \x01(\t\x12\x15\n\rscaling_float\x18\x04 \x01(\x01\x12\x31\n\x07scaling\x18\n \x01(\x0b\x32 .luminary.proto.base.AdFloatType\x12\x0c\n\x04wait\x18\x05 \x01(\x08\x12\x12\n\nrequest_id\x18\x08 \x01(\tJ\x04\x08\x06\x10\x07J\x04\x08\x07\x10\x08\"b\n\x16\x43reateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\":\n\x15UpdateGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"b\n\x16UpdateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"L\n\x13\x43opyGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"`\n\x14\x43opyGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"_\n\x1e\x43opyGeometryFromVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"k\n\x1f\x43opyGeometryFromVersionResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\",\n\x15\x44\x65leteGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x18\n\x16\x44\x65leteGeometryResponse\"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\"\x94\x01\n\x1bListGeometryVersionsRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x12\n\nunfiltered\x18\x02 \x01(\x08\x12\x16\n\tpage_size\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x17\n\npage_token\x18\x04 \x01(\tH\x01\x88\x01\x01\x42\x0c\n\n_page_sizeB\r\n\x0b_page_token\"\xa6\x01\n\x1cListGeometryVersionsResponse\x12X\n\x11geometry_versions\x18\x01 \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0btotal_count\x18\x03 \x01(\x05\"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\"I\n\x1cUpdateGeometryVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"x\n\x1dUpdateGeometryVersionResponse\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\x92*\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\xc2\x01\n\x0eUpdateGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryResponse\"%\x82\xd3\xe4\x93\x02\x1f\x32\x1a/v0/geometry/{geometry_id}:\x01*\x12\xcb\x01\n\x0c\x43opyGeometry\x12\x41.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryRequest\x1a\x42.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryResponse\"4\x82\xd3\xe4\x93\x02$\"\x1f/v0/geometry/{geometry_id}:copy:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x01\x12\xfc\x01\n\x17\x43opyGeometryFromVersion\x12L.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryFromVersionRequest\x1aM.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryFromVersionResponse\"D\x82\xd3\xe4\x93\x02\x34\"//v0/geometry_from_version/{geometry_version_id}:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x01\x12\xc9\x01\n\x0e\x44\x65leteGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.DeleteGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.DeleteGeometryResponse\",\x82\xd3\xe4\x93\x02&\"!/v0/geometry/{geometry_id}:delete:\x01*\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\xe4\x01\n\x14ListGeometryVersions\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryVersionsRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryVersionsResponse\"5\x82\xd3\xe4\x93\x02%\x12#/v0/geometry/{geometry_id}/versions\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\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\xe7\x01\n\x15UpdateGeometryVersion\x12J.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryVersionRequest\x1aK.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryVersionResponse\"5\x82\xd3\xe4\x93\x02/2*/v0/geometry_version/{geometry_version_id}:\x01*\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')
|
|
25
|
+
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\x15proto/base/base.proto\x1a#proto/cadmetadata/cadmetadata.proto\x1a\x16proto/lcn/lcmesh.proto\x1a\x1fproto/ratelimit/ratelimit.proto\"\xdd\x04\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/\n\x0bupdate_time\x18\x04 \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\x12\n\nproject_id\x18\t \x01(\t\x12R\n\x06status\x18\n \x01(\x0e\x32=.luminary.proto.api.v0.luminarycloud.geometry.Geometry.StatusH\x00\x88\x01\x01\x12U\n\x05\x63heck\x18\x0c \x01(\x0b\x32\x46.luminary.proto.api.v0.luminarycloud.geometry.GetCheckGeometryResponse\x12O\n\x08versions\x18\x0b \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\"w\n\x06Status\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x08\n\x04\x42USY\x10\x01\x12\x16\n\x12HAS_FEATURE_ERRORS\x10\x05\x12\x13\n\x0fREADY_FOR_CHECK\x10\x02\x12\x0c\n\x08\x43HECKING\x10\x06\x12\x10\n\x0c\x46\x41ILED_CHECK\x10\x03\x12\t\n\x05READY\x10\x04\x42\t\n\x07_statusJ\x04\x08\x08\x10\t\"\x88\x03\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\x12\x0c\n\x04name\x18\x04 \x01(\t\x12\x38\n\x0bkernel_type\x18\x05 \x01(\x0e\x32#.luminary.proto.geometry.KernelType\x12%\n\x1dnamed_variable_set_version_id\x18\x06 \x01(\t\x12U\n\x05\x63heck\x18\x07 \x01(\x0b\x32\x46.luminary.proto.api.v0.luminarycloud.geometry.GetCheckGeometryResponse\x12R\n\x06status\x18\x08 \x01(\x0e\x32=.luminary.proto.api.v0.luminarycloud.geometry.Geometry.StatusH\x00\x88\x01\x01\x42\t\n\x07_status\"\x84\x02\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\x12\x10\n\x08\x64\x61ta_url\x18\x07 \x01(\t\x12\x15\n\rmeta_data_url\x18\x08 \x01(\t\"O\n\x12GetGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12$\n\x1cinclude_interesting_versions\x18\x02 \x01(\x08\"_\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\"Q\n\x15ListGeometriesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12$\n\x1cinclude_interesting_versions\x18\x02 \x01(\x08\"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\"\xaa\x0f\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\x8b\x04\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\x12\x38\n\x0bkernel_type\x18\n \x01(\x0e\x32#.luminary.proto.geometry.KernelType\x12%\n\x1dnamed_variable_set_version_id\x18\x0b \x01(\t\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\"\xd7\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\x17\n\x0fweb_geometry_id\x18\t \x01(\t\x12\x15\n\rscaling_float\x18\x04 \x01(\x01\x12\x31\n\x07scaling\x18\n \x01(\x0b\x32 .luminary.proto.base.AdFloatType\x12\x0c\n\x04wait\x18\x05 \x01(\x08\x12\x12\n\nrequest_id\x18\x08 \x01(\tJ\x04\x08\x06\x10\x07J\x04\x08\x07\x10\x08\"b\n\x16\x43reateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\":\n\x15UpdateGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"b\n\x16UpdateGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"L\n\x13\x43opyGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"`\n\x14\x43opyGeometryResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\"_\n\x1e\x43opyGeometryFromVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x12\n\nrequest_id\x18\x03 \x01(\t\"k\n\x1f\x43opyGeometryFromVersionResponse\x12H\n\x08geometry\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.geometry.Geometry\",\n\x15\x44\x65leteGeometryRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\"\x18\n\x16\x44\x65leteGeometryResponse\"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\"\xb3\x01\n\x1bListGeometryVersionsRequest\x12\x13\n\x0bgeometry_id\x18\x01 \x01(\t\x12\x12\n\nunfiltered\x18\x02 \x01(\x08\x12\x1d\n\x15include_check_results\x18\x05 \x01(\x08\x12\x16\n\tpage_size\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x17\n\npage_token\x18\x04 \x01(\tH\x01\x88\x01\x01\x42\x0c\n\n_page_sizeB\r\n\x0b_page_token\"\xa6\x01\n\x1cListGeometryVersionsResponse\x12X\n\x11geometry_versions\x18\x01 \x03(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0btotal_count\x18\x03 \x01(\x05\"W\n\x19GetGeometryVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\x12\x1d\n\x15include_check_results\x18\x02 \x01(\x08\"u\n\x1aGetGeometryVersionResponse\x12W\n\x10geometry_version\x18\x01 \x01(\x0b\x32=.luminary.proto.api.v0.luminarycloud.geometry.GeometryVersion\"I\n\x1cUpdateGeometryVersionRequest\x12\x1b\n\x13geometry_version_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"x\n\x1dUpdateGeometryVersionResponse\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\x92*\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\xc2\x01\n\x0eUpdateGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryResponse\"%\x82\xd3\xe4\x93\x02\x1f\x32\x1a/v0/geometry/{geometry_id}:\x01*\x12\xcb\x01\n\x0c\x43opyGeometry\x12\x41.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryRequest\x1a\x42.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryResponse\"4\x82\xd3\xe4\x93\x02$\"\x1f/v0/geometry/{geometry_id}:copy:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x01\x12\xfc\x01\n\x17\x43opyGeometryFromVersion\x12L.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryFromVersionRequest\x1aM.luminary.proto.api.v0.luminarycloud.geometry.CopyGeometryFromVersionResponse\"D\x82\xd3\xe4\x93\x02\x34\"//v0/geometry_from_version/{geometry_version_id}:\x01*\x8a\xb5\x18\x06\x08\x1e\x12\x02\x08\x01\x12\xc9\x01\n\x0e\x44\x65leteGeometry\x12\x43.luminary.proto.api.v0.luminarycloud.geometry.DeleteGeometryRequest\x1a\x44.luminary.proto.api.v0.luminarycloud.geometry.DeleteGeometryResponse\",\x82\xd3\xe4\x93\x02&\"!/v0/geometry/{geometry_id}:delete:\x01*\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\xe4\x01\n\x14ListGeometryVersions\x12I.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryVersionsRequest\x1aJ.luminary.proto.api.v0.luminarycloud.geometry.ListGeometryVersionsResponse\"5\x82\xd3\xe4\x93\x02%\x12#/v0/geometry/{geometry_id}/versions\x8a\xb5\x18\x06\x08\x14\x12\x02\x08\x01\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\xe7\x01\n\x15UpdateGeometryVersion\x12J.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryVersionRequest\x1aK.luminary.proto.api.v0.luminarycloud.geometry.UpdateGeometryVersionResponse\"5\x82\xd3\xe4\x93\x02/2*/v0/geometry_version/{geometry_version_id}:\x01*\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')
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
@@ -599,135 +599,135 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
599
599
|
_GEOMETRYSERVICE.methods_by_name['GetSdkCode']._options = None
|
|
600
600
|
_GEOMETRYSERVICE.methods_by_name['GetSdkCode']._serialized_options = b'\202\323\344\223\002%\022#/v0/geometry/{geometry_id}/sdk-code'
|
|
601
601
|
_GEOMETRY._serialized_start=341
|
|
602
|
-
_GEOMETRY._serialized_end=
|
|
603
|
-
_GEOMETRY_STATUS._serialized_start=
|
|
604
|
-
_GEOMETRY_STATUS._serialized_end=
|
|
605
|
-
_GEOMETRYVERSION._serialized_start=
|
|
606
|
-
_GEOMETRYVERSION._serialized_end=
|
|
607
|
-
_TESSELLATIONDATA._serialized_start=
|
|
608
|
-
_TESSELLATIONDATA._serialized_end=
|
|
609
|
-
_GETGEOMETRYREQUEST._serialized_start=
|
|
610
|
-
_GETGEOMETRYREQUEST._serialized_end=
|
|
611
|
-
_GETGEOMETRYRESPONSE._serialized_start=
|
|
612
|
-
_GETGEOMETRYRESPONSE._serialized_end=
|
|
613
|
-
_LISTGEOMETRYFEATURESREQUEST._serialized_start=
|
|
614
|
-
_LISTGEOMETRYFEATURESREQUEST._serialized_end=
|
|
615
|
-
_LISTGEOMETRYFEATURESRESPONSE._serialized_start=
|
|
616
|
-
_LISTGEOMETRYFEATURESRESPONSE._serialized_end=
|
|
617
|
-
_LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=
|
|
618
|
-
_LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=
|
|
619
|
-
_LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=
|
|
620
|
-
_LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=
|
|
621
|
-
_LISTGEOMETRYENTITIESREQUEST._serialized_start=
|
|
622
|
-
_LISTGEOMETRYENTITIESREQUEST._serialized_end=
|
|
623
|
-
_LISTGEOMETRYENTITIESRESPONSE._serialized_start=
|
|
624
|
-
_LISTGEOMETRYENTITIESRESPONSE._serialized_end=
|
|
625
|
-
_LISTGEOMETRIESREQUEST._serialized_start=
|
|
626
|
-
_LISTGEOMETRIESREQUEST._serialized_end=
|
|
627
|
-
_LISTGEOMETRIESRESPONSE._serialized_start=
|
|
628
|
-
_LISTGEOMETRIESRESPONSE._serialized_end=
|
|
629
|
-
_SUBSCRIBEGEOMETRYREQUEST._serialized_start=
|
|
630
|
-
_SUBSCRIBEGEOMETRYREQUEST._serialized_end=
|
|
631
|
-
_GEOMETRYHISTORY._serialized_start=
|
|
632
|
-
_GEOMETRYHISTORY._serialized_end=
|
|
633
|
-
_GEOMETRYHISTORY_HISTORYENTRY._serialized_start=
|
|
634
|
-
_GEOMETRYHISTORY_HISTORYENTRY._serialized_end=
|
|
635
|
-
_SUBSCRIBEGEOMETRYRESPONSE._serialized_start=
|
|
636
|
-
_SUBSCRIBEGEOMETRYRESPONSE._serialized_end=
|
|
637
|
-
_SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=
|
|
638
|
-
_SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=
|
|
639
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=
|
|
640
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=
|
|
641
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=
|
|
642
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=
|
|
643
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=
|
|
644
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=
|
|
645
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=
|
|
646
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=
|
|
647
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=
|
|
648
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=
|
|
649
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=
|
|
650
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=
|
|
651
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=
|
|
652
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=
|
|
653
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=
|
|
654
|
-
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=
|
|
655
|
-
_MODIFYGEOMETRYREQUEST._serialized_start=
|
|
656
|
-
_MODIFYGEOMETRYREQUEST._serialized_end=
|
|
657
|
-
_MODIFYGEOMETRYRESPONSE._serialized_start=
|
|
658
|
-
_MODIFYGEOMETRYRESPONSE._serialized_end=
|
|
659
|
-
_CREATEGEOMETRYREQUEST._serialized_start=
|
|
660
|
-
_CREATEGEOMETRYREQUEST._serialized_end=
|
|
661
|
-
_CREATEGEOMETRYRESPONSE._serialized_start=
|
|
662
|
-
_CREATEGEOMETRYRESPONSE._serialized_end=
|
|
663
|
-
_UPDATEGEOMETRYREQUEST._serialized_start=
|
|
664
|
-
_UPDATEGEOMETRYREQUEST._serialized_end=
|
|
665
|
-
_UPDATEGEOMETRYRESPONSE._serialized_start=
|
|
666
|
-
_UPDATEGEOMETRYRESPONSE._serialized_end=
|
|
667
|
-
_COPYGEOMETRYREQUEST._serialized_start=
|
|
668
|
-
_COPYGEOMETRYREQUEST._serialized_end=
|
|
669
|
-
_COPYGEOMETRYRESPONSE._serialized_start=
|
|
670
|
-
_COPYGEOMETRYRESPONSE._serialized_end=
|
|
671
|
-
_COPYGEOMETRYFROMVERSIONREQUEST._serialized_start=
|
|
672
|
-
_COPYGEOMETRYFROMVERSIONREQUEST._serialized_end=
|
|
673
|
-
_COPYGEOMETRYFROMVERSIONRESPONSE._serialized_start=
|
|
674
|
-
_COPYGEOMETRYFROMVERSIONRESPONSE._serialized_end=
|
|
675
|
-
_DELETEGEOMETRYREQUEST._serialized_start=
|
|
676
|
-
_DELETEGEOMETRYREQUEST._serialized_end=
|
|
677
|
-
_DELETEGEOMETRYRESPONSE._serialized_start=
|
|
678
|
-
_DELETEGEOMETRYRESPONSE._serialized_end=
|
|
679
|
-
_CHECKGEOMETRYREQUEST._serialized_start=
|
|
680
|
-
_CHECKGEOMETRYREQUEST._serialized_end=
|
|
681
|
-
_CHECKGEOMETRYRESPONSE._serialized_start=
|
|
682
|
-
_CHECKGEOMETRYRESPONSE._serialized_end=
|
|
683
|
-
_GETCHECKGEOMETRYRESPONSE._serialized_start=
|
|
684
|
-
_GETCHECKGEOMETRYRESPONSE._serialized_end=
|
|
685
|
-
_TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=
|
|
686
|
-
_TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=
|
|
687
|
-
_TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=
|
|
688
|
-
_TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=
|
|
689
|
-
_LATESTTESSELLATIONREQUEST._serialized_start=
|
|
690
|
-
_LATESTTESSELLATIONREQUEST._serialized_end=
|
|
691
|
-
_LATESTTESSELLATIONRESPONSE._serialized_start=
|
|
692
|
-
_LATESTTESSELLATIONRESPONSE._serialized_end=
|
|
693
|
-
_KEEPALIVEREQUEST._serialized_start=
|
|
694
|
-
_KEEPALIVEREQUEST._serialized_end=
|
|
695
|
-
_KEEPALIVERESPONSE._serialized_start=
|
|
696
|
-
_KEEPALIVERESPONSE._serialized_end=
|
|
697
|
-
_PANICREQUEST._serialized_start=
|
|
698
|
-
_PANICREQUEST._serialized_end=
|
|
699
|
-
_PANICRESPONSE._serialized_start=
|
|
700
|
-
_PANICRESPONSE._serialized_end=
|
|
701
|
-
_STOPWORKERREQUEST._serialized_start=
|
|
702
|
-
_STOPWORKERREQUEST._serialized_end=
|
|
703
|
-
_STOPWORKERRESPONSE._serialized_start=
|
|
704
|
-
_STOPWORKERRESPONSE._serialized_end=
|
|
705
|
-
_GETTAGSREQUEST._serialized_start=
|
|
706
|
-
_GETTAGSREQUEST._serialized_end=
|
|
707
|
-
_GETTAGSRESPONSE._serialized_start=
|
|
708
|
-
_GETTAGSRESPONSE._serialized_end=
|
|
709
|
-
_TAG._serialized_start=
|
|
710
|
-
_TAG._serialized_end=
|
|
711
|
-
_LISTTAGSREQUEST._serialized_start=
|
|
712
|
-
_LISTTAGSREQUEST._serialized_end=
|
|
713
|
-
_LISTTAGSRESPONSE._serialized_start=
|
|
714
|
-
_LISTTAGSRESPONSE._serialized_end=
|
|
715
|
-
_LISTGEOMETRYVERSIONSREQUEST._serialized_start=
|
|
716
|
-
_LISTGEOMETRYVERSIONSREQUEST._serialized_end=
|
|
717
|
-
_LISTGEOMETRYVERSIONSRESPONSE._serialized_start=
|
|
718
|
-
_LISTGEOMETRYVERSIONSRESPONSE._serialized_end=
|
|
719
|
-
_GETGEOMETRYVERSIONREQUEST._serialized_start=
|
|
720
|
-
_GETGEOMETRYVERSIONREQUEST._serialized_end=
|
|
721
|
-
_GETGEOMETRYVERSIONRESPONSE._serialized_start=
|
|
722
|
-
_GETGEOMETRYVERSIONRESPONSE._serialized_end=
|
|
723
|
-
_UPDATEGEOMETRYVERSIONREQUEST._serialized_start=
|
|
724
|
-
_UPDATEGEOMETRYVERSIONREQUEST._serialized_end=
|
|
725
|
-
_UPDATEGEOMETRYVERSIONRESPONSE._serialized_start=
|
|
726
|
-
_UPDATEGEOMETRYVERSIONRESPONSE._serialized_end=
|
|
727
|
-
_GETSDKCODEREQUEST._serialized_start=
|
|
728
|
-
_GETSDKCODEREQUEST._serialized_end=
|
|
729
|
-
_GETSDKCODERESPONSE._serialized_start=
|
|
730
|
-
_GETSDKCODERESPONSE._serialized_end=
|
|
731
|
-
_GEOMETRYSERVICE._serialized_start=
|
|
732
|
-
_GEOMETRYSERVICE._serialized_end=
|
|
602
|
+
_GEOMETRY._serialized_end=946
|
|
603
|
+
_GEOMETRY_STATUS._serialized_start=810
|
|
604
|
+
_GEOMETRY_STATUS._serialized_end=929
|
|
605
|
+
_GEOMETRYVERSION._serialized_start=949
|
|
606
|
+
_GEOMETRYVERSION._serialized_end=1341
|
|
607
|
+
_TESSELLATIONDATA._serialized_start=1344
|
|
608
|
+
_TESSELLATIONDATA._serialized_end=1604
|
|
609
|
+
_GETGEOMETRYREQUEST._serialized_start=1606
|
|
610
|
+
_GETGEOMETRYREQUEST._serialized_end=1685
|
|
611
|
+
_GETGEOMETRYRESPONSE._serialized_start=1687
|
|
612
|
+
_GETGEOMETRYRESPONSE._serialized_end=1782
|
|
613
|
+
_LISTGEOMETRYFEATURESREQUEST._serialized_start=1784
|
|
614
|
+
_LISTGEOMETRYFEATURESREQUEST._serialized_end=1889
|
|
615
|
+
_LISTGEOMETRYFEATURESRESPONSE._serialized_start=1891
|
|
616
|
+
_LISTGEOMETRYFEATURESRESPONSE._serialized_end=1973
|
|
617
|
+
_LISTGEOMETRYFEATUREISSUESREQUEST._serialized_start=1975
|
|
618
|
+
_LISTGEOMETRYFEATUREISSUESREQUEST._serialized_end=2085
|
|
619
|
+
_LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_start=2087
|
|
620
|
+
_LISTGEOMETRYFEATUREISSUESRESPONSE._serialized_end=2187
|
|
621
|
+
_LISTGEOMETRYENTITIESREQUEST._serialized_start=2189
|
|
622
|
+
_LISTGEOMETRYENTITIESREQUEST._serialized_end=2294
|
|
623
|
+
_LISTGEOMETRYENTITIESRESPONSE._serialized_start=2296
|
|
624
|
+
_LISTGEOMETRYENTITIESRESPONSE._serialized_end=2419
|
|
625
|
+
_LISTGEOMETRIESREQUEST._serialized_start=2421
|
|
626
|
+
_LISTGEOMETRIESREQUEST._serialized_end=2502
|
|
627
|
+
_LISTGEOMETRIESRESPONSE._serialized_start=2504
|
|
628
|
+
_LISTGEOMETRIESRESPONSE._serialized_end=2604
|
|
629
|
+
_SUBSCRIBEGEOMETRYREQUEST._serialized_start=2606
|
|
630
|
+
_SUBSCRIBEGEOMETRYREQUEST._serialized_end=2679
|
|
631
|
+
_GEOMETRYHISTORY._serialized_start=2682
|
|
632
|
+
_GEOMETRYHISTORY._serialized_end=2970
|
|
633
|
+
_GEOMETRYHISTORY_HISTORYENTRY._serialized_start=2801
|
|
634
|
+
_GEOMETRYHISTORY_HISTORYENTRY._serialized_end=2970
|
|
635
|
+
_SUBSCRIBEGEOMETRYRESPONSE._serialized_start=2973
|
|
636
|
+
_SUBSCRIBEGEOMETRYRESPONSE._serialized_end=4935
|
|
637
|
+
_SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_start=3294
|
|
638
|
+
_SUBSCRIBEGEOMETRYRESPONSE_GEOMETRYCHECKPOINT._serialized_end=3817
|
|
639
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_start=3820
|
|
640
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE._serialized_end=4919
|
|
641
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_start=4707
|
|
642
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATUREPROGRESS._serialized_end=4744
|
|
643
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_start=4746
|
|
644
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_FEATURETESSELLATION._serialized_end=4787
|
|
645
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_start=4789
|
|
646
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_UNDOREDO._serialized_end=4799
|
|
647
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_start=4801
|
|
648
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RELOADING._serialized_end=4812
|
|
649
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_start=4814
|
|
650
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_DELETEFEATURE._serialized_end=4849
|
|
651
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_start=4851
|
|
652
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_RENAMEFEATURE._serialized_end=4886
|
|
653
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_start=4888
|
|
654
|
+
_SUBSCRIBEGEOMETRYRESPONSE_BUSYSTATE_TAGOPERATION._serialized_end=4902
|
|
655
|
+
_MODIFYGEOMETRYREQUEST._serialized_start=4937
|
|
656
|
+
_MODIFYGEOMETRYREQUEST._serialized_end=5062
|
|
657
|
+
_MODIFYGEOMETRYRESPONSE._serialized_start=5065
|
|
658
|
+
_MODIFYGEOMETRYRESPONSE._serialized_end=5256
|
|
659
|
+
_CREATEGEOMETRYREQUEST._serialized_start=5259
|
|
660
|
+
_CREATEGEOMETRYREQUEST._serialized_end=5474
|
|
661
|
+
_CREATEGEOMETRYRESPONSE._serialized_start=5476
|
|
662
|
+
_CREATEGEOMETRYRESPONSE._serialized_end=5574
|
|
663
|
+
_UPDATEGEOMETRYREQUEST._serialized_start=5576
|
|
664
|
+
_UPDATEGEOMETRYREQUEST._serialized_end=5634
|
|
665
|
+
_UPDATEGEOMETRYRESPONSE._serialized_start=5636
|
|
666
|
+
_UPDATEGEOMETRYRESPONSE._serialized_end=5734
|
|
667
|
+
_COPYGEOMETRYREQUEST._serialized_start=5736
|
|
668
|
+
_COPYGEOMETRYREQUEST._serialized_end=5812
|
|
669
|
+
_COPYGEOMETRYRESPONSE._serialized_start=5814
|
|
670
|
+
_COPYGEOMETRYRESPONSE._serialized_end=5910
|
|
671
|
+
_COPYGEOMETRYFROMVERSIONREQUEST._serialized_start=5912
|
|
672
|
+
_COPYGEOMETRYFROMVERSIONREQUEST._serialized_end=6007
|
|
673
|
+
_COPYGEOMETRYFROMVERSIONRESPONSE._serialized_start=6009
|
|
674
|
+
_COPYGEOMETRYFROMVERSIONRESPONSE._serialized_end=6116
|
|
675
|
+
_DELETEGEOMETRYREQUEST._serialized_start=6118
|
|
676
|
+
_DELETEGEOMETRYREQUEST._serialized_end=6162
|
|
677
|
+
_DELETEGEOMETRYRESPONSE._serialized_start=6164
|
|
678
|
+
_DELETEGEOMETRYRESPONSE._serialized_end=6188
|
|
679
|
+
_CHECKGEOMETRYREQUEST._serialized_start=6190
|
|
680
|
+
_CHECKGEOMETRYREQUEST._serialized_end=6262
|
|
681
|
+
_CHECKGEOMETRYRESPONSE._serialized_start=6264
|
|
682
|
+
_CHECKGEOMETRYRESPONSE._serialized_end=6315
|
|
683
|
+
_GETCHECKGEOMETRYRESPONSE._serialized_start=6317
|
|
684
|
+
_GETCHECKGEOMETRYRESPONSE._serialized_end=6389
|
|
685
|
+
_TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_start=6391
|
|
686
|
+
_TESSELLATIONUPTOMODIFICATIONREQUEST._serialized_end=6474
|
|
687
|
+
_TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_start=6476
|
|
688
|
+
_TESSELLATIONUPTOMODIFICATIONRESPONSE._serialized_end=6534
|
|
689
|
+
_LATESTTESSELLATIONREQUEST._serialized_start=6536
|
|
690
|
+
_LATESTTESSELLATIONREQUEST._serialized_end=6584
|
|
691
|
+
_LATESTTESSELLATIONRESPONSE._serialized_start=6586
|
|
692
|
+
_LATESTTESSELLATIONRESPONSE._serialized_end=6639
|
|
693
|
+
_KEEPALIVEREQUEST._serialized_start=6641
|
|
694
|
+
_KEEPALIVEREQUEST._serialized_end=6680
|
|
695
|
+
_KEEPALIVERESPONSE._serialized_start=6682
|
|
696
|
+
_KEEPALIVERESPONSE._serialized_end=6701
|
|
697
|
+
_PANICREQUEST._serialized_start=6703
|
|
698
|
+
_PANICREQUEST._serialized_end=6717
|
|
699
|
+
_PANICRESPONSE._serialized_start=6719
|
|
700
|
+
_PANICRESPONSE._serialized_end=6734
|
|
701
|
+
_STOPWORKERREQUEST._serialized_start=6736
|
|
702
|
+
_STOPWORKERREQUEST._serialized_end=6776
|
|
703
|
+
_STOPWORKERRESPONSE._serialized_start=6778
|
|
704
|
+
_STOPWORKERRESPONSE._serialized_end=6798
|
|
705
|
+
_GETTAGSREQUEST._serialized_start=6800
|
|
706
|
+
_GETTAGSREQUEST._serialized_end=6866
|
|
707
|
+
_GETTAGSRESPONSE._serialized_start=6868
|
|
708
|
+
_GETTAGSRESPONSE._serialized_end=6930
|
|
709
|
+
_TAG._serialized_start=6932
|
|
710
|
+
_TAG._serialized_end=7014
|
|
711
|
+
_LISTTAGSREQUEST._serialized_start=7016
|
|
712
|
+
_LISTTAGSREQUEST._serialized_end=7109
|
|
713
|
+
_LISTTAGSRESPONSE._serialized_start=7111
|
|
714
|
+
_LISTTAGSRESPONSE._serialized_end=7194
|
|
715
|
+
_LISTGEOMETRYVERSIONSREQUEST._serialized_start=7197
|
|
716
|
+
_LISTGEOMETRYVERSIONSREQUEST._serialized_end=7376
|
|
717
|
+
_LISTGEOMETRYVERSIONSRESPONSE._serialized_start=7379
|
|
718
|
+
_LISTGEOMETRYVERSIONSRESPONSE._serialized_end=7545
|
|
719
|
+
_GETGEOMETRYVERSIONREQUEST._serialized_start=7547
|
|
720
|
+
_GETGEOMETRYVERSIONREQUEST._serialized_end=7634
|
|
721
|
+
_GETGEOMETRYVERSIONRESPONSE._serialized_start=7636
|
|
722
|
+
_GETGEOMETRYVERSIONRESPONSE._serialized_end=7753
|
|
723
|
+
_UPDATEGEOMETRYVERSIONREQUEST._serialized_start=7755
|
|
724
|
+
_UPDATEGEOMETRYVERSIONREQUEST._serialized_end=7828
|
|
725
|
+
_UPDATEGEOMETRYVERSIONRESPONSE._serialized_start=7830
|
|
726
|
+
_UPDATEGEOMETRYVERSIONRESPONSE._serialized_end=7950
|
|
727
|
+
_GETSDKCODEREQUEST._serialized_start=7952
|
|
728
|
+
_GETSDKCODEREQUEST._serialized_end=8021
|
|
729
|
+
_GETSDKCODERESPONSE._serialized_start=8023
|
|
730
|
+
_GETSDKCODERESPONSE._serialized_end=8061
|
|
731
|
+
_GEOMETRYSERVICE._serialized_start=8064
|
|
732
|
+
_GEOMETRYSERVICE._serialized_end=13458
|
|
733
733
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -72,6 +72,7 @@ class Geometry(google.protobuf.message.Message):
|
|
|
72
72
|
USES_TAGS_FIELD_NUMBER: builtins.int
|
|
73
73
|
PROJECT_ID_FIELD_NUMBER: builtins.int
|
|
74
74
|
STATUS_FIELD_NUMBER: builtins.int
|
|
75
|
+
CHECK_FIELD_NUMBER: builtins.int
|
|
75
76
|
VERSIONS_FIELD_NUMBER: builtins.int
|
|
76
77
|
id: builtins.str
|
|
77
78
|
name: builtins.str
|
|
@@ -84,6 +85,10 @@ class Geometry(google.protobuf.message.Message):
|
|
|
84
85
|
uses_tags: builtins.bool
|
|
85
86
|
project_id: builtins.str
|
|
86
87
|
status: global___Geometry.Status.ValueType
|
|
88
|
+
"""Status for the latest version."""
|
|
89
|
+
@property
|
|
90
|
+
def check(self) -> global___GetCheckGeometryResponse:
|
|
91
|
+
"""Geometry check result for the latest version."""
|
|
87
92
|
@property
|
|
88
93
|
def versions(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___GeometryVersion]:
|
|
89
94
|
"""Versions are not populated by default, but can be included by request."""
|
|
@@ -99,10 +104,11 @@ class Geometry(google.protobuf.message.Message):
|
|
|
99
104
|
uses_tags: builtins.bool = ...,
|
|
100
105
|
project_id: builtins.str = ...,
|
|
101
106
|
status: global___Geometry.Status.ValueType | None = ...,
|
|
107
|
+
check: global___GetCheckGeometryResponse | None = ...,
|
|
102
108
|
versions: collections.abc.Iterable[global___GeometryVersion] | None = ...,
|
|
103
109
|
) -> None: ...
|
|
104
|
-
def HasField(self, field_name: typing_extensions.Literal["_status", b"_status", "create_time", b"create_time", "status", b"status", "update_time", b"update_time"]) -> builtins.bool: ...
|
|
105
|
-
def ClearField(self, field_name: typing_extensions.Literal["_status", b"_status", "create_time", b"create_time", "deleted", b"deleted", "id", b"id", "last_version_id", b"last_version_id", "name", b"name", "project_id", b"project_id", "status", b"status", "update_time", b"update_time", "uses_tags", b"uses_tags", "versions", b"versions"]) -> None: ...
|
|
110
|
+
def HasField(self, field_name: typing_extensions.Literal["_status", b"_status", "check", b"check", "create_time", b"create_time", "status", b"status", "update_time", b"update_time"]) -> builtins.bool: ...
|
|
111
|
+
def ClearField(self, field_name: typing_extensions.Literal["_status", b"_status", "check", b"check", "create_time", b"create_time", "deleted", b"deleted", "id", b"id", "last_version_id", b"last_version_id", "name", b"name", "project_id", b"project_id", "status", b"status", "update_time", b"update_time", "uses_tags", b"uses_tags", "versions", b"versions"]) -> None: ...
|
|
106
112
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["_status", b"_status"]) -> typing_extensions.Literal["status"] | None: ...
|
|
107
113
|
|
|
108
114
|
global___Geometry = Geometry
|
|
@@ -116,6 +122,8 @@ class GeometryVersion(google.protobuf.message.Message):
|
|
|
116
122
|
NAME_FIELD_NUMBER: builtins.int
|
|
117
123
|
KERNEL_TYPE_FIELD_NUMBER: builtins.int
|
|
118
124
|
NAMED_VARIABLE_SET_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
125
|
+
CHECK_FIELD_NUMBER: builtins.int
|
|
126
|
+
STATUS_FIELD_NUMBER: builtins.int
|
|
119
127
|
id: builtins.str
|
|
120
128
|
geometry_id: builtins.str
|
|
121
129
|
@property
|
|
@@ -123,6 +131,11 @@ class GeometryVersion(google.protobuf.message.Message):
|
|
|
123
131
|
name: builtins.str
|
|
124
132
|
kernel_type: luminarycloud._proto.geometry.geometry_pb2.KernelType.ValueType
|
|
125
133
|
named_variable_set_version_id: builtins.str
|
|
134
|
+
@property
|
|
135
|
+
def check(self) -> global___GetCheckGeometryResponse:
|
|
136
|
+
"""Optional. Included by some RPCs on request."""
|
|
137
|
+
status: global___Geometry.Status.ValueType
|
|
138
|
+
"""Optional. Included by some RPCs on request."""
|
|
126
139
|
def __init__(
|
|
127
140
|
self,
|
|
128
141
|
*,
|
|
@@ -132,9 +145,12 @@ class GeometryVersion(google.protobuf.message.Message):
|
|
|
132
145
|
name: builtins.str = ...,
|
|
133
146
|
kernel_type: luminarycloud._proto.geometry.geometry_pb2.KernelType.ValueType = ...,
|
|
134
147
|
named_variable_set_version_id: builtins.str = ...,
|
|
148
|
+
check: global___GetCheckGeometryResponse | None = ...,
|
|
149
|
+
status: global___Geometry.Status.ValueType | None = ...,
|
|
135
150
|
) -> None: ...
|
|
136
|
-
def HasField(self, field_name: typing_extensions.Literal["create_time", b"create_time"]) -> builtins.bool: ...
|
|
137
|
-
def ClearField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "geometry_id", b"geometry_id", "id", b"id", "kernel_type", b"kernel_type", "name", b"name", "named_variable_set_version_id", b"named_variable_set_version_id"]) -> None: ...
|
|
151
|
+
def HasField(self, field_name: typing_extensions.Literal["_status", b"_status", "check", b"check", "create_time", b"create_time", "status", b"status"]) -> builtins.bool: ...
|
|
152
|
+
def ClearField(self, field_name: typing_extensions.Literal["_status", b"_status", "check", b"check", "create_time", b"create_time", "geometry_id", b"geometry_id", "id", b"id", "kernel_type", b"kernel_type", "name", b"name", "named_variable_set_version_id", b"named_variable_set_version_id", "status", b"status"]) -> None: ...
|
|
153
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_status", b"_status"]) -> typing_extensions.Literal["status"] | None: ...
|
|
138
154
|
|
|
139
155
|
global___GeometryVersion = GeometryVersion
|
|
140
156
|
|
|
@@ -1235,14 +1251,19 @@ class ListGeometryVersionsRequest(google.protobuf.message.Message):
|
|
|
1235
1251
|
|
|
1236
1252
|
GEOMETRY_ID_FIELD_NUMBER: builtins.int
|
|
1237
1253
|
UNFILTERED_FIELD_NUMBER: builtins.int
|
|
1254
|
+
INCLUDE_CHECK_RESULTS_FIELD_NUMBER: builtins.int
|
|
1238
1255
|
PAGE_SIZE_FIELD_NUMBER: builtins.int
|
|
1239
1256
|
PAGE_TOKEN_FIELD_NUMBER: builtins.int
|
|
1240
1257
|
geometry_id: builtins.str
|
|
1241
1258
|
"""Required. The ID of the geometry to list versions for."""
|
|
1242
1259
|
unfiltered: builtins.bool
|
|
1243
1260
|
"""Optional. By default, the server only returns versions that are named OR have an associated
|
|
1244
|
-
Mesh OR are the latest version of the geometry.
|
|
1245
|
-
versions.
|
|
1261
|
+
Mesh OR are the latest version of the geometry (i.e. the "interesting" versions). If
|
|
1262
|
+
`unfiltered` is true, the server returns all versions.
|
|
1263
|
+
"""
|
|
1264
|
+
include_check_results: builtins.bool
|
|
1265
|
+
"""Optional. If true, the server will include the geometry check results for
|
|
1266
|
+
each version if available.
|
|
1246
1267
|
"""
|
|
1247
1268
|
page_size: builtins.int
|
|
1248
1269
|
"""Optional. The maximum number of versions to return. The service may return fewer than this
|
|
@@ -1260,11 +1281,12 @@ class ListGeometryVersionsRequest(google.protobuf.message.Message):
|
|
|
1260
1281
|
*,
|
|
1261
1282
|
geometry_id: builtins.str = ...,
|
|
1262
1283
|
unfiltered: builtins.bool = ...,
|
|
1284
|
+
include_check_results: builtins.bool = ...,
|
|
1263
1285
|
page_size: builtins.int | None = ...,
|
|
1264
1286
|
page_token: builtins.str | None = ...,
|
|
1265
1287
|
) -> None: ...
|
|
1266
1288
|
def HasField(self, field_name: typing_extensions.Literal["_page_size", b"_page_size", "_page_token", b"_page_token", "page_size", b"page_size", "page_token", b"page_token"]) -> builtins.bool: ...
|
|
1267
|
-
def ClearField(self, field_name: typing_extensions.Literal["_page_size", b"_page_size", "_page_token", b"_page_token", "geometry_id", b"geometry_id", "page_size", b"page_size", "page_token", b"page_token", "unfiltered", b"unfiltered"]) -> None: ...
|
|
1289
|
+
def ClearField(self, field_name: typing_extensions.Literal["_page_size", b"_page_size", "_page_token", b"_page_token", "geometry_id", b"geometry_id", "include_check_results", b"include_check_results", "page_size", b"page_size", "page_token", b"page_token", "unfiltered", b"unfiltered"]) -> None: ...
|
|
1268
1290
|
@typing.overload
|
|
1269
1291
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["_page_size", b"_page_size"]) -> typing_extensions.Literal["page_size"] | None: ...
|
|
1270
1292
|
@typing.overload
|
|
@@ -1302,13 +1324,19 @@ class GetGeometryVersionRequest(google.protobuf.message.Message):
|
|
|
1302
1324
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
1303
1325
|
|
|
1304
1326
|
GEOMETRY_VERSION_ID_FIELD_NUMBER: builtins.int
|
|
1327
|
+
INCLUDE_CHECK_RESULTS_FIELD_NUMBER: builtins.int
|
|
1305
1328
|
geometry_version_id: builtins.str
|
|
1329
|
+
include_check_results: builtins.bool
|
|
1330
|
+
"""Optional. If true, the server will include the geometry check result if
|
|
1331
|
+
available.
|
|
1332
|
+
"""
|
|
1306
1333
|
def __init__(
|
|
1307
1334
|
self,
|
|
1308
1335
|
*,
|
|
1309
1336
|
geometry_version_id: builtins.str = ...,
|
|
1337
|
+
include_check_results: builtins.bool = ...,
|
|
1310
1338
|
) -> None: ...
|
|
1311
|
-
def ClearField(self, field_name: typing_extensions.Literal["geometry_version_id", b"geometry_version_id"]) -> None: ...
|
|
1339
|
+
def ClearField(self, field_name: typing_extensions.Literal["geometry_version_id", b"geometry_version_id", "include_check_results", b"include_check_results"]) -> None: ...
|
|
1312
1340
|
|
|
1313
1341
|
global___GetGeometryVersionRequest = GetGeometryVersionRequest
|
|
1314
1342
|
|