ansys-api-discovery 0.6.0__py3-none-any.whl → 0.6.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.
Potentially problematic release.
This version of ansys-api-discovery might be problematic. Click here for more details.
- ansys/api/discovery/VERSION +1 -1
- ansys/api/discovery/v0/conditions.proto +3 -3
- ansys/api/discovery/v0/conditions_pb2.py +2 -2
- ansys/api/discovery/v0/conditions_pb2_grpc.py +9 -9
- ansys/api/discovery/v0/conditions_pb2_grpc.pyi +6 -6
- ansys/api/discovery/v0/conditionsfluid.proto +25 -25
- ansys/api/discovery/v0/conditionsfluid_pb2.py +60 -60
- ansys/api/discovery/v0/conditionsfluid_pb2.pyi +24 -24
- ansys/api/discovery/v0/conditionsfluid_pb2_grpc.py +39 -39
- ansys/api/discovery/v0/conditionsfluid_pb2_grpc.pyi +26 -26
- ansys/api/discovery/v0/conditionsstructural.proto +89 -89
- ansys/api/discovery/v0/conditionsstructural_pb2.py +86 -86
- ansys/api/discovery/v0/conditionsstructural_pb2.pyi +36 -36
- ansys/api/discovery/v0/conditionsstructural_pb2_grpc.py +204 -204
- ansys/api/discovery/v0/conditionsstructural_pb2_grpc.pyi +136 -136
- ansys/api/discovery/v0/conditionsthermal.proto +21 -21
- ansys/api/discovery/v0/conditionsthermal_pb2.py +36 -36
- ansys/api/discovery/v0/conditionsthermal_pb2.pyi +20 -20
- ansys/api/discovery/v0/conditionsthermal_pb2_grpc.py +33 -33
- ansys/api/discovery/v0/conditionsthermal_pb2_grpc.pyi +22 -22
- ansys/api/discovery/v0/discoverymodels.proto +3 -3
- ansys/api/discovery/v0/discoverymodels_pb2.py +27 -27
- ansys/api/discovery/v0/discoverymodels_pb2.pyi +6 -6
- ansys/api/discovery/v0/monitors.proto +137 -0
- ansys/api/discovery/v0/monitors_pb2.py +42 -0
- ansys/api/discovery/v0/monitors_pb2.pyi +307 -0
- ansys/api/discovery/v0/monitors_pb2_grpc.py +67 -0
- ansys/api/discovery/v0/monitors_pb2_grpc.pyi +27 -0
- ansys/api/discovery/v0/solution.proto +5 -4
- ansys/api/discovery/v0/solution_pb2.py +9 -9
- ansys/api/discovery/v0/solution_pb2.pyi +17 -12
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/METADATA +2 -2
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/RECORD +37 -32
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/WHEEL +1 -1
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/LICENSE +0 -0
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/entry_points.txt +0 -0
- {ansys_api_discovery-0.6.0.dist-info → ansys_api_discovery-0.6.1.dist-info}/top_level.txt +0 -0
|
@@ -38,27 +38,27 @@ class ConditionsThermalStub(object):
|
|
|
38
38
|
self.ChangeHeatLocation = channel.unary_unary(
|
|
39
39
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeHeatLocation',
|
|
40
40
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationExtendedRequest.SerializeToString,
|
|
41
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
41
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
42
42
|
)
|
|
43
43
|
self.ChangeTotalHeat = channel.unary_unary(
|
|
44
44
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeTotalHeat',
|
|
45
45
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
46
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
46
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
47
47
|
)
|
|
48
48
|
self.ChangeHeatPerUnitVolume = channel.unary_unary(
|
|
49
49
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeHeatPerUnitVolume',
|
|
50
50
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
51
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
51
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
52
52
|
)
|
|
53
53
|
self.ChangeHeatPerUnitArea = channel.unary_unary(
|
|
54
54
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeHeatPerUnitArea',
|
|
55
55
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
56
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
56
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
57
57
|
)
|
|
58
58
|
self.ChangeHeatSpecification = channel.unary_unary(
|
|
59
59
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeHeatSpecification',
|
|
60
60
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsthermal__pb2.ChangeHeatSpecificationRequest.SerializeToString,
|
|
61
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
61
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
62
62
|
)
|
|
63
63
|
self.CreateTemperatureVolumetric = channel.unary_unary(
|
|
64
64
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/CreateTemperatureVolumetric',
|
|
@@ -73,12 +73,12 @@ class ConditionsThermalStub(object):
|
|
|
73
73
|
self.ChangeTemperatureLocation = channel.unary_unary(
|
|
74
74
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeTemperatureLocation',
|
|
75
75
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationExtendedRequest.SerializeToString,
|
|
76
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
76
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
77
77
|
)
|
|
78
78
|
self.ChangeTemperatureMagnitude = channel.unary_unary(
|
|
79
79
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeTemperatureMagnitude',
|
|
80
80
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
81
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
81
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
82
82
|
)
|
|
83
83
|
self.CreateInsulated = channel.unary_unary(
|
|
84
84
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/CreateInsulated',
|
|
@@ -88,7 +88,7 @@ class ConditionsThermalStub(object):
|
|
|
88
88
|
self.ChangeInsulatedLocation = channel.unary_unary(
|
|
89
89
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeInsulatedLocation',
|
|
90
90
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationRequest.SerializeToString,
|
|
91
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
91
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
92
92
|
)
|
|
93
93
|
self.CreateConvection = channel.unary_unary(
|
|
94
94
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/CreateConvection',
|
|
@@ -98,17 +98,17 @@ class ConditionsThermalStub(object):
|
|
|
98
98
|
self.ChangeConvectionLocation = channel.unary_unary(
|
|
99
99
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeConvectionLocation',
|
|
100
100
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationRequest.SerializeToString,
|
|
101
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
101
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
102
102
|
)
|
|
103
103
|
self.ChangeConvectionCoefficientMagnitude = channel.unary_unary(
|
|
104
104
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeConvectionCoefficientMagnitude',
|
|
105
105
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
106
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
106
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
107
107
|
)
|
|
108
108
|
self.ChangeConvectionTemperatureMagnitude = channel.unary_unary(
|
|
109
109
|
'/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeConvectionTemperatureMagnitude',
|
|
110
110
|
request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
111
|
-
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
111
|
+
response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
112
112
|
)
|
|
113
113
|
|
|
114
114
|
|
|
@@ -259,27 +259,27 @@ def add_ConditionsThermalServicer_to_server(servicer, server):
|
|
|
259
259
|
'ChangeHeatLocation': grpc.unary_unary_rpc_method_handler(
|
|
260
260
|
servicer.ChangeHeatLocation,
|
|
261
261
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationExtendedRequest.FromString,
|
|
262
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
262
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
263
263
|
),
|
|
264
264
|
'ChangeTotalHeat': grpc.unary_unary_rpc_method_handler(
|
|
265
265
|
servicer.ChangeTotalHeat,
|
|
266
266
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
267
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
267
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
268
268
|
),
|
|
269
269
|
'ChangeHeatPerUnitVolume': grpc.unary_unary_rpc_method_handler(
|
|
270
270
|
servicer.ChangeHeatPerUnitVolume,
|
|
271
271
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
272
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
272
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
273
273
|
),
|
|
274
274
|
'ChangeHeatPerUnitArea': grpc.unary_unary_rpc_method_handler(
|
|
275
275
|
servicer.ChangeHeatPerUnitArea,
|
|
276
276
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
277
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
277
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
278
278
|
),
|
|
279
279
|
'ChangeHeatSpecification': grpc.unary_unary_rpc_method_handler(
|
|
280
280
|
servicer.ChangeHeatSpecification,
|
|
281
281
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_conditionsthermal__pb2.ChangeHeatSpecificationRequest.FromString,
|
|
282
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
282
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
283
283
|
),
|
|
284
284
|
'CreateTemperatureVolumetric': grpc.unary_unary_rpc_method_handler(
|
|
285
285
|
servicer.CreateTemperatureVolumetric,
|
|
@@ -294,12 +294,12 @@ def add_ConditionsThermalServicer_to_server(servicer, server):
|
|
|
294
294
|
'ChangeTemperatureLocation': grpc.unary_unary_rpc_method_handler(
|
|
295
295
|
servicer.ChangeTemperatureLocation,
|
|
296
296
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationExtendedRequest.FromString,
|
|
297
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
297
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
298
298
|
),
|
|
299
299
|
'ChangeTemperatureMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
300
300
|
servicer.ChangeTemperatureMagnitude,
|
|
301
301
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
302
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
302
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
303
303
|
),
|
|
304
304
|
'CreateInsulated': grpc.unary_unary_rpc_method_handler(
|
|
305
305
|
servicer.CreateInsulated,
|
|
@@ -309,7 +309,7 @@ def add_ConditionsThermalServicer_to_server(servicer, server):
|
|
|
309
309
|
'ChangeInsulatedLocation': grpc.unary_unary_rpc_method_handler(
|
|
310
310
|
servicer.ChangeInsulatedLocation,
|
|
311
311
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationRequest.FromString,
|
|
312
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
312
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
313
313
|
),
|
|
314
314
|
'CreateConvection': grpc.unary_unary_rpc_method_handler(
|
|
315
315
|
servicer.CreateConvection,
|
|
@@ -319,17 +319,17 @@ def add_ConditionsThermalServicer_to_server(servicer, server):
|
|
|
319
319
|
'ChangeConvectionLocation': grpc.unary_unary_rpc_method_handler(
|
|
320
320
|
servicer.ChangeConvectionLocation,
|
|
321
321
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationRequest.FromString,
|
|
322
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
322
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
323
323
|
),
|
|
324
324
|
'ChangeConvectionCoefficientMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
325
325
|
servicer.ChangeConvectionCoefficientMagnitude,
|
|
326
326
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
327
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
327
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
328
328
|
),
|
|
329
329
|
'ChangeConvectionTemperatureMagnitude': grpc.unary_unary_rpc_method_handler(
|
|
330
330
|
servicer.ChangeConvectionTemperatureMagnitude,
|
|
331
331
|
request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.FromString,
|
|
332
|
-
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
332
|
+
response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.SerializeToString,
|
|
333
333
|
),
|
|
334
334
|
}
|
|
335
335
|
generic_handler = grpc.method_handlers_generic_handler(
|
|
@@ -422,7 +422,7 @@ class ConditionsThermal(object):
|
|
|
422
422
|
metadata=None):
|
|
423
423
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeHeatLocation',
|
|
424
424
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationExtendedRequest.SerializeToString,
|
|
425
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
425
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
426
426
|
options, channel_credentials,
|
|
427
427
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
428
428
|
|
|
@@ -439,7 +439,7 @@ class ConditionsThermal(object):
|
|
|
439
439
|
metadata=None):
|
|
440
440
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeTotalHeat',
|
|
441
441
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
442
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
442
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
443
443
|
options, channel_credentials,
|
|
444
444
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
445
445
|
|
|
@@ -456,7 +456,7 @@ class ConditionsThermal(object):
|
|
|
456
456
|
metadata=None):
|
|
457
457
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeHeatPerUnitVolume',
|
|
458
458
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
459
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
459
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
460
460
|
options, channel_credentials,
|
|
461
461
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
462
462
|
|
|
@@ -473,7 +473,7 @@ class ConditionsThermal(object):
|
|
|
473
473
|
metadata=None):
|
|
474
474
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeHeatPerUnitArea',
|
|
475
475
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
476
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
476
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
477
477
|
options, channel_credentials,
|
|
478
478
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
479
479
|
|
|
@@ -490,7 +490,7 @@ class ConditionsThermal(object):
|
|
|
490
490
|
metadata=None):
|
|
491
491
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeHeatSpecification',
|
|
492
492
|
ansys_dot_api_dot_discovery_dot_v0_dot_conditionsthermal__pb2.ChangeHeatSpecificationRequest.SerializeToString,
|
|
493
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
493
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
494
494
|
options, channel_credentials,
|
|
495
495
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
496
496
|
|
|
@@ -541,7 +541,7 @@ class ConditionsThermal(object):
|
|
|
541
541
|
metadata=None):
|
|
542
542
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeTemperatureLocation',
|
|
543
543
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationExtendedRequest.SerializeToString,
|
|
544
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
544
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
545
545
|
options, channel_credentials,
|
|
546
546
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
547
547
|
|
|
@@ -558,7 +558,7 @@ class ConditionsThermal(object):
|
|
|
558
558
|
metadata=None):
|
|
559
559
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeTemperatureMagnitude',
|
|
560
560
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
561
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
561
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
562
562
|
options, channel_credentials,
|
|
563
563
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
564
564
|
|
|
@@ -592,7 +592,7 @@ class ConditionsThermal(object):
|
|
|
592
592
|
metadata=None):
|
|
593
593
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeInsulatedLocation',
|
|
594
594
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationRequest.SerializeToString,
|
|
595
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
595
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
596
596
|
options, channel_credentials,
|
|
597
597
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
598
598
|
|
|
@@ -626,7 +626,7 @@ class ConditionsThermal(object):
|
|
|
626
626
|
metadata=None):
|
|
627
627
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeConvectionLocation',
|
|
628
628
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeLocationRequest.SerializeToString,
|
|
629
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
629
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
630
630
|
options, channel_credentials,
|
|
631
631
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
632
632
|
|
|
@@ -643,7 +643,7 @@ class ConditionsThermal(object):
|
|
|
643
643
|
metadata=None):
|
|
644
644
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeConvectionCoefficientMagnitude',
|
|
645
645
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
646
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
646
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
647
647
|
options, channel_credentials,
|
|
648
648
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
649
649
|
|
|
@@ -660,6 +660,6 @@ class ConditionsThermal(object):
|
|
|
660
660
|
metadata=None):
|
|
661
661
|
return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.conditions.conditionsthermal.ConditionsThermal/ChangeConvectionTemperatureMagnitude',
|
|
662
662
|
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeQuantityRequest.SerializeToString,
|
|
663
|
-
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.
|
|
663
|
+
ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2.ChangeResponse.FromString,
|
|
664
664
|
options, channel_credentials,
|
|
665
665
|
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
|
|
@@ -28,23 +28,23 @@ class ConditionsThermalStub:
|
|
|
28
28
|
|
|
29
29
|
ChangeHeatLocation: grpc.UnaryUnaryMultiCallable[
|
|
30
30
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationExtendedRequest,
|
|
31
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
31
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
32
32
|
|
|
33
33
|
ChangeTotalHeat: grpc.UnaryUnaryMultiCallable[
|
|
34
34
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
35
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
35
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
36
36
|
|
|
37
37
|
ChangeHeatPerUnitVolume: grpc.UnaryUnaryMultiCallable[
|
|
38
38
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
39
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
39
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
40
40
|
|
|
41
41
|
ChangeHeatPerUnitArea: grpc.UnaryUnaryMultiCallable[
|
|
42
42
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
43
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
43
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
44
44
|
|
|
45
45
|
ChangeHeatSpecification: grpc.UnaryUnaryMultiCallable[
|
|
46
46
|
ansys.api.discovery.v0.conditionsthermal_pb2.ChangeHeatSpecificationRequest,
|
|
47
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
47
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
48
48
|
|
|
49
49
|
CreateTemperatureVolumetric: grpc.UnaryUnaryMultiCallable[
|
|
50
50
|
ansys.api.discovery.v0.conditionsthermal_pb2.TemperatureCreationRequest,
|
|
@@ -57,11 +57,11 @@ class ConditionsThermalStub:
|
|
|
57
57
|
|
|
58
58
|
ChangeTemperatureLocation: grpc.UnaryUnaryMultiCallable[
|
|
59
59
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationExtendedRequest,
|
|
60
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
60
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
61
61
|
|
|
62
62
|
ChangeTemperatureMagnitude: grpc.UnaryUnaryMultiCallable[
|
|
63
63
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
64
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
64
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
65
65
|
|
|
66
66
|
CreateInsulated: grpc.UnaryUnaryMultiCallable[
|
|
67
67
|
ansys.api.discovery.v0.conditionsthermal_pb2.InsulatedCreationRequest,
|
|
@@ -70,7 +70,7 @@ class ConditionsThermalStub:
|
|
|
70
70
|
|
|
71
71
|
ChangeInsulatedLocation: grpc.UnaryUnaryMultiCallable[
|
|
72
72
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
|
|
73
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
73
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
74
74
|
|
|
75
75
|
CreateConvection: grpc.UnaryUnaryMultiCallable[
|
|
76
76
|
ansys.api.discovery.v0.conditionsthermal_pb2.ConvectionCreationRequest,
|
|
@@ -79,15 +79,15 @@ class ConditionsThermalStub:
|
|
|
79
79
|
|
|
80
80
|
ChangeConvectionLocation: grpc.UnaryUnaryMultiCallable[
|
|
81
81
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
|
|
82
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
82
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
83
83
|
|
|
84
84
|
ChangeConvectionCoefficientMagnitude: grpc.UnaryUnaryMultiCallable[
|
|
85
85
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
86
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
86
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
87
87
|
|
|
88
88
|
ChangeConvectionTemperatureMagnitude: grpc.UnaryUnaryMultiCallable[
|
|
89
89
|
ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
90
|
-
ansys.api.discovery.v0.discoverymodels_pb2.
|
|
90
|
+
ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse] = ...
|
|
91
91
|
|
|
92
92
|
|
|
93
93
|
class ConditionsThermalServicer(metaclass=abc.ABCMeta):
|
|
@@ -121,31 +121,31 @@ class ConditionsThermalServicer(metaclass=abc.ABCMeta):
|
|
|
121
121
|
def ChangeHeatLocation(self,
|
|
122
122
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationExtendedRequest,
|
|
123
123
|
context: grpc.ServicerContext,
|
|
124
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
124
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
125
125
|
|
|
126
126
|
@abc.abstractmethod
|
|
127
127
|
def ChangeTotalHeat(self,
|
|
128
128
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
129
129
|
context: grpc.ServicerContext,
|
|
130
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
130
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
131
131
|
|
|
132
132
|
@abc.abstractmethod
|
|
133
133
|
def ChangeHeatPerUnitVolume(self,
|
|
134
134
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
135
135
|
context: grpc.ServicerContext,
|
|
136
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
136
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
137
137
|
|
|
138
138
|
@abc.abstractmethod
|
|
139
139
|
def ChangeHeatPerUnitArea(self,
|
|
140
140
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
141
141
|
context: grpc.ServicerContext,
|
|
142
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
142
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
143
143
|
|
|
144
144
|
@abc.abstractmethod
|
|
145
145
|
def ChangeHeatSpecification(self,
|
|
146
146
|
request: ansys.api.discovery.v0.conditionsthermal_pb2.ChangeHeatSpecificationRequest,
|
|
147
147
|
context: grpc.ServicerContext,
|
|
148
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
148
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
149
149
|
|
|
150
150
|
@abc.abstractmethod
|
|
151
151
|
def CreateTemperatureVolumetric(self,
|
|
@@ -165,13 +165,13 @@ class ConditionsThermalServicer(metaclass=abc.ABCMeta):
|
|
|
165
165
|
def ChangeTemperatureLocation(self,
|
|
166
166
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationExtendedRequest,
|
|
167
167
|
context: grpc.ServicerContext,
|
|
168
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
168
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
169
169
|
|
|
170
170
|
@abc.abstractmethod
|
|
171
171
|
def ChangeTemperatureMagnitude(self,
|
|
172
172
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
173
173
|
context: grpc.ServicerContext,
|
|
174
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
174
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
175
175
|
|
|
176
176
|
@abc.abstractmethod
|
|
177
177
|
def CreateInsulated(self,
|
|
@@ -185,7 +185,7 @@ class ConditionsThermalServicer(metaclass=abc.ABCMeta):
|
|
|
185
185
|
def ChangeInsulatedLocation(self,
|
|
186
186
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
|
|
187
187
|
context: grpc.ServicerContext,
|
|
188
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
188
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
189
189
|
|
|
190
190
|
@abc.abstractmethod
|
|
191
191
|
def CreateConvection(self,
|
|
@@ -199,19 +199,19 @@ class ConditionsThermalServicer(metaclass=abc.ABCMeta):
|
|
|
199
199
|
def ChangeConvectionLocation(self,
|
|
200
200
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeLocationRequest,
|
|
201
201
|
context: grpc.ServicerContext,
|
|
202
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
202
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
203
203
|
|
|
204
204
|
@abc.abstractmethod
|
|
205
205
|
def ChangeConvectionCoefficientMagnitude(self,
|
|
206
206
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
207
207
|
context: grpc.ServicerContext,
|
|
208
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
208
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
209
209
|
|
|
210
210
|
@abc.abstractmethod
|
|
211
211
|
def ChangeConvectionTemperatureMagnitude(self,
|
|
212
212
|
request: ansys.api.discovery.v0.discoverymodels_pb2.ChangeQuantityRequest,
|
|
213
213
|
context: grpc.ServicerContext,
|
|
214
|
-
) -> ansys.api.discovery.v0.discoverymodels_pb2.
|
|
214
|
+
) -> ansys.api.discovery.v0.discoverymodels_pb2.ChangeResponse: ...
|
|
215
215
|
|
|
216
216
|
|
|
217
217
|
def add_ConditionsThermalServicer_to_server(servicer: ConditionsThermalServicer, server: grpc.Server) -> None: ...
|
|
@@ -126,7 +126,7 @@ message ChangeCommandRequest{
|
|
|
126
126
|
string object_id = 1;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
-
message
|
|
129
|
+
message ScopedCreationData{
|
|
130
130
|
optional string object_id = 1;
|
|
131
131
|
string simulation_id = 2;
|
|
132
132
|
repeated string locations = 3;
|
|
@@ -134,12 +134,12 @@ message ScopedConditionCreationData{
|
|
|
134
134
|
|
|
135
135
|
// General Responses
|
|
136
136
|
|
|
137
|
-
message
|
|
137
|
+
message ChangeResponse{
|
|
138
138
|
bool success = 1;
|
|
139
139
|
string message = 2;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
-
message
|
|
142
|
+
message CreationResponse{
|
|
143
143
|
bool success = 1;
|
|
144
144
|
string message = 2;
|
|
145
145
|
}
|
|
@@ -15,7 +15,7 @@ from ansys.api.dbu.v0 import dbumodels_pb2 as ansys_dot_api_dot_dbu_dot_v0_dot_d
|
|
|
15
15
|
from ansys.api.geometry.v0 import models_pb2 as ansys_dot_api_dot_geometry_dot_v0_dot_models__pb2
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,ansys/api/discovery/v0/discoverymodels.proto\x12\x16\x61nsys.api.discovery.v0\x1a ansys/api/dbu/v0/dbumodels.proto\x1a\"ansys/api/geometry/v0/models.proto\"\xa8\x01\n\tVariation\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07starred\x18\x03 \x01(\x08\x12\x36\n\x06inputs\x18\x04 \x03(\x0b\x32&.ansys.api.discovery.v0.InputParameter\x12\x38\n\x07outputs\x18\x05 \x03(\x0b\x32\'.ansys.api.discovery.v0.OutputParameter\"|\n\x0bInputColumn\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\r\n\x05range\x18\x03 \x01(\t\x12\x44\n\x14parameter_variations\x18\x04 \x03(\x0b\x32&.ansys.api.discovery.v0.InputParameter\"~\n\x0cOutputColumn\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\r\n\x05range\x18\x03 \x01(\t\x12\x45\n\x14parameter_variations\x18\x04 \x03(\x0b\x32\'.ansys.api.discovery.v0.OutputParameter\"\x83\x01\n\x15HistoryTrackParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x37\n\x0e\x64imension_type\x18\x03 \x01(\x0e\x32\x1f.ansys.api.dbu.v0.DimensionType\x12\x17\n\x0f\x64imension_value\x18\x04 \x01(\x01\"\x95\x02\n\x0eInputParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12;\n\rquantity_type\x18\x04 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x05 \x01(\x01\x12\x0c\n\x04unit\x18\x06 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x07 \x01(\t\x12>\n\ninput_type\x18\x08 \x01(\x0e\x32*.ansys.api.discovery.v0.InputParameterType\x12\x18\n\x10parent_object_id\x18\t \x01(\t\"\xbc\x01\n\x0fOutputParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12;\n\rquantity_type\x18\x04 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x05 \x01(\x01\x12\x0c\n\x04unit\x18\x06 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x07 \x01(\t\"}\n\x0fScriptParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x37\n\x0e\x64imension_type\x18\x03 \x01(\x0e\x32\x1f.ansys.api.dbu.v0.DimensionType\x12\x17\n\x0f\x64imension_value\x18\x04 \x01(\x01\"\'\n\nSimulation\x12\n\n\x02id\x18\x01 \x01(\t\x12\r\n\x05label\x18\x02 \x01(\t\"=\n\x15\x43hangeLocationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x11\n\tlocations\x18\x02 \x03(\t\"\xbe\x01\n\x1d\x43hangeLocationExtendedRequest\x12N\n\x17\x63hange_location_request\x18\x01 \x01(\x0b\x32-.ansys.api.discovery.v0.ChangeLocationRequest\x12M\n\x16location_specification\x18\x02 \x01(\x0e\x32-.ansys.api.discovery.v0.LocationSpecification\"^\n\x15\x43hangeQuantityRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x32\n\x08quantity\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"@\n\x14\x43hangeBooleanRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x15\n\rboolean_value\x18\x02 \x01(\x08\"`\n\x16\x43hangeDirectionRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x33\n\tdirection\x18\x02 \x01(\x0b\x32 .ansys.api.geometry.v0.Direction\")\n\x14\x43hangeCommandRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\"
|
|
18
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,ansys/api/discovery/v0/discoverymodels.proto\x12\x16\x61nsys.api.discovery.v0\x1a ansys/api/dbu/v0/dbumodels.proto\x1a\"ansys/api/geometry/v0/models.proto\"\xa8\x01\n\tVariation\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07starred\x18\x03 \x01(\x08\x12\x36\n\x06inputs\x18\x04 \x03(\x0b\x32&.ansys.api.discovery.v0.InputParameter\x12\x38\n\x07outputs\x18\x05 \x03(\x0b\x32\'.ansys.api.discovery.v0.OutputParameter\"|\n\x0bInputColumn\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\r\n\x05range\x18\x03 \x01(\t\x12\x44\n\x14parameter_variations\x18\x04 \x03(\x0b\x32&.ansys.api.discovery.v0.InputParameter\"~\n\x0cOutputColumn\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\r\n\x05range\x18\x03 \x01(\t\x12\x45\n\x14parameter_variations\x18\x04 \x03(\x0b\x32\'.ansys.api.discovery.v0.OutputParameter\"\x83\x01\n\x15HistoryTrackParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x37\n\x0e\x64imension_type\x18\x03 \x01(\x0e\x32\x1f.ansys.api.dbu.v0.DimensionType\x12\x17\n\x0f\x64imension_value\x18\x04 \x01(\x01\"\x95\x02\n\x0eInputParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12;\n\rquantity_type\x18\x04 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x05 \x01(\x01\x12\x0c\n\x04unit\x18\x06 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x07 \x01(\t\x12>\n\ninput_type\x18\x08 \x01(\x0e\x32*.ansys.api.discovery.v0.InputParameterType\x12\x18\n\x10parent_object_id\x18\t \x01(\t\"\xbc\x01\n\x0fOutputParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tparent_id\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12;\n\rquantity_type\x18\x04 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x05 \x01(\x01\x12\x0c\n\x04unit\x18\x06 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x07 \x01(\t\"}\n\x0fScriptParameter\x12\n\n\x02id\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x37\n\x0e\x64imension_type\x18\x03 \x01(\x0e\x32\x1f.ansys.api.dbu.v0.DimensionType\x12\x17\n\x0f\x64imension_value\x18\x04 \x01(\x01\"\'\n\nSimulation\x12\n\n\x02id\x18\x01 \x01(\t\x12\r\n\x05label\x18\x02 \x01(\t\"=\n\x15\x43hangeLocationRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x11\n\tlocations\x18\x02 \x03(\t\"\xbe\x01\n\x1d\x43hangeLocationExtendedRequest\x12N\n\x17\x63hange_location_request\x18\x01 \x01(\x0b\x32-.ansys.api.discovery.v0.ChangeLocationRequest\x12M\n\x16location_specification\x18\x02 \x01(\x0e\x32-.ansys.api.discovery.v0.LocationSpecification\"^\n\x15\x43hangeQuantityRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x32\n\x08quantity\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"@\n\x14\x43hangeBooleanRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x15\n\rboolean_value\x18\x02 \x01(\x08\"`\n\x16\x43hangeDirectionRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\x12\x33\n\tdirection\x18\x02 \x01(\x0b\x32 .ansys.api.geometry.v0.Direction\")\n\x14\x43hangeCommandRequest\x12\x11\n\tobject_id\x18\x01 \x01(\t\"d\n\x12ScopedCreationData\x12\x16\n\tobject_id\x18\x01 \x01(\tH\x00\x88\x01\x01\x12\x15\n\rsimulation_id\x18\x02 \x01(\t\x12\x11\n\tlocations\x18\x03 \x03(\tB\x0c\n\n_object_id\"2\n\x0e\x43hangeResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\t\"4\n\x10\x43reationResponse\x12\x0f\n\x07success\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\t\"\"\n\x0fMessageResponse\x12\x0f\n\x07message\x18\x01 \x01(\t\"\x9b\x01\n\x08Quantity\x12;\n\rquantity_type\x18\x01 \x01(\x0e\x32$.ansys.api.discovery.v0.QuantityType\x12\x16\n\x0equantity_value\x18\x02 \x01(\x01\x12\x0c\n\x04unit\x18\x03 \x01(\x05\x12\x19\n\x11unit_abbreviation\x18\x04 \x01(\t\x12\x11\n\tas_string\x18\x05 \x01(\t\"\x97\x01\n\x0eQuantityVector\x12+\n\x01x\x18\x01 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12+\n\x01y\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\x12+\n\x01z\x18\x03 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\\\n\x0eOptionalVector\x12\x12\n\nis_defined\x18\x01 \x01(\x08\x12\x36\n\x06vector\x18\x02 \x01(\x0b\x32&.ansys.api.discovery.v0.QuantityVector\"Z\n\x10OptionalQuantity\x12\x12\n\nis_defined\x18\x01 \x01(\x08\x12\x32\n\x08quantity\x18\x02 \x01(\x0b\x32 .ansys.api.discovery.v0.Quantity\"\xe0\x02\n\x1aTensorOfOptionalQuantities\x12\x34\n\x02\x64x\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02\x64y\x18\x02 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02\x64z\x18\x03 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02rx\x18\x04 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02ry\x18\x05 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x34\n\x02rz\x18\x06 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\"\xbb\x01\n\x1aVectorOfOptionalQuantities\x12\x33\n\x01x\x18\x01 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x33\n\x01y\x18\x02 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity\x12\x33\n\x01z\x18\x03 \x01(\x0b\x32(.ansys.api.discovery.v0.OptionalQuantity*X\n\x12InputParameterType\x12\x0b\n\x07PHYSICS\x10\x00\x12\x15\n\x11\x44RIVING_DIMENSION\x10\x01\x12\x11\n\rHISTORY_TRACK\x10\x02\x12\x0b\n\x07UNKNOWN\x10\x03*=\n\x15LocationSpecification\x12\x11\n\rFACELOCATIONS\x10\x00\x12\x11\n\rBODYLOCATIONS\x10\x01*\xb5\x16\n\x0cQuantityType\x12\x1e\n\x1aQUANTITY_TYPE_ACCELERATION\x10\x00\x12\x17\n\x13QUANTITY_TYPE_ANGLE\x10\x01\x12\x16\n\x12QUANTITY_TYPE_AREA\x10\x02\x12\x1e\n\x1aQUANTITY_TYPE_AREA_DENSITY\x10\x03\x12(\n$QUANTITY_TYPE_AREA_MOMENT_OF_INERTIA\x10\x04\x12\x1d\n\x19QUANTITY_TYPE_CAPACITANCE\x10\x05\x12\x32\n.QUANTITY_TYPE_COEFFICIENT_OF_THERMAL_EXPANSION\x10\x06\x12\x19\n\x15QUANTITY_TYPE_DENSITY\x10\x07\x12#\n\x1fQUANTITY_TYPE_DYNAMIC_VISCOSITY\x10\x08\x12%\n!QUANTITY_TYPE_ELECTRIC_ADMITTANCE\x10\t\x12!\n\x1dQUANTITY_TYPE_ELECTRIC_CHARGE\x10\n\x12)\n%QUANTITY_TYPE_ELECTRIC_CHARGE_DENSITY\x10\x0b\x12&\n\"QUANTITY_TYPE_ELECTRIC_CONDUCTANCE\x10\x0c\x12\'\n#QUANTITY_TYPE_ELECTRIC_CONDUCTIVITY\x10\r\x12\"\n\x1eQUANTITY_TYPE_ELECTRIC_CURRENT\x10\x0e\x12*\n&QUANTITY_TYPE_ELECTRIC_CURRENT_DENSITY\x10\x0f\x12+\n\'QUANTITY_TYPE_ELECTRIC_CURRENT_GRADIENT\x10\x10\x12 \n\x1cQUANTITY_TYPE_ELECTRIC_FIELD\x10\x11\x12%\n!QUANTITY_TYPE_ELECTRIC_INDUCTANCE\x10\x12\x12$\n QUANTITY_TYPE_ELECTRIC_POTENTIAL\x10\x13\x12\'\n#QUANTITY_TYPE_ELECTRIC_POTENTIAL_AC\x10\x14\x12\x30\n,QUANTITY_TYPE_ELECTRIC_POTENTIAL_CHANGE_RATE\x10\x15\x12\'\n#QUANTITY_TYPE_ELECTRIC_POTENTIAL_DC\x10\x16\x12%\n!QUANTITY_TYPE_ELECTRIC_RESISTANCE\x10\x17\x12&\n\"QUANTITY_TYPE_ELECTRIC_RESISTIVITY\x10\x18\x12\x31\n-QUANTITY_TYPE_ELECTRIC_SURFACE_CHARGE_DENSITY\x10\x19\x12\x18\n\x14QUANTITY_TYPE_ENERGY\x10\x1a\x12\x19\n\x15QUANTITY_TYPE_ENTROPY\x10\x1b\x12\x17\n\x13QUANTITY_TYPE_FORCE\x10\x1c\x12#\n\x1fQUANTITY_TYPE_FORCE_CHANGE_RATE\x10\x1d\x12\"\n\x1eQUANTITY_TYPE_FORCE_PER_LENGTH\x10\x1e\x12\x1b\n\x17QUANTITY_TYPE_FREQUENCY\x10\x1f\x12\x1b\n\x17QUANTITY_TYPE_HEAT_FLUX\x10 \x12+\n\'QUANTITY_TYPE_HEAT_TRANSFER_COEFFICIENT\x10!\x12\x1e\n\x1aQUANTITY_TYPE_INVERSE_AREA\x10\"\x12 \n\x1cQUANTITY_TYPE_INVERSE_LENGTH\x10#\x12%\n!QUANTITY_TYPE_KINEMATIC_VISCOSITY\x10$\x12\x18\n\x14QUANTITY_TYPE_LENGTH\x10%\x12 \n\x1cQUANTITY_TYPE_MAGNETIC_FIELD\x10&\x12\x16\n\x12QUANTITY_TYPE_MASS\x10\'\x12$\n QUANTITY_TYPE_MASS_CONCENTRATION\x10(\x12\x1b\n\x17QUANTITY_TYPE_MASS_FLOW\x10)\x12\x1b\n\x17QUANTITY_TYPE_MASS_FLUX\x10*\x12\x1f\n\x1bQUANTITY_TYPE_MASS_FRACTION\x10+\x12(\n$QUANTITY_TYPE_MASS_MOMENT_OF_INERTIA\x10,\x12\x1a\n\x16QUANTITY_TYPE_MOLARITY\x10-\x12\x1c\n\x18QUANTITY_TYPE_MOLAR_MASS\x10.\x12\x1e\n\x1aQUANTITY_TYPE_PERMEABILITY\x10/\x12\x1e\n\x1aQUANTITY_TYPE_PERMITTIVITY\x10\x30\x12\x17\n\x13QUANTITY_TYPE_POWER\x10\x31\x12\x1f\n\x1bQUANTITY_TYPE_POWER_DENSITY\x10\x32\x12\x1d\n\x19QUANTITY_TYPE_POWER_RATIO\x10\x33\x12\x1a\n\x16QUANTITY_TYPE_PRESSURE\x10\x34\x12\x17\n\x13QUANTITY_TYPE_RATIO\x10\x35\x12#\n\x1fQUANTITY_TYPE_RATIO_CHANGE_RATE\x10\x36\x12!\n\x1dQUANTITY_TYPE_REACTIVE_ENERGY\x10\x37\x12 \n\x1cQUANTITY_TYPE_REACTIVE_POWER\x10\x38\x12)\n%QUANTITY_TYPE_ROTATIONAL_ACCELERATION\x10\x39\x12\"\n\x1eQUANTITY_TYPE_ROTATIONAL_SPEED\x10:\x12&\n\"QUANTITY_TYPE_ROTATIONAL_STIFFNESS\x10;\x12\x31\n-QUANTITY_TYPE_ROTATIONAL_STIFFNESS_PER_LENGTH\x10<\x12\x1d\n\x19QUANTITY_TYPE_SOLID_ANGLE\x10=\x12!\n\x1dQUANTITY_TYPE_SPECIFIC_ENERGY\x10>\x12\"\n\x1eQUANTITY_TYPE_SPECIFIC_ENTROPY\x10?\x12!\n\x1dQUANTITY_TYPE_SPECIFIC_VOLUME\x10@\x12!\n\x1dQUANTITY_TYPE_SPECIFIC_WEIGHT\x10\x41\x12\x17\n\x13QUANTITY_TYPE_SPEED\x10\x42\x12\x1d\n\x19QUANTITY_TYPE_TEMPERATURE\x10\x43\x12)\n%QUANTITY_TYPE_TEMPERATURE_CHANGE_RATE\x10\x44\x12#\n\x1fQUANTITY_TYPE_TEMPERATURE_DELTA\x10\x45\x12&\n\"QUANTITY_TYPE_THERMAL_CONDUCTIVITY\x10\x46\x12$\n QUANTITY_TYPE_THERMAL_RESISTANCE\x10G\x12\x16\n\x12QUANTITY_TYPE_TIME\x10H\x12\x18\n\x14QUANTITY_TYPE_TORQUE\x10I\x12#\n\x1fQUANTITY_TYPE_TORQUE_PER_LENGTH\x10J\x12\x18\n\x14QUANTITY_TYPE_VOLUME\x10K\x12&\n\"QUANTITY_TYPE_VOLUME_CONCENTRATION\x10L\x12\x1d\n\x19QUANTITY_TYPE_VOLUME_FLOW\x10M\x12#\n\x1fQUANTITY_TYPE_VOLUME_PER_LENGTH\x10N\x12+\n\'QUANTITY_TYPE_WARPING_MOMENT_OF_INERTIA\x10O\x12\x16\n\x12QUANTITY_TYPE_NONE\x10P\x12\x19\n\x15QUANTITY_TYPE_UNKNOWN\x10QB\x19\xaa\x02\x16\x41nsys.Api.Discovery.V0b\x06proto3')
|
|
19
19
|
|
|
20
20
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
21
21
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.discoverymodels_pb2', globals())
|
|
@@ -23,12 +23,12 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
23
23
|
|
|
24
24
|
DESCRIPTOR._options = None
|
|
25
25
|
DESCRIPTOR._serialized_options = b'\252\002\026Ansys.Api.Discovery.V0'
|
|
26
|
-
_INPUTPARAMETERTYPE._serialized_start=
|
|
27
|
-
_INPUTPARAMETERTYPE._serialized_end=
|
|
28
|
-
_LOCATIONSPECIFICATION._serialized_start=
|
|
29
|
-
_LOCATIONSPECIFICATION._serialized_end=
|
|
30
|
-
_QUANTITYTYPE._serialized_start=
|
|
31
|
-
_QUANTITYTYPE._serialized_end=
|
|
26
|
+
_INPUTPARAMETERTYPE._serialized_start=3186
|
|
27
|
+
_INPUTPARAMETERTYPE._serialized_end=3274
|
|
28
|
+
_LOCATIONSPECIFICATION._serialized_start=3276
|
|
29
|
+
_LOCATIONSPECIFICATION._serialized_end=3337
|
|
30
|
+
_QUANTITYTYPE._serialized_start=3340
|
|
31
|
+
_QUANTITYTYPE._serialized_end=6209
|
|
32
32
|
_VARIATION._serialized_start=143
|
|
33
33
|
_VARIATION._serialized_end=311
|
|
34
34
|
_INPUTCOLUMN._serialized_start=313
|
|
@@ -57,24 +57,24 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
57
57
|
_CHANGEDIRECTIONREQUEST._serialized_end=1854
|
|
58
58
|
_CHANGECOMMANDREQUEST._serialized_start=1856
|
|
59
59
|
_CHANGECOMMANDREQUEST._serialized_end=1897
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
_MESSAGERESPONSE._serialized_start=
|
|
67
|
-
_MESSAGERESPONSE._serialized_end=
|
|
68
|
-
_QUANTITY._serialized_start=
|
|
69
|
-
_QUANTITY._serialized_end=
|
|
70
|
-
_QUANTITYVECTOR._serialized_start=
|
|
71
|
-
_QUANTITYVECTOR._serialized_end=
|
|
72
|
-
_OPTIONALVECTOR._serialized_start=
|
|
73
|
-
_OPTIONALVECTOR._serialized_end=
|
|
74
|
-
_OPTIONALQUANTITY._serialized_start=
|
|
75
|
-
_OPTIONALQUANTITY._serialized_end=
|
|
76
|
-
_TENSOROFOPTIONALQUANTITIES._serialized_start=
|
|
77
|
-
_TENSOROFOPTIONALQUANTITIES._serialized_end=
|
|
78
|
-
_VECTOROFOPTIONALQUANTITIES._serialized_start=
|
|
79
|
-
_VECTOROFOPTIONALQUANTITIES._serialized_end=
|
|
60
|
+
_SCOPEDCREATIONDATA._serialized_start=1899
|
|
61
|
+
_SCOPEDCREATIONDATA._serialized_end=1999
|
|
62
|
+
_CHANGERESPONSE._serialized_start=2001
|
|
63
|
+
_CHANGERESPONSE._serialized_end=2051
|
|
64
|
+
_CREATIONRESPONSE._serialized_start=2053
|
|
65
|
+
_CREATIONRESPONSE._serialized_end=2105
|
|
66
|
+
_MESSAGERESPONSE._serialized_start=2107
|
|
67
|
+
_MESSAGERESPONSE._serialized_end=2141
|
|
68
|
+
_QUANTITY._serialized_start=2144
|
|
69
|
+
_QUANTITY._serialized_end=2299
|
|
70
|
+
_QUANTITYVECTOR._serialized_start=2302
|
|
71
|
+
_QUANTITYVECTOR._serialized_end=2453
|
|
72
|
+
_OPTIONALVECTOR._serialized_start=2455
|
|
73
|
+
_OPTIONALVECTOR._serialized_end=2547
|
|
74
|
+
_OPTIONALQUANTITY._serialized_start=2549
|
|
75
|
+
_OPTIONALQUANTITY._serialized_end=2639
|
|
76
|
+
_TENSOROFOPTIONALQUANTITIES._serialized_start=2642
|
|
77
|
+
_TENSOROFOPTIONALQUANTITIES._serialized_end=2994
|
|
78
|
+
_VECTOROFOPTIONALQUANTITIES._serialized_start=2997
|
|
79
|
+
_VECTOROFOPTIONALQUANTITIES._serialized_end=3184
|
|
80
80
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -526,7 +526,7 @@ class ChangeCommandRequest(google.protobuf.message.Message):
|
|
|
526
526
|
def ClearField(self, field_name: typing_extensions.Literal["object_id",b"object_id"]) -> None: ...
|
|
527
527
|
global___ChangeCommandRequest = ChangeCommandRequest
|
|
528
528
|
|
|
529
|
-
class
|
|
529
|
+
class ScopedCreationData(google.protobuf.message.Message):
|
|
530
530
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
531
531
|
OBJECT_ID_FIELD_NUMBER: builtins.int
|
|
532
532
|
SIMULATION_ID_FIELD_NUMBER: builtins.int
|
|
@@ -544,9 +544,9 @@ class ScopedConditionCreationData(google.protobuf.message.Message):
|
|
|
544
544
|
def HasField(self, field_name: typing_extensions.Literal["_object_id",b"_object_id","object_id",b"object_id"]) -> builtins.bool: ...
|
|
545
545
|
def ClearField(self, field_name: typing_extensions.Literal["_object_id",b"_object_id","locations",b"locations","object_id",b"object_id","simulation_id",b"simulation_id"]) -> None: ...
|
|
546
546
|
def WhichOneof(self, oneof_group: typing_extensions.Literal["_object_id",b"_object_id"]) -> typing.Optional[typing_extensions.Literal["object_id"]]: ...
|
|
547
|
-
|
|
547
|
+
global___ScopedCreationData = ScopedCreationData
|
|
548
548
|
|
|
549
|
-
class
|
|
549
|
+
class ChangeResponse(google.protobuf.message.Message):
|
|
550
550
|
"""General Responses
|
|
551
551
|
|
|
552
552
|
"""
|
|
@@ -561,9 +561,9 @@ class ConditionChangedResponse(google.protobuf.message.Message):
|
|
|
561
561
|
message : typing.Text = ...,
|
|
562
562
|
) -> None: ...
|
|
563
563
|
def ClearField(self, field_name: typing_extensions.Literal["message",b"message","success",b"success"]) -> None: ...
|
|
564
|
-
|
|
564
|
+
global___ChangeResponse = ChangeResponse
|
|
565
565
|
|
|
566
|
-
class
|
|
566
|
+
class CreationResponse(google.protobuf.message.Message):
|
|
567
567
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|
|
568
568
|
SUCCESS_FIELD_NUMBER: builtins.int
|
|
569
569
|
MESSAGE_FIELD_NUMBER: builtins.int
|
|
@@ -575,7 +575,7 @@ class ConditionCreationResponse(google.protobuf.message.Message):
|
|
|
575
575
|
message : typing.Text = ...,
|
|
576
576
|
) -> None: ...
|
|
577
577
|
def ClearField(self, field_name: typing_extensions.Literal["message",b"message","success",b"success"]) -> None: ...
|
|
578
|
-
|
|
578
|
+
global___CreationResponse = CreationResponse
|
|
579
579
|
|
|
580
580
|
class MessageResponse(google.protobuf.message.Message):
|
|
581
581
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
|