ansys-api-discovery 0.6.10__py3-none-any.whl → 0.6.12__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 (30) hide show
  1. ansys/api/discovery/VERSION +1 -1
  2. ansys/api/discovery/v0/assignments/fan.proto +104 -0
  3. ansys/api/discovery/v0/assignments/fan_pb2.py +49 -0
  4. ansys/api/discovery/v0/assignments/fan_pb2.pyi +240 -0
  5. ansys/api/discovery/v0/assignments/fan_pb2_grpc.py +430 -0
  6. ansys/api/discovery/v0/assignments/fan_pb2_grpc.pyi +135 -0
  7. ansys/api/discovery/v0/conditions/operatingpressure.proto +12 -0
  8. ansys/api/discovery/v0/conditions/operatingpressure_pb2.py +27 -0
  9. ansys/api/discovery/v0/conditions/operatingpressure_pb2.pyi +7 -0
  10. ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.py +66 -0
  11. ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.pyi +24 -0
  12. ansys/api/discovery/v0/connections/fluidinterface.proto +62 -0
  13. ansys/api/discovery/v0/connections/fluidinterface_pb2.py +42 -0
  14. ansys/api/discovery/v0/connections/fluidinterface_pb2.pyi +113 -0
  15. ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.py +397 -0
  16. ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.pyi +125 -0
  17. ansys/api/discovery/v0/discoverymodels.proto +37 -0
  18. ansys/api/discovery/v0/discoverymodels_pb2.py +66 -52
  19. ansys/api/discovery/v0/discoverymodels_pb2.pyi +121 -1
  20. ansys/api/discovery/v0/engineeringdata/fandata.proto +72 -0
  21. ansys/api/discovery/v0/engineeringdata/fandata_pb2.py +40 -0
  22. ansys/api/discovery/v0/engineeringdata/fandata_pb2.pyi +142 -0
  23. ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.py +67 -0
  24. ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.pyi +27 -0
  25. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/METADATA +3 -3
  26. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/RECORD +30 -10
  27. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/LICENSE +0 -0
  28. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/WHEEL +0 -0
  29. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/entry_points.txt +0 -0
  30. {ansys_api_discovery-0.6.10.dist-info → ansys_api_discovery-0.6.12.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,67 @@
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 ansys.api.discovery.v0.engineeringdata import fandata_pb2 as ansys_dot_api_dot_discovery_dot_v0_dot_engineeringdata_dot_fandata__pb2
6
+
7
+
8
+ class FanDataStub(object):
9
+ """Missing associated documentation comment in .proto file."""
10
+
11
+ def __init__(self, channel):
12
+ """Constructor.
13
+
14
+ Args:
15
+ channel: A grpc.Channel.
16
+ """
17
+ self.CreateFan = channel.unary_unary(
18
+ '/ansys.api.discovery.v0.engineeringdata.fandata.FanData/CreateFan',
19
+ request_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_engineeringdata_dot_fandata__pb2.FanCreationRequest.SerializeToString,
20
+ response_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_engineeringdata_dot_fandata__pb2.FanCreationResponse.FromString,
21
+ )
22
+
23
+
24
+ class FanDataServicer(object):
25
+ """Missing associated documentation comment in .proto file."""
26
+
27
+ def CreateFan(self, request, context):
28
+ """Fan Data condition methods
29
+ """
30
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
31
+ context.set_details('Method not implemented!')
32
+ raise NotImplementedError('Method not implemented!')
33
+
34
+
35
+ def add_FanDataServicer_to_server(servicer, server):
36
+ rpc_method_handlers = {
37
+ 'CreateFan': grpc.unary_unary_rpc_method_handler(
38
+ servicer.CreateFan,
39
+ request_deserializer=ansys_dot_api_dot_discovery_dot_v0_dot_engineeringdata_dot_fandata__pb2.FanCreationRequest.FromString,
40
+ response_serializer=ansys_dot_api_dot_discovery_dot_v0_dot_engineeringdata_dot_fandata__pb2.FanCreationResponse.SerializeToString,
41
+ ),
42
+ }
43
+ generic_handler = grpc.method_handlers_generic_handler(
44
+ 'ansys.api.discovery.v0.engineeringdata.fandata.FanData', rpc_method_handlers)
45
+ server.add_generic_rpc_handlers((generic_handler,))
46
+
47
+
48
+ # This class is part of an EXPERIMENTAL API.
49
+ class FanData(object):
50
+ """Missing associated documentation comment in .proto file."""
51
+
52
+ @staticmethod
53
+ def CreateFan(request,
54
+ target,
55
+ options=(),
56
+ channel_credentials=None,
57
+ call_credentials=None,
58
+ insecure=False,
59
+ compression=None,
60
+ wait_for_ready=None,
61
+ timeout=None,
62
+ metadata=None):
63
+ return grpc.experimental.unary_unary(request, target, '/ansys.api.discovery.v0.engineeringdata.fandata.FanData/CreateFan',
64
+ ansys_dot_api_dot_discovery_dot_v0_dot_engineeringdata_dot_fandata__pb2.FanCreationRequest.SerializeToString,
65
+ ansys_dot_api_dot_discovery_dot_v0_dot_engineeringdata_dot_fandata__pb2.FanCreationResponse.FromString,
66
+ options, channel_credentials,
67
+ insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@@ -0,0 +1,27 @@
1
+ """
2
+ @generated by mypy-protobuf. Do not edit manually!
3
+ isort:skip_file
4
+ """
5
+ import abc
6
+ import ansys.api.discovery.v0.engineeringdata.fandata_pb2
7
+ import grpc
8
+
9
+ class FanDataStub:
10
+ def __init__(self, channel: grpc.Channel) -> None: ...
11
+ CreateFan: grpc.UnaryUnaryMultiCallable[
12
+ ansys.api.discovery.v0.engineeringdata.fandata_pb2.FanCreationRequest,
13
+ ansys.api.discovery.v0.engineeringdata.fandata_pb2.FanCreationResponse] = ...
14
+ """Fan Data condition methods"""
15
+
16
+
17
+ class FanDataServicer(metaclass=abc.ABCMeta):
18
+ @abc.abstractmethod
19
+ def CreateFan(self,
20
+ request: ansys.api.discovery.v0.engineeringdata.fandata_pb2.FanCreationRequest,
21
+ context: grpc.ServicerContext,
22
+ ) -> ansys.api.discovery.v0.engineeringdata.fandata_pb2.FanCreationResponse:
23
+ """Fan Data condition methods"""
24
+ pass
25
+
26
+
27
+ def add_FanDataServicer_to_server(servicer: FanDataServicer, server: grpc.Server) -> None: ...
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: ansys-api-discovery
3
- Version: 0.6.10
4
- Summary: Autogenerated python gRPC interface package for ansys-api-discovery, built on 20:32:40 on 27 March 2025
3
+ Version: 0.6.12
4
+ Summary: Autogenerated python gRPC interface package for ansys-api-discovery, built on 08:09:28 on 29 April 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.54
14
+ Requires-Dist: ansys-api-geometry==0.4.57
15
15
  Dynamic: author
16
16
  Dynamic: author-email
17
17
  Dynamic: description
@@ -1,4 +1,4 @@
1
- ansys/api/discovery/VERSION,sha256=vtKxMO7GnUYcX2m6IYw4bEQszyMZ88NHbk-v8ddhR-g,7
1
+ ansys/api/discovery/VERSION,sha256=RTfipGaQqqBEIj-hXNb41YLQL6cohliLUui4ZOIVGvU,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=-FwgGwST77e70hH-Xk9GnF8S_DN4TRG6PdRgSEMUoMw,7893
11
- ansys/api/discovery/v0/discoverymodels_pb2.py,sha256=SmG43Im_dMJZn-AJ5cHpWhg6lqhJeAFOWIVHN_9bfeM,14222
12
- ansys/api/discovery/v0/discoverymodels_pb2.pyi,sha256=nVEol-KUL8Aq2n1wdSXSrGCUscVb3q9IiuY6JzTsPD4,41422
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
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
@@ -62,6 +62,11 @@ ansys/api/discovery/v0/assignments/boltassignment_pb2.py,sha256=2nDbdXv5gaiAoXzf
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
68
+ ansys/api/discovery/v0/assignments/fan_pb2_grpc.py,sha256=NS4a4DggQpgz5kzjD3fRwdB_A0rjKxcsqg41Wun052k,25255
69
+ ansys/api/discovery/v0/assignments/fan_pb2_grpc.pyi,sha256=_jwzjdexHlC6rOhJdOJ9X4APweaGd2CHbDpCfXTVbiY,6249
65
70
  ansys/api/discovery/v0/conditions/acceleration.proto,sha256=ISoyMfetBcN05d858-QTlKUX-VrTg5503NRa1tsGGYQ,1886
66
71
  ansys/api/discovery/v0/conditions/acceleration_pb2.py,sha256=VK4i6VF_bVSjQcuDXzqEE5h1ox7QzbMrKzz8nEPy-Jk,4481
67
72
  ansys/api/discovery/v0/conditions/acceleration_pb2.pyi,sha256=aXnfFecor-MXotrU0mX2vFmEOV1TsXgepe5yBdxmhaE,5082
@@ -132,6 +137,11 @@ ansys/api/discovery/v0/conditions/moment_pb2.py,sha256=N0SwDMH5WNonH5Du8WNLyvT4G
132
137
  ansys/api/discovery/v0/conditions/moment_pb2.pyi,sha256=qeQr_pUVqknpO_oBevlAVRFf9q0lgXUcBL21qM-Ttcc,6651
133
138
  ansys/api/discovery/v0/conditions/moment_pb2_grpc.py,sha256=ewhPHTpxBNo6rSO6qIZDGC0v7tTrks05Grabfo21A6M,22450
134
139
  ansys/api/discovery/v0/conditions/moment_pb2_grpc.pyi,sha256=5yqeZYm6phdob81arzhvO7gmwfckkDVpJ5ywXHHa_VA,5604
140
+ ansys/api/discovery/v0/conditions/operatingpressure.proto,sha256=cTytle0Jy32RvMNUr7J4FUy1FAeRbaq5cEqqrTzKeBU,399
141
+ ansys/api/discovery/v0/conditions/operatingpressure_pb2.py,sha256=xg6tM-WdloLALEB--QgolAV7nGJpcEsCDoVMv_-v59o,1541
142
+ ansys/api/discovery/v0/conditions/operatingpressure_pb2.pyi,sha256=pUIMrU9pC3SsmMbP3dPIEmkuD06V7YtgOaCiH7Qb4bg,171
143
+ ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.py,sha256=-4ZNEcIYvcFc-H1XYGLPaHf93hHbVbUoJWozm1t2sQA,3076
144
+ ansys/api/discovery/v0/conditions/operatingpressure_pb2_grpc.pyi,sha256=853MNCNztOVzVs2aWN9miduaCZjV5wpqR2yZhYtWU5k,875
135
145
  ansys/api/discovery/v0/conditions/porous.proto,sha256=LSlKVRnBPidrmoRFMP1-pMMs2nXicAT0vn2gQPEl5W8,3637
136
146
  ansys/api/discovery/v0/conditions/porous_pb2.py,sha256=5nQYir_IA5Bbnf7cjMKuuQRu5o9KB6h6zDU3zSTcQF4,7899
137
147
  ansys/api/discovery/v0/conditions/porous_pb2.pyi,sha256=AeXdrWiR1EsK6fkrn_hRu1YkzGV-ywTntY4tObiPOpE,14887
@@ -182,6 +192,11 @@ ansys/api/discovery/v0/connections/contactgroup_pb2.py,sha256=G2YtojeQlrPyqolkmr
182
192
  ansys/api/discovery/v0/connections/contactgroup_pb2.pyi,sha256=QX-iVVXnBj88NyRh7otNGFYGLEcicbF4irJfGbNZ66o,12042
183
193
  ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.py,sha256=suE8PVIxXcAB7ftHRdcsveymp3RNQWd3BtbS58OOFEE,53340
184
194
  ansys/api/discovery/v0/connections/contactgroup_pb2_grpc.pyi,sha256=Bt-ZHYMNzH-lrTI_YmkdOHThg_U5NYBGVm6NdaVncOQ,12801
195
+ ansys/api/discovery/v0/connections/fluidinterface.proto,sha256=UHjWINkTHShTNbgqx3FYn8wvVGzJ0cWC7ZaASsRwG9Y,2433
196
+ ansys/api/discovery/v0/connections/fluidinterface_pb2.py,sha256=QqfdSoDbK63gyRb_pNmfemWHEXwJnwkiij5lNXLprwA,5576
197
+ ansys/api/discovery/v0/connections/fluidinterface_pb2.pyi,sha256=QNTEhz9D9tf86tBxTyPDQ_sWtrTm-gW7Q-JLIwx5a3U,6588
198
+ ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.py,sha256=n0L1l1rQT8Kehy3mXy_3QyWij-BRnVHU9YooIGtsuQQ,24296
199
+ ansys/api/discovery/v0/connections/fluidinterface_pb2_grpc.pyi,sha256=n_AFwHMffThIFIry0FnT6R2sSZvZANfJ9kUT4Z69_1c,6006
185
200
  ansys/api/discovery/v0/connections/joint.proto,sha256=FawLX4Ntn_eRwO4dv51w2gBFvenfAiy8yL2UnoORU6Y,1487
186
201
  ansys/api/discovery/v0/connections/joint_pb2.py,sha256=yZsXrSdTMka0w6pv_CCYELlo1FPkfnhVW-kMCTJ-HWg,3948
187
202
  ansys/api/discovery/v0/connections/joint_pb2.pyi,sha256=fiCtdLBUyaImVj-Qi_pmIj5RgQeqVrEl8bm_G9nepGA,6541
@@ -192,9 +207,14 @@ ansys/api/discovery/v0/engineeringdata/boltdata_pb2.py,sha256=j8auzcxnVWTjtcEQJj
192
207
  ansys/api/discovery/v0/engineeringdata/boltdata_pb2.pyi,sha256=tKaVZgeMS2VW9sAI_Gu9sV34PX5lyN2VOMdnxl8uvnw,3733
193
208
  ansys/api/discovery/v0/engineeringdata/boltdata_pb2_grpc.py,sha256=0fyTYCn1mJdeiPQuxaFY4J1x-9lkQa0TrjYYX8Ve3gE,3106
194
209
  ansys/api/discovery/v0/engineeringdata/boltdata_pb2_grpc.pyi,sha256=KVdQ8wEfHCCYUU3J3MZWd5qPtKz1HCzStw2v2z_1a7c,991
195
- ansys_api_discovery-0.6.10.dist-info/LICENSE,sha256=q2LY-0-hseAc1SDA7rBn96IDi2SHenCzygJda8-7AAU,1089
196
- ansys_api_discovery-0.6.10.dist-info/METADATA,sha256=BhfUPPFfN9TyLhL4VhE1XrRWliASwaLCjb7vlrA76Lk,2114
197
- ansys_api_discovery-0.6.10.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
198
- ansys_api_discovery-0.6.10.dist-info/entry_points.txt,sha256=WScutwzRi-SS6g8pXveUJiIOBeIoLBqDVpsPMCAYzmY,91
199
- ansys_api_discovery-0.6.10.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
200
- ansys_api_discovery-0.6.10.dist-info/RECORD,,
210
+ ansys/api/discovery/v0/engineeringdata/fandata.proto,sha256=R075p3D0dX2zMDtvujBEIqhPLupMAduZyatElROTvZ8,1578
211
+ ansys/api/discovery/v0/engineeringdata/fandata_pb2.py,sha256=ohc8_Vi-Rvw5hTVEVJJO4LnNrKpAHaH4NIAq1DK7sKo,4000
212
+ ansys/api/discovery/v0/engineeringdata/fandata_pb2.pyi,sha256=x3FICQZhtW3tJfrnYz9ThL4lqQVX8LHKRWQx0SZ8aiQ,7826
213
+ ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.py,sha256=JIiIAlLmM098k1bqR9XRgHTSncl9Btux-mQD9hGF31c,2970
214
+ ansys/api/discovery/v0/engineeringdata/fandata_pb2_grpc.pyi,sha256=7XQljvgDgQXId-vBh74qz2fwKyWoAivskwz0NIc-kbY,938
215
+ ansys_api_discovery-0.6.12.dist-info/LICENSE,sha256=q2LY-0-hseAc1SDA7rBn96IDi2SHenCzygJda8-7AAU,1089
216
+ ansys_api_discovery-0.6.12.dist-info/METADATA,sha256=VrYDbcTwh0U3x-FdUurxVqQflRHU7dh5iS7KJaU1nyM,2114
217
+ ansys_api_discovery-0.6.12.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
218
+ ansys_api_discovery-0.6.12.dist-info/entry_points.txt,sha256=WScutwzRi-SS6g8pXveUJiIOBeIoLBqDVpsPMCAYzmY,91
219
+ ansys_api_discovery-0.6.12.dist-info/top_level.txt,sha256=9rw0UJ0mtof2GA3U8RpqYo6EmbpfE8-wo3NoX6SlYtg,6
220
+ ansys_api_discovery-0.6.12.dist-info/RECORD,,