ansys-api-discovery 0.6.14__py3-none-any.whl → 0.6.17__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.

Files changed (46) hide show
  1. ansys/api/discovery/VERSION +1 -1
  2. ansys/api/discovery/v0/assignments/fan.proto +2 -1
  3. ansys/api/discovery/v0/assignments/fan_pb2.py +22 -22
  4. ansys/api/discovery/v0/assignments/fan_pb2.pyi +9 -4
  5. ansys/api/discovery/v0/conditions/porous.proto +12 -16
  6. ansys/api/discovery/v0/conditions/porous_pb2.py +19 -21
  7. ansys/api/discovery/v0/conditions/porous_pb2.pyi +19 -38
  8. ansys/api/discovery/v0/conditions/porous_pb2_grpc.py +63 -30
  9. ansys/api/discovery/v0/conditions/porous_pb2_grpc.pyi +22 -12
  10. ansys/api/discovery/v0/conditions/rotatingfluidzone.proto +1 -1
  11. ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2.py +6 -6
  12. ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2.pyi +5 -5
  13. ansys/api/discovery/v0/connections/contact.proto +20 -56
  14. ansys/api/discovery/v0/connections/contact_pb2.py +12 -20
  15. ansys/api/discovery/v0/connections/contact_pb2.pyi +11 -134
  16. ansys/api/discovery/v0/connections/contact_pb2_grpc.py +145 -145
  17. ansys/api/discovery/v0/connections/contact_pb2_grpc.pyi +46 -46
  18. ansys/api/discovery/v0/connections/contactgroup.proto +31 -50
  19. ansys/api/discovery/v0/connections/contactgroup_pb2.py +8 -10
  20. ansys/api/discovery/v0/connections/contactgroup_pb2.pyi +4 -82
  21. ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.py +190 -190
  22. ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.pyi +60 -60
  23. ansys/api/discovery/v0/connections/fluidinterface.proto +1 -13
  24. ansys/api/discovery/v0/connections/fluidinterface_pb2.py +11 -17
  25. ansys/api/discovery/v0/connections/fluidinterface_pb2.pyi +0 -35
  26. ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.py +10 -10
  27. ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.pyi +4 -4
  28. ansys/api/discovery/v0/discoverymodels.proto +60 -1
  29. ansys/api/discovery/v0/discoverymodels_pb2.py +62 -48
  30. ansys/api/discovery/v0/discoverymodels_pb2.pyi +191 -5
  31. ansys/api/discovery/v0/monitors.proto +20 -0
  32. ansys/api/discovery/v0/monitors_pb2.py +15 -7
  33. ansys/api/discovery/v0/monitors_pb2.pyi +41 -0
  34. ansys/api/discovery/v0/monitors_pb2_grpc.py +66 -0
  35. ansys/api/discovery/v0/monitors_pb2_grpc.pyi +20 -0
  36. ansys/api/discovery/v0/unsupported.proto +12 -0
  37. ansys/api/discovery/v0/unsupported_pb2.py +20 -11
  38. ansys/api/discovery/v0/unsupported_pb2.pyi +41 -0
  39. ansys/api/discovery/v0/unsupported_pb2_grpc.py +33 -0
  40. ansys/api/discovery/v0/unsupported_pb2_grpc.pyi +10 -0
  41. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/METADATA +3 -3
  42. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/RECORD +46 -46
  43. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/LICENSE +0 -0
  44. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/WHEEL +0 -0
  45. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/entry_points.txt +0 -0
  46. {ansys_api_discovery-0.6.14.dist-info → ansys_api_discovery-0.6.17.dist-info}/top_level.txt +0 -0
@@ -13,6 +13,14 @@ class MonitorsStub:
13
13
  ansys.api.discovery.v0.monitors_pb2.MonitorCreationResponse] = ...
14
14
  """Creates a new monitor"""
15
15
 
16
+ GetAllMonitors: grpc.UnaryUnaryMultiCallable[
17
+ ansys.api.discovery.v0.monitors_pb2.GetAllMonitorsRequest,
18
+ ansys.api.discovery.v0.monitors_pb2.GetAllMonitorsResponse] = ...
19
+
20
+ GetMonitorValues: grpc.UnaryUnaryMultiCallable[
21
+ ansys.api.discovery.v0.monitors_pb2.GetMonitorValuesRequest,
22
+ ansys.api.discovery.v0.monitors_pb2.GetMonitorValuesResponse] = ...
23
+
16
24
 
17
25
  class MonitorsServicer(metaclass=abc.ABCMeta):
18
26
  @abc.abstractmethod
@@ -23,5 +31,17 @@ class MonitorsServicer(metaclass=abc.ABCMeta):
23
31
  """Creates a new monitor"""
24
32
  pass
25
33
 
34
+ @abc.abstractmethod
35
+ def GetAllMonitors(self,
36
+ request: ansys.api.discovery.v0.monitors_pb2.GetAllMonitorsRequest,
37
+ context: grpc.ServicerContext,
38
+ ) -> ansys.api.discovery.v0.monitors_pb2.GetAllMonitorsResponse: ...
39
+
40
+ @abc.abstractmethod
41
+ def GetMonitorValues(self,
42
+ request: ansys.api.discovery.v0.monitors_pb2.GetMonitorValuesRequest,
43
+ context: grpc.ServicerContext,
44
+ ) -> ansys.api.discovery.v0.monitors_pb2.GetMonitorValuesResponse: ...
45
+
26
46
 
27
47
  def add_MonitorsServicer_to_server(servicer: MonitorsServicer, server: grpc.Server) -> None: ...
@@ -4,6 +4,7 @@ syntax = "proto3";
4
4
  package ansys.api.discovery.v0.unsupported;
5
5
 
6
6
  import "ansys/api/dbu/v0/dbumodels.proto";
7
+ import "ansys/api/discovery/v0/discoverymodels.proto";
7
8
  import "ansys/api/discovery/v0/results.proto";
8
9
  import "google/protobuf/empty.proto";
9
10
 
@@ -19,7 +20,10 @@ service Unsupported {
19
20
 
20
21
  // Gets max and min value from the legend
21
22
  rpc GetLegendMaximumValue(google.protobuf.Empty) returns(DoubleValueResponse);
23
+
22
24
  rpc GetLegendMinimumValue(google.protobuf.Empty) returns(DoubleValueResponse);
25
+
26
+ rpc CreateFacetedBodies(CreateFacetedBodiesRequest) returns (CreateFacetedBodiesResponse);
23
27
 
24
28
  }
25
29
 
@@ -40,4 +44,12 @@ message ByteArrayResponse {
40
44
  message DoubleValueResponse {
41
45
  double value = 1;
42
46
  bool success = 2;
47
+ }
48
+
49
+ message CreateFacetedBodiesRequest{
50
+ map<string, Tessellation> tessellation_data=1;
51
+ }
52
+
53
+ message CreateFacetedBodiesResponse{
54
+ repeated ansys.api.dbu.v0.EntityIdentifier created_bodies=1;
43
55
  }
@@ -12,11 +12,12 @@ _sym_db = _symbol_database.Default()
12
12
 
13
13
 
14
14
  from ansys.api.dbu.v0 import dbumodels_pb2 as ansys_dot_api_dot_dbu_dot_v0_dot_dbumodels__pb2
15
+ from ansys.api.discovery.v0 import discoverymodels_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_discoverymodels__pb2
15
16
  from ansys.api.discovery.v0 import results_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_results__pb2
16
17
  from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
17
18
 
18
19
 
19
- DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n(ansys/api/discovery/v0/unsupported.proto\x12\"ansys.api.discovery.v0.unsupported\x1a ansys/api/dbu/v0/dbumodels.proto\x1a$ansys/api/discovery/v0/results.proto\x1a\x1bgoogle/protobuf/empty.proto\"a\n\x15VariableExportRequest\x12H\n\x10result_variables\x18\x01 \x03(\x0e\x32..ansys.api.discovery.v0.results.ResultVariable\"z\n\x1bVariableExportRequestToFile\x12H\n\x10result_variables\x18\x01 \x03(\x0e\x32..ansys.api.discovery.v0.results.ResultVariable\x12\x11\n\tfile_path\x18\x02 \x01(\t\"3\n\x11\x42yteArrayResponse\x12\r\n\x05\x62ytes\x18\x01 \x01(\x0c\x12\x0f\n\x07success\x18\x02 \x01(\x08\"5\n\x13\x44oubleValueResponse\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0f\n\x07success\x18\x02 \x01(\x08\x32\xf4\x03\n\x0bUnsupported\x12\x90\x01\n\x1c\x45xportResultsToOpenVDBMemory\x12\x39.ansys.api.discovery.v0.unsupported.VariableExportRequest\x1a\x35.ansys.api.discovery.v0.unsupported.ByteArrayResponse\x12~\n\x1a\x45xportResultsToOpenVDBFile\x12?.ansys.api.discovery.v0.unsupported.VariableExportRequestToFile\x1a\x1f.ansys.api.dbu.v0.RequestResult\x12h\n\x15GetLegendMaximumValue\x12\x16.google.protobuf.Empty\x1a\x37.ansys.api.discovery.v0.unsupported.DoubleValueResponse\x12h\n\x15GetLegendMinimumValue\x12\x16.google.protobuf.Empty\x1a\x37.ansys.api.discovery.v0.unsupported.DoubleValueResponseB%\xaa\x02\"Ansys.Api.Discovery.V0.Unsupportedb\x06proto3')
20
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n(ansys/api/discovery/v0/unsupported.proto\x12\"ansys.api.discovery.v0.unsupported\x1a ansys/api/dbu/v0/dbumodels.proto\x1a,ansys/api/discovery/v0/discoverymodels.proto\x1a$ansys/api/discovery/v0/results.proto\x1a\x1bgoogle/protobuf/empty.proto\"a\n\x15VariableExportRequest\x12H\n\x10result_variables\x18\x01 \x03(\x0e\x32..ansys.api.discovery.v0.results.ResultVariable\"z\n\x1bVariableExportRequestToFile\x12H\n\x10result_variables\x18\x01 \x03(\x0e\x32..ansys.api.discovery.v0.results.ResultVariable\x12\x11\n\tfile_path\x18\x02 \x01(\t\"3\n\x11\x42yteArrayResponse\x12\r\n\x05\x62ytes\x18\x01 \x01(\x0c\x12\x0f\n\x07success\x18\x02 \x01(\x08\"5\n\x13\x44oubleValueResponse\x12\r\n\x05value\x18\x01 \x01(\x01\x12\x0f\n\x07success\x18\x02 \x01(\x08\"\xec\x01\n\x1a\x43reateFacetedBodiesRequest\x12o\n\x11tessellation_data\x18\x01 \x03(\x0b\x32T.ansys.api.discovery.v0.unsupported.CreateFacetedBodiesRequest.TessellationDataEntry\x1a]\n\x15TessellationDataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x33\n\x05value\x18\x02 \x01(\x0b\x32$.ansys.api.discovery.v0.Tessellation:\x02\x38\x01\"Y\n\x1b\x43reateFacetedBodiesResponse\x12:\n\x0e\x63reated_bodies\x18\x01 \x03(\x0b\x32\".ansys.api.dbu.v0.EntityIdentifier2\x8d\x05\n\x0bUnsupported\x12\x90\x01\n\x1c\x45xportResultsToOpenVDBMemory\x12\x39.ansys.api.discovery.v0.unsupported.VariableExportRequest\x1a\x35.ansys.api.discovery.v0.unsupported.ByteArrayResponse\x12~\n\x1a\x45xportResultsToOpenVDBFile\x12?.ansys.api.discovery.v0.unsupported.VariableExportRequestToFile\x1a\x1f.ansys.api.dbu.v0.RequestResult\x12h\n\x15GetLegendMaximumValue\x12\x16.google.protobuf.Empty\x1a\x37.ansys.api.discovery.v0.unsupported.DoubleValueResponse\x12h\n\x15GetLegendMinimumValue\x12\x16.google.protobuf.Empty\x1a\x37.ansys.api.discovery.v0.unsupported.DoubleValueResponse\x12\x96\x01\n\x13\x43reateFacetedBodies\x12>.ansys.api.discovery.v0.unsupported.CreateFacetedBodiesRequest\x1a?.ansys.api.discovery.v0.unsupported.CreateFacetedBodiesResponseB%\xaa\x02\"Ansys.Api.Discovery.V0.Unsupportedb\x06proto3')
20
21
 
21
22
  _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
22
23
  _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'ansys.api.discovery.v0.unsupported_pb2', globals())
@@ -24,14 +25,22 @@ if _descriptor._USE_C_DESCRIPTORS == False:
24
25
 
25
26
  DESCRIPTOR._options = None
26
27
  DESCRIPTOR._serialized_options = b'\252\002\"Ansys.Api.Discovery.V0.Unsupported'
27
- _VARIABLEEXPORTREQUEST._serialized_start=181
28
- _VARIABLEEXPORTREQUEST._serialized_end=278
29
- _VARIABLEEXPORTREQUESTTOFILE._serialized_start=280
30
- _VARIABLEEXPORTREQUESTTOFILE._serialized_end=402
31
- _BYTEARRAYRESPONSE._serialized_start=404
32
- _BYTEARRAYRESPONSE._serialized_end=455
33
- _DOUBLEVALUERESPONSE._serialized_start=457
34
- _DOUBLEVALUERESPONSE._serialized_end=510
35
- _UNSUPPORTED._serialized_start=513
36
- _UNSUPPORTED._serialized_end=1013
28
+ _CREATEFACETEDBODIESREQUEST_TESSELLATIONDATAENTRY._options = None
29
+ _CREATEFACETEDBODIESREQUEST_TESSELLATIONDATAENTRY._serialized_options = b'8\001'
30
+ _VARIABLEEXPORTREQUEST._serialized_start=227
31
+ _VARIABLEEXPORTREQUEST._serialized_end=324
32
+ _VARIABLEEXPORTREQUESTTOFILE._serialized_start=326
33
+ _VARIABLEEXPORTREQUESTTOFILE._serialized_end=448
34
+ _BYTEARRAYRESPONSE._serialized_start=450
35
+ _BYTEARRAYRESPONSE._serialized_end=501
36
+ _DOUBLEVALUERESPONSE._serialized_start=503
37
+ _DOUBLEVALUERESPONSE._serialized_end=556
38
+ _CREATEFACETEDBODIESREQUEST._serialized_start=559
39
+ _CREATEFACETEDBODIESREQUEST._serialized_end=795
40
+ _CREATEFACETEDBODIESREQUEST_TESSELLATIONDATAENTRY._serialized_start=702
41
+ _CREATEFACETEDBODIESREQUEST_TESSELLATIONDATAENTRY._serialized_end=795
42
+ _CREATEFACETEDBODIESRESPONSE._serialized_start=797
43
+ _CREATEFACETEDBODIESRESPONSE._serialized_end=886
44
+ _UNSUPPORTED._serialized_start=889
45
+ _UNSUPPORTED._serialized_end=1542
37
46
  # @@protoc_insertion_point(module_scope)
@@ -2,6 +2,8 @@
2
2
  @generated by mypy-protobuf. Do not edit manually!
3
3
  isort:skip_file
4
4
  """
5
+ import ansys.api.dbu.v0.dbumodels_pb2
6
+ import ansys.api.discovery.v0.discoverymodels_pb2
5
7
  import ansys.api.discovery.v0.results_pb2
6
8
  import builtins
7
9
  import google.protobuf.descriptor
@@ -66,3 +68,42 @@ class DoubleValueResponse(google.protobuf.message.Message):
66
68
  ) -> None: ...
67
69
  def ClearField(self, field_name: typing_extensions.Literal["success",b"success","value",b"value"]) -> None: ...
68
70
  global___DoubleValueResponse = DoubleValueResponse
71
+
72
+ class CreateFacetedBodiesRequest(google.protobuf.message.Message):
73
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
74
+ class TessellationDataEntry(google.protobuf.message.Message):
75
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
76
+ KEY_FIELD_NUMBER: builtins.int
77
+ VALUE_FIELD_NUMBER: builtins.int
78
+ key: typing.Text = ...
79
+ @property
80
+ def value(self) -> ansys.api.discovery.v0.discoverymodels_pb2.Tessellation: ...
81
+ def __init__(self,
82
+ *,
83
+ key : typing.Text = ...,
84
+ value : typing.Optional[ansys.api.discovery.v0.discoverymodels_pb2.Tessellation] = ...,
85
+ ) -> None: ...
86
+ def HasField(self, field_name: typing_extensions.Literal["value",b"value"]) -> builtins.bool: ...
87
+ def ClearField(self, field_name: typing_extensions.Literal["key",b"key","value",b"value"]) -> None: ...
88
+
89
+ TESSELLATION_DATA_FIELD_NUMBER: builtins.int
90
+ @property
91
+ def tessellation_data(self) -> google.protobuf.internal.containers.MessageMap[typing.Text, ansys.api.discovery.v0.discoverymodels_pb2.Tessellation]: ...
92
+ def __init__(self,
93
+ *,
94
+ tessellation_data : typing.Optional[typing.Mapping[typing.Text, ansys.api.discovery.v0.discoverymodels_pb2.Tessellation]] = ...,
95
+ ) -> None: ...
96
+ def ClearField(self, field_name: typing_extensions.Literal["tessellation_data",b"tessellation_data"]) -> None: ...
97
+ global___CreateFacetedBodiesRequest = CreateFacetedBodiesRequest
98
+
99
+ class CreateFacetedBodiesResponse(google.protobuf.message.Message):
100
+ DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
101
+ CREATED_BODIES_FIELD_NUMBER: builtins.int
102
+ @property
103
+ def created_bodies(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[ansys.api.dbu.v0.dbumodels_pb2.EntityIdentifier]: ...
104
+ def __init__(self,
105
+ *,
106
+ created_bodies : typing.Optional[typing.Iterable[ansys.api.dbu.v0.dbumodels_pb2.EntityIdentifier]] = ...,
107
+ ) -> None: ...
108
+ def ClearField(self, field_name: typing_extensions.Literal["created_bodies",b"created_bodies"]) -> None: ...
109
+ global___CreateFacetedBodiesResponse = CreateFacetedBodiesResponse
@@ -36,6 +36,11 @@ class UnsupportedStub(object):
36
36
  request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
37
37
  response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_unsupported__pb2.DoubleValueResponse.FromString,
38
38
  )
39
+ self.CreateFacetedBodies = channel.unary_unary(
40
+ '/ansys.api.discovery.v0.unsupported.Unsupported/CreateFacetedBodies',
41
+ request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_unsupported__pb2.CreateFacetedBodiesRequest.SerializeToString,
42
+ response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_unsupported__pb2.CreateFacetedBodiesResponse.FromString,
43
+ )
39
44
 
40
45
 
41
46
  class UnsupportedServicer(object):
@@ -68,6 +73,12 @@ class UnsupportedServicer(object):
68
73
  context.set_details('Method not implemented!')
69
74
  raise NotImplementedError('Method not implemented!')
70
75
 
76
+ def CreateFacetedBodies(self, request, context):
77
+ """Missing associated documentation comment in .proto file."""
78
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
79
+ context.set_details('Method not implemented!')
80
+ raise NotImplementedError('Method not implemented!')
81
+
71
82
 
72
83
  def add_UnsupportedServicer_to_server(servicer, server):
73
84
  rpc_method_handlers = {
@@ -91,6 +102,11 @@ def add_UnsupportedServicer_to_server(servicer, server):
91
102
  request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
92
103
  response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_unsupported__pb2.DoubleValueResponse.SerializeToString,
93
104
  ),
105
+ 'CreateFacetedBodies': grpc.unary_unary_rpc_method_handler(
106
+ servicer.CreateFacetedBodies,
107
+ request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_unsupported__pb2.CreateFacetedBodiesRequest.FromString,
108
+ response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_unsupported__pb2.CreateFacetedBodiesResponse.SerializeToString,
109
+ ),
94
110
  }
95
111
  generic_handler = grpc.method_handlers_generic_handler(
96
112
  'ansys.api.discovery.v0.unsupported.Unsupported', rpc_method_handlers)
@@ -168,3 +184,20 @@ class Unsupported(object):
168
184
  ansys_dot_api_dot_discovery_dot_v0_dot_unsupported__pb2.DoubleValueResponse.FromString,
169
185
  options, channel_credentials,
170
186
  insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
187
+
188
+ @staticmethod
189
+ def CreateFacetedBodies(request,
190
+ target,
191
+ options=(),
192
+ channel_credentials=None,
193
+ call_credentials=None,
194
+ insecure=False,
195
+ compression=None,
196
+ wait_for_ready=None,
197
+ timeout=None,
198
+ metadata=None):
199
+ return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.unsupported.Unsupported/CreateFacetedBodies',
200
+ ansys_dot_api_dot_discovery_dot_v0_dot_unsupported__pb2.CreateFacetedBodiesRequest.SerializeToString,
201
+ ansys_dot_api_dot_discovery_dot_v0_dot_unsupported__pb2.CreateFacetedBodiesResponse.FromString,
202
+ options, channel_credentials,
203
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -29,6 +29,10 @@ class UnsupportedStub:
29
29
  google.protobuf.empty_pb2.Empty,
30
30
  ansys.api.discovery.v0.unsupported_pb2.DoubleValueResponse] = ...
31
31
 
32
+ CreateFacetedBodies: grpc.UnaryUnaryMultiCallable[
33
+ ansys.api.discovery.v0.unsupported_pb2.CreateFacetedBodiesRequest,
34
+ ansys.api.discovery.v0.unsupported_pb2.CreateFacetedBodiesResponse] = ...
35
+
32
36
 
33
37
  class UnsupportedServicer(metaclass=abc.ABCMeta):
34
38
  @abc.abstractmethod
@@ -61,5 +65,11 @@ class UnsupportedServicer(metaclass=abc.ABCMeta):
61
65
  context: grpc.ServicerContext,
62
66
  ) -> ansys.api.discovery.v0.unsupported_pb2.DoubleValueResponse: ...
63
67
 
68
+ @abc.abstractmethod
69
+ def CreateFacetedBodies(self,
70
+ request: ansys.api.discovery.v0.unsupported_pb2.CreateFacetedBodiesRequest,
71
+ context: grpc.ServicerContext,
72
+ ) -> ansys.api.discovery.v0.unsupported_pb2.CreateFacetedBodiesResponse: ...
73
+
64
74
 
65
75
  def add_UnsupportedServicer_to_server(servicer: UnsupportedServicer, server: grpc.Server) -> None: ...
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ansys-api-discovery
3
- Version: 0.6.14
4
- Summary: Autogenerated python gRPC interface package for ansys-api-discovery, built on 09:10:43 on 16 May 2025
3
+ Version: 0.6.17
4
+ Summary: Autogenerated python gRPC interface package for ansys-api-discovery, built on 16:49:29 on 08 September 2025
5
5
  Home-page: https://github.com/ansys/ansys-api-discovery
6
6
  Author: ANSYS, Inc.
7
7
  Author-email: support@ansys.com
@@ -11,7 +11,7 @@ Description-Content-Type: text/markdown
11
11
  License-File: LICENSE
12
12
  Requires-Dist: grpcio~=1.44
13
13
  Requires-Dist: protobuf<6,>=3.19
14
- Requires-Dist: ansys-api-geometry==0.4.58
14
+ Requires-Dist: ansys-api-geometry==0.4.62
15
15
  Dynamic: author
16
16
  Dynamic: author-email
17
17
  Dynamic: description
@@ -1,4 +1,4 @@
1
- ansys/api/discovery/VERSION,sha256=_6kVEqFYHL-hptroBeXUuRlDiFk2RB1-3Pc0jon0JbQ,7
1
+ ansys/api/discovery/VERSION,sha256=kQxNlhEgGpavb6K-aIyc6Temeg9XFYbj0qTfR7B6gSE,7
2
2
  ansys/api/discovery/__init__.py,sha256=c2GxEoryXIQtBEhwLRN45MOr4IsG1UbsHYBzUnvXGDM,231
3
3
  ansys/api/discovery/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  ansys/api/discovery/v0/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
@@ -7,9 +7,9 @@ ansys/api/discovery/v0/definedvariationstable_pb2.py,sha256=vBPsGZ4ZQ87JHsDce5JZ
7
7
  ansys/api/discovery/v0/definedvariationstable_pb2.pyi,sha256=XYP3RRIKZwIKjMUEtTEe_zFckytFNy3IP8BQcQ1SvGU,10354
8
8
  ansys/api/discovery/v0/definedvariationstable_pb2_grpc.py,sha256=5Bl_xJKM_sMiyxd9vMl0amR3sgXDIPMNElybJlI5elU,33209
9
9
  ansys/api/discovery/v0/definedvariationstable_pb2_grpc.pyi,sha256=Vx_gAUNcKWbYqVP-x8ExtYXfMbl4QBIel-LtsIvB3l4,9690
10
- ansys/api/discovery/v0/discoverymodels.proto,sha256=TpswsspVHMxsRuFVB7hgrRk9ymIsXOswYU8_9ra4_9s,8681
11
- ansys/api/discovery/v0/discoverymodels_pb2.py,sha256=cgeE4wnKn6S0gQ599yg3XVRG_9q3tXbU7g2R8EBqUVM,16167
12
- ansys/api/discovery/v0/discoverymodels_pb2.pyi,sha256=ftAF3R3SaR8BJSbYpA2_KmZFtJVw7qxwFJvgRyGNW60,47758
10
+ ansys/api/discovery/v0/discoverymodels.proto,sha256=_q91VBKb2pXHy9c5NnVJBnyalUjrgWo0bBbEOpuojiI,10336
11
+ ansys/api/discovery/v0/discoverymodels_pb2.py,sha256=WfbLCNAHJ7lSvx83OObR5L-ltEaPNCG_78-gFy524a8,19510
12
+ ansys/api/discovery/v0/discoverymodels_pb2.pyi,sha256=k0CLaBoZWoHlxHpQ7CXVYOVxMbewL7ES5cdDaW9AGGE,59151
13
13
  ansys/api/discovery/v0/discoverymodels_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
14
14
  ansys/api/discovery/v0/discoverymodels_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
15
15
  ansys/api/discovery/v0/historytrackparameters.proto,sha256=7L4dfP_sRTs2stvvGNES8owRl4vQwsi9XhAvymYX3Hg,1549
@@ -22,11 +22,11 @@ ansys/api/discovery/v0/messaging_pb2.py,sha256=O9N7jQcb3jleaJj60Cc4HSIi8D5IjlNJi
22
22
  ansys/api/discovery/v0/messaging_pb2.pyi,sha256=7pVtwf6MQNpMkPlPrw5F4kfO6EPjREF3_rV-VmRfjy8,716
23
23
  ansys/api/discovery/v0/messaging_pb2_grpc.py,sha256=q7Og7xEn4CApFY5NwPRN1-cpQvyW6E5TjrQnoc4xeMw,4466
24
24
  ansys/api/discovery/v0/messaging_pb2_grpc.pyi,sha256=22vxFZ2OMICUFsfbDiJRq4gdwXo79wDC2KTvPnLy3G4,1260
25
- ansys/api/discovery/v0/monitors.proto,sha256=nxXi88fTpEU8k4dShhzjpk2eQJ6_SW-qEi9lQIWMb6Q,1161
26
- ansys/api/discovery/v0/monitors_pb2.py,sha256=RL10W3EgHLb3baSg_tIiXQ40trmpHkoRH9tBIsS25Qw,3079
27
- ansys/api/discovery/v0/monitors_pb2.pyi,sha256=7FpibdMdybiyNGIcBkkscTIXIjUB1paWeRbWOyATz8Y,5374
28
- ansys/api/discovery/v0/monitors_pb2_grpc.py,sha256=9E4Gnr4u9efP3_7JhOuzR5YyqRCgR6OXrwjOU7HE-QI,2825
29
- ansys/api/discovery/v0/monitors_pb2_grpc.pyi,sha256=ht2Mwq49Y-92_MNlEzojXmPemi1gmsE7XhawQEe9RpM,877
25
+ ansys/api/discovery/v0/monitors.proto,sha256=zO9w2Imop5cI0khcqa37FjKeQ2A6IkACUitkf27kRY8,1592
26
+ ansys/api/discovery/v0/monitors_pb2.py,sha256=wdFl5UW2yHmRoJtM9ZpdqxrD_BQAerX7UDuqnvJTRZs,4139
27
+ ansys/api/discovery/v0/monitors_pb2.pyi,sha256=lqU6chzEA-XLw4tQbposZ07m7U8TafJg4bJcCAvgw1A,7415
28
+ ansys/api/discovery/v0/monitors_pb2_grpc.py,sha256=CASAtf_BmyBV9fz1Zp3oOTf14w3ZpCgQIlXuw9a4B78,6557
29
+ ansys/api/discovery/v0/monitors_pb2_grpc.pyi,sha256=BS9N5XS4qg2Kkq2m3rB4p_hUWzFcEum1rpJ4EKRJAgQ,1757
30
30
  ansys/api/discovery/v0/results.proto,sha256=wfn2-2gtaj5H_BSLKryqpRJB7H5JNDVqzARVos-tQnw,3271
31
31
  ansys/api/discovery/v0/results_pb2.py,sha256=6V1BjN0FfrM2sVInGd47T2fd5kBcnQC1ZqkV7wZMjA0,5314
32
32
  ansys/api/discovery/v0/results_pb2.pyi,sha256=1gZfo0AmKygXndYlwUYA79nbvEbFouszsiAawSi110M,13223
@@ -52,19 +52,19 @@ ansys/api/discovery/v0/units_pb2.py,sha256=k8n3o8rH_yt48xqvjzPu8XONteVLI_Eg8Bbwk
52
52
  ansys/api/discovery/v0/units_pb2.pyi,sha256=1sBHhZfIxIssrgeO3jIgMQ-5nMhBBn8qkr93C60Jg2c,201214
53
53
  ansys/api/discovery/v0/units_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
54
54
  ansys/api/discovery/v0/units_pb2_grpc.pyi,sha256=ff2TSiLVnG6IVQcTGzb2DIH3XRSoAvAo_RMcvbMFyc0,76
55
- ansys/api/discovery/v0/unsupported.proto,sha256=9qSbS_-kEukJotG-L2DxuGhY9_cDdp8KjLOvCaLqwQQ,1256
56
- ansys/api/discovery/v0/unsupported_pb2.py,sha256=Achu3x-_OQMU079n4bkgZ13sqlM4Vb6BCqQALv8exvE,2992
57
- ansys/api/discovery/v0/unsupported_pb2.pyi,sha256=9NrN0sOP5bXUaZBi4t8z7N_ga4m2Xhwpj5f6hR-1rD8,3032
58
- ansys/api/discovery/v0/unsupported_pb2_grpc.py,sha256=4vHyK9PNXsa1_4NMgcGi5IGINxvcBnPHlM01inVEf4c,8689
59
- ansys/api/discovery/v0/unsupported_pb2_grpc.pyi,sha256=7nRO0ckOjOlyCs-RfR3jWt2k3jB3DJnUCjmjfNqu-kU,2477
55
+ ansys/api/discovery/v0/unsupported.proto,sha256=NKwjfhkw51dED8kdd9TsOASeaRRyRug_Q6xdqTjwt-o,1597
56
+ ansys/api/discovery/v0/unsupported_pb2.py,sha256=-CJ-297o2Q0bMqjyowQfgSJpVcqrY1_CMGPhQx8w6IE,4295
57
+ ansys/api/discovery/v0/unsupported_pb2.pyi,sha256=RkVSYol2YKLDxZyFyX9JKh40J4AtKZYbnUEK06BWDZo,5312
58
+ ansys/api/discovery/v0/unsupported_pb2_grpc.py,sha256=Mr-bD0OsPQw_41M-amoQkrvEVzqQnM2pK0DC1qUr9_k,10637
59
+ ansys/api/discovery/v0/unsupported_pb2_grpc.pyi,sha256=H4fptfX98vbOCHRCuiaAUgXCT96GUSgbc7KEvAFWHoE,2953
60
60
  ansys/api/discovery/v0/assignments/boltassignment.proto,sha256=xvhVogyHgSFjApifjaOm5QyrgWRjUK_joQWEINCtt08,1261
61
61
  ansys/api/discovery/v0/assignments/boltassignment_pb2.py,sha256=2nDbdXv5gaiAoXzf2XjscWWmkhTO9uvqkqnBWzAIDEA,3484
62
62
  ansys/api/discovery/v0/assignments/boltassignment_pb2.pyi,sha256=ufOidRle7Vp1yhibZWivXhbARo6_s7X1skhR4FUAFvQ,5106
63
63
  ansys/api/discovery/v0/assignments/boltassignment_pb2_grpc.py,sha256=CZ56x7L7C5VkhBtpKLb2352oT4KNm7tpmsyohsdF98g,3201
64
64
  ansys/api/discovery/v0/assignments/boltassignment_pb2_grpc.pyi,sha256=4zT29m5iWRXDNbPxpTaLury4VZmOtKUavbsbICP0Y9s,1059
65
- ansys/api/discovery/v0/assignments/fan.proto,sha256=6BpQcppphPbRFkP5tRtzd14mej9qOwJlNpndn18IYJY,3582
66
- ansys/api/discovery/v0/assignments/fan_pb2.py,sha256=Hg_EouwdcpgNYvrEpIRL7o3e17gpMiGxxXLkWeHyYWE,8210
67
- ansys/api/discovery/v0/assignments/fan_pb2.pyi,sha256=zzFOQf_waG8HpmcQ4e2FQGgIzTaNmh2qPy0isNZA7vA,14645
65
+ ansys/api/discovery/v0/assignments/fan.proto,sha256=sKvVazcUFagLHFyjunMx0vZPgQjIHuWmFRPYasItpgM,3632
66
+ ansys/api/discovery/v0/assignments/fan_pb2.py,sha256=QAc6r_4tAmLrUJx9C8FBEJECv4iEso6_rPNaRBYy1oc,8316
67
+ ansys/api/discovery/v0/assignments/fan_pb2.pyi,sha256=MKFCQM2kjnR4YEI78NhcKo5wMV-OFIw-y0C80yeOm_o,15125
68
68
  ansys/api/discovery/v0/assignments/fan_pb2_grpc.py,sha256=NS4a4DggQpgz5kzjD3fRwdB_A0rjKxcsqg41Wun052k,25255
69
69
  ansys/api/discovery/v0/assignments/fan_pb2_grpc.pyi,sha256=_jwzjdexHlC6rOhJdOJ9X4APweaGd2CHbDpCfXTVbiY,6249
70
70
  ansys/api/discovery/v0/conditions/acceleration.proto,sha256=ISoyMfetBcN05d858-QTlKUX-VrTg5503NRa1tsGGYQ,1886
@@ -152,19 +152,19 @@ ansys/api/discovery/v0/conditions/operatingpressure_pb2.py,sha256=xg6tM-WdloLALE
152
152
  ansys/api/discovery/v0/conditions/operatingpressure_pb2.pyi,sha256=pUIMrU9pC3SsmMbP3dPIEmkuD06V7YtgOaCiH7Qb4bg,171
153
153
  ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.py,sha256=-4ZNEcIYvcFc-H1XYGLPaHf93hHbVbUoJWozm1t2sQA,3076
154
154
  ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.pyi,sha256=853MNCNztOVzVs2aWN9miduaCZjV5wpqR2yZhYtWU5k,875
155
- ansys/api/discovery/v0/conditions/porous.proto,sha256=LSlKVRnBPidrmoRFMP1-pMMs2nXicAT0vn2gQPEl5W8,3637
156
- ansys/api/discovery/v0/conditions/porous_pb2.py,sha256=5nQYir_IA5Bbnf7cjMKuuQRu5o9KB6h6zDU3zSTcQF4,7899
157
- ansys/api/discovery/v0/conditions/porous_pb2.pyi,sha256=AeXdrWiR1EsK6fkrn_hRu1YkzGV-ywTntY4tObiPOpE,14887
158
- ansys/api/discovery/v0/conditions/porous_pb2_grpc.py,sha256=gbU9n6se1Gr3FxWfodoymwR417xcP3wOvq5EJS11sLc,33542
159
- ansys/api/discovery/v0/conditions/porous_pb2_grpc.pyi,sha256=pLnfewo-FDYDmaV-ITmxTRvhT4ErLlQUCEr7zlNxsgc,8585
155
+ ansys/api/discovery/v0/conditions/porous.proto,sha256=o83SKyYytf1x7_BU7PSiD_lNB3GQlDbk6QkmN7KDOso,3607
156
+ ansys/api/discovery/v0/conditions/porous_pb2.py,sha256=1WEXGIa8rUFaXu9XMCRV95dZ6mqITCsrGKxM3oCP2D4,7796
157
+ ansys/api/discovery/v0/conditions/porous_pb2.pyi,sha256=brcTh8TcpN91ENg12-0KK8DvGMnLRJM_tgz4-9-iy3w,14231
158
+ ansys/api/discovery/v0/conditions/porous_pb2_grpc.py,sha256=SFzKTh-DmBmFZvn_UyU8pHIYEZxClrW9sr8mBhYYm8w,35666
159
+ ansys/api/discovery/v0/conditions/porous_pb2_grpc.pyi,sha256=ripSHjrlXe1Gx4uCYVorYFhHXRUvMJYaRV_z-4GBxtg,9097
160
160
  ansys/api/discovery/v0/conditions/pressure.proto,sha256=XbLnKIwconmmGAJn38ghYTQT5M57yNCThj9MxMXdz_I,1225
161
161
  ansys/api/discovery/v0/conditions/pressure_pb2.py,sha256=fpUPv9_U7zWpFciUx7PEPpbcf5Sfd3xCs_1wOLUbp9o,3301
162
162
  ansys/api/discovery/v0/conditions/pressure_pb2.pyi,sha256=Dywl0PKVEi-S4TbUiR86Rq9Hws49ZYbbO6QcOVJ38Hk,4952
163
163
  ansys/api/discovery/v0/conditions/pressure_pb2_grpc.py,sha256=WzqcCuPoYBO2vsku8gFgZOK4VrUhYOzHWQv6oVmO0e8,7021
164
164
  ansys/api/discovery/v0/conditions/pressure_pb2_grpc.pyi,sha256=AaXEJm1GLZ0TTiR9FwIDkkeSk547gveJY_tVrxZUFPQ,1928
165
- ansys/api/discovery/v0/conditions/rotatingfluidzone.proto,sha256=3tjd40o5EPFZOchBeLbNcB1SY9CQfiVGV2UL-zC7nqo,1510
166
- ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2.py,sha256=HVsr8dFm4CWYsC2bli3MUocFiMWQ-QzhI_3aFBZXWVA,3621
167
- ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2.pyi,sha256=ze9PzjrE1IAqntb2sVNYfSLST9jXGlVY_2YaFG-0qNM,5462
165
+ ansys/api/discovery/v0/conditions/rotatingfluidzone.proto,sha256=Z_6wkVVjkK05mlCsZHvFEFreUw_dM1p7AnweTqxnRQ0,1507
166
+ ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2.py,sha256=Smi1rbAsN70Jjla3o7ii8ATdFFEMUaJRTgiHvd_wFqM,3619
167
+ ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2.pyi,sha256=s6ABwLGJqJHcQAT0YYlVvcZOgUjPhO6oazb2H0kUj48,5441
168
168
  ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2_grpc.py,sha256=iZnhtHekylXsio1aamdL_2hebYAzE6tZfB5UFAvyfOw,7465
169
169
  ansys/api/discovery/v0/conditions/rotatingfluidzone_pb2_grpc.pyi,sha256=PAYmQcCwuF5jzqfxsMjOVcjhn2Wq1rZzhuLjexVCONo,2231
170
170
  ansys/api/discovery/v0/conditions/solidtemperature.proto,sha256=rec72oLj_DEGmUuep7HSYEeDo5x32mjQaEHN_J4HHDM,1253
@@ -202,21 +202,21 @@ ansys/api/discovery/v0/conditions/wall_pb2.py,sha256=gwhEzjuU7A2u2yGp1VWg-gk_SGG
202
202
  ansys/api/discovery/v0/conditions/wall_pb2.pyi,sha256=wIF9B-536GgMuyjTR5Zd-rvAFJyEWSltoXmmKNVvqTw,31053
203
203
  ansys/api/discovery/v0/conditions/wall_pb2_grpc.py,sha256=0fFV6dEQbOSOvJ43Ga8vHn06XVO3Wh-Xt0YaIc_lVD0,42740
204
204
  ansys/api/discovery/v0/conditions/wall_pb2_grpc.pyi,sha256=_j_0cYQLYjmHrJALjmj8-16-y1g7QxSDEI8w9-hhCUI,10819
205
- ansys/api/discovery/v0/connections/contact.proto,sha256=7_C5--AwImHiYOxDWAtKIK3cS2S6Vw4AiCLlSYRdOgY,4240
206
- ansys/api/discovery/v0/connections/contact_pb2.py,sha256=7goigSvbbwNHH5PrBaWojAgOHvsqYPWD3ENa9c92pD0,8845
207
- ansys/api/discovery/v0/connections/contact_pb2.pyi,sha256=u1K82EAU1C-pIFwTSUdHV5jsulG4KQtyh5s1VZk6GDE,14528
208
- ansys/api/discovery/v0/connections/contact_pb2_grpc.py,sha256=ZPnyq4W20bp73-RhTY_P6UZNs5ZQ_icGrhDtU5ZSsFs,48598
209
- ansys/api/discovery/v0/connections/contact_pb2_grpc.pyi,sha256=nKpHp6j4NDCW24AZQnT9wx6SqrPVXxVIWJsiSKldavQ,11812
210
- ansys/api/discovery/v0/connections/contactgroup.proto,sha256=6QxtPniaO5c5qsqvgphzoAOfBgV7_Ykxe3jODjxy7q0,4338
211
- ansys/api/discovery/v0/connections/contactgroup_pb2.py,sha256=G2YtojeQlrPyqolkmr2PI6BcjqSwWFRJ1d5u8Ko3SEA,8538
212
- ansys/api/discovery/v0/connections/contactgroup_pb2.pyi,sha256=QX-iVVXnBj88NyRh7otNGFYGLEcicbF4irJfGbNZ66o,12042
213
- ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.py,sha256=suE8PVIxXcAB7ftHRdcsveymp3RNQWd3BtbS58OOFEE,53340
214
- ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.pyi,sha256=Bt-ZHYMNzH-lrTI_YmkdOHThg_U5NYBGVm6NdaVncOQ,12801
215
- ansys/api/discovery/v0/connections/fluidinterface.proto,sha256=5hTC9Wt6Jo6kSRxl-beJr8xh91-wVJoJNTCR3mU8JrQ,2468
216
- ansys/api/discovery/v0/connections/fluidinterface_pb2.py,sha256=JPAkV0VaFqRfbWgS0HIwjIiuuu_NpN5DEULcnLS0D8w,5639
217
- ansys/api/discovery/v0/connections/fluidinterface_pb2.pyi,sha256=gj9vWl_B3RStJc7MNXmUNuji5i8fje4Wuy3B-6eqVig,6545
218
- ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.py,sha256=bR9N_g917yMtgac31G5p_Q2qgUZoieer_nmdb64UJ_I,24512
219
- ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.pyi,sha256=8F55iLhg2FYFo7q2IrP2az7Yp1_ZVLb8VM8rG5wEp2A,6078
205
+ ansys/api/discovery/v0/connections/contact.proto,sha256=Jh3Pz2qxXqBDJQJSX9HIBjbJDYltviDKb-yMZWxPZFw,3272
206
+ ansys/api/discovery/v0/connections/contact_pb2.py,sha256=8tW9vvPKlGOwRZpeTFrjGVM21qX7Gmh2spx9hss-fdg,6681
207
+ ansys/api/discovery/v0/connections/contact_pb2.pyi,sha256=3WUPNqjBTbcnEkBlzCkS-RsOGvebLVN4aR5Co1o_YjU,6629
208
+ ansys/api/discovery/v0/connections/contact_pb2_grpc.py,sha256=YiczZjDLq_F-Nt4lZgIHEYSL0eBiHPDdhtaD0ePgGv0,49173
209
+ ansys/api/discovery/v0/connections/contact_pb2_grpc.pyi,sha256=tuBaNgsZOpmu_0xhNGPizLq-C-I3u84Q7arsYyCdfWw,12006
210
+ ansys/api/discovery/v0/connections/contactgroup.proto,sha256=z5S6u8H7cDqm68krDkKc8lsrEzgFQh-5akbyZBLWJ3c,3654
211
+ ansys/api/discovery/v0/connections/contactgroup_pb2.py,sha256=vhiWP4UAlEDjIF0zlsqmiMlD6oflyC8xvDPbcKWFkU8,7103
212
+ ansys/api/discovery/v0/connections/contactgroup_pb2.pyi,sha256=A6wy-oTNTXps5uw1cAl7QP-vRv1GlTR2weu0mXiGjA4,5861
213
+ ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.py,sha256=uE7voJN0DHrKLp96-BDy-Ank5lfCvZORhUt3NblHP1U,54986
214
+ ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.pyi,sha256=Nzw71tNLs2p7and9jJ2OmpyvhiOhHe59ziLY2v2Gquk,13301
215
+ ansys/api/discovery/v0/connections/fluidinterface.proto,sha256=Hyehhi7q0cgpd0OTNhZG2lWI-jg_nhX2stqCmZeQzxE,1995
216
+ ansys/api/discovery/v0/connections/fluidinterface_pb2.py,sha256=2bQ5e4qbtDZLsPUFM7ek0F-0-8y8t8UlX6JCeA-SFTA,4457
217
+ ansys/api/discovery/v0/connections/fluidinterface_pb2.pyi,sha256=VmH8Xh7XbiAwRy8lBOLJKHzTigkcbrw4KFsAkaZh57E,4103
218
+ ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.py,sha256=JuzQj3R3PY43aPnTRNuux-CQcjM9WGQp4YFxWZRqf-Y,24400
219
+ ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.pyi,sha256=esmUAAddLuPnHyTbE_aXcVn4Nx6PVheXxYLUh-r5vNs,6030
220
220
  ansys/api/discovery/v0/connections/joint.proto,sha256=FawLX4Ntn_eRwO4dv51w2gBFvenfAiy8yL2UnoORU6Y,1487
221
221
  ansys/api/discovery/v0/connections/joint_pb2.py,sha256=yZsXrSdTMka0w6pv_CCYELlo1FPkfnhVW-kMCTJ-HWg,3948
222
222
  ansys/api/discovery/v0/connections/joint_pb2.pyi,sha256=fiCtdLBUyaImVj-Qi_pmIj5RgQeqVrEl8bm_G9nepGA,6541
@@ -232,9 +232,9 @@ ansys/api/discovery/v0/engineeringdata/fandata_pb2.py,sha256=ohc8_Vi-Rvw5hTVEVJJ
232
232
  ansys/api/discovery/v0/engineeringdata/fandata_pb2.pyi,sha256=x3FICQZhtW3tJfrnYz9ThL4lqQVX8LHKRWQx0SZ8aiQ,7826
233
233
  ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.py,sha256=JIiIAlLmM098k1bqR9XRgHTSncl9Btux-mQD9hGF31c,2970
234
234
  ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.pyi,sha256=7XQljvgDgQXId-vBh74qz2fwKyWoAivskwz0NIc-kbY,938
235
- ansys_api_discovery-0.6.14.dist-info/LICENSE,sha256=q2LY-0-hseAc1SDA7rBn96IDi2SHenCzygJda8-7AAU,1089
236
- ansys_api_discovery-0.6.14.dist-info/METADATA,sha256=wPRuxJ2ZqJj5BhR5qgV6BWASwlDqtb1_7hLvmpXSTrc,2112
237
- ansys_api_discovery-0.6.14.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
238
- ansys_api_discovery-0.6.14.dist-info/entry_points.txt,sha256=WScutwzRi-SS6g8pXveUJiIOBeIoLBqDVpsPMCAYzmY,91
239
- ansys_api_discovery-0.6.14.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
240
- ansys_api_discovery-0.6.14.dist-info/RECORD,,
235
+ ansys_api_discovery-0.6.17.dist-info/LICENSE,sha256=q2LY-0-hseAc1SDA7rBn96IDi2SHenCzygJda8-7AAU,1089
236
+ ansys_api_discovery-0.6.17.dist-info/METADATA,sha256=p8Uvmkz-eIXyC_b5y5Iy3IG9cnQXgHELQlYz0pBl12U,2118
237
+ ansys_api_discovery-0.6.17.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
238
+ ansys_api_discovery-0.6.17.dist-info/entry_points.txt,sha256=WScutwzRi-SS6g8pXveUJiIOBeIoLBqDVpsPMCAYzmY,91
239
+ ansys_api_discovery-0.6.17.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
240
+ ansys_api_discovery-0.6.17.dist-info/RECORD,,