dlubal.api 0.1.293714a1__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 dlubal.api might be problematic. Click here for more details.

Files changed (342) hide show
  1. dlubal/__init__.py +0 -0
  2. dlubal/api/__init__.py +0 -0
  3. dlubal/api/common/__init__.py +3 -0
  4. dlubal/api/common/common_pb2.py +42 -0
  5. dlubal/api/common/common_pb2.pyi +41 -0
  6. dlubal/api/common/connection.py +251 -0
  7. dlubal/api/common/exceptions.py +12 -0
  8. dlubal/api/common/model_id_pb2.py +38 -0
  9. dlubal/api/common/model_id_pb2.pyi +17 -0
  10. dlubal/api/common/table.py +35 -0
  11. dlubal/api/common/table_data_pb2.py +39 -0
  12. dlubal/api/common/table_data_pb2.pyi +21 -0
  13. dlubal/api/rfem/__init__.py +32 -0
  14. dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
  15. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
  16. dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
  17. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
  18. dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
  19. dlubal/api/rfem/application.py +290 -0
  20. dlubal/api/rfem/application_pb2.py +67 -0
  21. dlubal/api/rfem/application_pb2.pyi +135 -0
  22. dlubal/api/rfem/application_pb2_grpc.py +973 -0
  23. dlubal/api/rfem/base_data/__init__.py +1 -0
  24. dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
  25. dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
  26. dlubal/api/rfem/building_model/__init__.py +4 -0
  27. dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
  28. dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
  29. dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
  30. dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
  31. dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
  32. dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
  33. dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
  34. dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
  35. dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
  36. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
  37. dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
  38. dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
  39. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
  40. dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
  41. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
  42. dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
  43. dlubal/api/rfem/construction_stages/__init__.py +1 -0
  44. dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
  45. dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
  46. dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
  47. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
  48. dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
  49. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
  50. dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
  51. dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
  52. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
  53. dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
  54. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
  55. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
  56. dlubal/api/rfem/global_parameters/__init__.py +1 -0
  57. dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
  58. dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
  59. dlubal/api/rfem/guide_objects/__init__.py +10 -0
  60. dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
  61. dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
  62. dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
  63. dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
  64. dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
  65. dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
  66. dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
  67. dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
  68. dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
  69. dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
  70. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
  71. dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
  72. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
  73. dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
  74. dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
  75. dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
  76. dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
  77. dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
  78. dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
  79. dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
  80. dlubal/api/rfem/imperfections/__init__.py +5 -0
  81. dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
  82. dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
  83. dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
  84. dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
  85. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
  86. dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
  87. dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
  88. dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
  89. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
  90. dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
  91. dlubal/api/rfem/load_wizards/__init__.py +2 -0
  92. dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
  93. dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
  94. dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
  95. dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
  96. dlubal/api/rfem/loading/__init__.py +15 -0
  97. dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
  98. dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
  99. dlubal/api/rfem/loading/action_pb2.py +42 -0
  100. dlubal/api/rfem/loading/action_pb2.pyi +80 -0
  101. dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
  102. dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
  103. dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
  104. dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
  105. dlubal/api/rfem/loading/load_case_pb2.py +77 -0
  106. dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
  107. dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
  108. dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
  109. dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
  110. dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
  111. dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
  112. dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
  113. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
  114. dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
  115. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
  116. dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
  117. dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
  118. dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
  119. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
  120. dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
  121. dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
  122. dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
  123. dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
  124. dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
  125. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
  126. dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
  127. dlubal/api/rfem/loads/__init__.py +17 -0
  128. dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
  129. dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
  130. dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
  131. dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
  132. dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
  133. dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
  134. dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
  135. dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
  136. dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
  137. dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
  138. dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
  139. dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
  140. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
  141. dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
  142. dlubal/api/rfem/loads/line_load_pb2.py +46 -0
  143. dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
  144. dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
  145. dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
  146. dlubal/api/rfem/loads/member_load_pb2.py +67 -0
  147. dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
  148. dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
  149. dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
  150. dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
  151. dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
  152. dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
  153. dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
  154. dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
  155. dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
  156. dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
  157. dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
  158. dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
  159. dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
  160. dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
  161. dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
  162. dlubal/api/rfem/packing.py +45 -0
  163. dlubal/api/rfem/result_objects/__init__.py +1 -0
  164. dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
  165. dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
  166. dlubal/api/rfem/results/__init__.py +2 -0
  167. dlubal/api/rfem/results/results_id_pb2.py +36 -0
  168. dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
  169. dlubal/api/rfem/results/results_query_pb2.py +40 -0
  170. dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
  171. dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
  172. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
  173. dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
  174. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
  175. dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
  176. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
  177. dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
  178. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
  179. dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
  180. dlubal/api/rfem/structure_advanced/__init__.py +9 -0
  181. dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
  182. dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
  183. dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
  184. dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
  185. dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
  186. dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
  187. dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
  188. dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
  189. dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
  190. dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
  191. dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
  192. dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
  193. dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
  194. dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
  195. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
  196. dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
  197. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
  198. dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
  199. dlubal/api/rfem/structure_core/__init__.py +15 -0
  200. dlubal/api/rfem/structure_core/line_pb2.py +53 -0
  201. dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
  202. dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
  203. dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
  204. dlubal/api/rfem/structure_core/material_pb2.py +100 -0
  205. dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
  206. dlubal/api/rfem/structure_core/member_pb2.py +79 -0
  207. dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
  208. dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
  209. dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
  210. dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
  211. dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
  212. dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
  213. dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
  214. dlubal/api/rfem/structure_core/node_pb2.py +43 -0
  215. dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
  216. dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
  217. dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
  218. dlubal/api/rfem/structure_core/section_pb2.py +66 -0
  219. dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
  220. dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
  221. dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
  222. dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
  223. dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
  224. dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
  225. dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
  226. dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
  227. dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
  228. dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
  229. dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
  230. dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
  231. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
  232. dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
  233. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
  234. dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
  235. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
  236. dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
  237. dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
  238. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
  239. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
  240. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
  241. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
  242. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
  243. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
  244. dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
  245. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
  246. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
  247. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
  248. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
  249. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
  250. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
  251. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
  252. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
  253. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
  254. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
  255. dlubal/api/rfem/types_for_lines/__init__.py +4 -0
  256. dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
  257. dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
  258. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
  259. dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
  260. dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
  261. dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
  262. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
  263. dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
  264. dlubal/api/rfem/types_for_members/__init__.py +13 -0
  265. dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
  266. dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
  267. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
  268. dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
  269. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
  270. dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
  271. dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
  272. dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
  273. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
  274. dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
  275. dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
  276. dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
  277. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
  278. dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
  279. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
  280. dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
  281. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
  282. dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
  283. dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
  284. dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
  285. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
  286. dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
  287. dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
  288. dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
  289. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
  290. dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
  291. dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
  292. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
  293. dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
  294. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
  295. dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
  296. dlubal/api/rfem/types_for_solids/__init__.py +3 -0
  297. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
  298. dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
  299. dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
  300. dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
  301. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
  302. dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
  303. dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
  304. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
  305. dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
  306. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
  307. dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
  308. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
  309. dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
  310. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
  311. dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
  312. dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
  313. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
  314. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
  315. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
  316. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
  317. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
  318. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
  319. dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
  320. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
  321. dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
  322. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
  323. dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
  324. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
  325. dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
  326. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
  327. dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
  328. dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
  329. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
  330. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
  331. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
  332. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
  333. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
  334. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
  335. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
  336. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
  337. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
  338. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
  339. dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
  340. dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
  341. dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
  342. dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,973 @@
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
+ import warnings
5
+
6
+ from dlubal.api.common import model_id_pb2 as dlubal_dot_api_dot_common_dot_model__id__pb2
7
+ from dlubal.api.common import table_data_pb2 as dlubal_dot_api_dot_common_dot_table__data__pb2
8
+ from dlubal.api.rfem import application_pb2 as dlubal_dot_api_dot_rfem_dot_application__pb2
9
+ from dlubal.api.rfem.results import results_query_pb2 as dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2
10
+ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
11
+
12
+ GRPC_GENERATED_VERSION = '1.68.0'
13
+ GRPC_VERSION = grpc.__version__
14
+ _version_not_supported = False
15
+
16
+ try:
17
+ from grpc._utilities import first_version_is_lower
18
+ _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
19
+ except ImportError:
20
+ _version_not_supported = True
21
+
22
+ if _version_not_supported:
23
+ raise RuntimeError(
24
+ f'The grpc package installed is at version {GRPC_VERSION},'
25
+ + f' but the generated code in dlubal/api/rfem/application_pb2_grpc.py depends on'
26
+ + f' grpcio>={GRPC_GENERATED_VERSION}.'
27
+ + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
28
+ + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
29
+ )
30
+
31
+
32
+ class ApplicationStub(object):
33
+ """Missing associated documentation comment in .proto file."""
34
+
35
+ def __init__(self, channel):
36
+ """Constructor.
37
+
38
+ Args:
39
+ channel: A grpc.Channel.
40
+ """
41
+ self.create_model = channel.unary_unary(
42
+ '/dlubal.api.rfem.Application/create_model',
43
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CreateModelRequest.SerializeToString,
44
+ response_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
45
+ _registered_method=True)
46
+ self.open_model = channel.unary_unary(
47
+ '/dlubal.api.rfem.Application/open_model',
48
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.OpenModelRequest.SerializeToString,
49
+ response_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
50
+ _registered_method=True)
51
+ self.save_model = channel.unary_unary(
52
+ '/dlubal.api.rfem.Application/save_model',
53
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.SaveModelAsRequest.SerializeToString,
54
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
55
+ _registered_method=True)
56
+ self.close_model = channel.unary_unary(
57
+ '/dlubal.api.rfem.Application/close_model',
58
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CloseModelRequest.SerializeToString,
59
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
60
+ _registered_method=True)
61
+ self.close_all_models = channel.unary_unary(
62
+ '/dlubal.api.rfem.Application/close_all_models',
63
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CloseAllModelsRequest.SerializeToString,
64
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
65
+ _registered_method=True)
66
+ self.get_active_model = channel.unary_unary(
67
+ '/dlubal.api.rfem.Application/get_active_model',
68
+ request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
69
+ response_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
70
+ _registered_method=True)
71
+ self.close_application = channel.unary_unary(
72
+ '/dlubal.api.rfem.Application/close_application',
73
+ request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
74
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
75
+ _registered_method=True)
76
+ self.get_model_list = channel.unary_unary(
77
+ '/dlubal.api.rfem.Application/get_model_list',
78
+ request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
79
+ response_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ModelList.FromString,
80
+ _registered_method=True)
81
+ self.get_application_info = channel.unary_unary(
82
+ '/dlubal.api.rfem.Application/get_application_info',
83
+ request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
84
+ response_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ApplicationInfo.FromString,
85
+ _registered_method=True)
86
+ self.close_connection = channel.unary_unary(
87
+ '/dlubal.api.rfem.Application/close_connection',
88
+ request_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
89
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
90
+ _registered_method=True)
91
+ self.get_object_impl = channel.unary_unary(
92
+ '/dlubal.api.rfem.Application/get_object_impl',
93
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.SerializeToString,
94
+ response_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.FromString,
95
+ _registered_method=True)
96
+ self.get_object_list_impl = channel.unary_unary(
97
+ '/dlubal.api.rfem.Application/get_object_list_impl',
98
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.SerializeToString,
99
+ response_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.FromString,
100
+ _registered_method=True)
101
+ self.create_object_impl = channel.unary_unary(
102
+ '/dlubal.api.rfem.Application/create_object_impl',
103
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.SerializeToString,
104
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
105
+ _registered_method=True)
106
+ self.create_object_list_impl = channel.unary_unary(
107
+ '/dlubal.api.rfem.Application/create_object_list_impl',
108
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.SerializeToString,
109
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
110
+ _registered_method=True)
111
+ self.update_object_impl = channel.unary_unary(
112
+ '/dlubal.api.rfem.Application/update_object_impl',
113
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.SerializeToString,
114
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
115
+ _registered_method=True)
116
+ self.update_object_list_impl = channel.unary_unary(
117
+ '/dlubal.api.rfem.Application/update_object_list_impl',
118
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.SerializeToString,
119
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
120
+ _registered_method=True)
121
+ self.delete_object_impl = channel.unary_unary(
122
+ '/dlubal.api.rfem.Application/delete_object_impl',
123
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.SerializeToString,
124
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
125
+ _registered_method=True)
126
+ self.delete_object_list_impl = channel.unary_unary(
127
+ '/dlubal.api.rfem.Application/delete_object_list_impl',
128
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.SerializeToString,
129
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
130
+ _registered_method=True)
131
+ self.delete_all_objects = channel.unary_unary(
132
+ '/dlubal.api.rfem.Application/delete_all_objects',
133
+ request_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
134
+ response_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
135
+ _registered_method=True)
136
+ self.calculate_all = channel.unary_unary(
137
+ '/dlubal.api.rfem.Application/calculate_all',
138
+ request_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CalculateAllRequest.SerializeToString,
139
+ response_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.OperationResult.FromString,
140
+ _registered_method=True)
141
+ self.get_results_impl = channel.unary_unary(
142
+ '/dlubal.api.rfem.Application/get_results_impl',
143
+ request_serializer=dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2.ResultsQuery.SerializeToString,
144
+ response_deserializer=dlubal_dot_api_dot_common_dot_table__data__pb2.TableData.FromString,
145
+ _registered_method=True)
146
+
147
+
148
+ class ApplicationServicer(object):
149
+ """Missing associated documentation comment in .proto file."""
150
+
151
+ def create_model(self, request, context):
152
+ """Creates new model with the name specified in request.
153
+ Returns model id of created model
154
+ """
155
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
156
+ context.set_details('Method not implemented!')
157
+ raise NotImplementedError('Method not implemented!')
158
+
159
+ def open_model(self, request, context):
160
+ """Opens model from path specified in 'name' field of the request
161
+ Returns model id of opened model
162
+ """
163
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
164
+ context.set_details('Method not implemented!')
165
+ raise NotImplementedError('Method not implemented!')
166
+
167
+ def save_model(self, request, context):
168
+ """Saves model specified by model id to optional specified path
169
+ """
170
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
171
+ context.set_details('Method not implemented!')
172
+ raise NotImplementedError('Method not implemented!')
173
+
174
+ def close_model(self, request, context):
175
+ """Closes model specified by model id
176
+ """
177
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
178
+ context.set_details('Method not implemented!')
179
+ raise NotImplementedError('Method not implemented!')
180
+
181
+ def close_all_models(self, request, context):
182
+ """Closes all open models
183
+ """
184
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
185
+ context.set_details('Method not implemented!')
186
+ raise NotImplementedError('Method not implemented!')
187
+
188
+ def get_active_model(self, request, context):
189
+ """Returns model id of an active model
190
+ """
191
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
192
+ context.set_details('Method not implemented!')
193
+ raise NotImplementedError('Method not implemented!')
194
+
195
+ def close_application(self, request, context):
196
+ """Closes the whole application
197
+ """
198
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
199
+ context.set_details('Method not implemented!')
200
+ raise NotImplementedError('Method not implemented!')
201
+
202
+ def get_model_list(self, request, context):
203
+ """Returns list of models and information about them
204
+ """
205
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
206
+ context.set_details('Method not implemented!')
207
+ raise NotImplementedError('Method not implemented!')
208
+
209
+ def get_application_info(self, request, context):
210
+ """Returns information about the application
211
+ """
212
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
213
+ context.set_details('Method not implemented!')
214
+ raise NotImplementedError('Method not implemented!')
215
+
216
+ def close_connection(self, request, context):
217
+ """Closes connection to Webservice server
218
+ """
219
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
220
+ context.set_details('Method not implemented!')
221
+ raise NotImplementedError('Method not implemented!')
222
+
223
+ def get_object_impl(self, request, context):
224
+ """Missing associated documentation comment in .proto file."""
225
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
226
+ context.set_details('Method not implemented!')
227
+ raise NotImplementedError('Method not implemented!')
228
+
229
+ def get_object_list_impl(self, request, context):
230
+ """Missing associated documentation comment in .proto file."""
231
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
232
+ context.set_details('Method not implemented!')
233
+ raise NotImplementedError('Method not implemented!')
234
+
235
+ def create_object_impl(self, request, context):
236
+ """Missing associated documentation comment in .proto file."""
237
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
238
+ context.set_details('Method not implemented!')
239
+ raise NotImplementedError('Method not implemented!')
240
+
241
+ def create_object_list_impl(self, request, context):
242
+ """Missing associated documentation comment in .proto file."""
243
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
244
+ context.set_details('Method not implemented!')
245
+ raise NotImplementedError('Method not implemented!')
246
+
247
+ def update_object_impl(self, request, context):
248
+ """Missing associated documentation comment in .proto file."""
249
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
250
+ context.set_details('Method not implemented!')
251
+ raise NotImplementedError('Method not implemented!')
252
+
253
+ def update_object_list_impl(self, request, context):
254
+ """Missing associated documentation comment in .proto file."""
255
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
256
+ context.set_details('Method not implemented!')
257
+ raise NotImplementedError('Method not implemented!')
258
+
259
+ def delete_object_impl(self, request, context):
260
+ """Missing associated documentation comment in .proto file."""
261
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
262
+ context.set_details('Method not implemented!')
263
+ raise NotImplementedError('Method not implemented!')
264
+
265
+ def delete_object_list_impl(self, request, context):
266
+ """Missing associated documentation comment in .proto file."""
267
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
268
+ context.set_details('Method not implemented!')
269
+ raise NotImplementedError('Method not implemented!')
270
+
271
+ def delete_all_objects(self, request, context):
272
+ """Missing associated documentation comment in .proto file."""
273
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
274
+ context.set_details('Method not implemented!')
275
+ raise NotImplementedError('Method not implemented!')
276
+
277
+ def calculate_all(self, request, context):
278
+ """Missing associated documentation comment in .proto file."""
279
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
280
+ context.set_details('Method not implemented!')
281
+ raise NotImplementedError('Method not implemented!')
282
+
283
+ def get_results_impl(self, request, context):
284
+ """Missing associated documentation comment in .proto file."""
285
+ context.set_code(grpc.StatusCode.UNIMPLEMENTED)
286
+ context.set_details('Method not implemented!')
287
+ raise NotImplementedError('Method not implemented!')
288
+
289
+
290
+ def add_ApplicationServicer_to_server(servicer, server):
291
+ rpc_method_handlers = {
292
+ 'create_model': grpc.unary_unary_rpc_method_handler(
293
+ servicer.create_model,
294
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CreateModelRequest.FromString,
295
+ response_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.SerializeToString,
296
+ ),
297
+ 'open_model': grpc.unary_unary_rpc_method_handler(
298
+ servicer.open_model,
299
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.OpenModelRequest.FromString,
300
+ response_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.SerializeToString,
301
+ ),
302
+ 'save_model': grpc.unary_unary_rpc_method_handler(
303
+ servicer.save_model,
304
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.SaveModelAsRequest.FromString,
305
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
306
+ ),
307
+ 'close_model': grpc.unary_unary_rpc_method_handler(
308
+ servicer.close_model,
309
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CloseModelRequest.FromString,
310
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
311
+ ),
312
+ 'close_all_models': grpc.unary_unary_rpc_method_handler(
313
+ servicer.close_all_models,
314
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CloseAllModelsRequest.FromString,
315
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
316
+ ),
317
+ 'get_active_model': grpc.unary_unary_rpc_method_handler(
318
+ servicer.get_active_model,
319
+ request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
320
+ response_serializer=dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.SerializeToString,
321
+ ),
322
+ 'close_application': grpc.unary_unary_rpc_method_handler(
323
+ servicer.close_application,
324
+ request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
325
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
326
+ ),
327
+ 'get_model_list': grpc.unary_unary_rpc_method_handler(
328
+ servicer.get_model_list,
329
+ request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
330
+ response_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ModelList.SerializeToString,
331
+ ),
332
+ 'get_application_info': grpc.unary_unary_rpc_method_handler(
333
+ servicer.get_application_info,
334
+ request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
335
+ response_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ApplicationInfo.SerializeToString,
336
+ ),
337
+ 'close_connection': grpc.unary_unary_rpc_method_handler(
338
+ servicer.close_connection,
339
+ request_deserializer=google_dot_protobuf_dot_empty__pb2.Empty.FromString,
340
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
341
+ ),
342
+ 'get_object_impl': grpc.unary_unary_rpc_method_handler(
343
+ servicer.get_object_impl,
344
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.FromString,
345
+ response_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.SerializeToString,
346
+ ),
347
+ 'get_object_list_impl': grpc.unary_unary_rpc_method_handler(
348
+ servicer.get_object_list_impl,
349
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.FromString,
350
+ response_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.SerializeToString,
351
+ ),
352
+ 'create_object_impl': grpc.unary_unary_rpc_method_handler(
353
+ servicer.create_object_impl,
354
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.FromString,
355
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
356
+ ),
357
+ 'create_object_list_impl': grpc.unary_unary_rpc_method_handler(
358
+ servicer.create_object_list_impl,
359
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.FromString,
360
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
361
+ ),
362
+ 'update_object_impl': grpc.unary_unary_rpc_method_handler(
363
+ servicer.update_object_impl,
364
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.FromString,
365
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
366
+ ),
367
+ 'update_object_list_impl': grpc.unary_unary_rpc_method_handler(
368
+ servicer.update_object_list_impl,
369
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.FromString,
370
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
371
+ ),
372
+ 'delete_object_impl': grpc.unary_unary_rpc_method_handler(
373
+ servicer.delete_object_impl,
374
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.Object.FromString,
375
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
376
+ ),
377
+ 'delete_object_list_impl': grpc.unary_unary_rpc_method_handler(
378
+ servicer.delete_object_list_impl,
379
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.FromString,
380
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
381
+ ),
382
+ 'delete_all_objects': grpc.unary_unary_rpc_method_handler(
383
+ servicer.delete_all_objects,
384
+ request_deserializer=dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.FromString,
385
+ response_serializer=google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
386
+ ),
387
+ 'calculate_all': grpc.unary_unary_rpc_method_handler(
388
+ servicer.calculate_all,
389
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_application__pb2.CalculateAllRequest.FromString,
390
+ response_serializer=dlubal_dot_api_dot_rfem_dot_application__pb2.OperationResult.SerializeToString,
391
+ ),
392
+ 'get_results_impl': grpc.unary_unary_rpc_method_handler(
393
+ servicer.get_results_impl,
394
+ request_deserializer=dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2.ResultsQuery.FromString,
395
+ response_serializer=dlubal_dot_api_dot_common_dot_table__data__pb2.TableData.SerializeToString,
396
+ ),
397
+ }
398
+ generic_handler = grpc.method_handlers_generic_handler(
399
+ 'dlubal.api.rfem.Application', rpc_method_handlers)
400
+ server.add_generic_rpc_handlers((generic_handler,))
401
+ server.add_registered_method_handlers('dlubal.api.rfem.Application', rpc_method_handlers)
402
+
403
+
404
+ # This class is part of an EXPERIMENTAL API.
405
+ class Application(object):
406
+ """Missing associated documentation comment in .proto file."""
407
+
408
+ @staticmethod
409
+ def create_model(request,
410
+ target,
411
+ options=(),
412
+ channel_credentials=None,
413
+ call_credentials=None,
414
+ insecure=False,
415
+ compression=None,
416
+ wait_for_ready=None,
417
+ timeout=None,
418
+ metadata=None):
419
+ return grpc.experimental.unary_unary(
420
+ request,
421
+ target,
422
+ '/dlubal.api.rfem.Application/create_model',
423
+ dlubal_dot_api_dot_rfem_dot_application__pb2.CreateModelRequest.SerializeToString,
424
+ dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
425
+ options,
426
+ channel_credentials,
427
+ insecure,
428
+ call_credentials,
429
+ compression,
430
+ wait_for_ready,
431
+ timeout,
432
+ metadata,
433
+ _registered_method=True)
434
+
435
+ @staticmethod
436
+ def open_model(request,
437
+ target,
438
+ options=(),
439
+ channel_credentials=None,
440
+ call_credentials=None,
441
+ insecure=False,
442
+ compression=None,
443
+ wait_for_ready=None,
444
+ timeout=None,
445
+ metadata=None):
446
+ return grpc.experimental.unary_unary(
447
+ request,
448
+ target,
449
+ '/dlubal.api.rfem.Application/open_model',
450
+ dlubal_dot_api_dot_rfem_dot_application__pb2.OpenModelRequest.SerializeToString,
451
+ dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
452
+ options,
453
+ channel_credentials,
454
+ insecure,
455
+ call_credentials,
456
+ compression,
457
+ wait_for_ready,
458
+ timeout,
459
+ metadata,
460
+ _registered_method=True)
461
+
462
+ @staticmethod
463
+ def save_model(request,
464
+ target,
465
+ options=(),
466
+ channel_credentials=None,
467
+ call_credentials=None,
468
+ insecure=False,
469
+ compression=None,
470
+ wait_for_ready=None,
471
+ timeout=None,
472
+ metadata=None):
473
+ return grpc.experimental.unary_unary(
474
+ request,
475
+ target,
476
+ '/dlubal.api.rfem.Application/save_model',
477
+ dlubal_dot_api_dot_rfem_dot_application__pb2.SaveModelAsRequest.SerializeToString,
478
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
479
+ options,
480
+ channel_credentials,
481
+ insecure,
482
+ call_credentials,
483
+ compression,
484
+ wait_for_ready,
485
+ timeout,
486
+ metadata,
487
+ _registered_method=True)
488
+
489
+ @staticmethod
490
+ def close_model(request,
491
+ target,
492
+ options=(),
493
+ channel_credentials=None,
494
+ call_credentials=None,
495
+ insecure=False,
496
+ compression=None,
497
+ wait_for_ready=None,
498
+ timeout=None,
499
+ metadata=None):
500
+ return grpc.experimental.unary_unary(
501
+ request,
502
+ target,
503
+ '/dlubal.api.rfem.Application/close_model',
504
+ dlubal_dot_api_dot_rfem_dot_application__pb2.CloseModelRequest.SerializeToString,
505
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
506
+ options,
507
+ channel_credentials,
508
+ insecure,
509
+ call_credentials,
510
+ compression,
511
+ wait_for_ready,
512
+ timeout,
513
+ metadata,
514
+ _registered_method=True)
515
+
516
+ @staticmethod
517
+ def close_all_models(request,
518
+ target,
519
+ options=(),
520
+ channel_credentials=None,
521
+ call_credentials=None,
522
+ insecure=False,
523
+ compression=None,
524
+ wait_for_ready=None,
525
+ timeout=None,
526
+ metadata=None):
527
+ return grpc.experimental.unary_unary(
528
+ request,
529
+ target,
530
+ '/dlubal.api.rfem.Application/close_all_models',
531
+ dlubal_dot_api_dot_rfem_dot_application__pb2.CloseAllModelsRequest.SerializeToString,
532
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
533
+ options,
534
+ channel_credentials,
535
+ insecure,
536
+ call_credentials,
537
+ compression,
538
+ wait_for_ready,
539
+ timeout,
540
+ metadata,
541
+ _registered_method=True)
542
+
543
+ @staticmethod
544
+ def get_active_model(request,
545
+ target,
546
+ options=(),
547
+ channel_credentials=None,
548
+ call_credentials=None,
549
+ insecure=False,
550
+ compression=None,
551
+ wait_for_ready=None,
552
+ timeout=None,
553
+ metadata=None):
554
+ return grpc.experimental.unary_unary(
555
+ request,
556
+ target,
557
+ '/dlubal.api.rfem.Application/get_active_model',
558
+ google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
559
+ dlubal_dot_api_dot_common_dot_model__id__pb2.ModelId.FromString,
560
+ options,
561
+ channel_credentials,
562
+ insecure,
563
+ call_credentials,
564
+ compression,
565
+ wait_for_ready,
566
+ timeout,
567
+ metadata,
568
+ _registered_method=True)
569
+
570
+ @staticmethod
571
+ def close_application(request,
572
+ target,
573
+ options=(),
574
+ channel_credentials=None,
575
+ call_credentials=None,
576
+ insecure=False,
577
+ compression=None,
578
+ wait_for_ready=None,
579
+ timeout=None,
580
+ metadata=None):
581
+ return grpc.experimental.unary_unary(
582
+ request,
583
+ target,
584
+ '/dlubal.api.rfem.Application/close_application',
585
+ google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
586
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
587
+ options,
588
+ channel_credentials,
589
+ insecure,
590
+ call_credentials,
591
+ compression,
592
+ wait_for_ready,
593
+ timeout,
594
+ metadata,
595
+ _registered_method=True)
596
+
597
+ @staticmethod
598
+ def get_model_list(request,
599
+ target,
600
+ options=(),
601
+ channel_credentials=None,
602
+ call_credentials=None,
603
+ insecure=False,
604
+ compression=None,
605
+ wait_for_ready=None,
606
+ timeout=None,
607
+ metadata=None):
608
+ return grpc.experimental.unary_unary(
609
+ request,
610
+ target,
611
+ '/dlubal.api.rfem.Application/get_model_list',
612
+ google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
613
+ dlubal_dot_api_dot_rfem_dot_application__pb2.ModelList.FromString,
614
+ options,
615
+ channel_credentials,
616
+ insecure,
617
+ call_credentials,
618
+ compression,
619
+ wait_for_ready,
620
+ timeout,
621
+ metadata,
622
+ _registered_method=True)
623
+
624
+ @staticmethod
625
+ def get_application_info(request,
626
+ target,
627
+ options=(),
628
+ channel_credentials=None,
629
+ call_credentials=None,
630
+ insecure=False,
631
+ compression=None,
632
+ wait_for_ready=None,
633
+ timeout=None,
634
+ metadata=None):
635
+ return grpc.experimental.unary_unary(
636
+ request,
637
+ target,
638
+ '/dlubal.api.rfem.Application/get_application_info',
639
+ google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
640
+ dlubal_dot_api_dot_rfem_dot_application__pb2.ApplicationInfo.FromString,
641
+ options,
642
+ channel_credentials,
643
+ insecure,
644
+ call_credentials,
645
+ compression,
646
+ wait_for_ready,
647
+ timeout,
648
+ metadata,
649
+ _registered_method=True)
650
+
651
+ @staticmethod
652
+ def close_connection(request,
653
+ target,
654
+ options=(),
655
+ channel_credentials=None,
656
+ call_credentials=None,
657
+ insecure=False,
658
+ compression=None,
659
+ wait_for_ready=None,
660
+ timeout=None,
661
+ metadata=None):
662
+ return grpc.experimental.unary_unary(
663
+ request,
664
+ target,
665
+ '/dlubal.api.rfem.Application/close_connection',
666
+ google_dot_protobuf_dot_empty__pb2.Empty.SerializeToString,
667
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
668
+ options,
669
+ channel_credentials,
670
+ insecure,
671
+ call_credentials,
672
+ compression,
673
+ wait_for_ready,
674
+ timeout,
675
+ metadata,
676
+ _registered_method=True)
677
+
678
+ @staticmethod
679
+ def get_object_impl(request,
680
+ target,
681
+ options=(),
682
+ channel_credentials=None,
683
+ call_credentials=None,
684
+ insecure=False,
685
+ compression=None,
686
+ wait_for_ready=None,
687
+ timeout=None,
688
+ metadata=None):
689
+ return grpc.experimental.unary_unary(
690
+ request,
691
+ target,
692
+ '/dlubal.api.rfem.Application/get_object_impl',
693
+ dlubal_dot_api_dot_rfem_dot_application__pb2.Object.SerializeToString,
694
+ dlubal_dot_api_dot_rfem_dot_application__pb2.Object.FromString,
695
+ options,
696
+ channel_credentials,
697
+ insecure,
698
+ call_credentials,
699
+ compression,
700
+ wait_for_ready,
701
+ timeout,
702
+ metadata,
703
+ _registered_method=True)
704
+
705
+ @staticmethod
706
+ def get_object_list_impl(request,
707
+ target,
708
+ options=(),
709
+ channel_credentials=None,
710
+ call_credentials=None,
711
+ insecure=False,
712
+ compression=None,
713
+ wait_for_ready=None,
714
+ timeout=None,
715
+ metadata=None):
716
+ return grpc.experimental.unary_unary(
717
+ request,
718
+ target,
719
+ '/dlubal.api.rfem.Application/get_object_list_impl',
720
+ dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.SerializeToString,
721
+ dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.FromString,
722
+ options,
723
+ channel_credentials,
724
+ insecure,
725
+ call_credentials,
726
+ compression,
727
+ wait_for_ready,
728
+ timeout,
729
+ metadata,
730
+ _registered_method=True)
731
+
732
+ @staticmethod
733
+ def create_object_impl(request,
734
+ target,
735
+ options=(),
736
+ channel_credentials=None,
737
+ call_credentials=None,
738
+ insecure=False,
739
+ compression=None,
740
+ wait_for_ready=None,
741
+ timeout=None,
742
+ metadata=None):
743
+ return grpc.experimental.unary_unary(
744
+ request,
745
+ target,
746
+ '/dlubal.api.rfem.Application/create_object_impl',
747
+ dlubal_dot_api_dot_rfem_dot_application__pb2.Object.SerializeToString,
748
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
749
+ options,
750
+ channel_credentials,
751
+ insecure,
752
+ call_credentials,
753
+ compression,
754
+ wait_for_ready,
755
+ timeout,
756
+ metadata,
757
+ _registered_method=True)
758
+
759
+ @staticmethod
760
+ def create_object_list_impl(request,
761
+ target,
762
+ options=(),
763
+ channel_credentials=None,
764
+ call_credentials=None,
765
+ insecure=False,
766
+ compression=None,
767
+ wait_for_ready=None,
768
+ timeout=None,
769
+ metadata=None):
770
+ return grpc.experimental.unary_unary(
771
+ request,
772
+ target,
773
+ '/dlubal.api.rfem.Application/create_object_list_impl',
774
+ dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.SerializeToString,
775
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
776
+ options,
777
+ channel_credentials,
778
+ insecure,
779
+ call_credentials,
780
+ compression,
781
+ wait_for_ready,
782
+ timeout,
783
+ metadata,
784
+ _registered_method=True)
785
+
786
+ @staticmethod
787
+ def update_object_impl(request,
788
+ target,
789
+ options=(),
790
+ channel_credentials=None,
791
+ call_credentials=None,
792
+ insecure=False,
793
+ compression=None,
794
+ wait_for_ready=None,
795
+ timeout=None,
796
+ metadata=None):
797
+ return grpc.experimental.unary_unary(
798
+ request,
799
+ target,
800
+ '/dlubal.api.rfem.Application/update_object_impl',
801
+ dlubal_dot_api_dot_rfem_dot_application__pb2.Object.SerializeToString,
802
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
803
+ options,
804
+ channel_credentials,
805
+ insecure,
806
+ call_credentials,
807
+ compression,
808
+ wait_for_ready,
809
+ timeout,
810
+ metadata,
811
+ _registered_method=True)
812
+
813
+ @staticmethod
814
+ def update_object_list_impl(request,
815
+ target,
816
+ options=(),
817
+ channel_credentials=None,
818
+ call_credentials=None,
819
+ insecure=False,
820
+ compression=None,
821
+ wait_for_ready=None,
822
+ timeout=None,
823
+ metadata=None):
824
+ return grpc.experimental.unary_unary(
825
+ request,
826
+ target,
827
+ '/dlubal.api.rfem.Application/update_object_list_impl',
828
+ dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.SerializeToString,
829
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
830
+ options,
831
+ channel_credentials,
832
+ insecure,
833
+ call_credentials,
834
+ compression,
835
+ wait_for_ready,
836
+ timeout,
837
+ metadata,
838
+ _registered_method=True)
839
+
840
+ @staticmethod
841
+ def delete_object_impl(request,
842
+ target,
843
+ options=(),
844
+ channel_credentials=None,
845
+ call_credentials=None,
846
+ insecure=False,
847
+ compression=None,
848
+ wait_for_ready=None,
849
+ timeout=None,
850
+ metadata=None):
851
+ return grpc.experimental.unary_unary(
852
+ request,
853
+ target,
854
+ '/dlubal.api.rfem.Application/delete_object_impl',
855
+ dlubal_dot_api_dot_rfem_dot_application__pb2.Object.SerializeToString,
856
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
857
+ options,
858
+ channel_credentials,
859
+ insecure,
860
+ call_credentials,
861
+ compression,
862
+ wait_for_ready,
863
+ timeout,
864
+ metadata,
865
+ _registered_method=True)
866
+
867
+ @staticmethod
868
+ def delete_object_list_impl(request,
869
+ target,
870
+ options=(),
871
+ channel_credentials=None,
872
+ call_credentials=None,
873
+ insecure=False,
874
+ compression=None,
875
+ wait_for_ready=None,
876
+ timeout=None,
877
+ metadata=None):
878
+ return grpc.experimental.unary_unary(
879
+ request,
880
+ target,
881
+ '/dlubal.api.rfem.Application/delete_object_list_impl',
882
+ dlubal_dot_api_dot_rfem_dot_application__pb2.ObjectList.SerializeToString,
883
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
884
+ options,
885
+ channel_credentials,
886
+ insecure,
887
+ call_credentials,
888
+ compression,
889
+ wait_for_ready,
890
+ timeout,
891
+ metadata,
892
+ _registered_method=True)
893
+
894
+ @staticmethod
895
+ def delete_all_objects(request,
896
+ target,
897
+ options=(),
898
+ channel_credentials=None,
899
+ call_credentials=None,
900
+ insecure=False,
901
+ compression=None,
902
+ wait_for_ready=None,
903
+ timeout=None,
904
+ metadata=None):
905
+ return grpc.experimental.unary_unary(
906
+ request,
907
+ target,
908
+ '/dlubal.api.rfem.Application/delete_all_objects',
909
+ dlubal_dot_api_dot_common_dot_model__id__pb2.OptionalModelId.SerializeToString,
910
+ google_dot_protobuf_dot_empty__pb2.Empty.FromString,
911
+ options,
912
+ channel_credentials,
913
+ insecure,
914
+ call_credentials,
915
+ compression,
916
+ wait_for_ready,
917
+ timeout,
918
+ metadata,
919
+ _registered_method=True)
920
+
921
+ @staticmethod
922
+ def calculate_all(request,
923
+ target,
924
+ options=(),
925
+ channel_credentials=None,
926
+ call_credentials=None,
927
+ insecure=False,
928
+ compression=None,
929
+ wait_for_ready=None,
930
+ timeout=None,
931
+ metadata=None):
932
+ return grpc.experimental.unary_unary(
933
+ request,
934
+ target,
935
+ '/dlubal.api.rfem.Application/calculate_all',
936
+ dlubal_dot_api_dot_rfem_dot_application__pb2.CalculateAllRequest.SerializeToString,
937
+ dlubal_dot_api_dot_rfem_dot_application__pb2.OperationResult.FromString,
938
+ options,
939
+ channel_credentials,
940
+ insecure,
941
+ call_credentials,
942
+ compression,
943
+ wait_for_ready,
944
+ timeout,
945
+ metadata,
946
+ _registered_method=True)
947
+
948
+ @staticmethod
949
+ def get_results_impl(request,
950
+ target,
951
+ options=(),
952
+ channel_credentials=None,
953
+ call_credentials=None,
954
+ insecure=False,
955
+ compression=None,
956
+ wait_for_ready=None,
957
+ timeout=None,
958
+ metadata=None):
959
+ return grpc.experimental.unary_unary(
960
+ request,
961
+ target,
962
+ '/dlubal.api.rfem.Application/get_results_impl',
963
+ dlubal_dot_api_dot_rfem_dot_results_dot_results__query__pb2.ResultsQuery.SerializeToString,
964
+ dlubal_dot_api_dot_common_dot_table__data__pb2.TableData.FromString,
965
+ options,
966
+ channel_credentials,
967
+ insecure,
968
+ call_credentials,
969
+ compression,
970
+ wait_for_ready,
971
+ timeout,
972
+ metadata,
973
+ _registered_method=True)