nms-integration-tool 1.3.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (246) hide show
  1. nms_integration_tool-1.3.0.1/LICENSE +201 -0
  2. nms_integration_tool-1.3.0.1/PKG-INFO +127 -0
  3. nms_integration_tool-1.3.0.1/README.md +94 -0
  4. nms_integration_tool-1.3.0.1/pyproject.toml +76 -0
  5. nms_integration_tool-1.3.0.1/setup.cfg +4 -0
  6. nms_integration_tool-1.3.0.1/src/nms_integration_tool/__init__.py +6 -0
  7. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/__init__.py +4 -0
  8. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/__init__.py +8 -0
  9. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/__init__.py +1 -0
  10. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/__init__.py +10 -0
  11. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/create_gateways.py +192 -0
  12. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/delete_gateway.py +176 -0
  13. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/delete_gateways.py +228 -0
  14. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/get_gateway_by_uuid.py +182 -0
  15. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/get_gateways.py +315 -0
  16. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/patch_gateway.py +223 -0
  17. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/patch_gateways.py +239 -0
  18. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/refresh_gateway_by_uuid.py +280 -0
  19. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/search_gateways.py +360 -0
  20. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/api/gateway_metadata/update_gateway.py +219 -0
  21. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/client.py +268 -0
  22. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/errors.py +16 -0
  23. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/__init__.py +31 -0
  24. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/base_object.py +73 -0
  25. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/common_search_parameter_object.py +92 -0
  26. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/common_search_parameter_object_order.py +9 -0
  27. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/coordinates.py +104 -0
  28. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/create_gateways_body_item.py +191 -0
  29. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/create_gateways_body_item_coordinates.py +99 -0
  30. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/delete_list_response.py +85 -0
  31. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/delete_list_response_metadata.py +62 -0
  32. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/epsg_code.py +8 -0
  33. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/error_response.py +191 -0
  34. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/error_response_details.py +47 -0
  35. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/error_response_service_ref.py +72 -0
  36. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/free_form_object.py +47 -0
  37. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/gateway.py +276 -0
  38. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/gateway_device_info.py +133 -0
  39. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/gateway_device_type.py +9 -0
  40. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/gateway_info.py +176 -0
  41. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/gateway_model.py +141 -0
  42. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/gateway_model_coordinates.py +99 -0
  43. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/get_gateways_order.py +9 -0
  44. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/get_gateways_response_200.py +99 -0
  45. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/metadata_base_object.py +110 -0
  46. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/metadata_base_object_custom.py +61 -0
  47. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/paging_parameter_object.py +78 -0
  48. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/response_paging_information.py +97 -0
  49. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/search_gateways_body.py +145 -0
  50. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/search_gateways_response_200.py +99 -0
  51. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/simple_response_paging_information.py +85 -0
  52. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/update_gateway_body.py +191 -0
  53. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/update_gateway_body_coordinates.py +99 -0
  54. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/models/wirepas_error_code.py +35 -0
  55. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/py.typed +1 -0
  56. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/gateways/wirepas_gateway_metadata_service_api_client/types.py +54 -0
  57. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/__init__.py +8 -0
  58. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/__init__.py +1 -0
  59. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/__init__.py +16 -0
  60. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/create_location_types.py +192 -0
  61. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/create_locations.py +192 -0
  62. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/delete_location.py +176 -0
  63. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/delete_location_type.py +196 -0
  64. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/delete_location_types.py +252 -0
  65. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/delete_locations.py +240 -0
  66. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/get_location_by_uuid.py +184 -0
  67. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/get_location_type_by_uuid.py +184 -0
  68. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/get_location_types.py +257 -0
  69. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/get_locations.py +323 -0
  70. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/patch_location.py +217 -0
  71. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/patch_location_type.py +233 -0
  72. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/patch_locations.py +239 -0
  73. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/search_locations.py +276 -0
  74. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/update_location.py +205 -0
  75. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/api/location_metadata/update_location_type.py +225 -0
  76. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/client.py +268 -0
  77. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/errors.py +16 -0
  78. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/__init__.py +35 -0
  79. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/base_object.py +73 -0
  80. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/common_search_parameter_object.py +92 -0
  81. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/common_search_parameter_object_order.py +9 -0
  82. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/coordinates.py +104 -0
  83. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/create_location_types_body_item.py +186 -0
  84. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/create_locations_body_item.py +179 -0
  85. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/create_locations_body_item_approx_coordinates.py +99 -0
  86. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/delete_list_response.py +85 -0
  87. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/delete_list_response_metadata.py +62 -0
  88. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/epsg_code.py +8 -0
  89. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/error_response.py +191 -0
  90. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/error_response_details.py +47 -0
  91. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/error_response_service_ref.py +72 -0
  92. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/free_form_object.py +47 -0
  93. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/get_locations_order.py +9 -0
  94. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/get_locations_response_200.py +99 -0
  95. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/location.py +186 -0
  96. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/location_geometry_type.py +10 -0
  97. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/location_info.py +166 -0
  98. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/location_model.py +131 -0
  99. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/location_model_approx_coordinates.py +99 -0
  100. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/location_type.py +185 -0
  101. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/location_type_info.py +165 -0
  102. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/location_type_model.py +151 -0
  103. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/metadata_base_object.py +110 -0
  104. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/metadata_base_object_custom.py +61 -0
  105. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/paging_parameter_object.py +78 -0
  106. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/response_paging_information.py +97 -0
  107. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/search_locations_body.py +145 -0
  108. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/search_locations_response_200.py +99 -0
  109. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/simple_response_paging_information.py +85 -0
  110. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/update_location_body.py +179 -0
  111. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/update_location_body_approx_coordinates.py +99 -0
  112. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/update_location_type_body.py +186 -0
  113. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/models/wirepas_error_code.py +35 -0
  114. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/py.typed +1 -0
  115. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/locations/wirepas_locations_metadata_service_api_client/types.py +54 -0
  116. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/__init__.py +8 -0
  117. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/__init__.py +1 -0
  118. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/__init__.py +12 -0
  119. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/add_network_linked_locations.py +219 -0
  120. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/create_networks.py +192 -0
  121. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/delete_network.py +176 -0
  122. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/delete_networks.py +228 -0
  123. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/get_network_by_uuid.py +184 -0
  124. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/get_network_linked_locations.py +233 -0
  125. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/get_networks.py +315 -0
  126. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/patch_network.py +215 -0
  127. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/patch_networks.py +240 -0
  128. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/remove_network_linked_locations.py +249 -0
  129. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/search_networks.py +344 -0
  130. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/api/network_metadata/update_network.py +207 -0
  131. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/client.py +268 -0
  132. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/errors.py +16 -0
  133. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/__init__.py +31 -0
  134. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/base_object.py +73 -0
  135. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/common_search_parameter_object.py +92 -0
  136. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/common_search_parameter_object_order.py +9 -0
  137. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/create_networks_body_item.py +120 -0
  138. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/delete_list_response.py +85 -0
  139. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/delete_list_response_metadata.py +62 -0
  140. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/error_response.py +191 -0
  141. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/error_response_details.py +47 -0
  142. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/error_response_service_ref.py +72 -0
  143. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/free_form_object.py +47 -0
  144. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/get_network_by_uuid_response_200.py +196 -0
  145. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/get_networks_order.py +9 -0
  146. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/get_networks_response_200.py +99 -0
  147. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/mesh_radio_profile.py +12 -0
  148. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/metadata_base_object.py +110 -0
  149. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/metadata_base_object_custom.py +61 -0
  150. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/network.py +156 -0
  151. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/network_info.py +101 -0
  152. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/network_linked_locations_info.py +87 -0
  153. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/network_model.py +62 -0
  154. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/network_read_only_info.py +77 -0
  155. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/network_read_only_info_network_info.py +98 -0
  156. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/paging_parameter_object.py +78 -0
  157. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/patch_network_body.py +120 -0
  158. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/patch_networks_body_item.py +175 -0
  159. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/response_paging_information.py +97 -0
  160. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/search_networks_body.py +145 -0
  161. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/search_networks_response_200.py +99 -0
  162. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/simple_response_paging_information.py +85 -0
  163. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/update_network_body.py +120 -0
  164. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/models/wirepas_error_code.py +35 -0
  165. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/py.typed +1 -0
  166. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/networks/wm_network_metadata_service_api_client/types.py +54 -0
  167. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/__init__.py +8 -0
  168. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/__init__.py +1 -0
  169. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/__init__.py +10 -0
  170. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/create_nodes.py +192 -0
  171. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/delete_node.py +176 -0
  172. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/delete_nodes.py +232 -0
  173. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/get_node_by_uuid.py +182 -0
  174. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/get_nodes.py +315 -0
  175. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/import_node_provisioning_data.py +358 -0
  176. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/patch_node.py +219 -0
  177. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/patch_nodes.py +243 -0
  178. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/search_nodes.py +340 -0
  179. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/api/node_metadata/update_node.py +219 -0
  180. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/client.py +268 -0
  181. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/errors.py +16 -0
  182. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/__init__.py +40 -0
  183. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/base_object.py +73 -0
  184. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/common_search_parameter_object.py +92 -0
  185. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/common_search_parameter_object_order.py +9 -0
  186. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/coordinates.py +104 -0
  187. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/create_nodes_body_item.py +196 -0
  188. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/create_nodes_body_item_coordinates.py +99 -0
  189. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/delete_list_response.py +85 -0
  190. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/delete_list_response_metadata.py +62 -0
  191. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/dual_comms_node_info.py +52 -0
  192. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/epsg_code.py +8 -0
  193. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/error_response.py +191 -0
  194. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/error_response_details.py +47 -0
  195. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/error_response_service_ref.py +72 -0
  196. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/free_form_object.py +47 -0
  197. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/get_nodes_order.py +9 -0
  198. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/get_nodes_response_200.py +99 -0
  199. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/import_node_provisioning_data_body.py +102 -0
  200. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/metadata_base_object.py +110 -0
  201. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/metadata_base_object_custom.py +61 -0
  202. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node.py +268 -0
  203. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_device_type.py +10 -0
  204. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_info.py +181 -0
  205. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_model.py +147 -0
  206. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_model_coordinates.py +99 -0
  207. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_provisioning_csv_metadata.py +66 -0
  208. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_provisioning_import_response.py +99 -0
  209. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_provisioning_import_response_errors_item.py +69 -0
  210. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_provisioning_info.py +108 -0
  211. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_read_only_ext.py +123 -0
  212. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/node_read_only_ext_service_refs.py +65 -0
  213. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/paging_parameter_object.py +78 -0
  214. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/related_object_reference.py +74 -0
  215. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/response_paging_information.py +97 -0
  216. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/search_nodes_body.py +145 -0
  217. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/search_nodes_response_200.py +99 -0
  218. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/simple_response_paging_information.py +85 -0
  219. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/sink_node_info.py +44 -0
  220. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/update_node_body.py +196 -0
  221. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/update_node_body_coordinates.py +99 -0
  222. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/models/wirepas_error_code.py +35 -0
  223. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/py.typed +1 -0
  224. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api/nodes/wm_node_metadata_service_api_client/types.py +54 -0
  225. nms_integration_tool-1.3.0.1/src/nms_integration_tool/api_client.py +55 -0
  226. nms_integration_tool-1.3.0.1/src/nms_integration_tool/cache.py +76 -0
  227. nms_integration_tool-1.3.0.1/src/nms_integration_tool/data_source.py +119 -0
  228. nms_integration_tool-1.3.0.1/src/nms_integration_tool/gateways/__init__.py +2 -0
  229. nms_integration_tool-1.3.0.1/src/nms_integration_tool/gateways/requester.py +74 -0
  230. nms_integration_tool-1.3.0.1/src/nms_integration_tool/gateways/transformer.py +42 -0
  231. nms_integration_tool-1.3.0.1/src/nms_integration_tool/locations/__init__.py +2 -0
  232. nms_integration_tool-1.3.0.1/src/nms_integration_tool/locations/requester.py +277 -0
  233. nms_integration_tool-1.3.0.1/src/nms_integration_tool/locations/transformer.py +168 -0
  234. nms_integration_tool-1.3.0.1/src/nms_integration_tool/networks/__init__.py +2 -0
  235. nms_integration_tool-1.3.0.1/src/nms_integration_tool/networks/requester.py +44 -0
  236. nms_integration_tool-1.3.0.1/src/nms_integration_tool/networks/transformer.py +33 -0
  237. nms_integration_tool-1.3.0.1/src/nms_integration_tool/nodes/__init__.py +2 -0
  238. nms_integration_tool-1.3.0.1/src/nms_integration_tool/nodes/requester.py +65 -0
  239. nms_integration_tool-1.3.0.1/src/nms_integration_tool/nodes/transformer.py +51 -0
  240. nms_integration_tool-1.3.0.1/src/nms_integration_tool/requester.py +475 -0
  241. nms_integration_tool-1.3.0.1/src/nms_integration_tool/transformer.py +37 -0
  242. nms_integration_tool-1.3.0.1/src/nms_integration_tool.egg-info/PKG-INFO +127 -0
  243. nms_integration_tool-1.3.0.1/src/nms_integration_tool.egg-info/SOURCES.txt +244 -0
  244. nms_integration_tool-1.3.0.1/src/nms_integration_tool.egg-info/dependency_links.txt +1 -0
  245. nms_integration_tool-1.3.0.1/src/nms_integration_tool.egg-info/requires.txt +17 -0
  246. nms_integration_tool-1.3.0.1/src/nms_integration_tool.egg-info/top_level.txt +1 -0
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,127 @@
1
+ Metadata-Version: 2.4
2
+ Name: nms-integration-tool
3
+ Version: 1.3.0.1
4
+ Summary: Library to integrate Wirepas NMS metadata service APIs
5
+ Author-email: Wirepas Oy <opensource@wirepas.com>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Repository, https://github.com/wirepas/nms-integration-tool
8
+ Keywords: wirepas,nms,integration,backend
9
+ Classifier: Development Status :: 3 - Alpha
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Topic :: Software Development :: Libraries
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Programming Language :: Python :: 3.14
15
+ Requires-Python: >=3.13
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: attrs>=25.4.0
19
+ Requires-Dist: httpx>=0.28.1
20
+ Requires-Dist: openpyxl>=3.1.5
21
+ Requires-Dist: psycopg>=3.3.3
22
+ Requires-Dist: requests>=2.32.5
23
+ Provides-Extra: dev
24
+ Requires-Dist: mockito>=2.0.1; extra == "dev"
25
+ Requires-Dist: pytest>=9.0.2; extra == "dev"
26
+ Requires-Dist: pytest-cov~=7.0.0; extra == "dev"
27
+ Provides-Extra: examples
28
+ Requires-Dist: click>=8.3.1; extra == "examples"
29
+ Requires-Dist: schedule>=1.2.2; extra == "examples"
30
+ Provides-Extra: api-gen
31
+ Requires-Dist: openapi-python-client==0.28.3; extra == "api-gen"
32
+ Dynamic: license-file
33
+
34
+ # NMS Integration Tool
35
+
36
+ This python package imports location, network, node, and gateway data into the associated Wirepas NMS backend metadata
37
+ services.
38
+
39
+ ## Repository Organization
40
+
41
+ ### Python Package
42
+
43
+ The `nms_integration_tool` package is organized as follows:
44
+
45
+ - **[src/nms_integration_tool/](src/nms_integration_tool/)**
46
+ - **[api/](src/nms_integration_tool/api)** - OpenAPI generated NMS Metadata Service API Python libraries to connect
47
+ to and query services.
48
+ - **\<service name>/** - Contains requester/transformer module implementations for importing data to each service
49
+ - **[data_source.py](src/nms_integration_tool/data_source.py)** - Provides classes to extract data from various data
50
+ sources. These classes provide an `ingest` method that returns a list of data items. Future data sources can be
51
+ implemented using the `DataSource` interface.
52
+ - **[transformer.py](src/nms_integration_tool/transformer.py)** file defines a template class with methods to ingest
53
+ data from any data source. Each child class must provide a specific implementation detailing how input data is
54
+ transformed into a format compatible with the metadata APIs. The class provides methods that return a list of
55
+ transformed data items. Transformed data are represented as dictionaries with keys corresponding to the fields of
56
+ the associated metadata service objects, which can then be sent to the import module.
57
+ - **[requester.py](src/nms_integration_tool/requester.py)** file provides an interface class to import data and
58
+ update existing database records. Each service must implement the main function in its own child class inheriting
59
+ from this interface. The `import_data` method imports new data and updates existing records in the database. An
60
+ optional cache can be provided to store data from service responses.
61
+
62
+ Classes are provided for importing locations, location types, networks, nodes, and gateway metadata.
63
+
64
+ **Note:** For gateway, node, and location services, data with coordinates may be automatically updated with no actual
65
+ changes. This occurs because services return non-identical data (the EPSG field is added to coordinates, and
66
+ floating-point approximation errors can occur when comparing data source values with queried data). The import module
67
+ detects these differences and updates records without modifying any fields, which may cause a small delay in POST
68
+ queries.
69
+
70
+ ### WNT Metadata Exporter
71
+
72
+ Helper script to import metadata from WNT to NMS:
73
+ **[wnt_metadata_exporter.md](examples/wnt_migration/wnt_metadata_exporter.md)**
74
+
75
+ ### Example Scripts
76
+
77
+ #### [data_import.md](examples/scripts/data_import.md)
78
+
79
+ Helper script to import data from file sources to NMS with example [configs](examples/configs) to map data with NMS
80
+ schemas.
81
+
82
+ #### [postgres_import.md](examples/scripts/postgres_import.md)
83
+
84
+ Basic and exemplary data importer from Postgres database to NMS.
85
+
86
+ ---
87
+
88
+ ## Requirements
89
+
90
+ - [uv](https://docs.astral.sh/uv/) (recommended package manager)
91
+
92
+ ## Module Configuration
93
+
94
+ Create a virtual environment and install the package using `uv`:
95
+
96
+ ```shell
97
+ # Create venv and install package with all runtime dependencies
98
+ uv sync
99
+
100
+ # Install with examples dependencies (e.g. for running examples)
101
+ uv sync --extra examples
102
+
103
+ # or for all dependencies
104
+ uv sync --all-extras
105
+
106
+ # Install in editable mode for local development
107
+ uv pip install -e .
108
+ ```
109
+
110
+ ## Installation
111
+
112
+ ### PyPI Installation
113
+
114
+ ```shell
115
+ pip install nms-integration-tool
116
+ ```
117
+
118
+ ### Local Installation
119
+
120
+ ```shell
121
+ # Install in editable mode for local development
122
+ uv pip install -e .
123
+ ```
124
+
125
+ # [LICENSE](LICENSE)
126
+
127
+ ---
@@ -0,0 +1,94 @@
1
+ # NMS Integration Tool
2
+
3
+ This python package imports location, network, node, and gateway data into the associated Wirepas NMS backend metadata
4
+ services.
5
+
6
+ ## Repository Organization
7
+
8
+ ### Python Package
9
+
10
+ The `nms_integration_tool` package is organized as follows:
11
+
12
+ - **[src/nms_integration_tool/](src/nms_integration_tool/)**
13
+ - **[api/](src/nms_integration_tool/api)** - OpenAPI generated NMS Metadata Service API Python libraries to connect
14
+ to and query services.
15
+ - **\<service name>/** - Contains requester/transformer module implementations for importing data to each service
16
+ - **[data_source.py](src/nms_integration_tool/data_source.py)** - Provides classes to extract data from various data
17
+ sources. These classes provide an `ingest` method that returns a list of data items. Future data sources can be
18
+ implemented using the `DataSource` interface.
19
+ - **[transformer.py](src/nms_integration_tool/transformer.py)** file defines a template class with methods to ingest
20
+ data from any data source. Each child class must provide a specific implementation detailing how input data is
21
+ transformed into a format compatible with the metadata APIs. The class provides methods that return a list of
22
+ transformed data items. Transformed data are represented as dictionaries with keys corresponding to the fields of
23
+ the associated metadata service objects, which can then be sent to the import module.
24
+ - **[requester.py](src/nms_integration_tool/requester.py)** file provides an interface class to import data and
25
+ update existing database records. Each service must implement the main function in its own child class inheriting
26
+ from this interface. The `import_data` method imports new data and updates existing records in the database. An
27
+ optional cache can be provided to store data from service responses.
28
+
29
+ Classes are provided for importing locations, location types, networks, nodes, and gateway metadata.
30
+
31
+ **Note:** For gateway, node, and location services, data with coordinates may be automatically updated with no actual
32
+ changes. This occurs because services return non-identical data (the EPSG field is added to coordinates, and
33
+ floating-point approximation errors can occur when comparing data source values with queried data). The import module
34
+ detects these differences and updates records without modifying any fields, which may cause a small delay in POST
35
+ queries.
36
+
37
+ ### WNT Metadata Exporter
38
+
39
+ Helper script to import metadata from WNT to NMS:
40
+ **[wnt_metadata_exporter.md](examples/wnt_migration/wnt_metadata_exporter.md)**
41
+
42
+ ### Example Scripts
43
+
44
+ #### [data_import.md](examples/scripts/data_import.md)
45
+
46
+ Helper script to import data from file sources to NMS with example [configs](examples/configs) to map data with NMS
47
+ schemas.
48
+
49
+ #### [postgres_import.md](examples/scripts/postgres_import.md)
50
+
51
+ Basic and exemplary data importer from Postgres database to NMS.
52
+
53
+ ---
54
+
55
+ ## Requirements
56
+
57
+ - [uv](https://docs.astral.sh/uv/) (recommended package manager)
58
+
59
+ ## Module Configuration
60
+
61
+ Create a virtual environment and install the package using `uv`:
62
+
63
+ ```shell
64
+ # Create venv and install package with all runtime dependencies
65
+ uv sync
66
+
67
+ # Install with examples dependencies (e.g. for running examples)
68
+ uv sync --extra examples
69
+
70
+ # or for all dependencies
71
+ uv sync --all-extras
72
+
73
+ # Install in editable mode for local development
74
+ uv pip install -e .
75
+ ```
76
+
77
+ ## Installation
78
+
79
+ ### PyPI Installation
80
+
81
+ ```shell
82
+ pip install nms-integration-tool
83
+ ```
84
+
85
+ ### Local Installation
86
+
87
+ ```shell
88
+ # Install in editable mode for local development
89
+ uv pip install -e .
90
+ ```
91
+
92
+ # [LICENSE](LICENSE)
93
+
94
+ ---
@@ -0,0 +1,76 @@
1
+ # Copyright Wirepas Oy 2026 licensed under Apache 2.0
2
+ #
3
+ # Please see file LICENSE for full license details.
4
+
5
+ [build-system]
6
+ requires = ["setuptools==82.0.1", "wheel"]
7
+ build-backend = "setuptools.build_meta"
8
+
9
+ [tool.setuptools.packages.find]
10
+ where = ["src"]
11
+ include = ["nms_integration_tool*"]
12
+
13
+ [project]
14
+ name = "nms-integration-tool"
15
+ # pep-0440 valid, for version a.b.d.c, NMS version is <a.b.c> and nms-integration-tool version is <d>
16
+ version = "1.3.0.1"
17
+ description = "Library to integrate Wirepas NMS metadata service APIs"
18
+ readme = "README.md"
19
+ license = "Apache-2.0"
20
+ authors = [
21
+ { name = "Wirepas Oy", email = "opensource@wirepas.com" },
22
+ ]
23
+ keywords = ["wirepas", "nms", "integration", "backend"]
24
+ classifiers = [
25
+ "Development Status :: 3 - Alpha",
26
+ "Intended Audience :: Developers",
27
+ "Topic :: Software Development :: Libraries",
28
+ "Programming Language :: Python :: 3",
29
+ "Programming Language :: Python :: 3.13",
30
+ "Programming Language :: Python :: 3.14",
31
+ ]
32
+ requires-python = ">=3.13"
33
+ dependencies = [
34
+ "attrs>=25.4.0",
35
+ "httpx>=0.28.1",
36
+ "openpyxl>=3.1.5",
37
+ "psycopg>=3.3.3",
38
+ "requests>=2.32.5",
39
+ ]
40
+
41
+
42
+ [project.urls]
43
+ Repository = "https://github.com/wirepas/nms-integration-tool"
44
+
45
+
46
+ [project.optional-dependencies]
47
+ dev = [
48
+ "mockito>=2.0.1",
49
+ "pytest>=9.0.2",
50
+ "pytest-cov~=7.0.0",
51
+ ]
52
+ examples = [
53
+ "click>=8.3.1",
54
+ "schedule>=1.2.2"
55
+ ]
56
+ api-gen = [
57
+ "openapi-python-client==0.28.3",
58
+ ]
59
+
60
+
61
+ [tool.uv]
62
+ python-preference = "managed"
63
+
64
+ [tool.pytest.ini_options]
65
+ testpaths = ["tests"]
66
+
67
+ [tool.coverage.run]
68
+ source = ["nms_integration_tool"]
69
+ omit = ["*/api/*"]
70
+
71
+ [tool.coverage.report]
72
+ show_missing = true
73
+
74
+ [tool.ruff]
75
+ target-version = "py314"
76
+ line-length = 100
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ from .api import *
2
+ from .locations import *
3
+ from .networks import *
4
+ from .nodes import *
5
+ from .gateways import *
6
+ from . import api_client, cache, data_source
@@ -0,0 +1,4 @@
1
+ from .gateways.wirepas_gateway_metadata_service_api_client import *
2
+ from .locations.wirepas_locations_metadata_service_api_client import *
3
+ from .networks.wm_network_metadata_service_api_client import *
4
+ from .nodes.wm_node_metadata_service_api_client import *
@@ -0,0 +1,8 @@
1
+ """A client library for accessing Wirepas gateway metadata service API"""
2
+
3
+ from .client import AuthenticatedClient, Client
4
+
5
+ __all__ = (
6
+ "AuthenticatedClient",
7
+ "Client",
8
+ )
@@ -0,0 +1,10 @@
1
+ from .get_gateways import *
2
+ from .delete_gateway import *
3
+ from .update_gateway import *
4
+ from .patch_gateway import *
5
+ from .refresh_gateway_by_uuid import *
6
+ from .patch_gateways import *
7
+ from .search_gateways import *
8
+ from .create_gateways import *
9
+ from .get_gateway_by_uuid import *
10
+ from .delete_gateways import *