across-server-openapi-python 0.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 (244) hide show
  1. across_server_openapi_python-0.0.1/LICENSE +42 -0
  2. across_server_openapi_python-0.0.1/PKG-INFO +326 -0
  3. across_server_openapi_python-0.0.1/README.md +264 -0
  4. across_server_openapi_python-0.0.1/across/__init__.py +0 -0
  5. across_server_openapi_python-0.0.1/across/sdk/__init__.py +0 -0
  6. across_server_openapi_python-0.0.1/across/sdk/v1/__init__.py +251 -0
  7. across_server_openapi_python-0.0.1/across/sdk/v1/abstract_credential_storage.py +16 -0
  8. across_server_openapi_python-0.0.1/across/sdk/v1/api/__init__.py +20 -0
  9. across_server_openapi_python-0.0.1/across/sdk/v1/api/auth_api.py +1097 -0
  10. across_server_openapi_python-0.0.1/across/sdk/v1/api/filter_api.py +623 -0
  11. across_server_openapi_python-0.0.1/across/sdk/v1/api/group_api.py +586 -0
  12. across_server_openapi_python-0.0.1/across/sdk/v1/api/group_invite_api.py +1165 -0
  13. across_server_openapi_python-0.0.1/across/sdk/v1/api/group_role_api.py +2070 -0
  14. across_server_openapi_python-0.0.1/across/sdk/v1/api/instrument_api.py +633 -0
  15. across_server_openapi_python-0.0.1/across/sdk/v1/api/internal_api.py +571 -0
  16. across_server_openapi_python-0.0.1/across/sdk/v1/api/observation_api.py +940 -0
  17. across_server_openapi_python-0.0.1/across/sdk/v1/api/observatory_api.py +670 -0
  18. across_server_openapi_python-0.0.1/across/sdk/v1/api/permission_api.py +285 -0
  19. across_server_openapi_python-0.0.1/across/sdk/v1/api/role_api.py +552 -0
  20. across_server_openapi_python-0.0.1/across/sdk/v1/api/schedule_api.py +1914 -0
  21. across_server_openapi_python-0.0.1/across/sdk/v1/api/service_account_api.py +2353 -0
  22. across_server_openapi_python-0.0.1/across/sdk/v1/api/telescope_api.py +667 -0
  23. across_server_openapi_python-0.0.1/across/sdk/v1/api/tle_api.py +317 -0
  24. across_server_openapi_python-0.0.1/across/sdk/v1/api/tools_api.py +812 -0
  25. across_server_openapi_python-0.0.1/across/sdk/v1/api/user_api.py +2263 -0
  26. across_server_openapi_python-0.0.1/across/sdk/v1/api_client.py +801 -0
  27. across_server_openapi_python-0.0.1/across/sdk/v1/api_client_wrapper.py +239 -0
  28. across_server_openapi_python-0.0.1/across/sdk/v1/api_response.py +21 -0
  29. across_server_openapi_python-0.0.1/across/sdk/v1/configuration.py +605 -0
  30. across_server_openapi_python-0.0.1/across/sdk/v1/exceptions.py +216 -0
  31. across_server_openapi_python-0.0.1/across/sdk/v1/models/__init__.py +103 -0
  32. across_server_openapi_python-0.0.1/across/sdk/v1/models/access_token_response.py +89 -0
  33. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_group_invite_schemas_group_invite.py +104 -0
  34. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_group_role_schemas_group_role.py +124 -0
  35. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_group_role_schemas_service_account.py +106 -0
  36. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_group_role_schemas_user.py +95 -0
  37. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_group_schemas_group.py +111 -0
  38. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_group_schemas_user.py +105 -0
  39. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_role_schemas_user.py +96 -0
  40. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_system_service_account_schemas_service_account.py +90 -0
  41. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_system_service_account_schemas_service_account_secret.py +92 -0
  42. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_user_schemas_group.py +101 -0
  43. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_user_schemas_group_invite.py +99 -0
  44. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_user_schemas_group_role.py +99 -0
  45. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_user_schemas_user.py +135 -0
  46. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_user_service_account_schemas_service_account.py +111 -0
  47. across_server_openapi_python-0.0.1/across/sdk/v1/models/across_server_routes_v1_user_service_account_schemas_service_account_secret.py +118 -0
  48. across_server_openapi_python-0.0.1/across/sdk/v1/models/alt_az_constraint.py +130 -0
  49. across_server_openapi_python-0.0.1/across/sdk/v1/models/bandpass.py +149 -0
  50. across_server_openapi_python-0.0.1/across/sdk/v1/models/bandpass_type.py +155 -0
  51. across_server_openapi_python-0.0.1/across/sdk/v1/models/constrained_date.py +93 -0
  52. across_server_openapi_python-0.0.1/across/sdk/v1/models/constraint_reason.py +89 -0
  53. across_server_openapi_python-0.0.1/across/sdk/v1/models/constraint_type.py +43 -0
  54. across_server_openapi_python-0.0.1/across/sdk/v1/models/coordinate.py +100 -0
  55. across_server_openapi_python-0.0.1/across/sdk/v1/models/date_range.py +90 -0
  56. across_server_openapi_python-0.0.1/across/sdk/v1/models/depth_unit.py +39 -0
  57. across_server_openapi_python-0.0.1/across/sdk/v1/models/earth_limb_constraint.py +124 -0
  58. across_server_openapi_python-0.0.1/across/sdk/v1/models/energy_bandpass.py +121 -0
  59. across_server_openapi_python-0.0.1/across/sdk/v1/models/energy_unit.py +40 -0
  60. across_server_openapi_python-0.0.1/across/sdk/v1/models/ephemeris_type.py +39 -0
  61. across_server_openapi_python-0.0.1/across/sdk/v1/models/filter.py +135 -0
  62. across_server_openapi_python-0.0.1/across/sdk/v1/models/frequency_bandpass.py +121 -0
  63. across_server_openapi_python-0.0.1/across/sdk/v1/models/frequency_unit.py +40 -0
  64. across_server_openapi_python-0.0.1/across/sdk/v1/models/grant_type.py +37 -0
  65. across_server_openapi_python-0.0.1/across/sdk/v1/models/ground_parameters.py +91 -0
  66. across_server_openapi_python-0.0.1/across/sdk/v1/models/group_invite_create.py +87 -0
  67. across_server_openapi_python-0.0.1/across/sdk/v1/models/group_invite_group_details.py +94 -0
  68. across_server_openapi_python-0.0.1/across/sdk/v1/models/group_read.py +91 -0
  69. across_server_openapi_python-0.0.1/across/sdk/v1/models/group_role_create.py +89 -0
  70. across_server_openapi_python-0.0.1/across/sdk/v1/models/group_role_read.py +99 -0
  71. across_server_openapi_python-0.0.1/across/sdk/v1/models/http_validation_error.py +95 -0
  72. across_server_openapi_python-0.0.1/across/sdk/v1/models/id_name_schema.py +96 -0
  73. across_server_openapi_python-0.0.1/across/sdk/v1/models/instrument.py +163 -0
  74. across_server_openapi_python-0.0.1/across/sdk/v1/models/instrument_constraints_inner.py +237 -0
  75. across_server_openapi_python-0.0.1/across/sdk/v1/models/ivoa_obs_category.py +39 -0
  76. across_server_openapi_python-0.0.1/across/sdk/v1/models/ivoa_obs_tracking_type.py +38 -0
  77. across_server_openapi_python-0.0.1/across/sdk/v1/models/jpl_parameters.py +87 -0
  78. across_server_openapi_python-0.0.1/across/sdk/v1/models/moon_angle_constraint.py +124 -0
  79. across_server_openapi_python-0.0.1/across/sdk/v1/models/nullable_date_range.py +100 -0
  80. across_server_openapi_python-0.0.1/across/sdk/v1/models/observation.py +248 -0
  81. across_server_openapi_python-0.0.1/across/sdk/v1/models/observation_create.py +249 -0
  82. across_server_openapi_python-0.0.1/across/sdk/v1/models/observation_status.py +40 -0
  83. across_server_openapi_python-0.0.1/across/sdk/v1/models/observation_type.py +39 -0
  84. across_server_openapi_python-0.0.1/across/sdk/v1/models/observatory.py +145 -0
  85. across_server_openapi_python-0.0.1/across/sdk/v1/models/observatory_ephemeris_type.py +96 -0
  86. across_server_openapi_python-0.0.1/across/sdk/v1/models/observatory_type.py +37 -0
  87. across_server_openapi_python-0.0.1/across/sdk/v1/models/page_observation.py +116 -0
  88. across_server_openapi_python-0.0.1/across/sdk/v1/models/page_schedule.py +116 -0
  89. across_server_openapi_python-0.0.1/across/sdk/v1/models/parameters.py +164 -0
  90. across_server_openapi_python-0.0.1/across/sdk/v1/models/permission.py +89 -0
  91. across_server_openapi_python-0.0.1/across/sdk/v1/models/point.py +89 -0
  92. across_server_openapi_python-0.0.1/across/sdk/v1/models/role.py +100 -0
  93. across_server_openapi_python-0.0.1/across/sdk/v1/models/role_base.py +89 -0
  94. across_server_openapi_python-0.0.1/across/sdk/v1/models/saa_polygon_constraint.py +101 -0
  95. across_server_openapi_python-0.0.1/across/sdk/v1/models/schedule.py +144 -0
  96. across_server_openapi_python-0.0.1/across/sdk/v1/models/schedule_cadence.py +99 -0
  97. across_server_openapi_python-0.0.1/across/sdk/v1/models/schedule_create.py +123 -0
  98. across_server_openapi_python-0.0.1/across/sdk/v1/models/schedule_create_many.py +97 -0
  99. across_server_openapi_python-0.0.1/across/sdk/v1/models/schedule_fidelity.py +37 -0
  100. across_server_openapi_python-0.0.1/across/sdk/v1/models/schedule_status.py +38 -0
  101. across_server_openapi_python-0.0.1/across/sdk/v1/models/service_account_create.py +101 -0
  102. across_server_openapi_python-0.0.1/across/sdk/v1/models/service_account_secret.py +103 -0
  103. across_server_openapi_python-0.0.1/across/sdk/v1/models/service_account_update.py +106 -0
  104. across_server_openapi_python-0.0.1/across/sdk/v1/models/spice_parameters.py +89 -0
  105. across_server_openapi_python-0.0.1/across/sdk/v1/models/sun_angle_constraint.py +124 -0
  106. across_server_openapi_python-0.0.1/across/sdk/v1/models/system_service_account.py +121 -0
  107. across_server_openapi_python-0.0.1/across/sdk/v1/models/system_service_account_secret.py +123 -0
  108. across_server_openapi_python-0.0.1/across/sdk/v1/models/telescope.py +135 -0
  109. across_server_openapi_python-0.0.1/across/sdk/v1/models/telescope_instrument.py +163 -0
  110. across_server_openapi_python-0.0.1/across/sdk/v1/models/tle.py +99 -0
  111. across_server_openapi_python-0.0.1/across/sdk/v1/models/tle_create.py +94 -0
  112. across_server_openapi_python-0.0.1/across/sdk/v1/models/tle_parameters.py +89 -0
  113. across_server_openapi_python-0.0.1/across/sdk/v1/models/unit_value.py +94 -0
  114. across_server_openapi_python-0.0.1/across/sdk/v1/models/user_create.py +93 -0
  115. across_server_openapi_python-0.0.1/across/sdk/v1/models/user_info.py +95 -0
  116. across_server_openapi_python-0.0.1/across/sdk/v1/models/user_update.py +106 -0
  117. across_server_openapi_python-0.0.1/across/sdk/v1/models/validation_error.py +99 -0
  118. across_server_openapi_python-0.0.1/across/sdk/v1/models/validation_error_loc_inner.py +138 -0
  119. across_server_openapi_python-0.0.1/across/sdk/v1/models/visibility_result.py +97 -0
  120. across_server_openapi_python-0.0.1/across/sdk/v1/models/visibility_type.py +38 -0
  121. across_server_openapi_python-0.0.1/across/sdk/v1/models/visibility_window.py +99 -0
  122. across_server_openapi_python-0.0.1/across/sdk/v1/models/wavelength_bandpass.py +142 -0
  123. across_server_openapi_python-0.0.1/across/sdk/v1/models/wavelength_unit.py +39 -0
  124. across_server_openapi_python-0.0.1/across/sdk/v1/models/window.py +96 -0
  125. across_server_openapi_python-0.0.1/across/sdk/v1/py.typed +0 -0
  126. across_server_openapi_python-0.0.1/across/sdk/v1/rest.py +258 -0
  127. across_server_openapi_python-0.0.1/across_server_openapi_python.egg-info/PKG-INFO +326 -0
  128. across_server_openapi_python-0.0.1/across_server_openapi_python.egg-info/SOURCES.txt +243 -0
  129. across_server_openapi_python-0.0.1/across_server_openapi_python.egg-info/dependency_links.txt +1 -0
  130. across_server_openapi_python-0.0.1/across_server_openapi_python.egg-info/requires.txt +4 -0
  131. across_server_openapi_python-0.0.1/across_server_openapi_python.egg-info/top_level.txt +1 -0
  132. across_server_openapi_python-0.0.1/pyproject.toml +93 -0
  133. across_server_openapi_python-0.0.1/setup.cfg +7 -0
  134. across_server_openapi_python-0.0.1/setup.py +49 -0
  135. across_server_openapi_python-0.0.1/test/test_access_token_response.py +53 -0
  136. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_group_invite_schemas_group_invite.py +84 -0
  137. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_group_role_schemas_group_role.py +104 -0
  138. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_group_role_schemas_service_account.py +68 -0
  139. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_group_role_schemas_user.py +60 -0
  140. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_group_schemas_group.py +152 -0
  141. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_group_schemas_user.py +80 -0
  142. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_role_schemas_user.py +60 -0
  143. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_system_service_account_schemas_service_account.py +54 -0
  144. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_system_service_account_schemas_service_account_secret.py +56 -0
  145. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_user_schemas_group.py +76 -0
  146. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_user_schemas_group_invite.py +74 -0
  147. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_user_schemas_group_role.py +64 -0
  148. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_user_schemas_user.py +150 -0
  149. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_user_service_account_schemas_service_account.py +82 -0
  150. across_server_openapi_python-0.0.1/test/test_across_server_routes_v1_user_service_account_schemas_service_account_secret.py +81 -0
  151. across_server_openapi_python-0.0.1/test/test_alt_az_constraint.py +66 -0
  152. across_server_openapi_python-0.0.1/test/test_auth_api.py +59 -0
  153. across_server_openapi_python-0.0.1/test/test_bandpass.py +59 -0
  154. across_server_openapi_python-0.0.1/test/test_bandpass_type.py +50 -0
  155. across_server_openapi_python-0.0.1/test/test_constrained_date.py +56 -0
  156. across_server_openapi_python-0.0.1/test/test_constraint_reason.py +54 -0
  157. across_server_openapi_python-0.0.1/test/test_constraint_type.py +33 -0
  158. across_server_openapi_python-0.0.1/test/test_coordinate.py +54 -0
  159. across_server_openapi_python-0.0.1/test/test_date_range.py +54 -0
  160. across_server_openapi_python-0.0.1/test/test_depth_unit.py +33 -0
  161. across_server_openapi_python-0.0.1/test/test_earth_limb_constraint.py +54 -0
  162. across_server_openapi_python-0.0.1/test/test_energy_bandpass.py +56 -0
  163. across_server_openapi_python-0.0.1/test/test_energy_unit.py +33 -0
  164. across_server_openapi_python-0.0.1/test/test_ephemeris_type.py +33 -0
  165. across_server_openapi_python-0.0.1/test/test_filter.py +74 -0
  166. across_server_openapi_python-0.0.1/test/test_filter_api.py +45 -0
  167. across_server_openapi_python-0.0.1/test/test_frequency_bandpass.py +56 -0
  168. across_server_openapi_python-0.0.1/test/test_frequency_unit.py +33 -0
  169. across_server_openapi_python-0.0.1/test/test_grant_type.py +33 -0
  170. across_server_openapi_python-0.0.1/test/test_ground_parameters.py +56 -0
  171. across_server_openapi_python-0.0.1/test/test_group_api.py +52 -0
  172. across_server_openapi_python-0.0.1/test/test_group_invite_api.py +59 -0
  173. across_server_openapi_python-0.0.1/test/test_group_invite_create.py +52 -0
  174. across_server_openapi_python-0.0.1/test/test_group_invite_group_details.py +58 -0
  175. across_server_openapi_python-0.0.1/test/test_group_read.py +56 -0
  176. across_server_openapi_python-0.0.1/test/test_group_role_api.py +80 -0
  177. across_server_openapi_python-0.0.1/test/test_group_role_create.py +58 -0
  178. across_server_openapi_python-0.0.1/test/test_group_role_read.py +64 -0
  179. across_server_openapi_python-0.0.1/test/test_http_validation_error.py +58 -0
  180. across_server_openapi_python-0.0.1/test/test_id_name_schema.py +56 -0
  181. across_server_openapi_python-0.0.1/test/test_instrument.py +84 -0
  182. across_server_openapi_python-0.0.1/test/test_instrument_api.py +45 -0
  183. across_server_openapi_python-0.0.1/test/test_instrument_constraints_inner.py +68 -0
  184. across_server_openapi_python-0.0.1/test/test_internal_api.py +45 -0
  185. across_server_openapi_python-0.0.1/test/test_ivoa_obs_category.py +33 -0
  186. across_server_openapi_python-0.0.1/test/test_ivoa_obs_tracking_type.py +33 -0
  187. across_server_openapi_python-0.0.1/test/test_jpl_parameters.py +52 -0
  188. across_server_openapi_python-0.0.1/test/test_moon_angle_constraint.py +54 -0
  189. across_server_openapi_python-0.0.1/test/test_nullable_date_range.py +54 -0
  190. across_server_openapi_python-0.0.1/test/test_observation.py +97 -0
  191. across_server_openapi_python-0.0.1/test/test_observation_api.py +45 -0
  192. across_server_openapi_python-0.0.1/test/test_observation_create.py +92 -0
  193. across_server_openapi_python-0.0.1/test/test_observation_status.py +33 -0
  194. across_server_openapi_python-0.0.1/test/test_observation_type.py +33 -0
  195. across_server_openapi_python-0.0.1/test/test_observatory.py +72 -0
  196. across_server_openapi_python-0.0.1/test/test_observatory_api.py +45 -0
  197. across_server_openapi_python-0.0.1/test/test_observatory_ephemeris_type.py +56 -0
  198. across_server_openapi_python-0.0.1/test/test_observatory_type.py +33 -0
  199. across_server_openapi_python-0.0.1/test/test_page_observation.py +132 -0
  200. across_server_openapi_python-0.0.1/test/test_page_schedule.py +162 -0
  201. across_server_openapi_python-0.0.1/test/test_parameters.py +64 -0
  202. across_server_openapi_python-0.0.1/test/test_permission.py +54 -0
  203. across_server_openapi_python-0.0.1/test/test_permission_api.py +38 -0
  204. across_server_openapi_python-0.0.1/test/test_point.py +54 -0
  205. across_server_openapi_python-0.0.1/test/test_role.py +70 -0
  206. across_server_openapi_python-0.0.1/test/test_role_api.py +45 -0
  207. across_server_openapi_python-0.0.1/test/test_role_base.py +52 -0
  208. across_server_openapi_python-0.0.1/test/test_saa_polygon_constraint.py +57 -0
  209. across_server_openapi_python-0.0.1/test/test_schedule.py +147 -0
  210. across_server_openapi_python-0.0.1/test/test_schedule_api.py +66 -0
  211. across_server_openapi_python-0.0.1/test/test_schedule_cadence.py +58 -0
  212. across_server_openapi_python-0.0.1/test/test_schedule_create.py +136 -0
  213. across_server_openapi_python-0.0.1/test/test_schedule_create_many.py +146 -0
  214. across_server_openapi_python-0.0.1/test/test_schedule_fidelity.py +33 -0
  215. across_server_openapi_python-0.0.1/test/test_schedule_status.py +33 -0
  216. across_server_openapi_python-0.0.1/test/test_service_account_api.py +87 -0
  217. across_server_openapi_python-0.0.1/test/test_service_account_create.py +56 -0
  218. across_server_openapi_python-0.0.1/test/test_service_account_secret.py +83 -0
  219. across_server_openapi_python-0.0.1/test/test_service_account_update.py +53 -0
  220. across_server_openapi_python-0.0.1/test/test_spice_parameters.py +54 -0
  221. across_server_openapi_python-0.0.1/test/test_sun_angle_constraint.py +54 -0
  222. across_server_openapi_python-0.0.1/test/test_system_service_account.py +89 -0
  223. across_server_openapi_python-0.0.1/test/test_system_service_account_secret.py +91 -0
  224. across_server_openapi_python-0.0.1/test/test_telescope.py +68 -0
  225. across_server_openapi_python-0.0.1/test/test_telescope_api.py +45 -0
  226. across_server_openapi_python-0.0.1/test/test_telescope_instrument.py +84 -0
  227. across_server_openapi_python-0.0.1/test/test_tle.py +60 -0
  228. across_server_openapi_python-0.0.1/test/test_tle_api.py +38 -0
  229. across_server_openapi_python-0.0.1/test/test_tle_create.py +58 -0
  230. across_server_openapi_python-0.0.1/test/test_tle_parameters.py +54 -0
  231. across_server_openapi_python-0.0.1/test/test_tools_api.py +45 -0
  232. across_server_openapi_python-0.0.1/test/test_unit_value.py +54 -0
  233. across_server_openapi_python-0.0.1/test/test_user_api.py +94 -0
  234. across_server_openapi_python-0.0.1/test/test_user_create.py +58 -0
  235. across_server_openapi_python-0.0.1/test/test_user_info.py +60 -0
  236. across_server_openapi_python-0.0.1/test/test_user_update.py +53 -0
  237. across_server_openapi_python-0.0.1/test/test_validation_error.py +60 -0
  238. across_server_openapi_python-0.0.1/test/test_validation_error_loc_inner.py +50 -0
  239. across_server_openapi_python-0.0.1/test/test_visibility_result.py +84 -0
  240. across_server_openapi_python-0.0.1/test/test_visibility_type.py +33 -0
  241. across_server_openapi_python-0.0.1/test/test_visibility_window.py +76 -0
  242. across_server_openapi_python-0.0.1/test/test_wavelength_bandpass.py +59 -0
  243. across_server_openapi_python-0.0.1/test/test_wavelength_unit.py +33 -0
  244. across_server_openapi_python-0.0.1/test/test_window.py +66 -0
@@ -0,0 +1,42 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 ACROSS Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+ MIT License
23
+
24
+ Copyright (c) 2024 ACROSS-Team
25
+
26
+ Permission is hereby granted, free of charge, to any person obtaining a copy
27
+ of this software and associated documentation files (the "Software"), to deal
28
+ in the Software without restriction, including without limitation the rights
29
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
30
+ copies of the Software, and to permit persons to whom the Software is
31
+ furnished to do so, subject to the following conditions:
32
+
33
+ The above copyright notice and this permission notice shall be included in all
34
+ copies or substantial portions of the Software.
35
+
36
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
37
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
38
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
39
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
40
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
41
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
42
+ SOFTWARE.
@@ -0,0 +1,326 @@
1
+ Metadata-Version: 2.4
2
+ Name: across-server-openapi-python
3
+ Version: 0.0.1
4
+ Summary: FastAPI
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: OpenAPI Generator Community <team@openapitools.org>
8
+ License: MIT License
9
+
10
+ Copyright (c) 2024 ACROSS Team
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice and this permission notice shall be included in all
20
+ copies or substantial portions of the Software.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
+ SOFTWARE.
29
+ MIT License
30
+
31
+ Copyright (c) 2024 ACROSS-Team
32
+
33
+ Permission is hereby granted, free of charge, to any person obtaining a copy
34
+ of this software and associated documentation files (the "Software"), to deal
35
+ in the Software without restriction, including without limitation the rights
36
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
37
+ copies of the Software, and to permit persons to whom the Software is
38
+ furnished to do so, subject to the following conditions:
39
+
40
+ The above copyright notice and this permission notice shall be included in all
41
+ copies or substantial portions of the Software.
42
+
43
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
44
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
45
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
46
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
47
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
48
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
49
+ SOFTWARE.
50
+
51
+ Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
52
+ Keywords: OpenAPI,OpenAPI-Generator,FastAPI
53
+ Requires-Python: >3.9
54
+ Description-Content-Type: text/markdown
55
+ License-File: LICENSE
56
+ Requires-Dist: urllib3<3.0.0,>=2.1.0
57
+ Requires-Dist: python-dateutil>=2.8.2
58
+ Requires-Dist: pydantic>=2
59
+ Requires-Dist: typing-extensions>=4.7.1
60
+ Dynamic: author
61
+ Dynamic: license-file
62
+
63
+ # across.sdk.v1
64
+ Server providing tools and utilities for various NASA missions to aid in coordination of large observation efforts.
65
+
66
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
67
+
68
+ - API version: 0.3.2
69
+ - Package version: 1.0.0
70
+ - Generator version: 7.14.0-SNAPSHOT
71
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
72
+
73
+ ## Requirements.
74
+
75
+ Python 3.9+
76
+
77
+ ## Installation & Usage
78
+ ### pip install
79
+
80
+ If the python package is hosted on a repository, you can install directly using:
81
+
82
+ ```sh
83
+ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
84
+ ```
85
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
86
+
87
+ Then import the package:
88
+ ```python
89
+ import across.sdk.v1
90
+ ```
91
+
92
+ ### Setuptools
93
+
94
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
95
+
96
+ ```sh
97
+ python setup.py install --user
98
+ ```
99
+ (or `sudo python setup.py install` to install the package for all users)
100
+
101
+ Then import the package:
102
+ ```python
103
+ import across.sdk.v1
104
+ ```
105
+
106
+ ### Tests
107
+
108
+ Execute `pytest` to run the tests.
109
+
110
+ ## Getting Started
111
+
112
+ Please follow the [installation procedure](#installation--usage) and then run the following:
113
+
114
+ ```python
115
+
116
+ import across.sdk.v1
117
+ from across.sdk.v1.rest import ApiException
118
+ from pprint import pprint
119
+
120
+ # Defining the host is optional and defaults to /api/v1
121
+ # See configuration.py for a list of all supported configuration parameters.
122
+ configuration = across.sdk.v1.Configuration(
123
+ host = "/api/v1"
124
+ )
125
+
126
+ # The client must configure the authentication and authorization parameters
127
+ # in accordance with the API server security policy.
128
+ # Examples for each auth method are provided below, use the example that
129
+ # satisfies your auth use case.
130
+
131
+ # Configure Bearer authorization: Authorization
132
+ configuration = across.sdk.v1.Configuration(
133
+ access_token = os.environ["BEARER_TOKEN"]
134
+ )
135
+
136
+
137
+ # Enter a context with an instance of the API client
138
+ with across.sdk.v1.ApiClient(configuration) as api_client:
139
+ # Create an instance of the API class
140
+ api_instance = across.sdk.v1.AuthApi(api_client)
141
+ email = 'email_example' # str |
142
+
143
+ try:
144
+ # Login
145
+ api_response = api_instance.login(email)
146
+ print("The response of AuthApi->login:\n")
147
+ pprint(api_response)
148
+ except ApiException as e:
149
+ print("Exception when calling AuthApi->login: %s\n" % e)
150
+
151
+ ```
152
+
153
+ ## Documentation for API Endpoints
154
+
155
+ All URIs are relative to */api/v1*
156
+
157
+ Class | Method | HTTP request | Description
158
+ ------------ | ------------- | ------------- | -------------
159
+ *AuthApi* | [**login**](docs/AuthApi.md#login) | **POST** /auth/login | Login
160
+ *AuthApi* | [**refresh**](docs/AuthApi.md#refresh) | **POST** /auth/refresh | Refresh Token
161
+ *AuthApi* | [**token**](docs/AuthApi.md#token) | **POST** /auth/token | Token
162
+ *AuthApi* | [**verify**](docs/AuthApi.md#verify) | **GET** /auth/verify | Verify
163
+ *FilterApi* | [**get_filter_filter_id_get**](docs/FilterApi.md#get_filter_filter_id_get) | **GET** /filter/{filter_id} | Read a filter
164
+ *FilterApi* | [**get_many_filter_get**](docs/FilterApi.md#get_many_filter_get) | **GET** /filter/ | Read filters(s)
165
+ *GroupApi* | [**get_group**](docs/GroupApi.md#get_group) | **GET** /group/{group_id} | Read a group
166
+ *GroupApi* | [**remove_user**](docs/GroupApi.md#remove_user) | **DELETE** /group/{group_id}/user/{user_id} | Remove a user from a group
167
+ *GroupInviteApi* | [**delete_invite**](docs/GroupInviteApi.md#delete_invite) | **DELETE** /group/{group_id}/invite/{invite_id} | Delete a group invite
168
+ *GroupInviteApi* | [**get_invite**](docs/GroupInviteApi.md#get_invite) | **GET** /group/{group_id}/invite/{invite_id} | Read a group invite
169
+ *GroupInviteApi* | [**get_invites**](docs/GroupInviteApi.md#get_invites) | **GET** /group/{group_id}/invite | Read group invites
170
+ *GroupInviteApi* | [**send_invite**](docs/GroupInviteApi.md#send_invite) | **POST** /group/{group_id}/invite | Create and send a group invite
171
+ *GroupRoleApi* | [**assign_to_user**](docs/GroupRoleApi.md#assign_to_user) | **PUT** /group/{group_id}/user/{user_id}/role/{group_role_id} | Assign a group role to a user
172
+ *GroupRoleApi* | [**create_group_role**](docs/GroupRoleApi.md#create_group_role) | **POST** /group/{group_id}/role | Create a group role
173
+ *GroupRoleApi* | [**delete_group_role**](docs/GroupRoleApi.md#delete_group_role) | **DELETE** /group/{group_id}/role/{group_role_id} | Delete a group role
174
+ *GroupRoleApi* | [**get_group_role**](docs/GroupRoleApi.md#get_group_role) | **GET** /group/{group_id}/role/{group_role_id} | Read a group role
175
+ *GroupRoleApi* | [**get_group_roles**](docs/GroupRoleApi.md#get_group_roles) | **GET** /group/{group_id}/role | Read group roles
176
+ *GroupRoleApi* | [**remove_from_user**](docs/GroupRoleApi.md#remove_from_user) | **DELETE** /group/{group_id}/user/{user_id}/role/{group_role_id} | Remove a group role from a user
177
+ *GroupRoleApi* | [**update_group_role**](docs/GroupRoleApi.md#update_group_role) | **PUT** /group/{group_id}/role/{group_role_id} | Update a group role
178
+ *InstrumentApi* | [**get_instrument**](docs/InstrumentApi.md#get_instrument) | **GET** /instrument/{instrument_id} | Read an instrument
179
+ *InstrumentApi* | [**get_instruments**](docs/InstrumentApi.md#get_instruments) | **GET** /instrument/ | Read instruments(s)
180
+ *InternalApi* | [**get_service_account**](docs/InternalApi.md#get_service_account) | **GET** /service-account/{service_account_id} | Get a system service account
181
+ *InternalApi* | [**service_account_rotate_key**](docs/InternalApi.md#service_account_rotate_key) | **PATCH** /service-account/{service_account_id}/rotate_key | Rotate a service account key
182
+ *ObservationApi* | [**get_observation**](docs/ObservationApi.md#get_observation) | **GET** /observation/{observation_id} | Read an observation
183
+ *ObservationApi* | [**get_observations**](docs/ObservationApi.md#get_observations) | **GET** /observation/ | Read observations(s)
184
+ *ObservatoryApi* | [**get_observatories**](docs/ObservatoryApi.md#get_observatories) | **GET** /observatory/ | Read observatory(s)
185
+ *ObservatoryApi* | [**get_observatory**](docs/ObservatoryApi.md#get_observatory) | **GET** /observatory/{observatory_id} | Read an observatory
186
+ *PermissionApi* | [**get_permissions**](docs/PermissionApi.md#get_permissions) | **GET** /permission/ | Read permissions
187
+ *ScheduleApi* | [**create_many_schedules**](docs/ScheduleApi.md#create_many_schedules) | **POST** /schedule/bulk | Create many Schedules
188
+ *ScheduleApi* | [**create_schedule**](docs/ScheduleApi.md#create_schedule) | **POST** /schedule/ | Create a Schedule
189
+ *ScheduleApi* | [**get_schedule**](docs/ScheduleApi.md#get_schedule) | **GET** /schedule/{schedule_id} | Read a schedule
190
+ *ScheduleApi* | [**get_schedules**](docs/ScheduleApi.md#get_schedules) | **GET** /schedule/ | Read schedule(s)
191
+ *ScheduleApi* | [**get_schedules_history**](docs/ScheduleApi.md#get_schedules_history) | **GET** /schedule/history | Read schedule(s)
192
+ *ServiceAccountApi* | [**assign_to_service_account**](docs/ServiceAccountApi.md#assign_to_service_account) | **POST** /user/{user_id}/service-account/{service_account_id}/group-role/{group_role_id} | Assign group role
193
+ *ServiceAccountApi* | [**create_user_service_account**](docs/ServiceAccountApi.md#create_user_service_account) | **POST** /user/{user_id}/service_account/ | Create a service account
194
+ *ServiceAccountApi* | [**delete_user_service_account**](docs/ServiceAccountApi.md#delete_user_service_account) | **DELETE** /user/{user_id}/service_account/{service_account_id} | Delete a service_account
195
+ *ServiceAccountApi* | [**get_service_accounts**](docs/ServiceAccountApi.md#get_service_accounts) | **GET** /user/{user_id}/service_account/ | Read service accounts
196
+ *ServiceAccountApi* | [**get_user_service_account**](docs/ServiceAccountApi.md#get_user_service_account) | **GET** /user/{user_id}/service_account/{service_account_id} | Read a service account
197
+ *ServiceAccountApi* | [**remove_from_service_account**](docs/ServiceAccountApi.md#remove_from_service_account) | **DELETE** /user/{user_id}/service-account/{service_account_id}/group-role/{group_role_id} | Remove group role
198
+ *ServiceAccountApi* | [**update_user_service_account**](docs/ServiceAccountApi.md#update_user_service_account) | **PATCH** /user/{user_id}/service_account/{service_account_id} | Update a service account
199
+ *ServiceAccountApi* | [**user_service_account_rotate_key**](docs/ServiceAccountApi.md#user_service_account_rotate_key) | **PATCH** /user/{user_id}/service_account/{service_account_id}/rotate_key | Rotate a service account key
200
+ *TLEApi* | [**create_tle**](docs/TLEApi.md#create_tle) | **POST** /tle/ | Create a TLE
201
+ *TelescopeApi* | [**get_telescope**](docs/TelescopeApi.md#get_telescope) | **GET** /telescope/{telescope_id} | Read an telescope
202
+ *TelescopeApi* | [**get_telescopes**](docs/TelescopeApi.md#get_telescopes) | **GET** /telescope/ | Read telescopes(s)
203
+ *ToolsApi* | [**calculate_windows_tools_visibility_calculator_windows_instrument_id_get**](docs/ToolsApi.md#calculate_windows_tools_visibility_calculator_windows_instrument_id_get) | **GET** /tools/visibility-calculator/windows/{instrument_id} | Calculated Visibility Windows
204
+ *ToolsApi* | [**calculate_windows_tools_visibility_calculator_windows_instrument_id_get_0**](docs/ToolsApi.md#calculate_windows_tools_visibility_calculator_windows_instrument_id_get_0) | **GET** /tools/visibility-calculator/windows/{instrument_id} | Calculated Visibility Windows
205
+ *UserApi* | [**accept_invite**](docs/UserApi.md#accept_invite) | **PATCH** /user/{user_id}/invite/{invite_id} | Accept a group invitation
206
+ *UserApi* | [**create_user**](docs/UserApi.md#create_user) | **POST** /user/ | Create a user
207
+ *UserApi* | [**decline_invite**](docs/UserApi.md#decline_invite) | **DELETE** /user/{user_id}/invite/{invite_id} | Decline a group invitation
208
+ *UserApi* | [**delete_user**](docs/UserApi.md#delete_user) | **DELETE** /user/{user_id} | Delete a user
209
+ *UserApi* | [**get_group_invites**](docs/UserApi.md#get_group_invites) | **GET** /user/{user_id}/invite | Read a user&#39;s group invites
210
+ *UserApi* | [**get_user**](docs/UserApi.md#get_user) | **GET** /user/{user_id} | Read a user
211
+ *UserApi* | [**leave_group**](docs/UserApi.md#leave_group) | **DELETE** /user/{user_id}/group/{group_id} | Leave a group
212
+ *UserApi* | [**update_user**](docs/UserApi.md#update_user) | **PATCH** /user/{user_id} | Update a user
213
+
214
+
215
+ ## Documentation For Models
216
+
217
+ - [AccessTokenResponse](docs/AccessTokenResponse.md)
218
+ - [AcrossServerRoutesV1GroupInviteSchemasGroupInvite](docs/AcrossServerRoutesV1GroupInviteSchemasGroupInvite.md)
219
+ - [AcrossServerRoutesV1GroupRoleSchemasGroupRole](docs/AcrossServerRoutesV1GroupRoleSchemasGroupRole.md)
220
+ - [AcrossServerRoutesV1GroupRoleSchemasServiceAccount](docs/AcrossServerRoutesV1GroupRoleSchemasServiceAccount.md)
221
+ - [AcrossServerRoutesV1GroupRoleSchemasUser](docs/AcrossServerRoutesV1GroupRoleSchemasUser.md)
222
+ - [AcrossServerRoutesV1GroupSchemasGroup](docs/AcrossServerRoutesV1GroupSchemasGroup.md)
223
+ - [AcrossServerRoutesV1GroupSchemasUser](docs/AcrossServerRoutesV1GroupSchemasUser.md)
224
+ - [AcrossServerRoutesV1UserSchemasGroup](docs/AcrossServerRoutesV1UserSchemasGroup.md)
225
+ - [AcrossServerRoutesV1UserSchemasGroupInvite](docs/AcrossServerRoutesV1UserSchemasGroupInvite.md)
226
+ - [AcrossServerRoutesV1UserSchemasGroupRole](docs/AcrossServerRoutesV1UserSchemasGroupRole.md)
227
+ - [AcrossServerRoutesV1UserSchemasUser](docs/AcrossServerRoutesV1UserSchemasUser.md)
228
+ - [AcrossServerRoutesV1UserServiceAccountSchemasServiceAccount](docs/AcrossServerRoutesV1UserServiceAccountSchemasServiceAccount.md)
229
+ - [AltAzConstraint](docs/AltAzConstraint.md)
230
+ - [Bandpass](docs/Bandpass.md)
231
+ - [BandpassType](docs/BandpassType.md)
232
+ - [ConstrainedDate](docs/ConstrainedDate.md)
233
+ - [ConstraintReason](docs/ConstraintReason.md)
234
+ - [ConstraintType](docs/ConstraintType.md)
235
+ - [Coordinate](docs/Coordinate.md)
236
+ - [DateRange](docs/DateRange.md)
237
+ - [DepthUnit](docs/DepthUnit.md)
238
+ - [EarthLimbConstraint](docs/EarthLimbConstraint.md)
239
+ - [EnergyBandpass](docs/EnergyBandpass.md)
240
+ - [EnergyUnit](docs/EnergyUnit.md)
241
+ - [EphemerisType](docs/EphemerisType.md)
242
+ - [Filter](docs/Filter.md)
243
+ - [FrequencyBandpass](docs/FrequencyBandpass.md)
244
+ - [FrequencyUnit](docs/FrequencyUnit.md)
245
+ - [GrantType](docs/GrantType.md)
246
+ - [GroundParameters](docs/GroundParameters.md)
247
+ - [GroupInviteCreate](docs/GroupInviteCreate.md)
248
+ - [GroupInviteGroupDetails](docs/GroupInviteGroupDetails.md)
249
+ - [GroupRead](docs/GroupRead.md)
250
+ - [GroupRoleCreate](docs/GroupRoleCreate.md)
251
+ - [GroupRoleRead](docs/GroupRoleRead.md)
252
+ - [HTTPValidationError](docs/HTTPValidationError.md)
253
+ - [IDNameSchema](docs/IDNameSchema.md)
254
+ - [IVOAObsCategory](docs/IVOAObsCategory.md)
255
+ - [IVOAObsTrackingType](docs/IVOAObsTrackingType.md)
256
+ - [Instrument](docs/Instrument.md)
257
+ - [InstrumentConstraintsInner](docs/InstrumentConstraintsInner.md)
258
+ - [JPLParameters](docs/JPLParameters.md)
259
+ - [MoonAngleConstraint](docs/MoonAngleConstraint.md)
260
+ - [NullableDateRange](docs/NullableDateRange.md)
261
+ - [Observation](docs/Observation.md)
262
+ - [ObservationCreate](docs/ObservationCreate.md)
263
+ - [ObservationStatus](docs/ObservationStatus.md)
264
+ - [ObservationType](docs/ObservationType.md)
265
+ - [Observatory](docs/Observatory.md)
266
+ - [ObservatoryEphemerisType](docs/ObservatoryEphemerisType.md)
267
+ - [ObservatoryType](docs/ObservatoryType.md)
268
+ - [PageObservation](docs/PageObservation.md)
269
+ - [PageSchedule](docs/PageSchedule.md)
270
+ - [Parameters](docs/Parameters.md)
271
+ - [Permission](docs/Permission.md)
272
+ - [Point](docs/Point.md)
273
+ - [RoleBase](docs/RoleBase.md)
274
+ - [SAAPolygonConstraint](docs/SAAPolygonConstraint.md)
275
+ - [SPICEParameters](docs/SPICEParameters.md)
276
+ - [Schedule](docs/Schedule.md)
277
+ - [ScheduleCadence](docs/ScheduleCadence.md)
278
+ - [ScheduleCreate](docs/ScheduleCreate.md)
279
+ - [ScheduleCreateMany](docs/ScheduleCreateMany.md)
280
+ - [ScheduleFidelity](docs/ScheduleFidelity.md)
281
+ - [ScheduleStatus](docs/ScheduleStatus.md)
282
+ - [ServiceAccountCreate](docs/ServiceAccountCreate.md)
283
+ - [ServiceAccountSecret](docs/ServiceAccountSecret.md)
284
+ - [ServiceAccountUpdate](docs/ServiceAccountUpdate.md)
285
+ - [SunAngleConstraint](docs/SunAngleConstraint.md)
286
+ - [SystemServiceAccount](docs/SystemServiceAccount.md)
287
+ - [TLE](docs/TLE.md)
288
+ - [TLECreate](docs/TLECreate.md)
289
+ - [TLEParameters](docs/TLEParameters.md)
290
+ - [Telescope](docs/Telescope.md)
291
+ - [TelescopeInstrument](docs/TelescopeInstrument.md)
292
+ - [UnitValue](docs/UnitValue.md)
293
+ - [UserCreate](docs/UserCreate.md)
294
+ - [UserInfo](docs/UserInfo.md)
295
+ - [UserUpdate](docs/UserUpdate.md)
296
+ - [ValidationError](docs/ValidationError.md)
297
+ - [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)
298
+ - [VisibilityResult](docs/VisibilityResult.md)
299
+ - [VisibilityType](docs/VisibilityType.md)
300
+ - [VisibilityWindow](docs/VisibilityWindow.md)
301
+ - [WavelengthBandpass](docs/WavelengthBandpass.md)
302
+ - [WavelengthUnit](docs/WavelengthUnit.md)
303
+ - [Window](docs/Window.md)
304
+
305
+
306
+ <a id="documentation-for-authorization"></a>
307
+ ## Documentation For Authorization
308
+
309
+
310
+ Authentication schemes defined for the API:
311
+ <a id="Authorization"></a>
312
+ ### Authorization
313
+
314
+ - **Type**: Bearer authentication
315
+
316
+ <a id="ServiceAccountAuthorization"></a>
317
+ ### ServiceAccountAuthorization
318
+
319
+ - **Type**: HTTP basic authentication
320
+
321
+
322
+ ## Author
323
+
324
+
325
+
326
+
@@ -0,0 +1,264 @@
1
+ # across.sdk.v1
2
+ Server providing tools and utilities for various NASA missions to aid in coordination of large observation efforts.
3
+
4
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
+
6
+ - API version: 0.3.2
7
+ - Package version: 1.0.0
8
+ - Generator version: 7.14.0-SNAPSHOT
9
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
+
11
+ ## Requirements.
12
+
13
+ Python 3.9+
14
+
15
+ ## Installation & Usage
16
+ ### pip install
17
+
18
+ If the python package is hosted on a repository, you can install directly using:
19
+
20
+ ```sh
21
+ pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
22
+ ```
23
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
24
+
25
+ Then import the package:
26
+ ```python
27
+ import across.sdk.v1
28
+ ```
29
+
30
+ ### Setuptools
31
+
32
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
33
+
34
+ ```sh
35
+ python setup.py install --user
36
+ ```
37
+ (or `sudo python setup.py install` to install the package for all users)
38
+
39
+ Then import the package:
40
+ ```python
41
+ import across.sdk.v1
42
+ ```
43
+
44
+ ### Tests
45
+
46
+ Execute `pytest` to run the tests.
47
+
48
+ ## Getting Started
49
+
50
+ Please follow the [installation procedure](#installation--usage) and then run the following:
51
+
52
+ ```python
53
+
54
+ import across.sdk.v1
55
+ from across.sdk.v1.rest import ApiException
56
+ from pprint import pprint
57
+
58
+ # Defining the host is optional and defaults to /api/v1
59
+ # See configuration.py for a list of all supported configuration parameters.
60
+ configuration = across.sdk.v1.Configuration(
61
+ host = "/api/v1"
62
+ )
63
+
64
+ # The client must configure the authentication and authorization parameters
65
+ # in accordance with the API server security policy.
66
+ # Examples for each auth method are provided below, use the example that
67
+ # satisfies your auth use case.
68
+
69
+ # Configure Bearer authorization: Authorization
70
+ configuration = across.sdk.v1.Configuration(
71
+ access_token = os.environ["BEARER_TOKEN"]
72
+ )
73
+
74
+
75
+ # Enter a context with an instance of the API client
76
+ with across.sdk.v1.ApiClient(configuration) as api_client:
77
+ # Create an instance of the API class
78
+ api_instance = across.sdk.v1.AuthApi(api_client)
79
+ email = 'email_example' # str |
80
+
81
+ try:
82
+ # Login
83
+ api_response = api_instance.login(email)
84
+ print("The response of AuthApi->login:\n")
85
+ pprint(api_response)
86
+ except ApiException as e:
87
+ print("Exception when calling AuthApi->login: %s\n" % e)
88
+
89
+ ```
90
+
91
+ ## Documentation for API Endpoints
92
+
93
+ All URIs are relative to */api/v1*
94
+
95
+ Class | Method | HTTP request | Description
96
+ ------------ | ------------- | ------------- | -------------
97
+ *AuthApi* | [**login**](docs/AuthApi.md#login) | **POST** /auth/login | Login
98
+ *AuthApi* | [**refresh**](docs/AuthApi.md#refresh) | **POST** /auth/refresh | Refresh Token
99
+ *AuthApi* | [**token**](docs/AuthApi.md#token) | **POST** /auth/token | Token
100
+ *AuthApi* | [**verify**](docs/AuthApi.md#verify) | **GET** /auth/verify | Verify
101
+ *FilterApi* | [**get_filter_filter_id_get**](docs/FilterApi.md#get_filter_filter_id_get) | **GET** /filter/{filter_id} | Read a filter
102
+ *FilterApi* | [**get_many_filter_get**](docs/FilterApi.md#get_many_filter_get) | **GET** /filter/ | Read filters(s)
103
+ *GroupApi* | [**get_group**](docs/GroupApi.md#get_group) | **GET** /group/{group_id} | Read a group
104
+ *GroupApi* | [**remove_user**](docs/GroupApi.md#remove_user) | **DELETE** /group/{group_id}/user/{user_id} | Remove a user from a group
105
+ *GroupInviteApi* | [**delete_invite**](docs/GroupInviteApi.md#delete_invite) | **DELETE** /group/{group_id}/invite/{invite_id} | Delete a group invite
106
+ *GroupInviteApi* | [**get_invite**](docs/GroupInviteApi.md#get_invite) | **GET** /group/{group_id}/invite/{invite_id} | Read a group invite
107
+ *GroupInviteApi* | [**get_invites**](docs/GroupInviteApi.md#get_invites) | **GET** /group/{group_id}/invite | Read group invites
108
+ *GroupInviteApi* | [**send_invite**](docs/GroupInviteApi.md#send_invite) | **POST** /group/{group_id}/invite | Create and send a group invite
109
+ *GroupRoleApi* | [**assign_to_user**](docs/GroupRoleApi.md#assign_to_user) | **PUT** /group/{group_id}/user/{user_id}/role/{group_role_id} | Assign a group role to a user
110
+ *GroupRoleApi* | [**create_group_role**](docs/GroupRoleApi.md#create_group_role) | **POST** /group/{group_id}/role | Create a group role
111
+ *GroupRoleApi* | [**delete_group_role**](docs/GroupRoleApi.md#delete_group_role) | **DELETE** /group/{group_id}/role/{group_role_id} | Delete a group role
112
+ *GroupRoleApi* | [**get_group_role**](docs/GroupRoleApi.md#get_group_role) | **GET** /group/{group_id}/role/{group_role_id} | Read a group role
113
+ *GroupRoleApi* | [**get_group_roles**](docs/GroupRoleApi.md#get_group_roles) | **GET** /group/{group_id}/role | Read group roles
114
+ *GroupRoleApi* | [**remove_from_user**](docs/GroupRoleApi.md#remove_from_user) | **DELETE** /group/{group_id}/user/{user_id}/role/{group_role_id} | Remove a group role from a user
115
+ *GroupRoleApi* | [**update_group_role**](docs/GroupRoleApi.md#update_group_role) | **PUT** /group/{group_id}/role/{group_role_id} | Update a group role
116
+ *InstrumentApi* | [**get_instrument**](docs/InstrumentApi.md#get_instrument) | **GET** /instrument/{instrument_id} | Read an instrument
117
+ *InstrumentApi* | [**get_instruments**](docs/InstrumentApi.md#get_instruments) | **GET** /instrument/ | Read instruments(s)
118
+ *InternalApi* | [**get_service_account**](docs/InternalApi.md#get_service_account) | **GET** /service-account/{service_account_id} | Get a system service account
119
+ *InternalApi* | [**service_account_rotate_key**](docs/InternalApi.md#service_account_rotate_key) | **PATCH** /service-account/{service_account_id}/rotate_key | Rotate a service account key
120
+ *ObservationApi* | [**get_observation**](docs/ObservationApi.md#get_observation) | **GET** /observation/{observation_id} | Read an observation
121
+ *ObservationApi* | [**get_observations**](docs/ObservationApi.md#get_observations) | **GET** /observation/ | Read observations(s)
122
+ *ObservatoryApi* | [**get_observatories**](docs/ObservatoryApi.md#get_observatories) | **GET** /observatory/ | Read observatory(s)
123
+ *ObservatoryApi* | [**get_observatory**](docs/ObservatoryApi.md#get_observatory) | **GET** /observatory/{observatory_id} | Read an observatory
124
+ *PermissionApi* | [**get_permissions**](docs/PermissionApi.md#get_permissions) | **GET** /permission/ | Read permissions
125
+ *ScheduleApi* | [**create_many_schedules**](docs/ScheduleApi.md#create_many_schedules) | **POST** /schedule/bulk | Create many Schedules
126
+ *ScheduleApi* | [**create_schedule**](docs/ScheduleApi.md#create_schedule) | **POST** /schedule/ | Create a Schedule
127
+ *ScheduleApi* | [**get_schedule**](docs/ScheduleApi.md#get_schedule) | **GET** /schedule/{schedule_id} | Read a schedule
128
+ *ScheduleApi* | [**get_schedules**](docs/ScheduleApi.md#get_schedules) | **GET** /schedule/ | Read schedule(s)
129
+ *ScheduleApi* | [**get_schedules_history**](docs/ScheduleApi.md#get_schedules_history) | **GET** /schedule/history | Read schedule(s)
130
+ *ServiceAccountApi* | [**assign_to_service_account**](docs/ServiceAccountApi.md#assign_to_service_account) | **POST** /user/{user_id}/service-account/{service_account_id}/group-role/{group_role_id} | Assign group role
131
+ *ServiceAccountApi* | [**create_user_service_account**](docs/ServiceAccountApi.md#create_user_service_account) | **POST** /user/{user_id}/service_account/ | Create a service account
132
+ *ServiceAccountApi* | [**delete_user_service_account**](docs/ServiceAccountApi.md#delete_user_service_account) | **DELETE** /user/{user_id}/service_account/{service_account_id} | Delete a service_account
133
+ *ServiceAccountApi* | [**get_service_accounts**](docs/ServiceAccountApi.md#get_service_accounts) | **GET** /user/{user_id}/service_account/ | Read service accounts
134
+ *ServiceAccountApi* | [**get_user_service_account**](docs/ServiceAccountApi.md#get_user_service_account) | **GET** /user/{user_id}/service_account/{service_account_id} | Read a service account
135
+ *ServiceAccountApi* | [**remove_from_service_account**](docs/ServiceAccountApi.md#remove_from_service_account) | **DELETE** /user/{user_id}/service-account/{service_account_id}/group-role/{group_role_id} | Remove group role
136
+ *ServiceAccountApi* | [**update_user_service_account**](docs/ServiceAccountApi.md#update_user_service_account) | **PATCH** /user/{user_id}/service_account/{service_account_id} | Update a service account
137
+ *ServiceAccountApi* | [**user_service_account_rotate_key**](docs/ServiceAccountApi.md#user_service_account_rotate_key) | **PATCH** /user/{user_id}/service_account/{service_account_id}/rotate_key | Rotate a service account key
138
+ *TLEApi* | [**create_tle**](docs/TLEApi.md#create_tle) | **POST** /tle/ | Create a TLE
139
+ *TelescopeApi* | [**get_telescope**](docs/TelescopeApi.md#get_telescope) | **GET** /telescope/{telescope_id} | Read an telescope
140
+ *TelescopeApi* | [**get_telescopes**](docs/TelescopeApi.md#get_telescopes) | **GET** /telescope/ | Read telescopes(s)
141
+ *ToolsApi* | [**calculate_windows_tools_visibility_calculator_windows_instrument_id_get**](docs/ToolsApi.md#calculate_windows_tools_visibility_calculator_windows_instrument_id_get) | **GET** /tools/visibility-calculator/windows/{instrument_id} | Calculated Visibility Windows
142
+ *ToolsApi* | [**calculate_windows_tools_visibility_calculator_windows_instrument_id_get_0**](docs/ToolsApi.md#calculate_windows_tools_visibility_calculator_windows_instrument_id_get_0) | **GET** /tools/visibility-calculator/windows/{instrument_id} | Calculated Visibility Windows
143
+ *UserApi* | [**accept_invite**](docs/UserApi.md#accept_invite) | **PATCH** /user/{user_id}/invite/{invite_id} | Accept a group invitation
144
+ *UserApi* | [**create_user**](docs/UserApi.md#create_user) | **POST** /user/ | Create a user
145
+ *UserApi* | [**decline_invite**](docs/UserApi.md#decline_invite) | **DELETE** /user/{user_id}/invite/{invite_id} | Decline a group invitation
146
+ *UserApi* | [**delete_user**](docs/UserApi.md#delete_user) | **DELETE** /user/{user_id} | Delete a user
147
+ *UserApi* | [**get_group_invites**](docs/UserApi.md#get_group_invites) | **GET** /user/{user_id}/invite | Read a user&#39;s group invites
148
+ *UserApi* | [**get_user**](docs/UserApi.md#get_user) | **GET** /user/{user_id} | Read a user
149
+ *UserApi* | [**leave_group**](docs/UserApi.md#leave_group) | **DELETE** /user/{user_id}/group/{group_id} | Leave a group
150
+ *UserApi* | [**update_user**](docs/UserApi.md#update_user) | **PATCH** /user/{user_id} | Update a user
151
+
152
+
153
+ ## Documentation For Models
154
+
155
+ - [AccessTokenResponse](docs/AccessTokenResponse.md)
156
+ - [AcrossServerRoutesV1GroupInviteSchemasGroupInvite](docs/AcrossServerRoutesV1GroupInviteSchemasGroupInvite.md)
157
+ - [AcrossServerRoutesV1GroupRoleSchemasGroupRole](docs/AcrossServerRoutesV1GroupRoleSchemasGroupRole.md)
158
+ - [AcrossServerRoutesV1GroupRoleSchemasServiceAccount](docs/AcrossServerRoutesV1GroupRoleSchemasServiceAccount.md)
159
+ - [AcrossServerRoutesV1GroupRoleSchemasUser](docs/AcrossServerRoutesV1GroupRoleSchemasUser.md)
160
+ - [AcrossServerRoutesV1GroupSchemasGroup](docs/AcrossServerRoutesV1GroupSchemasGroup.md)
161
+ - [AcrossServerRoutesV1GroupSchemasUser](docs/AcrossServerRoutesV1GroupSchemasUser.md)
162
+ - [AcrossServerRoutesV1UserSchemasGroup](docs/AcrossServerRoutesV1UserSchemasGroup.md)
163
+ - [AcrossServerRoutesV1UserSchemasGroupInvite](docs/AcrossServerRoutesV1UserSchemasGroupInvite.md)
164
+ - [AcrossServerRoutesV1UserSchemasGroupRole](docs/AcrossServerRoutesV1UserSchemasGroupRole.md)
165
+ - [AcrossServerRoutesV1UserSchemasUser](docs/AcrossServerRoutesV1UserSchemasUser.md)
166
+ - [AcrossServerRoutesV1UserServiceAccountSchemasServiceAccount](docs/AcrossServerRoutesV1UserServiceAccountSchemasServiceAccount.md)
167
+ - [AltAzConstraint](docs/AltAzConstraint.md)
168
+ - [Bandpass](docs/Bandpass.md)
169
+ - [BandpassType](docs/BandpassType.md)
170
+ - [ConstrainedDate](docs/ConstrainedDate.md)
171
+ - [ConstraintReason](docs/ConstraintReason.md)
172
+ - [ConstraintType](docs/ConstraintType.md)
173
+ - [Coordinate](docs/Coordinate.md)
174
+ - [DateRange](docs/DateRange.md)
175
+ - [DepthUnit](docs/DepthUnit.md)
176
+ - [EarthLimbConstraint](docs/EarthLimbConstraint.md)
177
+ - [EnergyBandpass](docs/EnergyBandpass.md)
178
+ - [EnergyUnit](docs/EnergyUnit.md)
179
+ - [EphemerisType](docs/EphemerisType.md)
180
+ - [Filter](docs/Filter.md)
181
+ - [FrequencyBandpass](docs/FrequencyBandpass.md)
182
+ - [FrequencyUnit](docs/FrequencyUnit.md)
183
+ - [GrantType](docs/GrantType.md)
184
+ - [GroundParameters](docs/GroundParameters.md)
185
+ - [GroupInviteCreate](docs/GroupInviteCreate.md)
186
+ - [GroupInviteGroupDetails](docs/GroupInviteGroupDetails.md)
187
+ - [GroupRead](docs/GroupRead.md)
188
+ - [GroupRoleCreate](docs/GroupRoleCreate.md)
189
+ - [GroupRoleRead](docs/GroupRoleRead.md)
190
+ - [HTTPValidationError](docs/HTTPValidationError.md)
191
+ - [IDNameSchema](docs/IDNameSchema.md)
192
+ - [IVOAObsCategory](docs/IVOAObsCategory.md)
193
+ - [IVOAObsTrackingType](docs/IVOAObsTrackingType.md)
194
+ - [Instrument](docs/Instrument.md)
195
+ - [InstrumentConstraintsInner](docs/InstrumentConstraintsInner.md)
196
+ - [JPLParameters](docs/JPLParameters.md)
197
+ - [MoonAngleConstraint](docs/MoonAngleConstraint.md)
198
+ - [NullableDateRange](docs/NullableDateRange.md)
199
+ - [Observation](docs/Observation.md)
200
+ - [ObservationCreate](docs/ObservationCreate.md)
201
+ - [ObservationStatus](docs/ObservationStatus.md)
202
+ - [ObservationType](docs/ObservationType.md)
203
+ - [Observatory](docs/Observatory.md)
204
+ - [ObservatoryEphemerisType](docs/ObservatoryEphemerisType.md)
205
+ - [ObservatoryType](docs/ObservatoryType.md)
206
+ - [PageObservation](docs/PageObservation.md)
207
+ - [PageSchedule](docs/PageSchedule.md)
208
+ - [Parameters](docs/Parameters.md)
209
+ - [Permission](docs/Permission.md)
210
+ - [Point](docs/Point.md)
211
+ - [RoleBase](docs/RoleBase.md)
212
+ - [SAAPolygonConstraint](docs/SAAPolygonConstraint.md)
213
+ - [SPICEParameters](docs/SPICEParameters.md)
214
+ - [Schedule](docs/Schedule.md)
215
+ - [ScheduleCadence](docs/ScheduleCadence.md)
216
+ - [ScheduleCreate](docs/ScheduleCreate.md)
217
+ - [ScheduleCreateMany](docs/ScheduleCreateMany.md)
218
+ - [ScheduleFidelity](docs/ScheduleFidelity.md)
219
+ - [ScheduleStatus](docs/ScheduleStatus.md)
220
+ - [ServiceAccountCreate](docs/ServiceAccountCreate.md)
221
+ - [ServiceAccountSecret](docs/ServiceAccountSecret.md)
222
+ - [ServiceAccountUpdate](docs/ServiceAccountUpdate.md)
223
+ - [SunAngleConstraint](docs/SunAngleConstraint.md)
224
+ - [SystemServiceAccount](docs/SystemServiceAccount.md)
225
+ - [TLE](docs/TLE.md)
226
+ - [TLECreate](docs/TLECreate.md)
227
+ - [TLEParameters](docs/TLEParameters.md)
228
+ - [Telescope](docs/Telescope.md)
229
+ - [TelescopeInstrument](docs/TelescopeInstrument.md)
230
+ - [UnitValue](docs/UnitValue.md)
231
+ - [UserCreate](docs/UserCreate.md)
232
+ - [UserInfo](docs/UserInfo.md)
233
+ - [UserUpdate](docs/UserUpdate.md)
234
+ - [ValidationError](docs/ValidationError.md)
235
+ - [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)
236
+ - [VisibilityResult](docs/VisibilityResult.md)
237
+ - [VisibilityType](docs/VisibilityType.md)
238
+ - [VisibilityWindow](docs/VisibilityWindow.md)
239
+ - [WavelengthBandpass](docs/WavelengthBandpass.md)
240
+ - [WavelengthUnit](docs/WavelengthUnit.md)
241
+ - [Window](docs/Window.md)
242
+
243
+
244
+ <a id="documentation-for-authorization"></a>
245
+ ## Documentation For Authorization
246
+
247
+
248
+ Authentication schemes defined for the API:
249
+ <a id="Authorization"></a>
250
+ ### Authorization
251
+
252
+ - **Type**: Bearer authentication
253
+
254
+ <a id="ServiceAccountAuthorization"></a>
255
+ ### ServiceAccountAuthorization
256
+
257
+ - **Type**: HTTP basic authentication
258
+
259
+
260
+ ## Author
261
+
262
+
263
+
264
+
File without changes