xbim_aim 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (331) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +413 -0
  4. data/Rakefile +10 -0
  5. data/lib/xbim_aim/api/admin_api.rb +358 -0
  6. data/lib/xbim_aim/api/applications_api.rb +203 -0
  7. data/lib/xbim_aim/api/assemblies_api.rb +690 -0
  8. data/lib/xbim_aim/api/assets_api.rb +926 -0
  9. data/lib/xbim_aim/api/attributes_api.rb +789 -0
  10. data/lib/xbim_aim/api/component_types_api.rb +690 -0
  11. data/lib/xbim_aim/api/components_api.rb +803 -0
  12. data/lib/xbim_aim/api/contacts_api.rb +690 -0
  13. data/lib/xbim_aim/api/diagnostics_api.rb +109 -0
  14. data/lib/xbim_aim/api/document_files_api.rb +224 -0
  15. data/lib/xbim_aim/api/documents_api.rb +690 -0
  16. data/lib/xbim_aim/api/entities_api.rb +904 -0
  17. data/lib/xbim_aim/api/facilities_api.rb +690 -0
  18. data/lib/xbim_aim/api/issues_api.rb +690 -0
  19. data/lib/xbim_aim/api/jobs_api.rb +690 -0
  20. data/lib/xbim_aim/api/levels_api.rb +690 -0
  21. data/lib/xbim_aim/api/logs_api.rb +90 -0
  22. data/lib/xbim_aim/api/model_files_api.rb +219 -0
  23. data/lib/xbim_aim/api/model_mapping_api.rb +203 -0
  24. data/lib/xbim_aim/api/models_api.rb +1308 -0
  25. data/lib/xbim_aim/api/resources_api.rb +690 -0
  26. data/lib/xbim_aim/api/schedules_api.rb +496 -0
  27. data/lib/xbim_aim/api/sites_api.rb +690 -0
  28. data/lib/xbim_aim/api/spaces_api.rb +803 -0
  29. data/lib/xbim_aim/api/spares_api.rb +690 -0
  30. data/lib/xbim_aim/api/stats_api.rb +170 -0
  31. data/lib/xbim_aim/api/systems_api.rb +690 -0
  32. data/lib/xbim_aim/api/thumbnails_api.rb +182 -0
  33. data/lib/xbim_aim/api/wexbim_api.rb +849 -0
  34. data/lib/xbim_aim/api/zones_api.rb +690 -0
  35. data/lib/xbim_aim/api_client.rb +390 -0
  36. data/lib/xbim_aim/api_error.rb +57 -0
  37. data/lib/xbim_aim/configuration.rb +278 -0
  38. data/lib/xbim_aim/models/application.rb +277 -0
  39. data/lib/xbim_aim/models/assembly_diagnostics.rb +299 -0
  40. data/lib/xbim_aim/models/assembly_info.rb +308 -0
  41. data/lib/xbim_aim/models/assembly_item.rb +454 -0
  42. data/lib/xbim_aim/models/asset.rb +339 -0
  43. data/lib/xbim_aim/models/asset_create.rb +268 -0
  44. data/lib/xbim_aim/models/asset_edit.rb +263 -0
  45. data/lib/xbim_aim/models/asset_segment.rb +304 -0
  46. data/lib/xbim_aim/models/attribute_definition.rb +354 -0
  47. data/lib/xbim_aim/models/attribute_definition_create.rb +338 -0
  48. data/lib/xbim_aim/models/attribute_definition_edit.rb +288 -0
  49. data/lib/xbim_aim/models/attribute_definition_entity.rb +392 -0
  50. data/lib/xbim_aim/models/attribute_value.rb +333 -0
  51. data/lib/xbim_aim/models/attribute_value_entity.rb +272 -0
  52. data/lib/xbim_aim/models/cell.rb +236 -0
  53. data/lib/xbim_aim/models/classification_node.rb +254 -0
  54. data/lib/xbim_aim/models/column_definition.rb +297 -0
  55. data/lib/xbim_aim/models/complex_value_base.rb +261 -0
  56. data/lib/xbim_aim/models/component.rb +535 -0
  57. data/lib/xbim_aim/models/component_create.rb +283 -0
  58. data/lib/xbim_aim/models/component_edit.rb +248 -0
  59. data/lib/xbim_aim/models/component_info.rb +326 -0
  60. data/lib/xbim_aim/models/component_type.rb +498 -0
  61. data/lib/xbim_aim/models/component_type_info.rb +308 -0
  62. data/lib/xbim_aim/models/contact.rb +443 -0
  63. data/lib/xbim_aim/models/contact_entity.rb +333 -0
  64. data/lib/xbim_aim/models/contact_info.rb +308 -0
  65. data/lib/xbim_aim/models/db_update.rb +227 -0
  66. data/lib/xbim_aim/models/document.rb +421 -0
  67. data/lib/xbim_aim/models/document_create.rb +345 -0
  68. data/lib/xbim_aim/models/document_edit.rb +310 -0
  69. data/lib/xbim_aim/models/document_info.rb +308 -0
  70. data/lib/xbim_aim/models/entity.rb +421 -0
  71. data/lib/xbim_aim/models/entity_base.rb +308 -0
  72. data/lib/xbim_aim/models/entity_contact.rb +333 -0
  73. data/lib/xbim_aim/models/entity_create.rb +274 -0
  74. data/lib/xbim_aim/models/entity_edit.rb +239 -0
  75. data/lib/xbim_aim/models/entity_mapping_info.rb +299 -0
  76. data/lib/xbim_aim/models/entity_match_descriptor.rb +245 -0
  77. data/lib/xbim_aim/models/entity_match_info.rb +238 -0
  78. data/lib/xbim_aim/models/entity_ref.rb +281 -0
  79. data/lib/xbim_aim/models/facility.rb +432 -0
  80. data/lib/xbim_aim/models/facility_info.rb +308 -0
  81. data/lib/xbim_aim/models/file_upload_result.rb +300 -0
  82. data/lib/xbim_aim/models/footprint.rb +254 -0
  83. data/lib/xbim_aim/models/i_metered_resource.rb +254 -0
  84. data/lib/xbim_aim/models/ifc_type.rb +247 -0
  85. data/lib/xbim_aim/models/inline_object.rb +294 -0
  86. data/lib/xbim_aim/models/inline_object1.rb +294 -0
  87. data/lib/xbim_aim/models/inline_object2.rb +220 -0
  88. data/lib/xbim_aim/models/inline_object3.rb +223 -0
  89. data/lib/xbim_aim/models/inline_object4.rb +294 -0
  90. data/lib/xbim_aim/models/inline_object5.rb +294 -0
  91. data/lib/xbim_aim/models/issue.rb +443 -0
  92. data/lib/xbim_aim/models/issue_info.rb +308 -0
  93. data/lib/xbim_aim/models/job.rb +483 -0
  94. data/lib/xbim_aim/models/job_create.rb +283 -0
  95. data/lib/xbim_aim/models/job_edit.rb +248 -0
  96. data/lib/xbim_aim/models/job_info.rb +308 -0
  97. data/lib/xbim_aim/models/level.rb +463 -0
  98. data/lib/xbim_aim/models/level_create.rb +274 -0
  99. data/lib/xbim_aim/models/level_edit.rb +239 -0
  100. data/lib/xbim_aim/models/level_info.rb +308 -0
  101. data/lib/xbim_aim/models/mapping_message_info.rb +281 -0
  102. data/lib/xbim_aim/models/mapping_properties.rb +227 -0
  103. data/lib/xbim_aim/models/member_permission.rb +292 -0
  104. data/lib/xbim_aim/models/member_role.rb +320 -0
  105. data/lib/xbim_aim/models/model.rb +617 -0
  106. data/lib/xbim_aim/models/model_create.rb +318 -0
  107. data/lib/xbim_aim/models/model_edit.rb +284 -0
  108. data/lib/xbim_aim/models/model_info.rb +380 -0
  109. data/lib/xbim_aim/models/model_mapping.rb +363 -0
  110. data/lib/xbim_aim/models/model_mapping_report.rb +354 -0
  111. data/lib/xbim_aim/models/o_data_list_response_of_application.rb +247 -0
  112. data/lib/xbim_aim/models/o_data_list_response_of_assembly_diagnostics.rb +247 -0
  113. data/lib/xbim_aim/models/o_data_list_response_of_assembly_item.rb +247 -0
  114. data/lib/xbim_aim/models/o_data_list_response_of_asset.rb +247 -0
  115. data/lib/xbim_aim/models/o_data_list_response_of_attribute_definition.rb +247 -0
  116. data/lib/xbim_aim/models/o_data_list_response_of_attribute_definition_entity.rb +247 -0
  117. data/lib/xbim_aim/models/o_data_list_response_of_attribute_value.rb +247 -0
  118. data/lib/xbim_aim/models/o_data_list_response_of_complex_value_base.rb +247 -0
  119. data/lib/xbim_aim/models/o_data_list_response_of_component.rb +247 -0
  120. data/lib/xbim_aim/models/o_data_list_response_of_component_type.rb +247 -0
  121. data/lib/xbim_aim/models/o_data_list_response_of_contact.rb +247 -0
  122. data/lib/xbim_aim/models/o_data_list_response_of_document.rb +247 -0
  123. data/lib/xbim_aim/models/o_data_list_response_of_entity.rb +247 -0
  124. data/lib/xbim_aim/models/o_data_list_response_of_entity_ref.rb +247 -0
  125. data/lib/xbim_aim/models/o_data_list_response_of_facility.rb +247 -0
  126. data/lib/xbim_aim/models/o_data_list_response_of_issue.rb +247 -0
  127. data/lib/xbim_aim/models/o_data_list_response_of_job.rb +247 -0
  128. data/lib/xbim_aim/models/o_data_list_response_of_level.rb +247 -0
  129. data/lib/xbim_aim/models/o_data_list_response_of_member_permission.rb +247 -0
  130. data/lib/xbim_aim/models/o_data_list_response_of_model.rb +247 -0
  131. data/lib/xbim_aim/models/o_data_list_response_of_model_mapping.rb +247 -0
  132. data/lib/xbim_aim/models/o_data_list_response_of_model_mapping_report.rb +247 -0
  133. data/lib/xbim_aim/models/o_data_list_response_of_resource.rb +247 -0
  134. data/lib/xbim_aim/models/o_data_list_response_of_role.rb +247 -0
  135. data/lib/xbim_aim/models/o_data_list_response_of_row.rb +247 -0
  136. data/lib/xbim_aim/models/o_data_list_response_of_schedule.rb +247 -0
  137. data/lib/xbim_aim/models/o_data_list_response_of_site.rb +247 -0
  138. data/lib/xbim_aim/models/o_data_list_response_of_space.rb +247 -0
  139. data/lib/xbim_aim/models/o_data_list_response_of_spare.rb +247 -0
  140. data/lib/xbim_aim/models/o_data_list_response_of_system_item.rb +247 -0
  141. data/lib/xbim_aim/models/o_data_list_response_of_zone.rb +247 -0
  142. data/lib/xbim_aim/models/o_data_response_of_boolean.rb +227 -0
  143. data/lib/xbim_aim/models/quota_status.rb +300 -0
  144. data/lib/xbim_aim/models/related_entity.rb +432 -0
  145. data/lib/xbim_aim/models/resource.rb +443 -0
  146. data/lib/xbim_aim/models/resource_info.rb +308 -0
  147. data/lib/xbim_aim/models/role.rb +331 -0
  148. data/lib/xbim_aim/models/role_member.rb +279 -0
  149. data/lib/xbim_aim/models/row.rb +229 -0
  150. data/lib/xbim_aim/models/schedule.rb +258 -0
  151. data/lib/xbim_aim/models/site.rb +432 -0
  152. data/lib/xbim_aim/models/space.rb +491 -0
  153. data/lib/xbim_aim/models/space_create.rb +283 -0
  154. data/lib/xbim_aim/models/space_edit.rb +248 -0
  155. data/lib/xbim_aim/models/space_info.rb +326 -0
  156. data/lib/xbim_aim/models/spare.rb +450 -0
  157. data/lib/xbim_aim/models/spare_create.rb +283 -0
  158. data/lib/xbim_aim/models/spare_edit.rb +248 -0
  159. data/lib/xbim_aim/models/spare_info.rb +308 -0
  160. data/lib/xbim_aim/models/system_info.rb +319 -0
  161. data/lib/xbim_aim/models/system_item.rb +454 -0
  162. data/lib/xbim_aim/models/user_permissions.rb +275 -0
  163. data/lib/xbim_aim/models/value_container.rb +308 -0
  164. data/lib/xbim_aim/models/zone.rb +454 -0
  165. data/lib/xbim_aim/models/zone_info.rb +308 -0
  166. data/lib/xbim_aim/version.rb +15 -0
  167. data/lib/xbim_aim.rb +197 -0
  168. data/spec/api/admin_api_spec.rb +95 -0
  169. data/spec/api/applications_api_spec.rb +71 -0
  170. data/spec/api/assemblies_api_spec.rb +160 -0
  171. data/spec/api/assets_api_spec.rb +203 -0
  172. data/spec/api/attributes_api_spec.rb +177 -0
  173. data/spec/api/component_types_api_spec.rb +160 -0
  174. data/spec/api/components_api_spec.rb +184 -0
  175. data/spec/api/contacts_api_spec.rb +160 -0
  176. data/spec/api/diagnostics_api_spec.rb +54 -0
  177. data/spec/api/document_files_api_spec.rb +69 -0
  178. data/spec/api/documents_api_spec.rb +160 -0
  179. data/spec/api/entities_api_spec.rb +203 -0
  180. data/spec/api/facilities_api_spec.rb +160 -0
  181. data/spec/api/issues_api_spec.rb +160 -0
  182. data/spec/api/jobs_api_spec.rb +160 -0
  183. data/spec/api/levels_api_spec.rb +160 -0
  184. data/spec/api/logs_api_spec.rb +47 -0
  185. data/spec/api/model_files_api_spec.rb +71 -0
  186. data/spec/api/model_mapping_api_spec.rb +71 -0
  187. data/spec/api/models_api_spec.rb +273 -0
  188. data/spec/api/resources_api_spec.rb +160 -0
  189. data/spec/api/schedules_api_spec.rb +126 -0
  190. data/spec/api/sites_api_spec.rb +160 -0
  191. data/spec/api/spaces_api_spec.rb +184 -0
  192. data/spec/api/spares_api_spec.rb +160 -0
  193. data/spec/api/stats_api_spec.rb +61 -0
  194. data/spec/api/systems_api_spec.rb +160 -0
  195. data/spec/api/thumbnails_api_spec.rb +63 -0
  196. data/spec/api/wexbim_api_spec.rb +175 -0
  197. data/spec/api/zones_api_spec.rb +160 -0
  198. data/spec/api_client_spec.rb +226 -0
  199. data/spec/configuration_spec.rb +42 -0
  200. data/spec/models/application_spec.rb +70 -0
  201. data/spec/models/assembly_diagnostics_spec.rb +88 -0
  202. data/spec/models/assembly_info_spec.rb +94 -0
  203. data/spec/models/assembly_item_spec.rb +178 -0
  204. data/spec/models/asset_create_spec.rb +44 -0
  205. data/spec/models/asset_edit_spec.rb +44 -0
  206. data/spec/models/asset_segment_spec.rb +88 -0
  207. data/spec/models/asset_spec.rb +92 -0
  208. data/spec/models/attribute_definition_create_spec.rb +78 -0
  209. data/spec/models/attribute_definition_edit_spec.rb +62 -0
  210. data/spec/models/attribute_definition_entity_spec.rb +126 -0
  211. data/spec/models/attribute_definition_spec.rb +102 -0
  212. data/spec/models/attribute_value_entity_spec.rb +70 -0
  213. data/spec/models/attribute_value_spec.rb +92 -0
  214. data/spec/models/cell_spec.rb +46 -0
  215. data/spec/models/classification_node_spec.rb +58 -0
  216. data/spec/models/column_definition_spec.rb +68 -0
  217. data/spec/models/complex_value_base_spec.rb +44 -0
  218. data/spec/models/component_create_spec.rb +70 -0
  219. data/spec/models/component_edit_spec.rb +52 -0
  220. data/spec/models/component_info_spec.rb +106 -0
  221. data/spec/models/component_spec.rb +226 -0
  222. data/spec/models/component_type_info_spec.rb +94 -0
  223. data/spec/models/component_type_spec.rb +202 -0
  224. data/spec/models/contact_entity_spec.rb +92 -0
  225. data/spec/models/contact_info_spec.rb +94 -0
  226. data/spec/models/contact_spec.rb +172 -0
  227. data/spec/models/db_update_spec.rb +40 -0
  228. data/spec/models/document_create_spec.rb +106 -0
  229. data/spec/models/document_edit_spec.rb +88 -0
  230. data/spec/models/document_info_spec.rb +94 -0
  231. data/spec/models/document_spec.rb +160 -0
  232. data/spec/models/entity_base_spec.rb +94 -0
  233. data/spec/models/entity_contact_spec.rb +92 -0
  234. data/spec/models/entity_create_spec.rb +64 -0
  235. data/spec/models/entity_edit_spec.rb +46 -0
  236. data/spec/models/entity_mapping_info_spec.rb +88 -0
  237. data/spec/models/entity_match_descriptor_spec.rb +52 -0
  238. data/spec/models/entity_match_info_spec.rb +46 -0
  239. data/spec/models/entity_ref_spec.rb +76 -0
  240. data/spec/models/entity_spec.rb +160 -0
  241. data/spec/models/facility_info_spec.rb +94 -0
  242. data/spec/models/facility_spec.rb +166 -0
  243. data/spec/models/file_upload_result_spec.rb +82 -0
  244. data/spec/models/footprint_spec.rb +58 -0
  245. data/spec/models/i_metered_resource_spec.rb +58 -0
  246. data/spec/models/ifc_type_spec.rb +52 -0
  247. data/spec/models/inline_object1_spec.rb +56 -0
  248. data/spec/models/inline_object2_spec.rb +34 -0
  249. data/spec/models/inline_object3_spec.rb +34 -0
  250. data/spec/models/inline_object4_spec.rb +56 -0
  251. data/spec/models/inline_object5_spec.rb +56 -0
  252. data/spec/models/inline_object_spec.rb +56 -0
  253. data/spec/models/issue_info_spec.rb +94 -0
  254. data/spec/models/issue_spec.rb +172 -0
  255. data/spec/models/job_create_spec.rb +70 -0
  256. data/spec/models/job_edit_spec.rb +52 -0
  257. data/spec/models/job_info_spec.rb +94 -0
  258. data/spec/models/job_spec.rb +196 -0
  259. data/spec/models/level_create_spec.rb +64 -0
  260. data/spec/models/level_edit_spec.rb +46 -0
  261. data/spec/models/level_info_spec.rb +94 -0
  262. data/spec/models/level_spec.rb +184 -0
  263. data/spec/models/mapping_message_info_spec.rb +76 -0
  264. data/spec/models/mapping_properties_spec.rb +40 -0
  265. data/spec/models/member_permission_spec.rb +66 -0
  266. data/spec/models/member_role_spec.rb +82 -0
  267. data/spec/models/model_create_spec.rb +68 -0
  268. data/spec/models/model_edit_spec.rb +56 -0
  269. data/spec/models/model_info_spec.rb +142 -0
  270. data/spec/models/model_mapping_report_spec.rb +118 -0
  271. data/spec/models/model_mapping_spec.rb +124 -0
  272. data/spec/models/model_spec.rb +260 -0
  273. data/spec/models/o_data_list_response_of_application_spec.rb +52 -0
  274. data/spec/models/o_data_list_response_of_assembly_diagnostics_spec.rb +52 -0
  275. data/spec/models/o_data_list_response_of_assembly_item_spec.rb +52 -0
  276. data/spec/models/o_data_list_response_of_asset_spec.rb +52 -0
  277. data/spec/models/o_data_list_response_of_attribute_definition_entity_spec.rb +52 -0
  278. data/spec/models/o_data_list_response_of_attribute_definition_spec.rb +52 -0
  279. data/spec/models/o_data_list_response_of_attribute_value_spec.rb +52 -0
  280. data/spec/models/o_data_list_response_of_complex_value_base_spec.rb +52 -0
  281. data/spec/models/o_data_list_response_of_component_spec.rb +52 -0
  282. data/spec/models/o_data_list_response_of_component_type_spec.rb +52 -0
  283. data/spec/models/o_data_list_response_of_contact_spec.rb +52 -0
  284. data/spec/models/o_data_list_response_of_document_spec.rb +52 -0
  285. data/spec/models/o_data_list_response_of_entity_ref_spec.rb +52 -0
  286. data/spec/models/o_data_list_response_of_entity_spec.rb +52 -0
  287. data/spec/models/o_data_list_response_of_facility_spec.rb +52 -0
  288. data/spec/models/o_data_list_response_of_issue_spec.rb +52 -0
  289. data/spec/models/o_data_list_response_of_job_spec.rb +52 -0
  290. data/spec/models/o_data_list_response_of_level_spec.rb +52 -0
  291. data/spec/models/o_data_list_response_of_member_permission_spec.rb +52 -0
  292. data/spec/models/o_data_list_response_of_model_mapping_report_spec.rb +52 -0
  293. data/spec/models/o_data_list_response_of_model_mapping_spec.rb +52 -0
  294. data/spec/models/o_data_list_response_of_model_spec.rb +52 -0
  295. data/spec/models/o_data_list_response_of_resource_spec.rb +52 -0
  296. data/spec/models/o_data_list_response_of_role_spec.rb +52 -0
  297. data/spec/models/o_data_list_response_of_row_spec.rb +52 -0
  298. data/spec/models/o_data_list_response_of_schedule_spec.rb +52 -0
  299. data/spec/models/o_data_list_response_of_site_spec.rb +52 -0
  300. data/spec/models/o_data_list_response_of_space_spec.rb +52 -0
  301. data/spec/models/o_data_list_response_of_spare_spec.rb +52 -0
  302. data/spec/models/o_data_list_response_of_system_item_spec.rb +52 -0
  303. data/spec/models/o_data_list_response_of_zone_spec.rb +52 -0
  304. data/spec/models/o_data_response_of_boolean_spec.rb +40 -0
  305. data/spec/models/quota_status_spec.rb +66 -0
  306. data/spec/models/related_entity_spec.rb +166 -0
  307. data/spec/models/resource_info_spec.rb +94 -0
  308. data/spec/models/resource_spec.rb +172 -0
  309. data/spec/models/role_member_spec.rb +56 -0
  310. data/spec/models/role_spec.rb +88 -0
  311. data/spec/models/row_spec.rb +40 -0
  312. data/spec/models/schedule_spec.rb +58 -0
  313. data/spec/models/site_spec.rb +166 -0
  314. data/spec/models/space_create_spec.rb +70 -0
  315. data/spec/models/space_edit_spec.rb +52 -0
  316. data/spec/models/space_info_spec.rb +106 -0
  317. data/spec/models/space_spec.rb +202 -0
  318. data/spec/models/spare_create_spec.rb +70 -0
  319. data/spec/models/spare_edit_spec.rb +52 -0
  320. data/spec/models/spare_info_spec.rb +94 -0
  321. data/spec/models/spare_spec.rb +178 -0
  322. data/spec/models/system_info_spec.rb +100 -0
  323. data/spec/models/system_item_spec.rb +178 -0
  324. data/spec/models/user_permissions_spec.rb +56 -0
  325. data/spec/models/value_container_spec.rb +78 -0
  326. data/spec/models/zone_info_spec.rb +94 -0
  327. data/spec/models/zone_spec.rb +178 -0
  328. data/spec/spec_helper.rb +111 -0
  329. data/xbim_aim-1.0.0.gem +0 -0
  330. data/xbim_aim.gemspec +38 -0
  331. metadata +413 -0
@@ -0,0 +1,849 @@
1
+ =begin
2
+ #XBIM Flex API v2
3
+
4
+ #This is the XBIM Flex Swagger service where you can explore the REST API for the platform.
5
+
6
+ The version of the OpenAPI document: 2.0
7
+ Contact: info@xbim.net
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.4.0
10
+
11
+ =end
12
+
13
+ require 'cgi'
14
+
15
+ module XbimAim
16
+ class WexbimApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Gets the pre-generated complete wexbim geometry stream for a model
23
+ # <span style='font-size: 17px;'>Summary:</span>Gets the pre-generated complete wexbim geometry stream for a model.<br/>Return Type: <b>string</b><br/><br/>
24
+ # @param asset_id [Integer]
25
+ # @param model_id [Integer]
26
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
27
+ # @param region [String] The data center region the data resides in
28
+ # @param [Hash] opts the optional parameters
29
+ # @return [File]
30
+ def wexbim_get_complete(asset_id, model_id, tenant_id, region, opts = {})
31
+ data, _status_code, _headers = wexbim_get_complete_with_http_info(asset_id, model_id, tenant_id, region, opts)
32
+ data
33
+ end
34
+
35
+ # Gets the pre-generated complete wexbim geometry stream for a model
36
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Gets the pre-generated complete wexbim geometry stream for a model.&lt;br/&gt;Return Type: &lt;b&gt;string&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
37
+ # @param asset_id [Integer]
38
+ # @param model_id [Integer]
39
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
40
+ # @param region [String] The data center region the data resides in
41
+ # @param [Hash] opts the optional parameters
42
+ # @return [Array<(File, Integer, Hash)>] File data, response status code and response headers
43
+ def wexbim_get_complete_with_http_info(asset_id, model_id, tenant_id, region, opts = {})
44
+ if @api_client.config.debugging
45
+ @api_client.config.logger.debug 'Calling API: WexbimApi.wexbim_get_complete ...'
46
+ end
47
+ # verify the required parameter 'asset_id' is set
48
+ if @api_client.config.client_side_validation && asset_id.nil?
49
+ fail ArgumentError, "Missing the required parameter 'asset_id' when calling WexbimApi.wexbim_get_complete"
50
+ end
51
+ # verify the required parameter 'model_id' is set
52
+ if @api_client.config.client_side_validation && model_id.nil?
53
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling WexbimApi.wexbim_get_complete"
54
+ end
55
+ # verify the required parameter 'tenant_id' is set
56
+ if @api_client.config.client_side_validation && tenant_id.nil?
57
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling WexbimApi.wexbim_get_complete"
58
+ end
59
+ # verify the required parameter 'region' is set
60
+ if @api_client.config.client_side_validation && region.nil?
61
+ fail ArgumentError, "Missing the required parameter 'region' when calling WexbimApi.wexbim_get_complete"
62
+ end
63
+ # verify enum value
64
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
65
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
66
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
67
+ end
68
+ # resource path
69
+ local_var_path = '/{region}/aim/2.0/{tenantId}/wexbim/complete'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
70
+
71
+ # query parameters
72
+ query_params = opts[:query_params] || {}
73
+ query_params[:'assetId'] = asset_id
74
+ query_params[:'modelId'] = model_id
75
+
76
+ # header parameters
77
+ header_params = opts[:header_params] || {}
78
+ # HTTP header 'Accept' (if needed)
79
+ header_params['Accept'] = @api_client.select_header_accept(['application/octet-stream'])
80
+
81
+ # form parameters
82
+ form_params = opts[:form_params] || {}
83
+
84
+ # http body (model)
85
+ post_body = opts[:debug_body]
86
+
87
+ # return_type
88
+ return_type = opts[:debug_return_type] || 'File'
89
+
90
+ # auth_names
91
+ auth_names = opts[:debug_auth_names] || ['oauth2']
92
+
93
+ new_options = opts.merge(
94
+ :operation => :"WexbimApi.wexbim_get_complete",
95
+ :header_params => header_params,
96
+ :query_params => query_params,
97
+ :form_params => form_params,
98
+ :body => post_body,
99
+ :auth_names => auth_names,
100
+ :return_type => return_type
101
+ )
102
+
103
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
104
+ if @api_client.config.debugging
105
+ @api_client.config.logger.debug "API called: WexbimApi#wexbim_get_complete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
106
+ end
107
+ return data, status_code, headers
108
+ end
109
+
110
+ # Gets the pre-generated components wexbim geometry stream for a model
111
+ # <span style='font-size: 17px;'>Summary:</span>Gets the pre-generated components wexbim geometry stream for a model.<br/>E.g. Fixtures / Furniture, mechnical, electrical and engineering. Excludes the Envelope and Doors, windows and spaces.<br/>Return Type: <b>string</b><br/><br/>
112
+ # @param asset_id [Integer]
113
+ # @param model_id [Integer]
114
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
115
+ # @param region [String] The data center region the data resides in
116
+ # @param [Hash] opts the optional parameters
117
+ # @return [File]
118
+ def wexbim_get_components(asset_id, model_id, tenant_id, region, opts = {})
119
+ data, _status_code, _headers = wexbim_get_components_with_http_info(asset_id, model_id, tenant_id, region, opts)
120
+ data
121
+ end
122
+
123
+ # Gets the pre-generated components wexbim geometry stream for a model
124
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Gets the pre-generated components wexbim geometry stream for a model.&lt;br/&gt;E.g. Fixtures / Furniture, mechnical, electrical and engineering. Excludes the Envelope and Doors, windows and spaces.&lt;br/&gt;Return Type: &lt;b&gt;string&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
125
+ # @param asset_id [Integer]
126
+ # @param model_id [Integer]
127
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
128
+ # @param region [String] The data center region the data resides in
129
+ # @param [Hash] opts the optional parameters
130
+ # @return [Array<(File, Integer, Hash)>] File data, response status code and response headers
131
+ def wexbim_get_components_with_http_info(asset_id, model_id, tenant_id, region, opts = {})
132
+ if @api_client.config.debugging
133
+ @api_client.config.logger.debug 'Calling API: WexbimApi.wexbim_get_components ...'
134
+ end
135
+ # verify the required parameter 'asset_id' is set
136
+ if @api_client.config.client_side_validation && asset_id.nil?
137
+ fail ArgumentError, "Missing the required parameter 'asset_id' when calling WexbimApi.wexbim_get_components"
138
+ end
139
+ # verify the required parameter 'model_id' is set
140
+ if @api_client.config.client_side_validation && model_id.nil?
141
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling WexbimApi.wexbim_get_components"
142
+ end
143
+ # verify the required parameter 'tenant_id' is set
144
+ if @api_client.config.client_side_validation && tenant_id.nil?
145
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling WexbimApi.wexbim_get_components"
146
+ end
147
+ # verify the required parameter 'region' is set
148
+ if @api_client.config.client_side_validation && region.nil?
149
+ fail ArgumentError, "Missing the required parameter 'region' when calling WexbimApi.wexbim_get_components"
150
+ end
151
+ # verify enum value
152
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
153
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
154
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
155
+ end
156
+ # resource path
157
+ local_var_path = '/{region}/aim/2.0/{tenantId}/wexbim/components'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
158
+
159
+ # query parameters
160
+ query_params = opts[:query_params] || {}
161
+ query_params[:'assetId'] = asset_id
162
+ query_params[:'modelId'] = model_id
163
+
164
+ # header parameters
165
+ header_params = opts[:header_params] || {}
166
+ # HTTP header 'Accept' (if needed)
167
+ header_params['Accept'] = @api_client.select_header_accept(['application/octet-stream'])
168
+
169
+ # form parameters
170
+ form_params = opts[:form_params] || {}
171
+
172
+ # http body (model)
173
+ post_body = opts[:debug_body]
174
+
175
+ # return_type
176
+ return_type = opts[:debug_return_type] || 'File'
177
+
178
+ # auth_names
179
+ auth_names = opts[:debug_auth_names] || ['oauth2']
180
+
181
+ new_options = opts.merge(
182
+ :operation => :"WexbimApi.wexbim_get_components",
183
+ :header_params => header_params,
184
+ :query_params => query_params,
185
+ :form_params => form_params,
186
+ :body => post_body,
187
+ :auth_names => auth_names,
188
+ :return_type => return_type
189
+ )
190
+
191
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
192
+ if @api_client.config.debugging
193
+ @api_client.config.logger.debug "API called: WexbimApi#wexbim_get_components\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
194
+ end
195
+ return data, status_code, headers
196
+ end
197
+
198
+ # Gets a dynamically generated geometry stream for a model
199
+ # <span style='font-size: 17px;'>Summary:</span>Gets a dynamically generated geometry stream for a model.<br/>Return Type: <b>string</b><br/><br/>
200
+ # @param asset_id [Integer] The id of asset the model belongs to
201
+ # @param model_id [Integer] The id of the model
202
+ # @param included [Array<String>] The IFC types to include (hierarchical)
203
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
204
+ # @param region [String] The data center region the data resides in
205
+ # @param [Hash] opts the optional parameters
206
+ # @option opts [Array<String>] :excluded The IFC types to exclude (hierarchical)
207
+ # @return [File]
208
+ def wexbim_get_dynamic(asset_id, model_id, included, tenant_id, region, opts = {})
209
+ data, _status_code, _headers = wexbim_get_dynamic_with_http_info(asset_id, model_id, included, tenant_id, region, opts)
210
+ data
211
+ end
212
+
213
+ # Gets a dynamically generated geometry stream for a model
214
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Gets a dynamically generated geometry stream for a model.&lt;br/&gt;Return Type: &lt;b&gt;string&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
215
+ # @param asset_id [Integer] The id of asset the model belongs to
216
+ # @param model_id [Integer] The id of the model
217
+ # @param included [Array<String>] The IFC types to include (hierarchical)
218
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
219
+ # @param region [String] The data center region the data resides in
220
+ # @param [Hash] opts the optional parameters
221
+ # @option opts [Array<String>] :excluded The IFC types to exclude (hierarchical)
222
+ # @return [Array<(File, Integer, Hash)>] File data, response status code and response headers
223
+ def wexbim_get_dynamic_with_http_info(asset_id, model_id, included, tenant_id, region, opts = {})
224
+ if @api_client.config.debugging
225
+ @api_client.config.logger.debug 'Calling API: WexbimApi.wexbim_get_dynamic ...'
226
+ end
227
+ # verify the required parameter 'asset_id' is set
228
+ if @api_client.config.client_side_validation && asset_id.nil?
229
+ fail ArgumentError, "Missing the required parameter 'asset_id' when calling WexbimApi.wexbim_get_dynamic"
230
+ end
231
+ # verify the required parameter 'model_id' is set
232
+ if @api_client.config.client_side_validation && model_id.nil?
233
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling WexbimApi.wexbim_get_dynamic"
234
+ end
235
+ # verify the required parameter 'included' is set
236
+ if @api_client.config.client_side_validation && included.nil?
237
+ fail ArgumentError, "Missing the required parameter 'included' when calling WexbimApi.wexbim_get_dynamic"
238
+ end
239
+ # verify the required parameter 'tenant_id' is set
240
+ if @api_client.config.client_side_validation && tenant_id.nil?
241
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling WexbimApi.wexbim_get_dynamic"
242
+ end
243
+ # verify the required parameter 'region' is set
244
+ if @api_client.config.client_side_validation && region.nil?
245
+ fail ArgumentError, "Missing the required parameter 'region' when calling WexbimApi.wexbim_get_dynamic"
246
+ end
247
+ # verify enum value
248
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
249
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
250
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
251
+ end
252
+ allowable_values = ["Product", "Element", "DistributionElement", "DistributionFlowElement", "DistributionChamberElement", "EnergyConversionDevice", "AirToAirHeatRecovery", "Boiler", "Burner", "Chiller", "Coil", "Condenser", "CooledBeam", "CoolingTower", "Engine", "EvaporativeCooler", "Evaporator", "HeatExchanger", "Humidifier", "TubeBundle", "UnitaryEquipment", "ElectricGenerator", "ElectricMotor", "MotorConnection", "SolarDevice", "Transformer", "FlowController", "ElectricDistributionPoint", "AirTerminalBox", "Damper", "FlowMeter", "Valve", "ElectricDistributionBoard", "ElectricTimeControl", "ProtectiveDevice", "SwitchingDevice", "FlowFitting", "DuctFitting", "PipeFitting", "CableCarrierFitting", "CableFitting", "JunctionBox", "FlowMovingDevice", "Compressor", "Fan", "Pump", "FlowSegment", "DuctSegment", "PipeSegment", "CableCarrierSegment", "CableSegment", "FlowStorageDevice", "Tank", "ElectricFlowStorageDevice", "FlowTerminal", "FireSuppressionTerminal", "SanitaryTerminal", "StackTerminal", "WasteTerminal", "AirTerminal", "MedicalDevice", "SpaceHeater", "AudioVisualAppliance", "CommunicationsAppliance", "ElectricAppliance", "Lamp", "LightFixture", "Outlet", "FlowTreatmentDevice", "Interceptor", "DuctSilencer", "Filter", "DistributionControlElement", "ProtectiveDeviceTrippingUnit", "Actuator", "Alarm", "Controller", "FlowInstrument", "Sensor", "UnitaryControlElement", "ElementComponent", "DiscreteAccessory", "Fastener", "MechanicalFastener", "ReinforcingElement", "ReinforcingBar", "ReinforcingMesh", "Tendon", "TendonAnchor", "BuildingElementPart", "VibrationIsolator", "FeatureElement", "FeatureElementSubtraction", "EdgeFeature", "ChamferEdgeFeature", "RoundedEdgeFeature", "OpeningElement", "OpeningStandardCase", "VoidingFeature", "FeatureElementAddition", "ProjectionElement", "SurfaceFeature", "BuildingElement", "BuildingElementComponent", "Footing", "Pile", "Beam", "BeamStandardCase", "Column", "ColumnStandardCase", "CurtainWall", "Door", "DoorStandardCase", "Member", "MemberStandardCase", "Plate", "PlateStandardCase", "Railing", "Ramp", "RampFlight", "Roof", "Slab", "SlabElementedCase", "SlabStandardCase", "Stair", "StairFlight", "Wall", "WallStandardCase", "WallElementedCase", "Window", "WindowStandardCase", "BuildingElementProxy", "Covering", "Chimney", "ShadingDevice", "ElementAssembly", "FurnishingElement", "Furniture", "SystemFurnitureElement", "TransportElement", "VirtualElement", "ElectricalElement", "EquipmentElement", "CivilElement", "GeographicElement", "Port", "DistributionPort", "Proxy", "StructuralActivity", "StructuralAction", "StructuralLinearAction", "StructuralLinearActionVarying", "StructuralPlanarAction", "StructuralPlanarActionVarying", "StructuralPointAction", "StructuralCurveAction", "StructuralSurfaceAction", "StructuralReaction", "StructuralPointReaction", "StructuralCurveReaction", "StructuralSurfaceReaction", "StructuralItem", "StructuralConnection", "StructuralCurveConnection", "StructuralPointConnection", "StructuralSurfaceConnection", "StructuralMember", "StructuralCurveMember", "StructuralCurveMemberVarying", "StructuralSurfaceMember", "StructuralSurfaceMemberVarying", "Annotation", "SpatialStructureElement", "Building", "BuildingStorey", "Site", "Space", "Grid", "SpatialElement", "ExternalSpatialStructureElement", "ExternalSpatialElement", "SpatialZone", "Person", "Document", "DoorStyle", "DoorType", "WallType"]
253
+ if @api_client.config.client_side_validation && opts[:'excluded'] && !opts[:'excluded'].all? { |item| allowable_values.include?(item) }
254
+ fail ArgumentError, "invalid value for \"excluded\", must include one of #{allowable_values}"
255
+ end
256
+ # resource path
257
+ local_var_path = '/{region}/aim/2.0/{tenantId}/wexbim/dynamic'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
258
+
259
+ # query parameters
260
+ query_params = opts[:query_params] || {}
261
+ query_params[:'assetId'] = asset_id
262
+ query_params[:'modelId'] = model_id
263
+ query_params[:'included'] = @api_client.build_collection_param(included, :csv)
264
+ query_params[:'excluded'] = @api_client.build_collection_param(opts[:'excluded'], :csv) if !opts[:'excluded'].nil?
265
+
266
+ # header parameters
267
+ header_params = opts[:header_params] || {}
268
+ # HTTP header 'Accept' (if needed)
269
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/json', 'application/xml', 'text/xml'])
270
+
271
+ # form parameters
272
+ form_params = opts[:form_params] || {}
273
+
274
+ # http body (model)
275
+ post_body = opts[:debug_body]
276
+
277
+ # return_type
278
+ return_type = opts[:debug_return_type] || 'File'
279
+
280
+ # auth_names
281
+ auth_names = opts[:debug_auth_names] || ['oauth2']
282
+
283
+ new_options = opts.merge(
284
+ :operation => :"WexbimApi.wexbim_get_dynamic",
285
+ :header_params => header_params,
286
+ :query_params => query_params,
287
+ :form_params => form_params,
288
+ :body => post_body,
289
+ :auth_names => auth_names,
290
+ :return_type => return_type
291
+ )
292
+
293
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
294
+ if @api_client.config.debugging
295
+ @api_client.config.logger.debug "API called: WexbimApi#wexbim_get_dynamic\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
296
+ end
297
+ return data, status_code, headers
298
+ end
299
+
300
+ # Gets the pre-generated building envelope wexbim geometry stream for a model
301
+ # <span style='font-size: 17px;'>Summary:</span>Gets the pre-generated building envelope wexbim geometry stream for a model.<br/>E.g. The building fabric and external envelope.<br/>Return Type: <b>string</b><br/><br/>
302
+ # @param asset_id [Integer] The asset identifier.
303
+ # @param model_id [Integer] The model identifier.
304
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
305
+ # @param region [String] The data center region the data resides in
306
+ # @param [Hash] opts the optional parameters
307
+ # @return [File]
308
+ def wexbim_get_envelope(asset_id, model_id, tenant_id, region, opts = {})
309
+ data, _status_code, _headers = wexbim_get_envelope_with_http_info(asset_id, model_id, tenant_id, region, opts)
310
+ data
311
+ end
312
+
313
+ # Gets the pre-generated building envelope wexbim geometry stream for a model
314
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Gets the pre-generated building envelope wexbim geometry stream for a model.&lt;br/&gt;E.g. The building fabric and external envelope.&lt;br/&gt;Return Type: &lt;b&gt;string&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
315
+ # @param asset_id [Integer] The asset identifier.
316
+ # @param model_id [Integer] The model identifier.
317
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
318
+ # @param region [String] The data center region the data resides in
319
+ # @param [Hash] opts the optional parameters
320
+ # @return [Array<(File, Integer, Hash)>] File data, response status code and response headers
321
+ def wexbim_get_envelope_with_http_info(asset_id, model_id, tenant_id, region, opts = {})
322
+ if @api_client.config.debugging
323
+ @api_client.config.logger.debug 'Calling API: WexbimApi.wexbim_get_envelope ...'
324
+ end
325
+ # verify the required parameter 'asset_id' is set
326
+ if @api_client.config.client_side_validation && asset_id.nil?
327
+ fail ArgumentError, "Missing the required parameter 'asset_id' when calling WexbimApi.wexbim_get_envelope"
328
+ end
329
+ # verify the required parameter 'model_id' is set
330
+ if @api_client.config.client_side_validation && model_id.nil?
331
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling WexbimApi.wexbim_get_envelope"
332
+ end
333
+ # verify the required parameter 'tenant_id' is set
334
+ if @api_client.config.client_side_validation && tenant_id.nil?
335
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling WexbimApi.wexbim_get_envelope"
336
+ end
337
+ # verify the required parameter 'region' is set
338
+ if @api_client.config.client_side_validation && region.nil?
339
+ fail ArgumentError, "Missing the required parameter 'region' when calling WexbimApi.wexbim_get_envelope"
340
+ end
341
+ # verify enum value
342
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
343
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
344
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
345
+ end
346
+ # resource path
347
+ local_var_path = '/{region}/aim/2.0/{tenantId}/wexbim/envelope'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
348
+
349
+ # query parameters
350
+ query_params = opts[:query_params] || {}
351
+ query_params[:'assetId'] = asset_id
352
+ query_params[:'modelId'] = model_id
353
+
354
+ # header parameters
355
+ header_params = opts[:header_params] || {}
356
+ # HTTP header 'Accept' (if needed)
357
+ header_params['Accept'] = @api_client.select_header_accept(['application/octet-stream'])
358
+
359
+ # form parameters
360
+ form_params = opts[:form_params] || {}
361
+
362
+ # http body (model)
363
+ post_body = opts[:debug_body]
364
+
365
+ # return_type
366
+ return_type = opts[:debug_return_type] || 'File'
367
+
368
+ # auth_names
369
+ auth_names = opts[:debug_auth_names] || ['oauth2']
370
+
371
+ new_options = opts.merge(
372
+ :operation => :"WexbimApi.wexbim_get_envelope",
373
+ :header_params => header_params,
374
+ :query_params => query_params,
375
+ :form_params => form_params,
376
+ :body => post_body,
377
+ :auth_names => auth_names,
378
+ :return_type => return_type
379
+ )
380
+
381
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
382
+ if @api_client.config.debugging
383
+ @api_client.config.logger.debug "API called: WexbimApi#wexbim_get_envelope\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
384
+ end
385
+ return data, status_code, headers
386
+ end
387
+
388
+ # Gets the building envelope geometry cut plane. This can be used to cap the holes after clipping.
389
+ # <span style='font-size: 17px;'>Summary:</span>Gets the building envelope geometry cut plane. This can be used to cap the holes after clipping..<br/>Return Type: <b>string</b><br/><br/>
390
+ # @param asset_id [Integer]
391
+ # @param model_id [Integer]
392
+ # @param bottom [Float]
393
+ # @param top [Float]
394
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
395
+ # @param region [String] The data center region the data resides in
396
+ # @param [Hash] opts the optional parameters
397
+ # @return [File]
398
+ def wexbim_get_envelope_cut(asset_id, model_id, bottom, top, tenant_id, region, opts = {})
399
+ data, _status_code, _headers = wexbim_get_envelope_cut_with_http_info(asset_id, model_id, bottom, top, tenant_id, region, opts)
400
+ data
401
+ end
402
+
403
+ # Gets the building envelope geometry cut plane. This can be used to cap the holes after clipping.
404
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Gets the building envelope geometry cut plane. This can be used to cap the holes after clipping..&lt;br/&gt;Return Type: &lt;b&gt;string&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
405
+ # @param asset_id [Integer]
406
+ # @param model_id [Integer]
407
+ # @param bottom [Float]
408
+ # @param top [Float]
409
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
410
+ # @param region [String] The data center region the data resides in
411
+ # @param [Hash] opts the optional parameters
412
+ # @return [Array<(File, Integer, Hash)>] File data, response status code and response headers
413
+ def wexbim_get_envelope_cut_with_http_info(asset_id, model_id, bottom, top, tenant_id, region, opts = {})
414
+ if @api_client.config.debugging
415
+ @api_client.config.logger.debug 'Calling API: WexbimApi.wexbim_get_envelope_cut ...'
416
+ end
417
+ # verify the required parameter 'asset_id' is set
418
+ if @api_client.config.client_side_validation && asset_id.nil?
419
+ fail ArgumentError, "Missing the required parameter 'asset_id' when calling WexbimApi.wexbim_get_envelope_cut"
420
+ end
421
+ # verify the required parameter 'model_id' is set
422
+ if @api_client.config.client_side_validation && model_id.nil?
423
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling WexbimApi.wexbim_get_envelope_cut"
424
+ end
425
+ # verify the required parameter 'bottom' is set
426
+ if @api_client.config.client_side_validation && bottom.nil?
427
+ fail ArgumentError, "Missing the required parameter 'bottom' when calling WexbimApi.wexbim_get_envelope_cut"
428
+ end
429
+ # verify the required parameter 'top' is set
430
+ if @api_client.config.client_side_validation && top.nil?
431
+ fail ArgumentError, "Missing the required parameter 'top' when calling WexbimApi.wexbim_get_envelope_cut"
432
+ end
433
+ # verify the required parameter 'tenant_id' is set
434
+ if @api_client.config.client_side_validation && tenant_id.nil?
435
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling WexbimApi.wexbim_get_envelope_cut"
436
+ end
437
+ # verify the required parameter 'region' is set
438
+ if @api_client.config.client_side_validation && region.nil?
439
+ fail ArgumentError, "Missing the required parameter 'region' when calling WexbimApi.wexbim_get_envelope_cut"
440
+ end
441
+ # verify enum value
442
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
443
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
444
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
445
+ end
446
+ # resource path
447
+ local_var_path = '/{region}/aim/2.0/{tenantId}/wexbim/envelopecut'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
448
+
449
+ # query parameters
450
+ query_params = opts[:query_params] || {}
451
+ query_params[:'assetId'] = asset_id
452
+ query_params[:'modelId'] = model_id
453
+ query_params[:'bottom'] = bottom
454
+ query_params[:'top'] = top
455
+
456
+ # header parameters
457
+ header_params = opts[:header_params] || {}
458
+ # HTTP header 'Accept' (if needed)
459
+ header_params['Accept'] = @api_client.select_header_accept(['application/octet-stream'])
460
+
461
+ # form parameters
462
+ form_params = opts[:form_params] || {}
463
+
464
+ # http body (model)
465
+ post_body = opts[:debug_body]
466
+
467
+ # return_type
468
+ return_type = opts[:debug_return_type] || 'File'
469
+
470
+ # auth_names
471
+ auth_names = opts[:debug_auth_names] || ['oauth2']
472
+
473
+ new_options = opts.merge(
474
+ :operation => :"WexbimApi.wexbim_get_envelope_cut",
475
+ :header_params => header_params,
476
+ :query_params => query_params,
477
+ :form_params => form_params,
478
+ :body => post_body,
479
+ :auth_names => auth_names,
480
+ :return_type => return_type
481
+ )
482
+
483
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
484
+ if @api_client.config.debugging
485
+ @api_client.config.logger.debug "API called: WexbimApi#wexbim_get_envelope_cut\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
486
+ end
487
+ return data, status_code, headers
488
+ end
489
+
490
+ # Gets the a cutplane across the envelope for up to 6 cut planes.
491
+ # <span style='font-size: 17px;'>Summary:</span>Gets the a cutplane across the envelope for up to 6 cut planes..<br/>Used to cap voids in the envelope when employing sections / section boxes.<br/>Return Type: <b>string</b><br/><br/>
492
+ # @param asset_id [Integer]
493
+ # @param model_id [Integer]
494
+ # @param planes [Array<Float>]
495
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
496
+ # @param region [String] The data center region the data resides in
497
+ # @param [Hash] opts the optional parameters
498
+ # @return [File]
499
+ def wexbim_get_envelope_free_cut(asset_id, model_id, planes, tenant_id, region, opts = {})
500
+ data, _status_code, _headers = wexbim_get_envelope_free_cut_with_http_info(asset_id, model_id, planes, tenant_id, region, opts)
501
+ data
502
+ end
503
+
504
+ # Gets the a cutplane across the envelope for up to 6 cut planes.
505
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Gets the a cutplane across the envelope for up to 6 cut planes..&lt;br/&gt;Used to cap voids in the envelope when employing sections / section boxes.&lt;br/&gt;Return Type: &lt;b&gt;string&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
506
+ # @param asset_id [Integer]
507
+ # @param model_id [Integer]
508
+ # @param planes [Array<Float>]
509
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
510
+ # @param region [String] The data center region the data resides in
511
+ # @param [Hash] opts the optional parameters
512
+ # @return [Array<(File, Integer, Hash)>] File data, response status code and response headers
513
+ def wexbim_get_envelope_free_cut_with_http_info(asset_id, model_id, planes, tenant_id, region, opts = {})
514
+ if @api_client.config.debugging
515
+ @api_client.config.logger.debug 'Calling API: WexbimApi.wexbim_get_envelope_free_cut ...'
516
+ end
517
+ # verify the required parameter 'asset_id' is set
518
+ if @api_client.config.client_side_validation && asset_id.nil?
519
+ fail ArgumentError, "Missing the required parameter 'asset_id' when calling WexbimApi.wexbim_get_envelope_free_cut"
520
+ end
521
+ # verify the required parameter 'model_id' is set
522
+ if @api_client.config.client_side_validation && model_id.nil?
523
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling WexbimApi.wexbim_get_envelope_free_cut"
524
+ end
525
+ # verify the required parameter 'planes' is set
526
+ if @api_client.config.client_side_validation && planes.nil?
527
+ fail ArgumentError, "Missing the required parameter 'planes' when calling WexbimApi.wexbim_get_envelope_free_cut"
528
+ end
529
+ # verify the required parameter 'tenant_id' is set
530
+ if @api_client.config.client_side_validation && tenant_id.nil?
531
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling WexbimApi.wexbim_get_envelope_free_cut"
532
+ end
533
+ # verify the required parameter 'region' is set
534
+ if @api_client.config.client_side_validation && region.nil?
535
+ fail ArgumentError, "Missing the required parameter 'region' when calling WexbimApi.wexbim_get_envelope_free_cut"
536
+ end
537
+ # verify enum value
538
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
539
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
540
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
541
+ end
542
+ # resource path
543
+ local_var_path = '/{region}/aim/2.0/{tenantId}/wexbim/envelopefreecut'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
544
+
545
+ # query parameters
546
+ query_params = opts[:query_params] || {}
547
+ query_params[:'assetId'] = asset_id
548
+ query_params[:'modelId'] = model_id
549
+ query_params[:'planes'] = @api_client.build_collection_param(planes, :csv)
550
+
551
+ # header parameters
552
+ header_params = opts[:header_params] || {}
553
+ # HTTP header 'Accept' (if needed)
554
+ header_params['Accept'] = @api_client.select_header_accept(['application/octet-stream'])
555
+
556
+ # form parameters
557
+ form_params = opts[:form_params] || {}
558
+
559
+ # http body (model)
560
+ post_body = opts[:debug_body]
561
+
562
+ # return_type
563
+ return_type = opts[:debug_return_type] || 'File'
564
+
565
+ # auth_names
566
+ auth_names = opts[:debug_auth_names] || ['oauth2']
567
+
568
+ new_options = opts.merge(
569
+ :operation => :"WexbimApi.wexbim_get_envelope_free_cut",
570
+ :header_params => header_params,
571
+ :query_params => query_params,
572
+ :form_params => form_params,
573
+ :body => post_body,
574
+ :auth_names => auth_names,
575
+ :return_type => return_type
576
+ )
577
+
578
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
579
+ if @api_client.config.debugging
580
+ @api_client.config.logger.debug "API called: WexbimApi#wexbim_get_envelope_free_cut\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
581
+ end
582
+ return data, status_code, headers
583
+ end
584
+
585
+ # Gets the pre-generated Site wexbim geometry stream for a model
586
+ # <span style='font-size: 17px;'>Summary:</span>Gets the pre-generated Site wexbim geometry stream for a model.<br/>E.g. The building fabric and external envelope.<br/>Return Type: <b>string</b><br/><br/>
587
+ # @param asset_id [Integer] The asset identifier.
588
+ # @param model_id [Integer] The model identifier.
589
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
590
+ # @param region [String] The data center region the data resides in
591
+ # @param [Hash] opts the optional parameters
592
+ # @return [File]
593
+ def wexbim_get_site(asset_id, model_id, tenant_id, region, opts = {})
594
+ data, _status_code, _headers = wexbim_get_site_with_http_info(asset_id, model_id, tenant_id, region, opts)
595
+ data
596
+ end
597
+
598
+ # Gets the pre-generated Site wexbim geometry stream for a model
599
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Gets the pre-generated Site wexbim geometry stream for a model.&lt;br/&gt;E.g. The building fabric and external envelope.&lt;br/&gt;Return Type: &lt;b&gt;string&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
600
+ # @param asset_id [Integer] The asset identifier.
601
+ # @param model_id [Integer] The model identifier.
602
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
603
+ # @param region [String] The data center region the data resides in
604
+ # @param [Hash] opts the optional parameters
605
+ # @return [Array<(File, Integer, Hash)>] File data, response status code and response headers
606
+ def wexbim_get_site_with_http_info(asset_id, model_id, tenant_id, region, opts = {})
607
+ if @api_client.config.debugging
608
+ @api_client.config.logger.debug 'Calling API: WexbimApi.wexbim_get_site ...'
609
+ end
610
+ # verify the required parameter 'asset_id' is set
611
+ if @api_client.config.client_side_validation && asset_id.nil?
612
+ fail ArgumentError, "Missing the required parameter 'asset_id' when calling WexbimApi.wexbim_get_site"
613
+ end
614
+ # verify the required parameter 'model_id' is set
615
+ if @api_client.config.client_side_validation && model_id.nil?
616
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling WexbimApi.wexbim_get_site"
617
+ end
618
+ # verify the required parameter 'tenant_id' is set
619
+ if @api_client.config.client_side_validation && tenant_id.nil?
620
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling WexbimApi.wexbim_get_site"
621
+ end
622
+ # verify the required parameter 'region' is set
623
+ if @api_client.config.client_side_validation && region.nil?
624
+ fail ArgumentError, "Missing the required parameter 'region' when calling WexbimApi.wexbim_get_site"
625
+ end
626
+ # verify enum value
627
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
628
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
629
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
630
+ end
631
+ # resource path
632
+ local_var_path = '/{region}/aim/2.0/{tenantId}/wexbim/site'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
633
+
634
+ # query parameters
635
+ query_params = opts[:query_params] || {}
636
+ query_params[:'assetId'] = asset_id
637
+ query_params[:'modelId'] = model_id
638
+
639
+ # header parameters
640
+ header_params = opts[:header_params] || {}
641
+ # HTTP header 'Accept' (if needed)
642
+ header_params['Accept'] = @api_client.select_header_accept(['application/octet-stream'])
643
+
644
+ # form parameters
645
+ form_params = opts[:form_params] || {}
646
+
647
+ # http body (model)
648
+ post_body = opts[:debug_body]
649
+
650
+ # return_type
651
+ return_type = opts[:debug_return_type] || 'File'
652
+
653
+ # auth_names
654
+ auth_names = opts[:debug_auth_names] || ['oauth2']
655
+
656
+ new_options = opts.merge(
657
+ :operation => :"WexbimApi.wexbim_get_site",
658
+ :header_params => header_params,
659
+ :query_params => query_params,
660
+ :form_params => form_params,
661
+ :body => post_body,
662
+ :auth_names => auth_names,
663
+ :return_type => return_type
664
+ )
665
+
666
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
667
+ if @api_client.config.debugging
668
+ @api_client.config.logger.debug "API called: WexbimApi#wexbim_get_site\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
669
+ end
670
+ return data, status_code, headers
671
+ end
672
+
673
+ # Gets the pre-generated spatial wexbim geometry stream for a model
674
+ # <span style='font-size: 17px;'>Summary:</span>Gets the pre-generated spatial wexbim geometry stream for a model.<br/>E.g. The Site, Zones, Spaces in a Facility.<br/>Return Type: <b>string</b><br/><br/>
675
+ # @param asset_id [Integer] Asset ID
676
+ # @param model_id [Integer] Model ID
677
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
678
+ # @param region [String] The data center region the data resides in
679
+ # @param [Hash] opts the optional parameters
680
+ # @return [File]
681
+ def wexbim_get_spatial_structure(asset_id, model_id, tenant_id, region, opts = {})
682
+ data, _status_code, _headers = wexbim_get_spatial_structure_with_http_info(asset_id, model_id, tenant_id, region, opts)
683
+ data
684
+ end
685
+
686
+ # Gets the pre-generated spatial wexbim geometry stream for a model
687
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Gets the pre-generated spatial wexbim geometry stream for a model.&lt;br/&gt;E.g. The Site, Zones, Spaces in a Facility.&lt;br/&gt;Return Type: &lt;b&gt;string&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
688
+ # @param asset_id [Integer] Asset ID
689
+ # @param model_id [Integer] Model ID
690
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
691
+ # @param region [String] The data center region the data resides in
692
+ # @param [Hash] opts the optional parameters
693
+ # @return [Array<(File, Integer, Hash)>] File data, response status code and response headers
694
+ def wexbim_get_spatial_structure_with_http_info(asset_id, model_id, tenant_id, region, opts = {})
695
+ if @api_client.config.debugging
696
+ @api_client.config.logger.debug 'Calling API: WexbimApi.wexbim_get_spatial_structure ...'
697
+ end
698
+ # verify the required parameter 'asset_id' is set
699
+ if @api_client.config.client_side_validation && asset_id.nil?
700
+ fail ArgumentError, "Missing the required parameter 'asset_id' when calling WexbimApi.wexbim_get_spatial_structure"
701
+ end
702
+ # verify the required parameter 'model_id' is set
703
+ if @api_client.config.client_side_validation && model_id.nil?
704
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling WexbimApi.wexbim_get_spatial_structure"
705
+ end
706
+ # verify the required parameter 'tenant_id' is set
707
+ if @api_client.config.client_side_validation && tenant_id.nil?
708
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling WexbimApi.wexbim_get_spatial_structure"
709
+ end
710
+ # verify the required parameter 'region' is set
711
+ if @api_client.config.client_side_validation && region.nil?
712
+ fail ArgumentError, "Missing the required parameter 'region' when calling WexbimApi.wexbim_get_spatial_structure"
713
+ end
714
+ # verify enum value
715
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
716
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
717
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
718
+ end
719
+ # resource path
720
+ local_var_path = '/{region}/aim/2.0/{tenantId}/wexbim/spatial'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
721
+
722
+ # query parameters
723
+ query_params = opts[:query_params] || {}
724
+ query_params[:'assetId'] = asset_id
725
+ query_params[:'modelId'] = model_id
726
+
727
+ # header parameters
728
+ header_params = opts[:header_params] || {}
729
+ # HTTP header 'Accept' (if needed)
730
+ header_params['Accept'] = @api_client.select_header_accept(['application/octet-stream'])
731
+
732
+ # form parameters
733
+ form_params = opts[:form_params] || {}
734
+
735
+ # http body (model)
736
+ post_body = opts[:debug_body]
737
+
738
+ # return_type
739
+ return_type = opts[:debug_return_type] || 'File'
740
+
741
+ # auth_names
742
+ auth_names = opts[:debug_auth_names] || ['oauth2']
743
+
744
+ new_options = opts.merge(
745
+ :operation => :"WexbimApi.wexbim_get_spatial_structure",
746
+ :header_params => header_params,
747
+ :query_params => query_params,
748
+ :form_params => form_params,
749
+ :body => post_body,
750
+ :auth_names => auth_names,
751
+ :return_type => return_type
752
+ )
753
+
754
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
755
+ if @api_client.config.debugging
756
+ @api_client.config.logger.debug "API called: WexbimApi#wexbim_get_spatial_structure\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
757
+ end
758
+ return data, status_code, headers
759
+ end
760
+
761
+ # Gets the pre-generated doors/windows wexbim geometry stream for a model
762
+ # <span style='font-size: 17px;'>Summary:</span>Gets the pre-generated doors/windows wexbim geometry stream for a model.<br/>E.g. The building fabric and external envelope.<br/>Return Type: <b>string</b><br/><br/>
763
+ # @param asset_id [Integer]
764
+ # @param model_id [Integer]
765
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
766
+ # @param region [String] The data center region the data resides in
767
+ # @param [Hash] opts the optional parameters
768
+ # @return [File]
769
+ def wexbim_get_windows_and_doors(asset_id, model_id, tenant_id, region, opts = {})
770
+ data, _status_code, _headers = wexbim_get_windows_and_doors_with_http_info(asset_id, model_id, tenant_id, region, opts)
771
+ data
772
+ end
773
+
774
+ # Gets the pre-generated doors/windows wexbim geometry stream for a model
775
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Gets the pre-generated doors/windows wexbim geometry stream for a model.&lt;br/&gt;E.g. The building fabric and external envelope.&lt;br/&gt;Return Type: &lt;b&gt;string&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
776
+ # @param asset_id [Integer]
777
+ # @param model_id [Integer]
778
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
779
+ # @param region [String] The data center region the data resides in
780
+ # @param [Hash] opts the optional parameters
781
+ # @return [Array<(File, Integer, Hash)>] File data, response status code and response headers
782
+ def wexbim_get_windows_and_doors_with_http_info(asset_id, model_id, tenant_id, region, opts = {})
783
+ if @api_client.config.debugging
784
+ @api_client.config.logger.debug 'Calling API: WexbimApi.wexbim_get_windows_and_doors ...'
785
+ end
786
+ # verify the required parameter 'asset_id' is set
787
+ if @api_client.config.client_side_validation && asset_id.nil?
788
+ fail ArgumentError, "Missing the required parameter 'asset_id' when calling WexbimApi.wexbim_get_windows_and_doors"
789
+ end
790
+ # verify the required parameter 'model_id' is set
791
+ if @api_client.config.client_side_validation && model_id.nil?
792
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling WexbimApi.wexbim_get_windows_and_doors"
793
+ end
794
+ # verify the required parameter 'tenant_id' is set
795
+ if @api_client.config.client_side_validation && tenant_id.nil?
796
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling WexbimApi.wexbim_get_windows_and_doors"
797
+ end
798
+ # verify the required parameter 'region' is set
799
+ if @api_client.config.client_side_validation && region.nil?
800
+ fail ArgumentError, "Missing the required parameter 'region' when calling WexbimApi.wexbim_get_windows_and_doors"
801
+ end
802
+ # verify enum value
803
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
804
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
805
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
806
+ end
807
+ # resource path
808
+ local_var_path = '/{region}/aim/2.0/{tenantId}/wexbim/windowsdoors'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
809
+
810
+ # query parameters
811
+ query_params = opts[:query_params] || {}
812
+ query_params[:'assetId'] = asset_id
813
+ query_params[:'modelId'] = model_id
814
+
815
+ # header parameters
816
+ header_params = opts[:header_params] || {}
817
+ # HTTP header 'Accept' (if needed)
818
+ header_params['Accept'] = @api_client.select_header_accept(['application/octet-stream'])
819
+
820
+ # form parameters
821
+ form_params = opts[:form_params] || {}
822
+
823
+ # http body (model)
824
+ post_body = opts[:debug_body]
825
+
826
+ # return_type
827
+ return_type = opts[:debug_return_type] || 'File'
828
+
829
+ # auth_names
830
+ auth_names = opts[:debug_auth_names] || ['oauth2']
831
+
832
+ new_options = opts.merge(
833
+ :operation => :"WexbimApi.wexbim_get_windows_and_doors",
834
+ :header_params => header_params,
835
+ :query_params => query_params,
836
+ :form_params => form_params,
837
+ :body => post_body,
838
+ :auth_names => auth_names,
839
+ :return_type => return_type
840
+ )
841
+
842
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
843
+ if @api_client.config.debugging
844
+ @api_client.config.logger.debug "API called: WexbimApi#wexbim_get_windows_and_doors\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
845
+ end
846
+ return data, status_code, headers
847
+ end
848
+ end
849
+ end