11
11
from ...models .collective_key_switch import CollectiveKeySwitch
12
12
from ...models .computation import Computation
13
13
from ...models .dataset_statistics import DatasetStatistics
14
- from ...models .distributed_join import DistributedJoin
15
14
from ...models .dummy import Dummy
16
15
from ...models .encrypted_aggregation import EncryptedAggregation
17
16
from ...models .encrypted_mean import EncryptedMean
25
24
from ...models .private_search_setup import PrivateSearchSetup
26
25
from ...models .relin_key_gen import RelinKeyGen
27
26
from ...models .rot_key_gen import RotKeyGen
28
- from ...models .sample_extraction import SampleExtraction
29
27
from ...models .set_intersection import SetIntersection
30
28
from ...models .setup_session import SetupSession
31
29
from ...models .survival_aggregation import SurvivalAggregation
@@ -42,7 +40,6 @@ def _get_kwargs(
42
40
"CollectiveKeyGen" ,
43
41
"CollectiveKeySwitch" ,
44
42
"DatasetStatistics" ,
45
- "DistributedJoin" ,
46
43
"Dummy" ,
47
44
"EncryptedAggregation" ,
48
45
"EncryptedMean" ,
@@ -55,7 +52,6 @@ def _get_kwargs(
55
52
"PrivateSearchSetup" ,
56
53
"RelinKeyGen" ,
57
54
"RotKeyGen" ,
58
- "SampleExtraction" ,
59
55
"SetIntersection" ,
60
56
"SetupSession" ,
61
57
"SurvivalAggregation" ,
@@ -111,12 +107,6 @@ def _get_kwargs(
111
107
elif isinstance (json_body , SetupSession ):
112
108
json_json_body = json_body .to_dict ()
113
109
114
- elif isinstance (json_body , DistributedJoin ):
115
- json_json_body = json_body .to_dict ()
116
-
117
- elif isinstance (json_body , SampleExtraction ):
118
- json_json_body = json_body .to_dict ()
119
-
120
110
elif isinstance (json_body , GWAS ):
121
111
json_json_body = json_body .to_dict ()
122
112
@@ -205,7 +195,6 @@ def sync_detailed(
205
195
"CollectiveKeyGen" ,
206
196
"CollectiveKeySwitch" ,
207
197
"DatasetStatistics" ,
208
- "DistributedJoin" ,
209
198
"Dummy" ,
210
199
"EncryptedAggregation" ,
211
200
"EncryptedMean" ,
@@ -218,7 +207,6 @@ def sync_detailed(
218
207
"PrivateSearchSetup" ,
219
208
"RelinKeyGen" ,
220
209
"RotKeyGen" ,
221
- "SampleExtraction" ,
222
210
"SetIntersection" ,
223
211
"SetupSession" ,
224
212
"SurvivalAggregation" ,
@@ -229,11 +217,11 @@ def sync_detailed(
229
217
230
218
Args:
231
219
json_body (Union['AggregatedDatasetLength', 'Bootstrap', 'CollectiveKeyGen',
232
- 'CollectiveKeySwitch', 'DatasetStatistics', 'DistributedJoin ', 'Dummy ',
233
- 'EncryptedAggregation ', 'EncryptedMean ', 'EncryptedPrediction ', 'EncryptedRegression ',
234
- 'GWAS ', 'HybridFL ', 'KeySwitchedComputation ', 'PrivateSearch', 'PrivateSearchSetup ',
235
- 'RelinKeyGen', ' RotKeyGen', 'SampleExtraction ', 'SetIntersection ', 'SetupSession ',
236
- 'SurvivalAggregation', ' VBinnedAggregation']):
220
+ 'CollectiveKeySwitch', 'DatasetStatistics', 'Dummy ', 'EncryptedAggregation ',
221
+ 'EncryptedMean ', 'EncryptedPrediction ', 'EncryptedRegression ', 'GWAS', 'HybridFL ',
222
+ 'KeySwitchedComputation ', 'PrivateSearch ', 'PrivateSearchSetup ', 'RelinKeyGen ',
223
+ 'RotKeyGen', 'SetIntersection ', 'SetupSession ', 'SurvivalAggregation ',
224
+ 'VBinnedAggregation']):
237
225
238
226
Raises:
239
227
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -265,7 +253,6 @@ def sync(
265
253
"CollectiveKeyGen" ,
266
254
"CollectiveKeySwitch" ,
267
255
"DatasetStatistics" ,
268
- "DistributedJoin" ,
269
256
"Dummy" ,
270
257
"EncryptedAggregation" ,
271
258
"EncryptedMean" ,
@@ -278,7 +265,6 @@ def sync(
278
265
"PrivateSearchSetup" ,
279
266
"RelinKeyGen" ,
280
267
"RotKeyGen" ,
281
- "SampleExtraction" ,
282
268
"SetIntersection" ,
283
269
"SetupSession" ,
284
270
"SurvivalAggregation" ,
@@ -289,11 +275,11 @@ def sync(
289
275
290
276
Args:
291
277
json_body (Union['AggregatedDatasetLength', 'Bootstrap', 'CollectiveKeyGen',
292
- 'CollectiveKeySwitch', 'DatasetStatistics', 'DistributedJoin ', 'Dummy ',
293
- 'EncryptedAggregation ', 'EncryptedMean ', 'EncryptedPrediction ', 'EncryptedRegression ',
294
- 'GWAS ', 'HybridFL ', 'KeySwitchedComputation ', 'PrivateSearch', 'PrivateSearchSetup ',
295
- 'RelinKeyGen', ' RotKeyGen', 'SampleExtraction ', 'SetIntersection ', 'SetupSession ',
296
- 'SurvivalAggregation', ' VBinnedAggregation']):
278
+ 'CollectiveKeySwitch', 'DatasetStatistics', 'Dummy ', 'EncryptedAggregation ',
279
+ 'EncryptedMean ', 'EncryptedPrediction ', 'EncryptedRegression ', 'GWAS', 'HybridFL ',
280
+ 'KeySwitchedComputation ', 'PrivateSearch ', 'PrivateSearchSetup ', 'RelinKeyGen ',
281
+ 'RotKeyGen', 'SetIntersection ', 'SetupSession ', 'SurvivalAggregation ',
282
+ 'VBinnedAggregation']):
297
283
298
284
Raises:
299
285
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -318,7 +304,6 @@ async def asyncio_detailed(
318
304
"CollectiveKeyGen" ,
319
305
"CollectiveKeySwitch" ,
320
306
"DatasetStatistics" ,
321
- "DistributedJoin" ,
322
307
"Dummy" ,
323
308
"EncryptedAggregation" ,
324
309
"EncryptedMean" ,
@@ -331,7 +316,6 @@ async def asyncio_detailed(
331
316
"PrivateSearchSetup" ,
332
317
"RelinKeyGen" ,
333
318
"RotKeyGen" ,
334
- "SampleExtraction" ,
335
319
"SetIntersection" ,
336
320
"SetupSession" ,
337
321
"SurvivalAggregation" ,
@@ -342,11 +326,11 @@ async def asyncio_detailed(
342
326
343
327
Args:
344
328
json_body (Union['AggregatedDatasetLength', 'Bootstrap', 'CollectiveKeyGen',
345
- 'CollectiveKeySwitch', 'DatasetStatistics', 'DistributedJoin ', 'Dummy ',
346
- 'EncryptedAggregation ', 'EncryptedMean ', 'EncryptedPrediction ', 'EncryptedRegression ',
347
- 'GWAS ', 'HybridFL ', 'KeySwitchedComputation ', 'PrivateSearch', 'PrivateSearchSetup ',
348
- 'RelinKeyGen', ' RotKeyGen', 'SampleExtraction ', 'SetIntersection ', 'SetupSession ',
349
- 'SurvivalAggregation', ' VBinnedAggregation']):
329
+ 'CollectiveKeySwitch', 'DatasetStatistics', 'Dummy ', 'EncryptedAggregation ',
330
+ 'EncryptedMean ', 'EncryptedPrediction ', 'EncryptedRegression ', 'GWAS', 'HybridFL ',
331
+ 'KeySwitchedComputation ', 'PrivateSearch ', 'PrivateSearchSetup ', 'RelinKeyGen ',
332
+ 'RotKeyGen', 'SetIntersection ', 'SetupSession ', 'SurvivalAggregation ',
333
+ 'VBinnedAggregation']):
350
334
351
335
Raises:
352
336
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -376,7 +360,6 @@ async def asyncio(
376
360
"CollectiveKeyGen" ,
377
361
"CollectiveKeySwitch" ,
378
362
"DatasetStatistics" ,
379
- "DistributedJoin" ,
380
363
"Dummy" ,
381
364
"EncryptedAggregation" ,
382
365
"EncryptedMean" ,
@@ -389,7 +372,6 @@ async def asyncio(
389
372
"PrivateSearchSetup" ,
390
373
"RelinKeyGen" ,
391
374
"RotKeyGen" ,
392
- "SampleExtraction" ,
393
375
"SetIntersection" ,
394
376
"SetupSession" ,
395
377
"SurvivalAggregation" ,
@@ -400,11 +382,11 @@ async def asyncio(
400
382
401
383
Args:
402
384
json_body (Union['AggregatedDatasetLength', 'Bootstrap', 'CollectiveKeyGen',
403
- 'CollectiveKeySwitch', 'DatasetStatistics', 'DistributedJoin ', 'Dummy ',
404
- 'EncryptedAggregation ', 'EncryptedMean ', 'EncryptedPrediction ', 'EncryptedRegression ',
405
- 'GWAS ', 'HybridFL ', 'KeySwitchedComputation ', 'PrivateSearch', 'PrivateSearchSetup ',
406
- 'RelinKeyGen', ' RotKeyGen', 'SampleExtraction ', 'SetIntersection ', 'SetupSession ',
407
- 'SurvivalAggregation', ' VBinnedAggregation']):
385
+ 'CollectiveKeySwitch', 'DatasetStatistics', 'Dummy ', 'EncryptedAggregation ',
386
+ 'EncryptedMean ', 'EncryptedPrediction ', 'EncryptedRegression ', 'GWAS', 'HybridFL ',
387
+ 'KeySwitchedComputation ', 'PrivateSearch ', 'PrivateSearchSetup ', 'RelinKeyGen ',
388
+ 'RotKeyGen', 'SetIntersection ', 'SetupSession ', 'SurvivalAggregation ',
389
+ 'VBinnedAggregation']):
408
390
409
391
Raises:
410
392
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
0 commit comments