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.
- luminarycloud/__init__.py +3 -0
- luminarycloud/_client/client.py +4 -0
- luminarycloud/_client/logging_interceptor.py +25 -0
- luminarycloud/_client/tracing.py +13 -8
- luminarycloud/_helpers/__init__.py +1 -0
- luminarycloud/_helpers/download.py +16 -0
- luminarycloud/_helpers/named_variables.py +25 -0
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.py +40 -40
- luminarycloud/_proto/api/v0/luminarycloud/mesh/mesh_pb2.pyi +8 -2
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.py +182 -0
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2.pyi +260 -0
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.py +204 -0
- luminarycloud/_proto/api/v0/luminarycloud/named_variable_set/named_variable_set_pb2_grpc.pyi +75 -0
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.py +25 -3
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2.pyi +32 -0
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.py +34 -0
- luminarycloud/_proto/api/v0/luminarycloud/solution/solution_pb2_grpc.pyi +12 -0
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.py +138 -136
- luminarycloud/_proto/api/v0/luminarycloud/vis/vis_pb2.pyi +8 -2
- luminarycloud/_proto/client/simulation_pb2.py +111 -110
- luminarycloud/_proto/client/simulation_pb2.pyi +4 -0
- luminarycloud/_proto/quantity/quantity_pb2.py +4 -4
- luminarycloud/named_variable_set.py +121 -0
- luminarycloud/project.py +34 -2
- luminarycloud/simulation_param.py +86 -2
- luminarycloud/solution.py +17 -2
- luminarycloud/types/__init__.py +1 -0
- luminarycloud/types/adfloat.py +49 -19
- luminarycloud/types/ids.py +1 -0
- luminarycloud/vis/interactive_scene.py +37 -0
- luminarycloud/vis/visualization.py +13 -3
- luminarycloud/volume_selection.py +27 -15
- {luminarycloud-0.14.0.dist-info → luminarycloud-0.14.1.dist-info}/METADATA +1 -1
- {luminarycloud-0.14.0.dist-info → luminarycloud-0.14.1.dist-info}/RECORD +35 -29
- {luminarycloud-0.14.0.dist-info → luminarycloud-0.14.1.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
import builtins
|
|
6
|
+
import collections.abc
|
|
7
|
+
import google.protobuf.descriptor
|
|
8
|
+
import google.protobuf.internal.containers
|
|
9
|
+
import google.protobuf.message
|
|
10
|
+
import google.protobuf.timestamp_pb2
|
|
11
|
+
import luminarycloud._proto.base.base_pb2
|
|
12
|
+
import sys
|
|
13
|
+
|
|
14
|
+
if sys.version_info >= (3, 8):
|
|
15
|
+
import typing as typing_extensions
|
|
16
|
+
else:
|
|
17
|
+
import typing_extensions
|
|
18
|
+
|
|
19
|
+
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
|
20
|
+
|
|
21
|
+
class NamedVariableSet(google.protobuf.message.Message):
|
|
22
|
+
"""The API representation of a named variable set.
|
|
23
|
+
Should not contain any internal fields that are not needed by users,
|
|
24
|
+
a.k.a. don't leak through this abstraction any more than we already do.
|
|
25
|
+
"""
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
28
|
+
|
|
29
|
+
class NamedVariablesEntry(google.protobuf.message.Message):
|
|
30
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
31
|
+
|
|
32
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
33
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
34
|
+
key: builtins.str
|
|
35
|
+
@property
|
|
36
|
+
def value(self) -> luminarycloud._proto.base.base_pb2.AdFloatType: ...
|
|
37
|
+
def __init__(
|
|
38
|
+
self,
|
|
39
|
+
*,
|
|
40
|
+
key: builtins.str = ...,
|
|
41
|
+
value: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
42
|
+
) -> None: ...
|
|
43
|
+
def HasField(self, field_name: typing_extensions.Literal["value", b"value"]) -> builtins.bool: ...
|
|
44
|
+
def ClearField(self, field_name: typing_extensions.Literal["key", b"key", "value", b"value"]) -> None: ...
|
|
45
|
+
|
|
46
|
+
ID_FIELD_NUMBER: builtins.int
|
|
47
|
+
PROJECT_ID_FIELD_NUMBER: builtins.int
|
|
48
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
49
|
+
NAMED_VARIABLES_FIELD_NUMBER: builtins.int
|
|
50
|
+
CREATE_TIME_FIELD_NUMBER: builtins.int
|
|
51
|
+
UPDATE_TIME_FIELD_NUMBER: builtins.int
|
|
52
|
+
id: builtins.str
|
|
53
|
+
project_id: builtins.str
|
|
54
|
+
name: builtins.str
|
|
55
|
+
@property
|
|
56
|
+
def named_variables(self) -> google.protobuf.internal.containers.MessageMap[builtins.str, luminarycloud._proto.base.base_pb2.AdFloatType]: ...
|
|
57
|
+
@property
|
|
58
|
+
def create_time(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
|
|
59
|
+
@property
|
|
60
|
+
def update_time(self) -> google.protobuf.timestamp_pb2.Timestamp: ...
|
|
61
|
+
def __init__(
|
|
62
|
+
self,
|
|
63
|
+
*,
|
|
64
|
+
id: builtins.str = ...,
|
|
65
|
+
project_id: builtins.str = ...,
|
|
66
|
+
name: builtins.str = ...,
|
|
67
|
+
named_variables: collections.abc.Mapping[builtins.str, luminarycloud._proto.base.base_pb2.AdFloatType] | None = ...,
|
|
68
|
+
create_time: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
69
|
+
update_time: google.protobuf.timestamp_pb2.Timestamp | None = ...,
|
|
70
|
+
) -> None: ...
|
|
71
|
+
def HasField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "update_time", b"update_time"]) -> builtins.bool: ...
|
|
72
|
+
def ClearField(self, field_name: typing_extensions.Literal["create_time", b"create_time", "id", b"id", "name", b"name", "named_variables", b"named_variables", "project_id", b"project_id", "update_time", b"update_time"]) -> None: ...
|
|
73
|
+
|
|
74
|
+
global___NamedVariableSet = NamedVariableSet
|
|
75
|
+
|
|
76
|
+
class GetNamedVariableSetRequest(google.protobuf.message.Message):
|
|
77
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
78
|
+
|
|
79
|
+
ID_FIELD_NUMBER: builtins.int
|
|
80
|
+
id: builtins.str
|
|
81
|
+
def __init__(
|
|
82
|
+
self,
|
|
83
|
+
*,
|
|
84
|
+
id: builtins.str = ...,
|
|
85
|
+
) -> None: ...
|
|
86
|
+
def ClearField(self, field_name: typing_extensions.Literal["id", b"id"]) -> None: ...
|
|
87
|
+
|
|
88
|
+
global___GetNamedVariableSetRequest = GetNamedVariableSetRequest
|
|
89
|
+
|
|
90
|
+
class GetNamedVariableSetResponse(google.protobuf.message.Message):
|
|
91
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
92
|
+
|
|
93
|
+
NAMED_VARIABLE_SET_FIELD_NUMBER: builtins.int
|
|
94
|
+
@property
|
|
95
|
+
def named_variable_set(self) -> global___NamedVariableSet: ...
|
|
96
|
+
def __init__(
|
|
97
|
+
self,
|
|
98
|
+
*,
|
|
99
|
+
named_variable_set: global___NamedVariableSet | None = ...,
|
|
100
|
+
) -> None: ...
|
|
101
|
+
def HasField(self, field_name: typing_extensions.Literal["named_variable_set", b"named_variable_set"]) -> builtins.bool: ...
|
|
102
|
+
def ClearField(self, field_name: typing_extensions.Literal["named_variable_set", b"named_variable_set"]) -> None: ...
|
|
103
|
+
|
|
104
|
+
global___GetNamedVariableSetResponse = GetNamedVariableSetResponse
|
|
105
|
+
|
|
106
|
+
class ListNamedVariableSetsRequest(google.protobuf.message.Message):
|
|
107
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
108
|
+
|
|
109
|
+
PROJECT_ID_FIELD_NUMBER: builtins.int
|
|
110
|
+
project_id: builtins.str
|
|
111
|
+
def __init__(
|
|
112
|
+
self,
|
|
113
|
+
*,
|
|
114
|
+
project_id: builtins.str = ...,
|
|
115
|
+
) -> None: ...
|
|
116
|
+
def ClearField(self, field_name: typing_extensions.Literal["project_id", b"project_id"]) -> None: ...
|
|
117
|
+
|
|
118
|
+
global___ListNamedVariableSetsRequest = ListNamedVariableSetsRequest
|
|
119
|
+
|
|
120
|
+
class ListNamedVariableSetsResponse(google.protobuf.message.Message):
|
|
121
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
122
|
+
|
|
123
|
+
NAMED_VARIABLE_SETS_FIELD_NUMBER: builtins.int
|
|
124
|
+
@property
|
|
125
|
+
def named_variable_sets(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___NamedVariableSet]: ...
|
|
126
|
+
def __init__(
|
|
127
|
+
self,
|
|
128
|
+
*,
|
|
129
|
+
named_variable_sets: collections.abc.Iterable[global___NamedVariableSet] | None = ...,
|
|
130
|
+
) -> None: ...
|
|
131
|
+
def ClearField(self, field_name: typing_extensions.Literal["named_variable_sets", b"named_variable_sets"]) -> None: ...
|
|
132
|
+
|
|
133
|
+
global___ListNamedVariableSetsResponse = ListNamedVariableSetsResponse
|
|
134
|
+
|
|
135
|
+
class CreateNamedVariableSetRequest(google.protobuf.message.Message):
|
|
136
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
137
|
+
|
|
138
|
+
class NamedVariablesEntry(google.protobuf.message.Message):
|
|
139
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
140
|
+
|
|
141
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
142
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
143
|
+
key: builtins.str
|
|
144
|
+
@property
|
|
145
|
+
def value(self) -> luminarycloud._proto.base.base_pb2.AdFloatType: ...
|
|
146
|
+
def __init__(
|
|
147
|
+
self,
|
|
148
|
+
*,
|
|
149
|
+
key: builtins.str = ...,
|
|
150
|
+
value: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
151
|
+
) -> None: ...
|
|
152
|
+
def HasField(self, field_name: typing_extensions.Literal["value", b"value"]) -> builtins.bool: ...
|
|
153
|
+
def ClearField(self, field_name: typing_extensions.Literal["key", b"key", "value", b"value"]) -> None: ...
|
|
154
|
+
|
|
155
|
+
PROJECT_ID_FIELD_NUMBER: builtins.int
|
|
156
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
157
|
+
NAMED_VARIABLES_FIELD_NUMBER: builtins.int
|
|
158
|
+
REQUEST_ID_FIELD_NUMBER: builtins.int
|
|
159
|
+
project_id: builtins.str
|
|
160
|
+
name: builtins.str
|
|
161
|
+
@property
|
|
162
|
+
def named_variables(self) -> google.protobuf.internal.containers.MessageMap[builtins.str, luminarycloud._proto.base.base_pb2.AdFloatType]: ...
|
|
163
|
+
request_id: builtins.str
|
|
164
|
+
def __init__(
|
|
165
|
+
self,
|
|
166
|
+
*,
|
|
167
|
+
project_id: builtins.str = ...,
|
|
168
|
+
name: builtins.str = ...,
|
|
169
|
+
named_variables: collections.abc.Mapping[builtins.str, luminarycloud._proto.base.base_pb2.AdFloatType] | None = ...,
|
|
170
|
+
request_id: builtins.str = ...,
|
|
171
|
+
) -> None: ...
|
|
172
|
+
def ClearField(self, field_name: typing_extensions.Literal["name", b"name", "named_variables", b"named_variables", "project_id", b"project_id", "request_id", b"request_id"]) -> None: ...
|
|
173
|
+
|
|
174
|
+
global___CreateNamedVariableSetRequest = CreateNamedVariableSetRequest
|
|
175
|
+
|
|
176
|
+
class CreateNamedVariableSetResponse(google.protobuf.message.Message):
|
|
177
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
178
|
+
|
|
179
|
+
NAMED_VARIABLE_SET_FIELD_NUMBER: builtins.int
|
|
180
|
+
@property
|
|
181
|
+
def named_variable_set(self) -> global___NamedVariableSet: ...
|
|
182
|
+
def __init__(
|
|
183
|
+
self,
|
|
184
|
+
*,
|
|
185
|
+
named_variable_set: global___NamedVariableSet | None = ...,
|
|
186
|
+
) -> None: ...
|
|
187
|
+
def HasField(self, field_name: typing_extensions.Literal["named_variable_set", b"named_variable_set"]) -> builtins.bool: ...
|
|
188
|
+
def ClearField(self, field_name: typing_extensions.Literal["named_variable_set", b"named_variable_set"]) -> None: ...
|
|
189
|
+
|
|
190
|
+
global___CreateNamedVariableSetResponse = CreateNamedVariableSetResponse
|
|
191
|
+
|
|
192
|
+
class DeleteNamedVariableSetRequest(google.protobuf.message.Message):
|
|
193
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
194
|
+
|
|
195
|
+
ID_FIELD_NUMBER: builtins.int
|
|
196
|
+
id: builtins.str
|
|
197
|
+
def __init__(
|
|
198
|
+
self,
|
|
199
|
+
*,
|
|
200
|
+
id: builtins.str = ...,
|
|
201
|
+
) -> None: ...
|
|
202
|
+
def ClearField(self, field_name: typing_extensions.Literal["id", b"id"]) -> None: ...
|
|
203
|
+
|
|
204
|
+
global___DeleteNamedVariableSetRequest = DeleteNamedVariableSetRequest
|
|
205
|
+
|
|
206
|
+
class UpdateNamedVariableSetRequest(google.protobuf.message.Message):
|
|
207
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
208
|
+
|
|
209
|
+
class NamedVariablesEntry(google.protobuf.message.Message):
|
|
210
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
211
|
+
|
|
212
|
+
KEY_FIELD_NUMBER: builtins.int
|
|
213
|
+
VALUE_FIELD_NUMBER: builtins.int
|
|
214
|
+
key: builtins.str
|
|
215
|
+
@property
|
|
216
|
+
def value(self) -> luminarycloud._proto.base.base_pb2.AdFloatType: ...
|
|
217
|
+
def __init__(
|
|
218
|
+
self,
|
|
219
|
+
*,
|
|
220
|
+
key: builtins.str = ...,
|
|
221
|
+
value: luminarycloud._proto.base.base_pb2.AdFloatType | None = ...,
|
|
222
|
+
) -> None: ...
|
|
223
|
+
def HasField(self, field_name: typing_extensions.Literal["value", b"value"]) -> builtins.bool: ...
|
|
224
|
+
def ClearField(self, field_name: typing_extensions.Literal["key", b"key", "value", b"value"]) -> None: ...
|
|
225
|
+
|
|
226
|
+
ID_FIELD_NUMBER: builtins.int
|
|
227
|
+
NAME_FIELD_NUMBER: builtins.int
|
|
228
|
+
NAMED_VARIABLES_FIELD_NUMBER: builtins.int
|
|
229
|
+
id: builtins.str
|
|
230
|
+
name: builtins.str
|
|
231
|
+
@property
|
|
232
|
+
def named_variables(self) -> google.protobuf.internal.containers.MessageMap[builtins.str, luminarycloud._proto.base.base_pb2.AdFloatType]: ...
|
|
233
|
+
def __init__(
|
|
234
|
+
self,
|
|
235
|
+
*,
|
|
236
|
+
id: builtins.str = ...,
|
|
237
|
+
name: builtins.str | None = ...,
|
|
238
|
+
named_variables: collections.abc.Mapping[builtins.str, luminarycloud._proto.base.base_pb2.AdFloatType] | None = ...,
|
|
239
|
+
) -> None: ...
|
|
240
|
+
def HasField(self, field_name: typing_extensions.Literal["_name", b"_name", "name", b"name"]) -> builtins.bool: ...
|
|
241
|
+
def ClearField(self, field_name: typing_extensions.Literal["_name", b"_name", "id", b"id", "name", b"name", "named_variables", b"named_variables"]) -> None: ...
|
|
242
|
+
def WhichOneof(self, oneof_group: typing_extensions.Literal["_name", b"_name"]) -> typing_extensions.Literal["name"] | None: ...
|
|
243
|
+
|
|
244
|
+
global___UpdateNamedVariableSetRequest = UpdateNamedVariableSetRequest
|
|
245
|
+
|
|
246
|
+
class UpdateNamedVariableSetResponse(google.protobuf.message.Message):
|
|
247
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
248
|
+
|
|
249
|
+
NAMED_VARIABLE_SET_FIELD_NUMBER: builtins.int
|
|
250
|
+
@property
|
|
251
|
+
def named_variable_set(self) -> global___NamedVariableSet: ...
|
|
252
|
+
def __init__(
|
|
253
|
+
self,
|
|
254
|
+
*,
|
|
255
|
+
named_variable_set: global___NamedVariableSet | None = ...,
|
|
256
|
+
) -> None: ...
|
|
257
|
+
def HasField(self, field_name: typing_extensions.Literal["named_variable_set", b"named_variable_set"]) -> builtins.bool: ...
|
|
258
|
+
def ClearField(self, field_name: typing_extensions.Literal["named_variable_set", b"named_variable_set"]) -> None: ...
|
|
259
|
+
|
|
260
|
+
global___UpdateNamedVariableSetResponse = UpdateNamedVariableSetResponse
|
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
|
|
5
|
+
from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
|
|
6
|
+
from luminarycloud._proto.api.v0.luminarycloud.named_variable_set import named_variable_set_pb2 as proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class NamedVariableSetServiceStub(object):
|
|
10
|
+
"""Missing associated documentation comment in .proto file."""
|
|
11
|
+
|
|
12
|
+
def __init__(self, channel):
|
|
13
|
+
"""Constructor.
|
|
14
|
+
|
|
15
|
+
Args:
|
|
16
|
+
channel: A grpc.Channel.
|
|
17
|
+
"""
|
|
18
|
+
self.GetNamedVariableSet = channel.unary_unary(
|
|
19
|
+
'/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/GetNamedVariableSet',
|
|
20
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.GetNamedVariableSetRequest.SerializeToString,
|
|
21
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.GetNamedVariableSetResponse.FromString,
|
|
22
|
+
)
|
|
23
|
+
self.ListNamedVariableSets = channel.unary_unary(
|
|
24
|
+
'/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/ListNamedVariableSets',
|
|
25
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.ListNamedVariableSetsRequest.SerializeToString,
|
|
26
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.ListNamedVariableSetsResponse.FromString,
|
|
27
|
+
)
|
|
28
|
+
self.CreateNamedVariableSet = channel.unary_unary(
|
|
29
|
+
'/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/CreateNamedVariableSet',
|
|
30
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.CreateNamedVariableSetRequest.SerializeToString,
|
|
31
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.CreateNamedVariableSetResponse.FromString,
|
|
32
|
+
)
|
|
33
|
+
self.DeleteNamedVariableSet = channel.unary_unary(
|
|
34
|
+
'/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/DeleteNamedVariableSet',
|
|
35
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.DeleteNamedVariableSetRequest.SerializeToString,
|
|
36
|
+
response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
37
|
+
)
|
|
38
|
+
self.UpdateNamedVariableSet = channel.unary_unary(
|
|
39
|
+
'/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/UpdateNamedVariableSet',
|
|
40
|
+
request_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.UpdateNamedVariableSetRequest.SerializeToString,
|
|
41
|
+
response_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.UpdateNamedVariableSetResponse.FromString,
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
class NamedVariableSetServiceServicer(object):
|
|
46
|
+
"""Missing associated documentation comment in .proto file."""
|
|
47
|
+
|
|
48
|
+
def GetNamedVariableSet(self, request, context):
|
|
49
|
+
"""Get a named variable set.
|
|
50
|
+
"""
|
|
51
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
52
|
+
context.set_details('Method not implemented!')
|
|
53
|
+
raise NotImplementedError('Method not implemented!')
|
|
54
|
+
|
|
55
|
+
def ListNamedVariableSets(self, request, context):
|
|
56
|
+
"""List all named variable sets for a project.
|
|
57
|
+
"""
|
|
58
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
59
|
+
context.set_details('Method not implemented!')
|
|
60
|
+
raise NotImplementedError('Method not implemented!')
|
|
61
|
+
|
|
62
|
+
def CreateNamedVariableSet(self, request, context):
|
|
63
|
+
"""Create a new named variable set.
|
|
64
|
+
"""
|
|
65
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
66
|
+
context.set_details('Method not implemented!')
|
|
67
|
+
raise NotImplementedError('Method not implemented!')
|
|
68
|
+
|
|
69
|
+
def DeleteNamedVariableSet(self, request, context):
|
|
70
|
+
"""Delete a named variable set.
|
|
71
|
+
"""
|
|
72
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
73
|
+
context.set_details('Method not implemented!')
|
|
74
|
+
raise NotImplementedError('Method not implemented!')
|
|
75
|
+
|
|
76
|
+
def UpdateNamedVariableSet(self, request, context):
|
|
77
|
+
"""Update a named variable set.
|
|
78
|
+
"""
|
|
79
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
80
|
+
context.set_details('Method not implemented!')
|
|
81
|
+
raise NotImplementedError('Method not implemented!')
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
def add_NamedVariableSetServiceServicer_to_server(servicer, server):
|
|
85
|
+
rpc_method_handlers = {
|
|
86
|
+
'GetNamedVariableSet': grpc.unary_unary_rpc_method_handler(
|
|
87
|
+
servicer.GetNamedVariableSet,
|
|
88
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.GetNamedVariableSetRequest.FromString,
|
|
89
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.GetNamedVariableSetResponse.SerializeToString,
|
|
90
|
+
),
|
|
91
|
+
'ListNamedVariableSets': grpc.unary_unary_rpc_method_handler(
|
|
92
|
+
servicer.ListNamedVariableSets,
|
|
93
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.ListNamedVariableSetsRequest.FromString,
|
|
94
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.ListNamedVariableSetsResponse.SerializeToString,
|
|
95
|
+
),
|
|
96
|
+
'CreateNamedVariableSet': grpc.unary_unary_rpc_method_handler(
|
|
97
|
+
servicer.CreateNamedVariableSet,
|
|
98
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.CreateNamedVariableSetRequest.FromString,
|
|
99
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.CreateNamedVariableSetResponse.SerializeToString,
|
|
100
|
+
),
|
|
101
|
+
'DeleteNamedVariableSet': grpc.unary_unary_rpc_method_handler(
|
|
102
|
+
servicer.DeleteNamedVariableSet,
|
|
103
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.DeleteNamedVariableSetRequest.FromString,
|
|
104
|
+
response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
|
|
105
|
+
),
|
|
106
|
+
'UpdateNamedVariableSet': grpc.unary_unary_rpc_method_handler(
|
|
107
|
+
servicer.UpdateNamedVariableSet,
|
|
108
|
+
request_deserializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.UpdateNamedVariableSetRequest.FromString,
|
|
109
|
+
response_serializer=proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.UpdateNamedVariableSetResponse.SerializeToString,
|
|
110
|
+
),
|
|
111
|
+
}
|
|
112
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
|
113
|
+
'luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService', rpc_method_handlers)
|
|
114
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
# This class is part of an EXPERIMENTAL API.
|
|
118
|
+
class NamedVariableSetService(object):
|
|
119
|
+
"""Missing associated documentation comment in .proto file."""
|
|
120
|
+
|
|
121
|
+
@staticmethod
|
|
122
|
+
def GetNamedVariableSet(request,
|
|
123
|
+
target,
|
|
124
|
+
options=(),
|
|
125
|
+
channel_credentials=None,
|
|
126
|
+
call_credentials=None,
|
|
127
|
+
insecure=False,
|
|
128
|
+
compression=None,
|
|
129
|
+
wait_for_ready=None,
|
|
130
|
+
timeout=None,
|
|
131
|
+
metadata=None):
|
|
132
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/GetNamedVariableSet',
|
|
133
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.GetNamedVariableSetRequest.SerializeToString,
|
|
134
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.GetNamedVariableSetResponse.FromString,
|
|
135
|
+
options, channel_credentials,
|
|
136
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
137
|
+
|
|
138
|
+
@staticmethod
|
|
139
|
+
def ListNamedVariableSets(request,
|
|
140
|
+
target,
|
|
141
|
+
options=(),
|
|
142
|
+
channel_credentials=None,
|
|
143
|
+
call_credentials=None,
|
|
144
|
+
insecure=False,
|
|
145
|
+
compression=None,
|
|
146
|
+
wait_for_ready=None,
|
|
147
|
+
timeout=None,
|
|
148
|
+
metadata=None):
|
|
149
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/ListNamedVariableSets',
|
|
150
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.ListNamedVariableSetsRequest.SerializeToString,
|
|
151
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.ListNamedVariableSetsResponse.FromString,
|
|
152
|
+
options, channel_credentials,
|
|
153
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
154
|
+
|
|
155
|
+
@staticmethod
|
|
156
|
+
def CreateNamedVariableSet(request,
|
|
157
|
+
target,
|
|
158
|
+
options=(),
|
|
159
|
+
channel_credentials=None,
|
|
160
|
+
call_credentials=None,
|
|
161
|
+
insecure=False,
|
|
162
|
+
compression=None,
|
|
163
|
+
wait_for_ready=None,
|
|
164
|
+
timeout=None,
|
|
165
|
+
metadata=None):
|
|
166
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/CreateNamedVariableSet',
|
|
167
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.CreateNamedVariableSetRequest.SerializeToString,
|
|
168
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.CreateNamedVariableSetResponse.FromString,
|
|
169
|
+
options, channel_credentials,
|
|
170
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
171
|
+
|
|
172
|
+
@staticmethod
|
|
173
|
+
def DeleteNamedVariableSet(request,
|
|
174
|
+
target,
|
|
175
|
+
options=(),
|
|
176
|
+
channel_credentials=None,
|
|
177
|
+
call_credentials=None,
|
|
178
|
+
insecure=False,
|
|
179
|
+
compression=None,
|
|
180
|
+
wait_for_ready=None,
|
|
181
|
+
timeout=None,
|
|
182
|
+
metadata=None):
|
|
183
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/DeleteNamedVariableSet',
|
|
184
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.DeleteNamedVariableSetRequest.SerializeToString,
|
|
185
|
+
google_dot_protobuf_dot_empty__pb2.Empty.FromString,
|
|
186
|
+
options, channel_credentials,
|
|
187
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
188
|
+
|
|
189
|
+
@staticmethod
|
|
190
|
+
def UpdateNamedVariableSet(request,
|
|
191
|
+
target,
|
|
192
|
+
options=(),
|
|
193
|
+
channel_credentials=None,
|
|
194
|
+
call_credentials=None,
|
|
195
|
+
insecure=False,
|
|
196
|
+
compression=None,
|
|
197
|
+
wait_for_ready=None,
|
|
198
|
+
timeout=None,
|
|
199
|
+
metadata=None):
|
|
200
|
+
return grpc.experimental.unary_unary(request, target, '/luminary.proto.api.v0.luminarycloud.named_variable_set.NamedVariableSetService/UpdateNamedVariableSet',
|
|
201
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.UpdateNamedVariableSetRequest.SerializeToString,
|
|
202
|
+
proto_dot_api_dot_v0_dot_luminarycloud_dot_named__variable__set_dot_named__variable__set__pb2.UpdateNamedVariableSetResponse.FromString,
|
|
203
|
+
options, channel_credentials,
|
|
204
|
+
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
"""
|
|
5
|
+
import abc
|
|
6
|
+
import google.protobuf.empty_pb2
|
|
7
|
+
import grpc
|
|
8
|
+
import luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2
|
|
9
|
+
|
|
10
|
+
class NamedVariableSetServiceStub:
|
|
11
|
+
def __init__(self, channel: grpc.Channel) -> None: ...
|
|
12
|
+
GetNamedVariableSet: grpc.UnaryUnaryMultiCallable[
|
|
13
|
+
luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.GetNamedVariableSetRequest,
|
|
14
|
+
luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.GetNamedVariableSetResponse,
|
|
15
|
+
]
|
|
16
|
+
"""Get a named variable set."""
|
|
17
|
+
ListNamedVariableSets: grpc.UnaryUnaryMultiCallable[
|
|
18
|
+
luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.ListNamedVariableSetsRequest,
|
|
19
|
+
luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.ListNamedVariableSetsResponse,
|
|
20
|
+
]
|
|
21
|
+
"""List all named variable sets for a project."""
|
|
22
|
+
CreateNamedVariableSet: grpc.UnaryUnaryMultiCallable[
|
|
23
|
+
luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.CreateNamedVariableSetRequest,
|
|
24
|
+
luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.CreateNamedVariableSetResponse,
|
|
25
|
+
]
|
|
26
|
+
"""Create a new named variable set."""
|
|
27
|
+
DeleteNamedVariableSet: grpc.UnaryUnaryMultiCallable[
|
|
28
|
+
luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.DeleteNamedVariableSetRequest,
|
|
29
|
+
google.protobuf.empty_pb2.Empty,
|
|
30
|
+
]
|
|
31
|
+
"""Delete a named variable set."""
|
|
32
|
+
UpdateNamedVariableSet: grpc.UnaryUnaryMultiCallable[
|
|
33
|
+
luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.UpdateNamedVariableSetRequest,
|
|
34
|
+
luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.UpdateNamedVariableSetResponse,
|
|
35
|
+
]
|
|
36
|
+
"""Update a named variable set."""
|
|
37
|
+
|
|
38
|
+
class NamedVariableSetServiceServicer(metaclass=abc.ABCMeta):
|
|
39
|
+
@abc.abstractmethod
|
|
40
|
+
def GetNamedVariableSet(
|
|
41
|
+
self,
|
|
42
|
+
request: luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.GetNamedVariableSetRequest,
|
|
43
|
+
context: grpc.ServicerContext,
|
|
44
|
+
) -> luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.GetNamedVariableSetResponse:
|
|
45
|
+
"""Get a named variable set."""
|
|
46
|
+
@abc.abstractmethod
|
|
47
|
+
def ListNamedVariableSets(
|
|
48
|
+
self,
|
|
49
|
+
request: luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.ListNamedVariableSetsRequest,
|
|
50
|
+
context: grpc.ServicerContext,
|
|
51
|
+
) -> luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.ListNamedVariableSetsResponse:
|
|
52
|
+
"""List all named variable sets for a project."""
|
|
53
|
+
@abc.abstractmethod
|
|
54
|
+
def CreateNamedVariableSet(
|
|
55
|
+
self,
|
|
56
|
+
request: luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.CreateNamedVariableSetRequest,
|
|
57
|
+
context: grpc.ServicerContext,
|
|
58
|
+
) -> luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.CreateNamedVariableSetResponse:
|
|
59
|
+
"""Create a new named variable set."""
|
|
60
|
+
@abc.abstractmethod
|
|
61
|
+
def DeleteNamedVariableSet(
|
|
62
|
+
self,
|
|
63
|
+
request: luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.DeleteNamedVariableSetRequest,
|
|
64
|
+
context: grpc.ServicerContext,
|
|
65
|
+
) -> google.protobuf.empty_pb2.Empty:
|
|
66
|
+
"""Delete a named variable set."""
|
|
67
|
+
@abc.abstractmethod
|
|
68
|
+
def UpdateNamedVariableSet(
|
|
69
|
+
self,
|
|
70
|
+
request: luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.UpdateNamedVariableSetRequest,
|
|
71
|
+
context: grpc.ServicerContext,
|
|
72
|
+
) -> luminarycloud._proto.api.v0.luminarycloud.named_variable_set.named_variable_set_pb2.UpdateNamedVariableSetResponse:
|
|
73
|
+
"""Update a named variable set."""
|
|
74
|
+
|
|
75
|
+
def add_NamedVariableSetServiceServicer_to_server(servicer: NamedVariableSetServiceServicer, server: grpc.Server) -> None: ...
|
|
@@ -16,7 +16,7 @@ from google.api import annotations_pb2 as google_dot_api_dot_annotations__pb2
|
|
|
16
16
|
from luminarycloud._proto.api.v0.luminarycloud.common import common_pb2 as proto_dot_api_dot_v0_dot_luminarycloud_dot_common_dot_common__pb2
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2proto/api/v0/luminarycloud/solution/solution.proto\x12,luminary.proto.api.v0.luminarycloud.solution\x1a\x1cgoogle/api/annotations.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\"W\n\x08Solution\x12\n\n\x02id\x18\x01 \x01(\t\x12\x15\n\rsimulation_id\x18\x02 \x01(\t\x12\x11\n\titeration\x18\x03 \x01(\r\x12\x15\n\rphysical_time\x18\x04 \x01(\x02\"-\n\x14ListSolutionsRequest\x12\x15\n\rsimulation_id\x18\x01 \x01(\t\"b\n\x15ListSolutionsResponse\x12I\n\tsolutions\x18\x01 \x03(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.solution.Solution\"+\n\x1dGetSolutionSurfaceDataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"`\n\x1eGetSolutionSurfaceDataResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\"D\n\x1cGetSolutionVolumeDataRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x18\n\x10single_precision\x18\x02 \x01(\x08\"_\n\x1dGetSolutionVolumeDataResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\"2\n$GetSurfaceDeformationTemplateRequest\x12\n\n\x02id\x18\x01 \x01(\t\"g\n%GetSurfaceDeformationTemplateResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\".\n GetSurfaceSensitivityDataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"c\n!GetSurfaceSensitivityDataResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.
|
|
19
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2proto/api/v0/luminarycloud/solution/solution.proto\x12,luminary.proto.api.v0.luminarycloud.solution\x1a\x1cgoogle/api/annotations.proto\x1a.proto/api/v0/luminarycloud/common/common.proto\"W\n\x08Solution\x12\n\n\x02id\x18\x01 \x01(\t\x12\x15\n\rsimulation_id\x18\x02 \x01(\t\x12\x11\n\titeration\x18\x03 \x01(\r\x12\x15\n\rphysical_time\x18\x04 \x01(\x02\"-\n\x14ListSolutionsRequest\x12\x15\n\rsimulation_id\x18\x01 \x01(\t\"b\n\x15ListSolutionsResponse\x12I\n\tsolutions\x18\x01 \x03(\x0b\x32\x36.luminary.proto.api.v0.luminarycloud.solution.Solution\"+\n\x1dGetSolutionSurfaceDataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"`\n\x1eGetSolutionSurfaceDataResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\"D\n\x1cGetSolutionVolumeDataRequest\x12\n\n\x02id\x18\x01 \x01(\t\x12\x18\n\x10single_precision\x18\x02 \x01(\x08\"_\n\x1dGetSolutionVolumeDataResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\"2\n$GetSurfaceDeformationTemplateRequest\x12\n\n\x02id\x18\x01 \x01(\t\"g\n%GetSurfaceDeformationTemplateResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\".\n GetSurfaceSensitivityDataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"c\n!GetSurfaceSensitivityDataResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File\"0\n\"GetParameterSensitivityDataRequest\x12\n\n\x02id\x18\x01 \x01(\t\"e\n#GetParameterSensitivityDataResponse\x12>\n\x04\x66ile\x18\x01 \x01(\x0b\x32\x30.luminary.proto.api.v0.luminarycloud.common.File2\xfa\n\n\x0fSolutionService\x12\xcb\x01\n\rListSolutions\x12\x42.luminary.proto.api.v0.luminarycloud.solution.ListSolutionsRequest\x1a\x43.luminary.proto.api.v0.luminarycloud.solution.ListSolutionsResponse\"1\x82\xd3\xe4\x93\x02+\x12)/v0/simulations/{simulation_id}/solutions\x12\xdc\x01\n\x16GetSolutionSurfaceData\x12K.luminary.proto.api.v0.luminarycloud.solution.GetSolutionSurfaceDataRequest\x1aL.luminary.proto.api.v0.luminarycloud.solution.GetSolutionSurfaceDataResponse\"\'\x82\xd3\xe4\x93\x02!\x12\x1f/v0/solutions/{id}/surface_data\x12\xd8\x01\n\x15GetSolutionVolumeData\x12J.luminary.proto.api.v0.luminarycloud.solution.GetSolutionVolumeDataRequest\x1aK.luminary.proto.api.v0.luminarycloud.solution.GetSolutionVolumeDataResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/v0/solutions/{id}/volume_data\x12\xf8\x01\n\x1dGetSurfaceDeformationTemplate\x12R.luminary.proto.api.v0.luminarycloud.solution.GetSurfaceDeformationTemplateRequest\x1aS.luminary.proto.api.v0.luminarycloud.solution.GetSurfaceDeformationTemplateResponse\".\x82\xd3\xe4\x93\x02(\x12&/v0/solutions/{id}/surface_deformation\x12\xec\x01\n\x19GetSurfaceSensitivityData\x12N.luminary.proto.api.v0.luminarycloud.solution.GetSurfaceSensitivityDataRequest\x1aO.luminary.proto.api.v0.luminarycloud.solution.GetSurfaceSensitivityDataResponse\".\x82\xd3\xe4\x93\x02(\x12&/v0/solutions/{id}/surface_sensitivity\x12\xf4\x01\n\x1bGetParameterSensitivityData\x12P.luminary.proto.api.v0.luminarycloud.solution.GetParameterSensitivityDataRequest\x1aQ.luminary.proto.api.v0.luminarycloud.solution.GetParameterSensitivityDataResponse\"0\x82\xd3\xe4\x93\x02*\x12(/v0/solutions/{id}/parameter_sensitivityB<Z:luminarycloud.com/core/proto/api/v0/luminarycloud/solutionb\x06proto3')
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
@@ -31,6 +31,8 @@ _GETSURFACEDEFORMATIONTEMPLATEREQUEST = DESCRIPTOR.message_types_by_name['GetSur
|
|
|
31
31
|
_GETSURFACEDEFORMATIONTEMPLATERESPONSE = DESCRIPTOR.message_types_by_name['GetSurfaceDeformationTemplateResponse']
|
|
32
32
|
_GETSURFACESENSITIVITYDATAREQUEST = DESCRIPTOR.message_types_by_name['GetSurfaceSensitivityDataRequest']
|
|
33
33
|
_GETSURFACESENSITIVITYDATARESPONSE = DESCRIPTOR.message_types_by_name['GetSurfaceSensitivityDataResponse']
|
|
34
|
+
_GETPARAMETERSENSITIVITYDATAREQUEST = DESCRIPTOR.message_types_by_name['GetParameterSensitivityDataRequest']
|
|
35
|
+
_GETPARAMETERSENSITIVITYDATARESPONSE = DESCRIPTOR.message_types_by_name['GetParameterSensitivityDataResponse']
|
|
34
36
|
Solution = _reflection.GeneratedProtocolMessageType('Solution', (_message.Message,), {
|
|
35
37
|
'DESCRIPTOR' : _SOLUTION,
|
|
36
38
|
'__module__' : 'proto.api.v0.luminarycloud.solution.solution_pb2'
|
|
@@ -108,6 +110,20 @@ GetSurfaceSensitivityDataResponse = _reflection.GeneratedProtocolMessageType('Ge
|
|
|
108
110
|
})
|
|
109
111
|
_sym_db.RegisterMessage(GetSurfaceSensitivityDataResponse)
|
|
110
112
|
|
|
113
|
+
GetParameterSensitivityDataRequest = _reflection.GeneratedProtocolMessageType('GetParameterSensitivityDataRequest', (_message.Message,), {
|
|
114
|
+
'DESCRIPTOR' : _GETPARAMETERSENSITIVITYDATAREQUEST,
|
|
115
|
+
'__module__' : 'proto.api.v0.luminarycloud.solution.solution_pb2'
|
|
116
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.solution.GetParameterSensitivityDataRequest)
|
|
117
|
+
})
|
|
118
|
+
_sym_db.RegisterMessage(GetParameterSensitivityDataRequest)
|
|
119
|
+
|
|
120
|
+
GetParameterSensitivityDataResponse = _reflection.GeneratedProtocolMessageType('GetParameterSensitivityDataResponse', (_message.Message,), {
|
|
121
|
+
'DESCRIPTOR' : _GETPARAMETERSENSITIVITYDATARESPONSE,
|
|
122
|
+
'__module__' : 'proto.api.v0.luminarycloud.solution.solution_pb2'
|
|
123
|
+
# @@protoc_insertion_point(class_scope:luminary.proto.api.v0.luminarycloud.solution.GetParameterSensitivityDataResponse)
|
|
124
|
+
})
|
|
125
|
+
_sym_db.RegisterMessage(GetParameterSensitivityDataResponse)
|
|
126
|
+
|
|
111
127
|
_SOLUTIONSERVICE = DESCRIPTOR.services_by_name['SolutionService']
|
|
112
128
|
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
113
129
|
|
|
@@ -123,6 +139,8 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
123
139
|
_SOLUTIONSERVICE.methods_by_name['GetSurfaceDeformationTemplate']._serialized_options = b'\202\323\344\223\002(\022&/v0/solutions/{id}/surface_deformation'
|
|
124
140
|
_SOLUTIONSERVICE.methods_by_name['GetSurfaceSensitivityData']._options = None
|
|
125
141
|
_SOLUTIONSERVICE.methods_by_name['GetSurfaceSensitivityData']._serialized_options = b'\202\323\344\223\002(\022&/v0/solutions/{id}/surface_sensitivity'
|
|
142
|
+
_SOLUTIONSERVICE.methods_by_name['GetParameterSensitivityData']._options = None
|
|
143
|
+
_SOLUTIONSERVICE.methods_by_name['GetParameterSensitivityData']._serialized_options = b'\202\323\344\223\002*\022(/v0/solutions/{id}/parameter_sensitivity'
|
|
126
144
|
_SOLUTION._serialized_start=178
|
|
127
145
|
_SOLUTION._serialized_end=265
|
|
128
146
|
_LISTSOLUTIONSREQUEST._serialized_start=267
|
|
@@ -145,6 +163,10 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
145
163
|
_GETSURFACESENSITIVITYDATAREQUEST._serialized_end=927
|
|
146
164
|
_GETSURFACESENSITIVITYDATARESPONSE._serialized_start=929
|
|
147
165
|
_GETSURFACESENSITIVITYDATARESPONSE._serialized_end=1028
|
|
148
|
-
|
|
149
|
-
|
|
166
|
+
_GETPARAMETERSENSITIVITYDATAREQUEST._serialized_start=1030
|
|
167
|
+
_GETPARAMETERSENSITIVITYDATAREQUEST._serialized_end=1078
|
|
168
|
+
_GETPARAMETERSENSITIVITYDATARESPONSE._serialized_start=1080
|
|
169
|
+
_GETPARAMETERSENSITIVITYDATARESPONSE._serialized_end=1181
|
|
170
|
+
_SOLUTIONSERVICE._serialized_start=1184
|
|
171
|
+
_SOLUTIONSERVICE._serialized_end=2586
|
|
150
172
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -212,3 +212,35 @@ class GetSurfaceSensitivityDataResponse(google.protobuf.message.Message):
|
|
|
212
212
|
def ClearField(self, field_name: typing_extensions.Literal["file", b"file"]) -> None: ...
|
|
213
213
|
|
|
214
214
|
global___GetSurfaceSensitivityDataResponse = GetSurfaceSensitivityDataResponse
|
|
215
|
+
|
|
216
|
+
class GetParameterSensitivityDataRequest(google.protobuf.message.Message):
|
|
217
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
218
|
+
|
|
219
|
+
ID_FIELD_NUMBER: builtins.int
|
|
220
|
+
id: builtins.str
|
|
221
|
+
"""Required. The globally unique identifier for the solution."""
|
|
222
|
+
def __init__(
|
|
223
|
+
self,
|
|
224
|
+
*,
|
|
225
|
+
id: builtins.str = ...,
|
|
226
|
+
) -> None: ...
|
|
227
|
+
def ClearField(self, field_name: typing_extensions.Literal["id", b"id"]) -> None: ...
|
|
228
|
+
|
|
229
|
+
global___GetParameterSensitivityDataRequest = GetParameterSensitivityDataRequest
|
|
230
|
+
|
|
231
|
+
class GetParameterSensitivityDataResponse(google.protobuf.message.Message):
|
|
232
|
+
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
|
233
|
+
|
|
234
|
+
FILE_FIELD_NUMBER: builtins.int
|
|
235
|
+
@property
|
|
236
|
+
def file(self) -> luminarycloud._proto.api.v0.luminarycloud.common.common_pb2.File:
|
|
237
|
+
"""The parameter sensitivity data. Either a signed URL or a file ID."""
|
|
238
|
+
def __init__(
|
|
239
|
+
self,
|
|
240
|
+
*,
|
|
241
|
+
file: luminarycloud._proto.api.v0.luminarycloud.common.common_pb2.File | None = ...,
|
|
242
|
+
) -> None: ...
|
|
243
|
+
def HasField(self, field_name: typing_extensions.Literal["file", b"file"]) -> builtins.bool: ...
|
|
244
|
+
def ClearField(self, field_name: typing_extensions.Literal["file", b"file"]) -> None: ...
|
|
245
|
+
|
|
246
|
+
global___GetParameterSensitivityDataResponse = GetParameterSensitivityDataResponse
|