luminarycloud 0.14.0__py3-none-any.whl → 0.14.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.
Files changed (35) hide show
  1. luminarycloud/__init__.py +3 -0
  2. luminarycloud/_client/client.py +4 -0
  3. luminarycloud/_client/logging_interceptor.py +25 -0
  4. luminarycloud/_client/tracing.py +13 -8
  5. luminarycloud/_helpers/__init__.py +1 -0
  6. luminarycloud/_helpers/download.py +16 -0
  7. luminarycloud/_helpers/named_variables.py +25 -0
  8. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +40 -40
  9. luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +8 -2
  10. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.py +182 -0
  11. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.pyi +260 -0
  12. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.py +204 -0
  13. luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.pyi +75 -0
  14. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.py +25 -3
  15. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.pyi +32 -0
  16. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.py +34 -0
  17. luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.pyi +12 -0
  18. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +138 -136
  19. luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +8 -2
  20. luminarycloud/_proto/client/simulation_pb2.py +111 -110
  21. luminarycloud/_proto/client/simulation_pb2.pyi +4 -0
  22. luminarycloud/_proto/quantity/quantity_pb2.py +4 -4
  23. luminarycloud/named_variable_set.py +121 -0
  24. luminarycloud/project.py +34 -2
  25. luminarycloud/simulation_param.py +86 -2
  26. luminarycloud/solution.py +17 -2
  27. luminarycloud/types/__init__.py +1 -0
  28. luminarycloud/types/adfloat.py +49 -19
  29. luminarycloud/types/ids.py +1 -0
  30. luminarycloud/vis/interactive_scene.py +37 -0
  31. luminarycloud/vis/visualization.py +13 -3
  32. luminarycloud/volume_selection.py +27 -15
  33. {luminarycloud-0.14.0.dist-info → luminarycloud-0.14.1.dist-info}/METADATA +1 -1
  34. {luminarycloud-0.14.0.dist-info → luminarycloud-0.14.1.dist-info}/RECORD +35 -29
  35. {luminarycloud-0.14.0.dist-info → luminarycloud-0.14.1.dist-info}/WHEEL +0 -0
luminarycloud/__init__.py CHANGED
@@ -55,6 +55,9 @@ from .reference_values import (
55
55
  from .volume_selection import (
56
56
  VolumeSelection as VolumeSelection,
57
57
  )
58
+ from .named_variable_set import (
59
+ NamedVariableSet as NamedVariableSet,
60
+ )
58
61
 
59
62
  # Log SDK version number
60
63
  logger = _logging.getLogger("luminarycloud")
@@ -25,6 +25,9 @@ from .._proto.api.v0.luminarycloud.simulation.simulation_pb2_grpc import (
25
25
  from .._proto.api.v0.luminarycloud.simulation_template.simulation_template_pb2_grpc import (
26
26
  SimulationTemplateServiceStub,
27
27
  )
28
+ from .._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2_grpc import (
29
+ NamedVariableSetServiceStub,
30
+ )
28
31
  from .._proto.api.v0.luminarycloud.solution.solution_pb2_grpc import SolutionServiceStub
29
32
  from .._proto.api.v0.luminarycloud.upload.upload_pb2_grpc import UploadServiceStub
30
33
  from .._proto.api.v0.luminarycloud.vis.vis_pb2_grpc import VisAPIServiceStub
@@ -50,6 +53,7 @@ class Client(
50
53
  OutputNodeServiceStub,
51
54
  OutputDefinitionServiceStub,
52
55
  StoppingConditionServiceStub,
56
+ NamedVariableSetServiceStub,
53
57
  ):
54
58
  """
55
59
  Creates a Luminary API client.
@@ -16,12 +16,33 @@ from .._version import __version__
16
16
  logger = logging.getLogger(__name__)
17
17
 
18
18
 
19
+ def _get_ai_notebook_id() -> str:
20
+ # This needs to match the file name in frodo/src/use-jupyter-temp-files
21
+ ai_notebook_active_file = "lc-ai-nb-active-nb"
22
+ # Check if we're in the AI notebook env and read the notebook ID file
23
+ # if we are
24
+ notebook_id = ""
25
+ try:
26
+ with open(ai_notebook_active_file, "r") as f:
27
+ notebook_id = f.read()
28
+ except:
29
+ # Just suppress any errors in loading the notebook ID and don't include
30
+ # the invalid/missing ID. Either we're not in the AI notebook or the ID
31
+ # isn't in the file
32
+ pass
33
+ return notebook_id
34
+
35
+
19
36
  class LoggingInterceptor(UnaryUnaryClientInterceptor):
20
37
  """
21
38
  A client interceptor that logs gRPC method calls and appends the SDK version
22
39
  to the request metadata.
23
40
  """
24
41
 
42
+ def __init__(self) -> None:
43
+ super().__init__()
44
+ self._notebook_id = _get_ai_notebook_id()
45
+
25
46
  def intercept_unary_unary(
26
47
  self,
27
48
  continuation: Callable[[ClientCallDetails, Any], grpc.Call],
@@ -35,6 +56,10 @@ class LoggingInterceptor(UnaryUnaryClientInterceptor):
35
56
  # will look like: x-client-version: python-sdk-v0.1.0
36
57
  metadata.append(("x-client-version", f"python-sdk-v{__version__}"))
37
58
 
59
+ if self._notebook_id != "":
60
+ # will look like: x-ai-notebook-id: <id>
61
+ metadata.append(("x-ai-notebook-id", self._notebook_id))
62
+
38
63
  client_call_details = _ClientCallDetails(
39
64
  client_call_details.method,
40
65
  client_call_details.timeout,
@@ -14,6 +14,7 @@ from opentelemetry.sdk.trace.export import (
14
14
  SpanExportResult,
15
15
  )
16
16
 
17
+ from .logging_interceptor import _get_ai_notebook_id
17
18
  from .. import __version__
18
19
  from .._auth import Auth0Client
19
20
  from .._version import __version__
@@ -23,13 +24,6 @@ logger = logging.getLogger(__name__)
23
24
  # By default, OpenTelemetry Python uses W3C Trace Context and W3C Baggage for propagation:
24
25
  # https://opentelemetry.io/docs/instrumentation/python/manual/#change-the-default-propagation-format
25
26
 
26
- _resource = Resource(
27
- attributes={
28
- SERVICE_NAME: "python/sdk",
29
- SERVICE_VERSION: __version__,
30
- }
31
- )
32
-
33
27
 
34
28
  # This is a hack to get opentelemetry to skip SSL verification when exporting traces.
35
29
  # We do it this way because opentelemetry overrides the `verify` option in their code when they make
@@ -104,6 +98,17 @@ def _get_collector_endpoint(primary_domain: str) -> str:
104
98
  return f"https://{primary_domain}/v1/traces"
105
99
 
106
100
 
101
+ def _get_trace_resource() -> Resource:
102
+ resource = Resource(
103
+ attributes={
104
+ SERVICE_NAME: "python/sdk",
105
+ SERVICE_VERSION: __version__,
106
+ "notebook_id": _get_ai_notebook_id(),
107
+ }
108
+ )
109
+ return resource
110
+
111
+
107
112
  def _add_instrumentation(
108
113
  channel: Channel,
109
114
  endpoint: str,
@@ -111,7 +116,7 @@ def _add_instrumentation(
111
116
  api_key: Optional[str],
112
117
  verify_ssl: bool = True,
113
118
  ) -> Channel:
114
- provider = TracerProvider(resource=_resource)
119
+ provider = TracerProvider(resource=_get_trace_resource())
115
120
  if api_key:
116
121
  processor = BatchSpanProcessor(
117
122
  ApiKeySpanExporter(
@@ -10,6 +10,7 @@ from .download import (
10
10
  download_volume_solution as download_volume_solution,
11
11
  download_surface_deformation_template as download_surface_deformation_template,
12
12
  download_surface_sensitivity_data as download_surface_sensitivity_data,
13
+ download_parameter_sensitivity_data as download_parameter_sensitivity_data,
13
14
  save_file as save_file,
14
15
  )
15
16
  from .file_chunk_stream import (
@@ -13,6 +13,7 @@ from .._proto.api.v0.luminarycloud.solution.solution_pb2 import (
13
13
  GetSolutionVolumeDataRequest,
14
14
  GetSurfaceDeformationTemplateRequest,
15
15
  GetSurfaceSensitivityDataRequest,
16
+ GetParameterSensitivityDataRequest,
16
17
  )
17
18
  from .._client import Client
18
19
 
@@ -152,6 +153,21 @@ def download_surface_sensitivity_data(
152
153
  return _create_file_chunk_stream(client, solution_id, "surface sensitivity data", response.file)
153
154
 
154
155
 
156
+ def download_parameter_sensitivity_data(
157
+ client: Client,
158
+ solution_id: str,
159
+ ) -> FileChunkStream:
160
+ """
161
+ Similar to download_surface_solution.
162
+ """
163
+
164
+ request = GetParameterSensitivityDataRequest(id=solution_id)
165
+ response = client.GetParameterSensitivityData(request)
166
+ return _create_file_chunk_stream(
167
+ client, solution_id, "parameter sensitivity data", response.file
168
+ )
169
+
170
+
155
171
  def save_file(
156
172
  file_proto: commonpb.File,
157
173
  dest_dir: Union[os.PathLike, str],
@@ -0,0 +1,25 @@
1
+ from .._proto.base.base_pb2 import AdFloatType, ExpressionType
2
+
3
+ from ..types.adfloat import _to_ad_proto, _from_ad_proto
4
+
5
+
6
+ def _named_variables_to_proto(
7
+ named_variables: dict[str, float | str],
8
+ ) -> dict[str, AdFloatType]:
9
+ return {
10
+ k: (
11
+ _to_ad_proto(v)
12
+ if isinstance(v, float)
13
+ else AdFloatType(expression=ExpressionType(expression=v))
14
+ )
15
+ for k, v in named_variables.items()
16
+ }
17
+
18
+
19
+ def _named_variables_from_proto(
20
+ named_variables: dict[str, AdFloatType],
21
+ ) -> dict[str, float | str]:
22
+ return {
23
+ k: v.variable.expression if v.HasField("variable") else _from_ad_proto(v)
24
+ for k, v in named_variables.items()
25
+ }
@@ -22,7 +22,7 @@ from luminarycloud._proto.api.v0.luminarycloud.common import common_pb2 as proto
22
22
  from luminarycloud._proto.upload import upload_pb2 as proto_dot_upload_dot_upload__pb2
23
23
 
24
24
 
25
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*proto/api/v0/luminarycloud/mesh/mesh.proto\x12(luminary.proto.api.v0.luminarycloud.mesh\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/hexmesh/hexmesh.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x19proto/upload/upload.proto\"\xe2\x02\n\x04Mesh\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\x12I\n\x06status\x18\x04 \x01(\x0e\x32\x39.luminary.proto.api.v0.luminarycloud.mesh.Mesh.MeshStatus\x12 \n\x13geometry_version_id\x18\x05 \x01(\tH\x00\x88\x01\x01\x12\x12\n\nproject_id\x18\x06 \x01(\t\"v\n\nMeshStatus\x12\x1b\n\x17MESH_STATUS_UNSPECIFIED\x10\x00\x12\x18\n\x14MESH_STATUS_CREATING\x10\x01\x12\x19\n\x15MESH_STATUS_COMPLETED\x10\x02\x12\x16\n\x12MESH_STATUS_FAILED\x10\x03\x42\x16\n\x14_geometry_version_id\"\x1c\n\x0eGetMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"O\n\x0fGetMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"$\n\x16GetMeshMetadataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"h\n\x17GetMeshMetadataResponse\x12M\n\rmesh_metadata\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata\"\xd2\x04\n\x0cMeshMetadata\x12J\n\x05zones\x18\x01 \x03(\x0b\x32;.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Zone\x1a\xcd\x01\n\tMeshStats\x12\x10\n\x08n_points\x18\x01 \x01(\x03\x12\x0f\n\x07n_faces\x18\x02 \x01(\x03\x12\r\n\x05n_cvs\x18\x03 \x01(\x03\x12\x46\n\tmin_coord\x18\x05 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12\x46\n\tmax_coord\x18\x06 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x1ai\n\x08\x42oundary\x12\x0c\n\x04name\x18\x01 \x01(\t\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x1a\xba\x01\n\x04Zone\x12S\n\nboundaries\x18\x01 \x03(\x0b\x32?.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Boundary\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x12\x0c\n\x04name\x18\x03 \x01(\t\"\'\n\x11ListMeshesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"T\n\x12ListMeshesResponse\x12>\n\x06meshes\x18\x01 \x03(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"-\n\x11UpdateMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"R\n\x12UpdateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\x83\x02\n\x11\x43reateMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x16mesh_adaptation_params\x18\x03 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshAdaptationParamsH\x00\x12`\n\x16mesh_generation_params\x18\x04 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParamsH\x00\x42\x08\n\x06params\"R\n\x12\x43reateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xff\x01\n\x11UploadMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07scaling\x18\x03 \x01(\x01\x12\x14\n\x0cupload_token\x18\x04 \x01(\t\x12I\n\nfile_chunk\x18\x05 \x01(\x0b\x32\x35.luminary.proto.api.v0.luminarycloud.common.FileChunk\x12\x32\n\tmesh_type\x18\x06 \x01(\x0e\x32\x1f.luminary.proto.upload.MeshType\x12\"\n\x1a\x64o_not_read_zones_openfoam\x18\x07 \x01(\x08\"h\n\x12UploadMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\x12\x14\n\x0cupload_token\x18\x02 \x01(\t\"\x1f\n\x11\x44\x65leteMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"t\n\x14MeshAdaptationParams\x12\x1c\n\x14source_simulation_id\x18\x01 \x01(\t\x12\x17\n\x0ftarget_cv_count\x18\x02 \x01(\x04\x12\x0f\n\x07h_ratio\x18\x03 \x01(\x01\x12\x14\n\x0c\x61spect_ratio\x18\x04 \x01(\x01\"\xb0\x10\n\x14MeshGenerationParams\x12\x33\n\x0b\x62ody_x_axis\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x33\n\x0b\x62ody_y_axis\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x16\n\x0e\x61\x64\x64_refinement\x18\x03 \x01(\x08\x12\x18\n\x10proximity_layers\x18\x04 \x01(\r\x12\x62\n\rvolume_params\x18\x05 \x03(\x0b\x32K.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.VolumeParams\x12`\n\x0cmodel_params\x18\x06 \x03(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.ModelParams\x12\x65\n\tbl_params\x18\x07 \x03(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.BoundaryLayerParams\x12l\n\rrefine_params\x18\x08 \x03(\x0b\x32U.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.RefinementRegionParams\x12\x13\n\x0bgeometry_id\x18\t \x01(\t\x12s\n\x16mesh_complexity_params\x18\n \x01(\x0b\x32S.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams\x12\x64\n\x0eoverset_params\x18\x0b \x01(\x0b\x32L.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.OversetParams\x12`\n\x0cmeshing_mode\x18\x0c \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode\x12\x10\n\x08use_wrap\x18\r \x01(\x08\x1a\x43\n\x0cVolumeParams\x12\x10\n\x08min_size\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x0f\n\x07volumes\x18\x03 \x03(\x03\x1a\x44\n\x0bModelParams\x12\x11\n\tcurvature\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x10\n\x08surfaces\x18\x03 \x03(\t\x1a\x64\n\x13\x42oundaryLayerParams\x12\x10\n\x08n_layers\x18\x01 \x01(\r\x12\x14\n\x0cinitial_size\x18\x02 \x01(\x01\x12\x13\n\x0bgrowth_rate\x18\x03 \x01(\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\t\x1a\x8b\x03\n\x16RefinementRegionParams\x12\x0f\n\x07h_limit\x18\x01 \x01(\x01\x12,\n\x06sphere\x18\x02 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\x37\n\x0csphere_shell\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.SphereShellH\x00\x12(\n\x04\x63ube\x18\x04 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x39\n\roriented_cube\x18\x05 \x01(\x0b\x32 .luminary.proto.cad.OrientedCubeH\x00\x12\x30\n\x08\x63ylinder\x18\x06 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12?\n\x10\x61nnular_cylinder\x18\x07 \x01(\x0b\x32#.luminary.proto.cad.AnnularCylinderH\x00\x12\n\n\x02id\x18\x08 \x01(\t\x12\x0c\n\x04name\x18\t \x01(\tB\x07\n\x05shape\x1a\xe7\x01\n\x14MeshComplexityParams\x12\x14\n\x0ctarget_cells\x18\x01 \x01(\x04\x12\x17\n\x0flimit_max_cells\x18\x02 \x01(\x04\x12p\n\x04type\x18\x03 \x01(\x0e\x32\x62.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams.ComplexityType\".\n\x0e\x43omplexityType\x12\x07\n\x03MAX\x10\x00\x12\n\n\x06TARGET\x10\x01\x12\x07\n\x03MIN\x10\x02\x1a!\n\rOversetParams\x12\x10\n\x08surfaces\x18\x01 \x03(\t\x1a\xf0\x01\n\x0bMeshingMode\x12\x65\n\x07\x64\x65\x66\x61ult\x18\x01 \x01(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.DefaultH\x00\x12_\n\x04\x62\x61se\x18\x02 \x01(\x0b\x32O.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.BaseH\x00\x1a\t\n\x07\x44\x65\x66\x61ult\x1a\x06\n\x04\x42\x61seB\x06\n\x04mode\"h\n\x14\x43reateHexMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12<\n\x0fhex_mesh_config\x18\x02 \x01(\x0b\x32#.luminary.proto.hexmesh.HexMeshSpec\"(\n\x15\x43reateHexMeshResponse\x12\x0f\n\x07mesh_id\x18\x01 \x01(\t2\xac\n\n\x0bMeshService\x12\x97\x01\n\x07GetMesh\x12\x38.luminary.proto.api.v0.luminarycloud.mesh.GetMeshRequest\x1a\x39.luminary.proto.api.v0.luminarycloud.mesh.GetMeshResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/v0/meshes/{id}\x12\xba\x01\n\x0fGetMeshMetadata\x12@.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/meshes:getmeshmetadata\x12\xb1\x01\n\nListMeshes\x12;.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/projects/{project_id}/meshes\x12\xa3\x01\n\nUpdateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshResponse\"\x1a\x82\xd3\xe4\x93\x02\x14\x32\x0f/v0/meshes/{id}:\x01*\x12\xbb\x01\n\nUploadMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshResponse\"2\x82\xd3\xe4\x93\x02,\"\'/v0/projects/{project_id}/meshes:upload:\x01*\x12z\n\nDeleteMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.DeleteMeshRequest\x1a\x16.google.protobuf.Empty\"\x17\x82\xd3\xe4\x93\x02\x11*\x0f/v0/meshes/{id}\x12\x9e\x01\n\nCreateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\"\n/v0/meshes:\x01*\x12\x90\x01\n\rCreateHexMesh\x12>.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshRequest\x1a?.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshResponseB8Z6luminarycloud.com/core/proto/api/v0/luminarycloud/meshb\x06proto3')
25
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n*proto/api/v0/luminarycloud/mesh/mesh.proto\x12(luminary.proto.api.v0.luminarycloud.mesh\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1cgoogle/api/annotations.proto\x1a\x15proto/base/base.proto\x1a\x15proto/cad/shape.proto\x1a\x1bproto/hexmesh/hexmesh.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\x1a\x19proto/upload/upload.proto\"\xe2\x02\n\x04Mesh\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\x12I\n\x06status\x18\x04 \x01(\x0e\x32\x39.luminary.proto.api.v0.luminarycloud.mesh.Mesh.MeshStatus\x12 \n\x13geometry_version_id\x18\x05 \x01(\tH\x00\x88\x01\x01\x12\x12\n\nproject_id\x18\x06 \x01(\t\"v\n\nMeshStatus\x12\x1b\n\x17MESH_STATUS_UNSPECIFIED\x10\x00\x12\x18\n\x14MESH_STATUS_CREATING\x10\x01\x12\x19\n\x15MESH_STATUS_COMPLETED\x10\x02\x12\x16\n\x12MESH_STATUS_FAILED\x10\x03\x42\x16\n\x14_geometry_version_id\"\x1c\n\x0eGetMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"O\n\x0fGetMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"$\n\x16GetMeshMetadataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"h\n\x17GetMeshMetadataResponse\x12M\n\rmesh_metadata\x18\x01 \x01(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata\"\xd2\x04\n\x0cMeshMetadata\x12J\n\x05zones\x18\x01 \x03(\x0b\x32;.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Zone\x1a\xcd\x01\n\tMeshStats\x12\x10\n\x08n_points\x18\x01 \x01(\x03\x12\x0f\n\x07n_faces\x18\x02 \x01(\x03\x12\r\n\x05n_cvs\x18\x03 \x01(\x03\x12\x46\n\tmin_coord\x18\x05 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x12\x46\n\tmax_coord\x18\x06 \x01(\x0b\x32\x33.luminary.proto.api.v0.luminarycloud.common.Vector3\x1ai\n\x08\x42oundary\x12\x0c\n\x04name\x18\x01 \x01(\t\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x1a\xba\x01\n\x04Zone\x12S\n\nboundaries\x18\x01 \x03(\x0b\x32?.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.Boundary\x12O\n\x05stats\x18\x02 \x01(\x0b\x32@.luminary.proto.api.v0.luminarycloud.mesh.MeshMetadata.MeshStats\x12\x0c\n\x04name\x18\x03 \x01(\t\"\'\n\x11ListMeshesRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"T\n\x12ListMeshesResponse\x12>\n\x06meshes\x18\x01 \x03(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"-\n\x11UpdateMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\"R\n\x12UpdateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xab\x02\n\x11\x43reateMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12`\n\x16mesh_adaptation_params\x18\x03 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshAdaptationParamsH\x00\x12`\n\x16mesh_generation_params\x18\x04 \x01(\x0b\x32>.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParamsH\x00\x12\x17\n\nrequest_id\x18\x05 \x01(\tH\x01\x88\x01\x01\x42\x08\n\x06paramsB\r\n\x0b_request_id\"R\n\x12\x43reateMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\"\xff\x01\n\x11UploadMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07scaling\x18\x03 \x01(\x01\x12\x14\n\x0cupload_token\x18\x04 \x01(\t\x12I\n\nfile_chunk\x18\x05 \x01(\x0b\x32\x35.luminary.proto.api.v0.luminarycloud.common.FileChunk\x12\x32\n\tmesh_type\x18\x06 \x01(\x0e\x32\x1f.luminary.proto.upload.MeshType\x12\"\n\x1a\x64o_not_read_zones_openfoam\x18\x07 \x01(\x08\"h\n\x12UploadMeshResponse\x12<\n\x04mesh\x18\x01 \x01(\x0b\x32..luminary.proto.api.v0.luminarycloud.mesh.Mesh\x12\x14\n\x0cupload_token\x18\x02 \x01(\t\"\x1f\n\x11\x44\x65leteMeshRequest\x12\n\n\x02id\x18\x01 \x01(\t\"t\n\x14MeshAdaptationParams\x12\x1c\n\x14source_simulation_id\x18\x01 \x01(\t\x12\x17\n\x0ftarget_cv_count\x18\x02 \x01(\x04\x12\x0f\n\x07h_ratio\x18\x03 \x01(\x01\x12\x14\n\x0c\x61spect_ratio\x18\x04 \x01(\x01\"\xb0\x10\n\x14MeshGenerationParams\x12\x33\n\x0b\x62ody_x_axis\x18\x01 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x33\n\x0b\x62ody_y_axis\x18\x02 \x01(\x0b\x32\x1e.luminary.proto.base.AdVector3\x12\x16\n\x0e\x61\x64\x64_refinement\x18\x03 \x01(\x08\x12\x18\n\x10proximity_layers\x18\x04 \x01(\r\x12\x62\n\rvolume_params\x18\x05 \x03(\x0b\x32K.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.VolumeParams\x12`\n\x0cmodel_params\x18\x06 \x03(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.ModelParams\x12\x65\n\tbl_params\x18\x07 \x03(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.BoundaryLayerParams\x12l\n\rrefine_params\x18\x08 \x03(\x0b\x32U.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.RefinementRegionParams\x12\x13\n\x0bgeometry_id\x18\t \x01(\t\x12s\n\x16mesh_complexity_params\x18\n \x01(\x0b\x32S.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams\x12\x64\n\x0eoverset_params\x18\x0b \x01(\x0b\x32L.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.OversetParams\x12`\n\x0cmeshing_mode\x18\x0c \x01(\x0b\x32J.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode\x12\x10\n\x08use_wrap\x18\r \x01(\x08\x1a\x43\n\x0cVolumeParams\x12\x10\n\x08min_size\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x0f\n\x07volumes\x18\x03 \x03(\x03\x1a\x44\n\x0bModelParams\x12\x11\n\tcurvature\x18\x01 \x01(\x01\x12\x10\n\x08max_size\x18\x02 \x01(\x01\x12\x10\n\x08surfaces\x18\x03 \x03(\t\x1a\x64\n\x13\x42oundaryLayerParams\x12\x10\n\x08n_layers\x18\x01 \x01(\r\x12\x14\n\x0cinitial_size\x18\x02 \x01(\x01\x12\x13\n\x0bgrowth_rate\x18\x03 \x01(\x01\x12\x10\n\x08surfaces\x18\x04 \x03(\t\x1a\x8b\x03\n\x16RefinementRegionParams\x12\x0f\n\x07h_limit\x18\x01 \x01(\x01\x12,\n\x06sphere\x18\x02 \x01(\x0b\x32\x1a.luminary.proto.cad.SphereH\x00\x12\x37\n\x0csphere_shell\x18\x03 \x01(\x0b\x32\x1f.luminary.proto.cad.SphereShellH\x00\x12(\n\x04\x63ube\x18\x04 \x01(\x0b\x32\x18.luminary.proto.cad.CubeH\x00\x12\x39\n\roriented_cube\x18\x05 \x01(\x0b\x32 .luminary.proto.cad.OrientedCubeH\x00\x12\x30\n\x08\x63ylinder\x18\x06 \x01(\x0b\x32\x1c.luminary.proto.cad.CylinderH\x00\x12?\n\x10\x61nnular_cylinder\x18\x07 \x01(\x0b\x32#.luminary.proto.cad.AnnularCylinderH\x00\x12\n\n\x02id\x18\x08 \x01(\t\x12\x0c\n\x04name\x18\t \x01(\tB\x07\n\x05shape\x1a\xe7\x01\n\x14MeshComplexityParams\x12\x14\n\x0ctarget_cells\x18\x01 \x01(\x04\x12\x17\n\x0flimit_max_cells\x18\x02 \x01(\x04\x12p\n\x04type\x18\x03 \x01(\x0e\x32\x62.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshComplexityParams.ComplexityType\".\n\x0e\x43omplexityType\x12\x07\n\x03MAX\x10\x00\x12\n\n\x06TARGET\x10\x01\x12\x07\n\x03MIN\x10\x02\x1a!\n\rOversetParams\x12\x10\n\x08surfaces\x18\x01 \x03(\t\x1a\xf0\x01\n\x0bMeshingMode\x12\x65\n\x07\x64\x65\x66\x61ult\x18\x01 \x01(\x0b\x32R.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.DefaultH\x00\x12_\n\x04\x62\x61se\x18\x02 \x01(\x0b\x32O.luminary.proto.api.v0.luminarycloud.mesh.MeshGenerationParams.MeshingMode.BaseH\x00\x1a\t\n\x07\x44\x65\x66\x61ult\x1a\x06\n\x04\x42\x61seB\x06\n\x04mode\"h\n\x14\x43reateHexMeshRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12<\n\x0fhex_mesh_config\x18\x02 \x01(\x0b\x32#.luminary.proto.hexmesh.HexMeshSpec\"(\n\x15\x43reateHexMeshResponse\x12\x0f\n\x07mesh_id\x18\x01 \x01(\t2\xac\n\n\x0bMeshService\x12\x97\x01\n\x07GetMesh\x12\x38.luminary.proto.api.v0.luminarycloud.mesh.GetMeshRequest\x1a\x39.luminary.proto.api.v0.luminarycloud.mesh.GetMeshResponse\"\x17\x82\xd3\xe4\x93\x02\x11\x12\x0f/v0/meshes/{id}\x12\xba\x01\n\x0fGetMeshMetadata\x12@.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataRequest\x1a\x41.luminary.proto.api.v0.luminarycloud.mesh.GetMeshMetadataResponse\"\"\x82\xd3\xe4\x93\x02\x1c\x12\x1a/v0/meshes:getmeshmetadata\x12\xb1\x01\n\nListMeshes\x12;.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.ListMeshesResponse\"(\x82\xd3\xe4\x93\x02\"\x12 /v0/projects/{project_id}/meshes\x12\xa3\x01\n\nUpdateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UpdateMeshResponse\"\x1a\x82\xd3\xe4\x93\x02\x14\x32\x0f/v0/meshes/{id}:\x01*\x12\xbb\x01\n\nUploadMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.UploadMeshResponse\"2\x82\xd3\xe4\x93\x02,\"\'/v0/projects/{project_id}/meshes:upload:\x01*\x12z\n\nDeleteMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.DeleteMeshRequest\x1a\x16.google.protobuf.Empty\"\x17\x82\xd3\xe4\x93\x02\x11*\x0f/v0/meshes/{id}\x12\x9e\x01\n\nCreateMesh\x12;.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshRequest\x1a<.luminary.proto.api.v0.luminarycloud.mesh.CreateMeshResponse\"\x15\x82\xd3\xe4\x93\x02\x0f\"\n/v0/meshes:\x01*\x12\x90\x01\n\rCreateHexMesh\x12>.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshRequest\x1a?.luminary.proto.api.v0.luminarycloud.mesh.CreateHexMeshResponseB8Z6luminarycloud.com/core/proto/api/v0/luminarycloud/meshb\x06proto3')
26
26
 
27
27
 
28
28
 
@@ -336,43 +336,43 @@ if _descriptor._USE_C_DESCRIPTORS == False:
336
336
  _UPDATEMESHRESPONSE._serialized_start=1713
337
337
  _UPDATEMESHRESPONSE._serialized_end=1795
338
338
  _CREATEMESHREQUEST._serialized_start=1798
339
- _CREATEMESHREQUEST._serialized_end=2057
340
- _CREATEMESHRESPONSE._serialized_start=2059
341
- _CREATEMESHRESPONSE._serialized_end=2141
342
- _UPLOADMESHREQUEST._serialized_start=2144
343
- _UPLOADMESHREQUEST._serialized_end=2399
344
- _UPLOADMESHRESPONSE._serialized_start=2401
345
- _UPLOADMESHRESPONSE._serialized_end=2505
346
- _DELETEMESHREQUEST._serialized_start=2507
347
- _DELETEMESHREQUEST._serialized_end=2538
348
- _MESHADAPTATIONPARAMS._serialized_start=2540
349
- _MESHADAPTATIONPARAMS._serialized_end=2656
350
- _MESHGENERATIONPARAMS._serialized_start=2659
351
- _MESHGENERATIONPARAMS._serialized_end=4755
352
- _MESHGENERATIONPARAMS_VOLUMEPARAMS._serialized_start=3606
353
- _MESHGENERATIONPARAMS_VOLUMEPARAMS._serialized_end=3673
354
- _MESHGENERATIONPARAMS_MODELPARAMS._serialized_start=3675
355
- _MESHGENERATIONPARAMS_MODELPARAMS._serialized_end=3743
356
- _MESHGENERATIONPARAMS_BOUNDARYLAYERPARAMS._serialized_start=3745
357
- _MESHGENERATIONPARAMS_BOUNDARYLAYERPARAMS._serialized_end=3845
358
- _MESHGENERATIONPARAMS_REFINEMENTREGIONPARAMS._serialized_start=3848
359
- _MESHGENERATIONPARAMS_REFINEMENTREGIONPARAMS._serialized_end=4243
360
- _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS._serialized_start=4246
361
- _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS._serialized_end=4477
362
- _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS_COMPLEXITYTYPE._serialized_start=4431
363
- _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS_COMPLEXITYTYPE._serialized_end=4477
364
- _MESHGENERATIONPARAMS_OVERSETPARAMS._serialized_start=4479
365
- _MESHGENERATIONPARAMS_OVERSETPARAMS._serialized_end=4512
366
- _MESHGENERATIONPARAMS_MESHINGMODE._serialized_start=4515
367
- _MESHGENERATIONPARAMS_MESHINGMODE._serialized_end=4755
368
- _MESHGENERATIONPARAMS_MESHINGMODE_DEFAULT._serialized_start=4730
369
- _MESHGENERATIONPARAMS_MESHINGMODE_DEFAULT._serialized_end=4739
370
- _MESHGENERATIONPARAMS_MESHINGMODE_BASE._serialized_start=4741
371
- _MESHGENERATIONPARAMS_MESHINGMODE_BASE._serialized_end=4747
372
- _CREATEHEXMESHREQUEST._serialized_start=4757
373
- _CREATEHEXMESHREQUEST._serialized_end=4861
374
- _CREATEHEXMESHRESPONSE._serialized_start=4863
375
- _CREATEHEXMESHRESPONSE._serialized_end=4903
376
- _MESHSERVICE._serialized_start=4906
377
- _MESHSERVICE._serialized_end=6230
339
+ _CREATEMESHREQUEST._serialized_end=2097
340
+ _CREATEMESHRESPONSE._serialized_start=2099
341
+ _CREATEMESHRESPONSE._serialized_end=2181
342
+ _UPLOADMESHREQUEST._serialized_start=2184
343
+ _UPLOADMESHREQUEST._serialized_end=2439
344
+ _UPLOADMESHRESPONSE._serialized_start=2441
345
+ _UPLOADMESHRESPONSE._serialized_end=2545
346
+ _DELETEMESHREQUEST._serialized_start=2547
347
+ _DELETEMESHREQUEST._serialized_end=2578
348
+ _MESHADAPTATIONPARAMS._serialized_start=2580
349
+ _MESHADAPTATIONPARAMS._serialized_end=2696
350
+ _MESHGENERATIONPARAMS._serialized_start=2699
351
+ _MESHGENERATIONPARAMS._serialized_end=4795
352
+ _MESHGENERATIONPARAMS_VOLUMEPARAMS._serialized_start=3646
353
+ _MESHGENERATIONPARAMS_VOLUMEPARAMS._serialized_end=3713
354
+ _MESHGENERATIONPARAMS_MODELPARAMS._serialized_start=3715
355
+ _MESHGENERATIONPARAMS_MODELPARAMS._serialized_end=3783
356
+ _MESHGENERATIONPARAMS_BOUNDARYLAYERPARAMS._serialized_start=3785
357
+ _MESHGENERATIONPARAMS_BOUNDARYLAYERPARAMS._serialized_end=3885
358
+ _MESHGENERATIONPARAMS_REFINEMENTREGIONPARAMS._serialized_start=3888
359
+ _MESHGENERATIONPARAMS_REFINEMENTREGIONPARAMS._serialized_end=4283
360
+ _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS._serialized_start=4286
361
+ _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS._serialized_end=4517
362
+ _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS_COMPLEXITYTYPE._serialized_start=4471
363
+ _MESHGENERATIONPARAMS_MESHCOMPLEXITYPARAMS_COMPLEXITYTYPE._serialized_end=4517
364
+ _MESHGENERATIONPARAMS_OVERSETPARAMS._serialized_start=4519
365
+ _MESHGENERATIONPARAMS_OVERSETPARAMS._serialized_end=4552
366
+ _MESHGENERATIONPARAMS_MESHINGMODE._serialized_start=4555
367
+ _MESHGENERATIONPARAMS_MESHINGMODE._serialized_end=4795
368
+ _MESHGENERATIONPARAMS_MESHINGMODE_DEFAULT._serialized_start=4770
369
+ _MESHGENERATIONPARAMS_MESHINGMODE_DEFAULT._serialized_end=4779
370
+ _MESHGENERATIONPARAMS_MESHINGMODE_BASE._serialized_start=4781
371
+ _MESHGENERATIONPARAMS_MESHINGMODE_BASE._serialized_end=4787
372
+ _CREATEHEXMESHREQUEST._serialized_start=4797
373
+ _CREATEHEXMESHREQUEST._serialized_end=4901
374
+ _CREATEHEXMESHRESPONSE._serialized_start=4903
375
+ _CREATEHEXMESHRESPONSE._serialized_end=4943
376
+ _MESHSERVICE._serialized_start=4946
377
+ _MESHSERVICE._serialized_end=6270
378
378
  # @@protoc_insertion_point(module_scope)
@@ -333,6 +333,7 @@ class CreateMeshRequest(google.protobuf.message.Message):
333
333
  NAME_FIELD_NUMBER: builtins.int
334
334
  MESH_ADAPTATION_PARAMS_FIELD_NUMBER: builtins.int
335
335
  MESH_GENERATION_PARAMS_FIELD_NUMBER: builtins.int
336
+ REQUEST_ID_FIELD_NUMBER: builtins.int
336
337
  project_id: builtins.str
337
338
  """Required. The project that the mesh should be created in."""
338
339
  name: builtins.str
@@ -343,6 +344,7 @@ class CreateMeshRequest(google.protobuf.message.Message):
343
344
  def mesh_adaptation_params(self) -> global___MeshAdaptationParams: ...
344
345
  @property
345
346
  def mesh_generation_params(self) -> global___MeshGenerationParams: ...
347
+ request_id: builtins.str
346
348
  def __init__(
347
349
  self,
348
350
  *,
@@ -350,9 +352,13 @@ class CreateMeshRequest(google.protobuf.message.Message):
350
352
  name: builtins.str = ...,
351
353
  mesh_adaptation_params: global___MeshAdaptationParams | None = ...,
352
354
  mesh_generation_params: global___MeshGenerationParams | None = ...,
355
+ request_id: builtins.str | None = ...,
353
356
  ) -> None: ...
354
- def HasField(self, field_name: typing_extensions.Literal["mesh_adaptation_params", b"mesh_adaptation_params", "mesh_generation_params", b"mesh_generation_params", "params", b"params"]) -> builtins.bool: ...
355
- def ClearField(self, field_name: typing_extensions.Literal["mesh_adaptation_params", b"mesh_adaptation_params", "mesh_generation_params", b"mesh_generation_params", "name", b"name", "params", b"params", "project_id", b"project_id"]) -> None: ...
357
+ def HasField(self, field_name: typing_extensions.Literal["_request_id", b"_request_id", "mesh_adaptation_params", b"mesh_adaptation_params", "mesh_generation_params", b"mesh_generation_params", "params", b"params", "request_id", b"request_id"]) -> builtins.bool: ...
358
+ def ClearField(self, field_name: typing_extensions.Literal["_request_id", b"_request_id", "mesh_adaptation_params", b"mesh_adaptation_params", "mesh_generation_params", b"mesh_generation_params", "name", b"name", "params", b"params", "project_id", b"project_id", "request_id", b"request_id"]) -> None: ...
359
+ @typing.overload
360
+ def WhichOneof(self, oneof_group: typing_extensions.Literal["_request_id", b"_request_id"]) -> typing_extensions.Literal["request_id"] | None: ...
361
+ @typing.overload
356
362
  def WhichOneof(self, oneof_group: typing_extensions.Literal["params", b"params"]) -> typing_extensions.Literal["mesh_adaptation_params", "mesh_generation_params"] | None: ...
357
363
 
358
364
  global___CreateMeshRequest = CreateMeshRequest
@@ -0,0 +1,182 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: proto/api/v0/luminarycloud/named_variable_set/named_variable_set.proto
4
+ """Generated protocol buffer code."""
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import descriptor_pool as _descriptor_pool
7
+ from google.protobuf import message as _message
8
+ from google.protobuf import reflection as _reflection
9
+ from google.protobuf import symbol_database as _symbol_database
10
+ # @@protoc_insertion_point(imports)
11
+
12
+ _sym_db = _symbol_database.Default()
13
+
14
+
15
+ from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
16
+ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
17
+ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
18
+ from luminarycloud._proto.base import base_pb2 as proto_dot_base_dot_base__pb2
19
+ from luminarycloud._proto.ratelimit import ratelimit_pb2 as proto_dot_ratelimit_dot_ratelimit__pb2
20
+
21
+
22
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nFproto/api/v0/luminarycloud/named_variable_set/named_variable_set.proto\x12\x36luminary.proto.api.v0.luminarycloud.named_variable_set\x1a\x1cgoogle/api/annotations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x15proto/base/base.proto\x1a\x1fproto/ratelimit/ratelimit.proto\"\xf2\x02\n\x10NamedVariableSet\x12\n\n\x02id\x18\x01 \x01(\t\x12\x12\n\nproject_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12u\n\x0fnamed_variables\x18\x04 \x03(\x0b\x32\\.luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSet.NamedVariablesEntry\x12/\n\x0b\x63reate_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x1aW\n\x13NamedVariablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12/\n\x05value\x18\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatType:\x02\x38\x01\"(\n\x1aGetNamedVariableSetRequest\x12\n\n\x02id\x18\x01 \x01(\t\"\x83\x01\n\x1bGetNamedVariableSetResponse\x12\x64\n\x12named_variable_set\x18\x01 \x01(\x0b\x32H.luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSet\"2\n\x1cListNamedVariableSetsRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\"\x86\x01\n\x1dListNamedVariableSetsResponse\x12\x65\n\x13named_variable_sets\x18\x01 \x03(\x0b\x32H.luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSet\"\xb3\x02\n\x1d\x43reateNamedVariableSetRequest\x12\x12\n\nproject_id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x82\x01\n\x0fnamed_variables\x18\x03 \x03(\x0b\x32i.luminary.proto.api.v0.luminarycloud.named_variable_set.CreateNamedVariableSetRequest.NamedVariablesEntry\x12\x12\n\nrequest_id\x18\x04 \x01(\t\x1aW\n\x13NamedVariablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12/\n\x05value\x18\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatType:\x02\x38\x01\"\x86\x01\n\x1e\x43reateNamedVariableSetResponse\x12\x64\n\x12named_variable_set\x18\x01 \x01(\x0b\x32H.luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSet\"+\n\x1d\x44\x65leteNamedVariableSetRequest\x12\n\n\x02id\x18\x01 \x01(\t\"\xa5\x02\n\x1dUpdateNamedVariableSetRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\x04name\x18\x02 \x01(\tH\x00\x88\x01\x01\x12\x82\x01\n\x0fnamed_variables\x18\x03 \x03(\x0b\x32i.luminary.proto.api.v0.luminarycloud.named_variable_set.UpdateNamedVariableSetRequest.NamedVariablesEntry\x1aW\n\x13NamedVariablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12/\n\x05value\x18\x02 \x01(\x0b\x32 .luminary.proto.base.AdFloatType:\x02\x38\x01\x42\x07\n\x05_name\"\x86\x01\n\x1eUpdateNamedVariableSetResponse\x12\x64\n\x12named_variable_set\x18\x01 \x01(\x0b\x32H.luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSet2\xac\t\n\x17NamedVariableSetService\x12\xe3\x01\n\x13GetNamedVariableSet\x12R.luminary.proto.api.v0.luminarycloud.named_variable_set.GetNamedVariableSetRequest\x1aS.luminary.proto.api.v0.luminarycloud.named_variable_set.GetNamedVariableSetResponse\"#\x82\xd3\xe4\x93\x02\x1d\x12\x1b/v0/named_variable_set/{id}\x12\xfb\x01\n\x15ListNamedVariableSets\x12T.luminary.proto.api.v0.luminarycloud.named_variable_set.ListNamedVariableSetsRequest\x1aU.luminary.proto.api.v0.luminarycloud.named_variable_set.ListNamedVariableSetsResponse\"5\x82\xd3\xe4\x93\x02/\x12-/v0/projects/{project_id}/named_variable_sets\x12\x8b\x02\n\x16\x43reateNamedVariableSet\x12U.luminary.proto.api.v0.luminarycloud.named_variable_set.CreateNamedVariableSetRequest\x1aV.luminary.proto.api.v0.luminarycloud.named_variable_set.CreateNamedVariableSetResponse\"B\x82\xd3\xe4\x93\x02\x32\"-/v0/projects/{project_id}/named_variable_sets:\x01*\x8a\xb5\x18\x06\x08\x64\x12\x02\x08\x01\x12\xac\x01\n\x16\x44\x65leteNamedVariableSet\x12U.luminary.proto.api.v0.luminarycloud.named_variable_set.DeleteNamedVariableSetRequest\x1a\x16.google.protobuf.Empty\"#\x82\xd3\xe4\x93\x02\x1d*\x1b/v0/named_variable_set/{id}\x12\xef\x01\n\x16UpdateNamedVariableSet\x12U.luminary.proto.api.v0.luminarycloud.named_variable_set.UpdateNamedVariableSetRequest\x1aV.luminary.proto.api.v0.luminarycloud.named_variable_set.UpdateNamedVariableSetResponse\"&\x82\xd3\xe4\x93\x02 \x1a\x1b/v0/named_variable_set/{id}:\x01*BFZDluminarycloud.com/core/proto/api/v0/luminarycloud/named_variable_setb\x06proto3')
23
+
24
+
25
+
26
+ _NAMEDVARIABLESET = DESCRIPTOR.message_types_by_name['NamedVariableSet']
27
+ _NAMEDVARIABLESET_NAMEDVARIABLESENTRY = _NAMEDVARIABLESET.nested_types_by_name['NamedVariablesEntry']
28
+ _GETNAMEDVARIABLESETREQUEST = DESCRIPTOR.message_types_by_name['GetNamedVariableSetRequest']
29
+ _GETNAMEDVARIABLESETRESPONSE = DESCRIPTOR.message_types_by_name['GetNamedVariableSetResponse']
30
+ _LISTNAMEDVARIABLESETSREQUEST = DESCRIPTOR.message_types_by_name['ListNamedVariableSetsRequest']
31
+ _LISTNAMEDVARIABLESETSRESPONSE = DESCRIPTOR.message_types_by_name['ListNamedVariableSetsResponse']
32
+ _CREATENAMEDVARIABLESETREQUEST = DESCRIPTOR.message_types_by_name['CreateNamedVariableSetRequest']
33
+ _CREATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY = _CREATENAMEDVARIABLESETREQUEST.nested_types_by_name['NamedVariablesEntry']
34
+ _CREATENAMEDVARIABLESETRESPONSE = DESCRIPTOR.message_types_by_name['CreateNamedVariableSetResponse']
35
+ _DELETENAMEDVARIABLESETREQUEST = DESCRIPTOR.message_types_by_name['DeleteNamedVariableSetRequest']
36
+ _UPDATENAMEDVARIABLESETREQUEST = DESCRIPTOR.message_types_by_name['UpdateNamedVariableSetRequest']
37
+ _UPDATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY = _UPDATENAMEDVARIABLESETREQUEST.nested_types_by_name['NamedVariablesEntry']
38
+ _UPDATENAMEDVARIABLESETRESPONSE = DESCRIPTOR.message_types_by_name['UpdateNamedVariableSetResponse']
39
+ NamedVariableSet = _reflection.GeneratedProtocolMessageType('NamedVariableSet', (_message.Message,), {
40
+
41
+ 'NamedVariablesEntry' : _reflection.GeneratedProtocolMessageType('NamedVariablesEntry', (_message.Message,), {
42
+ 'DESCRIPTOR' : _NAMEDVARIABLESET_NAMEDVARIABLESENTRY,
43
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
44
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSet.NamedVariablesEntry)
45
+ })
46
+ ,
47
+ 'DESCRIPTOR' : _NAMEDVARIABLESET,
48
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
49
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSet)
50
+ })
51
+ _sym_db.RegisterMessage(NamedVariableSet)
52
+ _sym_db.RegisterMessage(NamedVariableSet.NamedVariablesEntry)
53
+
54
+ GetNamedVariableSetRequest = _reflection.GeneratedProtocolMessageType('GetNamedVariableSetRequest', (_message.Message,), {
55
+ 'DESCRIPTOR' : _GETNAMEDVARIABLESETREQUEST,
56
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
57
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.GetNamedVariableSetRequest)
58
+ })
59
+ _sym_db.RegisterMessage(GetNamedVariableSetRequest)
60
+
61
+ GetNamedVariableSetResponse = _reflection.GeneratedProtocolMessageType('GetNamedVariableSetResponse', (_message.Message,), {
62
+ 'DESCRIPTOR' : _GETNAMEDVARIABLESETRESPONSE,
63
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
64
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.GetNamedVariableSetResponse)
65
+ })
66
+ _sym_db.RegisterMessage(GetNamedVariableSetResponse)
67
+
68
+ ListNamedVariableSetsRequest = _reflection.GeneratedProtocolMessageType('ListNamedVariableSetsRequest', (_message.Message,), {
69
+ 'DESCRIPTOR' : _LISTNAMEDVARIABLESETSREQUEST,
70
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
71
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.ListNamedVariableSetsRequest)
72
+ })
73
+ _sym_db.RegisterMessage(ListNamedVariableSetsRequest)
74
+
75
+ ListNamedVariableSetsResponse = _reflection.GeneratedProtocolMessageType('ListNamedVariableSetsResponse', (_message.Message,), {
76
+ 'DESCRIPTOR' : _LISTNAMEDVARIABLESETSRESPONSE,
77
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
78
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.ListNamedVariableSetsResponse)
79
+ })
80
+ _sym_db.RegisterMessage(ListNamedVariableSetsResponse)
81
+
82
+ CreateNamedVariableSetRequest = _reflection.GeneratedProtocolMessageType('CreateNamedVariableSetRequest', (_message.Message,), {
83
+
84
+ 'NamedVariablesEntry' : _reflection.GeneratedProtocolMessageType('NamedVariablesEntry', (_message.Message,), {
85
+ 'DESCRIPTOR' : _CREATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY,
86
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
87
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.CreateNamedVariableSetRequest.NamedVariablesEntry)
88
+ })
89
+ ,
90
+ 'DESCRIPTOR' : _CREATENAMEDVARIABLESETREQUEST,
91
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
92
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.CreateNamedVariableSetRequest)
93
+ })
94
+ _sym_db.RegisterMessage(CreateNamedVariableSetRequest)
95
+ _sym_db.RegisterMessage(CreateNamedVariableSetRequest.NamedVariablesEntry)
96
+
97
+ CreateNamedVariableSetResponse = _reflection.GeneratedProtocolMessageType('CreateNamedVariableSetResponse', (_message.Message,), {
98
+ 'DESCRIPTOR' : _CREATENAMEDVARIABLESETRESPONSE,
99
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
100
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.CreateNamedVariableSetResponse)
101
+ })
102
+ _sym_db.RegisterMessage(CreateNamedVariableSetResponse)
103
+
104
+ DeleteNamedVariableSetRequest = _reflection.GeneratedProtocolMessageType('DeleteNamedVariableSetRequest', (_message.Message,), {
105
+ 'DESCRIPTOR' : _DELETENAMEDVARIABLESETREQUEST,
106
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
107
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.DeleteNamedVariableSetRequest)
108
+ })
109
+ _sym_db.RegisterMessage(DeleteNamedVariableSetRequest)
110
+
111
+ UpdateNamedVariableSetRequest = _reflection.GeneratedProtocolMessageType('UpdateNamedVariableSetRequest', (_message.Message,), {
112
+
113
+ 'NamedVariablesEntry' : _reflection.GeneratedProtocolMessageType('NamedVariablesEntry', (_message.Message,), {
114
+ 'DESCRIPTOR' : _UPDATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY,
115
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
116
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.UpdateNamedVariableSetRequest.NamedVariablesEntry)
117
+ })
118
+ ,
119
+ 'DESCRIPTOR' : _UPDATENAMEDVARIABLESETREQUEST,
120
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
121
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.UpdateNamedVariableSetRequest)
122
+ })
123
+ _sym_db.RegisterMessage(UpdateNamedVariableSetRequest)
124
+ _sym_db.RegisterMessage(UpdateNamedVariableSetRequest.NamedVariablesEntry)
125
+
126
+ UpdateNamedVariableSetResponse = _reflection.GeneratedProtocolMessageType('UpdateNamedVariableSetResponse', (_message.Message,), {
127
+ 'DESCRIPTOR' : _UPDATENAMEDVARIABLESETRESPONSE,
128
+ '__module__' : 'proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2'
129
+ # @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.named_variable_set.UpdateNamedVariableSetResponse)
130
+ })
131
+ _sym_db.RegisterMessage(UpdateNamedVariableSetResponse)
132
+
133
+ _NAMEDVARIABLESETSERVICE = DESCRIPTOR.services_by_name['NamedVariableSetService']
134
+ if _descriptor._USE_C_DESCRIPTORS == False:
135
+
136
+ DESCRIPTOR._options = None
137
+ DESCRIPTOR._serialized_options = b'ZDluminarycloud.com/core/proto/api/v0/luminarycloud/named_variable_set'
138
+ _NAMEDVARIABLESET_NAMEDVARIABLESENTRY._options = None
139
+ _NAMEDVARIABLESET_NAMEDVARIABLESENTRY._serialized_options = b'8\001'
140
+ _CREATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY._options = None
141
+ _CREATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY._serialized_options = b'8\001'
142
+ _UPDATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY._options = None
143
+ _UPDATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY._serialized_options = b'8\001'
144
+ _NAMEDVARIABLESETSERVICE.methods_by_name['GetNamedVariableSet']._options = None
145
+ _NAMEDVARIABLESETSERVICE.methods_by_name['GetNamedVariableSet']._serialized_options = b'\202\323\344\223\002\035\022\033/v0/named_variable_set/{id}'
146
+ _NAMEDVARIABLESETSERVICE.methods_by_name['ListNamedVariableSets']._options = None
147
+ _NAMEDVARIABLESETSERVICE.methods_by_name['ListNamedVariableSets']._serialized_options = b'\202\323\344\223\002/\022-/v0/projects/{project_id}/named_variable_sets'
148
+ _NAMEDVARIABLESETSERVICE.methods_by_name['CreateNamedVariableSet']._options = None
149
+ _NAMEDVARIABLESETSERVICE.methods_by_name['CreateNamedVariableSet']._serialized_options = b'\202\323\344\223\0022\"-/v0/projects/{project_id}/named_variable_sets:\001*\212\265\030\006\010d\022\002\010\001'
150
+ _NAMEDVARIABLESETSERVICE.methods_by_name['DeleteNamedVariableSet']._options = None
151
+ _NAMEDVARIABLESETSERVICE.methods_by_name['DeleteNamedVariableSet']._serialized_options = b'\202\323\344\223\002\035*\033/v0/named_variable_set/{id}'
152
+ _NAMEDVARIABLESETSERVICE.methods_by_name['UpdateNamedVariableSet']._options = None
153
+ _NAMEDVARIABLESETSERVICE.methods_by_name['UpdateNamedVariableSet']._serialized_options = b'\202\323\344\223\002 \032\033/v0/named_variable_set/{id}:\001*'
154
+ _NAMEDVARIABLESET._serialized_start=279
155
+ _NAMEDVARIABLESET._serialized_end=649
156
+ _NAMEDVARIABLESET_NAMEDVARIABLESENTRY._serialized_start=562
157
+ _NAMEDVARIABLESET_NAMEDVARIABLESENTRY._serialized_end=649
158
+ _GETNAMEDVARIABLESETREQUEST._serialized_start=651
159
+ _GETNAMEDVARIABLESETREQUEST._serialized_end=691
160
+ _GETNAMEDVARIABLESETRESPONSE._serialized_start=694
161
+ _GETNAMEDVARIABLESETRESPONSE._serialized_end=825
162
+ _LISTNAMEDVARIABLESETSREQUEST._serialized_start=827
163
+ _LISTNAMEDVARIABLESETSREQUEST._serialized_end=877
164
+ _LISTNAMEDVARIABLESETSRESPONSE._serialized_start=880
165
+ _LISTNAMEDVARIABLESETSRESPONSE._serialized_end=1014
166
+ _CREATENAMEDVARIABLESETREQUEST._serialized_start=1017
167
+ _CREATENAMEDVARIABLESETREQUEST._serialized_end=1324
168
+ _CREATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY._serialized_start=562
169
+ _CREATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY._serialized_end=649
170
+ _CREATENAMEDVARIABLESETRESPONSE._serialized_start=1327
171
+ _CREATENAMEDVARIABLESETRESPONSE._serialized_end=1461
172
+ _DELETENAMEDVARIABLESETREQUEST._serialized_start=1463
173
+ _DELETENAMEDVARIABLESETREQUEST._serialized_end=1506
174
+ _UPDATENAMEDVARIABLESETREQUEST._serialized_start=1509
175
+ _UPDATENAMEDVARIABLESETREQUEST._serialized_end=1802
176
+ _UPDATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY._serialized_start=562
177
+ _UPDATENAMEDVARIABLESETREQUEST_NAMEDVARIABLESENTRY._serialized_end=649
178
+ _UPDATENAMEDVARIABLESETRESPONSE._serialized_start=1805
179
+ _UPDATENAMEDVARIABLESETRESPONSE._serialized_end=1939
180
+ _NAMEDVARIABLESETSERVICE._serialized_start=1942
181
+ _NAMEDVARIABLESETSERVICE._serialized_end=3138
182
+ # @@protoc_insertion_point(module_scope)