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,496 @@
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 SchedulesApi
17
+ attr_accessor :api_client
18
+
19
+ def initialize(api_client = ApiClient.default)
20
+ @api_client = api_client
21
+ end
22
+ # Returns the entity with the key from Schedules
23
+ # <span style='font-size: 17px;'>Summary:</span>Returns the entity with the key from Schedules.<br/>Return Type: <b>Schedule</b><br/><br/>
24
+ # @param asset_model_id [Integer] key: AssetModelId
25
+ # @param schedule_name [String] key: ScheduleName
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
+ # @option opts [String] :expand Expands related entities inline.
30
+ # @option opts [String] :select Selects which properties to include in the response.
31
+ # @return [Schedule]
32
+ def schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid(asset_model_id, schedule_name, tenant_id, region, opts = {})
33
+ data, _status_code, _headers = schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid_with_http_info(asset_model_id, schedule_name, tenant_id, region, opts)
34
+ data
35
+ end
36
+
37
+ # Returns the entity with the key from Schedules
38
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Returns the entity with the key from Schedules.&lt;br/&gt;Return Type: &lt;b&gt;Schedule&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
39
+ # @param asset_model_id [Integer] key: AssetModelId
40
+ # @param schedule_name [String] key: ScheduleName
41
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
42
+ # @param region [String] The data center region the data resides in
43
+ # @param [Hash] opts the optional parameters
44
+ # @option opts [String] :expand Expands related entities inline.
45
+ # @option opts [String] :select Selects which properties to include in the response.
46
+ # @return [Array<(Schedule, Integer, Hash)>] Schedule data, response status code and response headers
47
+ def schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid_with_http_info(asset_model_id, schedule_name, tenant_id, region, opts = {})
48
+ if @api_client.config.debugging
49
+ @api_client.config.logger.debug 'Calling API: SchedulesApi.schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid ...'
50
+ end
51
+ # verify the required parameter 'asset_model_id' is set
52
+ if @api_client.config.client_side_validation && asset_model_id.nil?
53
+ fail ArgumentError, "Missing the required parameter 'asset_model_id' when calling SchedulesApi.schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid"
54
+ end
55
+ # verify the required parameter 'schedule_name' is set
56
+ if @api_client.config.client_side_validation && schedule_name.nil?
57
+ fail ArgumentError, "Missing the required parameter 'schedule_name' when calling SchedulesApi.schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid"
58
+ end
59
+ # verify the required parameter 'tenant_id' is set
60
+ if @api_client.config.client_side_validation && tenant_id.nil?
61
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling SchedulesApi.schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid"
62
+ end
63
+ # verify the required parameter 'region' is set
64
+ if @api_client.config.client_side_validation && region.nil?
65
+ fail ArgumentError, "Missing the required parameter 'region' when calling SchedulesApi.schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid"
66
+ end
67
+ # verify enum value
68
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
69
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
70
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
71
+ end
72
+ # resource path
73
+ local_var_path = '/{region}/aim/2.0/{tenantId}/Schedules(AssetModelId={AssetModelId},ScheduleName={ScheduleName})'.sub('{' + 'assetModelId' + '}', CGI.escape(asset_model_id.to_s)).sub('{' + 'scheduleName' + '}', CGI.escape(schedule_name.to_s)).sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
74
+
75
+ # query parameters
76
+ query_params = opts[:query_params] || {}
77
+ query_params[:'$expand'] = opts[:'expand'] if !opts[:'expand'].nil?
78
+ query_params[:'$select'] = opts[:'select'] if !opts[:'select'].nil?
79
+
80
+ # header parameters
81
+ header_params = opts[:header_params] || {}
82
+ # HTTP header 'Accept' (if needed)
83
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/json;odata.metadata=none', 'application/json;odata.metadata=minimal', 'application/json;odata.metadata=full'])
84
+
85
+ # form parameters
86
+ form_params = opts[:form_params] || {}
87
+
88
+ # http body (model)
89
+ post_body = opts[:debug_body]
90
+
91
+ # return_type
92
+ return_type = opts[:debug_return_type] || 'Schedule'
93
+
94
+ # auth_names
95
+ auth_names = opts[:debug_auth_names] || ['oauth2']
96
+
97
+ new_options = opts.merge(
98
+ :operation => :"SchedulesApi.schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid",
99
+ :header_params => header_params,
100
+ :query_params => query_params,
101
+ :form_params => form_params,
102
+ :body => post_body,
103
+ :auth_names => auth_names,
104
+ :return_type => return_type
105
+ )
106
+
107
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
108
+ if @api_client.config.debugging
109
+ @api_client.config.logger.debug "API called: SchedulesApi#schedules_get_schedule_by_assetmodelid_and_schedulename_and_tenantid\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
110
+ end
111
+ return data, status_code, headers
112
+ end
113
+
114
+ # Get Schedules schedule by tenantid
115
+ # <span style='font-size: 17px;'>Summary:</span>Return Type: <b>Schedule</b><br/><br/>
116
+ # @param asset_model_id [Integer]
117
+ # @param schedule_name [String]
118
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
119
+ # @param region [String] The data center region the data resides in
120
+ # @param [Hash] opts the optional parameters
121
+ # @option opts [String] :expand Expands related entities inline.
122
+ # @option opts [String] :select Selects which properties to include in the response.
123
+ # @return [Schedule]
124
+ def schedules_get_schedule_by_tenantid(asset_model_id, schedule_name, tenant_id, region, opts = {})
125
+ data, _status_code, _headers = schedules_get_schedule_by_tenantid_with_http_info(asset_model_id, schedule_name, tenant_id, region, opts)
126
+ data
127
+ end
128
+
129
+ # Get Schedules schedule by tenantid
130
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Return Type: &lt;b&gt;Schedule&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
131
+ # @param asset_model_id [Integer]
132
+ # @param schedule_name [String]
133
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
134
+ # @param region [String] The data center region the data resides in
135
+ # @param [Hash] opts the optional parameters
136
+ # @option opts [String] :expand Expands related entities inline.
137
+ # @option opts [String] :select Selects which properties to include in the response.
138
+ # @return [Array<(Schedule, Integer, Hash)>] Schedule data, response status code and response headers
139
+ def schedules_get_schedule_by_tenantid_with_http_info(asset_model_id, schedule_name, tenant_id, region, opts = {})
140
+ if @api_client.config.debugging
141
+ @api_client.config.logger.debug 'Calling API: SchedulesApi.schedules_get_schedule_by_tenantid ...'
142
+ end
143
+ # verify the required parameter 'asset_model_id' is set
144
+ if @api_client.config.client_side_validation && asset_model_id.nil?
145
+ fail ArgumentError, "Missing the required parameter 'asset_model_id' when calling SchedulesApi.schedules_get_schedule_by_tenantid"
146
+ end
147
+ # verify the required parameter 'schedule_name' is set
148
+ if @api_client.config.client_side_validation && schedule_name.nil?
149
+ fail ArgumentError, "Missing the required parameter 'schedule_name' when calling SchedulesApi.schedules_get_schedule_by_tenantid"
150
+ end
151
+ # verify the required parameter 'tenant_id' is set
152
+ if @api_client.config.client_side_validation && tenant_id.nil?
153
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling SchedulesApi.schedules_get_schedule_by_tenantid"
154
+ end
155
+ # verify the required parameter 'region' is set
156
+ if @api_client.config.client_side_validation && region.nil?
157
+ fail ArgumentError, "Missing the required parameter 'region' when calling SchedulesApi.schedules_get_schedule_by_tenantid"
158
+ end
159
+ # verify enum value
160
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
161
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
162
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
163
+ end
164
+ # resource path
165
+ local_var_path = '/{region}/aim/2.0/{tenantId}/Schedules({AssetModelId},{ScheduleName})'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
166
+
167
+ # query parameters
168
+ query_params = opts[:query_params] || {}
169
+ query_params[:'assetModelId'] = asset_model_id
170
+ query_params[:'scheduleName'] = schedule_name
171
+ query_params[:'$expand'] = opts[:'expand'] if !opts[:'expand'].nil?
172
+ query_params[:'$select'] = opts[:'select'] if !opts[:'select'].nil?
173
+
174
+ # header parameters
175
+ header_params = opts[:header_params] || {}
176
+ # HTTP header 'Accept' (if needed)
177
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/json;odata.metadata=none', 'application/json;odata.metadata=minimal', 'application/json;odata.metadata=full'])
178
+
179
+ # form parameters
180
+ form_params = opts[:form_params] || {}
181
+
182
+ # http body (model)
183
+ post_body = opts[:debug_body]
184
+
185
+ # return_type
186
+ return_type = opts[:debug_return_type] || 'Schedule'
187
+
188
+ # auth_names
189
+ auth_names = opts[:debug_auth_names] || ['oauth2']
190
+
191
+ new_options = opts.merge(
192
+ :operation => :"SchedulesApi.schedules_get_schedule_by_tenantid",
193
+ :header_params => header_params,
194
+ :query_params => query_params,
195
+ :form_params => form_params,
196
+ :body => post_body,
197
+ :auth_names => auth_names,
198
+ :return_type => return_type
199
+ )
200
+
201
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
202
+ if @api_client.config.debugging
203
+ @api_client.config.logger.debug "API called: SchedulesApi#schedules_get_schedule_by_tenantid\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
204
+ end
205
+ return data, status_code, headers
206
+ end
207
+
208
+ # Get Schedules schedule rows by assetmodelid, schedulename and tenantid
209
+ # <span style='font-size: 17px;'>Summary:</span>Return Type: <b>ODataListResponseOfRow</b><br/>For more information about OData responses <a href='https://www.odata.org/getting-started/understand-odata-in-6-steps/'>link</a>.<br/><br/>
210
+ # @param asset_model_id [Integer]
211
+ # @param schedule_name [String]
212
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
213
+ # @param region [String] The data center region the data resides in
214
+ # @param [Hash] opts the optional parameters
215
+ # @option opts [String] :expand Expands related entities inline.
216
+ # @option opts [String] :filter Filters the results, based on a Boolean condition.
217
+ # @option opts [String] :select Selects which properties to include in the response.
218
+ # @option opts [String] :orderby Sorts the results.
219
+ # @option opts [Integer] :top Returns only the first n results.
220
+ # @option opts [Integer] :skip Skips the first n results.
221
+ # @option opts [Boolean] :count Includes a count of the matching results in the response.
222
+ # @return [ODataListResponseOfRow]
223
+ def schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid(asset_model_id, schedule_name, tenant_id, region, opts = {})
224
+ data, _status_code, _headers = schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid_with_http_info(asset_model_id, schedule_name, tenant_id, region, opts)
225
+ data
226
+ end
227
+
228
+ # Get Schedules schedule rows by assetmodelid, schedulename and tenantid
229
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Return Type: &lt;b&gt;ODataListResponseOfRow&lt;/b&gt;&lt;br/&gt;For more information about OData responses &lt;a href&#x3D;&#39;https://www.odata.org/getting-started/understand-odata-in-6-steps/&#39;&gt;link&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;
230
+ # @param asset_model_id [Integer]
231
+ # @param schedule_name [String]
232
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
233
+ # @param region [String] The data center region the data resides in
234
+ # @param [Hash] opts the optional parameters
235
+ # @option opts [String] :expand Expands related entities inline.
236
+ # @option opts [String] :filter Filters the results, based on a Boolean condition.
237
+ # @option opts [String] :select Selects which properties to include in the response.
238
+ # @option opts [String] :orderby Sorts the results.
239
+ # @option opts [Integer] :top Returns only the first n results.
240
+ # @option opts [Integer] :skip Skips the first n results.
241
+ # @option opts [Boolean] :count Includes a count of the matching results in the response.
242
+ # @return [Array<(ODataListResponseOfRow, Integer, Hash)>] ODataListResponseOfRow data, response status code and response headers
243
+ def schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid_with_http_info(asset_model_id, schedule_name, tenant_id, region, opts = {})
244
+ if @api_client.config.debugging
245
+ @api_client.config.logger.debug 'Calling API: SchedulesApi.schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid ...'
246
+ end
247
+ # verify the required parameter 'asset_model_id' is set
248
+ if @api_client.config.client_side_validation && asset_model_id.nil?
249
+ fail ArgumentError, "Missing the required parameter 'asset_model_id' when calling SchedulesApi.schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid"
250
+ end
251
+ # verify the required parameter 'schedule_name' is set
252
+ if @api_client.config.client_side_validation && schedule_name.nil?
253
+ fail ArgumentError, "Missing the required parameter 'schedule_name' when calling SchedulesApi.schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid"
254
+ end
255
+ # verify the required parameter 'tenant_id' is set
256
+ if @api_client.config.client_side_validation && tenant_id.nil?
257
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling SchedulesApi.schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid"
258
+ end
259
+ # verify the required parameter 'region' is set
260
+ if @api_client.config.client_side_validation && region.nil?
261
+ fail ArgumentError, "Missing the required parameter 'region' when calling SchedulesApi.schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid"
262
+ end
263
+ # verify enum value
264
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
265
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
266
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
267
+ end
268
+ # resource path
269
+ local_var_path = '/{region}/aim/2.0/{tenantId}/Schedules({assetModelId},{scheduleName})/Rows'.sub('{' + 'assetModelId' + '}', CGI.escape(asset_model_id.to_s)).sub('{' + 'scheduleName' + '}', CGI.escape(schedule_name.to_s)).sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
270
+
271
+ # query parameters
272
+ query_params = opts[:query_params] || {}
273
+ query_params[:'$expand'] = opts[:'expand'] if !opts[:'expand'].nil?
274
+ query_params[:'$filter'] = opts[:'filter'] if !opts[:'filter'].nil?
275
+ query_params[:'$select'] = opts[:'select'] if !opts[:'select'].nil?
276
+ query_params[:'$orderby'] = opts[:'orderby'] if !opts[:'orderby'].nil?
277
+ query_params[:'$top'] = opts[:'top'] if !opts[:'top'].nil?
278
+ query_params[:'$skip'] = opts[:'skip'] if !opts[:'skip'].nil?
279
+ query_params[:'$count'] = opts[:'count'] if !opts[:'count'].nil?
280
+
281
+ # header parameters
282
+ header_params = opts[:header_params] || {}
283
+ # HTTP header 'Accept' (if needed)
284
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/json;odata.metadata=none', 'application/json;odata.metadata=minimal', 'application/json;odata.metadata=full', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'])
285
+
286
+ # form parameters
287
+ form_params = opts[:form_params] || {}
288
+
289
+ # http body (model)
290
+ post_body = opts[:debug_body]
291
+
292
+ # return_type
293
+ return_type = opts[:debug_return_type] || 'ODataListResponseOfRow'
294
+
295
+ # auth_names
296
+ auth_names = opts[:debug_auth_names] || ['oauth2']
297
+
298
+ new_options = opts.merge(
299
+ :operation => :"SchedulesApi.schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid",
300
+ :header_params => header_params,
301
+ :query_params => query_params,
302
+ :form_params => form_params,
303
+ :body => post_body,
304
+ :auth_names => auth_names,
305
+ :return_type => return_type
306
+ )
307
+
308
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
309
+ if @api_client.config.debugging
310
+ @api_client.config.logger.debug "API called: SchedulesApi#schedules_get_schedule_rows_by_assetmodelid_and_schedulename_and_tenantid\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
311
+ end
312
+ return data, status_code, headers
313
+ end
314
+
315
+ # Returns the EntitySet Schedules
316
+ # <span style='font-size: 17px;'>Summary:</span>Returns the EntitySet Schedules.<br/>Return Type: <b>ODataListResponseOfSchedule</b><br/>For more information about OData responses <a href='https://www.odata.org/getting-started/understand-odata-in-6-steps/'>link</a>.<br/><br/>
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
+ # @option opts [String] :expand Expands related entities inline.
321
+ # @option opts [String] :filter Filters the results, based on a Boolean condition.
322
+ # @option opts [String] :select Selects which properties to include in the response.
323
+ # @option opts [String] :orderby Sorts the results.
324
+ # @option opts [Integer] :top Returns only the first n results.
325
+ # @option opts [Integer] :skip Skips the first n results.
326
+ # @option opts [Boolean] :count Includes a count of the matching results in the response.
327
+ # @return [ODataListResponseOfSchedule]
328
+ def schedules_get_schedules_by_tenantid(tenant_id, region, opts = {})
329
+ data, _status_code, _headers = schedules_get_schedules_by_tenantid_with_http_info(tenant_id, region, opts)
330
+ data
331
+ end
332
+
333
+ # Returns the EntitySet Schedules
334
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Returns the EntitySet Schedules.&lt;br/&gt;Return Type: &lt;b&gt;ODataListResponseOfSchedule&lt;/b&gt;&lt;br/&gt;For more information about OData responses &lt;a href&#x3D;&#39;https://www.odata.org/getting-started/understand-odata-in-6-steps/&#39;&gt;link&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;
335
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
336
+ # @param region [String] The data center region the data resides in
337
+ # @param [Hash] opts the optional parameters
338
+ # @option opts [String] :expand Expands related entities inline.
339
+ # @option opts [String] :filter Filters the results, based on a Boolean condition.
340
+ # @option opts [String] :select Selects which properties to include in the response.
341
+ # @option opts [String] :orderby Sorts the results.
342
+ # @option opts [Integer] :top Returns only the first n results.
343
+ # @option opts [Integer] :skip Skips the first n results.
344
+ # @option opts [Boolean] :count Includes a count of the matching results in the response.
345
+ # @return [Array<(ODataListResponseOfSchedule, Integer, Hash)>] ODataListResponseOfSchedule data, response status code and response headers
346
+ def schedules_get_schedules_by_tenantid_with_http_info(tenant_id, region, opts = {})
347
+ if @api_client.config.debugging
348
+ @api_client.config.logger.debug 'Calling API: SchedulesApi.schedules_get_schedules_by_tenantid ...'
349
+ end
350
+ # verify the required parameter 'tenant_id' is set
351
+ if @api_client.config.client_side_validation && tenant_id.nil?
352
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling SchedulesApi.schedules_get_schedules_by_tenantid"
353
+ end
354
+ # verify the required parameter 'region' is set
355
+ if @api_client.config.client_side_validation && region.nil?
356
+ fail ArgumentError, "Missing the required parameter 'region' when calling SchedulesApi.schedules_get_schedules_by_tenantid"
357
+ end
358
+ # verify enum value
359
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
360
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
361
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
362
+ end
363
+ # resource path
364
+ local_var_path = '/{region}/aim/2.0/{tenantId}/Schedules'.sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
365
+
366
+ # query parameters
367
+ query_params = opts[:query_params] || {}
368
+ query_params[:'$expand'] = opts[:'expand'] if !opts[:'expand'].nil?
369
+ query_params[:'$filter'] = opts[:'filter'] if !opts[:'filter'].nil?
370
+ query_params[:'$select'] = opts[:'select'] if !opts[:'select'].nil?
371
+ query_params[:'$orderby'] = opts[:'orderby'] if !opts[:'orderby'].nil?
372
+ query_params[:'$top'] = opts[:'top'] if !opts[:'top'].nil?
373
+ query_params[:'$skip'] = opts[:'skip'] if !opts[:'skip'].nil?
374
+ query_params[:'$count'] = opts[:'count'] if !opts[:'count'].nil?
375
+
376
+ # header parameters
377
+ header_params = opts[:header_params] || {}
378
+ # HTTP header 'Accept' (if needed)
379
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/json;odata.metadata=none', 'application/json;odata.metadata=minimal', 'application/json;odata.metadata=full'])
380
+
381
+ # form parameters
382
+ form_params = opts[:form_params] || {}
383
+
384
+ # http body (model)
385
+ post_body = opts[:debug_body]
386
+
387
+ # return_type
388
+ return_type = opts[:debug_return_type] || 'ODataListResponseOfSchedule'
389
+
390
+ # auth_names
391
+ auth_names = opts[:debug_auth_names] || ['oauth2']
392
+
393
+ new_options = opts.merge(
394
+ :operation => :"SchedulesApi.schedules_get_schedules_by_tenantid",
395
+ :header_params => header_params,
396
+ :query_params => query_params,
397
+ :form_params => form_params,
398
+ :body => post_body,
399
+ :auth_names => auth_names,
400
+ :return_type => return_type
401
+ )
402
+
403
+ data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
404
+ if @api_client.config.debugging
405
+ @api_client.config.logger.debug "API called: SchedulesApi#schedules_get_schedules_by_tenantid\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
406
+ end
407
+ return data, status_code, headers
408
+ end
409
+
410
+ # Post Schedules import schedule by modelid, schedule and tenantid
411
+ # <span style='font-size: 17px;'>Summary:</span>Return Type: <b></b><br/><br/>
412
+ # @param model_id [Integer]
413
+ # @param schedule [String]
414
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
415
+ # @param region [String] The data center region the data resides in
416
+ # @param [Hash] opts the optional parameters
417
+ # @return [Object]
418
+ def schedules_import_schedule_by_modelid_and_schedule_and_tenantid(model_id, schedule, tenant_id, region, opts = {})
419
+ data, _status_code, _headers = schedules_import_schedule_by_modelid_and_schedule_and_tenantid_with_http_info(model_id, schedule, tenant_id, region, opts)
420
+ data
421
+ end
422
+
423
+ # Post Schedules import schedule by modelid, schedule and tenantid
424
+ # &lt;span style&#x3D;&#39;font-size: 17px;&#39;&gt;Summary:&lt;/span&gt;Return Type: &lt;b&gt;&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;
425
+ # @param model_id [Integer]
426
+ # @param schedule [String]
427
+ # @param tenant_id [String] The unique Tenant ID (UUID or Identifier string)
428
+ # @param region [String] The data center region the data resides in
429
+ # @param [Hash] opts the optional parameters
430
+ # @return [Array<(Object, Integer, Hash)>] Object data, response status code and response headers
431
+ def schedules_import_schedule_by_modelid_and_schedule_and_tenantid_with_http_info(model_id, schedule, tenant_id, region, opts = {})
432
+ if @api_client.config.debugging
433
+ @api_client.config.logger.debug 'Calling API: SchedulesApi.schedules_import_schedule_by_modelid_and_schedule_and_tenantid ...'
434
+ end
435
+ # verify the required parameter 'model_id' is set
436
+ if @api_client.config.client_side_validation && model_id.nil?
437
+ fail ArgumentError, "Missing the required parameter 'model_id' when calling SchedulesApi.schedules_import_schedule_by_modelid_and_schedule_and_tenantid"
438
+ end
439
+ # verify the required parameter 'schedule' is set
440
+ if @api_client.config.client_side_validation && schedule.nil?
441
+ fail ArgumentError, "Missing the required parameter 'schedule' when calling SchedulesApi.schedules_import_schedule_by_modelid_and_schedule_and_tenantid"
442
+ end
443
+ # verify the required parameter 'tenant_id' is set
444
+ if @api_client.config.client_side_validation && tenant_id.nil?
445
+ fail ArgumentError, "Missing the required parameter 'tenant_id' when calling SchedulesApi.schedules_import_schedule_by_modelid_and_schedule_and_tenantid"
446
+ end
447
+ # verify the required parameter 'region' is set
448
+ if @api_client.config.client_side_validation && region.nil?
449
+ fail ArgumentError, "Missing the required parameter 'region' when calling SchedulesApi.schedules_import_schedule_by_modelid_and_schedule_and_tenantid"
450
+ end
451
+ # verify enum value
452
+ allowable_values = ["UK", "WestEurope", "Sandbox"]
453
+ if @api_client.config.client_side_validation && !allowable_values.include?(region)
454
+ fail ArgumentError, "invalid value for \"region\", must be one of #{allowable_values}"
455
+ end
456
+ # resource path
457
+ local_var_path = '/{region}/aim/2.0/{tenantId}/Schedules/Import(AssetModelId={modelId},ScheduleName={schedule})'.sub('{' + 'modelId' + '}', CGI.escape(model_id.to_s)).sub('{' + 'schedule' + '}', CGI.escape(schedule.to_s)).sub('{' + 'tenantId' + '}', CGI.escape(tenant_id.to_s)).sub('{' + 'region' + '}', CGI.escape(region.to_s))
458
+
459
+ # query parameters
460
+ query_params = opts[:query_params] || {}
461
+
462
+ # header parameters
463
+ header_params = opts[:header_params] || {}
464
+ # HTTP header 'Accept' (if needed)
465
+ header_params['Accept'] = @api_client.select_header_accept(['application/json', 'application/json;odata.metadata=none', 'application/json;odata.metadata=minimal', 'application/json;odata.metadata=full'])
466
+
467
+ # form parameters
468
+ form_params = opts[:form_params] || {}
469
+
470
+ # http body (model)
471
+ post_body = opts[:debug_body]
472
+
473
+ # return_type
474
+ return_type = opts[:debug_return_type] || 'Object'
475
+
476
+ # auth_names
477
+ auth_names = opts[:debug_auth_names] || ['oauth2']
478
+
479
+ new_options = opts.merge(
480
+ :operation => :"SchedulesApi.schedules_import_schedule_by_modelid_and_schedule_and_tenantid",
481
+ :header_params => header_params,
482
+ :query_params => query_params,
483
+ :form_params => form_params,
484
+ :body => post_body,
485
+ :auth_names => auth_names,
486
+ :return_type => return_type
487
+ )
488
+
489
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
490
+ if @api_client.config.debugging
491
+ @api_client.config.logger.debug "API called: SchedulesApi#schedules_import_schedule_by_modelid_and_schedule_and_tenantid\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
492
+ end
493
+ return data, status_code, headers
494
+ end
495
+ end
496
+ end