udl-sdk 0.1.0a5__py3-none-any.whl → 0.1.0a8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2641) hide show
  1. udl_sdk-0.1.0a8.dist-info/METADATA +509 -0
  2. udl_sdk-0.1.0a8.dist-info/RECORD +2466 -0
  3. unifieddatalibrary/__init__.py +5 -0
  4. unifieddatalibrary/_client.py +656 -783
  5. unifieddatalibrary/_files.py +1 -1
  6. unifieddatalibrary/_response.py +1 -1
  7. unifieddatalibrary/_utils/_proxy.py +4 -1
  8. unifieddatalibrary/_utils/_resources_proxy.py +24 -0
  9. unifieddatalibrary/_version.py +1 -1
  10. unifieddatalibrary/pagination.py +6 -6
  11. unifieddatalibrary/resources/__init__.py +784 -994
  12. unifieddatalibrary/resources/air_events.py +152 -20
  13. unifieddatalibrary/resources/air_load_plans.py +86 -20
  14. unifieddatalibrary/resources/air_operations/air_operations.py +4 -4
  15. unifieddatalibrary/resources/air_operations/air_tasking_orders.py +788 -7
  16. unifieddatalibrary/resources/air_operations/aircraft_sortie.py +79 -20
  17. unifieddatalibrary/resources/air_operations/aircraft_sorties.py +4 -4
  18. unifieddatalibrary/resources/air_operations/airspace_control_orders.py +4 -4
  19. unifieddatalibrary/resources/air_operations/crewpapers.py +4 -4
  20. unifieddatalibrary/resources/air_operations/diplomatic_clearance.py +4 -4
  21. unifieddatalibrary/resources/air_transport_missions/air_transport_missions.py +84 -20
  22. unifieddatalibrary/resources/air_transport_missions/history.py +53 -16
  23. unifieddatalibrary/resources/aircraft.py +156 -22
  24. unifieddatalibrary/resources/aircraft_sorties.py +39 -7
  25. unifieddatalibrary/resources/aircraft_status_remarks.py +472 -20
  26. unifieddatalibrary/resources/aircraft_statuses/aircraft_statuses.py +156 -22
  27. unifieddatalibrary/resources/aircraft_statuses/history.py +81 -18
  28. unifieddatalibrary/resources/airfield_slot_consumptions.py +1537 -0
  29. unifieddatalibrary/resources/airfield_slots.py +869 -59
  30. unifieddatalibrary/resources/airfield_status/__init__.py +33 -0
  31. unifieddatalibrary/resources/airfield_status/airfield_status.py +1697 -0
  32. unifieddatalibrary/resources/airfield_status/history.py +310 -0
  33. unifieddatalibrary/resources/airfields.py +158 -22
  34. unifieddatalibrary/resources/airload_plans.py +898 -0
  35. unifieddatalibrary/resources/airspace_control_orders.py +149 -21
  36. unifieddatalibrary/resources/ais/ais.py +84 -19
  37. unifieddatalibrary/resources/ais/history.py +33 -14
  38. unifieddatalibrary/resources/ais_objects.py +4 -4
  39. unifieddatalibrary/resources/analytic_imagery.py +147 -24
  40. unifieddatalibrary/resources/antennas.py +158 -22
  41. unifieddatalibrary/resources/attitude_data.py +12 -4
  42. unifieddatalibrary/resources/attitude_sets/attitude_sets.py +61 -18
  43. unifieddatalibrary/resources/attitude_sets/history.py +53 -16
  44. unifieddatalibrary/resources/attitudesets.py +32 -6
  45. unifieddatalibrary/resources/aviation_risk_management.py +1335 -0
  46. unifieddatalibrary/resources/batteries.py +158 -22
  47. unifieddatalibrary/resources/batterydetails.py +92 -18
  48. unifieddatalibrary/resources/beam.py +158 -22
  49. unifieddatalibrary/resources/beam_contours.py +89 -19
  50. unifieddatalibrary/resources/buses.py +158 -22
  51. unifieddatalibrary/resources/channels.py +158 -22
  52. unifieddatalibrary/resources/collect_requests/collect_requests.py +86 -20
  53. unifieddatalibrary/resources/collect_requests/history.py +53 -16
  54. unifieddatalibrary/resources/collect_responses/collect_responses.py +76 -20
  55. unifieddatalibrary/resources/collect_responses/history/aodr.py +12 -4
  56. unifieddatalibrary/resources/collect_responses/history/history.py +45 -16
  57. unifieddatalibrary/resources/collect_responses/tuple.py +26 -15
  58. unifieddatalibrary/resources/comm.py +158 -22
  59. unifieddatalibrary/resources/conjunctions/conjunctions.py +99 -19
  60. unifieddatalibrary/resources/conjunctions/history.py +32 -6
  61. unifieddatalibrary/resources/cots.py +4 -4
  62. unifieddatalibrary/resources/countries.py +158 -22
  63. unifieddatalibrary/resources/crew.py +159 -22
  64. unifieddatalibrary/resources/diff_of_arrival/__init__.py +33 -0
  65. unifieddatalibrary/resources/diff_of_arrival/diff_of_arrival.py +507 -0
  66. unifieddatalibrary/resources/diff_of_arrival/history.py +205 -0
  67. unifieddatalibrary/resources/diplomatic_clearance/country.py +152 -20
  68. unifieddatalibrary/resources/diplomatic_clearance/diplomatic_clearance.py +84 -20
  69. unifieddatalibrary/resources/diplomatic_clearance/history.py +51 -16
  70. unifieddatalibrary/resources/drift_history.py +159 -27
  71. unifieddatalibrary/resources/dropzone.py +141 -12
  72. unifieddatalibrary/resources/ecp_sdr.py +172 -0
  73. unifieddatalibrary/resources/effect_requests/effect_requests.py +87 -19
  74. unifieddatalibrary/resources/effect_requests/history.py +52 -15
  75. unifieddatalibrary/resources/effect_responses/effect_responses.py +85 -19
  76. unifieddatalibrary/resources/effect_responses/history.py +52 -15
  77. unifieddatalibrary/resources/elsets/current.py +81 -18
  78. unifieddatalibrary/resources/elsets/elsets.py +91 -19
  79. unifieddatalibrary/resources/elsets/history.py +53 -16
  80. unifieddatalibrary/resources/emitter_geolocation.py +1397 -0
  81. unifieddatalibrary/resources/engine_details.py +143 -8
  82. unifieddatalibrary/resources/engines.py +158 -22
  83. unifieddatalibrary/resources/entities.py +209 -26
  84. unifieddatalibrary/resources/eop/eop.py +98 -20
  85. unifieddatalibrary/resources/eop/history.py +53 -16
  86. unifieddatalibrary/resources/ephemeris/attitude_data/attitude_data.py +56 -17
  87. unifieddatalibrary/resources/ephemeris/attitude_data/history.py +40 -6
  88. unifieddatalibrary/resources/ephemeris/ephemeris.py +64 -17
  89. unifieddatalibrary/resources/ephemeris/history.py +53 -16
  90. unifieddatalibrary/resources/ephemeris_sets/ephemeris_sets.py +95 -18
  91. unifieddatalibrary/resources/ephemeris_sets/history.py +41 -14
  92. unifieddatalibrary/resources/equipment.py +153 -21
  93. unifieddatalibrary/resources/equipment_remarks.py +894 -0
  94. unifieddatalibrary/resources/evac/evac.py +83 -19
  95. unifieddatalibrary/resources/evac/history.py +45 -16
  96. unifieddatalibrary/resources/evac/tuple.py +26 -15
  97. unifieddatalibrary/resources/event_evolution/event_evolution.py +67 -15
  98. unifieddatalibrary/resources/event_evolution/history.py +41 -14
  99. unifieddatalibrary/resources/feature_assessment/__init__.py +33 -0
  100. unifieddatalibrary/resources/feature_assessment/feature_assessment.py +1375 -0
  101. unifieddatalibrary/resources/feature_assessment/history.py +489 -0
  102. unifieddatalibrary/resources/flightplan.py +153 -21
  103. unifieddatalibrary/resources/geo_status/__init__.py +33 -0
  104. unifieddatalibrary/resources/geo_status/geo_status.py +1067 -0
  105. unifieddatalibrary/resources/geo_status/history.py +495 -0
  106. unifieddatalibrary/resources/global_atmospheric_model/__init__.py +33 -0
  107. unifieddatalibrary/resources/global_atmospheric_model/global_atmospheric_model.py +1128 -0
  108. unifieddatalibrary/resources/global_atmospheric_model/history.py +492 -0
  109. unifieddatalibrary/resources/gnss_observations/gnss_observations.py +4 -4
  110. unifieddatalibrary/resources/gnss_observations/history.py +24 -6
  111. unifieddatalibrary/resources/gnss_observationset/__init__.py +33 -0
  112. unifieddatalibrary/resources/gnss_observationset/gnss_observationset.py +728 -0
  113. unifieddatalibrary/resources/gnss_observationset/history.py +383 -0
  114. unifieddatalibrary/resources/gnss_raw_if/gnss_raw_if.py +4 -4
  115. unifieddatalibrary/resources/gnss_raw_if/history.py +40 -6
  116. unifieddatalibrary/resources/gnss_rawif.py +872 -0
  117. unifieddatalibrary/resources/ground_imagery/ground_imagery.py +1117 -99
  118. unifieddatalibrary/resources/ground_imagery/history.py +32 -6
  119. unifieddatalibrary/resources/h3_geo/__init__.py +33 -0
  120. unifieddatalibrary/resources/h3_geo/h3_geo.py +906 -0
  121. unifieddatalibrary/resources/h3_geo/history.py +492 -0
  122. unifieddatalibrary/resources/h3_geo_hex_cell.py +505 -0
  123. unifieddatalibrary/resources/hazard/hazard.py +95 -23
  124. unifieddatalibrary/resources/hazard/history.py +38 -6
  125. unifieddatalibrary/resources/ion_oobservation.py +686 -0
  126. unifieddatalibrary/resources/iono_observation/history.py +50 -15
  127. unifieddatalibrary/resources/iono_observation/iono_observation.py +4 -4
  128. unifieddatalibrary/resources/ir.py +157 -21
  129. unifieddatalibrary/resources/isr_collections/history.py +52 -15
  130. unifieddatalibrary/resources/isr_collections/isr_collections.py +60 -17
  131. unifieddatalibrary/resources/item.py +158 -21
  132. unifieddatalibrary/resources/item_trackings/history.py +44 -15
  133. unifieddatalibrary/resources/item_trackings/item_trackings.py +95 -23
  134. unifieddatalibrary/resources/launch_detection.py +1317 -0
  135. unifieddatalibrary/resources/launch_event/history.py +50 -15
  136. unifieddatalibrary/resources/launch_event/launch_event.py +885 -7
  137. unifieddatalibrary/resources/launch_site.py +1089 -0
  138. unifieddatalibrary/resources/launch_site_details.py +968 -0
  139. unifieddatalibrary/resources/launch_vehicle.py +1041 -0
  140. unifieddatalibrary/resources/launch_vehicle_details.py +1505 -0
  141. unifieddatalibrary/resources/link_status/datalink.py +61 -16
  142. unifieddatalibrary/resources/link_status/history.py +40 -13
  143. unifieddatalibrary/resources/link_status/link_status.py +72 -20
  144. unifieddatalibrary/resources/location.py +157 -21
  145. unifieddatalibrary/resources/logistics_support/__init__.py +33 -0
  146. unifieddatalibrary/resources/logistics_support/history.py +462 -0
  147. unifieddatalibrary/resources/logistics_support/logistics_support.py +1545 -0
  148. unifieddatalibrary/resources/maneuvers/history.py +50 -15
  149. unifieddatalibrary/resources/maneuvers/maneuvers.py +90 -24
  150. unifieddatalibrary/resources/manifold.py +158 -21
  151. unifieddatalibrary/resources/manifoldelset.py +88 -18
  152. unifieddatalibrary/resources/missile_tracks/history.py +40 -6
  153. unifieddatalibrary/resources/missile_tracks/missile_tracks.py +63 -16
  154. unifieddatalibrary/resources/mission_assignment/__init__.py +33 -0
  155. unifieddatalibrary/resources/mission_assignment/history.py +492 -0
  156. unifieddatalibrary/resources/mission_assignment/mission_assignment.py +2094 -0
  157. unifieddatalibrary/resources/mti/history.py +489 -0
  158. unifieddatalibrary/resources/mti/mti.py +718 -0
  159. unifieddatalibrary/resources/navigation.py +157 -21
  160. unifieddatalibrary/resources/navigational_obstruction.py +2380 -0
  161. unifieddatalibrary/resources/notification/history.py +489 -0
  162. unifieddatalibrary/resources/notification/notification.py +1059 -0
  163. unifieddatalibrary/resources/object_of_interest.py +1717 -0
  164. unifieddatalibrary/resources/observations/__init__.py +41 -13
  165. unifieddatalibrary/resources/observations/ecpsdr.py +91 -19
  166. unifieddatalibrary/resources/observations/eo_observations/eo_observations.py +1936 -0
  167. unifieddatalibrary/resources/observations/eo_observations/history.py +501 -0
  168. unifieddatalibrary/resources/observations/monoradar/history.py +40 -6
  169. unifieddatalibrary/resources/observations/monoradar/monoradar.py +525 -7
  170. unifieddatalibrary/resources/observations/observations.py +87 -23
  171. unifieddatalibrary/resources/observations/passive_radar_observation/__init__.py +33 -0
  172. unifieddatalibrary/resources/observations/passive_radar_observation/history.py +499 -0
  173. unifieddatalibrary/resources/observations/passive_radar_observation/passive_radar_observation.py +1516 -0
  174. unifieddatalibrary/resources/observations/radarobservation/history.py +52 -15
  175. unifieddatalibrary/resources/observations/radarobservation/radarobservation.py +1466 -4
  176. unifieddatalibrary/resources/observations/rf_observation/__init__.py +33 -0
  177. unifieddatalibrary/resources/observations/rf_observation/history.py +495 -0
  178. unifieddatalibrary/resources/observations/rf_observation/rf_observation.py +1818 -0
  179. unifieddatalibrary/resources/observations/swir.py +4 -4
  180. unifieddatalibrary/resources/onboardnavigation/history.py +495 -0
  181. unifieddatalibrary/resources/onboardnavigation/onboardnavigation.py +722 -0
  182. unifieddatalibrary/resources/onorbit/antenna_details.py +92 -18
  183. unifieddatalibrary/resources/onorbit/onorbit.py +179 -28
  184. unifieddatalibrary/resources/onorbitantenna.py +91 -17
  185. unifieddatalibrary/resources/onorbitbattery.py +91 -17
  186. unifieddatalibrary/resources/onorbitdetails.py +91 -17
  187. unifieddatalibrary/resources/onorbitevent.py +155 -21
  188. unifieddatalibrary/resources/onorbitlist.py +155 -21
  189. unifieddatalibrary/resources/onorbitsolararray.py +91 -17
  190. unifieddatalibrary/resources/onorbitthruster.py +91 -17
  191. unifieddatalibrary/resources/onorbitthrusterstatus/history.py +160 -6
  192. unifieddatalibrary/resources/onorbitthrusterstatus/onorbitthrusterstatus.py +68 -16
  193. unifieddatalibrary/resources/operatingunit.py +155 -21
  194. unifieddatalibrary/resources/operatingunitremark.py +148 -20
  195. unifieddatalibrary/resources/orbitdetermination/history.py +40 -13
  196. unifieddatalibrary/resources/orbitdetermination/orbitdetermination.py +72 -20
  197. unifieddatalibrary/resources/orbittrack/history.py +52 -15
  198. unifieddatalibrary/resources/orbittrack/orbittrack.py +63 -16
  199. unifieddatalibrary/resources/organization.py +257 -29
  200. unifieddatalibrary/resources/organizationdetails.py +69 -17
  201. unifieddatalibrary/resources/personnelrecovery/history.py +45 -16
  202. unifieddatalibrary/resources/personnelrecovery/personnelrecovery.py +83 -19
  203. unifieddatalibrary/resources/poi.py +95 -23
  204. unifieddatalibrary/resources/port.py +158 -21
  205. unifieddatalibrary/resources/report_and_activity/poi/history.py +52 -15
  206. unifieddatalibrary/resources/report_and_activity/poi/poi.py +4 -4
  207. unifieddatalibrary/resources/report_and_activity/report_and_activity.py +4 -4
  208. unifieddatalibrary/resources/report_and_activity/udl_h3geo.py +4 -4
  209. unifieddatalibrary/resources/report_and_activity/udl_sigact.py +31 -7
  210. unifieddatalibrary/resources/rf_band.py +1337 -0
  211. unifieddatalibrary/resources/rf_band_type.py +1057 -0
  212. unifieddatalibrary/resources/rf_emitter.py +1082 -0
  213. unifieddatalibrary/resources/rf_emitter_details.py +1466 -0
  214. unifieddatalibrary/resources/route_stats.py +1632 -0
  215. unifieddatalibrary/resources/sar_observation/__init__.py +33 -0
  216. unifieddatalibrary/resources/sar_observation/history.py +492 -0
  217. unifieddatalibrary/resources/sar_observation/sar_observation.py +1592 -0
  218. unifieddatalibrary/resources/scientific.py +157 -21
  219. unifieddatalibrary/resources/scs/classification_markings.py +4 -4
  220. unifieddatalibrary/resources/scs/file.py +32 -6
  221. unifieddatalibrary/resources/scs/file_metadata.py +4 -4
  222. unifieddatalibrary/resources/scs/folders.py +24 -6
  223. unifieddatalibrary/resources/scs/groups.py +4 -4
  224. unifieddatalibrary/resources/scs/paths.py +4 -4
  225. unifieddatalibrary/resources/scs/range_parameters.py +4 -4
  226. unifieddatalibrary/resources/scs/scs.py +24 -6
  227. unifieddatalibrary/resources/scs/v2.py +36 -15
  228. unifieddatalibrary/resources/scs_views.py +32 -6
  229. unifieddatalibrary/resources/secure_messaging.py +88 -10
  230. unifieddatalibrary/resources/sensor/calibration/calibration.py +75 -10
  231. unifieddatalibrary/resources/sensor/calibration/history.py +40 -6
  232. unifieddatalibrary/resources/sensor/sensor.py +157 -21
  233. unifieddatalibrary/resources/sensor_maintenance/__init__.py +33 -0
  234. unifieddatalibrary/resources/sensor_maintenance/history.py +522 -0
  235. unifieddatalibrary/resources/sensor_maintenance/sensor_maintenance.py +1688 -0
  236. unifieddatalibrary/resources/sensor_observation_type.py +339 -0
  237. unifieddatalibrary/resources/sensor_plan/__init__.py +33 -0
  238. unifieddatalibrary/resources/sensor_plan/history.py +492 -0
  239. unifieddatalibrary/resources/sensor_plan/sensor_plan.py +1346 -0
  240. unifieddatalibrary/resources/sensor_type.py +351 -0
  241. unifieddatalibrary/resources/sera_data_comm_details.py +1481 -0
  242. unifieddatalibrary/resources/sera_data_early_warning.py +1233 -0
  243. unifieddatalibrary/resources/sera_data_navigation.py +1217 -0
  244. unifieddatalibrary/resources/seradata_optical_payload.py +1307 -0
  245. unifieddatalibrary/resources/seradata_radar_payload.py +1405 -0
  246. unifieddatalibrary/resources/seradata_sigint_payload.py +1219 -0
  247. unifieddatalibrary/resources/seradata_spacecraft_details.py +2417 -0
  248. unifieddatalibrary/resources/sgi/history.py +40 -13
  249. unifieddatalibrary/resources/sgi/sgi.py +85 -24
  250. unifieddatalibrary/resources/sigact/history.py +42 -15
  251. unifieddatalibrary/resources/sigact/sigact.py +63 -16
  252. unifieddatalibrary/resources/site/operations.py +90 -18
  253. unifieddatalibrary/resources/site/site.py +157 -21
  254. unifieddatalibrary/resources/site_remark.py +806 -0
  255. unifieddatalibrary/resources/site_status/__init__.py +33 -0
  256. unifieddatalibrary/resources/site_status/history.py +310 -0
  257. unifieddatalibrary/resources/site_status/site_status.py +1831 -0
  258. unifieddatalibrary/resources/sky_imagery/__init__.py +33 -0
  259. unifieddatalibrary/resources/sky_imagery/history.py +495 -0
  260. unifieddatalibrary/resources/sky_imagery/sky_imagery.py +908 -0
  261. unifieddatalibrary/resources/soi_observation_set/__init__.py +33 -0
  262. unifieddatalibrary/resources/soi_observation_set/history.py +495 -0
  263. unifieddatalibrary/resources/soi_observation_set/soi_observation_set.py +1630 -0
  264. unifieddatalibrary/resources/solar_array.py +1009 -0
  265. unifieddatalibrary/resources/solar_array_details.py +921 -0
  266. unifieddatalibrary/resources/sortie_ppr/__init__.py +33 -0
  267. unifieddatalibrary/resources/sortie_ppr/history.py +492 -0
  268. unifieddatalibrary/resources/sortie_ppr/sortie_ppr.py +1415 -0
  269. unifieddatalibrary/resources/space_env_observation/__init__.py +33 -0
  270. unifieddatalibrary/resources/space_env_observation/history.py +495 -0
  271. unifieddatalibrary/resources/space_env_observation/space_env_observation.py +722 -0
  272. unifieddatalibrary/resources/stage.py +157 -21
  273. unifieddatalibrary/resources/star_catalog/__init__.py +33 -0
  274. unifieddatalibrary/resources/star_catalog/history.py +262 -0
  275. unifieddatalibrary/resources/star_catalog/star_catalog.py +1960 -0
  276. unifieddatalibrary/resources/state_vector/__init__.py +47 -0
  277. unifieddatalibrary/resources/state_vector/current.py +333 -0
  278. unifieddatalibrary/resources/state_vector/history.py +495 -0
  279. unifieddatalibrary/resources/state_vector/state_vector.py +2141 -0
  280. unifieddatalibrary/resources/status.py +211 -25
  281. unifieddatalibrary/resources/substatus.py +157 -21
  282. unifieddatalibrary/resources/supporting_data/data_types.py +67 -16
  283. unifieddatalibrary/resources/supporting_data/dataowner.py +96 -8
  284. unifieddatalibrary/resources/supporting_data/dataowner_types.py +67 -16
  285. unifieddatalibrary/resources/supporting_data/provider_metadata.py +52 -6
  286. unifieddatalibrary/resources/supporting_data/query_help.py +4 -4
  287. unifieddatalibrary/resources/supporting_data/supporting_data.py +4 -4
  288. unifieddatalibrary/resources/surface.py +157 -21
  289. unifieddatalibrary/resources/surface_obstruction.py +1217 -0
  290. unifieddatalibrary/resources/swir/history.py +53 -16
  291. unifieddatalibrary/resources/swir/swir.py +97 -19
  292. unifieddatalibrary/resources/tai_utc/__init__.py +33 -0
  293. unifieddatalibrary/resources/tai_utc/history.py +495 -0
  294. unifieddatalibrary/resources/tai_utc/tai_utc.py +1151 -0
  295. unifieddatalibrary/resources/tdoa_fdoa/diffofarrival/diffofarrival.py +53 -18
  296. unifieddatalibrary/resources/tdoa_fdoa/diffofarrival/history.py +33 -14
  297. unifieddatalibrary/resources/tdoa_fdoa/tdoa_fdoa.py +4 -4
  298. unifieddatalibrary/resources/track/history.py +53 -16
  299. unifieddatalibrary/resources/track/track.py +63 -16
  300. unifieddatalibrary/resources/track_details/__init__.py +33 -0
  301. unifieddatalibrary/resources/track_details/history.py +495 -0
  302. unifieddatalibrary/resources/track_details/track_details.py +637 -0
  303. unifieddatalibrary/resources/track_route/__init__.py +33 -0
  304. unifieddatalibrary/resources/track_route/history.py +495 -0
  305. unifieddatalibrary/resources/track_route/track_route.py +2047 -0
  306. unifieddatalibrary/resources/transponder.py +155 -21
  307. unifieddatalibrary/resources/vessel.py +152 -20
  308. unifieddatalibrary/resources/video/history.py +81 -18
  309. unifieddatalibrary/resources/video/video.py +176 -20
  310. unifieddatalibrary/resources/weather_data/__init__.py +33 -0
  311. unifieddatalibrary/resources/weather_data/history.py +495 -0
  312. unifieddatalibrary/resources/weather_data/weather_data.py +1320 -0
  313. unifieddatalibrary/resources/weather_report/__init__.py +33 -0
  314. unifieddatalibrary/resources/weather_report/history.py +495 -0
  315. unifieddatalibrary/resources/weather_report/weather_report.py +1751 -0
  316. unifieddatalibrary/types/__init__.py +896 -628
  317. unifieddatalibrary/types/ai_count_params.py +4 -0
  318. unifieddatalibrary/types/ai_history_count_params.py +4 -0
  319. unifieddatalibrary/types/ai_list_params.py +4 -0
  320. unifieddatalibrary/types/ai_tuple_params.py +4 -0
  321. unifieddatalibrary/types/air_event_count_params.py +15 -0
  322. unifieddatalibrary/types/air_event_get_params.py +15 -0
  323. unifieddatalibrary/types/air_event_list_params.py +15 -0
  324. unifieddatalibrary/types/air_event_list_response.py +9 -18
  325. unifieddatalibrary/types/air_event_tuple_params.py +7 -1
  326. unifieddatalibrary/types/air_load_plan_count_params.py +4 -0
  327. unifieddatalibrary/types/air_load_plan_list_params.py +4 -0
  328. unifieddatalibrary/types/air_load_plan_retrieve_params.py +15 -0
  329. unifieddatalibrary/types/air_load_plan_tuple_params.py +4 -0
  330. unifieddatalibrary/types/air_operations/__init__.py +9 -1
  331. unifieddatalibrary/types/air_operations/air_tasking_order_count_params.py +15 -0
  332. unifieddatalibrary/types/air_operations/air_tasking_order_create_params.py +378 -0
  333. unifieddatalibrary/types/air_operations/air_tasking_order_full.py +402 -0
  334. unifieddatalibrary/types/air_operations/air_tasking_order_list_params.py +15 -0
  335. unifieddatalibrary/types/air_operations/air_tasking_order_retrieve_params.py +15 -0
  336. unifieddatalibrary/types/air_operations/air_tasking_order_tuple_params.py +23 -0
  337. unifieddatalibrary/types/air_operations/aircraft_sortie_count_params.py +4 -0
  338. unifieddatalibrary/types/air_operations/aircraft_sortie_history_aodr_params.py +4 -0
  339. unifieddatalibrary/types/air_operations/aircraft_sortie_history_count_params.py +4 -0
  340. unifieddatalibrary/types/air_operations/aircraft_sortie_history_query_params.py +4 -0
  341. unifieddatalibrary/types/air_operations/aircraft_sortie_list_params.py +4 -0
  342. unifieddatalibrary/types/air_operations/aircraftsortie_full.py +1 -1
  343. unifieddatalibrary/types/air_operations/airtaskingorder_abridged.py +402 -0
  344. unifieddatalibrary/types/air_transport_mission_count_params.py +4 -0
  345. unifieddatalibrary/types/air_transport_mission_list_params.py +4 -0
  346. unifieddatalibrary/types/air_transport_mission_retrieve_params.py +15 -0
  347. unifieddatalibrary/types/air_transport_mission_tuple_params.py +4 -0
  348. unifieddatalibrary/types/air_transport_missions/__init__.py +0 -1
  349. unifieddatalibrary/types/air_transport_missions/history_aodr_params.py +4 -0
  350. unifieddatalibrary/types/air_transport_missions/history_count_params.py +4 -0
  351. unifieddatalibrary/types/air_transport_missions/history_list_params.py +4 -0
  352. unifieddatalibrary/types/aircraft_count_params.py +15 -0
  353. unifieddatalibrary/types/aircraft_list_params.py +15 -0
  354. unifieddatalibrary/types/aircraft_retrieve_params.py +15 -0
  355. unifieddatalibrary/types/aircraft_sorty_retrieve_params.py +15 -0
  356. unifieddatalibrary/types/aircraft_sorty_tuple_params.py +4 -0
  357. unifieddatalibrary/types/aircraft_status_count_params.py +15 -0
  358. unifieddatalibrary/types/aircraft_status_list_params.py +15 -0
  359. unifieddatalibrary/types/aircraft_status_remark_count_params.py +15 -0
  360. unifieddatalibrary/types/aircraft_status_remark_list_params.py +15 -0
  361. unifieddatalibrary/types/aircraft_status_remark_retrieve_params.py +15 -0
  362. unifieddatalibrary/types/aircraft_status_remark_tuple_params.py +7 -1
  363. unifieddatalibrary/types/aircraft_status_remark_update_params.py +83 -0
  364. unifieddatalibrary/types/aircraft_status_retrieve_params.py +15 -0
  365. unifieddatalibrary/types/aircraft_status_tuple_params.py +7 -1
  366. unifieddatalibrary/types/aircraft_statuses/__init__.py +1 -1
  367. unifieddatalibrary/types/aircraft_statuses/history_count_params.py +15 -0
  368. unifieddatalibrary/types/aircraft_statuses/history_list_params.py +7 -1
  369. unifieddatalibrary/types/aircraft_tuple_query_params.py +7 -1
  370. unifieddatalibrary/types/airfield_count_params.py +15 -0
  371. unifieddatalibrary/types/airfield_list_params.py +15 -0
  372. unifieddatalibrary/types/airfield_retrieve_params.py +15 -0
  373. unifieddatalibrary/types/airfield_slot_consumption_count_params.py +23 -0
  374. unifieddatalibrary/types/airfield_slot_consumption_count_response.py +7 -0
  375. unifieddatalibrary/types/airfield_slot_consumption_create_params.py +171 -0
  376. unifieddatalibrary/types/airfield_slot_consumption_list_params.py +23 -0
  377. unifieddatalibrary/types/airfield_slot_consumption_retrieve_params.py +15 -0
  378. unifieddatalibrary/types/airfield_slot_consumption_tuple_params.py +31 -0
  379. unifieddatalibrary/types/airfield_slot_consumption_tuple_response.py +10 -0
  380. unifieddatalibrary/types/airfield_slot_consumption_update_params.py +171 -0
  381. unifieddatalibrary/types/airfield_slot_count_params.py +15 -0
  382. unifieddatalibrary/types/airfield_slot_count_response.py +7 -0
  383. unifieddatalibrary/types/airfield_slot_list_params.py +15 -0
  384. unifieddatalibrary/types/airfield_slot_retrieve_params.py +15 -0
  385. unifieddatalibrary/types/airfield_slot_tuple_params.py +23 -0
  386. unifieddatalibrary/types/airfield_slot_tuple_response.py +10 -0
  387. unifieddatalibrary/types/airfield_slot_update_params.py +98 -0
  388. unifieddatalibrary/types/airfield_status/__init__.py +7 -0
  389. unifieddatalibrary/types/airfield_status/history_count_params.py +15 -0
  390. unifieddatalibrary/types/airfield_status/history_list_params.py +23 -0
  391. unifieddatalibrary/types/airfield_status_count_params.py +15 -0
  392. unifieddatalibrary/types/airfield_status_count_response.py +7 -0
  393. unifieddatalibrary/types/airfield_status_create_params.py +221 -0
  394. unifieddatalibrary/types/airfield_status_list_params.py +15 -0
  395. unifieddatalibrary/types/airfield_status_retrieve_params.py +15 -0
  396. unifieddatalibrary/types/airfield_status_tuple_params.py +7 -1
  397. unifieddatalibrary/types/airfield_tuple_params.py +7 -1
  398. unifieddatalibrary/types/airload_plan_update_params.py +607 -0
  399. unifieddatalibrary/types/airspace_control_order_count_params.py +15 -0
  400. unifieddatalibrary/types/airspace_control_order_list_params.py +15 -0
  401. unifieddatalibrary/types/airspace_control_order_retrieve_params.py +15 -0
  402. unifieddatalibrary/types/airspace_control_order_tuple_params.py +7 -1
  403. unifieddatalibrary/types/ais/__init__.py +0 -1
  404. unifieddatalibrary/types/ais/history_aodr_params.py +4 -0
  405. unifieddatalibrary/types/ais/history_list_params.py +4 -0
  406. unifieddatalibrary/types/analytic_imagery_count_params.py +4 -0
  407. unifieddatalibrary/types/analytic_imagery_file_get_params.py +15 -0
  408. unifieddatalibrary/types/analytic_imagery_history_aodr_params.py +4 -0
  409. unifieddatalibrary/types/analytic_imagery_history_count_params.py +4 -0
  410. unifieddatalibrary/types/analytic_imagery_history_params.py +4 -0
  411. unifieddatalibrary/types/analytic_imagery_list_params.py +4 -0
  412. unifieddatalibrary/types/analytic_imagery_retrieve_params.py +15 -0
  413. unifieddatalibrary/types/analytic_imagery_tuple_params.py +4 -0
  414. unifieddatalibrary/types/antenna_count_params.py +15 -0
  415. unifieddatalibrary/types/antenna_list_params.py +15 -0
  416. unifieddatalibrary/types/antenna_retrieve_params.py +15 -0
  417. unifieddatalibrary/types/antenna_tuple_params.py +7 -1
  418. unifieddatalibrary/types/attitude_data_tuple_params.py +4 -0
  419. unifieddatalibrary/types/attitude_set_count_params.py +4 -0
  420. unifieddatalibrary/types/attitude_set_list_params.py +4 -0
  421. unifieddatalibrary/types/attitude_set_tuple_params.py +4 -0
  422. unifieddatalibrary/types/attitude_sets/__init__.py +0 -1
  423. unifieddatalibrary/types/attitude_sets/history_aodr_params.py +4 -0
  424. unifieddatalibrary/types/attitude_sets/history_count_params.py +4 -0
  425. unifieddatalibrary/types/attitude_sets/history_list_params.py +4 -0
  426. unifieddatalibrary/types/attitudeset_retrieve_params.py +15 -0
  427. unifieddatalibrary/types/aviation_risk_management_count_params.py +21 -0
  428. unifieddatalibrary/types/aviation_risk_management_count_response.py +7 -0
  429. unifieddatalibrary/types/aviation_risk_management_create_bulk_params.py +249 -0
  430. unifieddatalibrary/types/aviation_risk_management_create_params.py +242 -0
  431. unifieddatalibrary/types/aviation_risk_management_query_params.py +21 -0
  432. unifieddatalibrary/types/aviation_risk_management_query_response.py +281 -0
  433. unifieddatalibrary/types/aviation_risk_management_retrieve_params.py +15 -0
  434. unifieddatalibrary/types/aviation_risk_management_retrieve_response.py +269 -0
  435. unifieddatalibrary/types/aviation_risk_management_tuple_params.py +29 -0
  436. unifieddatalibrary/types/aviation_risk_management_tuple_response.py +281 -0
  437. unifieddatalibrary/types/aviation_risk_management_unvalidated_publish_params.py +249 -0
  438. unifieddatalibrary/types/aviation_risk_management_update_params.py +242 -0
  439. unifieddatalibrary/types/battery_count_params.py +15 -0
  440. unifieddatalibrary/types/battery_list_params.py +15 -0
  441. unifieddatalibrary/types/battery_retrieve_params.py +15 -0
  442. unifieddatalibrary/types/battery_tuple_params.py +7 -1
  443. unifieddatalibrary/types/batterydetail_list_params.py +15 -0
  444. unifieddatalibrary/types/batterydetail_retrieve_params.py +15 -0
  445. unifieddatalibrary/types/beam_contour_count_params.py +4 -0
  446. unifieddatalibrary/types/beam_contour_list_params.py +4 -0
  447. unifieddatalibrary/types/beam_contour_retrieve_params.py +15 -0
  448. unifieddatalibrary/types/beam_contour_tuple_params.py +4 -0
  449. unifieddatalibrary/types/beam_count_params.py +15 -0
  450. unifieddatalibrary/types/beam_list_params.py +15 -0
  451. unifieddatalibrary/types/beam_retrieve_params.py +15 -0
  452. unifieddatalibrary/types/beam_tuple_params.py +7 -1
  453. unifieddatalibrary/types/bus_count_params.py +15 -0
  454. unifieddatalibrary/types/bus_list_params.py +15 -0
  455. unifieddatalibrary/types/bus_retrieve_params.py +15 -0
  456. unifieddatalibrary/types/bus_tuple_params.py +7 -1
  457. unifieddatalibrary/types/channel_count_params.py +15 -0
  458. unifieddatalibrary/types/channel_list_params.py +15 -0
  459. unifieddatalibrary/types/channel_retrieve_params.py +15 -0
  460. unifieddatalibrary/types/channel_tuple_params.py +7 -1
  461. unifieddatalibrary/types/collect_request_count_params.py +4 -0
  462. unifieddatalibrary/types/collect_request_list_params.py +4 -0
  463. unifieddatalibrary/types/collect_request_retrieve_params.py +15 -0
  464. unifieddatalibrary/types/collect_request_tuple_params.py +4 -0
  465. unifieddatalibrary/types/collect_requests/__init__.py +0 -1
  466. unifieddatalibrary/types/collect_requests/history_aodr_params.py +4 -0
  467. unifieddatalibrary/types/collect_requests/history_count_params.py +4 -0
  468. unifieddatalibrary/types/collect_requests/history_list_params.py +4 -0
  469. unifieddatalibrary/types/collect_response_count_params.py +4 -0
  470. unifieddatalibrary/types/collect_response_list_params.py +4 -0
  471. unifieddatalibrary/types/collect_response_retrieve_params.py +15 -0
  472. unifieddatalibrary/types/collect_responses/__init__.py +0 -2
  473. unifieddatalibrary/types/collect_responses/history/aodr_list_params.py +4 -0
  474. unifieddatalibrary/types/collect_responses/history_count_params.py +4 -0
  475. unifieddatalibrary/types/collect_responses/history_list_params.py +4 -0
  476. unifieddatalibrary/types/collect_responses/tuple_list_params.py +4 -0
  477. unifieddatalibrary/types/comm_count_params.py +15 -0
  478. unifieddatalibrary/types/comm_list_params.py +15 -0
  479. unifieddatalibrary/types/comm_retrieve_params.py +15 -0
  480. unifieddatalibrary/types/comm_tuple_params.py +7 -1
  481. unifieddatalibrary/types/conjunction_count_params.py +4 -0
  482. unifieddatalibrary/types/conjunction_full.py +3 -3
  483. unifieddatalibrary/types/conjunction_get_history_params.py +4 -0
  484. unifieddatalibrary/types/conjunction_list_params.py +4 -0
  485. unifieddatalibrary/types/conjunction_retrieve_params.py +15 -0
  486. unifieddatalibrary/types/conjunction_tuple_params.py +4 -0
  487. unifieddatalibrary/types/conjunctions/history_aodr_params.py +4 -0
  488. unifieddatalibrary/types/conjunctions/history_count_params.py +4 -0
  489. unifieddatalibrary/types/country_count_params.py +15 -0
  490. unifieddatalibrary/types/country_list_params.py +15 -0
  491. unifieddatalibrary/types/country_retrieve_params.py +15 -0
  492. unifieddatalibrary/types/country_tuple_params.py +7 -1
  493. unifieddatalibrary/types/crew_count_params.py +15 -0
  494. unifieddatalibrary/types/crew_list_params.py +15 -0
  495. unifieddatalibrary/types/crew_retrieve_params.py +15 -0
  496. unifieddatalibrary/types/crew_tuple_params.py +7 -1
  497. unifieddatalibrary/types/diff_of_arrival/history_count_params.py +23 -0
  498. unifieddatalibrary/types/diff_of_arrival_retrieve_params.py +15 -0
  499. unifieddatalibrary/types/diff_of_arrival_tuple_params.py +31 -0
  500. unifieddatalibrary/types/diff_of_arrival_tuple_response.py +10 -0
  501. unifieddatalibrary/types/diff_of_arrival_unvalidated_publish_params.py +222 -0
  502. unifieddatalibrary/types/diplomatic_clearance/__init__.py +3 -1
  503. unifieddatalibrary/types/diplomatic_clearance/country_count_params.py +15 -0
  504. unifieddatalibrary/types/diplomatic_clearance/country_list_params.py +15 -0
  505. unifieddatalibrary/types/diplomatic_clearance/country_list_response.py +15 -19
  506. unifieddatalibrary/types/diplomatic_clearance/country_retrieve_params.py +15 -0
  507. unifieddatalibrary/types/diplomatic_clearance/country_tuple_params.py +7 -1
  508. unifieddatalibrary/types/diplomatic_clearance/history_aodr_params.py +4 -0
  509. unifieddatalibrary/types/diplomatic_clearance/history_count_params.py +4 -0
  510. unifieddatalibrary/types/diplomatic_clearance/history_list_params.py +4 -0
  511. unifieddatalibrary/types/diplomatic_clearance_count_params.py +4 -0
  512. unifieddatalibrary/types/diplomatic_clearance_list_params.py +4 -0
  513. unifieddatalibrary/types/diplomatic_clearance_retrieve_params.py +15 -0
  514. unifieddatalibrary/types/diplomatic_clearance_tuple_params.py +4 -0
  515. unifieddatalibrary/types/drift_history_count_params.py +15 -0
  516. unifieddatalibrary/types/drift_history_list_params.py +15 -0
  517. unifieddatalibrary/types/drift_history_retrieve_params.py +15 -0
  518. unifieddatalibrary/types/drift_history_tuple_params.py +7 -1
  519. unifieddatalibrary/types/drift_history_tuple_response.py +2 -2
  520. unifieddatalibrary/types/dropzone_count_params.py +15 -0
  521. unifieddatalibrary/types/dropzone_query_params.py +15 -0
  522. unifieddatalibrary/types/dropzone_retrieve_params.py +15 -0
  523. unifieddatalibrary/types/dropzone_tuple_params.py +7 -1
  524. unifieddatalibrary/types/ecp_sdr_unvalidated_publish_params.py +253 -0
  525. unifieddatalibrary/types/effect_request_count_params.py +4 -0
  526. unifieddatalibrary/types/effect_request_list_params.py +4 -0
  527. unifieddatalibrary/types/effect_request_list_response.py +3 -6
  528. unifieddatalibrary/types/effect_request_retrieve_params.py +15 -0
  529. unifieddatalibrary/types/effect_request_tuple_params.py +4 -0
  530. unifieddatalibrary/types/effect_requests/history_aodr_params.py +4 -0
  531. unifieddatalibrary/types/effect_requests/history_count_params.py +4 -0
  532. unifieddatalibrary/types/effect_requests/history_list_params.py +4 -0
  533. unifieddatalibrary/types/effect_requests/history_list_response.py +3 -6
  534. unifieddatalibrary/types/effect_response_count_params.py +4 -0
  535. unifieddatalibrary/types/effect_response_list_params.py +4 -0
  536. unifieddatalibrary/types/effect_response_list_response.py +9 -22
  537. unifieddatalibrary/types/effect_response_retrieve_params.py +15 -0
  538. unifieddatalibrary/types/effect_response_tuple_params.py +4 -0
  539. unifieddatalibrary/types/effect_responses/history_aodr_params.py +4 -0
  540. unifieddatalibrary/types/effect_responses/history_count_params.py +4 -0
  541. unifieddatalibrary/types/effect_responses/history_list_params.py +4 -0
  542. unifieddatalibrary/types/effect_responses/history_list_response.py +9 -20
  543. unifieddatalibrary/types/elset.py +2 -2
  544. unifieddatalibrary/types/elset_count_params.py +4 -0
  545. unifieddatalibrary/types/elset_list_params.py +4 -0
  546. unifieddatalibrary/types/elset_retrieve_params.py +15 -0
  547. unifieddatalibrary/types/elset_tuple_params.py +4 -0
  548. unifieddatalibrary/types/elsets/__init__.py +1 -2
  549. unifieddatalibrary/types/elsets/current_list_params.py +15 -0
  550. unifieddatalibrary/types/elsets/current_tuple_params.py +7 -1
  551. unifieddatalibrary/types/elsets/history_aodr_params.py +4 -0
  552. unifieddatalibrary/types/elsets/history_count_params.py +4 -0
  553. unifieddatalibrary/types/elsets/history_list_params.py +4 -0
  554. unifieddatalibrary/types/emitter_geolocation_count_params.py +23 -0
  555. unifieddatalibrary/types/emitter_geolocation_count_response.py +7 -0
  556. unifieddatalibrary/types/emitter_geolocation_create_bulk_params.py +236 -0
  557. unifieddatalibrary/types/emitter_geolocation_create_params.py +232 -0
  558. unifieddatalibrary/types/emitter_geolocation_query_params.py +23 -0
  559. unifieddatalibrary/types/emitter_geolocation_query_response.py +260 -0
  560. unifieddatalibrary/types/emitter_geolocation_retrieve_params.py +15 -0
  561. unifieddatalibrary/types/emitter_geolocation_retrieve_response.py +267 -0
  562. unifieddatalibrary/types/emitter_geolocation_tuple_params.py +31 -0
  563. unifieddatalibrary/types/emitter_geolocation_tuple_response.py +270 -0
  564. unifieddatalibrary/types/emitter_geolocation_unvalidated_publish_params.py +236 -0
  565. unifieddatalibrary/types/engine_count_params.py +15 -0
  566. unifieddatalibrary/types/engine_detail_list_params.py +15 -0
  567. unifieddatalibrary/types/engine_detail_retrieve_params.py +15 -0
  568. unifieddatalibrary/types/engine_list_params.py +15 -0
  569. unifieddatalibrary/types/engine_retrieve_params.py +15 -0
  570. unifieddatalibrary/types/engine_tuple_params.py +7 -1
  571. unifieddatalibrary/types/entity_count_params.py +15 -0
  572. unifieddatalibrary/types/entity_get_all_types_params.py +15 -0
  573. unifieddatalibrary/types/entity_list_params.py +15 -0
  574. unifieddatalibrary/types/entity_retrieve_params.py +15 -0
  575. unifieddatalibrary/types/entity_tuple_params.py +7 -1
  576. unifieddatalibrary/types/eop/__init__.py +0 -1
  577. unifieddatalibrary/types/eop/history_aodr_params.py +4 -0
  578. unifieddatalibrary/types/eop/history_count_params.py +4 -0
  579. unifieddatalibrary/types/eop/history_list_params.py +4 -0
  580. unifieddatalibrary/types/eop_count_params.py +4 -0
  581. unifieddatalibrary/types/eop_list_params.py +4 -0
  582. unifieddatalibrary/types/eop_list_tuple_params.py +4 -0
  583. unifieddatalibrary/types/eop_retrieve_params.py +15 -0
  584. unifieddatalibrary/types/ephemeris/__init__.py +0 -2
  585. unifieddatalibrary/types/ephemeris/attitude_data/history_aodr_params.py +4 -0
  586. unifieddatalibrary/types/ephemeris/attitude_data/history_count_params.py +4 -0
  587. unifieddatalibrary/types/ephemeris/attitude_data/history_retrieve_params.py +4 -0
  588. unifieddatalibrary/types/ephemeris/attitude_data_count_params.py +4 -0
  589. unifieddatalibrary/types/ephemeris/attitude_data_list_params.py +4 -0
  590. unifieddatalibrary/types/ephemeris/history_aodr_params.py +4 -0
  591. unifieddatalibrary/types/ephemeris/history_count_params.py +4 -0
  592. unifieddatalibrary/types/ephemeris/history_list_params.py +4 -0
  593. unifieddatalibrary/types/ephemeris_count_params.py +4 -0
  594. unifieddatalibrary/types/ephemeris_list_params.py +4 -0
  595. unifieddatalibrary/types/ephemeris_set.py +2 -2
  596. unifieddatalibrary/types/ephemeris_set_count_params.py +4 -0
  597. unifieddatalibrary/types/ephemeris_set_file_retrieve_params.py +15 -0
  598. unifieddatalibrary/types/ephemeris_set_list_params.py +4 -0
  599. unifieddatalibrary/types/ephemeris_set_retrieve_params.py +15 -0
  600. unifieddatalibrary/types/ephemeris_set_tuple_params.py +4 -0
  601. unifieddatalibrary/types/ephemeris_sets/__init__.py +0 -1
  602. unifieddatalibrary/types/ephemeris_sets/history_aodr_params.py +4 -0
  603. unifieddatalibrary/types/ephemeris_sets/history_count_params.py +4 -0
  604. unifieddatalibrary/types/ephemeris_sets/history_list_params.py +4 -0
  605. unifieddatalibrary/types/ephemeris_tuple_params.py +4 -0
  606. unifieddatalibrary/types/equipment_count_params.py +15 -0
  607. unifieddatalibrary/types/equipment_list_params.py +15 -0
  608. unifieddatalibrary/types/equipment_remark_count_params.py +15 -0
  609. unifieddatalibrary/types/equipment_remark_count_response.py +7 -0
  610. unifieddatalibrary/types/equipment_remark_create_bulk_params.py +72 -0
  611. unifieddatalibrary/types/equipment_remark_create_params.py +67 -0
  612. unifieddatalibrary/types/equipment_remark_list_params.py +15 -0
  613. unifieddatalibrary/types/equipment_remark_retrieve_params.py +15 -0
  614. unifieddatalibrary/types/equipment_remark_tuple_params.py +23 -0
  615. unifieddatalibrary/types/equipment_remark_tuple_response.py +10 -0
  616. unifieddatalibrary/types/equipment_retrieve_params.py +15 -0
  617. unifieddatalibrary/types/equipment_tuple_params.py +7 -1
  618. unifieddatalibrary/types/evac/__init__.py +0 -2
  619. unifieddatalibrary/types/evac/history_count_params.py +4 -0
  620. unifieddatalibrary/types/evac/history_list_params.py +4 -0
  621. unifieddatalibrary/types/evac/tuple_list_params.py +4 -0
  622. unifieddatalibrary/types/evac_count_params.py +4 -0
  623. unifieddatalibrary/types/evac_list_params.py +4 -0
  624. unifieddatalibrary/types/evac_retrieve_params.py +15 -0
  625. unifieddatalibrary/types/event_evolution/__init__.py +0 -1
  626. unifieddatalibrary/types/event_evolution/history_aodr_params.py +4 -0
  627. unifieddatalibrary/types/event_evolution/history_count_params.py +4 -0
  628. unifieddatalibrary/types/event_evolution/history_list_params.py +4 -0
  629. unifieddatalibrary/types/event_evolution_count_params.py +4 -0
  630. unifieddatalibrary/types/event_evolution_list_params.py +4 -0
  631. unifieddatalibrary/types/event_evolution_list_response.py +3 -6
  632. unifieddatalibrary/types/event_evolution_retrieve_params.py +15 -0
  633. unifieddatalibrary/types/event_evolution_tuple_params.py +4 -0
  634. unifieddatalibrary/types/feature_assessment/history_count_params.py +21 -0
  635. unifieddatalibrary/types/feature_assessment/history_query_params.py +29 -0
  636. unifieddatalibrary/types/feature_assessment/history_write_aodr_params.py +49 -0
  637. unifieddatalibrary/types/feature_assessment_count_params.py +21 -0
  638. unifieddatalibrary/types/feature_assessment_count_response.py +7 -0
  639. unifieddatalibrary/types/feature_assessment_create_bulk_params.py +259 -0
  640. unifieddatalibrary/types/feature_assessment_create_params.py +255 -0
  641. unifieddatalibrary/types/feature_assessment_query_params.py +21 -0
  642. unifieddatalibrary/types/feature_assessment_query_response.py +265 -0
  643. unifieddatalibrary/types/feature_assessment_retrieve_params.py +15 -0
  644. unifieddatalibrary/types/feature_assessment_retrieve_response.py +277 -0
  645. unifieddatalibrary/types/feature_assessment_tuple_params.py +29 -0
  646. unifieddatalibrary/types/feature_assessment_tuple_response.py +280 -0
  647. unifieddatalibrary/types/feature_assessment_unvalidated_publish_params.py +259 -0
  648. unifieddatalibrary/types/flightplan_count_params.py +15 -0
  649. unifieddatalibrary/types/flightplan_list_params.py +15 -0
  650. unifieddatalibrary/types/flightplan_retrieve_params.py +15 -0
  651. unifieddatalibrary/types/flightplan_tuple_params.py +7 -1
  652. unifieddatalibrary/types/geo_status/__init__.py +9 -0
  653. unifieddatalibrary/types/geo_status/geo_status_full.py +152 -0
  654. unifieddatalibrary/types/geo_status/history_aodr_params.py +51 -0
  655. unifieddatalibrary/types/geo_status/history_count_params.py +23 -0
  656. unifieddatalibrary/types/geo_status/history_list_params.py +31 -0
  657. unifieddatalibrary/types/geo_status_count_params.py +23 -0
  658. unifieddatalibrary/types/geo_status_count_response.py +7 -0
  659. unifieddatalibrary/types/geo_status_create_bulk_params.py +124 -0
  660. unifieddatalibrary/types/geo_status_create_params.py +119 -0
  661. unifieddatalibrary/types/geo_status_get_params.py +15 -0
  662. unifieddatalibrary/types/geo_status_list_params.py +23 -0
  663. unifieddatalibrary/types/geo_status_list_response.py +139 -0
  664. unifieddatalibrary/types/geo_status_tuple_params.py +31 -0
  665. unifieddatalibrary/types/geo_status_tuple_response.py +10 -0
  666. unifieddatalibrary/types/global_atmospheric_model/history_count_params.py +23 -0
  667. unifieddatalibrary/types/global_atmospheric_model/history_query_params.py +31 -0
  668. unifieddatalibrary/types/global_atmospheric_model/history_write_aodr_params.py +51 -0
  669. unifieddatalibrary/types/global_atmospheric_model_count_params.py +23 -0
  670. unifieddatalibrary/types/global_atmospheric_model_count_response.py +7 -0
  671. unifieddatalibrary/types/global_atmospheric_model_get_file_params.py +15 -0
  672. unifieddatalibrary/types/global_atmospheric_model_query_params.py +23 -0
  673. unifieddatalibrary/types/global_atmospheric_model_query_response.py +158 -0
  674. unifieddatalibrary/types/global_atmospheric_model_retrieve_params.py +15 -0
  675. unifieddatalibrary/types/global_atmospheric_model_retrieve_response.py +155 -0
  676. unifieddatalibrary/types/global_atmospheric_model_tuple_params.py +31 -0
  677. unifieddatalibrary/types/global_atmospheric_model_tuple_response.py +158 -0
  678. unifieddatalibrary/types/global_atmospheric_model_unvalidated_publish_params.py +126 -0
  679. unifieddatalibrary/types/gnss_observations/history_count_params.py +4 -0
  680. unifieddatalibrary/types/gnss_observationset/__init__.py +7 -0
  681. unifieddatalibrary/types/gnss_observationset/gnss_observation_set_full.py +287 -0
  682. unifieddatalibrary/types/gnss_observationset/history_aodr_params.py +52 -0
  683. unifieddatalibrary/types/gnss_observationset/history_list_params.py +32 -0
  684. unifieddatalibrary/types/gnss_observationset_count_params.py +24 -0
  685. unifieddatalibrary/types/gnss_observationset_count_response.py +7 -0
  686. unifieddatalibrary/types/gnss_observationset_create_bulk_params.py +273 -0
  687. unifieddatalibrary/types/gnss_observationset_list_params.py +24 -0
  688. unifieddatalibrary/types/gnss_observationset_list_response.py +287 -0
  689. unifieddatalibrary/types/gnss_observationset_tuple_params.py +32 -0
  690. unifieddatalibrary/types/gnss_observationset_tuple_response.py +10 -0
  691. unifieddatalibrary/types/gnss_observationset_unvalidated_publish_params.py +273 -0
  692. unifieddatalibrary/types/gnss_raw_if/history_aodr_params.py +4 -0
  693. unifieddatalibrary/types/gnss_raw_if/history_count_params.py +4 -0
  694. unifieddatalibrary/types/gnss_raw_if/history_query_params.py +4 -0
  695. unifieddatalibrary/types/gnss_raw_if/history_query_response.py +276 -5
  696. unifieddatalibrary/types/gnss_rawif_count_params.py +23 -0
  697. unifieddatalibrary/types/gnss_rawif_count_response.py +7 -0
  698. unifieddatalibrary/types/gnss_rawif_file_get_params.py +15 -0
  699. unifieddatalibrary/types/gnss_rawif_get_params.py +15 -0
  700. unifieddatalibrary/types/gnss_rawif_get_response.py +278 -0
  701. unifieddatalibrary/types/gnss_rawif_list_params.py +23 -0
  702. unifieddatalibrary/types/gnss_rawif_list_response.py +278 -0
  703. unifieddatalibrary/types/gnss_rawif_tuple_params.py +31 -0
  704. unifieddatalibrary/types/gnss_rawif_tuple_response.py +281 -0
  705. unifieddatalibrary/types/gnss_rawif_upload_zip_params.py +14 -0
  706. unifieddatalibrary/types/ground_imagery/history_count_params.py +4 -0
  707. unifieddatalibrary/types/ground_imagery/history_query_params.py +4 -0
  708. unifieddatalibrary/types/ground_imagery/history_query_response.py +175 -5
  709. unifieddatalibrary/types/ground_imagery_count_params.py +20 -0
  710. unifieddatalibrary/types/ground_imagery_count_response.py +7 -0
  711. unifieddatalibrary/types/ground_imagery_create_params.py +143 -0
  712. unifieddatalibrary/types/ground_imagery_get_file_params.py +15 -0
  713. unifieddatalibrary/types/ground_imagery_get_params.py +15 -0
  714. unifieddatalibrary/types/ground_imagery_get_response.py +177 -0
  715. unifieddatalibrary/types/ground_imagery_history_aodr_params.py +4 -0
  716. unifieddatalibrary/types/ground_imagery_list_params.py +20 -0
  717. unifieddatalibrary/types/ground_imagery_list_response.py +144 -0
  718. unifieddatalibrary/types/ground_imagery_tuple_params.py +28 -0
  719. unifieddatalibrary/types/ground_imagery_tuple_response.py +180 -0
  720. unifieddatalibrary/types/h3_geo/history_ador_params.py +51 -0
  721. unifieddatalibrary/types/h3_geo/history_count_params.py +23 -0
  722. unifieddatalibrary/types/h3_geo/history_query_params.py +31 -0
  723. unifieddatalibrary/types/h3_geo_count_params.py +23 -0
  724. unifieddatalibrary/types/h3_geo_count_response.py +7 -0
  725. unifieddatalibrary/types/h3_geo_create_params.py +197 -0
  726. unifieddatalibrary/types/h3_geo_get_params.py +15 -0
  727. unifieddatalibrary/types/h3_geo_get_response.py +241 -0
  728. unifieddatalibrary/types/h3_geo_hex_cell_count_params.py +18 -0
  729. unifieddatalibrary/types/h3_geo_hex_cell_count_response.py +7 -0
  730. unifieddatalibrary/types/h3_geo_hex_cell_list_params.py +18 -0
  731. unifieddatalibrary/types/h3_geo_hex_cell_list_response.py +141 -0
  732. unifieddatalibrary/types/h3_geo_hex_cell_tuple_params.py +26 -0
  733. unifieddatalibrary/types/h3_geo_hex_cell_tuple_response.py +144 -0
  734. unifieddatalibrary/types/h3_geo_list_params.py +23 -0
  735. unifieddatalibrary/types/h3_geo_list_response.py +96 -0
  736. unifieddatalibrary/types/h3_geo_tuple_params.py +31 -0
  737. unifieddatalibrary/types/h3_geo_tuple_response.py +244 -0
  738. unifieddatalibrary/types/hazard/history_aodr_params.py +4 -0
  739. unifieddatalibrary/types/hazard/history_count_params.py +4 -0
  740. unifieddatalibrary/types/hazard/history_query_params.py +4 -0
  741. unifieddatalibrary/types/hazard/history_query_response.py +264 -5
  742. unifieddatalibrary/types/hazard_count_params.py +4 -0
  743. unifieddatalibrary/types/hazard_get_params.py +15 -0
  744. unifieddatalibrary/types/hazard_get_response.py +266 -0
  745. unifieddatalibrary/types/hazard_list_params.py +4 -0
  746. unifieddatalibrary/types/hazard_list_response.py +3 -6
  747. unifieddatalibrary/types/hazard_tuple_params.py +4 -0
  748. unifieddatalibrary/types/hazard_tuple_response.py +264 -5
  749. unifieddatalibrary/types/ion_oobservation_count_params.py +20 -0
  750. unifieddatalibrary/types/ion_oobservation_count_response.py +7 -0
  751. unifieddatalibrary/types/ion_oobservation_create_bulk_params.py +979 -0
  752. unifieddatalibrary/types/ion_oobservation_list_params.py +20 -0
  753. unifieddatalibrary/types/ion_oobservation_list_response.py +1000 -0
  754. unifieddatalibrary/types/ion_oobservation_tuple_params.py +28 -0
  755. unifieddatalibrary/types/ion_oobservation_tuple_response.py +1014 -0
  756. unifieddatalibrary/types/ion_oobservation_unvalidated_publish_params.py +979 -0
  757. unifieddatalibrary/types/iono_observation/history_aodr_params.py +4 -0
  758. unifieddatalibrary/types/iono_observation/history_count_params.py +4 -0
  759. unifieddatalibrary/types/iono_observation/history_list_params.py +4 -0
  760. unifieddatalibrary/types/iono_observation/history_list_response.py +995 -5
  761. unifieddatalibrary/types/ir_count_params.py +15 -0
  762. unifieddatalibrary/types/ir_get_params.py +15 -0
  763. unifieddatalibrary/types/ir_list_params.py +15 -0
  764. unifieddatalibrary/types/ir_list_response.py +4 -7
  765. unifieddatalibrary/types/ir_tuple_params.py +7 -1
  766. unifieddatalibrary/types/isr_collection_count_params.py +4 -0
  767. unifieddatalibrary/types/isr_collection_list_params.py +4 -0
  768. unifieddatalibrary/types/isr_collection_list_response.py +49 -57
  769. unifieddatalibrary/types/isr_collection_tuple_params.py +4 -0
  770. unifieddatalibrary/types/isr_collection_tuple_response.py +609 -5
  771. unifieddatalibrary/types/isr_collections/history_aodr_params.py +4 -0
  772. unifieddatalibrary/types/isr_collections/history_count_params.py +4 -0
  773. unifieddatalibrary/types/isr_collections/history_list_params.py +4 -0
  774. unifieddatalibrary/types/isr_collections/history_list_response.py +601 -5
  775. unifieddatalibrary/types/item_count_params.py +15 -0
  776. unifieddatalibrary/types/item_get_params.py +15 -0
  777. unifieddatalibrary/types/item_list_params.py +15 -0
  778. unifieddatalibrary/types/item_list_response.py +3 -6
  779. unifieddatalibrary/types/item_tracking_count_params.py +4 -0
  780. unifieddatalibrary/types/item_tracking_get_params.py +15 -0
  781. unifieddatalibrary/types/item_tracking_get_response.py +130 -0
  782. unifieddatalibrary/types/item_tracking_list_params.py +4 -0
  783. unifieddatalibrary/types/item_tracking_list_response.py +3 -6
  784. unifieddatalibrary/types/item_tracking_tuple_params.py +4 -0
  785. unifieddatalibrary/types/item_tracking_tuple_response.py +128 -5
  786. unifieddatalibrary/types/item_trackings/history_count_params.py +4 -0
  787. unifieddatalibrary/types/item_trackings/history_list_params.py +4 -0
  788. unifieddatalibrary/types/item_trackings/history_list_response.py +124 -4
  789. unifieddatalibrary/types/item_tuple_params.py +7 -1
  790. unifieddatalibrary/types/launch_detection_count_params.py +15 -0
  791. unifieddatalibrary/types/launch_detection_count_response.py +7 -0
  792. unifieddatalibrary/types/launch_detection_create_params.py +116 -0
  793. unifieddatalibrary/types/launch_detection_get_params.py +15 -0
  794. unifieddatalibrary/types/launch_detection_get_response.py +140 -0
  795. unifieddatalibrary/types/launch_detection_list_params.py +15 -0
  796. unifieddatalibrary/types/launch_detection_list_response.py +131 -0
  797. unifieddatalibrary/types/launch_detection_tuple_params.py +23 -0
  798. unifieddatalibrary/types/launch_detection_tuple_response.py +143 -0
  799. unifieddatalibrary/types/launch_detection_update_params.py +116 -0
  800. unifieddatalibrary/types/launch_event/history_aodr_params.py +4 -0
  801. unifieddatalibrary/types/launch_event/history_count_params.py +4 -0
  802. unifieddatalibrary/types/launch_event/history_list_params.py +4 -0
  803. unifieddatalibrary/types/launch_event/history_list_response.py +6 -9
  804. unifieddatalibrary/types/launch_event_count_params.py +23 -0
  805. unifieddatalibrary/types/launch_event_count_response.py +7 -0
  806. unifieddatalibrary/types/launch_event_create_bulk_params.py +87 -0
  807. unifieddatalibrary/types/launch_event_create_params.py +83 -0
  808. unifieddatalibrary/types/launch_event_get_params.py +15 -0
  809. unifieddatalibrary/types/launch_event_get_response.py +105 -0
  810. unifieddatalibrary/types/launch_event_list_params.py +23 -0
  811. unifieddatalibrary/types/launch_event_list_response.py +101 -0
  812. unifieddatalibrary/types/launch_event_tuple_params.py +31 -0
  813. unifieddatalibrary/types/launch_event_tuple_response.py +108 -0
  814. unifieddatalibrary/types/launch_site_count_params.py +15 -0
  815. unifieddatalibrary/types/launch_site_count_response.py +7 -0
  816. unifieddatalibrary/types/launch_site_create_params.py +60 -0
  817. unifieddatalibrary/types/launch_site_detail_create_params.py +79 -0
  818. unifieddatalibrary/types/launch_site_detail_find_by_source_params.py +18 -0
  819. unifieddatalibrary/types/launch_site_detail_find_by_source_response.py +180 -0
  820. unifieddatalibrary/types/launch_site_detail_get_params.py +15 -0
  821. unifieddatalibrary/types/launch_site_detail_get_response.py +113 -0
  822. unifieddatalibrary/types/launch_site_detail_list_params.py +15 -0
  823. unifieddatalibrary/types/launch_site_detail_list_response.py +173 -0
  824. unifieddatalibrary/types/launch_site_detail_update_params.py +79 -0
  825. unifieddatalibrary/types/launch_site_get_params.py +15 -0
  826. unifieddatalibrary/types/launch_site_get_response.py +195 -0
  827. unifieddatalibrary/types/launch_site_list_params.py +15 -0
  828. unifieddatalibrary/types/launch_site_list_response.py +77 -0
  829. unifieddatalibrary/types/launch_site_tuple_params.py +23 -0
  830. unifieddatalibrary/types/launch_site_tuple_response.py +200 -0
  831. unifieddatalibrary/types/launch_site_update_params.py +60 -0
  832. unifieddatalibrary/types/launch_vehicle_count_params.py +15 -0
  833. unifieddatalibrary/types/launch_vehicle_count_response.py +7 -0
  834. unifieddatalibrary/types/launch_vehicle_create_params.py +51 -0
  835. unifieddatalibrary/types/launch_vehicle_detail_create_params.py +197 -0
  836. unifieddatalibrary/types/launch_vehicle_detail_get_params.py +15 -0
  837. unifieddatalibrary/types/launch_vehicle_detail_get_response.py +239 -0
  838. unifieddatalibrary/types/launch_vehicle_detail_list_params.py +15 -0
  839. unifieddatalibrary/types/launch_vehicle_detail_list_response.py +212 -0
  840. unifieddatalibrary/types/launch_vehicle_detail_update_params.py +197 -0
  841. unifieddatalibrary/types/launch_vehicle_get_params.py +15 -0
  842. unifieddatalibrary/types/launch_vehicle_get_response.py +490 -0
  843. unifieddatalibrary/types/launch_vehicle_list_params.py +15 -0
  844. unifieddatalibrary/types/launch_vehicle_list_response.py +68 -0
  845. unifieddatalibrary/types/launch_vehicle_tuple_params.py +23 -0
  846. unifieddatalibrary/types/launch_vehicle_tuple_response.py +500 -0
  847. unifieddatalibrary/types/launch_vehicle_update_params.py +51 -0
  848. unifieddatalibrary/types/link_status/datalink_count_params.py +4 -0
  849. unifieddatalibrary/types/link_status/datalink_list_params.py +4 -0
  850. unifieddatalibrary/types/link_status/datalink_list_response.py +26 -30
  851. unifieddatalibrary/types/link_status/datalink_tuple_params.py +4 -0
  852. unifieddatalibrary/types/link_status/history_aodr_params.py +4 -0
  853. unifieddatalibrary/types/link_status/history_count_params.py +4 -0
  854. unifieddatalibrary/types/link_status/history_list_params.py +4 -0
  855. unifieddatalibrary/types/link_status/history_list_response.py +160 -4
  856. unifieddatalibrary/types/link_status_count_params.py +4 -0
  857. unifieddatalibrary/types/link_status_get_params.py +15 -0
  858. unifieddatalibrary/types/link_status_get_response.py +166 -0
  859. unifieddatalibrary/types/link_status_list_params.py +4 -0
  860. unifieddatalibrary/types/link_status_list_response.py +4 -7
  861. unifieddatalibrary/types/link_status_tuple_params.py +4 -0
  862. unifieddatalibrary/types/link_status_tuple_response.py +164 -5
  863. unifieddatalibrary/types/location_count_params.py +15 -0
  864. unifieddatalibrary/types/location_get_params.py +15 -0
  865. unifieddatalibrary/types/location_list_params.py +15 -0
  866. unifieddatalibrary/types/location_list_response.py +4 -7
  867. unifieddatalibrary/types/location_tuple_params.py +7 -1
  868. unifieddatalibrary/types/logistics_support/history_aodr_params.py +43 -0
  869. unifieddatalibrary/types/logistics_support/history_count_params.py +15 -0
  870. unifieddatalibrary/types/logistics_support/history_list_params.py +23 -0
  871. unifieddatalibrary/types/logistics_support/history_list_response.py +608 -0
  872. unifieddatalibrary/types/logistics_support_count_params.py +15 -0
  873. unifieddatalibrary/types/logistics_support_count_response.py +7 -0
  874. unifieddatalibrary/types/logistics_support_create_bulk_params.py +637 -0
  875. unifieddatalibrary/types/logistics_support_create_params.py +630 -0
  876. unifieddatalibrary/types/logistics_support_get_params.py +15 -0
  877. unifieddatalibrary/types/logistics_support_get_response.py +608 -0
  878. unifieddatalibrary/types/logistics_support_list_params.py +15 -0
  879. unifieddatalibrary/types/logistics_support_list_response.py +654 -0
  880. unifieddatalibrary/types/logistics_support_tuple_params.py +23 -0
  881. unifieddatalibrary/types/logistics_support_tuple_response.py +614 -0
  882. unifieddatalibrary/types/logistics_support_unvalidated_publish_params.py +637 -0
  883. unifieddatalibrary/types/logistics_support_update_params.py +630 -0
  884. unifieddatalibrary/types/maneuver_count_params.py +4 -0
  885. unifieddatalibrary/types/maneuver_get_params.py +15 -0
  886. unifieddatalibrary/types/maneuver_get_response.py +2445 -0
  887. unifieddatalibrary/types/maneuver_list_params.py +4 -0
  888. unifieddatalibrary/types/maneuver_list_response.py +11 -25
  889. unifieddatalibrary/types/maneuver_tuple_params.py +4 -0
  890. unifieddatalibrary/types/maneuver_tuple_response.py +2456 -5
  891. unifieddatalibrary/types/maneuvers/history_aodr_params.py +4 -0
  892. unifieddatalibrary/types/maneuvers/history_count_params.py +4 -0
  893. unifieddatalibrary/types/maneuvers/history_list_params.py +4 -0
  894. unifieddatalibrary/types/maneuvers/history_list_response.py +2440 -5
  895. unifieddatalibrary/types/manifold_count_params.py +15 -0
  896. unifieddatalibrary/types/manifold_get_params.py +15 -0
  897. unifieddatalibrary/types/manifold_list_params.py +15 -0
  898. unifieddatalibrary/types/manifold_list_response.py +4 -7
  899. unifieddatalibrary/types/manifold_tuple_params.py +7 -1
  900. unifieddatalibrary/types/manifoldelset_count_params.py +4 -0
  901. unifieddatalibrary/types/manifoldelset_get_params.py +15 -0
  902. unifieddatalibrary/types/manifoldelset_list_params.py +4 -0
  903. unifieddatalibrary/types/manifoldelset_list_response.py +4 -7
  904. unifieddatalibrary/types/manifoldelset_tuple_params.py +4 -0
  905. unifieddatalibrary/types/missile_track_count_params.py +4 -0
  906. unifieddatalibrary/types/missile_track_list_params.py +4 -0
  907. unifieddatalibrary/types/missile_track_list_response.py +5 -8
  908. unifieddatalibrary/types/missile_track_tuple_params.py +4 -0
  909. unifieddatalibrary/types/missile_track_tuple_response.py +593 -5
  910. unifieddatalibrary/types/missile_tracks/history_aodr_params.py +4 -0
  911. unifieddatalibrary/types/missile_tracks/history_count_params.py +4 -0
  912. unifieddatalibrary/types/missile_tracks/history_query_params.py +4 -0
  913. unifieddatalibrary/types/missile_tracks/history_query_response.py +593 -5
  914. unifieddatalibrary/types/mission_assignment/history_aodr_params.py +51 -0
  915. unifieddatalibrary/types/mission_assignment/history_count_params.py +23 -0
  916. unifieddatalibrary/types/mission_assignment/history_query_params.py +31 -0
  917. unifieddatalibrary/types/mission_assignment/history_query_response.py +254 -0
  918. unifieddatalibrary/types/mission_assignment_count_params.py +23 -0
  919. unifieddatalibrary/types/mission_assignment_count_response.py +7 -0
  920. unifieddatalibrary/types/mission_assignment_create_bulk_params.py +231 -0
  921. unifieddatalibrary/types/mission_assignment_create_params.py +227 -0
  922. unifieddatalibrary/types/mission_assignment_get_params.py +15 -0
  923. unifieddatalibrary/types/mission_assignment_get_response.py +251 -0
  924. unifieddatalibrary/types/mission_assignment_list_params.py +23 -0
  925. unifieddatalibrary/types/mission_assignment_list_response.py +242 -0
  926. unifieddatalibrary/types/mission_assignment_tuple_params.py +31 -0
  927. unifieddatalibrary/types/mission_assignment_tuple_response.py +254 -0
  928. unifieddatalibrary/types/mission_assignment_update_params.py +227 -0
  929. unifieddatalibrary/types/mti/__init__.py +9 -0
  930. unifieddatalibrary/types/mti/history_aodr_params.py +48 -0
  931. unifieddatalibrary/types/mti/history_count_params.py +20 -0
  932. unifieddatalibrary/types/mti/history_list_params.py +28 -0
  933. unifieddatalibrary/types/mti/mti_full.py +921 -0
  934. unifieddatalibrary/types/mti_count_params.py +4 -0
  935. unifieddatalibrary/types/mti_list_params.py +4 -0
  936. unifieddatalibrary/types/mti_list_response.py +29 -33
  937. unifieddatalibrary/types/mti_tuple_params.py +4 -0
  938. unifieddatalibrary/types/mti_tuple_response.py +1 -1
  939. unifieddatalibrary/types/navigation_count_params.py +15 -0
  940. unifieddatalibrary/types/navigation_get_params.py +15 -0
  941. unifieddatalibrary/types/navigation_list_params.py +15 -0
  942. unifieddatalibrary/types/navigation_list_response.py +4 -7
  943. unifieddatalibrary/types/navigation_tuple_params.py +7 -1
  944. unifieddatalibrary/types/navigational_obstruction_count_params.py +29 -0
  945. unifieddatalibrary/types/navigational_obstruction_count_response.py +7 -0
  946. unifieddatalibrary/types/navigational_obstruction_create_bulk_params.py +387 -0
  947. unifieddatalibrary/types/navigational_obstruction_create_params.py +383 -0
  948. unifieddatalibrary/types/navigational_obstruction_get_params.py +15 -0
  949. unifieddatalibrary/types/navigational_obstruction_get_response.py +421 -0
  950. unifieddatalibrary/types/navigational_obstruction_list_params.py +29 -0
  951. unifieddatalibrary/types/navigational_obstruction_list_response.py +412 -0
  952. unifieddatalibrary/types/navigational_obstruction_tuple_params.py +37 -0
  953. unifieddatalibrary/types/navigational_obstruction_tuple_response.py +424 -0
  954. unifieddatalibrary/types/navigational_obstruction_update_params.py +383 -0
  955. unifieddatalibrary/types/notification/__init__.py +9 -0
  956. unifieddatalibrary/types/notification/history_aodr_params.py +48 -0
  957. unifieddatalibrary/types/notification/history_count_params.py +20 -0
  958. unifieddatalibrary/types/notification/history_list_params.py +28 -0
  959. unifieddatalibrary/types/notification/notification_full.py +84 -0
  960. unifieddatalibrary/types/notification_count_params.py +4 -0
  961. unifieddatalibrary/types/notification_get_params.py +15 -0
  962. unifieddatalibrary/types/notification_list_params.py +4 -0
  963. unifieddatalibrary/types/notification_list_response.py +3 -6
  964. unifieddatalibrary/types/notification_tuple_params.py +4 -0
  965. unifieddatalibrary/types/notification_tuple_response.py +1 -1
  966. unifieddatalibrary/types/object_of_interest_count_params.py +15 -0
  967. unifieddatalibrary/types/object_of_interest_count_response.py +7 -0
  968. unifieddatalibrary/types/object_of_interest_create_params.py +234 -0
  969. unifieddatalibrary/types/object_of_interest_get_params.py +15 -0
  970. unifieddatalibrary/types/object_of_interest_get_response.py +346 -0
  971. unifieddatalibrary/types/object_of_interest_list_params.py +15 -0
  972. unifieddatalibrary/types/object_of_interest_list_response.py +239 -0
  973. unifieddatalibrary/types/object_of_interest_tuple_params.py +23 -0
  974. unifieddatalibrary/types/object_of_interest_tuple_response.py +353 -0
  975. unifieddatalibrary/types/object_of_interest_update_params.py +234 -0
  976. unifieddatalibrary/types/observations/__init__.py +77 -1
  977. unifieddatalibrary/types/observations/ecpsdr.py +2 -2
  978. unifieddatalibrary/types/observations/ecpsdr_count_params.py +4 -0
  979. unifieddatalibrary/types/observations/ecpsdr_list_params.py +4 -0
  980. unifieddatalibrary/types/observations/ecpsdr_retrieve_params.py +15 -0
  981. unifieddatalibrary/types/observations/ecpsdr_tuple_params.py +4 -0
  982. unifieddatalibrary/types/observations/eo_observation_abridged.py +540 -0
  983. unifieddatalibrary/types/observations/eo_observation_count_params.py +24 -0
  984. unifieddatalibrary/types/observations/eo_observation_create_bulk_params.py +990 -0
  985. unifieddatalibrary/types/observations/eo_observation_create_params.py +983 -0
  986. unifieddatalibrary/types/observations/eo_observation_list_params.py +24 -0
  987. unifieddatalibrary/types/observations/eo_observation_retrieve_params.py +15 -0
  988. unifieddatalibrary/types/observations/eo_observation_tuple_params.py +32 -0
  989. unifieddatalibrary/types/observations/eo_observation_tuple_response.py +10 -0
  990. unifieddatalibrary/types/observations/eo_observation_unvalidated_publish_params.py +987 -0
  991. unifieddatalibrary/types/observations/eo_observations/__init__.py +9 -0
  992. unifieddatalibrary/types/observations/eo_observations/eo_observation_full.py +1029 -0
  993. unifieddatalibrary/types/observations/eo_observations/history_aodr_params.py +52 -0
  994. unifieddatalibrary/types/observations/eo_observations/history_count_params.py +24 -0
  995. unifieddatalibrary/types/observations/eo_observations/history_list_params.py +32 -0
  996. unifieddatalibrary/types/observations/monoradar/history_aodr_params.py +4 -0
  997. unifieddatalibrary/types/observations/monoradar/history_count_params.py +4 -0
  998. unifieddatalibrary/types/observations/monoradar/history_query_params.py +4 -0
  999. unifieddatalibrary/types/observations/monoradar/history_query_response.py +291 -5
  1000. unifieddatalibrary/types/observations/monoradar_count_params.py +23 -0
  1001. unifieddatalibrary/types/observations/monoradar_create_bulk_params.py +285 -0
  1002. unifieddatalibrary/types/observations/monoradar_list_params.py +23 -0
  1003. unifieddatalibrary/types/observations/monoradar_list_response.py +293 -0
  1004. unifieddatalibrary/types/observations/monoradar_tuple_params.py +31 -0
  1005. unifieddatalibrary/types/observations/monoradar_tuple_response.py +296 -0
  1006. unifieddatalibrary/types/observations/passive_radar_observation/history_aodr_params.py +51 -0
  1007. unifieddatalibrary/types/observations/passive_radar_observation/history_count_params.py +23 -0
  1008. unifieddatalibrary/types/observations/passive_radar_observation/history_list_params.py +31 -0
  1009. unifieddatalibrary/types/observations/passive_radar_observation/history_list_response.py +339 -0
  1010. unifieddatalibrary/types/observations/passive_radar_observation_count_params.py +23 -0
  1011. unifieddatalibrary/types/observations/passive_radar_observation_count_response.py +7 -0
  1012. unifieddatalibrary/types/observations/passive_radar_observation_create_bulk_params.py +303 -0
  1013. unifieddatalibrary/types/observations/passive_radar_observation_create_params.py +299 -0
  1014. unifieddatalibrary/types/observations/passive_radar_observation_file_create_params.py +303 -0
  1015. unifieddatalibrary/types/observations/passive_radar_observation_get_params.py +15 -0
  1016. unifieddatalibrary/types/observations/passive_radar_observation_get_response.py +339 -0
  1017. unifieddatalibrary/types/observations/passive_radar_observation_list_params.py +23 -0
  1018. unifieddatalibrary/types/observations/passive_radar_observation_list_response.py +326 -0
  1019. unifieddatalibrary/types/observations/passive_radar_observation_tuple_params.py +31 -0
  1020. unifieddatalibrary/types/observations/passive_radar_observation_tuple_response.py +342 -0
  1021. unifieddatalibrary/types/observations/radarobservation/history_aodr_params.py +4 -0
  1022. unifieddatalibrary/types/observations/radarobservation/history_count_params.py +4 -0
  1023. unifieddatalibrary/types/observations/radarobservation/history_list_params.py +4 -0
  1024. unifieddatalibrary/types/observations/radarobservation/history_list_response.py +355 -4
  1025. unifieddatalibrary/types/observations/radarobservation_count_params.py +23 -0
  1026. unifieddatalibrary/types/observations/radarobservation_create_bulk_params.py +330 -0
  1027. unifieddatalibrary/types/observations/radarobservation_create_params.py +326 -0
  1028. unifieddatalibrary/types/observations/radarobservation_get_params.py +15 -0
  1029. unifieddatalibrary/types/observations/radarobservation_get_response.py +361 -0
  1030. unifieddatalibrary/types/observations/radarobservation_list_params.py +23 -0
  1031. unifieddatalibrary/types/observations/radarobservation_list_response.py +348 -0
  1032. unifieddatalibrary/types/observations/radarobservation_tuple_params.py +31 -0
  1033. unifieddatalibrary/types/observations/radarobservation_tuple_response.py +364 -0
  1034. unifieddatalibrary/types/observations/radarobservation_unvalidated_publish_params.py +330 -0
  1035. unifieddatalibrary/types/observations/rf_observation/__init__.py +9 -0
  1036. unifieddatalibrary/types/observations/rf_observation/history_aodr_params.py +51 -0
  1037. unifieddatalibrary/types/observations/rf_observation/history_count_params.py +23 -0
  1038. unifieddatalibrary/types/observations/rf_observation/history_list_params.py +31 -0
  1039. unifieddatalibrary/types/observations/rf_observation/history_list_response.py +455 -0
  1040. unifieddatalibrary/types/observations/rf_observation_count_params.py +23 -0
  1041. unifieddatalibrary/types/observations/rf_observation_count_response.py +7 -0
  1042. unifieddatalibrary/types/observations/rf_observation_create_bulk_params.py +430 -0
  1043. unifieddatalibrary/types/observations/rf_observation_create_params.py +426 -0
  1044. unifieddatalibrary/types/observations/rf_observation_get_params.py +15 -0
  1045. unifieddatalibrary/types/observations/rf_observation_get_response.py +455 -0
  1046. unifieddatalibrary/types/observations/rf_observation_list_params.py +23 -0
  1047. unifieddatalibrary/types/observations/rf_observation_list_response.py +379 -0
  1048. unifieddatalibrary/types/observations/rf_observation_tuple_params.py +31 -0
  1049. unifieddatalibrary/types/observations/rf_observation_tuple_response.py +395 -0
  1050. unifieddatalibrary/types/observations/rf_observation_unvalidated_publish_params.py +430 -0
  1051. unifieddatalibrary/types/onboardnavigation/__init__.py +9 -0
  1052. unifieddatalibrary/types/onboardnavigation/history_aodr_params.py +51 -0
  1053. unifieddatalibrary/types/onboardnavigation/history_count_params.py +23 -0
  1054. unifieddatalibrary/types/onboardnavigation/history_list_params.py +31 -0
  1055. unifieddatalibrary/types/onboardnavigation/onboardnavigation_full.py +143 -0
  1056. unifieddatalibrary/types/onboardnavigation_count_params.py +4 -0
  1057. unifieddatalibrary/types/onboardnavigation_list_params.py +4 -0
  1058. unifieddatalibrary/types/onboardnavigation_list_response.py +3 -6
  1059. unifieddatalibrary/types/onboardnavigation_tuple_params.py +4 -0
  1060. unifieddatalibrary/types/onboardnavigation_tuple_response.py +1 -1
  1061. unifieddatalibrary/types/onorbit/__init__.py +2 -1
  1062. unifieddatalibrary/types/onorbit/antenna_detail_list_params.py +15 -0
  1063. unifieddatalibrary/types/onorbit/antenna_detail_retrieve_params.py +15 -0
  1064. unifieddatalibrary/types/onorbit_count_params.py +15 -0
  1065. unifieddatalibrary/types/onorbit_get_params.py +15 -0
  1066. unifieddatalibrary/types/onorbit_get_signature_params.py +4 -0
  1067. unifieddatalibrary/types/onorbit_get_signature_response.py +1 -1
  1068. unifieddatalibrary/types/onorbit_list_params.py +15 -0
  1069. unifieddatalibrary/types/onorbit_list_response.py +4 -7
  1070. unifieddatalibrary/types/onorbit_tuple_params.py +7 -1
  1071. unifieddatalibrary/types/onorbit_tuple_response.py +2 -2
  1072. unifieddatalibrary/types/onorbitantenna_get_params.py +15 -0
  1073. unifieddatalibrary/types/onorbitantenna_list_params.py +15 -0
  1074. unifieddatalibrary/types/onorbitantenna_list_response.py +4 -7
  1075. unifieddatalibrary/types/onorbitbattery_get_params.py +15 -0
  1076. unifieddatalibrary/types/onorbitbattery_list_params.py +15 -0
  1077. unifieddatalibrary/types/onorbitbattery_list_response.py +4 -7
  1078. unifieddatalibrary/types/onorbitdetail_get_params.py +15 -0
  1079. unifieddatalibrary/types/onorbitdetail_list_params.py +15 -0
  1080. unifieddatalibrary/types/onorbitdetail_list_response.py +3 -6
  1081. unifieddatalibrary/types/onorbitevent_count_params.py +15 -0
  1082. unifieddatalibrary/types/onorbitevent_get_params.py +15 -0
  1083. unifieddatalibrary/types/onorbitevent_get_response.py +2 -2
  1084. unifieddatalibrary/types/onorbitevent_list_params.py +15 -0
  1085. unifieddatalibrary/types/onorbitevent_list_response.py +4 -7
  1086. unifieddatalibrary/types/onorbitevent_tuple_params.py +7 -1
  1087. unifieddatalibrary/types/onorbitevent_tuple_response.py +2 -2
  1088. unifieddatalibrary/types/onorbitlist_count_params.py +15 -0
  1089. unifieddatalibrary/types/onorbitlist_get_params.py +15 -0
  1090. unifieddatalibrary/types/onorbitlist_list_params.py +15 -0
  1091. unifieddatalibrary/types/onorbitlist_list_response.py +3 -6
  1092. unifieddatalibrary/types/onorbitlist_tuple_params.py +7 -1
  1093. unifieddatalibrary/types/onorbitsolararray_get_params.py +15 -0
  1094. unifieddatalibrary/types/onorbitsolararray_list_params.py +15 -0
  1095. unifieddatalibrary/types/onorbitsolararray_list_response.py +6 -13
  1096. unifieddatalibrary/types/onorbitthruster_get_params.py +15 -0
  1097. unifieddatalibrary/types/onorbitthruster_list_params.py +15 -0
  1098. unifieddatalibrary/types/onorbitthruster_list_response.py +4 -7
  1099. unifieddatalibrary/types/onorbitthrusterstatus/__init__.py +2 -0
  1100. unifieddatalibrary/types/onorbitthrusterstatus/history_count_params.py +4 -0
  1101. unifieddatalibrary/types/onorbitthrusterstatus/history_list_params.py +41 -0
  1102. unifieddatalibrary/types/onorbitthrusterstatus/onorbitthrusterstatus_full.py +122 -0
  1103. unifieddatalibrary/types/onorbitthrusterstatus_count_params.py +4 -0
  1104. unifieddatalibrary/types/onorbitthrusterstatus_get_params.py +15 -0
  1105. unifieddatalibrary/types/onorbitthrusterstatus_list_params.py +4 -0
  1106. unifieddatalibrary/types/onorbitthrusterstatus_list_response.py +4 -7
  1107. unifieddatalibrary/types/onorbitthrusterstatus_tuple_params.py +4 -0
  1108. unifieddatalibrary/types/onorbitthrusterstatus_tuple_response.py +1 -1
  1109. unifieddatalibrary/types/operatingunit_count_params.py +15 -0
  1110. unifieddatalibrary/types/operatingunit_get_params.py +15 -0
  1111. unifieddatalibrary/types/operatingunit_list_params.py +15 -0
  1112. unifieddatalibrary/types/operatingunit_list_response.py +4 -7
  1113. unifieddatalibrary/types/operatingunit_tuple_params.py +7 -1
  1114. unifieddatalibrary/types/operatingunitremark_count_params.py +15 -0
  1115. unifieddatalibrary/types/operatingunitremark_get_params.py +15 -0
  1116. unifieddatalibrary/types/operatingunitremark_list_params.py +15 -0
  1117. unifieddatalibrary/types/operatingunitremark_list_response.py +4 -7
  1118. unifieddatalibrary/types/operatingunitremark_tuple_params.py +7 -1
  1119. unifieddatalibrary/types/orbitdetermination/history_aodr_params.py +4 -0
  1120. unifieddatalibrary/types/orbitdetermination/history_count_params.py +4 -0
  1121. unifieddatalibrary/types/orbitdetermination/history_list_params.py +4 -0
  1122. unifieddatalibrary/types/orbitdetermination/history_list_response.py +1231 -5
  1123. unifieddatalibrary/types/orbitdetermination_count_params.py +4 -0
  1124. unifieddatalibrary/types/orbitdetermination_get_params.py +15 -0
  1125. unifieddatalibrary/types/orbitdetermination_get_response.py +1236 -0
  1126. unifieddatalibrary/types/orbitdetermination_list_params.py +4 -0
  1127. unifieddatalibrary/types/orbitdetermination_list_response.py +7 -19
  1128. unifieddatalibrary/types/orbitdetermination_tuple_params.py +4 -0
  1129. unifieddatalibrary/types/orbitdetermination_tuple_response.py +1243 -5
  1130. unifieddatalibrary/types/orbittrack/history_aodr_params.py +4 -0
  1131. unifieddatalibrary/types/orbittrack/history_count_params.py +4 -0
  1132. unifieddatalibrary/types/orbittrack/history_list_params.py +4 -0
  1133. unifieddatalibrary/types/orbittrack/history_list_response.py +348 -5
  1134. unifieddatalibrary/types/orbittrack_count_params.py +4 -0
  1135. unifieddatalibrary/types/orbittrack_list_params.py +4 -0
  1136. unifieddatalibrary/types/orbittrack_list_response.py +5 -8
  1137. unifieddatalibrary/types/orbittrack_tuple_params.py +4 -0
  1138. unifieddatalibrary/types/orbittrack_tuple_response.py +353 -5
  1139. unifieddatalibrary/types/organization_count_params.py +15 -0
  1140. unifieddatalibrary/types/organization_get_organization_categories_params.py +15 -0
  1141. unifieddatalibrary/types/organization_get_organization_types_params.py +15 -0
  1142. unifieddatalibrary/types/organization_get_params.py +15 -0
  1143. unifieddatalibrary/types/organization_list_params.py +15 -0
  1144. unifieddatalibrary/types/organization_list_response.py +4 -7
  1145. unifieddatalibrary/types/organization_tuple_params.py +7 -1
  1146. unifieddatalibrary/types/organizationdetail_find_by_source_params.py +7 -1
  1147. unifieddatalibrary/types/organizationdetail_get_params.py +15 -0
  1148. unifieddatalibrary/types/organizationdetail_list_params.py +7 -1
  1149. unifieddatalibrary/types/organizationdetail_list_response.py +4 -7
  1150. unifieddatalibrary/types/personnelrecovery/__init__.py +0 -1
  1151. unifieddatalibrary/types/personnelrecovery/history_count_params.py +4 -0
  1152. unifieddatalibrary/types/personnelrecovery/history_list_params.py +4 -0
  1153. unifieddatalibrary/types/personnelrecovery_count_params.py +4 -0
  1154. unifieddatalibrary/types/personnelrecovery_get_params.py +15 -0
  1155. unifieddatalibrary/types/personnelrecovery_list_params.py +4 -0
  1156. unifieddatalibrary/types/personnelrecovery_list_response.py +17 -31
  1157. unifieddatalibrary/types/personnelrecovery_tuple_params.py +4 -0
  1158. unifieddatalibrary/types/poi_count_params.py +4 -0
  1159. unifieddatalibrary/types/poi_get_params.py +15 -0
  1160. unifieddatalibrary/types/poi_get_response.py +281 -0
  1161. unifieddatalibrary/types/poi_list_params.py +4 -0
  1162. unifieddatalibrary/types/poi_list_response.py +3 -6
  1163. unifieddatalibrary/types/poi_tuple_params.py +4 -0
  1164. unifieddatalibrary/types/poi_tuple_response.py +279 -5
  1165. unifieddatalibrary/types/port_count_params.py +15 -0
  1166. unifieddatalibrary/types/port_get_params.py +15 -0
  1167. unifieddatalibrary/types/port_list_params.py +15 -0
  1168. unifieddatalibrary/types/port_list_response.py +4 -7
  1169. unifieddatalibrary/types/port_tuple_params.py +7 -1
  1170. unifieddatalibrary/types/report_and_activity/__init__.py +1 -0
  1171. unifieddatalibrary/types/report_and_activity/poi/history_aodr_params.py +4 -0
  1172. unifieddatalibrary/types/report_and_activity/poi/history_count_params.py +4 -0
  1173. unifieddatalibrary/types/report_and_activity/poi/history_list_params.py +4 -0
  1174. unifieddatalibrary/types/report_and_activity/poi/history_list_response.py +275 -4
  1175. unifieddatalibrary/types/report_and_activity/udl_sigact_file_get_params.py +15 -0
  1176. unifieddatalibrary/types/rf_band_count_params.py +15 -0
  1177. unifieddatalibrary/types/rf_band_count_response.py +7 -0
  1178. unifieddatalibrary/types/rf_band_create_params.py +124 -0
  1179. unifieddatalibrary/types/rf_band_get_params.py +15 -0
  1180. unifieddatalibrary/types/rf_band_get_response.py +150 -0
  1181. unifieddatalibrary/types/rf_band_list_params.py +15 -0
  1182. unifieddatalibrary/types/rf_band_list_response.py +141 -0
  1183. unifieddatalibrary/types/rf_band_tuple_params.py +23 -0
  1184. unifieddatalibrary/types/rf_band_tuple_response.py +153 -0
  1185. unifieddatalibrary/types/rf_band_type_count_params.py +15 -0
  1186. unifieddatalibrary/types/rf_band_type_count_response.py +7 -0
  1187. unifieddatalibrary/types/rf_band_type_create_params.py +54 -0
  1188. unifieddatalibrary/types/rf_band_type_get_params.py +15 -0
  1189. unifieddatalibrary/types/rf_band_type_get_response.py +74 -0
  1190. unifieddatalibrary/types/rf_band_type_list_params.py +15 -0
  1191. unifieddatalibrary/types/rf_band_type_list_response.py +65 -0
  1192. unifieddatalibrary/types/rf_band_type_tuple_params.py +23 -0
  1193. unifieddatalibrary/types/rf_band_type_tuple_response.py +77 -0
  1194. unifieddatalibrary/types/rf_band_type_update_params.py +54 -0
  1195. unifieddatalibrary/types/rf_band_update_params.py +124 -0
  1196. unifieddatalibrary/types/rf_emitter_count_params.py +15 -0
  1197. unifieddatalibrary/types/rf_emitter_count_response.py +7 -0
  1198. unifieddatalibrary/types/rf_emitter_create_params.py +62 -0
  1199. unifieddatalibrary/types/rf_emitter_detail_count_params.py +15 -0
  1200. unifieddatalibrary/types/rf_emitter_detail_count_response.py +7 -0
  1201. unifieddatalibrary/types/rf_emitter_detail_create_params.py +141 -0
  1202. unifieddatalibrary/types/rf_emitter_detail_get_params.py +15 -0
  1203. unifieddatalibrary/types/rf_emitter_detail_get_response.py +182 -0
  1204. unifieddatalibrary/types/rf_emitter_detail_list_params.py +15 -0
  1205. unifieddatalibrary/types/rf_emitter_detail_list_response.py +157 -0
  1206. unifieddatalibrary/types/rf_emitter_detail_tuple_params.py +23 -0
  1207. unifieddatalibrary/types/rf_emitter_detail_tuple_response.py +185 -0
  1208. unifieddatalibrary/types/rf_emitter_detail_update_params.py +141 -0
  1209. unifieddatalibrary/types/rf_emitter_get_params.py +15 -0
  1210. unifieddatalibrary/types/rf_emitter_get_response.py +262 -0
  1211. unifieddatalibrary/types/rf_emitter_list_params.py +15 -0
  1212. unifieddatalibrary/types/rf_emitter_list_response.py +71 -0
  1213. unifieddatalibrary/types/rf_emitter_tuple_params.py +23 -0
  1214. unifieddatalibrary/types/rf_emitter_tuple_response.py +267 -0
  1215. unifieddatalibrary/types/rf_emitter_update_params.py +62 -0
  1216. unifieddatalibrary/types/route_stat_count_params.py +15 -0
  1217. unifieddatalibrary/types/route_stat_count_response.py +7 -0
  1218. unifieddatalibrary/types/route_stat_create_bulk_params.py +168 -0
  1219. unifieddatalibrary/types/route_stat_create_params.py +164 -0
  1220. unifieddatalibrary/types/route_stat_query_params.py +15 -0
  1221. unifieddatalibrary/types/route_stat_query_response.py +189 -0
  1222. unifieddatalibrary/types/route_stat_retrieve_params.py +15 -0
  1223. unifieddatalibrary/types/route_stat_retrieve_response.py +195 -0
  1224. unifieddatalibrary/types/route_stat_tuple_params.py +23 -0
  1225. unifieddatalibrary/types/route_stat_tuple_response.py +198 -0
  1226. unifieddatalibrary/types/route_stat_unvalidated_publish_params.py +168 -0
  1227. unifieddatalibrary/types/route_stat_update_params.py +164 -0
  1228. unifieddatalibrary/types/sar_observation/history_aodr_params.py +51 -0
  1229. unifieddatalibrary/types/sar_observation/history_count_params.py +23 -0
  1230. unifieddatalibrary/types/sar_observation/history_retrieve_params.py +31 -0
  1231. unifieddatalibrary/types/sar_observation/history_retrieve_response.py +380 -0
  1232. unifieddatalibrary/types/sar_observation_count_params.py +23 -0
  1233. unifieddatalibrary/types/sar_observation_count_response.py +7 -0
  1234. unifieddatalibrary/types/sar_observation_create_bulk_params.py +349 -0
  1235. unifieddatalibrary/types/sar_observation_create_params.py +345 -0
  1236. unifieddatalibrary/types/sar_observation_get_params.py +15 -0
  1237. unifieddatalibrary/types/sar_observation_get_response.py +377 -0
  1238. unifieddatalibrary/types/sar_observation_list_params.py +23 -0
  1239. unifieddatalibrary/types/sar_observation_list_response.py +358 -0
  1240. unifieddatalibrary/types/sar_observation_tuple_params.py +31 -0
  1241. unifieddatalibrary/types/sar_observation_tuple_response.py +380 -0
  1242. unifieddatalibrary/types/sar_observation_unvalidated_publish_params.py +349 -0
  1243. unifieddatalibrary/types/sc_file_download_params.py +7 -1
  1244. unifieddatalibrary/types/scientific_count_params.py +15 -0
  1245. unifieddatalibrary/types/scientific_get_params.py +15 -0
  1246. unifieddatalibrary/types/scientific_list_params.py +15 -0
  1247. unifieddatalibrary/types/scientific_list_response.py +4 -7
  1248. unifieddatalibrary/types/scientific_tuple_params.py +7 -1
  1249. unifieddatalibrary/types/scs/__init__.py +0 -1
  1250. unifieddatalibrary/types/scs/file_list_params.py +7 -1
  1251. unifieddatalibrary/types/scs/file_retrieve_params.py +7 -1
  1252. unifieddatalibrary/types/scs/folder_retrieve_params.py +7 -1
  1253. unifieddatalibrary/types/scs/v2_list_params.py +7 -1
  1254. unifieddatalibrary/types/scs_view_retrieve_params.py +15 -0
  1255. unifieddatalibrary/types/secure_messaging_describe_topic_params.py +15 -0
  1256. unifieddatalibrary/types/secure_messaging_get_latest_offset_params.py +15 -0
  1257. unifieddatalibrary/types/secure_messaging_get_messages_params.py +17 -0
  1258. unifieddatalibrary/types/sensor/__init__.py +1 -0
  1259. unifieddatalibrary/types/sensor/calibration/history_count_params.py +4 -0
  1260. unifieddatalibrary/types/sensor/calibration/history_query_params.py +4 -0
  1261. unifieddatalibrary/types/sensor/calibration/history_write_aodr_params.py +4 -0
  1262. unifieddatalibrary/types/sensor/calibration_count_params.py +4 -0
  1263. unifieddatalibrary/types/sensor/calibration_query_params.py +4 -0
  1264. unifieddatalibrary/types/sensor/calibration_retrieve_params.py +15 -0
  1265. unifieddatalibrary/types/sensor/calibration_tuple_params.py +4 -0
  1266. unifieddatalibrary/types/sensor_count_params.py +15 -0
  1267. unifieddatalibrary/types/sensor_get_params.py +15 -0
  1268. unifieddatalibrary/types/sensor_list_params.py +15 -0
  1269. unifieddatalibrary/types/sensor_list_response.py +26 -32
  1270. unifieddatalibrary/types/sensor_maintenance/history_aodr_params.py +57 -0
  1271. unifieddatalibrary/types/sensor_maintenance/history_count_params.py +29 -0
  1272. unifieddatalibrary/types/sensor_maintenance/history_retrieve_params.py +37 -0
  1273. unifieddatalibrary/types/sensor_maintenance/history_retrieve_response.py +156 -0
  1274. unifieddatalibrary/types/sensor_maintenance_count_params.py +29 -0
  1275. unifieddatalibrary/types/sensor_maintenance_count_response.py +7 -0
  1276. unifieddatalibrary/types/sensor_maintenance_create_bulk_params.py +136 -0
  1277. unifieddatalibrary/types/sensor_maintenance_create_params.py +126 -0
  1278. unifieddatalibrary/types/sensor_maintenance_current_params.py +15 -0
  1279. unifieddatalibrary/types/sensor_maintenance_current_response.py +156 -0
  1280. unifieddatalibrary/types/sensor_maintenance_get_params.py +15 -0
  1281. unifieddatalibrary/types/sensor_maintenance_get_response.py +153 -0
  1282. unifieddatalibrary/types/sensor_maintenance_list_params.py +29 -0
  1283. unifieddatalibrary/types/sensor_maintenance_list_response.py +144 -0
  1284. unifieddatalibrary/types/sensor_maintenance_tuple_params.py +37 -0
  1285. unifieddatalibrary/types/sensor_maintenance_tuple_response.py +156 -0
  1286. unifieddatalibrary/types/sensor_maintenance_update_params.py +126 -0
  1287. unifieddatalibrary/types/sensor_observation_type_get_params.py +15 -0
  1288. unifieddatalibrary/types/sensor_observation_type_get_response.py +63 -0
  1289. unifieddatalibrary/types/sensor_observation_type_list_params.py +15 -0
  1290. unifieddatalibrary/types/sensor_observation_type_list_response.py +33 -0
  1291. unifieddatalibrary/types/sensor_plan/history_aodr_params.py +51 -0
  1292. unifieddatalibrary/types/sensor_plan/history_count_params.py +23 -0
  1293. unifieddatalibrary/types/sensor_plan/history_retrieve_params.py +31 -0
  1294. unifieddatalibrary/types/sensor_plan/history_retrieve_response.py +1626 -0
  1295. unifieddatalibrary/types/sensor_plan_count_params.py +23 -0
  1296. unifieddatalibrary/types/sensor_plan_count_response.py +7 -0
  1297. unifieddatalibrary/types/sensor_plan_create_params.py +1458 -0
  1298. unifieddatalibrary/types/sensor_plan_get_params.py +15 -0
  1299. unifieddatalibrary/types/sensor_plan_get_response.py +1613 -0
  1300. unifieddatalibrary/types/sensor_plan_list_params.py +23 -0
  1301. unifieddatalibrary/types/sensor_plan_list_response.py +112 -0
  1302. unifieddatalibrary/types/sensor_plan_tuple_params.py +31 -0
  1303. unifieddatalibrary/types/sensor_plan_tuple_response.py +1626 -0
  1304. unifieddatalibrary/types/sensor_plan_unvalidated_publish_params.py +1468 -0
  1305. unifieddatalibrary/types/sensor_plan_update_params.py +1458 -0
  1306. unifieddatalibrary/types/sensor_tuple_params.py +7 -1
  1307. unifieddatalibrary/types/sensor_type_get_params.py +15 -0
  1308. unifieddatalibrary/types/sensor_type_get_response.py +63 -0
  1309. unifieddatalibrary/types/sensor_type_list_params.py +15 -0
  1310. unifieddatalibrary/types/sensor_type_list_response.py +33 -0
  1311. unifieddatalibrary/types/sera_data_comm_detail_count_params.py +15 -0
  1312. unifieddatalibrary/types/sera_data_comm_detail_count_response.py +7 -0
  1313. unifieddatalibrary/types/sera_data_comm_detail_create_params.py +140 -0
  1314. unifieddatalibrary/types/sera_data_comm_detail_get_params.py +15 -0
  1315. unifieddatalibrary/types/sera_data_comm_detail_get_response.py +168 -0
  1316. unifieddatalibrary/types/sera_data_comm_detail_list_params.py +15 -0
  1317. unifieddatalibrary/types/sera_data_comm_detail_list_response.py +159 -0
  1318. unifieddatalibrary/types/sera_data_comm_detail_tuple_params.py +23 -0
  1319. unifieddatalibrary/types/sera_data_comm_detail_tuple_response.py +171 -0
  1320. unifieddatalibrary/types/sera_data_comm_detail_update_params.py +140 -0
  1321. unifieddatalibrary/types/sera_data_early_warning_count_params.py +15 -0
  1322. unifieddatalibrary/types/sera_data_early_warning_count_response.py +7 -0
  1323. unifieddatalibrary/types/sera_data_early_warning_create_params.py +87 -0
  1324. unifieddatalibrary/types/sera_data_early_warning_get_params.py +15 -0
  1325. unifieddatalibrary/types/sera_data_early_warning_get_response.py +115 -0
  1326. unifieddatalibrary/types/sera_data_early_warning_list_params.py +15 -0
  1327. unifieddatalibrary/types/sera_data_early_warning_list_response.py +106 -0
  1328. unifieddatalibrary/types/sera_data_early_warning_tuple_params.py +23 -0
  1329. unifieddatalibrary/types/sera_data_early_warning_tuple_response.py +118 -0
  1330. unifieddatalibrary/types/sera_data_early_warning_update_params.py +87 -0
  1331. unifieddatalibrary/types/sera_data_navigation_count_params.py +15 -0
  1332. unifieddatalibrary/types/sera_data_navigation_count_response.py +7 -0
  1333. unifieddatalibrary/types/sera_data_navigation_create_params.py +84 -0
  1334. unifieddatalibrary/types/sera_data_navigation_get_params.py +15 -0
  1335. unifieddatalibrary/types/sera_data_navigation_get_response.py +110 -0
  1336. unifieddatalibrary/types/sera_data_navigation_list_params.py +15 -0
  1337. unifieddatalibrary/types/sera_data_navigation_list_response.py +101 -0
  1338. unifieddatalibrary/types/sera_data_navigation_tuple_params.py +23 -0
  1339. unifieddatalibrary/types/sera_data_navigation_tuple_response.py +113 -0
  1340. unifieddatalibrary/types/sera_data_navigation_update_params.py +84 -0
  1341. unifieddatalibrary/types/seradata_optical_payload_count_params.py +15 -0
  1342. unifieddatalibrary/types/seradata_optical_payload_count_response.py +7 -0
  1343. unifieddatalibrary/types/seradata_optical_payload_create_params.py +105 -0
  1344. unifieddatalibrary/types/seradata_optical_payload_get_params.py +15 -0
  1345. unifieddatalibrary/types/seradata_optical_payload_get_response.py +131 -0
  1346. unifieddatalibrary/types/seradata_optical_payload_list_params.py +15 -0
  1347. unifieddatalibrary/types/seradata_optical_payload_list_response.py +122 -0
  1348. unifieddatalibrary/types/seradata_optical_payload_tuple_params.py +23 -0
  1349. unifieddatalibrary/types/seradata_optical_payload_tuple_response.py +134 -0
  1350. unifieddatalibrary/types/seradata_optical_payload_update_params.py +105 -0
  1351. unifieddatalibrary/types/seradata_radar_payload_count_params.py +15 -0
  1352. unifieddatalibrary/types/seradata_radar_payload_count_response.py +7 -0
  1353. unifieddatalibrary/types/seradata_radar_payload_create_params.py +126 -0
  1354. unifieddatalibrary/types/seradata_radar_payload_get_params.py +15 -0
  1355. unifieddatalibrary/types/seradata_radar_payload_get_response.py +152 -0
  1356. unifieddatalibrary/types/seradata_radar_payload_list_params.py +15 -0
  1357. unifieddatalibrary/types/seradata_radar_payload_list_response.py +143 -0
  1358. unifieddatalibrary/types/seradata_radar_payload_tuple_params.py +23 -0
  1359. unifieddatalibrary/types/seradata_radar_payload_tuple_response.py +155 -0
  1360. unifieddatalibrary/types/seradata_radar_payload_update_params.py +126 -0
  1361. unifieddatalibrary/types/seradata_sigint_payload_count_params.py +15 -0
  1362. unifieddatalibrary/types/seradata_sigint_payload_count_response.py +7 -0
  1363. unifieddatalibrary/types/seradata_sigint_payload_create_params.py +84 -0
  1364. unifieddatalibrary/types/seradata_sigint_payload_get_params.py +15 -0
  1365. unifieddatalibrary/types/seradata_sigint_payload_get_response.py +110 -0
  1366. unifieddatalibrary/types/seradata_sigint_payload_list_params.py +15 -0
  1367. unifieddatalibrary/types/seradata_sigint_payload_list_response.py +101 -0
  1368. unifieddatalibrary/types/seradata_sigint_payload_tuple_params.py +23 -0
  1369. unifieddatalibrary/types/seradata_sigint_payload_tuple_response.py +113 -0
  1370. unifieddatalibrary/types/seradata_sigint_payload_update_params.py +84 -0
  1371. unifieddatalibrary/types/seradata_spacecraft_detail_count_params.py +15 -0
  1372. unifieddatalibrary/types/seradata_spacecraft_detail_count_response.py +7 -0
  1373. unifieddatalibrary/types/seradata_spacecraft_detail_create_params.py +322 -0
  1374. unifieddatalibrary/types/seradata_spacecraft_detail_get_params.py +15 -0
  1375. unifieddatalibrary/types/seradata_spacecraft_detail_get_response.py +1982 -0
  1376. unifieddatalibrary/types/seradata_spacecraft_detail_list_params.py +15 -0
  1377. unifieddatalibrary/types/seradata_spacecraft_detail_list_response.py +341 -0
  1378. unifieddatalibrary/types/seradata_spacecraft_detail_tuple_params.py +23 -0
  1379. unifieddatalibrary/types/seradata_spacecraft_detail_tuple_response.py +2000 -0
  1380. unifieddatalibrary/types/seradata_spacecraft_detail_update_params.py +322 -0
  1381. unifieddatalibrary/types/sgi/history_aodr_params.py +4 -0
  1382. unifieddatalibrary/types/sgi/history_count_params.py +4 -0
  1383. unifieddatalibrary/types/sgi/history_list_params.py +4 -0
  1384. unifieddatalibrary/types/sgi/history_list_response.py +379 -4
  1385. unifieddatalibrary/types/sgi_count_params.py +4 -0
  1386. unifieddatalibrary/types/sgi_get_data_by_effective_as_of_date_params.py +4 -0
  1387. unifieddatalibrary/types/sgi_get_data_by_effective_as_of_date_response.py +385 -0
  1388. unifieddatalibrary/types/sgi_get_params.py +15 -0
  1389. unifieddatalibrary/types/sgi_get_response.py +385 -0
  1390. unifieddatalibrary/types/sgi_list_params.py +4 -0
  1391. unifieddatalibrary/types/sgi_list_response.py +3 -6
  1392. unifieddatalibrary/types/sgi_tuple_params.py +4 -0
  1393. unifieddatalibrary/types/sgi_tuple_response.py +383 -5
  1394. unifieddatalibrary/types/shared/__init__.py +3 -3
  1395. unifieddatalibrary/types/shared/attitudeset_full.py +2 -2
  1396. unifieddatalibrary/types/shared/collect_request_full.py +2 -2
  1397. unifieddatalibrary/types/shared/collect_response_full.py +2 -2
  1398. unifieddatalibrary/types/shared/drift_history_abridged.py +65 -0
  1399. unifieddatalibrary/types/shared/drift_history_full.py +65 -0
  1400. unifieddatalibrary/types/shared/onorbit_full.py +1799 -0
  1401. unifieddatalibrary/types/sigact/history_count_params.py +4 -0
  1402. unifieddatalibrary/types/sigact/history_list_params.py +4 -0
  1403. unifieddatalibrary/types/sigact/history_list_response.py +439 -5
  1404. unifieddatalibrary/types/sigact_count_params.py +4 -0
  1405. unifieddatalibrary/types/sigact_list_params.py +4 -0
  1406. unifieddatalibrary/types/sigact_list_response.py +7 -17
  1407. unifieddatalibrary/types/sigact_tuple_params.py +4 -0
  1408. unifieddatalibrary/types/sigact_tuple_response.py +449 -5
  1409. unifieddatalibrary/types/site/__init__.py +1 -0
  1410. unifieddatalibrary/types/site/operation_count_params.py +4 -0
  1411. unifieddatalibrary/types/site/operation_list_params.py +4 -0
  1412. unifieddatalibrary/types/site/operation_list_response.py +23 -35
  1413. unifieddatalibrary/types/site/operation_retrieve_params.py +15 -0
  1414. unifieddatalibrary/types/site/operation_tuple_params.py +4 -0
  1415. unifieddatalibrary/types/site_count_params.py +15 -0
  1416. unifieddatalibrary/types/site_get_params.py +15 -0
  1417. unifieddatalibrary/types/site_list_params.py +15 -0
  1418. unifieddatalibrary/types/site_list_response.py +4 -7
  1419. unifieddatalibrary/types/site_remark_count_params.py +15 -0
  1420. unifieddatalibrary/types/site_remark_count_response.py +7 -0
  1421. unifieddatalibrary/types/site_remark_create_params.py +67 -0
  1422. unifieddatalibrary/types/site_remark_get_params.py +15 -0
  1423. unifieddatalibrary/types/site_remark_get_response.py +84 -0
  1424. unifieddatalibrary/types/site_remark_list_params.py +15 -0
  1425. unifieddatalibrary/types/site_remark_list_response.py +84 -0
  1426. unifieddatalibrary/types/site_remark_tuple_params.py +23 -0
  1427. unifieddatalibrary/types/site_remark_tuple_response.py +87 -0
  1428. unifieddatalibrary/types/site_status/__init__.py +8 -0
  1429. unifieddatalibrary/types/site_status/history_count_params.py +15 -0
  1430. unifieddatalibrary/types/site_status/history_list_params.py +23 -0
  1431. unifieddatalibrary/types/site_status/history_list_response.py +275 -0
  1432. unifieddatalibrary/types/site_status_count_params.py +15 -0
  1433. unifieddatalibrary/types/site_status_count_response.py +7 -0
  1434. unifieddatalibrary/types/site_status_create_params.py +251 -0
  1435. unifieddatalibrary/types/site_status_get_params.py +15 -0
  1436. unifieddatalibrary/types/site_status_get_response.py +275 -0
  1437. unifieddatalibrary/types/site_status_list_params.py +15 -0
  1438. unifieddatalibrary/types/site_status_list_response.py +266 -0
  1439. unifieddatalibrary/types/site_status_tuple_params.py +23 -0
  1440. unifieddatalibrary/types/site_status_tuple_response.py +278 -0
  1441. unifieddatalibrary/types/site_status_update_params.py +251 -0
  1442. unifieddatalibrary/types/site_tuple_params.py +7 -1
  1443. unifieddatalibrary/types/sky_imagery/__init__.py +9 -0
  1444. unifieddatalibrary/types/sky_imagery/history_aodr_params.py +51 -0
  1445. unifieddatalibrary/types/sky_imagery/history_count_params.py +23 -0
  1446. unifieddatalibrary/types/sky_imagery/history_list_params.py +31 -0
  1447. unifieddatalibrary/types/sky_imagery/history_list_response.py +260 -0
  1448. unifieddatalibrary/types/sky_imagery_count_params.py +23 -0
  1449. unifieddatalibrary/types/sky_imagery_count_response.py +7 -0
  1450. unifieddatalibrary/types/sky_imagery_file_get_params.py +15 -0
  1451. unifieddatalibrary/types/sky_imagery_get_params.py +15 -0
  1452. unifieddatalibrary/types/sky_imagery_get_response.py +260 -0
  1453. unifieddatalibrary/types/sky_imagery_list_params.py +23 -0
  1454. unifieddatalibrary/types/sky_imagery_list_response.py +252 -0
  1455. unifieddatalibrary/types/sky_imagery_tuple_params.py +31 -0
  1456. unifieddatalibrary/types/sky_imagery_tuple_response.py +263 -0
  1457. unifieddatalibrary/types/sky_imagery_upload_zip_params.py +14 -0
  1458. unifieddatalibrary/types/soi_observation_set/__init__.py +9 -0
  1459. unifieddatalibrary/types/soi_observation_set/history_aodr_params.py +51 -0
  1460. unifieddatalibrary/types/soi_observation_set/history_count_params.py +23 -0
  1461. unifieddatalibrary/types/soi_observation_set/history_list_params.py +31 -0
  1462. unifieddatalibrary/types/soi_observation_set_count_params.py +23 -0
  1463. unifieddatalibrary/types/soi_observation_set_count_response.py +7 -0
  1464. unifieddatalibrary/types/soi_observation_set_create_bulk_params.py +832 -0
  1465. unifieddatalibrary/types/soi_observation_set_create_params.py +822 -0
  1466. unifieddatalibrary/types/soi_observation_set_get_params.py +15 -0
  1467. unifieddatalibrary/types/soi_observation_set_list_params.py +23 -0
  1468. unifieddatalibrary/types/soi_observation_set_list_response.py +472 -0
  1469. unifieddatalibrary/types/soi_observation_set_tuple_params.py +31 -0
  1470. unifieddatalibrary/types/soi_observation_set_tuple_response.py +10 -0
  1471. unifieddatalibrary/types/soi_observation_set_unvalidated_publish_params.py +832 -0
  1472. unifieddatalibrary/types/solar_array_count_params.py +15 -0
  1473. unifieddatalibrary/types/solar_array_count_response.py +7 -0
  1474. unifieddatalibrary/types/solar_array_create_params.py +45 -0
  1475. unifieddatalibrary/types/solar_array_detail_create_params.py +79 -0
  1476. unifieddatalibrary/types/solar_array_detail_get_params.py +15 -0
  1477. unifieddatalibrary/types/solar_array_detail_list_params.py +34 -0
  1478. unifieddatalibrary/types/solar_array_detail_list_response.py +86 -0
  1479. unifieddatalibrary/types/solar_array_detail_update_params.py +79 -0
  1480. unifieddatalibrary/types/solar_array_get_params.py +15 -0
  1481. unifieddatalibrary/types/solar_array_get_response.py +79 -0
  1482. unifieddatalibrary/types/solar_array_list_params.py +15 -0
  1483. unifieddatalibrary/types/solar_array_list_response.py +62 -0
  1484. unifieddatalibrary/types/solar_array_tuple_params.py +23 -0
  1485. unifieddatalibrary/types/solar_array_tuple_response.py +82 -0
  1486. unifieddatalibrary/types/solar_array_update_params.py +45 -0
  1487. unifieddatalibrary/types/sortie_ppr/__init__.py +9 -0
  1488. unifieddatalibrary/types/sortie_ppr/history_aodr_params.py +49 -0
  1489. unifieddatalibrary/types/sortie_ppr/history_count_params.py +21 -0
  1490. unifieddatalibrary/types/sortie_ppr/history_list_params.py +29 -0
  1491. unifieddatalibrary/types/sortie_ppr_count_params.py +21 -0
  1492. unifieddatalibrary/types/sortie_ppr_count_response.py +7 -0
  1493. unifieddatalibrary/types/sortie_ppr_create_bulk_params.py +94 -0
  1494. unifieddatalibrary/types/sortie_ppr_create_params.py +90 -0
  1495. unifieddatalibrary/types/sortie_ppr_get_params.py +15 -0
  1496. unifieddatalibrary/types/sortie_ppr_list_params.py +21 -0
  1497. unifieddatalibrary/types/sortie_ppr_list_response.py +112 -0
  1498. unifieddatalibrary/types/sortie_ppr_tuple_params.py +29 -0
  1499. unifieddatalibrary/types/sortie_ppr_tuple_response.py +10 -0
  1500. unifieddatalibrary/types/sortie_ppr_unvalidated_publish_params.py +94 -0
  1501. unifieddatalibrary/types/sortie_ppr_update_params.py +90 -0
  1502. unifieddatalibrary/types/space_env_observation/__init__.py +9 -0
  1503. unifieddatalibrary/types/space_env_observation/history_aodr_params.py +51 -0
  1504. unifieddatalibrary/types/space_env_observation/history_count_params.py +23 -0
  1505. unifieddatalibrary/types/space_env_observation/history_list_params.py +31 -0
  1506. unifieddatalibrary/types/space_env_observation_count_params.py +23 -0
  1507. unifieddatalibrary/types/space_env_observation_count_response.py +7 -0
  1508. unifieddatalibrary/types/space_env_observation_create_bulk_params.py +286 -0
  1509. unifieddatalibrary/types/space_env_observation_list_params.py +23 -0
  1510. unifieddatalibrary/types/space_env_observation_list_response.py +303 -0
  1511. unifieddatalibrary/types/space_env_observation_tuple_params.py +31 -0
  1512. unifieddatalibrary/types/space_env_observation_tuple_response.py +10 -0
  1513. unifieddatalibrary/types/space_env_observation_unvalidated_publish_params.py +286 -0
  1514. unifieddatalibrary/types/stage_count_params.py +15 -0
  1515. unifieddatalibrary/types/stage_get_params.py +15 -0
  1516. unifieddatalibrary/types/stage_list_params.py +15 -0
  1517. unifieddatalibrary/types/stage_list_response.py +3 -6
  1518. unifieddatalibrary/types/stage_tuple_params.py +7 -1
  1519. unifieddatalibrary/types/star_catalog/history_aodr_params.py +57 -0
  1520. unifieddatalibrary/types/star_catalog_count_params.py +29 -0
  1521. unifieddatalibrary/types/star_catalog_count_response.py +7 -0
  1522. unifieddatalibrary/types/star_catalog_create_bulk_params.py +216 -0
  1523. unifieddatalibrary/types/star_catalog_create_params.py +211 -0
  1524. unifieddatalibrary/types/star_catalog_get_params.py +15 -0
  1525. unifieddatalibrary/types/star_catalog_get_response.py +232 -0
  1526. unifieddatalibrary/types/star_catalog_list_params.py +29 -0
  1527. unifieddatalibrary/types/star_catalog_list_response.py +232 -0
  1528. unifieddatalibrary/types/star_catalog_tuple_params.py +37 -0
  1529. unifieddatalibrary/types/star_catalog_tuple_response.py +235 -0
  1530. unifieddatalibrary/types/star_catalog_unvalidated_publish_params.py +216 -0
  1531. unifieddatalibrary/types/star_catalog_update_params.py +211 -0
  1532. unifieddatalibrary/types/state_vector/__init__.py +11 -0
  1533. unifieddatalibrary/types/state_vector/current_list_params.py +15 -0
  1534. unifieddatalibrary/types/state_vector/current_tuple_params.py +23 -0
  1535. unifieddatalibrary/types/state_vector/history_aodr_params.py +51 -0
  1536. unifieddatalibrary/types/state_vector/history_count_params.py +23 -0
  1537. unifieddatalibrary/types/state_vector/history_list_params.py +31 -0
  1538. unifieddatalibrary/types/state_vector_count_params.py +23 -0
  1539. unifieddatalibrary/types/state_vector_count_response.py +7 -0
  1540. unifieddatalibrary/types/state_vector_create_bulk_params.py +14 -0
  1541. unifieddatalibrary/types/state_vector_create_params.py +618 -0
  1542. unifieddatalibrary/types/state_vector_full.py +2 -2
  1543. unifieddatalibrary/types/state_vector_get_params.py +15 -0
  1544. unifieddatalibrary/types/state_vector_list_params.py +23 -0
  1545. unifieddatalibrary/types/state_vector_tuple_params.py +31 -0
  1546. unifieddatalibrary/types/state_vector_tuple_response.py +10 -0
  1547. unifieddatalibrary/types/state_vector_unvalidated_publish_params.py +14 -0
  1548. unifieddatalibrary/types/status_count_params.py +15 -0
  1549. unifieddatalibrary/types/status_get_by_entity_id_params.py +15 -0
  1550. unifieddatalibrary/types/status_get_by_entity_type_params.py +15 -0
  1551. unifieddatalibrary/types/status_get_params.py +15 -0
  1552. unifieddatalibrary/types/status_list_params.py +15 -0
  1553. unifieddatalibrary/types/status_list_response.py +5 -10
  1554. unifieddatalibrary/types/status_tuple_params.py +7 -1
  1555. unifieddatalibrary/types/substatus_count_params.py +15 -0
  1556. unifieddatalibrary/types/substatus_get_params.py +15 -0
  1557. unifieddatalibrary/types/substatus_list_params.py +15 -0
  1558. unifieddatalibrary/types/substatus_list_response.py +4 -7
  1559. unifieddatalibrary/types/substatus_tuple_params.py +7 -1
  1560. unifieddatalibrary/types/supporting_data/__init__.py +5 -0
  1561. unifieddatalibrary/types/supporting_data/data_type_list_params.py +15 -0
  1562. unifieddatalibrary/types/supporting_data/data_type_list_response.py +1 -2
  1563. unifieddatalibrary/types/supporting_data/dataowner_count_params.py +15 -0
  1564. unifieddatalibrary/types/supporting_data/dataowner_retrieve_params.py +15 -0
  1565. unifieddatalibrary/types/supporting_data/dataowner_type_list_params.py +15 -0
  1566. unifieddatalibrary/types/supporting_data/dataowner_type_list_response.py +1 -2
  1567. unifieddatalibrary/types/supporting_data/provider_metadata_retrieve_params.py +15 -0
  1568. unifieddatalibrary/types/surface_count_params.py +15 -0
  1569. unifieddatalibrary/types/surface_get_params.py +15 -0
  1570. unifieddatalibrary/types/surface_list_params.py +15 -0
  1571. unifieddatalibrary/types/surface_list_response.py +4 -7
  1572. unifieddatalibrary/types/surface_obstruction_count_params.py +15 -0
  1573. unifieddatalibrary/types/surface_obstruction_count_response.py +7 -0
  1574. unifieddatalibrary/types/surface_obstruction_create_params.py +75 -0
  1575. unifieddatalibrary/types/surface_obstruction_get_params.py +15 -0
  1576. unifieddatalibrary/types/surface_obstruction_get_response.py +107 -0
  1577. unifieddatalibrary/types/surface_obstruction_list_params.py +15 -0
  1578. unifieddatalibrary/types/surface_obstruction_list_response.py +98 -0
  1579. unifieddatalibrary/types/surface_obstruction_tuple_params.py +23 -0
  1580. unifieddatalibrary/types/surface_obstruction_tuple_response.py +110 -0
  1581. unifieddatalibrary/types/surface_obstruction_unvalidated_publish_params.py +79 -0
  1582. unifieddatalibrary/types/surface_obstruction_update_params.py +75 -0
  1583. unifieddatalibrary/types/surface_tuple_params.py +7 -1
  1584. unifieddatalibrary/types/swir/__init__.py +0 -1
  1585. unifieddatalibrary/types/swir/history_aodr_params.py +4 -0
  1586. unifieddatalibrary/types/swir/history_count_params.py +4 -0
  1587. unifieddatalibrary/types/swir/history_list_params.py +4 -0
  1588. unifieddatalibrary/types/swir/swir_full.py +2 -2
  1589. unifieddatalibrary/types/swir_count_params.py +4 -0
  1590. unifieddatalibrary/types/swir_get_params.py +15 -0
  1591. unifieddatalibrary/types/swir_list_params.py +4 -0
  1592. unifieddatalibrary/types/swir_list_response.py +4 -7
  1593. unifieddatalibrary/types/swir_tuple_params.py +4 -0
  1594. unifieddatalibrary/types/tai_utc/__init__.py +9 -0
  1595. unifieddatalibrary/types/tai_utc/history_aodr_params.py +51 -0
  1596. unifieddatalibrary/types/tai_utc/history_count_params.py +23 -0
  1597. unifieddatalibrary/types/tai_utc/history_list_params.py +31 -0
  1598. unifieddatalibrary/types/tai_utc_count_params.py +23 -0
  1599. unifieddatalibrary/types/tai_utc_count_response.py +7 -0
  1600. unifieddatalibrary/types/tai_utc_create_params.py +66 -0
  1601. unifieddatalibrary/types/tai_utc_get_params.py +15 -0
  1602. unifieddatalibrary/types/tai_utc_list_params.py +23 -0
  1603. unifieddatalibrary/types/tai_utc_list_response.py +81 -0
  1604. unifieddatalibrary/types/tai_utc_tuple_params.py +31 -0
  1605. unifieddatalibrary/types/tai_utc_tuple_response.py +10 -0
  1606. unifieddatalibrary/types/tai_utc_update_params.py +66 -0
  1607. unifieddatalibrary/types/tdoa_fdoa/__init__.py +0 -1
  1608. unifieddatalibrary/types/tdoa_fdoa/diffofarrival/__init__.py +0 -1
  1609. unifieddatalibrary/types/tdoa_fdoa/diffofarrival/history_aodr_params.py +4 -0
  1610. unifieddatalibrary/types/tdoa_fdoa/diffofarrival/history_list_params.py +4 -0
  1611. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_count_params.py +4 -0
  1612. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_full.py +2 -2
  1613. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_list_params.py +4 -0
  1614. unifieddatalibrary/types/track/__init__.py +0 -1
  1615. unifieddatalibrary/types/track/history_aodr_params.py +4 -0
  1616. unifieddatalibrary/types/track/history_count_params.py +4 -0
  1617. unifieddatalibrary/types/track/history_list_params.py +4 -0
  1618. unifieddatalibrary/types/track_count_params.py +4 -0
  1619. unifieddatalibrary/types/track_detail_count_params.py +23 -0
  1620. unifieddatalibrary/types/track_detail_count_response.py +7 -0
  1621. unifieddatalibrary/types/track_detail_create_bulk_params.py +1111 -0
  1622. unifieddatalibrary/types/track_detail_list_params.py +23 -0
  1623. unifieddatalibrary/types/track_detail_list_response.py +1118 -0
  1624. unifieddatalibrary/types/track_detail_tuple_params.py +31 -0
  1625. unifieddatalibrary/types/track_detail_tuple_response.py +10 -0
  1626. unifieddatalibrary/types/track_details/__init__.py +9 -0
  1627. unifieddatalibrary/types/track_details/history_aodr_params.py +51 -0
  1628. unifieddatalibrary/types/track_details/history_count_params.py +23 -0
  1629. unifieddatalibrary/types/track_details/history_list_params.py +31 -0
  1630. unifieddatalibrary/types/track_list_params.py +4 -0
  1631. unifieddatalibrary/types/track_list_response.py +3 -6
  1632. unifieddatalibrary/types/track_route/__init__.py +9 -0
  1633. unifieddatalibrary/types/track_route/history_aodr_params.py +51 -0
  1634. unifieddatalibrary/types/track_route/history_count_params.py +23 -0
  1635. unifieddatalibrary/types/track_route/history_list_params.py +31 -0
  1636. unifieddatalibrary/types/track_route_count_params.py +23 -0
  1637. unifieddatalibrary/types/track_route_count_response.py +7 -0
  1638. unifieddatalibrary/types/track_route_create_bulk_params.py +276 -0
  1639. unifieddatalibrary/types/track_route_create_params.py +272 -0
  1640. unifieddatalibrary/types/track_route_get_params.py +15 -0
  1641. unifieddatalibrary/types/track_route_list_params.py +23 -0
  1642. unifieddatalibrary/types/track_route_list_response.py +303 -0
  1643. unifieddatalibrary/types/track_route_tuple_params.py +31 -0
  1644. unifieddatalibrary/types/track_route_tuple_response.py +10 -0
  1645. unifieddatalibrary/types/track_route_unvalidated_publish_params.py +272 -0
  1646. unifieddatalibrary/types/track_route_update_params.py +272 -0
  1647. unifieddatalibrary/types/track_tuple_params.py +4 -0
  1648. unifieddatalibrary/types/transponder_count_params.py +15 -0
  1649. unifieddatalibrary/types/transponder_get_params.py +15 -0
  1650. unifieddatalibrary/types/transponder_list_params.py +15 -0
  1651. unifieddatalibrary/types/transponder_list_response.py +4 -7
  1652. unifieddatalibrary/types/transponder_tuple_params.py +7 -1
  1653. unifieddatalibrary/types/vessel_count_params.py +15 -0
  1654. unifieddatalibrary/types/vessel_get_params.py +15 -0
  1655. unifieddatalibrary/types/vessel_list_params.py +15 -0
  1656. unifieddatalibrary/types/vessel_list_response.py +4 -7
  1657. unifieddatalibrary/types/vessel_tuple_params.py +7 -1
  1658. unifieddatalibrary/types/video/__init__.py +1 -1
  1659. unifieddatalibrary/types/video/history_count_params.py +15 -0
  1660. unifieddatalibrary/types/video/history_list_params.py +7 -1
  1661. unifieddatalibrary/types/video_count_params.py +15 -0
  1662. unifieddatalibrary/types/video_get_params.py +15 -0
  1663. unifieddatalibrary/types/video_get_player_streaming_info_params.py +4 -0
  1664. unifieddatalibrary/types/video_get_publisher_streaming_info_params.py +4 -0
  1665. unifieddatalibrary/types/video_get_stream_file_params.py +4 -0
  1666. unifieddatalibrary/types/video_list_params.py +15 -0
  1667. unifieddatalibrary/types/video_list_response.py +3 -6
  1668. unifieddatalibrary/types/video_tuple_params.py +7 -1
  1669. unifieddatalibrary/types/weather_data/__init__.py +9 -0
  1670. unifieddatalibrary/types/weather_data/history_aodr_params.py +51 -0
  1671. unifieddatalibrary/types/weather_data/history_count_params.py +23 -0
  1672. unifieddatalibrary/types/weather_data/history_list_params.py +31 -0
  1673. unifieddatalibrary/types/weather_data_count_params.py +23 -0
  1674. unifieddatalibrary/types/weather_data_count_response.py +7 -0
  1675. unifieddatalibrary/types/weather_data_create_bulk_params.py +228 -0
  1676. unifieddatalibrary/types/weather_data_create_params.py +224 -0
  1677. unifieddatalibrary/types/weather_data_get_params.py +15 -0
  1678. unifieddatalibrary/types/weather_data_list_params.py +23 -0
  1679. unifieddatalibrary/types/weather_data_list_response.py +236 -0
  1680. unifieddatalibrary/types/weather_data_tuple_params.py +31 -0
  1681. unifieddatalibrary/types/weather_data_tuple_response.py +10 -0
  1682. unifieddatalibrary/types/weather_data_unvalidated_publish_params.py +228 -0
  1683. unifieddatalibrary/types/weather_report/__init__.py +9 -0
  1684. unifieddatalibrary/types/weather_report/history_aodr_params.py +51 -0
  1685. unifieddatalibrary/types/weather_report/history_count_params.py +23 -0
  1686. unifieddatalibrary/types/weather_report/history_list_params.py +31 -0
  1687. unifieddatalibrary/types/weather_report_count_params.py +23 -0
  1688. unifieddatalibrary/types/weather_report_count_response.py +7 -0
  1689. unifieddatalibrary/types/weather_report_create_params.py +493 -0
  1690. unifieddatalibrary/types/weather_report_get_params.py +15 -0
  1691. unifieddatalibrary/types/weather_report_list_params.py +23 -0
  1692. unifieddatalibrary/types/weather_report_list_response.py +499 -0
  1693. unifieddatalibrary/types/weather_report_tuple_params.py +31 -0
  1694. unifieddatalibrary/types/weather_report_tuple_response.py +10 -0
  1695. unifieddatalibrary/types/weather_report_unvalidated_publish_params.py +497 -0
  1696. udl_sdk-0.1.0a5.dist-info/METADATA +0 -446
  1697. udl_sdk-0.1.0a5.dist-info/RECORD +0 -2289
  1698. unifieddatalibrary/resources/air_tasking_orders.py +0 -674
  1699. unifieddatalibrary/resources/aircraftstatusremark.py +0 -410
  1700. unifieddatalibrary/resources/airfield_status.py +0 -858
  1701. unifieddatalibrary/resources/airfieldslotconsumptions.py +0 -1473
  1702. unifieddatalibrary/resources/airfieldslots.py +0 -764
  1703. unifieddatalibrary/resources/airfieldstatus/__init__.py +0 -33
  1704. unifieddatalibrary/resources/airfieldstatus/airfieldstatus.py +0 -795
  1705. unifieddatalibrary/resources/airfieldstatus/history.py +0 -247
  1706. unifieddatalibrary/resources/airloadplans.py +0 -898
  1707. unifieddatalibrary/resources/airtaskingorders.py +0 -145
  1708. unifieddatalibrary/resources/aviationriskmanagement.py +0 -1274
  1709. unifieddatalibrary/resources/diffofarrival/__init__.py +0 -33
  1710. unifieddatalibrary/resources/diffofarrival/diffofarrival.py +0 -471
  1711. unifieddatalibrary/resources/diffofarrival/history.py +0 -187
  1712. unifieddatalibrary/resources/ecpsdr.py +0 -172
  1713. unifieddatalibrary/resources/emittergeolocation.py +0 -1336
  1714. unifieddatalibrary/resources/enginedetails.py +0 -145
  1715. unifieddatalibrary/resources/eo_observations/eo_observations.py +0 -1599
  1716. unifieddatalibrary/resources/eo_observations/history.py +0 -464
  1717. unifieddatalibrary/resources/eoobservations.py +0 -357
  1718. unifieddatalibrary/resources/equipmentremarks.py +0 -760
  1719. unifieddatalibrary/resources/featureassessment/__init__.py +0 -33
  1720. unifieddatalibrary/resources/featureassessment/featureassessment.py +0 -1318
  1721. unifieddatalibrary/resources/featureassessment/history.py +0 -459
  1722. unifieddatalibrary/resources/geostatus.py +0 -967
  1723. unifieddatalibrary/resources/globalatmosphericmodel/__init__.py +0 -33
  1724. unifieddatalibrary/resources/globalatmosphericmodel/globalatmosphericmodel.py +0 -1042
  1725. unifieddatalibrary/resources/globalatmosphericmodel/history.py +0 -458
  1726. unifieddatalibrary/resources/gnssobservationset.py +0 -653
  1727. unifieddatalibrary/resources/gnssrawif.py +0 -774
  1728. unifieddatalibrary/resources/groundimagery.py +0 -1004
  1729. unifieddatalibrary/resources/h3geo/__init__.py +0 -33
  1730. unifieddatalibrary/resources/h3geo/h3geo.py +0 -829
  1731. unifieddatalibrary/resources/h3geo/history.py +0 -458
  1732. unifieddatalibrary/resources/h3geohexcell.py +0 -462
  1733. unifieddatalibrary/resources/ionoobservation.py +0 -647
  1734. unifieddatalibrary/resources/launchdetection.py +0 -1183
  1735. unifieddatalibrary/resources/launchevent.py +0 -986
  1736. unifieddatalibrary/resources/launchsite.py +0 -953
  1737. unifieddatalibrary/resources/launchsitedetails.py +0 -883
  1738. unifieddatalibrary/resources/launchvehicle.py +0 -907
  1739. unifieddatalibrary/resources/launchvehicledetails.py +0 -1431
  1740. unifieddatalibrary/resources/logisticssupport/__init__.py +0 -33
  1741. unifieddatalibrary/resources/logisticssupport/history.py +0 -391
  1742. unifieddatalibrary/resources/logisticssupport/logisticssupport.py +0 -1415
  1743. unifieddatalibrary/resources/missionassignment/__init__.py +0 -33
  1744. unifieddatalibrary/resources/missionassignment/history.py +0 -458
  1745. unifieddatalibrary/resources/missionassignment/missionassignment.py +0 -2026
  1746. unifieddatalibrary/resources/monoradar.py +0 -553
  1747. unifieddatalibrary/resources/mti.py +0 -639
  1748. unifieddatalibrary/resources/navigationalobstruction.py +0 -2328
  1749. unifieddatalibrary/resources/notification.py +0 -959
  1750. unifieddatalibrary/resources/objectofinterest.py +0 -1583
  1751. unifieddatalibrary/resources/observations/rfobservation/__init__.py +0 -33
  1752. unifieddatalibrary/resources/observations/rfobservation/history.py +0 -360
  1753. unifieddatalibrary/resources/observations/rfobservation/rfobservation.py +0 -102
  1754. unifieddatalibrary/resources/onboardnavigation.py +0 -651
  1755. unifieddatalibrary/resources/passiveradarobservation/__init__.py +0 -33
  1756. unifieddatalibrary/resources/passiveradarobservation/history.py +0 -458
  1757. unifieddatalibrary/resources/passiveradarobservation/passiveradarobservation.py +0 -1452
  1758. unifieddatalibrary/resources/radarobservation.py +0 -1464
  1759. unifieddatalibrary/resources/rfband.py +0 -1201
  1760. unifieddatalibrary/resources/rfbandtype.py +0 -921
  1761. unifieddatalibrary/resources/rfemitter.py +0 -946
  1762. unifieddatalibrary/resources/rfemitterdetails.py +0 -1332
  1763. unifieddatalibrary/resources/rfobservation/__init__.py +0 -33
  1764. unifieddatalibrary/resources/rfobservation/history.py +0 -187
  1765. unifieddatalibrary/resources/rfobservation/rfobservation.py +0 -1750
  1766. unifieddatalibrary/resources/routestats.py +0 -1503
  1767. unifieddatalibrary/resources/sarobservation/__init__.py +0 -33
  1768. unifieddatalibrary/resources/sarobservation/history.py +0 -460
  1769. unifieddatalibrary/resources/sarobservation/sarobservation.py +0 -1528
  1770. unifieddatalibrary/resources/sensormaintenance/__init__.py +0 -33
  1771. unifieddatalibrary/resources/sensormaintenance/history.py +0 -498
  1772. unifieddatalibrary/resources/sensormaintenance/sensormaintenance.py +0 -1593
  1773. unifieddatalibrary/resources/sensorobservationtype.py +0 -266
  1774. unifieddatalibrary/resources/sensorplan/__init__.py +0 -33
  1775. unifieddatalibrary/resources/sensorplan/history.py +0 -458
  1776. unifieddatalibrary/resources/sensorplan/sensorplan.py +0 -1278
  1777. unifieddatalibrary/resources/sensortype.py +0 -280
  1778. unifieddatalibrary/resources/seradatacommdetails.py +0 -1349
  1779. unifieddatalibrary/resources/seradataearlywarning.py +0 -1105
  1780. unifieddatalibrary/resources/seradatanavigation.py +0 -1085
  1781. unifieddatalibrary/resources/seradataopticalpayload.py +0 -1179
  1782. unifieddatalibrary/resources/seradataradarpayload.py +0 -1277
  1783. unifieddatalibrary/resources/seradatasigintpayload.py +0 -1091
  1784. unifieddatalibrary/resources/seradataspacecraftdetails.py +0 -2289
  1785. unifieddatalibrary/resources/siteremark.py +0 -671
  1786. unifieddatalibrary/resources/sitestatus/__init__.py +0 -33
  1787. unifieddatalibrary/resources/sitestatus/history.py +0 -247
  1788. unifieddatalibrary/resources/sitestatus/sitestatus.py +0 -1695
  1789. unifieddatalibrary/resources/skyimagery/__init__.py +0 -33
  1790. unifieddatalibrary/resources/skyimagery/history.py +0 -460
  1791. unifieddatalibrary/resources/skyimagery/skyimagery.py +0 -817
  1792. unifieddatalibrary/resources/soiobservationset/__init__.py +0 -33
  1793. unifieddatalibrary/resources/soiobservationset/history.py +0 -458
  1794. unifieddatalibrary/resources/soiobservationset/soiobservationset.py +0 -1566
  1795. unifieddatalibrary/resources/solararray.py +0 -873
  1796. unifieddatalibrary/resources/solararraydetails.py +0 -881
  1797. unifieddatalibrary/resources/sortieppr/__init__.py +0 -33
  1798. unifieddatalibrary/resources/sortieppr/history.py +0 -455
  1799. unifieddatalibrary/resources/sortieppr/sortieppr.py +0 -1345
  1800. unifieddatalibrary/resources/spaceenvobservation/__init__.py +0 -33
  1801. unifieddatalibrary/resources/spaceenvobservation/history.py +0 -458
  1802. unifieddatalibrary/resources/spaceenvobservation/spaceenvobservation.py +0 -683
  1803. unifieddatalibrary/resources/starcatalog/__init__.py +0 -33
  1804. unifieddatalibrary/resources/starcatalog/history.py +0 -254
  1805. unifieddatalibrary/resources/starcatalog/starcatalog.py +0 -1908
  1806. unifieddatalibrary/resources/statevector/__init__.py +0 -47
  1807. unifieddatalibrary/resources/statevector/current.py +0 -270
  1808. unifieddatalibrary/resources/statevector/history.py +0 -458
  1809. unifieddatalibrary/resources/statevector/statevector.py +0 -2069
  1810. unifieddatalibrary/resources/surfaceobstruction.py +0 -1089
  1811. unifieddatalibrary/resources/taiutc/__init__.py +0 -33
  1812. unifieddatalibrary/resources/taiutc/history.py +0 -460
  1813. unifieddatalibrary/resources/taiutc/taiutc.py +0 -1083
  1814. unifieddatalibrary/resources/trackdetails/__init__.py +0 -33
  1815. unifieddatalibrary/resources/trackdetails/history.py +0 -458
  1816. unifieddatalibrary/resources/trackdetails/trackdetails.py +0 -590
  1817. unifieddatalibrary/resources/trackroute/__init__.py +0 -33
  1818. unifieddatalibrary/resources/trackroute/history.py +0 -460
  1819. unifieddatalibrary/resources/trackroute/trackroute.py +0 -1983
  1820. unifieddatalibrary/resources/udl/__init__.py +0 -103
  1821. unifieddatalibrary/resources/udl/geostatus/__init__.py +0 -33
  1822. unifieddatalibrary/resources/udl/geostatus/geostatus.py +0 -102
  1823. unifieddatalibrary/resources/udl/geostatus/history.py +0 -458
  1824. unifieddatalibrary/resources/udl/gnssobservationset/__init__.py +0 -33
  1825. unifieddatalibrary/resources/udl/gnssobservationset/gnssobservationset.py +0 -102
  1826. unifieddatalibrary/resources/udl/gnssobservationset/history.py +0 -364
  1827. unifieddatalibrary/resources/udl/mti/history.py +0 -452
  1828. unifieddatalibrary/resources/udl/mti/mti.py +0 -102
  1829. unifieddatalibrary/resources/udl/notification/history.py +0 -452
  1830. unifieddatalibrary/resources/udl/notification/notification.py +0 -102
  1831. unifieddatalibrary/resources/udl/onboardnavigation/history.py +0 -458
  1832. unifieddatalibrary/resources/udl/onboardnavigation/onboardnavigation.py +0 -102
  1833. unifieddatalibrary/resources/udl/onorbitthrusterstatus/__init__.py +0 -33
  1834. unifieddatalibrary/resources/udl/onorbitthrusterstatus/history.py +0 -224
  1835. unifieddatalibrary/resources/udl/onorbitthrusterstatus/onorbitthrusterstatus.py +0 -102
  1836. unifieddatalibrary/resources/udl/udl.py +0 -262
  1837. unifieddatalibrary/resources/weatherdata/__init__.py +0 -33
  1838. unifieddatalibrary/resources/weatherdata/history.py +0 -458
  1839. unifieddatalibrary/resources/weatherdata/weatherdata.py +0 -1250
  1840. unifieddatalibrary/resources/weatherreport/__init__.py +0 -33
  1841. unifieddatalibrary/resources/weatherreport/history.py +0 -458
  1842. unifieddatalibrary/resources/weatherreport/weatherreport.py +0 -1683
  1843. unifieddatalibrary/types/ai_list_response.py +0 -10
  1844. unifieddatalibrary/types/air_load_plan_list_response.py +0 -10
  1845. unifieddatalibrary/types/air_operations/aircraft_sortie_list_response.py +0 -10
  1846. unifieddatalibrary/types/air_tasking_order_create_params.py +0 -378
  1847. unifieddatalibrary/types/air_tasking_order_full.py +0 -402
  1848. unifieddatalibrary/types/air_tasking_order_tuple_params.py +0 -17
  1849. unifieddatalibrary/types/air_transport_mission_list_response.py +0 -10
  1850. unifieddatalibrary/types/air_transport_missions/history_list_response.py +0 -10
  1851. unifieddatalibrary/types/aircraft_list_response.py +0 -10
  1852. unifieddatalibrary/types/aircraft_status_list_response.py +0 -10
  1853. unifieddatalibrary/types/aircraft_status_remark_list_response.py +0 -10
  1854. unifieddatalibrary/types/aircraft_statuses/history_list_response.py +0 -10
  1855. unifieddatalibrary/types/aircraftstatusremark_update_params.py +0 -83
  1856. unifieddatalibrary/types/airfield_list_response.py +0 -10
  1857. unifieddatalibrary/types/airfield_slot_list_response.py +0 -10
  1858. unifieddatalibrary/types/airfieldslot_count_response.py +0 -7
  1859. unifieddatalibrary/types/airfieldslot_tuple_params.py +0 -17
  1860. unifieddatalibrary/types/airfieldslot_tuple_response.py +0 -10
  1861. unifieddatalibrary/types/airfieldslot_update_params.py +0 -98
  1862. unifieddatalibrary/types/airfieldslotconsumption_count_params.py +0 -19
  1863. unifieddatalibrary/types/airfieldslotconsumption_count_response.py +0 -7
  1864. unifieddatalibrary/types/airfieldslotconsumption_create_params.py +0 -171
  1865. unifieddatalibrary/types/airfieldslotconsumption_list_params.py +0 -19
  1866. unifieddatalibrary/types/airfieldslotconsumption_list_response.py +0 -10
  1867. unifieddatalibrary/types/airfieldslotconsumption_tuple_params.py +0 -27
  1868. unifieddatalibrary/types/airfieldslotconsumption_tuple_response.py +0 -10
  1869. unifieddatalibrary/types/airfieldslotconsumption_update_params.py +0 -171
  1870. unifieddatalibrary/types/airfieldstatus/__init__.py +0 -7
  1871. unifieddatalibrary/types/airfieldstatus/history_list_params.py +0 -17
  1872. unifieddatalibrary/types/airfieldstatus/history_list_response.py +0 -10
  1873. unifieddatalibrary/types/airfieldstatus_count_response.py +0 -7
  1874. unifieddatalibrary/types/airfieldstatus_create_params.py +0 -221
  1875. unifieddatalibrary/types/airfieldstatus_list_response.py +0 -10
  1876. unifieddatalibrary/types/airloadplan_update_params.py +0 -607
  1877. unifieddatalibrary/types/airspace_control_order_list_response.py +0 -10
  1878. unifieddatalibrary/types/airtaskingorder_abridged.py +0 -402
  1879. unifieddatalibrary/types/airtaskingorder_list_response.py +0 -10
  1880. unifieddatalibrary/types/ais/history_list_response.py +0 -10
  1881. unifieddatalibrary/types/analytic_imagery_list_response.py +0 -10
  1882. unifieddatalibrary/types/antenna_list_response.py +0 -10
  1883. unifieddatalibrary/types/attitude_set_list_response.py +0 -10
  1884. unifieddatalibrary/types/attitude_sets/history_list_response.py +0 -10
  1885. unifieddatalibrary/types/aviationriskmanagement_count_params.py +0 -17
  1886. unifieddatalibrary/types/aviationriskmanagement_count_response.py +0 -7
  1887. unifieddatalibrary/types/aviationriskmanagement_create_bulk_params.py +0 -249
  1888. unifieddatalibrary/types/aviationriskmanagement_create_params.py +0 -242
  1889. unifieddatalibrary/types/aviationriskmanagement_query_params.py +0 -17
  1890. unifieddatalibrary/types/aviationriskmanagement_query_response.py +0 -281
  1891. unifieddatalibrary/types/aviationriskmanagement_retrieve_response.py +0 -269
  1892. unifieddatalibrary/types/aviationriskmanagement_tuple_params.py +0 -25
  1893. unifieddatalibrary/types/aviationriskmanagement_tuple_response.py +0 -281
  1894. unifieddatalibrary/types/aviationriskmanagement_unvalidated_publish_params.py +0 -249
  1895. unifieddatalibrary/types/aviationriskmanagement_update_params.py +0 -242
  1896. unifieddatalibrary/types/battery_list_response.py +0 -10
  1897. unifieddatalibrary/types/batterydetail_list_response.py +0 -10
  1898. unifieddatalibrary/types/beam_contour_list_response.py +0 -10
  1899. unifieddatalibrary/types/beam_list_response.py +0 -10
  1900. unifieddatalibrary/types/bus_list_response.py +0 -10
  1901. unifieddatalibrary/types/channel_list_response.py +0 -10
  1902. unifieddatalibrary/types/collect_request_list_response.py +0 -10
  1903. unifieddatalibrary/types/collect_requests/history_list_response.py +0 -10
  1904. unifieddatalibrary/types/collect_response_list_response.py +0 -10
  1905. unifieddatalibrary/types/collect_responses/history_list_response.py +0 -10
  1906. unifieddatalibrary/types/collect_responses/tuple_list_response.py +0 -10
  1907. unifieddatalibrary/types/comm_list_response.py +0 -10
  1908. unifieddatalibrary/types/conjunction_list_response.py +0 -10
  1909. unifieddatalibrary/types/country_list_response.py +0 -10
  1910. unifieddatalibrary/types/crew_list_response.py +0 -10
  1911. unifieddatalibrary/types/diffofarrival/history_count_params.py +0 -19
  1912. unifieddatalibrary/types/diffofarrival_tuple_params.py +0 -27
  1913. unifieddatalibrary/types/diffofarrival_tuple_response.py +0 -10
  1914. unifieddatalibrary/types/diffofarrival_unvalidated_publish_params.py +0 -222
  1915. unifieddatalibrary/types/diplomatic_clearance/history_list_response.py +0 -10
  1916. unifieddatalibrary/types/diplomatic_clearance_list_response.py +0 -10
  1917. unifieddatalibrary/types/drift_history_list_response.py +0 -10
  1918. unifieddatalibrary/types/ecpsdr_unvalidated_publish_params.py +0 -253
  1919. unifieddatalibrary/types/elset_list_response.py +0 -10
  1920. unifieddatalibrary/types/elsets/current_list_response.py +0 -10
  1921. unifieddatalibrary/types/elsets/history_list_response.py +0 -10
  1922. unifieddatalibrary/types/emittergeolocation_count_params.py +0 -19
  1923. unifieddatalibrary/types/emittergeolocation_count_response.py +0 -7
  1924. unifieddatalibrary/types/emittergeolocation_create_bulk_params.py +0 -236
  1925. unifieddatalibrary/types/emittergeolocation_create_params.py +0 -232
  1926. unifieddatalibrary/types/emittergeolocation_query_params.py +0 -19
  1927. unifieddatalibrary/types/emittergeolocation_query_response.py +0 -260
  1928. unifieddatalibrary/types/emittergeolocation_retrieve_response.py +0 -267
  1929. unifieddatalibrary/types/emittergeolocation_tuple_params.py +0 -27
  1930. unifieddatalibrary/types/emittergeolocation_tuple_response.py +0 -270
  1931. unifieddatalibrary/types/emittergeolocation_unvalidated_publish_params.py +0 -236
  1932. unifieddatalibrary/types/engine_list_response.py +0 -10
  1933. unifieddatalibrary/types/enginedetail_list_response.py +0 -10
  1934. unifieddatalibrary/types/entity_list_response.py +0 -10
  1935. unifieddatalibrary/types/eo_observation_abridged.py +0 -540
  1936. unifieddatalibrary/types/eo_observation_count_params.py +0 -20
  1937. unifieddatalibrary/types/eo_observation_create_bulk_params.py +0 -990
  1938. unifieddatalibrary/types/eo_observation_create_params.py +0 -983
  1939. unifieddatalibrary/types/eo_observation_list_params.py +0 -20
  1940. unifieddatalibrary/types/eo_observation_list_response.py +0 -10
  1941. unifieddatalibrary/types/eo_observation_unvalidated_publish_params.py +0 -987
  1942. unifieddatalibrary/types/eo_observations/__init__.py +0 -10
  1943. unifieddatalibrary/types/eo_observations/eo_observation_full.py +0 -1029
  1944. unifieddatalibrary/types/eo_observations/history_aodr_params.py +0 -48
  1945. unifieddatalibrary/types/eo_observations/history_count_params.py +0 -20
  1946. unifieddatalibrary/types/eo_observations/history_list_params.py +0 -28
  1947. unifieddatalibrary/types/eo_observations/history_list_response.py +0 -10
  1948. unifieddatalibrary/types/eoobservation_tuple_params.py +0 -28
  1949. unifieddatalibrary/types/eoobservation_tuple_response.py +0 -10
  1950. unifieddatalibrary/types/eop/history_list_response.py +0 -10
  1951. unifieddatalibrary/types/eop_list_response.py +0 -10
  1952. unifieddatalibrary/types/ephemeris/attitude_data_list_response.py +0 -10
  1953. unifieddatalibrary/types/ephemeris/history_list_response.py +0 -10
  1954. unifieddatalibrary/types/ephemeris_list_response.py +0 -10
  1955. unifieddatalibrary/types/ephemeris_set_list_response.py +0 -10
  1956. unifieddatalibrary/types/ephemeris_sets/history_list_response.py +0 -10
  1957. unifieddatalibrary/types/equipment_list_response.py +0 -10
  1958. unifieddatalibrary/types/equipmentremark_count_response.py +0 -7
  1959. unifieddatalibrary/types/equipmentremark_create_bulk_params.py +0 -72
  1960. unifieddatalibrary/types/equipmentremark_create_params.py +0 -67
  1961. unifieddatalibrary/types/equipmentremark_list_response.py +0 -10
  1962. unifieddatalibrary/types/equipmentremark_tuple_params.py +0 -17
  1963. unifieddatalibrary/types/equipmentremark_tuple_response.py +0 -10
  1964. unifieddatalibrary/types/evac/history_list_response.py +0 -10
  1965. unifieddatalibrary/types/evac/tuple_list_response.py +0 -10
  1966. unifieddatalibrary/types/evac_list_response.py +0 -10
  1967. unifieddatalibrary/types/event_evolution/history_list_response.py +0 -10
  1968. unifieddatalibrary/types/featureassessment/history_count_params.py +0 -17
  1969. unifieddatalibrary/types/featureassessment/history_query_params.py +0 -25
  1970. unifieddatalibrary/types/featureassessment/history_write_aodr_params.py +0 -45
  1971. unifieddatalibrary/types/featureassessment_count_params.py +0 -17
  1972. unifieddatalibrary/types/featureassessment_count_response.py +0 -7
  1973. unifieddatalibrary/types/featureassessment_create_bulk_params.py +0 -259
  1974. unifieddatalibrary/types/featureassessment_create_params.py +0 -255
  1975. unifieddatalibrary/types/featureassessment_query_params.py +0 -17
  1976. unifieddatalibrary/types/featureassessment_query_response.py +0 -265
  1977. unifieddatalibrary/types/featureassessment_retrieve_response.py +0 -277
  1978. unifieddatalibrary/types/featureassessment_tuple_params.py +0 -25
  1979. unifieddatalibrary/types/featureassessment_tuple_response.py +0 -280
  1980. unifieddatalibrary/types/featureassessment_unvalidated_publish_params.py +0 -259
  1981. unifieddatalibrary/types/flightplan_list_response.py +0 -10
  1982. unifieddatalibrary/types/geostatus_count_params.py +0 -19
  1983. unifieddatalibrary/types/geostatus_count_response.py +0 -7
  1984. unifieddatalibrary/types/geostatus_create_bulk_params.py +0 -124
  1985. unifieddatalibrary/types/geostatus_create_params.py +0 -119
  1986. unifieddatalibrary/types/geostatus_list_params.py +0 -19
  1987. unifieddatalibrary/types/geostatus_list_response.py +0 -142
  1988. unifieddatalibrary/types/geostatus_tuple_params.py +0 -27
  1989. unifieddatalibrary/types/geostatus_tuple_response.py +0 -10
  1990. unifieddatalibrary/types/globalatmosphericmodel/history_count_params.py +0 -19
  1991. unifieddatalibrary/types/globalatmosphericmodel/history_query_params.py +0 -27
  1992. unifieddatalibrary/types/globalatmosphericmodel/history_write_aodr_params.py +0 -47
  1993. unifieddatalibrary/types/globalatmosphericmodel_count_params.py +0 -19
  1994. unifieddatalibrary/types/globalatmosphericmodel_count_response.py +0 -7
  1995. unifieddatalibrary/types/globalatmosphericmodel_query_params.py +0 -19
  1996. unifieddatalibrary/types/globalatmosphericmodel_query_response.py +0 -158
  1997. unifieddatalibrary/types/globalatmosphericmodel_retrieve_response.py +0 -155
  1998. unifieddatalibrary/types/globalatmosphericmodel_tuple_params.py +0 -27
  1999. unifieddatalibrary/types/globalatmosphericmodel_tuple_response.py +0 -158
  2000. unifieddatalibrary/types/globalatmosphericmodel_unvalidated_publish_params.py +0 -126
  2001. unifieddatalibrary/types/gnssobservationset_count_params.py +0 -20
  2002. unifieddatalibrary/types/gnssobservationset_count_response.py +0 -7
  2003. unifieddatalibrary/types/gnssobservationset_create_bulk_params.py +0 -273
  2004. unifieddatalibrary/types/gnssobservationset_list_params.py +0 -20
  2005. unifieddatalibrary/types/gnssobservationset_list_response.py +0 -296
  2006. unifieddatalibrary/types/gnssobservationset_tuple_params.py +0 -28
  2007. unifieddatalibrary/types/gnssobservationset_tuple_response.py +0 -10
  2008. unifieddatalibrary/types/gnssobservationset_unvalidated_publish_params.py +0 -273
  2009. unifieddatalibrary/types/gnssrawif_count_params.py +0 -19
  2010. unifieddatalibrary/types/gnssrawif_count_response.py +0 -7
  2011. unifieddatalibrary/types/gnssrawif_list_params.py +0 -19
  2012. unifieddatalibrary/types/gnssrawif_list_response.py +0 -281
  2013. unifieddatalibrary/types/gnssrawif_tuple_params.py +0 -27
  2014. unifieddatalibrary/types/gnssrawif_tuple_response.py +0 -10
  2015. unifieddatalibrary/types/gnssrawif_upload_zip_params.py +0 -14
  2016. unifieddatalibrary/types/groundimagery_count_params.py +0 -16
  2017. unifieddatalibrary/types/groundimagery_count_response.py +0 -7
  2018. unifieddatalibrary/types/groundimagery_create_params.py +0 -143
  2019. unifieddatalibrary/types/groundimagery_list_params.py +0 -16
  2020. unifieddatalibrary/types/groundimagery_list_response.py +0 -147
  2021. unifieddatalibrary/types/groundimagery_tuple_params.py +0 -24
  2022. unifieddatalibrary/types/groundimagery_tuple_response.py +0 -10
  2023. unifieddatalibrary/types/h3geo/history_ador_params.py +0 -47
  2024. unifieddatalibrary/types/h3geo/history_count_params.py +0 -19
  2025. unifieddatalibrary/types/h3geo/history_query_params.py +0 -27
  2026. unifieddatalibrary/types/h3geo_count_params.py +0 -19
  2027. unifieddatalibrary/types/h3geo_count_response.py +0 -7
  2028. unifieddatalibrary/types/h3geo_create_params.py +0 -197
  2029. unifieddatalibrary/types/h3geo_get_response.py +0 -241
  2030. unifieddatalibrary/types/h3geo_list_params.py +0 -19
  2031. unifieddatalibrary/types/h3geo_list_response.py +0 -99
  2032. unifieddatalibrary/types/h3geo_tuple_params.py +0 -27
  2033. unifieddatalibrary/types/h3geo_tuple_response.py +0 -244
  2034. unifieddatalibrary/types/h3geohexcell_count_params.py +0 -14
  2035. unifieddatalibrary/types/h3geohexcell_count_response.py +0 -7
  2036. unifieddatalibrary/types/h3geohexcell_list_params.py +0 -14
  2037. unifieddatalibrary/types/h3geohexcell_list_response.py +0 -144
  2038. unifieddatalibrary/types/h3geohexcell_tuple_params.py +0 -22
  2039. unifieddatalibrary/types/h3geohexcell_tuple_response.py +0 -144
  2040. unifieddatalibrary/types/ionoobservation_count_params.py +0 -16
  2041. unifieddatalibrary/types/ionoobservation_count_response.py +0 -7
  2042. unifieddatalibrary/types/ionoobservation_create_bulk_params.py +0 -979
  2043. unifieddatalibrary/types/ionoobservation_list_params.py +0 -16
  2044. unifieddatalibrary/types/ionoobservation_list_response.py +0 -1012
  2045. unifieddatalibrary/types/ionoobservation_tuple_params.py +0 -24
  2046. unifieddatalibrary/types/ionoobservation_tuple_response.py +0 -10
  2047. unifieddatalibrary/types/ionoobservation_unvalidated_publish_params.py +0 -979
  2048. unifieddatalibrary/types/launchdetection_count_response.py +0 -7
  2049. unifieddatalibrary/types/launchdetection_create_params.py +0 -116
  2050. unifieddatalibrary/types/launchdetection_get_response.py +0 -140
  2051. unifieddatalibrary/types/launchdetection_list_response.py +0 -134
  2052. unifieddatalibrary/types/launchdetection_tuple_params.py +0 -17
  2053. unifieddatalibrary/types/launchdetection_tuple_response.py +0 -143
  2054. unifieddatalibrary/types/launchdetection_update_params.py +0 -116
  2055. unifieddatalibrary/types/launchevent_count_params.py +0 -19
  2056. unifieddatalibrary/types/launchevent_count_response.py +0 -7
  2057. unifieddatalibrary/types/launchevent_create_bulk_params.py +0 -87
  2058. unifieddatalibrary/types/launchevent_create_params.py +0 -83
  2059. unifieddatalibrary/types/launchevent_get_response.py +0 -105
  2060. unifieddatalibrary/types/launchevent_list_params.py +0 -19
  2061. unifieddatalibrary/types/launchevent_list_response.py +0 -104
  2062. unifieddatalibrary/types/launchevent_tuple_params.py +0 -27
  2063. unifieddatalibrary/types/launchevent_tuple_response.py +0 -108
  2064. unifieddatalibrary/types/launchevent_unvalidated_publish_params.py +0 -87
  2065. unifieddatalibrary/types/launchsite_count_response.py +0 -7
  2066. unifieddatalibrary/types/launchsite_create_params.py +0 -60
  2067. unifieddatalibrary/types/launchsite_get_response.py +0 -195
  2068. unifieddatalibrary/types/launchsite_list_response.py +0 -80
  2069. unifieddatalibrary/types/launchsite_tuple_params.py +0 -17
  2070. unifieddatalibrary/types/launchsite_tuple_response.py +0 -200
  2071. unifieddatalibrary/types/launchsite_update_params.py +0 -60
  2072. unifieddatalibrary/types/launchsitedetail_create_params.py +0 -79
  2073. unifieddatalibrary/types/launchsitedetail_find_by_source_params.py +0 -12
  2074. unifieddatalibrary/types/launchsitedetail_find_by_source_response.py +0 -180
  2075. unifieddatalibrary/types/launchsitedetail_get_response.py +0 -113
  2076. unifieddatalibrary/types/launchsitedetail_list_response.py +0 -180
  2077. unifieddatalibrary/types/launchsitedetail_update_params.py +0 -79
  2078. unifieddatalibrary/types/launchvehicle_count_response.py +0 -7
  2079. unifieddatalibrary/types/launchvehicle_create_params.py +0 -51
  2080. unifieddatalibrary/types/launchvehicle_get_response.py +0 -490
  2081. unifieddatalibrary/types/launchvehicle_list_response.py +0 -71
  2082. unifieddatalibrary/types/launchvehicle_tuple_params.py +0 -17
  2083. unifieddatalibrary/types/launchvehicle_tuple_response.py +0 -500
  2084. unifieddatalibrary/types/launchvehicle_update_params.py +0 -51
  2085. unifieddatalibrary/types/launchvehicledetail_create_params.py +0 -197
  2086. unifieddatalibrary/types/launchvehicledetail_get_response.py +0 -239
  2087. unifieddatalibrary/types/launchvehicledetail_list_response.py +0 -215
  2088. unifieddatalibrary/types/launchvehicledetail_update_params.py +0 -197
  2089. unifieddatalibrary/types/logisticssupport/__init__.py +0 -8
  2090. unifieddatalibrary/types/logisticssupport/history_aodr_params.py +0 -39
  2091. unifieddatalibrary/types/logisticssupport/history_list_params.py +0 -17
  2092. unifieddatalibrary/types/logisticssupport/history_list_response.py +0 -614
  2093. unifieddatalibrary/types/logisticssupport_count_response.py +0 -7
  2094. unifieddatalibrary/types/logisticssupport_create_bulk_params.py +0 -637
  2095. unifieddatalibrary/types/logisticssupport_create_params.py +0 -630
  2096. unifieddatalibrary/types/logisticssupport_get_response.py +0 -608
  2097. unifieddatalibrary/types/logisticssupport_list_response.py +0 -662
  2098. unifieddatalibrary/types/logisticssupport_tuple_params.py +0 -17
  2099. unifieddatalibrary/types/logisticssupport_tuple_response.py +0 -614
  2100. unifieddatalibrary/types/logisticssupport_unvalidated_publish_params.py +0 -637
  2101. unifieddatalibrary/types/logisticssupport_update_params.py +0 -630
  2102. unifieddatalibrary/types/missionassignment/history_aodr_params.py +0 -47
  2103. unifieddatalibrary/types/missionassignment/history_count_params.py +0 -19
  2104. unifieddatalibrary/types/missionassignment/history_query_params.py +0 -27
  2105. unifieddatalibrary/types/missionassignment/history_query_response.py +0 -10
  2106. unifieddatalibrary/types/missionassignment_count_params.py +0 -19
  2107. unifieddatalibrary/types/missionassignment_count_response.py +0 -7
  2108. unifieddatalibrary/types/missionassignment_create_bulk_params.py +0 -231
  2109. unifieddatalibrary/types/missionassignment_create_params.py +0 -227
  2110. unifieddatalibrary/types/missionassignment_list_params.py +0 -19
  2111. unifieddatalibrary/types/missionassignment_list_response.py +0 -245
  2112. unifieddatalibrary/types/missionassignment_tuple_params.py +0 -27
  2113. unifieddatalibrary/types/missionassignment_tuple_response.py +0 -10
  2114. unifieddatalibrary/types/missionassignment_update_params.py +0 -227
  2115. unifieddatalibrary/types/monoradar_count_params.py +0 -19
  2116. unifieddatalibrary/types/monoradar_create_bulk_params.py +0 -285
  2117. unifieddatalibrary/types/monoradar_list_params.py +0 -19
  2118. unifieddatalibrary/types/monoradar_list_response.py +0 -296
  2119. unifieddatalibrary/types/monoradar_tuple_params.py +0 -27
  2120. unifieddatalibrary/types/monoradar_tuple_response.py +0 -10
  2121. unifieddatalibrary/types/navigationalobstruction_count_params.py +0 -25
  2122. unifieddatalibrary/types/navigationalobstruction_count_response.py +0 -7
  2123. unifieddatalibrary/types/navigationalobstruction_create_bulk_params.py +0 -387
  2124. unifieddatalibrary/types/navigationalobstruction_create_params.py +0 -383
  2125. unifieddatalibrary/types/navigationalobstruction_get_response.py +0 -421
  2126. unifieddatalibrary/types/navigationalobstruction_list_params.py +0 -25
  2127. unifieddatalibrary/types/navigationalobstruction_list_response.py +0 -415
  2128. unifieddatalibrary/types/navigationalobstruction_tuple_params.py +0 -33
  2129. unifieddatalibrary/types/navigationalobstruction_tuple_response.py +0 -424
  2130. unifieddatalibrary/types/navigationalobstruction_update_params.py +0 -383
  2131. unifieddatalibrary/types/objectofinterest_count_response.py +0 -7
  2132. unifieddatalibrary/types/objectofinterest_create_params.py +0 -234
  2133. unifieddatalibrary/types/objectofinterest_get_response.py +0 -346
  2134. unifieddatalibrary/types/objectofinterest_list_response.py +0 -242
  2135. unifieddatalibrary/types/objectofinterest_tuple_params.py +0 -17
  2136. unifieddatalibrary/types/objectofinterest_tuple_response.py +0 -353
  2137. unifieddatalibrary/types/objectofinterest_update_params.py +0 -234
  2138. unifieddatalibrary/types/observations/ecpsdr_list_response.py +0 -10
  2139. unifieddatalibrary/types/observations/rfobservation/__init__.py +0 -7
  2140. unifieddatalibrary/types/observations/rfobservation/history_aodr_params.py +0 -47
  2141. unifieddatalibrary/types/observations/rfobservation/history_list_params.py +0 -27
  2142. unifieddatalibrary/types/observations/rfobservation/history_list_response.py +0 -10
  2143. unifieddatalibrary/types/onorbit/antenna_detail_list_response.py +0 -10
  2144. unifieddatalibrary/types/passiveradarobservation/history_aodr_params.py +0 -47
  2145. unifieddatalibrary/types/passiveradarobservation/history_count_params.py +0 -19
  2146. unifieddatalibrary/types/passiveradarobservation/history_list_params.py +0 -27
  2147. unifieddatalibrary/types/passiveradarobservation/history_list_response.py +0 -10
  2148. unifieddatalibrary/types/passiveradarobservation_count_params.py +0 -19
  2149. unifieddatalibrary/types/passiveradarobservation_count_response.py +0 -7
  2150. unifieddatalibrary/types/passiveradarobservation_create_bulk_params.py +0 -303
  2151. unifieddatalibrary/types/passiveradarobservation_create_params.py +0 -299
  2152. unifieddatalibrary/types/passiveradarobservation_file_create_params.py +0 -303
  2153. unifieddatalibrary/types/passiveradarobservation_list_params.py +0 -19
  2154. unifieddatalibrary/types/passiveradarobservation_list_response.py +0 -329
  2155. unifieddatalibrary/types/passiveradarobservation_tuple_params.py +0 -27
  2156. unifieddatalibrary/types/passiveradarobservation_tuple_response.py +0 -10
  2157. unifieddatalibrary/types/personnelrecovery/history_list_response.py +0 -10
  2158. unifieddatalibrary/types/radarobservation_count_params.py +0 -19
  2159. unifieddatalibrary/types/radarobservation_create_bulk_params.py +0 -330
  2160. unifieddatalibrary/types/radarobservation_create_params.py +0 -326
  2161. unifieddatalibrary/types/radarobservation_list_params.py +0 -19
  2162. unifieddatalibrary/types/radarobservation_list_response.py +0 -351
  2163. unifieddatalibrary/types/radarobservation_tuple_params.py +0 -27
  2164. unifieddatalibrary/types/radarobservation_tuple_response.py +0 -10
  2165. unifieddatalibrary/types/radarobservation_unvalidated_publish_params.py +0 -330
  2166. unifieddatalibrary/types/rfband_count_response.py +0 -7
  2167. unifieddatalibrary/types/rfband_create_params.py +0 -124
  2168. unifieddatalibrary/types/rfband_get_response.py +0 -150
  2169. unifieddatalibrary/types/rfband_list_response.py +0 -144
  2170. unifieddatalibrary/types/rfband_tuple_params.py +0 -17
  2171. unifieddatalibrary/types/rfband_tuple_response.py +0 -153
  2172. unifieddatalibrary/types/rfband_update_params.py +0 -124
  2173. unifieddatalibrary/types/rfbandtype_count_response.py +0 -7
  2174. unifieddatalibrary/types/rfbandtype_create_params.py +0 -54
  2175. unifieddatalibrary/types/rfbandtype_get_response.py +0 -74
  2176. unifieddatalibrary/types/rfbandtype_list_response.py +0 -68
  2177. unifieddatalibrary/types/rfbandtype_tuple_params.py +0 -17
  2178. unifieddatalibrary/types/rfbandtype_tuple_response.py +0 -77
  2179. unifieddatalibrary/types/rfbandtype_update_params.py +0 -54
  2180. unifieddatalibrary/types/rfemitter_count_response.py +0 -7
  2181. unifieddatalibrary/types/rfemitter_create_params.py +0 -62
  2182. unifieddatalibrary/types/rfemitter_get_response.py +0 -262
  2183. unifieddatalibrary/types/rfemitter_list_response.py +0 -74
  2184. unifieddatalibrary/types/rfemitter_tuple_params.py +0 -17
  2185. unifieddatalibrary/types/rfemitter_tuple_response.py +0 -267
  2186. unifieddatalibrary/types/rfemitter_update_params.py +0 -62
  2187. unifieddatalibrary/types/rfemitterdetail_count_response.py +0 -7
  2188. unifieddatalibrary/types/rfemitterdetail_create_params.py +0 -141
  2189. unifieddatalibrary/types/rfemitterdetail_get_response.py +0 -182
  2190. unifieddatalibrary/types/rfemitterdetail_list_response.py +0 -160
  2191. unifieddatalibrary/types/rfemitterdetail_tuple_params.py +0 -17
  2192. unifieddatalibrary/types/rfemitterdetail_tuple_response.py +0 -185
  2193. unifieddatalibrary/types/rfemitterdetail_update_params.py +0 -141
  2194. unifieddatalibrary/types/rfobservation/__init__.py +0 -6
  2195. unifieddatalibrary/types/rfobservation/history_count_params.py +0 -19
  2196. unifieddatalibrary/types/rfobservation_count_params.py +0 -19
  2197. unifieddatalibrary/types/rfobservation_count_response.py +0 -7
  2198. unifieddatalibrary/types/rfobservation_create_bulk_params.py +0 -430
  2199. unifieddatalibrary/types/rfobservation_create_params.py +0 -426
  2200. unifieddatalibrary/types/rfobservation_list_params.py +0 -19
  2201. unifieddatalibrary/types/rfobservation_list_response.py +0 -382
  2202. unifieddatalibrary/types/rfobservation_tuple_params.py +0 -27
  2203. unifieddatalibrary/types/rfobservation_tuple_response.py +0 -395
  2204. unifieddatalibrary/types/rfobservation_unvalidated_publish_params.py +0 -430
  2205. unifieddatalibrary/types/routestat_count_response.py +0 -7
  2206. unifieddatalibrary/types/routestat_create_bulk_params.py +0 -168
  2207. unifieddatalibrary/types/routestat_create_params.py +0 -164
  2208. unifieddatalibrary/types/routestat_query_response.py +0 -189
  2209. unifieddatalibrary/types/routestat_retrieve_response.py +0 -195
  2210. unifieddatalibrary/types/routestat_tuple_params.py +0 -17
  2211. unifieddatalibrary/types/routestat_tuple_response.py +0 -198
  2212. unifieddatalibrary/types/routestat_unvalidated_publish_params.py +0 -168
  2213. unifieddatalibrary/types/routestat_update_params.py +0 -164
  2214. unifieddatalibrary/types/sarobservation/history_aodr_params.py +0 -47
  2215. unifieddatalibrary/types/sarobservation/history_count_params.py +0 -19
  2216. unifieddatalibrary/types/sarobservation/history_retrieve_params.py +0 -27
  2217. unifieddatalibrary/types/sarobservation/history_retrieve_response.py +0 -10
  2218. unifieddatalibrary/types/sarobservation_count_params.py +0 -19
  2219. unifieddatalibrary/types/sarobservation_count_response.py +0 -7
  2220. unifieddatalibrary/types/sarobservation_create_bulk_params.py +0 -349
  2221. unifieddatalibrary/types/sarobservation_create_params.py +0 -345
  2222. unifieddatalibrary/types/sarobservation_list_params.py +0 -19
  2223. unifieddatalibrary/types/sarobservation_list_response.py +0 -361
  2224. unifieddatalibrary/types/sarobservation_tuple_params.py +0 -27
  2225. unifieddatalibrary/types/sarobservation_tuple_response.py +0 -10
  2226. unifieddatalibrary/types/sarobservation_unvalidated_publish_params.py +0 -349
  2227. unifieddatalibrary/types/scs/v2_list_response.py +0 -10
  2228. unifieddatalibrary/types/sensormaintenance/history_aodr_params.py +0 -53
  2229. unifieddatalibrary/types/sensormaintenance/history_count_params.py +0 -25
  2230. unifieddatalibrary/types/sensormaintenance/history_retrieve_params.py +0 -33
  2231. unifieddatalibrary/types/sensormaintenance/history_retrieve_response.py +0 -10
  2232. unifieddatalibrary/types/sensormaintenance_count_params.py +0 -25
  2233. unifieddatalibrary/types/sensormaintenance_count_response.py +0 -7
  2234. unifieddatalibrary/types/sensormaintenance_create_bulk_params.py +0 -136
  2235. unifieddatalibrary/types/sensormaintenance_create_params.py +0 -126
  2236. unifieddatalibrary/types/sensormaintenance_current_response.py +0 -10
  2237. unifieddatalibrary/types/sensormaintenance_list_params.py +0 -25
  2238. unifieddatalibrary/types/sensormaintenance_list_response.py +0 -147
  2239. unifieddatalibrary/types/sensormaintenance_tuple_params.py +0 -33
  2240. unifieddatalibrary/types/sensormaintenance_tuple_response.py +0 -10
  2241. unifieddatalibrary/types/sensormaintenance_update_params.py +0 -126
  2242. unifieddatalibrary/types/sensorobservationtype_get_response.py +0 -63
  2243. unifieddatalibrary/types/sensorobservationtype_list_response.py +0 -37
  2244. unifieddatalibrary/types/sensorplan/history_aodr_params.py +0 -47
  2245. unifieddatalibrary/types/sensorplan/history_count_params.py +0 -19
  2246. unifieddatalibrary/types/sensorplan/history_retrieve_params.py +0 -27
  2247. unifieddatalibrary/types/sensorplan/history_retrieve_response.py +0 -10
  2248. unifieddatalibrary/types/sensorplan_count_params.py +0 -19
  2249. unifieddatalibrary/types/sensorplan_count_response.py +0 -7
  2250. unifieddatalibrary/types/sensorplan_create_params.py +0 -1458
  2251. unifieddatalibrary/types/sensorplan_list_params.py +0 -19
  2252. unifieddatalibrary/types/sensorplan_list_response.py +0 -115
  2253. unifieddatalibrary/types/sensorplan_tuple_params.py +0 -27
  2254. unifieddatalibrary/types/sensorplan_tuple_response.py +0 -10
  2255. unifieddatalibrary/types/sensorplan_unvalidated_publish_params.py +0 -1468
  2256. unifieddatalibrary/types/sensorplan_update_params.py +0 -1458
  2257. unifieddatalibrary/types/sensortype_get_response.py +0 -63
  2258. unifieddatalibrary/types/sensortype_list_response.py +0 -37
  2259. unifieddatalibrary/types/seradatacommdetail_count_response.py +0 -7
  2260. unifieddatalibrary/types/seradatacommdetail_create_params.py +0 -140
  2261. unifieddatalibrary/types/seradatacommdetail_get_response.py +0 -168
  2262. unifieddatalibrary/types/seradatacommdetail_list_response.py +0 -162
  2263. unifieddatalibrary/types/seradatacommdetail_tuple_params.py +0 -17
  2264. unifieddatalibrary/types/seradatacommdetail_tuple_response.py +0 -171
  2265. unifieddatalibrary/types/seradatacommdetail_update_params.py +0 -140
  2266. unifieddatalibrary/types/seradataearlywarning_count_response.py +0 -7
  2267. unifieddatalibrary/types/seradataearlywarning_create_params.py +0 -87
  2268. unifieddatalibrary/types/seradataearlywarning_get_response.py +0 -115
  2269. unifieddatalibrary/types/seradataearlywarning_list_response.py +0 -109
  2270. unifieddatalibrary/types/seradataearlywarning_tuple_params.py +0 -17
  2271. unifieddatalibrary/types/seradataearlywarning_tuple_response.py +0 -118
  2272. unifieddatalibrary/types/seradataearlywarning_update_params.py +0 -87
  2273. unifieddatalibrary/types/seradatanavigation_count_response.py +0 -7
  2274. unifieddatalibrary/types/seradatanavigation_create_params.py +0 -84
  2275. unifieddatalibrary/types/seradatanavigation_get_response.py +0 -110
  2276. unifieddatalibrary/types/seradatanavigation_list_response.py +0 -104
  2277. unifieddatalibrary/types/seradatanavigation_tuple_params.py +0 -17
  2278. unifieddatalibrary/types/seradatanavigation_tuple_response.py +0 -113
  2279. unifieddatalibrary/types/seradatanavigation_update_params.py +0 -84
  2280. unifieddatalibrary/types/seradataopticalpayload_count_response.py +0 -7
  2281. unifieddatalibrary/types/seradataopticalpayload_create_params.py +0 -105
  2282. unifieddatalibrary/types/seradataopticalpayload_get_response.py +0 -131
  2283. unifieddatalibrary/types/seradataopticalpayload_list_response.py +0 -125
  2284. unifieddatalibrary/types/seradataopticalpayload_tuple_params.py +0 -17
  2285. unifieddatalibrary/types/seradataopticalpayload_tuple_response.py +0 -134
  2286. unifieddatalibrary/types/seradataopticalpayload_update_params.py +0 -105
  2287. unifieddatalibrary/types/seradataradarpayload_count_response.py +0 -7
  2288. unifieddatalibrary/types/seradataradarpayload_create_params.py +0 -126
  2289. unifieddatalibrary/types/seradataradarpayload_get_response.py +0 -152
  2290. unifieddatalibrary/types/seradataradarpayload_list_response.py +0 -146
  2291. unifieddatalibrary/types/seradataradarpayload_tuple_params.py +0 -17
  2292. unifieddatalibrary/types/seradataradarpayload_tuple_response.py +0 -155
  2293. unifieddatalibrary/types/seradataradarpayload_update_params.py +0 -126
  2294. unifieddatalibrary/types/seradatasigintpayload_count_response.py +0 -7
  2295. unifieddatalibrary/types/seradatasigintpayload_create_params.py +0 -84
  2296. unifieddatalibrary/types/seradatasigintpayload_get_response.py +0 -110
  2297. unifieddatalibrary/types/seradatasigintpayload_list_response.py +0 -104
  2298. unifieddatalibrary/types/seradatasigintpayload_tuple_params.py +0 -17
  2299. unifieddatalibrary/types/seradatasigintpayload_tuple_response.py +0 -113
  2300. unifieddatalibrary/types/seradatasigintpayload_update_params.py +0 -84
  2301. unifieddatalibrary/types/seradataspacecraftdetail_count_response.py +0 -7
  2302. unifieddatalibrary/types/seradataspacecraftdetail_create_params.py +0 -322
  2303. unifieddatalibrary/types/seradataspacecraftdetail_get_response.py +0 -1982
  2304. unifieddatalibrary/types/seradataspacecraftdetail_list_response.py +0 -344
  2305. unifieddatalibrary/types/seradataspacecraftdetail_tuple_params.py +0 -17
  2306. unifieddatalibrary/types/seradataspacecraftdetail_tuple_response.py +0 -2000
  2307. unifieddatalibrary/types/seradataspacecraftdetail_update_params.py +0 -322
  2308. unifieddatalibrary/types/shared/drift_history.py +0 -65
  2309. unifieddatalibrary/types/shared/drifthistory_abridged.py +0 -65
  2310. unifieddatalibrary/types/shared/onorbit.py +0 -1799
  2311. unifieddatalibrary/types/siteremark_count_response.py +0 -7
  2312. unifieddatalibrary/types/siteremark_create_params.py +0 -67
  2313. unifieddatalibrary/types/siteremark_get_response.py +0 -84
  2314. unifieddatalibrary/types/siteremark_list_response.py +0 -87
  2315. unifieddatalibrary/types/siteremark_tuple_params.py +0 -17
  2316. unifieddatalibrary/types/siteremark_tuple_response.py +0 -87
  2317. unifieddatalibrary/types/sitestatus/__init__.py +0 -7
  2318. unifieddatalibrary/types/sitestatus/history_list_params.py +0 -17
  2319. unifieddatalibrary/types/sitestatus/history_list_response.py +0 -10
  2320. unifieddatalibrary/types/sitestatus_count_response.py +0 -7
  2321. unifieddatalibrary/types/sitestatus_create_params.py +0 -251
  2322. unifieddatalibrary/types/sitestatus_list_response.py +0 -269
  2323. unifieddatalibrary/types/sitestatus_tuple_params.py +0 -17
  2324. unifieddatalibrary/types/sitestatus_tuple_response.py +0 -10
  2325. unifieddatalibrary/types/sitestatus_update_params.py +0 -251
  2326. unifieddatalibrary/types/skyimagery/history_aodr_params.py +0 -47
  2327. unifieddatalibrary/types/skyimagery/history_count_params.py +0 -19
  2328. unifieddatalibrary/types/skyimagery/history_list_params.py +0 -27
  2329. unifieddatalibrary/types/skyimagery/history_list_response.py +0 -10
  2330. unifieddatalibrary/types/skyimagery_count_params.py +0 -19
  2331. unifieddatalibrary/types/skyimagery_count_response.py +0 -7
  2332. unifieddatalibrary/types/skyimagery_list_params.py +0 -19
  2333. unifieddatalibrary/types/skyimagery_list_response.py +0 -255
  2334. unifieddatalibrary/types/skyimagery_tuple_params.py +0 -27
  2335. unifieddatalibrary/types/skyimagery_tuple_response.py +0 -10
  2336. unifieddatalibrary/types/skyimagery_upload_zip_params.py +0 -14
  2337. unifieddatalibrary/types/soiobservationset/__init__.py +0 -10
  2338. unifieddatalibrary/types/soiobservationset/history_aodr_params.py +0 -47
  2339. unifieddatalibrary/types/soiobservationset/history_count_params.py +0 -19
  2340. unifieddatalibrary/types/soiobservationset/history_list_params.py +0 -27
  2341. unifieddatalibrary/types/soiobservationset/history_list_response.py +0 -10
  2342. unifieddatalibrary/types/soiobservationset_count_params.py +0 -19
  2343. unifieddatalibrary/types/soiobservationset_count_response.py +0 -7
  2344. unifieddatalibrary/types/soiobservationset_create_bulk_params.py +0 -832
  2345. unifieddatalibrary/types/soiobservationset_create_params.py +0 -822
  2346. unifieddatalibrary/types/soiobservationset_list_params.py +0 -19
  2347. unifieddatalibrary/types/soiobservationset_list_response.py +0 -479
  2348. unifieddatalibrary/types/soiobservationset_tuple_params.py +0 -27
  2349. unifieddatalibrary/types/soiobservationset_tuple_response.py +0 -10
  2350. unifieddatalibrary/types/soiobservationset_unvalidated_publish_params.py +0 -832
  2351. unifieddatalibrary/types/solararray_count_response.py +0 -7
  2352. unifieddatalibrary/types/solararray_create_params.py +0 -45
  2353. unifieddatalibrary/types/solararray_get_response.py +0 -79
  2354. unifieddatalibrary/types/solararray_list_response.py +0 -65
  2355. unifieddatalibrary/types/solararray_tuple_params.py +0 -17
  2356. unifieddatalibrary/types/solararray_tuple_response.py +0 -82
  2357. unifieddatalibrary/types/solararray_update_params.py +0 -45
  2358. unifieddatalibrary/types/solararraydetail_create_params.py +0 -79
  2359. unifieddatalibrary/types/solararraydetail_list_params.py +0 -30
  2360. unifieddatalibrary/types/solararraydetail_list_response.py +0 -89
  2361. unifieddatalibrary/types/solararraydetail_update_params.py +0 -79
  2362. unifieddatalibrary/types/sortieppr/__init__.py +0 -10
  2363. unifieddatalibrary/types/sortieppr/history_aodr_params.py +0 -45
  2364. unifieddatalibrary/types/sortieppr/history_count_params.py +0 -17
  2365. unifieddatalibrary/types/sortieppr/history_list_params.py +0 -25
  2366. unifieddatalibrary/types/sortieppr/history_list_response.py +0 -10
  2367. unifieddatalibrary/types/sortieppr_count_params.py +0 -17
  2368. unifieddatalibrary/types/sortieppr_count_response.py +0 -7
  2369. unifieddatalibrary/types/sortieppr_create_bulk_params.py +0 -94
  2370. unifieddatalibrary/types/sortieppr_create_params.py +0 -90
  2371. unifieddatalibrary/types/sortieppr_list_params.py +0 -17
  2372. unifieddatalibrary/types/sortieppr_list_response.py +0 -115
  2373. unifieddatalibrary/types/sortieppr_tuple_params.py +0 -25
  2374. unifieddatalibrary/types/sortieppr_tuple_response.py +0 -10
  2375. unifieddatalibrary/types/sortieppr_unvalidated_publish_params.py +0 -94
  2376. unifieddatalibrary/types/sortieppr_update_params.py +0 -90
  2377. unifieddatalibrary/types/spaceenvobservation/__init__.py +0 -10
  2378. unifieddatalibrary/types/spaceenvobservation/history_aodr_params.py +0 -47
  2379. unifieddatalibrary/types/spaceenvobservation/history_count_params.py +0 -19
  2380. unifieddatalibrary/types/spaceenvobservation/history_list_params.py +0 -27
  2381. unifieddatalibrary/types/spaceenvobservation/history_list_response.py +0 -10
  2382. unifieddatalibrary/types/spaceenvobservation_count_params.py +0 -19
  2383. unifieddatalibrary/types/spaceenvobservation_count_response.py +0 -7
  2384. unifieddatalibrary/types/spaceenvobservation_create_bulk_params.py +0 -286
  2385. unifieddatalibrary/types/spaceenvobservation_list_params.py +0 -19
  2386. unifieddatalibrary/types/spaceenvobservation_list_response.py +0 -310
  2387. unifieddatalibrary/types/spaceenvobservation_tuple_params.py +0 -27
  2388. unifieddatalibrary/types/spaceenvobservation_tuple_response.py +0 -10
  2389. unifieddatalibrary/types/spaceenvobservation_unvalidated_publish_params.py +0 -286
  2390. unifieddatalibrary/types/starcatalog/history_aodr_params.py +0 -53
  2391. unifieddatalibrary/types/starcatalog_count_params.py +0 -23
  2392. unifieddatalibrary/types/starcatalog_count_response.py +0 -7
  2393. unifieddatalibrary/types/starcatalog_create_bulk_params.py +0 -216
  2394. unifieddatalibrary/types/starcatalog_create_params.py +0 -211
  2395. unifieddatalibrary/types/starcatalog_get_response.py +0 -232
  2396. unifieddatalibrary/types/starcatalog_list_params.py +0 -23
  2397. unifieddatalibrary/types/starcatalog_list_response.py +0 -235
  2398. unifieddatalibrary/types/starcatalog_tuple_params.py +0 -31
  2399. unifieddatalibrary/types/starcatalog_tuple_response.py +0 -235
  2400. unifieddatalibrary/types/starcatalog_unvalidated_publish_params.py +0 -216
  2401. unifieddatalibrary/types/starcatalog_update_params.py +0 -211
  2402. unifieddatalibrary/types/statevector/__init__.py +0 -12
  2403. unifieddatalibrary/types/statevector/current_list_response.py +0 -10
  2404. unifieddatalibrary/types/statevector/current_tuple_params.py +0 -17
  2405. unifieddatalibrary/types/statevector/history_aodr_params.py +0 -47
  2406. unifieddatalibrary/types/statevector/history_count_params.py +0 -19
  2407. unifieddatalibrary/types/statevector/history_list_params.py +0 -27
  2408. unifieddatalibrary/types/statevector/history_list_response.py +0 -10
  2409. unifieddatalibrary/types/statevector_count_params.py +0 -19
  2410. unifieddatalibrary/types/statevector_count_response.py +0 -7
  2411. unifieddatalibrary/types/statevector_create_bulk_params.py +0 -14
  2412. unifieddatalibrary/types/statevector_create_params.py +0 -618
  2413. unifieddatalibrary/types/statevector_list_params.py +0 -19
  2414. unifieddatalibrary/types/statevector_list_response.py +0 -10
  2415. unifieddatalibrary/types/statevector_tuple_params.py +0 -27
  2416. unifieddatalibrary/types/statevector_tuple_response.py +0 -10
  2417. unifieddatalibrary/types/statevector_unvalidated_publish_params.py +0 -14
  2418. unifieddatalibrary/types/surfaceobstruction_count_response.py +0 -7
  2419. unifieddatalibrary/types/surfaceobstruction_create_params.py +0 -75
  2420. unifieddatalibrary/types/surfaceobstruction_get_response.py +0 -107
  2421. unifieddatalibrary/types/surfaceobstruction_list_response.py +0 -101
  2422. unifieddatalibrary/types/surfaceobstruction_tuple_params.py +0 -17
  2423. unifieddatalibrary/types/surfaceobstruction_tuple_response.py +0 -110
  2424. unifieddatalibrary/types/surfaceobstruction_unvalidated_publish_params.py +0 -79
  2425. unifieddatalibrary/types/surfaceobstruction_update_params.py +0 -75
  2426. unifieddatalibrary/types/swir/history_list_response.py +0 -10
  2427. unifieddatalibrary/types/taiutc/__init__.py +0 -10
  2428. unifieddatalibrary/types/taiutc/history_aodr_params.py +0 -47
  2429. unifieddatalibrary/types/taiutc/history_count_params.py +0 -19
  2430. unifieddatalibrary/types/taiutc/history_list_params.py +0 -27
  2431. unifieddatalibrary/types/taiutc/history_list_response.py +0 -10
  2432. unifieddatalibrary/types/taiutc_count_params.py +0 -19
  2433. unifieddatalibrary/types/taiutc_count_response.py +0 -7
  2434. unifieddatalibrary/types/taiutc_create_params.py +0 -66
  2435. unifieddatalibrary/types/taiutc_list_params.py +0 -19
  2436. unifieddatalibrary/types/taiutc_list_response.py +0 -84
  2437. unifieddatalibrary/types/taiutc_tuple_params.py +0 -27
  2438. unifieddatalibrary/types/taiutc_tuple_response.py +0 -10
  2439. unifieddatalibrary/types/taiutc_update_params.py +0 -66
  2440. unifieddatalibrary/types/tdoa_fdoa/diffofarrival/history_list_response.py +0 -10
  2441. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_list_response.py +0 -10
  2442. unifieddatalibrary/types/track/history_list_response.py +0 -10
  2443. unifieddatalibrary/types/trackdetail_count_params.py +0 -19
  2444. unifieddatalibrary/types/trackdetail_count_response.py +0 -7
  2445. unifieddatalibrary/types/trackdetail_create_bulk_params.py +0 -1111
  2446. unifieddatalibrary/types/trackdetail_list_params.py +0 -19
  2447. unifieddatalibrary/types/trackdetail_list_response.py +0 -1121
  2448. unifieddatalibrary/types/trackdetail_tuple_params.py +0 -27
  2449. unifieddatalibrary/types/trackdetail_tuple_response.py +0 -10
  2450. unifieddatalibrary/types/trackdetails/__init__.py +0 -10
  2451. unifieddatalibrary/types/trackdetails/history_aodr_params.py +0 -47
  2452. unifieddatalibrary/types/trackdetails/history_count_params.py +0 -19
  2453. unifieddatalibrary/types/trackdetails/history_list_params.py +0 -27
  2454. unifieddatalibrary/types/trackdetails/history_list_response.py +0 -10
  2455. unifieddatalibrary/types/trackroute/__init__.py +0 -10
  2456. unifieddatalibrary/types/trackroute/history_aodr_params.py +0 -47
  2457. unifieddatalibrary/types/trackroute/history_count_params.py +0 -19
  2458. unifieddatalibrary/types/trackroute/history_list_params.py +0 -27
  2459. unifieddatalibrary/types/trackroute/history_list_response.py +0 -10
  2460. unifieddatalibrary/types/trackroute_count_params.py +0 -19
  2461. unifieddatalibrary/types/trackroute_count_response.py +0 -7
  2462. unifieddatalibrary/types/trackroute_create_bulk_params.py +0 -276
  2463. unifieddatalibrary/types/trackroute_create_params.py +0 -272
  2464. unifieddatalibrary/types/trackroute_list_params.py +0 -19
  2465. unifieddatalibrary/types/trackroute_list_response.py +0 -314
  2466. unifieddatalibrary/types/trackroute_tuple_params.py +0 -27
  2467. unifieddatalibrary/types/trackroute_tuple_response.py +0 -10
  2468. unifieddatalibrary/types/trackroute_unvalidated_publish_params.py +0 -272
  2469. unifieddatalibrary/types/trackroute_update_params.py +0 -272
  2470. unifieddatalibrary/types/udl/__init__.py +0 -3
  2471. unifieddatalibrary/types/udl/geostatus/__init__.py +0 -10
  2472. unifieddatalibrary/types/udl/geostatus/geo_status_full.py +0 -152
  2473. unifieddatalibrary/types/udl/geostatus/history_aodr_params.py +0 -47
  2474. unifieddatalibrary/types/udl/geostatus/history_count_params.py +0 -19
  2475. unifieddatalibrary/types/udl/geostatus/history_list_params.py +0 -27
  2476. unifieddatalibrary/types/udl/geostatus/history_list_response.py +0 -10
  2477. unifieddatalibrary/types/udl/gnssobservationset/__init__.py +0 -8
  2478. unifieddatalibrary/types/udl/gnssobservationset/gnss_observation_set_full.py +0 -287
  2479. unifieddatalibrary/types/udl/gnssobservationset/history_aodr_params.py +0 -48
  2480. unifieddatalibrary/types/udl/gnssobservationset/history_list_params.py +0 -28
  2481. unifieddatalibrary/types/udl/gnssobservationset/history_list_response.py +0 -10
  2482. unifieddatalibrary/types/udl/gnssrawif/__init__.py +0 -5
  2483. unifieddatalibrary/types/udl/gnssrawif/gnss_raw_if_full.py +0 -278
  2484. unifieddatalibrary/types/udl/groundimagery/__init__.py +0 -5
  2485. unifieddatalibrary/types/udl/groundimagery/ground_imagery_full.py +0 -177
  2486. unifieddatalibrary/types/udl/hazard/__init__.py +0 -5
  2487. unifieddatalibrary/types/udl/hazard/hazard_full.py +0 -266
  2488. unifieddatalibrary/types/udl/ionoobservation/__init__.py +0 -5
  2489. unifieddatalibrary/types/udl/ionoobservation/iono_observation_full.py +0 -1000
  2490. unifieddatalibrary/types/udl/isrcollection/__init__.py +0 -5
  2491. unifieddatalibrary/types/udl/isrcollection/isr_collection_full.py +0 -606
  2492. unifieddatalibrary/types/udl/itemtracking/__init__.py +0 -5
  2493. unifieddatalibrary/types/udl/itemtracking/item_tracking_full.py +0 -130
  2494. unifieddatalibrary/types/udl/linkstatus/__init__.py +0 -5
  2495. unifieddatalibrary/types/udl/linkstatus/link_status_full.py +0 -166
  2496. unifieddatalibrary/types/udl/maneuver/__init__.py +0 -5
  2497. unifieddatalibrary/types/udl/maneuver/maneuver_full.py +0 -2445
  2498. unifieddatalibrary/types/udl/missiletrack/__init__.py +0 -5
  2499. unifieddatalibrary/types/udl/missiletrack/missile_track_full.py +0 -595
  2500. unifieddatalibrary/types/udl/missionassignment/__init__.py +0 -5
  2501. unifieddatalibrary/types/udl/missionassignment/mission_assignment_full.py +0 -251
  2502. unifieddatalibrary/types/udl/monoradar/__init__.py +0 -5
  2503. unifieddatalibrary/types/udl/monoradar/mono_radar_full.py +0 -293
  2504. unifieddatalibrary/types/udl/mti/__init__.py +0 -10
  2505. unifieddatalibrary/types/udl/mti/history_aodr_params.py +0 -44
  2506. unifieddatalibrary/types/udl/mti/history_count_params.py +0 -16
  2507. unifieddatalibrary/types/udl/mti/history_list_params.py +0 -24
  2508. unifieddatalibrary/types/udl/mti/history_list_response.py +0 -10
  2509. unifieddatalibrary/types/udl/mti/mti_full.py +0 -921
  2510. unifieddatalibrary/types/udl/notification/__init__.py +0 -10
  2511. unifieddatalibrary/types/udl/notification/history_aodr_params.py +0 -44
  2512. unifieddatalibrary/types/udl/notification/history_count_params.py +0 -16
  2513. unifieddatalibrary/types/udl/notification/history_list_params.py +0 -24
  2514. unifieddatalibrary/types/udl/notification/history_list_response.py +0 -10
  2515. unifieddatalibrary/types/udl/notification/notification_full.py +0 -84
  2516. unifieddatalibrary/types/udl/onboardnavigation/__init__.py +0 -10
  2517. unifieddatalibrary/types/udl/onboardnavigation/history_aodr_params.py +0 -47
  2518. unifieddatalibrary/types/udl/onboardnavigation/history_count_params.py +0 -19
  2519. unifieddatalibrary/types/udl/onboardnavigation/history_list_params.py +0 -27
  2520. unifieddatalibrary/types/udl/onboardnavigation/history_list_response.py +0 -10
  2521. unifieddatalibrary/types/udl/onboardnavigation/onboardnavigation_full.py +0 -143
  2522. unifieddatalibrary/types/udl/onorbitthrusterstatus/__init__.py +0 -7
  2523. unifieddatalibrary/types/udl/onorbitthrusterstatus/history_list_params.py +0 -37
  2524. unifieddatalibrary/types/udl/onorbitthrusterstatus/history_list_response.py +0 -10
  2525. unifieddatalibrary/types/udl/onorbitthrusterstatus/onorbitthrusterstatus_full.py +0 -122
  2526. unifieddatalibrary/types/udl/orbitdetermination/__init__.py +0 -5
  2527. unifieddatalibrary/types/udl/orbitdetermination/orbitdetermination_full.py +0 -1236
  2528. unifieddatalibrary/types/udl/orbittrack/__init__.py +0 -5
  2529. unifieddatalibrary/types/udl/orbittrack/orbittrack_full.py +0 -353
  2530. unifieddatalibrary/types/udl/passiveradarobservation/__init__.py +0 -5
  2531. unifieddatalibrary/types/udl/passiveradarobservation/passiveradarobservation_full.py +0 -339
  2532. unifieddatalibrary/types/udl/poi/__init__.py +0 -5
  2533. unifieddatalibrary/types/udl/poi/poi_full.py +0 -281
  2534. unifieddatalibrary/types/udl/radarobservation/__init__.py +0 -5
  2535. unifieddatalibrary/types/udl/radarobservation/radarobservation_full.py +0 -361
  2536. unifieddatalibrary/types/udl/rfobservation/__init__.py +0 -5
  2537. unifieddatalibrary/types/udl/rfobservation/rfobservationdetails_full.py +0 -455
  2538. unifieddatalibrary/types/udl/sarobservation/__init__.py +0 -5
  2539. unifieddatalibrary/types/udl/sarobservation/sarobservation_full.py +0 -377
  2540. unifieddatalibrary/types/udl/sensormaintenance/__init__.py +0 -5
  2541. unifieddatalibrary/types/udl/sensormaintenance/sensormaintenance_full.py +0 -153
  2542. unifieddatalibrary/types/udl/sensorplan/__init__.py +0 -5
  2543. unifieddatalibrary/types/udl/sensorplan/sensorplan_full.py +0 -1613
  2544. unifieddatalibrary/types/udl/sgi/__init__.py +0 -5
  2545. unifieddatalibrary/types/udl/sgi/sgi_full.py +0 -385
  2546. unifieddatalibrary/types/udl/sigact/__init__.py +0 -5
  2547. unifieddatalibrary/types/udl/sigact/sigact_full.py +0 -444
  2548. unifieddatalibrary/types/udl/sitestatus/__init__.py +0 -5
  2549. unifieddatalibrary/types/udl/sitestatus/sitestatus_full.py +0 -275
  2550. unifieddatalibrary/types/udl/skyimagery/__init__.py +0 -5
  2551. unifieddatalibrary/types/udl/skyimagery/skyimagery_full.py +0 -260
  2552. unifieddatalibrary/types/video/history_list_response.py +0 -10
  2553. unifieddatalibrary/types/weatherdata/__init__.py +0 -10
  2554. unifieddatalibrary/types/weatherdata/history_aodr_params.py +0 -47
  2555. unifieddatalibrary/types/weatherdata/history_count_params.py +0 -19
  2556. unifieddatalibrary/types/weatherdata/history_list_params.py +0 -27
  2557. unifieddatalibrary/types/weatherdata/history_list_response.py +0 -10
  2558. unifieddatalibrary/types/weatherdata_count_params.py +0 -19
  2559. unifieddatalibrary/types/weatherdata_count_response.py +0 -7
  2560. unifieddatalibrary/types/weatherdata_create_bulk_params.py +0 -228
  2561. unifieddatalibrary/types/weatherdata_create_params.py +0 -224
  2562. unifieddatalibrary/types/weatherdata_list_params.py +0 -19
  2563. unifieddatalibrary/types/weatherdata_list_response.py +0 -239
  2564. unifieddatalibrary/types/weatherdata_tuple_params.py +0 -27
  2565. unifieddatalibrary/types/weatherdata_tuple_response.py +0 -10
  2566. unifieddatalibrary/types/weatherdata_unvalidated_publish_params.py +0 -228
  2567. unifieddatalibrary/types/weatherreport/__init__.py +0 -10
  2568. unifieddatalibrary/types/weatherreport/history_aodr_params.py +0 -47
  2569. unifieddatalibrary/types/weatherreport/history_count_params.py +0 -19
  2570. unifieddatalibrary/types/weatherreport/history_list_params.py +0 -27
  2571. unifieddatalibrary/types/weatherreport/history_list_response.py +0 -10
  2572. unifieddatalibrary/types/weatherreport_count_params.py +0 -19
  2573. unifieddatalibrary/types/weatherreport_count_response.py +0 -7
  2574. unifieddatalibrary/types/weatherreport_create_params.py +0 -493
  2575. unifieddatalibrary/types/weatherreport_list_params.py +0 -19
  2576. unifieddatalibrary/types/weatherreport_list_response.py +0 -502
  2577. unifieddatalibrary/types/weatherreport_tuple_params.py +0 -27
  2578. unifieddatalibrary/types/weatherreport_tuple_response.py +0 -10
  2579. unifieddatalibrary/types/weatherreport_unvalidated_publish_params.py +0 -497
  2580. {udl_sdk-0.1.0a5.dist-info → udl_sdk-0.1.0a8.dist-info}/WHEEL +0 -0
  2581. {udl_sdk-0.1.0a5.dist-info → udl_sdk-0.1.0a8.dist-info}/licenses/LICENSE +0 -0
  2582. /unifieddatalibrary/resources/{udl/mti → mti}/__init__.py +0 -0
  2583. /unifieddatalibrary/resources/{udl/notification → notification}/__init__.py +0 -0
  2584. /unifieddatalibrary/resources/{eo_observations → observations/eo_observations}/__init__.py +0 -0
  2585. /unifieddatalibrary/resources/{udl/onboardnavigation → onboardnavigation}/__init__.py +0 -0
  2586. /unifieddatalibrary/types/{air_tasking_order_count_response.py → air_operations/air_tasking_order_count_response.py} +0 -0
  2587. /unifieddatalibrary/types/{air_tasking_order_tuple_response.py → air_operations/air_tasking_order_tuple_response.py} +0 -0
  2588. /unifieddatalibrary/types/{airfieldstatus → airfield_status}/history_count_response.py +0 -0
  2589. /unifieddatalibrary/types/{diffofarrival → diff_of_arrival}/__init__.py +0 -0
  2590. /unifieddatalibrary/types/{diffofarrival → diff_of_arrival}/history_count_response.py +0 -0
  2591. /unifieddatalibrary/types/{featureassessment → feature_assessment}/__init__.py +0 -0
  2592. /unifieddatalibrary/types/{eo_observations → feature_assessment}/history_count_response.py +0 -0
  2593. /unifieddatalibrary/types/{featureassessment → feature_assessment}/history_query_response.py +0 -0
  2594. /unifieddatalibrary/types/{featureassessment → geo_status}/history_count_response.py +0 -0
  2595. /unifieddatalibrary/types/{globalatmosphericmodel → global_atmospheric_model}/__init__.py +0 -0
  2596. /unifieddatalibrary/types/{globalatmosphericmodel → global_atmospheric_model}/history_count_response.py +0 -0
  2597. /unifieddatalibrary/types/{globalatmosphericmodel → global_atmospheric_model}/history_query_response.py +0 -0
  2598. /unifieddatalibrary/types/{h3geo → h3_geo}/__init__.py +0 -0
  2599. /unifieddatalibrary/types/{h3geo → h3_geo}/history_count_response.py +0 -0
  2600. /unifieddatalibrary/types/{h3geo → h3_geo}/history_query_response.py +0 -0
  2601. /unifieddatalibrary/types/{passiveradarobservation → logistics_support}/__init__.py +0 -0
  2602. /unifieddatalibrary/types/{logisticssupport → logistics_support}/history_count_response.py +0 -0
  2603. /unifieddatalibrary/types/{missionassignment → mission_assignment}/__init__.py +0 -0
  2604. /unifieddatalibrary/types/{missionassignment → mission_assignment}/history_count_response.py +0 -0
  2605. /unifieddatalibrary/types/{passiveradarobservation → mti}/history_count_response.py +0 -0
  2606. /unifieddatalibrary/types/{rfobservation → notification}/history_count_response.py +0 -0
  2607. /unifieddatalibrary/types/{eo_observation_count_response.py → observations/eo_observation_count_response.py} +0 -0
  2608. /unifieddatalibrary/types/{sarobservation → observations/eo_observations}/history_count_response.py +0 -0
  2609. /unifieddatalibrary/types/{monoradar_count_response.py → observations/monoradar_count_response.py} +0 -0
  2610. /unifieddatalibrary/types/{skyimagery → observations/passive_radar_observation}/__init__.py +0 -0
  2611. /unifieddatalibrary/types/{sensormaintenance → observations/passive_radar_observation}/history_count_response.py +0 -0
  2612. /unifieddatalibrary/types/{radarobservation_count_response.py → observations/radarobservation_count_response.py} +0 -0
  2613. /unifieddatalibrary/types/{sensorplan → observations/rf_observation}/history_count_response.py +0 -0
  2614. /unifieddatalibrary/types/{sitestatus → onboardnavigation}/history_count_response.py +0 -0
  2615. /unifieddatalibrary/types/{sarobservation → sar_observation}/__init__.py +0 -0
  2616. /unifieddatalibrary/types/{skyimagery → sar_observation}/history_count_response.py +0 -0
  2617. /unifieddatalibrary/types/{sensormaintenance → sensor_maintenance}/__init__.py +0 -0
  2618. /unifieddatalibrary/types/{soiobservationset → sensor_maintenance}/history_count_response.py +0 -0
  2619. /unifieddatalibrary/types/{sensorplan → sensor_plan}/__init__.py +0 -0
  2620. /unifieddatalibrary/types/{sortieppr → sensor_plan}/history_count_response.py +0 -0
  2621. /unifieddatalibrary/types/{spaceenvobservation → site_status}/history_count_response.py +0 -0
  2622. /unifieddatalibrary/types/{statevector → sky_imagery}/history_count_response.py +0 -0
  2623. /unifieddatalibrary/types/{taiutc → soi_observation_set}/history_count_response.py +0 -0
  2624. /unifieddatalibrary/types/{soiobservationset → soi_observation_set}/soi_observation_set_full.py +0 -0
  2625. /unifieddatalibrary/types/{trackdetails → sortie_ppr}/history_count_response.py +0 -0
  2626. /unifieddatalibrary/types/{sortieppr → sortie_ppr}/sortie_ppr_full.py +0 -0
  2627. /unifieddatalibrary/types/{trackroute → space_env_observation}/history_count_response.py +0 -0
  2628. /unifieddatalibrary/types/{spaceenvobservation → space_env_observation}/space_env_observation_full.py +0 -0
  2629. /unifieddatalibrary/types/{starcatalog → star_catalog}/__init__.py +0 -0
  2630. /unifieddatalibrary/types/{statevector → state_vector}/current_tuple_response.py +0 -0
  2631. /unifieddatalibrary/types/{udl/geostatus → state_vector}/history_count_response.py +0 -0
  2632. /unifieddatalibrary/types/{udl/mti → tai_utc}/history_count_response.py +0 -0
  2633. /unifieddatalibrary/types/{taiutc → tai_utc}/taiutc_full.py +0 -0
  2634. /unifieddatalibrary/types/{udl/notification → track_details}/history_count_response.py +0 -0
  2635. /unifieddatalibrary/types/{trackdetails → track_details}/track_details_full.py +0 -0
  2636. /unifieddatalibrary/types/{udl/onboardnavigation → track_route}/history_count_response.py +0 -0
  2637. /unifieddatalibrary/types/{trackroute → track_route}/track_route_full.py +0 -0
  2638. /unifieddatalibrary/types/{weatherdata → weather_data}/history_count_response.py +0 -0
  2639. /unifieddatalibrary/types/{weatherdata → weather_data}/weather_data_full.py +0 -0
  2640. /unifieddatalibrary/types/{weatherreport → weather_report}/history_count_response.py +0 -0
  2641. /unifieddatalibrary/types/{weatherreport → weather_report}/weather_report_full.py +0 -0
@@ -0,0 +1,2380 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import List, Union, Iterable
6
+ from datetime import date
7
+ from typing_extensions import Literal
8
+
9
+ import httpx
10
+
11
+ from ..types import (
12
+ navigational_obstruction_get_params,
13
+ navigational_obstruction_list_params,
14
+ navigational_obstruction_count_params,
15
+ navigational_obstruction_tuple_params,
16
+ navigational_obstruction_create_params,
17
+ navigational_obstruction_update_params,
18
+ navigational_obstruction_create_bulk_params,
19
+ )
20
+ from .._types import NOT_GIVEN, Body, Query, Headers, NoneType, NotGiven
21
+ from .._utils import maybe_transform, async_maybe_transform
22
+ from .._compat import cached_property
23
+ from .._resource import SyncAPIResource, AsyncAPIResource
24
+ from .._response import (
25
+ to_raw_response_wrapper,
26
+ to_streamed_response_wrapper,
27
+ async_to_raw_response_wrapper,
28
+ async_to_streamed_response_wrapper,
29
+ )
30
+ from ..pagination import SyncOffsetPage, AsyncOffsetPage
31
+ from .._base_client import AsyncPaginator, make_request_options
32
+ from ..types.navigational_obstruction_get_response import NavigationalObstructionGetResponse
33
+ from ..types.navigational_obstruction_list_response import NavigationalObstructionListResponse
34
+ from ..types.navigational_obstruction_tuple_response import NavigationalObstructionTupleResponse
35
+
36
+ __all__ = ["NavigationalObstructionResource", "AsyncNavigationalObstructionResource"]
37
+
38
+
39
+ class NavigationalObstructionResource(SyncAPIResource):
40
+ @cached_property
41
+ def with_raw_response(self) -> NavigationalObstructionResourceWithRawResponse:
42
+ """
43
+ This property can be used as a prefix for any HTTP method call to return
44
+ the raw response object instead of the parsed content.
45
+
46
+ For more information, see https://www.github.com/Bluestaq/udl-python-sdk#accessing-raw-response-data-eg-headers
47
+ """
48
+ return NavigationalObstructionResourceWithRawResponse(self)
49
+
50
+ @cached_property
51
+ def with_streaming_response(self) -> NavigationalObstructionResourceWithStreamingResponse:
52
+ """
53
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
54
+
55
+ For more information, see https://www.github.com/Bluestaq/udl-python-sdk#with_streaming_response
56
+ """
57
+ return NavigationalObstructionResourceWithStreamingResponse(self)
58
+
59
+ def create(
60
+ self,
61
+ *,
62
+ classification_marking: str,
63
+ cycle_date: Union[str, date],
64
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
65
+ obstacle_id: str,
66
+ obstacle_type: str,
67
+ source: str,
68
+ id: str | NotGiven = NOT_GIVEN,
69
+ act_del_code: str | NotGiven = NOT_GIVEN,
70
+ airac_cycle: int | NotGiven = NOT_GIVEN,
71
+ base_airac_cycle: int | NotGiven = NOT_GIVEN,
72
+ baseline_cutoff_date: Union[str, date] | NotGiven = NOT_GIVEN,
73
+ bound_ne_lat: float | NotGiven = NOT_GIVEN,
74
+ bound_ne_lon: float | NotGiven = NOT_GIVEN,
75
+ bound_sw_lat: float | NotGiven = NOT_GIVEN,
76
+ bound_sw_lon: float | NotGiven = NOT_GIVEN,
77
+ country_code: str | NotGiven = NOT_GIVEN,
78
+ cutoff_date: Union[str, date] | NotGiven = NOT_GIVEN,
79
+ data_set_remarks: str | NotGiven = NOT_GIVEN,
80
+ deleting_org: str | NotGiven = NOT_GIVEN,
81
+ deriving_org: str | NotGiven = NOT_GIVEN,
82
+ directivity_code: int | NotGiven = NOT_GIVEN,
83
+ elevation: float | NotGiven = NOT_GIVEN,
84
+ elevation_acc: float | NotGiven = NOT_GIVEN,
85
+ external_id: str | NotGiven = NOT_GIVEN,
86
+ facc: str | NotGiven = NOT_GIVEN,
87
+ feature_code: str | NotGiven = NOT_GIVEN,
88
+ feature_description: str | NotGiven = NOT_GIVEN,
89
+ feature_name: str | NotGiven = NOT_GIVEN,
90
+ feature_type: str | NotGiven = NOT_GIVEN,
91
+ height_agl: float | NotGiven = NOT_GIVEN,
92
+ height_agl_acc: float | NotGiven = NOT_GIVEN,
93
+ height_msl: float | NotGiven = NOT_GIVEN,
94
+ height_msl_acc: float | NotGiven = NOT_GIVEN,
95
+ horiz_acc: float | NotGiven = NOT_GIVEN,
96
+ horiz_datum_code: str | NotGiven = NOT_GIVEN,
97
+ init_record_date: Union[str, date] | NotGiven = NOT_GIVEN,
98
+ keys: List[str] | NotGiven = NOT_GIVEN,
99
+ lighting_code: str | NotGiven = NOT_GIVEN,
100
+ line_ne_lat: float | NotGiven = NOT_GIVEN,
101
+ line_ne_lon: float | NotGiven = NOT_GIVEN,
102
+ lines_filename: str | NotGiven = NOT_GIVEN,
103
+ line_sw_lat: float | NotGiven = NOT_GIVEN,
104
+ line_sw_lon: float | NotGiven = NOT_GIVEN,
105
+ min_height_agl: float | NotGiven = NOT_GIVEN,
106
+ mult_obs: str | NotGiven = NOT_GIVEN,
107
+ next_cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
108
+ num_lines: int | NotGiven = NOT_GIVEN,
109
+ num_obs: int | NotGiven = NOT_GIVEN,
110
+ num_points: int | NotGiven = NOT_GIVEN,
111
+ obstacle_remarks: str | NotGiven = NOT_GIVEN,
112
+ orig_id: str | NotGiven = NOT_GIVEN,
113
+ origin: str | NotGiven = NOT_GIVEN,
114
+ owner_country_code: str | NotGiven = NOT_GIVEN,
115
+ point_lat: float | NotGiven = NOT_GIVEN,
116
+ point_lon: float | NotGiven = NOT_GIVEN,
117
+ points_filename: str | NotGiven = NOT_GIVEN,
118
+ process_code: str | NotGiven = NOT_GIVEN,
119
+ producer: str | NotGiven = NOT_GIVEN,
120
+ province_code: str | NotGiven = NOT_GIVEN,
121
+ quality: str | NotGiven = NOT_GIVEN,
122
+ rev_date: Union[str, date] | NotGiven = NOT_GIVEN,
123
+ seg_end_point: int | NotGiven = NOT_GIVEN,
124
+ seg_num: int | NotGiven = NOT_GIVEN,
125
+ seg_start_point: int | NotGiven = NOT_GIVEN,
126
+ source_date: Union[str, date] | NotGiven = NOT_GIVEN,
127
+ surface_mat_code: str | NotGiven = NOT_GIVEN,
128
+ transaction_code: str | NotGiven = NOT_GIVEN,
129
+ validation_code: int | NotGiven = NOT_GIVEN,
130
+ values: List[str] | NotGiven = NOT_GIVEN,
131
+ vectors_filename: str | NotGiven = NOT_GIVEN,
132
+ wac: str | NotGiven = NOT_GIVEN,
133
+ wac_innr: str | NotGiven = NOT_GIVEN,
134
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
135
+ # The extra values given here take precedence over values defined on the client or passed to this method.
136
+ extra_headers: Headers | None = None,
137
+ extra_query: Query | None = None,
138
+ extra_body: Body | None = None,
139
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
140
+ ) -> None:
141
+ """
142
+ Service operation to take a single navigational obstruction record as a POST
143
+ body and ingest into the database. A specific role is required to perform this
144
+ service operation. Please contact the UDL team for assistance.
145
+
146
+ Args:
147
+ classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
148
+
149
+ cycle_date: Start date of this obstruction data set's currency, in ISO 8601 date-only
150
+ format.
151
+
152
+ data_mode:
153
+ Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
154
+
155
+ EXERCISE: Data pertaining to a government or military exercise. The data
156
+ may include both real and simulated data.
157
+
158
+ REAL: Data collected or produced that pertains to real-world objects,
159
+ events, and analysis.
160
+
161
+ SIMULATED: Synthetic data generated by a model to mimic real-world
162
+ datasets.
163
+
164
+ TEST: Specific datasets used to evaluate compliance with specifications and
165
+ requirements, and for validating technical, functional, and performance
166
+ characteristics.
167
+
168
+ obstacle_id: The ID of this obstacle.
169
+
170
+ obstacle_type: Type of obstacle (e.g. P for point, V for vector, L for line).
171
+
172
+ source: Source of the data.
173
+
174
+ id: Unique identifier of the record, auto-generated by the system.
175
+
176
+ act_del_code: Indicates if this obstacle record is Active (A) or Deleted (D).
177
+
178
+ airac_cycle: The Aeronautical Information Regulation and Control (AIRAC) cycle of this
179
+ obstruction data set. The format is YYNN where YY is the last two digits of the
180
+ year and NN is the cycle number.
181
+
182
+ base_airac_cycle: The baseline Aeronautical Information Regulation and Control (AIRAC) cycle for
183
+ change sets only. The format is YYNN where YY is the last two digits of the year
184
+ and NN is the cycle number.
185
+
186
+ baseline_cutoff_date: Earliest record date possible in this obstruction data set (not the earliest
187
+ data item), in ISO 8601 date-only format (e.g. YYYY-MM-DD). If null, this data
188
+ set is assumed to be a full data pull of holdings until the cutoffDate. If this
189
+ field is populated, this data set only contains updates since the last baseline
190
+ data set.
191
+
192
+ bound_ne_lat: WGS-84 latitude of the northeastern boundary for obstructions contained in this
193
+ data set, in degrees. -90 to 90 degrees (negative values south of equator).
194
+
195
+ bound_ne_lon: WGS-84 longitude of the northeastern boundary for obstructions contained in this
196
+ data set, in degrees. -180 to 180 degrees (negative values west of Prime
197
+ Meridian).
198
+
199
+ bound_sw_lat: WGS-84 latitude of the southwestern boundary for obstructions contained in this
200
+ data set, in degrees. -90 to 90 degrees (negative values south of equator).
201
+
202
+ bound_sw_lon: WGS-84 longitude of the southwestern boundary for obstructions contained in this
203
+ data set, in degrees. -180 to 180 degrees (negative values west of Prime
204
+ Meridian).
205
+
206
+ country_code: The DoD Standard Country Code designator for the country issuing the diplomatic
207
+ clearance. This field will be set to "OTHR" if the source value does not match a
208
+ UDL Country code value (ISO-3166-ALPHA-2).
209
+
210
+ cutoff_date: Latest record date possible in this obstruction data set (not the most recent
211
+ data item), in ISO 8601 date-only format (e.g. YYYY-MM-DD).
212
+
213
+ data_set_remarks: Remarks concerning this obstruction's data set.
214
+
215
+ deleting_org: The organization that deleted this obstacle record.
216
+
217
+ deriving_org: The organization that entered obstacle data other than the producer.
218
+
219
+ directivity_code: The side or sides of this obstruction feature which produces the greatest
220
+ reflectivity potential.
221
+
222
+ elevation: The elevation at the point obstacle's location in feet.
223
+
224
+ elevation_acc: The difference between the assigned elevation of this point and its true
225
+ elevation, in feet.
226
+
227
+ external_id: Optional obstacle ID from external systems. This field has no meaning within UDL
228
+ and is provided as a convenience for systems that require tracking of an
229
+ internal system generated ID.
230
+
231
+ facc: FACC (Feature and Attribute Coding Catalog) is a five-character code for
232
+ encoding real-world entities and objects. The first letter of the code is an
233
+ alphabetic value from "A" to "Z" which will map to a feature category. The
234
+ second character will map to a subcategory. Characters three to five are numeric
235
+ and range from 000 to 999. This value will provide a unit feature type
236
+ identification within the categories.
237
+
238
+ feature_code: Identifying code for the type of this point obstacle.
239
+
240
+ feature_description: Description of this obstacle, corresponding to the FACC (Feature and Attribute
241
+ Coding Catalog) value.
242
+
243
+ feature_name: Type name of point obstacle.
244
+
245
+ feature_type: Identifying code for the type of this point obstacle.
246
+
247
+ height_agl: The height Above Ground Level (AGL) of the point obstacle in feet.
248
+
249
+ height_agl_acc: The accuracy of the height Above Ground Level (AGL) value for this point
250
+ obstacle, in feet.
251
+
252
+ height_msl: The height Above Mean Sea Level (AMSL) of the point obstacle in feet.
253
+
254
+ height_msl_acc: The accuracy of the height Above Mean Sea Level (AMSL) value for this point
255
+ obstacle in feet.
256
+
257
+ horiz_acc: The difference between the recorded horizontal coordinates of this point
258
+ obstacle and its true position, in feet.
259
+
260
+ horiz_datum_code: Code representing the mathematical model of Earth used to calculate coordinates
261
+ for this obstacle (e.g. WGS-84, U for undetermined, etc.). US Forces use the
262
+ World Geodetic System 1984 (WGS-84), but also use maps by allied countries with
263
+ local datums.
264
+
265
+ init_record_date: Date this obstacle was initially added to the data set, in ISO 8601 date-only
266
+ format (ex. YYYY-MM-DD).
267
+
268
+ keys: This field provides an array of keys that can be added to any obstruction
269
+ feature to provide information that is not already supported. The entries in
270
+ this array must correspond to the position index in the values array. This array
271
+ must be the same length as values.
272
+
273
+ lighting_code: Code specifying if this obstacle is lit (e.g. Y = Yes, N = No, U = Unknown).
274
+
275
+ line_ne_lat: WGS-84 latitude of the northeastern point of the line, in degrees. -90 to 90
276
+ degrees (negative values south of equator).
277
+
278
+ line_ne_lon: WGS-84 longitude of the northeastern point of the line, in degrees. -180 to 180
279
+ degrees (negative values west of Prime Meridian).
280
+
281
+ lines_filename: The name of the line file associated with this obstruction data set.
282
+
283
+ line_sw_lat: WGS-84 latitude of the southwestern point of the line, in degrees. -90 to 90
284
+ degrees (negative values south of equator).
285
+
286
+ line_sw_lon: WGS-84 longitude of the southwestern point of the line, in degrees. -180 to 180
287
+ degrees (negative values west of Prime Meridian).
288
+
289
+ min_height_agl: The minimum height Above Ground Level (AGL) of the shortest obstruction
290
+ contained in this data set, in feet.
291
+
292
+ mult_obs: Indicates if the feature has multiple obstructions (e.g. S = Single, M =
293
+ Multiple, U = Undetermined).
294
+
295
+ next_cycle_date: The date after which this obstruction data set’s currency is stale and should be
296
+ refreshed, in ISO 8601 date-only format (e.g. YYYY-MM-DD).
297
+
298
+ num_lines: The number of line features associated with this obstruction data set.
299
+
300
+ num_obs: Indicates the number of obstructions associated with a feature.
301
+
302
+ num_points: The number of point features associated with this obstruction data set.
303
+
304
+ obstacle_remarks: Remarks regarding this obstacle.
305
+
306
+ orig_id: The original ID for this obstacle.
307
+
308
+ origin: Originating system or organization which produced the data, if different from
309
+ the source. The origin may be different than the source if the source was a
310
+ mediating system which forwarded the data on behalf of the origin system. If
311
+ null, the source may be assumed to be the origin.
312
+
313
+ owner_country_code: The DoD Standard Country Code designator for the country or political entity
314
+ that owns the data set associated with this obstruction. This field will be set
315
+ to "OTHR" if the source value does not match a UDL Country code value
316
+ (ISO-3166-ALPHA-2).
317
+
318
+ point_lat: WGS-84 latitude of this point obstacle, in degrees. -90 to 90 degrees (negative
319
+ values south of equator).
320
+
321
+ point_lon: WGS-84 longitude of this point obstacle, in degrees. -180 to 180 degrees
322
+ (negative values west of Prime Meridian).
323
+
324
+ points_filename: The name of the point file associated with this obstruction data set.
325
+
326
+ process_code: Code denoting the action, review, or process that updated this obstacle.
327
+
328
+ producer: Name of the agency that produced this obstruction data set.
329
+
330
+ province_code: The Federal Information Processing Standards (FIPS) state/province numeric code
331
+ of this obstacle's location.
332
+
333
+ quality: When horizontal and/or vertical accuracy requirements cannot be met because of
334
+ inadequate source material, this code indicates the quality of the data.
335
+
336
+ rev_date: Date this obstacle data was revised, in ISO 8601 date-only format (ex.
337
+ YYYY-MM-DD).
338
+
339
+ seg_end_point: ID of the end point of a line segment.
340
+
341
+ seg_num: Identifies the sequence number of a line segment.
342
+
343
+ seg_start_point: ID of the starting point of a line segment.
344
+
345
+ source_date: Source date of this obstacle data, in ISO 8601 date-only format (ex.
346
+ YYYY-MM-DD).
347
+
348
+ surface_mat_code: The surface material composition code of this point obstacle.
349
+
350
+ transaction_code: The transaction type/code for this obstacle (e.g. "D", "N", "R", "S", "V", "X").
351
+
352
+ validation_code: Method used to confirm the existence of this obstacle.
353
+
354
+ values: This field provides an array of values that can be added to any obstruction
355
+ feature to provide information that is not already supported. The entries in
356
+ this array must correspond to the position index in the keys array. This array
357
+ must be the same length as keys.
358
+
359
+ vectors_filename: The name of the vector file associated with this obstruction data set.
360
+
361
+ wac: The World Aeronautical Chart (WAC) identifier for the area in which this
362
+ obstacle is located.
363
+
364
+ wac_innr: This obstacle's World Area Code installation number (WAC-INNR).
365
+
366
+ extra_headers: Send extra headers
367
+
368
+ extra_query: Add additional query parameters to the request
369
+
370
+ extra_body: Add additional JSON properties to the request
371
+
372
+ timeout: Override the client-level default timeout for this request, in seconds
373
+ """
374
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
375
+ return self._post(
376
+ "/udl/navigationalobstruction",
377
+ body=maybe_transform(
378
+ {
379
+ "classification_marking": classification_marking,
380
+ "cycle_date": cycle_date,
381
+ "data_mode": data_mode,
382
+ "obstacle_id": obstacle_id,
383
+ "obstacle_type": obstacle_type,
384
+ "source": source,
385
+ "id": id,
386
+ "act_del_code": act_del_code,
387
+ "airac_cycle": airac_cycle,
388
+ "base_airac_cycle": base_airac_cycle,
389
+ "baseline_cutoff_date": baseline_cutoff_date,
390
+ "bound_ne_lat": bound_ne_lat,
391
+ "bound_ne_lon": bound_ne_lon,
392
+ "bound_sw_lat": bound_sw_lat,
393
+ "bound_sw_lon": bound_sw_lon,
394
+ "country_code": country_code,
395
+ "cutoff_date": cutoff_date,
396
+ "data_set_remarks": data_set_remarks,
397
+ "deleting_org": deleting_org,
398
+ "deriving_org": deriving_org,
399
+ "directivity_code": directivity_code,
400
+ "elevation": elevation,
401
+ "elevation_acc": elevation_acc,
402
+ "external_id": external_id,
403
+ "facc": facc,
404
+ "feature_code": feature_code,
405
+ "feature_description": feature_description,
406
+ "feature_name": feature_name,
407
+ "feature_type": feature_type,
408
+ "height_agl": height_agl,
409
+ "height_agl_acc": height_agl_acc,
410
+ "height_msl": height_msl,
411
+ "height_msl_acc": height_msl_acc,
412
+ "horiz_acc": horiz_acc,
413
+ "horiz_datum_code": horiz_datum_code,
414
+ "init_record_date": init_record_date,
415
+ "keys": keys,
416
+ "lighting_code": lighting_code,
417
+ "line_ne_lat": line_ne_lat,
418
+ "line_ne_lon": line_ne_lon,
419
+ "lines_filename": lines_filename,
420
+ "line_sw_lat": line_sw_lat,
421
+ "line_sw_lon": line_sw_lon,
422
+ "min_height_agl": min_height_agl,
423
+ "mult_obs": mult_obs,
424
+ "next_cycle_date": next_cycle_date,
425
+ "num_lines": num_lines,
426
+ "num_obs": num_obs,
427
+ "num_points": num_points,
428
+ "obstacle_remarks": obstacle_remarks,
429
+ "orig_id": orig_id,
430
+ "origin": origin,
431
+ "owner_country_code": owner_country_code,
432
+ "point_lat": point_lat,
433
+ "point_lon": point_lon,
434
+ "points_filename": points_filename,
435
+ "process_code": process_code,
436
+ "producer": producer,
437
+ "province_code": province_code,
438
+ "quality": quality,
439
+ "rev_date": rev_date,
440
+ "seg_end_point": seg_end_point,
441
+ "seg_num": seg_num,
442
+ "seg_start_point": seg_start_point,
443
+ "source_date": source_date,
444
+ "surface_mat_code": surface_mat_code,
445
+ "transaction_code": transaction_code,
446
+ "validation_code": validation_code,
447
+ "values": values,
448
+ "vectors_filename": vectors_filename,
449
+ "wac": wac,
450
+ "wac_innr": wac_innr,
451
+ },
452
+ navigational_obstruction_create_params.NavigationalObstructionCreateParams,
453
+ ),
454
+ options=make_request_options(
455
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
456
+ ),
457
+ cast_to=NoneType,
458
+ )
459
+
460
+ def update(
461
+ self,
462
+ path_id: str,
463
+ *,
464
+ classification_marking: str,
465
+ cycle_date: Union[str, date],
466
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
467
+ obstacle_id: str,
468
+ obstacle_type: str,
469
+ source: str,
470
+ body_id: str | NotGiven = NOT_GIVEN,
471
+ act_del_code: str | NotGiven = NOT_GIVEN,
472
+ airac_cycle: int | NotGiven = NOT_GIVEN,
473
+ base_airac_cycle: int | NotGiven = NOT_GIVEN,
474
+ baseline_cutoff_date: Union[str, date] | NotGiven = NOT_GIVEN,
475
+ bound_ne_lat: float | NotGiven = NOT_GIVEN,
476
+ bound_ne_lon: float | NotGiven = NOT_GIVEN,
477
+ bound_sw_lat: float | NotGiven = NOT_GIVEN,
478
+ bound_sw_lon: float | NotGiven = NOT_GIVEN,
479
+ country_code: str | NotGiven = NOT_GIVEN,
480
+ cutoff_date: Union[str, date] | NotGiven = NOT_GIVEN,
481
+ data_set_remarks: str | NotGiven = NOT_GIVEN,
482
+ deleting_org: str | NotGiven = NOT_GIVEN,
483
+ deriving_org: str | NotGiven = NOT_GIVEN,
484
+ directivity_code: int | NotGiven = NOT_GIVEN,
485
+ elevation: float | NotGiven = NOT_GIVEN,
486
+ elevation_acc: float | NotGiven = NOT_GIVEN,
487
+ external_id: str | NotGiven = NOT_GIVEN,
488
+ facc: str | NotGiven = NOT_GIVEN,
489
+ feature_code: str | NotGiven = NOT_GIVEN,
490
+ feature_description: str | NotGiven = NOT_GIVEN,
491
+ feature_name: str | NotGiven = NOT_GIVEN,
492
+ feature_type: str | NotGiven = NOT_GIVEN,
493
+ height_agl: float | NotGiven = NOT_GIVEN,
494
+ height_agl_acc: float | NotGiven = NOT_GIVEN,
495
+ height_msl: float | NotGiven = NOT_GIVEN,
496
+ height_msl_acc: float | NotGiven = NOT_GIVEN,
497
+ horiz_acc: float | NotGiven = NOT_GIVEN,
498
+ horiz_datum_code: str | NotGiven = NOT_GIVEN,
499
+ init_record_date: Union[str, date] | NotGiven = NOT_GIVEN,
500
+ keys: List[str] | NotGiven = NOT_GIVEN,
501
+ lighting_code: str | NotGiven = NOT_GIVEN,
502
+ line_ne_lat: float | NotGiven = NOT_GIVEN,
503
+ line_ne_lon: float | NotGiven = NOT_GIVEN,
504
+ lines_filename: str | NotGiven = NOT_GIVEN,
505
+ line_sw_lat: float | NotGiven = NOT_GIVEN,
506
+ line_sw_lon: float | NotGiven = NOT_GIVEN,
507
+ min_height_agl: float | NotGiven = NOT_GIVEN,
508
+ mult_obs: str | NotGiven = NOT_GIVEN,
509
+ next_cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
510
+ num_lines: int | NotGiven = NOT_GIVEN,
511
+ num_obs: int | NotGiven = NOT_GIVEN,
512
+ num_points: int | NotGiven = NOT_GIVEN,
513
+ obstacle_remarks: str | NotGiven = NOT_GIVEN,
514
+ orig_id: str | NotGiven = NOT_GIVEN,
515
+ origin: str | NotGiven = NOT_GIVEN,
516
+ owner_country_code: str | NotGiven = NOT_GIVEN,
517
+ point_lat: float | NotGiven = NOT_GIVEN,
518
+ point_lon: float | NotGiven = NOT_GIVEN,
519
+ points_filename: str | NotGiven = NOT_GIVEN,
520
+ process_code: str | NotGiven = NOT_GIVEN,
521
+ producer: str | NotGiven = NOT_GIVEN,
522
+ province_code: str | NotGiven = NOT_GIVEN,
523
+ quality: str | NotGiven = NOT_GIVEN,
524
+ rev_date: Union[str, date] | NotGiven = NOT_GIVEN,
525
+ seg_end_point: int | NotGiven = NOT_GIVEN,
526
+ seg_num: int | NotGiven = NOT_GIVEN,
527
+ seg_start_point: int | NotGiven = NOT_GIVEN,
528
+ source_date: Union[str, date] | NotGiven = NOT_GIVEN,
529
+ surface_mat_code: str | NotGiven = NOT_GIVEN,
530
+ transaction_code: str | NotGiven = NOT_GIVEN,
531
+ validation_code: int | NotGiven = NOT_GIVEN,
532
+ values: List[str] | NotGiven = NOT_GIVEN,
533
+ vectors_filename: str | NotGiven = NOT_GIVEN,
534
+ wac: str | NotGiven = NOT_GIVEN,
535
+ wac_innr: str | NotGiven = NOT_GIVEN,
536
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
537
+ # The extra values given here take precedence over values defined on the client or passed to this method.
538
+ extra_headers: Headers | None = None,
539
+ extra_query: Query | None = None,
540
+ extra_body: Body | None = None,
541
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
542
+ ) -> None:
543
+ """Service operation to update a single navigational obstruction record.
544
+
545
+ A specific
546
+ role is required to perform this service operation. Please contact the UDL team
547
+ for assistance.
548
+
549
+ Args:
550
+ classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
551
+
552
+ cycle_date: Start date of this obstruction data set's currency, in ISO 8601 date-only
553
+ format.
554
+
555
+ data_mode:
556
+ Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
557
+
558
+ EXERCISE: Data pertaining to a government or military exercise. The data
559
+ may include both real and simulated data.
560
+
561
+ REAL: Data collected or produced that pertains to real-world objects,
562
+ events, and analysis.
563
+
564
+ SIMULATED: Synthetic data generated by a model to mimic real-world
565
+ datasets.
566
+
567
+ TEST: Specific datasets used to evaluate compliance with specifications and
568
+ requirements, and for validating technical, functional, and performance
569
+ characteristics.
570
+
571
+ obstacle_id: The ID of this obstacle.
572
+
573
+ obstacle_type: Type of obstacle (e.g. P for point, V for vector, L for line).
574
+
575
+ source: Source of the data.
576
+
577
+ body_id: Unique identifier of the record, auto-generated by the system.
578
+
579
+ act_del_code: Indicates if this obstacle record is Active (A) or Deleted (D).
580
+
581
+ airac_cycle: The Aeronautical Information Regulation and Control (AIRAC) cycle of this
582
+ obstruction data set. The format is YYNN where YY is the last two digits of the
583
+ year and NN is the cycle number.
584
+
585
+ base_airac_cycle: The baseline Aeronautical Information Regulation and Control (AIRAC) cycle for
586
+ change sets only. The format is YYNN where YY is the last two digits of the year
587
+ and NN is the cycle number.
588
+
589
+ baseline_cutoff_date: Earliest record date possible in this obstruction data set (not the earliest
590
+ data item), in ISO 8601 date-only format (e.g. YYYY-MM-DD). If null, this data
591
+ set is assumed to be a full data pull of holdings until the cutoffDate. If this
592
+ field is populated, this data set only contains updates since the last baseline
593
+ data set.
594
+
595
+ bound_ne_lat: WGS-84 latitude of the northeastern boundary for obstructions contained in this
596
+ data set, in degrees. -90 to 90 degrees (negative values south of equator).
597
+
598
+ bound_ne_lon: WGS-84 longitude of the northeastern boundary for obstructions contained in this
599
+ data set, in degrees. -180 to 180 degrees (negative values west of Prime
600
+ Meridian).
601
+
602
+ bound_sw_lat: WGS-84 latitude of the southwestern boundary for obstructions contained in this
603
+ data set, in degrees. -90 to 90 degrees (negative values south of equator).
604
+
605
+ bound_sw_lon: WGS-84 longitude of the southwestern boundary for obstructions contained in this
606
+ data set, in degrees. -180 to 180 degrees (negative values west of Prime
607
+ Meridian).
608
+
609
+ country_code: The DoD Standard Country Code designator for the country issuing the diplomatic
610
+ clearance. This field will be set to "OTHR" if the source value does not match a
611
+ UDL Country code value (ISO-3166-ALPHA-2).
612
+
613
+ cutoff_date: Latest record date possible in this obstruction data set (not the most recent
614
+ data item), in ISO 8601 date-only format (e.g. YYYY-MM-DD).
615
+
616
+ data_set_remarks: Remarks concerning this obstruction's data set.
617
+
618
+ deleting_org: The organization that deleted this obstacle record.
619
+
620
+ deriving_org: The organization that entered obstacle data other than the producer.
621
+
622
+ directivity_code: The side or sides of this obstruction feature which produces the greatest
623
+ reflectivity potential.
624
+
625
+ elevation: The elevation at the point obstacle's location in feet.
626
+
627
+ elevation_acc: The difference between the assigned elevation of this point and its true
628
+ elevation, in feet.
629
+
630
+ external_id: Optional obstacle ID from external systems. This field has no meaning within UDL
631
+ and is provided as a convenience for systems that require tracking of an
632
+ internal system generated ID.
633
+
634
+ facc: FACC (Feature and Attribute Coding Catalog) is a five-character code for
635
+ encoding real-world entities and objects. The first letter of the code is an
636
+ alphabetic value from "A" to "Z" which will map to a feature category. The
637
+ second character will map to a subcategory. Characters three to five are numeric
638
+ and range from 000 to 999. This value will provide a unit feature type
639
+ identification within the categories.
640
+
641
+ feature_code: Identifying code for the type of this point obstacle.
642
+
643
+ feature_description: Description of this obstacle, corresponding to the FACC (Feature and Attribute
644
+ Coding Catalog) value.
645
+
646
+ feature_name: Type name of point obstacle.
647
+
648
+ feature_type: Identifying code for the type of this point obstacle.
649
+
650
+ height_agl: The height Above Ground Level (AGL) of the point obstacle in feet.
651
+
652
+ height_agl_acc: The accuracy of the height Above Ground Level (AGL) value for this point
653
+ obstacle, in feet.
654
+
655
+ height_msl: The height Above Mean Sea Level (AMSL) of the point obstacle in feet.
656
+
657
+ height_msl_acc: The accuracy of the height Above Mean Sea Level (AMSL) value for this point
658
+ obstacle in feet.
659
+
660
+ horiz_acc: The difference between the recorded horizontal coordinates of this point
661
+ obstacle and its true position, in feet.
662
+
663
+ horiz_datum_code: Code representing the mathematical model of Earth used to calculate coordinates
664
+ for this obstacle (e.g. WGS-84, U for undetermined, etc.). US Forces use the
665
+ World Geodetic System 1984 (WGS-84), but also use maps by allied countries with
666
+ local datums.
667
+
668
+ init_record_date: Date this obstacle was initially added to the data set, in ISO 8601 date-only
669
+ format (ex. YYYY-MM-DD).
670
+
671
+ keys: This field provides an array of keys that can be added to any obstruction
672
+ feature to provide information that is not already supported. The entries in
673
+ this array must correspond to the position index in the values array. This array
674
+ must be the same length as values.
675
+
676
+ lighting_code: Code specifying if this obstacle is lit (e.g. Y = Yes, N = No, U = Unknown).
677
+
678
+ line_ne_lat: WGS-84 latitude of the northeastern point of the line, in degrees. -90 to 90
679
+ degrees (negative values south of equator).
680
+
681
+ line_ne_lon: WGS-84 longitude of the northeastern point of the line, in degrees. -180 to 180
682
+ degrees (negative values west of Prime Meridian).
683
+
684
+ lines_filename: The name of the line file associated with this obstruction data set.
685
+
686
+ line_sw_lat: WGS-84 latitude of the southwestern point of the line, in degrees. -90 to 90
687
+ degrees (negative values south of equator).
688
+
689
+ line_sw_lon: WGS-84 longitude of the southwestern point of the line, in degrees. -180 to 180
690
+ degrees (negative values west of Prime Meridian).
691
+
692
+ min_height_agl: The minimum height Above Ground Level (AGL) of the shortest obstruction
693
+ contained in this data set, in feet.
694
+
695
+ mult_obs: Indicates if the feature has multiple obstructions (e.g. S = Single, M =
696
+ Multiple, U = Undetermined).
697
+
698
+ next_cycle_date: The date after which this obstruction data set’s currency is stale and should be
699
+ refreshed, in ISO 8601 date-only format (e.g. YYYY-MM-DD).
700
+
701
+ num_lines: The number of line features associated with this obstruction data set.
702
+
703
+ num_obs: Indicates the number of obstructions associated with a feature.
704
+
705
+ num_points: The number of point features associated with this obstruction data set.
706
+
707
+ obstacle_remarks: Remarks regarding this obstacle.
708
+
709
+ orig_id: The original ID for this obstacle.
710
+
711
+ origin: Originating system or organization which produced the data, if different from
712
+ the source. The origin may be different than the source if the source was a
713
+ mediating system which forwarded the data on behalf of the origin system. If
714
+ null, the source may be assumed to be the origin.
715
+
716
+ owner_country_code: The DoD Standard Country Code designator for the country or political entity
717
+ that owns the data set associated with this obstruction. This field will be set
718
+ to "OTHR" if the source value does not match a UDL Country code value
719
+ (ISO-3166-ALPHA-2).
720
+
721
+ point_lat: WGS-84 latitude of this point obstacle, in degrees. -90 to 90 degrees (negative
722
+ values south of equator).
723
+
724
+ point_lon: WGS-84 longitude of this point obstacle, in degrees. -180 to 180 degrees
725
+ (negative values west of Prime Meridian).
726
+
727
+ points_filename: The name of the point file associated with this obstruction data set.
728
+
729
+ process_code: Code denoting the action, review, or process that updated this obstacle.
730
+
731
+ producer: Name of the agency that produced this obstruction data set.
732
+
733
+ province_code: The Federal Information Processing Standards (FIPS) state/province numeric code
734
+ of this obstacle's location.
735
+
736
+ quality: When horizontal and/or vertical accuracy requirements cannot be met because of
737
+ inadequate source material, this code indicates the quality of the data.
738
+
739
+ rev_date: Date this obstacle data was revised, in ISO 8601 date-only format (ex.
740
+ YYYY-MM-DD).
741
+
742
+ seg_end_point: ID of the end point of a line segment.
743
+
744
+ seg_num: Identifies the sequence number of a line segment.
745
+
746
+ seg_start_point: ID of the starting point of a line segment.
747
+
748
+ source_date: Source date of this obstacle data, in ISO 8601 date-only format (ex.
749
+ YYYY-MM-DD).
750
+
751
+ surface_mat_code: The surface material composition code of this point obstacle.
752
+
753
+ transaction_code: The transaction type/code for this obstacle (e.g. "D", "N", "R", "S", "V", "X").
754
+
755
+ validation_code: Method used to confirm the existence of this obstacle.
756
+
757
+ values: This field provides an array of values that can be added to any obstruction
758
+ feature to provide information that is not already supported. The entries in
759
+ this array must correspond to the position index in the keys array. This array
760
+ must be the same length as keys.
761
+
762
+ vectors_filename: The name of the vector file associated with this obstruction data set.
763
+
764
+ wac: The World Aeronautical Chart (WAC) identifier for the area in which this
765
+ obstacle is located.
766
+
767
+ wac_innr: This obstacle's World Area Code installation number (WAC-INNR).
768
+
769
+ extra_headers: Send extra headers
770
+
771
+ extra_query: Add additional query parameters to the request
772
+
773
+ extra_body: Add additional JSON properties to the request
774
+
775
+ timeout: Override the client-level default timeout for this request, in seconds
776
+ """
777
+ if not path_id:
778
+ raise ValueError(f"Expected a non-empty value for `path_id` but received {path_id!r}")
779
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
780
+ return self._put(
781
+ f"/udl/navigationalobstruction/{path_id}",
782
+ body=maybe_transform(
783
+ {
784
+ "classification_marking": classification_marking,
785
+ "cycle_date": cycle_date,
786
+ "data_mode": data_mode,
787
+ "obstacle_id": obstacle_id,
788
+ "obstacle_type": obstacle_type,
789
+ "source": source,
790
+ "body_id": body_id,
791
+ "act_del_code": act_del_code,
792
+ "airac_cycle": airac_cycle,
793
+ "base_airac_cycle": base_airac_cycle,
794
+ "baseline_cutoff_date": baseline_cutoff_date,
795
+ "bound_ne_lat": bound_ne_lat,
796
+ "bound_ne_lon": bound_ne_lon,
797
+ "bound_sw_lat": bound_sw_lat,
798
+ "bound_sw_lon": bound_sw_lon,
799
+ "country_code": country_code,
800
+ "cutoff_date": cutoff_date,
801
+ "data_set_remarks": data_set_remarks,
802
+ "deleting_org": deleting_org,
803
+ "deriving_org": deriving_org,
804
+ "directivity_code": directivity_code,
805
+ "elevation": elevation,
806
+ "elevation_acc": elevation_acc,
807
+ "external_id": external_id,
808
+ "facc": facc,
809
+ "feature_code": feature_code,
810
+ "feature_description": feature_description,
811
+ "feature_name": feature_name,
812
+ "feature_type": feature_type,
813
+ "height_agl": height_agl,
814
+ "height_agl_acc": height_agl_acc,
815
+ "height_msl": height_msl,
816
+ "height_msl_acc": height_msl_acc,
817
+ "horiz_acc": horiz_acc,
818
+ "horiz_datum_code": horiz_datum_code,
819
+ "init_record_date": init_record_date,
820
+ "keys": keys,
821
+ "lighting_code": lighting_code,
822
+ "line_ne_lat": line_ne_lat,
823
+ "line_ne_lon": line_ne_lon,
824
+ "lines_filename": lines_filename,
825
+ "line_sw_lat": line_sw_lat,
826
+ "line_sw_lon": line_sw_lon,
827
+ "min_height_agl": min_height_agl,
828
+ "mult_obs": mult_obs,
829
+ "next_cycle_date": next_cycle_date,
830
+ "num_lines": num_lines,
831
+ "num_obs": num_obs,
832
+ "num_points": num_points,
833
+ "obstacle_remarks": obstacle_remarks,
834
+ "orig_id": orig_id,
835
+ "origin": origin,
836
+ "owner_country_code": owner_country_code,
837
+ "point_lat": point_lat,
838
+ "point_lon": point_lon,
839
+ "points_filename": points_filename,
840
+ "process_code": process_code,
841
+ "producer": producer,
842
+ "province_code": province_code,
843
+ "quality": quality,
844
+ "rev_date": rev_date,
845
+ "seg_end_point": seg_end_point,
846
+ "seg_num": seg_num,
847
+ "seg_start_point": seg_start_point,
848
+ "source_date": source_date,
849
+ "surface_mat_code": surface_mat_code,
850
+ "transaction_code": transaction_code,
851
+ "validation_code": validation_code,
852
+ "values": values,
853
+ "vectors_filename": vectors_filename,
854
+ "wac": wac,
855
+ "wac_innr": wac_innr,
856
+ },
857
+ navigational_obstruction_update_params.NavigationalObstructionUpdateParams,
858
+ ),
859
+ options=make_request_options(
860
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
861
+ ),
862
+ cast_to=NoneType,
863
+ )
864
+
865
+ def list(
866
+ self,
867
+ *,
868
+ cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
869
+ first_result: int | NotGiven = NOT_GIVEN,
870
+ max_results: int | NotGiven = NOT_GIVEN,
871
+ obstacle_id: str | NotGiven = NOT_GIVEN,
872
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
873
+ # The extra values given here take precedence over values defined on the client or passed to this method.
874
+ extra_headers: Headers | None = None,
875
+ extra_query: Query | None = None,
876
+ extra_body: Body | None = None,
877
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
878
+ ) -> SyncOffsetPage[NavigationalObstructionListResponse]:
879
+ """
880
+ Service operation to dynamically query data by a variety of query parameters not
881
+ specified in this API documentation. See the queryhelp operation
882
+ (/udl/<datatype>/queryhelp) for more details on valid/required query
883
+ parameter information.
884
+
885
+ Args:
886
+ cycle_date: (One or more of fields 'cycleDate, obstacleId' are required.) Start date of this
887
+ obstruction data set's currency, in ISO 8601 date-only format. (YYYY-MM-DD)
888
+
889
+ obstacle_id: (One or more of fields 'cycleDate, obstacleId' are required.) The ID of this
890
+ obstacle.
891
+
892
+ extra_headers: Send extra headers
893
+
894
+ extra_query: Add additional query parameters to the request
895
+
896
+ extra_body: Add additional JSON properties to the request
897
+
898
+ timeout: Override the client-level default timeout for this request, in seconds
899
+ """
900
+ return self._get_api_list(
901
+ "/udl/navigationalobstruction",
902
+ page=SyncOffsetPage[NavigationalObstructionListResponse],
903
+ options=make_request_options(
904
+ extra_headers=extra_headers,
905
+ extra_query=extra_query,
906
+ extra_body=extra_body,
907
+ timeout=timeout,
908
+ query=maybe_transform(
909
+ {
910
+ "cycle_date": cycle_date,
911
+ "first_result": first_result,
912
+ "max_results": max_results,
913
+ "obstacle_id": obstacle_id,
914
+ },
915
+ navigational_obstruction_list_params.NavigationalObstructionListParams,
916
+ ),
917
+ ),
918
+ model=NavigationalObstructionListResponse,
919
+ )
920
+
921
+ def count(
922
+ self,
923
+ *,
924
+ cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
925
+ first_result: int | NotGiven = NOT_GIVEN,
926
+ max_results: int | NotGiven = NOT_GIVEN,
927
+ obstacle_id: str | NotGiven = NOT_GIVEN,
928
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
929
+ # The extra values given here take precedence over values defined on the client or passed to this method.
930
+ extra_headers: Headers | None = None,
931
+ extra_query: Query | None = None,
932
+ extra_body: Body | None = None,
933
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
934
+ ) -> str:
935
+ """
936
+ Service operation to return the count of records satisfying the specified query
937
+ parameters. This operation is useful to determine how many records pass a
938
+ particular query criteria without retrieving large amounts of data. See the
939
+ queryhelp operation (/udl/<datatype>/queryhelp) for more details on
940
+ valid/required query parameter information.
941
+
942
+ Args:
943
+ cycle_date: (One or more of fields 'cycleDate, obstacleId' are required.) Start date of this
944
+ obstruction data set's currency, in ISO 8601 date-only format. (YYYY-MM-DD)
945
+
946
+ obstacle_id: (One or more of fields 'cycleDate, obstacleId' are required.) The ID of this
947
+ obstacle.
948
+
949
+ extra_headers: Send extra headers
950
+
951
+ extra_query: Add additional query parameters to the request
952
+
953
+ extra_body: Add additional JSON properties to the request
954
+
955
+ timeout: Override the client-level default timeout for this request, in seconds
956
+ """
957
+ extra_headers = {"Accept": "text/plain", **(extra_headers or {})}
958
+ return self._get(
959
+ "/udl/navigationalobstruction/count",
960
+ options=make_request_options(
961
+ extra_headers=extra_headers,
962
+ extra_query=extra_query,
963
+ extra_body=extra_body,
964
+ timeout=timeout,
965
+ query=maybe_transform(
966
+ {
967
+ "cycle_date": cycle_date,
968
+ "first_result": first_result,
969
+ "max_results": max_results,
970
+ "obstacle_id": obstacle_id,
971
+ },
972
+ navigational_obstruction_count_params.NavigationalObstructionCountParams,
973
+ ),
974
+ ),
975
+ cast_to=str,
976
+ )
977
+
978
+ def create_bulk(
979
+ self,
980
+ *,
981
+ body: Iterable[navigational_obstruction_create_bulk_params.Body],
982
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
983
+ # The extra values given here take precedence over values defined on the client or passed to this method.
984
+ extra_headers: Headers | None = None,
985
+ extra_query: Query | None = None,
986
+ extra_body: Body | None = None,
987
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
988
+ ) -> None:
989
+ """
990
+ Service operation intended for initial integration only, to take a list of
991
+ navigational obstruction records as a POST body and ingest into the database.
992
+ This operation is not intended to be used for automated feeds into UDL. Data
993
+ providers should contact the UDL team for specific role assignments and for
994
+ instructions on setting up a permanent feed through an alternate mechanism.
995
+
996
+ Args:
997
+ extra_headers: Send extra headers
998
+
999
+ extra_query: Add additional query parameters to the request
1000
+
1001
+ extra_body: Add additional JSON properties to the request
1002
+
1003
+ timeout: Override the client-level default timeout for this request, in seconds
1004
+ """
1005
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
1006
+ return self._post(
1007
+ "/udl/navigationalobstruction/createBulk",
1008
+ body=maybe_transform(body, Iterable[navigational_obstruction_create_bulk_params.Body]),
1009
+ options=make_request_options(
1010
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1011
+ ),
1012
+ cast_to=NoneType,
1013
+ )
1014
+
1015
+ def get(
1016
+ self,
1017
+ id: str,
1018
+ *,
1019
+ first_result: int | NotGiven = NOT_GIVEN,
1020
+ max_results: int | NotGiven = NOT_GIVEN,
1021
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1022
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1023
+ extra_headers: Headers | None = None,
1024
+ extra_query: Query | None = None,
1025
+ extra_body: Body | None = None,
1026
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1027
+ ) -> NavigationalObstructionGetResponse:
1028
+ """
1029
+ Service operation to get a single navigational obstruction record by its unique
1030
+ ID passed as a path parameter.
1031
+
1032
+ Args:
1033
+ extra_headers: Send extra headers
1034
+
1035
+ extra_query: Add additional query parameters to the request
1036
+
1037
+ extra_body: Add additional JSON properties to the request
1038
+
1039
+ timeout: Override the client-level default timeout for this request, in seconds
1040
+ """
1041
+ if not id:
1042
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
1043
+ return self._get(
1044
+ f"/udl/navigationalobstruction/{id}",
1045
+ options=make_request_options(
1046
+ extra_headers=extra_headers,
1047
+ extra_query=extra_query,
1048
+ extra_body=extra_body,
1049
+ timeout=timeout,
1050
+ query=maybe_transform(
1051
+ {
1052
+ "first_result": first_result,
1053
+ "max_results": max_results,
1054
+ },
1055
+ navigational_obstruction_get_params.NavigationalObstructionGetParams,
1056
+ ),
1057
+ ),
1058
+ cast_to=NavigationalObstructionGetResponse,
1059
+ )
1060
+
1061
+ def queryhelp(
1062
+ self,
1063
+ *,
1064
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1065
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1066
+ extra_headers: Headers | None = None,
1067
+ extra_query: Query | None = None,
1068
+ extra_body: Body | None = None,
1069
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1070
+ ) -> None:
1071
+ """
1072
+ Service operation to provide detailed information on available dynamic query
1073
+ parameters for a particular data type.
1074
+ """
1075
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
1076
+ return self._get(
1077
+ "/udl/navigationalobstruction/queryhelp",
1078
+ options=make_request_options(
1079
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1080
+ ),
1081
+ cast_to=NoneType,
1082
+ )
1083
+
1084
+ def tuple(
1085
+ self,
1086
+ *,
1087
+ columns: str,
1088
+ cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
1089
+ first_result: int | NotGiven = NOT_GIVEN,
1090
+ max_results: int | NotGiven = NOT_GIVEN,
1091
+ obstacle_id: str | NotGiven = NOT_GIVEN,
1092
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1093
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1094
+ extra_headers: Headers | None = None,
1095
+ extra_query: Query | None = None,
1096
+ extra_body: Body | None = None,
1097
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1098
+ ) -> NavigationalObstructionTupleResponse:
1099
+ """
1100
+ Service operation to dynamically query data and only return specified
1101
+ columns/fields. Requested columns are specified by the 'columns' query parameter
1102
+ and should be a comma separated list of valid fields for the specified data
1103
+ type. classificationMarking is always returned. See the queryhelp operation
1104
+ (/udl/<datatype>/queryhelp) for more details on valid/required query parameter
1105
+ information. An example URI: /udl/elset/tuple?columns=satNo,period&epoch=>now-5
1106
+ hours would return the satNo and period of elsets with an epoch greater than 5
1107
+ hours ago.
1108
+
1109
+ Args:
1110
+ columns: Comma-separated list of valid field names for this data type to be returned in
1111
+ the response. Only the fields specified will be returned as well as the
1112
+ classification marking of the data, if applicable. See the ‘queryhelp’ operation
1113
+ for a complete list of possible fields.
1114
+
1115
+ cycle_date: (One or more of fields 'cycleDate, obstacleId' are required.) Start date of this
1116
+ obstruction data set's currency, in ISO 8601 date-only format. (YYYY-MM-DD)
1117
+
1118
+ obstacle_id: (One or more of fields 'cycleDate, obstacleId' are required.) The ID of this
1119
+ obstacle.
1120
+
1121
+ extra_headers: Send extra headers
1122
+
1123
+ extra_query: Add additional query parameters to the request
1124
+
1125
+ extra_body: Add additional JSON properties to the request
1126
+
1127
+ timeout: Override the client-level default timeout for this request, in seconds
1128
+ """
1129
+ return self._get(
1130
+ "/udl/navigationalobstruction/tuple",
1131
+ options=make_request_options(
1132
+ extra_headers=extra_headers,
1133
+ extra_query=extra_query,
1134
+ extra_body=extra_body,
1135
+ timeout=timeout,
1136
+ query=maybe_transform(
1137
+ {
1138
+ "columns": columns,
1139
+ "cycle_date": cycle_date,
1140
+ "first_result": first_result,
1141
+ "max_results": max_results,
1142
+ "obstacle_id": obstacle_id,
1143
+ },
1144
+ navigational_obstruction_tuple_params.NavigationalObstructionTupleParams,
1145
+ ),
1146
+ ),
1147
+ cast_to=NavigationalObstructionTupleResponse,
1148
+ )
1149
+
1150
+
1151
+ class AsyncNavigationalObstructionResource(AsyncAPIResource):
1152
+ @cached_property
1153
+ def with_raw_response(self) -> AsyncNavigationalObstructionResourceWithRawResponse:
1154
+ """
1155
+ This property can be used as a prefix for any HTTP method call to return
1156
+ the raw response object instead of the parsed content.
1157
+
1158
+ For more information, see https://www.github.com/Bluestaq/udl-python-sdk#accessing-raw-response-data-eg-headers
1159
+ """
1160
+ return AsyncNavigationalObstructionResourceWithRawResponse(self)
1161
+
1162
+ @cached_property
1163
+ def with_streaming_response(self) -> AsyncNavigationalObstructionResourceWithStreamingResponse:
1164
+ """
1165
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
1166
+
1167
+ For more information, see https://www.github.com/Bluestaq/udl-python-sdk#with_streaming_response
1168
+ """
1169
+ return AsyncNavigationalObstructionResourceWithStreamingResponse(self)
1170
+
1171
+ async def create(
1172
+ self,
1173
+ *,
1174
+ classification_marking: str,
1175
+ cycle_date: Union[str, date],
1176
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
1177
+ obstacle_id: str,
1178
+ obstacle_type: str,
1179
+ source: str,
1180
+ id: str | NotGiven = NOT_GIVEN,
1181
+ act_del_code: str | NotGiven = NOT_GIVEN,
1182
+ airac_cycle: int | NotGiven = NOT_GIVEN,
1183
+ base_airac_cycle: int | NotGiven = NOT_GIVEN,
1184
+ baseline_cutoff_date: Union[str, date] | NotGiven = NOT_GIVEN,
1185
+ bound_ne_lat: float | NotGiven = NOT_GIVEN,
1186
+ bound_ne_lon: float | NotGiven = NOT_GIVEN,
1187
+ bound_sw_lat: float | NotGiven = NOT_GIVEN,
1188
+ bound_sw_lon: float | NotGiven = NOT_GIVEN,
1189
+ country_code: str | NotGiven = NOT_GIVEN,
1190
+ cutoff_date: Union[str, date] | NotGiven = NOT_GIVEN,
1191
+ data_set_remarks: str | NotGiven = NOT_GIVEN,
1192
+ deleting_org: str | NotGiven = NOT_GIVEN,
1193
+ deriving_org: str | NotGiven = NOT_GIVEN,
1194
+ directivity_code: int | NotGiven = NOT_GIVEN,
1195
+ elevation: float | NotGiven = NOT_GIVEN,
1196
+ elevation_acc: float | NotGiven = NOT_GIVEN,
1197
+ external_id: str | NotGiven = NOT_GIVEN,
1198
+ facc: str | NotGiven = NOT_GIVEN,
1199
+ feature_code: str | NotGiven = NOT_GIVEN,
1200
+ feature_description: str | NotGiven = NOT_GIVEN,
1201
+ feature_name: str | NotGiven = NOT_GIVEN,
1202
+ feature_type: str | NotGiven = NOT_GIVEN,
1203
+ height_agl: float | NotGiven = NOT_GIVEN,
1204
+ height_agl_acc: float | NotGiven = NOT_GIVEN,
1205
+ height_msl: float | NotGiven = NOT_GIVEN,
1206
+ height_msl_acc: float | NotGiven = NOT_GIVEN,
1207
+ horiz_acc: float | NotGiven = NOT_GIVEN,
1208
+ horiz_datum_code: str | NotGiven = NOT_GIVEN,
1209
+ init_record_date: Union[str, date] | NotGiven = NOT_GIVEN,
1210
+ keys: List[str] | NotGiven = NOT_GIVEN,
1211
+ lighting_code: str | NotGiven = NOT_GIVEN,
1212
+ line_ne_lat: float | NotGiven = NOT_GIVEN,
1213
+ line_ne_lon: float | NotGiven = NOT_GIVEN,
1214
+ lines_filename: str | NotGiven = NOT_GIVEN,
1215
+ line_sw_lat: float | NotGiven = NOT_GIVEN,
1216
+ line_sw_lon: float | NotGiven = NOT_GIVEN,
1217
+ min_height_agl: float | NotGiven = NOT_GIVEN,
1218
+ mult_obs: str | NotGiven = NOT_GIVEN,
1219
+ next_cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
1220
+ num_lines: int | NotGiven = NOT_GIVEN,
1221
+ num_obs: int | NotGiven = NOT_GIVEN,
1222
+ num_points: int | NotGiven = NOT_GIVEN,
1223
+ obstacle_remarks: str | NotGiven = NOT_GIVEN,
1224
+ orig_id: str | NotGiven = NOT_GIVEN,
1225
+ origin: str | NotGiven = NOT_GIVEN,
1226
+ owner_country_code: str | NotGiven = NOT_GIVEN,
1227
+ point_lat: float | NotGiven = NOT_GIVEN,
1228
+ point_lon: float | NotGiven = NOT_GIVEN,
1229
+ points_filename: str | NotGiven = NOT_GIVEN,
1230
+ process_code: str | NotGiven = NOT_GIVEN,
1231
+ producer: str | NotGiven = NOT_GIVEN,
1232
+ province_code: str | NotGiven = NOT_GIVEN,
1233
+ quality: str | NotGiven = NOT_GIVEN,
1234
+ rev_date: Union[str, date] | NotGiven = NOT_GIVEN,
1235
+ seg_end_point: int | NotGiven = NOT_GIVEN,
1236
+ seg_num: int | NotGiven = NOT_GIVEN,
1237
+ seg_start_point: int | NotGiven = NOT_GIVEN,
1238
+ source_date: Union[str, date] | NotGiven = NOT_GIVEN,
1239
+ surface_mat_code: str | NotGiven = NOT_GIVEN,
1240
+ transaction_code: str | NotGiven = NOT_GIVEN,
1241
+ validation_code: int | NotGiven = NOT_GIVEN,
1242
+ values: List[str] | NotGiven = NOT_GIVEN,
1243
+ vectors_filename: str | NotGiven = NOT_GIVEN,
1244
+ wac: str | NotGiven = NOT_GIVEN,
1245
+ wac_innr: str | NotGiven = NOT_GIVEN,
1246
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1247
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1248
+ extra_headers: Headers | None = None,
1249
+ extra_query: Query | None = None,
1250
+ extra_body: Body | None = None,
1251
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1252
+ ) -> None:
1253
+ """
1254
+ Service operation to take a single navigational obstruction record as a POST
1255
+ body and ingest into the database. A specific role is required to perform this
1256
+ service operation. Please contact the UDL team for assistance.
1257
+
1258
+ Args:
1259
+ classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
1260
+
1261
+ cycle_date: Start date of this obstruction data set's currency, in ISO 8601 date-only
1262
+ format.
1263
+
1264
+ data_mode:
1265
+ Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
1266
+
1267
+ EXERCISE:&nbsp;Data pertaining to a government or military exercise. The data
1268
+ may include both real and simulated data.
1269
+
1270
+ REAL:&nbsp;Data collected or produced that pertains to real-world objects,
1271
+ events, and analysis.
1272
+
1273
+ SIMULATED:&nbsp;Synthetic data generated by a model to mimic real-world
1274
+ datasets.
1275
+
1276
+ TEST:&nbsp;Specific datasets used to evaluate compliance with specifications and
1277
+ requirements, and for validating technical, functional, and performance
1278
+ characteristics.
1279
+
1280
+ obstacle_id: The ID of this obstacle.
1281
+
1282
+ obstacle_type: Type of obstacle (e.g. P for point, V for vector, L for line).
1283
+
1284
+ source: Source of the data.
1285
+
1286
+ id: Unique identifier of the record, auto-generated by the system.
1287
+
1288
+ act_del_code: Indicates if this obstacle record is Active (A) or Deleted (D).
1289
+
1290
+ airac_cycle: The Aeronautical Information Regulation and Control (AIRAC) cycle of this
1291
+ obstruction data set. The format is YYNN where YY is the last two digits of the
1292
+ year and NN is the cycle number.
1293
+
1294
+ base_airac_cycle: The baseline Aeronautical Information Regulation and Control (AIRAC) cycle for
1295
+ change sets only. The format is YYNN where YY is the last two digits of the year
1296
+ and NN is the cycle number.
1297
+
1298
+ baseline_cutoff_date: Earliest record date possible in this obstruction data set (not the earliest
1299
+ data item), in ISO 8601 date-only format (e.g. YYYY-MM-DD). If null, this data
1300
+ set is assumed to be a full data pull of holdings until the cutoffDate. If this
1301
+ field is populated, this data set only contains updates since the last baseline
1302
+ data set.
1303
+
1304
+ bound_ne_lat: WGS-84 latitude of the northeastern boundary for obstructions contained in this
1305
+ data set, in degrees. -90 to 90 degrees (negative values south of equator).
1306
+
1307
+ bound_ne_lon: WGS-84 longitude of the northeastern boundary for obstructions contained in this
1308
+ data set, in degrees. -180 to 180 degrees (negative values west of Prime
1309
+ Meridian).
1310
+
1311
+ bound_sw_lat: WGS-84 latitude of the southwestern boundary for obstructions contained in this
1312
+ data set, in degrees. -90 to 90 degrees (negative values south of equator).
1313
+
1314
+ bound_sw_lon: WGS-84 longitude of the southwestern boundary for obstructions contained in this
1315
+ data set, in degrees. -180 to 180 degrees (negative values west of Prime
1316
+ Meridian).
1317
+
1318
+ country_code: The DoD Standard Country Code designator for the country issuing the diplomatic
1319
+ clearance. This field will be set to "OTHR" if the source value does not match a
1320
+ UDL Country code value (ISO-3166-ALPHA-2).
1321
+
1322
+ cutoff_date: Latest record date possible in this obstruction data set (not the most recent
1323
+ data item), in ISO 8601 date-only format (e.g. YYYY-MM-DD).
1324
+
1325
+ data_set_remarks: Remarks concerning this obstruction's data set.
1326
+
1327
+ deleting_org: The organization that deleted this obstacle record.
1328
+
1329
+ deriving_org: The organization that entered obstacle data other than the producer.
1330
+
1331
+ directivity_code: The side or sides of this obstruction feature which produces the greatest
1332
+ reflectivity potential.
1333
+
1334
+ elevation: The elevation at the point obstacle's location in feet.
1335
+
1336
+ elevation_acc: The difference between the assigned elevation of this point and its true
1337
+ elevation, in feet.
1338
+
1339
+ external_id: Optional obstacle ID from external systems. This field has no meaning within UDL
1340
+ and is provided as a convenience for systems that require tracking of an
1341
+ internal system generated ID.
1342
+
1343
+ facc: FACC (Feature and Attribute Coding Catalog) is a five-character code for
1344
+ encoding real-world entities and objects. The first letter of the code is an
1345
+ alphabetic value from "A" to "Z" which will map to a feature category. The
1346
+ second character will map to a subcategory. Characters three to five are numeric
1347
+ and range from 000 to 999. This value will provide a unit feature type
1348
+ identification within the categories.
1349
+
1350
+ feature_code: Identifying code for the type of this point obstacle.
1351
+
1352
+ feature_description: Description of this obstacle, corresponding to the FACC (Feature and Attribute
1353
+ Coding Catalog) value.
1354
+
1355
+ feature_name: Type name of point obstacle.
1356
+
1357
+ feature_type: Identifying code for the type of this point obstacle.
1358
+
1359
+ height_agl: The height Above Ground Level (AGL) of the point obstacle in feet.
1360
+
1361
+ height_agl_acc: The accuracy of the height Above Ground Level (AGL) value for this point
1362
+ obstacle, in feet.
1363
+
1364
+ height_msl: The height Above Mean Sea Level (AMSL) of the point obstacle in feet.
1365
+
1366
+ height_msl_acc: The accuracy of the height Above Mean Sea Level (AMSL) value for this point
1367
+ obstacle in feet.
1368
+
1369
+ horiz_acc: The difference between the recorded horizontal coordinates of this point
1370
+ obstacle and its true position, in feet.
1371
+
1372
+ horiz_datum_code: Code representing the mathematical model of Earth used to calculate coordinates
1373
+ for this obstacle (e.g. WGS-84, U for undetermined, etc.). US Forces use the
1374
+ World Geodetic System 1984 (WGS-84), but also use maps by allied countries with
1375
+ local datums.
1376
+
1377
+ init_record_date: Date this obstacle was initially added to the data set, in ISO 8601 date-only
1378
+ format (ex. YYYY-MM-DD).
1379
+
1380
+ keys: This field provides an array of keys that can be added to any obstruction
1381
+ feature to provide information that is not already supported. The entries in
1382
+ this array must correspond to the position index in the values array. This array
1383
+ must be the same length as values.
1384
+
1385
+ lighting_code: Code specifying if this obstacle is lit (e.g. Y = Yes, N = No, U = Unknown).
1386
+
1387
+ line_ne_lat: WGS-84 latitude of the northeastern point of the line, in degrees. -90 to 90
1388
+ degrees (negative values south of equator).
1389
+
1390
+ line_ne_lon: WGS-84 longitude of the northeastern point of the line, in degrees. -180 to 180
1391
+ degrees (negative values west of Prime Meridian).
1392
+
1393
+ lines_filename: The name of the line file associated with this obstruction data set.
1394
+
1395
+ line_sw_lat: WGS-84 latitude of the southwestern point of the line, in degrees. -90 to 90
1396
+ degrees (negative values south of equator).
1397
+
1398
+ line_sw_lon: WGS-84 longitude of the southwestern point of the line, in degrees. -180 to 180
1399
+ degrees (negative values west of Prime Meridian).
1400
+
1401
+ min_height_agl: The minimum height Above Ground Level (AGL) of the shortest obstruction
1402
+ contained in this data set, in feet.
1403
+
1404
+ mult_obs: Indicates if the feature has multiple obstructions (e.g. S = Single, M =
1405
+ Multiple, U = Undetermined).
1406
+
1407
+ next_cycle_date: The date after which this obstruction data set’s currency is stale and should be
1408
+ refreshed, in ISO 8601 date-only format (e.g. YYYY-MM-DD).
1409
+
1410
+ num_lines: The number of line features associated with this obstruction data set.
1411
+
1412
+ num_obs: Indicates the number of obstructions associated with a feature.
1413
+
1414
+ num_points: The number of point features associated with this obstruction data set.
1415
+
1416
+ obstacle_remarks: Remarks regarding this obstacle.
1417
+
1418
+ orig_id: The original ID for this obstacle.
1419
+
1420
+ origin: Originating system or organization which produced the data, if different from
1421
+ the source. The origin may be different than the source if the source was a
1422
+ mediating system which forwarded the data on behalf of the origin system. If
1423
+ null, the source may be assumed to be the origin.
1424
+
1425
+ owner_country_code: The DoD Standard Country Code designator for the country or political entity
1426
+ that owns the data set associated with this obstruction. This field will be set
1427
+ to "OTHR" if the source value does not match a UDL Country code value
1428
+ (ISO-3166-ALPHA-2).
1429
+
1430
+ point_lat: WGS-84 latitude of this point obstacle, in degrees. -90 to 90 degrees (negative
1431
+ values south of equator).
1432
+
1433
+ point_lon: WGS-84 longitude of this point obstacle, in degrees. -180 to 180 degrees
1434
+ (negative values west of Prime Meridian).
1435
+
1436
+ points_filename: The name of the point file associated with this obstruction data set.
1437
+
1438
+ process_code: Code denoting the action, review, or process that updated this obstacle.
1439
+
1440
+ producer: Name of the agency that produced this obstruction data set.
1441
+
1442
+ province_code: The Federal Information Processing Standards (FIPS) state/province numeric code
1443
+ of this obstacle's location.
1444
+
1445
+ quality: When horizontal and/or vertical accuracy requirements cannot be met because of
1446
+ inadequate source material, this code indicates the quality of the data.
1447
+
1448
+ rev_date: Date this obstacle data was revised, in ISO 8601 date-only format (ex.
1449
+ YYYY-MM-DD).
1450
+
1451
+ seg_end_point: ID of the end point of a line segment.
1452
+
1453
+ seg_num: Identifies the sequence number of a line segment.
1454
+
1455
+ seg_start_point: ID of the starting point of a line segment.
1456
+
1457
+ source_date: Source date of this obstacle data, in ISO 8601 date-only format (ex.
1458
+ YYYY-MM-DD).
1459
+
1460
+ surface_mat_code: The surface material composition code of this point obstacle.
1461
+
1462
+ transaction_code: The transaction type/code for this obstacle (e.g. "D", "N", "R", "S", "V", "X").
1463
+
1464
+ validation_code: Method used to confirm the existence of this obstacle.
1465
+
1466
+ values: This field provides an array of values that can be added to any obstruction
1467
+ feature to provide information that is not already supported. The entries in
1468
+ this array must correspond to the position index in the keys array. This array
1469
+ must be the same length as keys.
1470
+
1471
+ vectors_filename: The name of the vector file associated with this obstruction data set.
1472
+
1473
+ wac: The World Aeronautical Chart (WAC) identifier for the area in which this
1474
+ obstacle is located.
1475
+
1476
+ wac_innr: This obstacle's World Area Code installation number (WAC-INNR).
1477
+
1478
+ extra_headers: Send extra headers
1479
+
1480
+ extra_query: Add additional query parameters to the request
1481
+
1482
+ extra_body: Add additional JSON properties to the request
1483
+
1484
+ timeout: Override the client-level default timeout for this request, in seconds
1485
+ """
1486
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
1487
+ return await self._post(
1488
+ "/udl/navigationalobstruction",
1489
+ body=await async_maybe_transform(
1490
+ {
1491
+ "classification_marking": classification_marking,
1492
+ "cycle_date": cycle_date,
1493
+ "data_mode": data_mode,
1494
+ "obstacle_id": obstacle_id,
1495
+ "obstacle_type": obstacle_type,
1496
+ "source": source,
1497
+ "id": id,
1498
+ "act_del_code": act_del_code,
1499
+ "airac_cycle": airac_cycle,
1500
+ "base_airac_cycle": base_airac_cycle,
1501
+ "baseline_cutoff_date": baseline_cutoff_date,
1502
+ "bound_ne_lat": bound_ne_lat,
1503
+ "bound_ne_lon": bound_ne_lon,
1504
+ "bound_sw_lat": bound_sw_lat,
1505
+ "bound_sw_lon": bound_sw_lon,
1506
+ "country_code": country_code,
1507
+ "cutoff_date": cutoff_date,
1508
+ "data_set_remarks": data_set_remarks,
1509
+ "deleting_org": deleting_org,
1510
+ "deriving_org": deriving_org,
1511
+ "directivity_code": directivity_code,
1512
+ "elevation": elevation,
1513
+ "elevation_acc": elevation_acc,
1514
+ "external_id": external_id,
1515
+ "facc": facc,
1516
+ "feature_code": feature_code,
1517
+ "feature_description": feature_description,
1518
+ "feature_name": feature_name,
1519
+ "feature_type": feature_type,
1520
+ "height_agl": height_agl,
1521
+ "height_agl_acc": height_agl_acc,
1522
+ "height_msl": height_msl,
1523
+ "height_msl_acc": height_msl_acc,
1524
+ "horiz_acc": horiz_acc,
1525
+ "horiz_datum_code": horiz_datum_code,
1526
+ "init_record_date": init_record_date,
1527
+ "keys": keys,
1528
+ "lighting_code": lighting_code,
1529
+ "line_ne_lat": line_ne_lat,
1530
+ "line_ne_lon": line_ne_lon,
1531
+ "lines_filename": lines_filename,
1532
+ "line_sw_lat": line_sw_lat,
1533
+ "line_sw_lon": line_sw_lon,
1534
+ "min_height_agl": min_height_agl,
1535
+ "mult_obs": mult_obs,
1536
+ "next_cycle_date": next_cycle_date,
1537
+ "num_lines": num_lines,
1538
+ "num_obs": num_obs,
1539
+ "num_points": num_points,
1540
+ "obstacle_remarks": obstacle_remarks,
1541
+ "orig_id": orig_id,
1542
+ "origin": origin,
1543
+ "owner_country_code": owner_country_code,
1544
+ "point_lat": point_lat,
1545
+ "point_lon": point_lon,
1546
+ "points_filename": points_filename,
1547
+ "process_code": process_code,
1548
+ "producer": producer,
1549
+ "province_code": province_code,
1550
+ "quality": quality,
1551
+ "rev_date": rev_date,
1552
+ "seg_end_point": seg_end_point,
1553
+ "seg_num": seg_num,
1554
+ "seg_start_point": seg_start_point,
1555
+ "source_date": source_date,
1556
+ "surface_mat_code": surface_mat_code,
1557
+ "transaction_code": transaction_code,
1558
+ "validation_code": validation_code,
1559
+ "values": values,
1560
+ "vectors_filename": vectors_filename,
1561
+ "wac": wac,
1562
+ "wac_innr": wac_innr,
1563
+ },
1564
+ navigational_obstruction_create_params.NavigationalObstructionCreateParams,
1565
+ ),
1566
+ options=make_request_options(
1567
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1568
+ ),
1569
+ cast_to=NoneType,
1570
+ )
1571
+
1572
+ async def update(
1573
+ self,
1574
+ path_id: str,
1575
+ *,
1576
+ classification_marking: str,
1577
+ cycle_date: Union[str, date],
1578
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
1579
+ obstacle_id: str,
1580
+ obstacle_type: str,
1581
+ source: str,
1582
+ body_id: str | NotGiven = NOT_GIVEN,
1583
+ act_del_code: str | NotGiven = NOT_GIVEN,
1584
+ airac_cycle: int | NotGiven = NOT_GIVEN,
1585
+ base_airac_cycle: int | NotGiven = NOT_GIVEN,
1586
+ baseline_cutoff_date: Union[str, date] | NotGiven = NOT_GIVEN,
1587
+ bound_ne_lat: float | NotGiven = NOT_GIVEN,
1588
+ bound_ne_lon: float | NotGiven = NOT_GIVEN,
1589
+ bound_sw_lat: float | NotGiven = NOT_GIVEN,
1590
+ bound_sw_lon: float | NotGiven = NOT_GIVEN,
1591
+ country_code: str | NotGiven = NOT_GIVEN,
1592
+ cutoff_date: Union[str, date] | NotGiven = NOT_GIVEN,
1593
+ data_set_remarks: str | NotGiven = NOT_GIVEN,
1594
+ deleting_org: str | NotGiven = NOT_GIVEN,
1595
+ deriving_org: str | NotGiven = NOT_GIVEN,
1596
+ directivity_code: int | NotGiven = NOT_GIVEN,
1597
+ elevation: float | NotGiven = NOT_GIVEN,
1598
+ elevation_acc: float | NotGiven = NOT_GIVEN,
1599
+ external_id: str | NotGiven = NOT_GIVEN,
1600
+ facc: str | NotGiven = NOT_GIVEN,
1601
+ feature_code: str | NotGiven = NOT_GIVEN,
1602
+ feature_description: str | NotGiven = NOT_GIVEN,
1603
+ feature_name: str | NotGiven = NOT_GIVEN,
1604
+ feature_type: str | NotGiven = NOT_GIVEN,
1605
+ height_agl: float | NotGiven = NOT_GIVEN,
1606
+ height_agl_acc: float | NotGiven = NOT_GIVEN,
1607
+ height_msl: float | NotGiven = NOT_GIVEN,
1608
+ height_msl_acc: float | NotGiven = NOT_GIVEN,
1609
+ horiz_acc: float | NotGiven = NOT_GIVEN,
1610
+ horiz_datum_code: str | NotGiven = NOT_GIVEN,
1611
+ init_record_date: Union[str, date] | NotGiven = NOT_GIVEN,
1612
+ keys: List[str] | NotGiven = NOT_GIVEN,
1613
+ lighting_code: str | NotGiven = NOT_GIVEN,
1614
+ line_ne_lat: float | NotGiven = NOT_GIVEN,
1615
+ line_ne_lon: float | NotGiven = NOT_GIVEN,
1616
+ lines_filename: str | NotGiven = NOT_GIVEN,
1617
+ line_sw_lat: float | NotGiven = NOT_GIVEN,
1618
+ line_sw_lon: float | NotGiven = NOT_GIVEN,
1619
+ min_height_agl: float | NotGiven = NOT_GIVEN,
1620
+ mult_obs: str | NotGiven = NOT_GIVEN,
1621
+ next_cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
1622
+ num_lines: int | NotGiven = NOT_GIVEN,
1623
+ num_obs: int | NotGiven = NOT_GIVEN,
1624
+ num_points: int | NotGiven = NOT_GIVEN,
1625
+ obstacle_remarks: str | NotGiven = NOT_GIVEN,
1626
+ orig_id: str | NotGiven = NOT_GIVEN,
1627
+ origin: str | NotGiven = NOT_GIVEN,
1628
+ owner_country_code: str | NotGiven = NOT_GIVEN,
1629
+ point_lat: float | NotGiven = NOT_GIVEN,
1630
+ point_lon: float | NotGiven = NOT_GIVEN,
1631
+ points_filename: str | NotGiven = NOT_GIVEN,
1632
+ process_code: str | NotGiven = NOT_GIVEN,
1633
+ producer: str | NotGiven = NOT_GIVEN,
1634
+ province_code: str | NotGiven = NOT_GIVEN,
1635
+ quality: str | NotGiven = NOT_GIVEN,
1636
+ rev_date: Union[str, date] | NotGiven = NOT_GIVEN,
1637
+ seg_end_point: int | NotGiven = NOT_GIVEN,
1638
+ seg_num: int | NotGiven = NOT_GIVEN,
1639
+ seg_start_point: int | NotGiven = NOT_GIVEN,
1640
+ source_date: Union[str, date] | NotGiven = NOT_GIVEN,
1641
+ surface_mat_code: str | NotGiven = NOT_GIVEN,
1642
+ transaction_code: str | NotGiven = NOT_GIVEN,
1643
+ validation_code: int | NotGiven = NOT_GIVEN,
1644
+ values: List[str] | NotGiven = NOT_GIVEN,
1645
+ vectors_filename: str | NotGiven = NOT_GIVEN,
1646
+ wac: str | NotGiven = NOT_GIVEN,
1647
+ wac_innr: str | NotGiven = NOT_GIVEN,
1648
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1649
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1650
+ extra_headers: Headers | None = None,
1651
+ extra_query: Query | None = None,
1652
+ extra_body: Body | None = None,
1653
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1654
+ ) -> None:
1655
+ """Service operation to update a single navigational obstruction record.
1656
+
1657
+ A specific
1658
+ role is required to perform this service operation. Please contact the UDL team
1659
+ for assistance.
1660
+
1661
+ Args:
1662
+ classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
1663
+
1664
+ cycle_date: Start date of this obstruction data set's currency, in ISO 8601 date-only
1665
+ format.
1666
+
1667
+ data_mode:
1668
+ Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
1669
+
1670
+ EXERCISE:&nbsp;Data pertaining to a government or military exercise. The data
1671
+ may include both real and simulated data.
1672
+
1673
+ REAL:&nbsp;Data collected or produced that pertains to real-world objects,
1674
+ events, and analysis.
1675
+
1676
+ SIMULATED:&nbsp;Synthetic data generated by a model to mimic real-world
1677
+ datasets.
1678
+
1679
+ TEST:&nbsp;Specific datasets used to evaluate compliance with specifications and
1680
+ requirements, and for validating technical, functional, and performance
1681
+ characteristics.
1682
+
1683
+ obstacle_id: The ID of this obstacle.
1684
+
1685
+ obstacle_type: Type of obstacle (e.g. P for point, V for vector, L for line).
1686
+
1687
+ source: Source of the data.
1688
+
1689
+ body_id: Unique identifier of the record, auto-generated by the system.
1690
+
1691
+ act_del_code: Indicates if this obstacle record is Active (A) or Deleted (D).
1692
+
1693
+ airac_cycle: The Aeronautical Information Regulation and Control (AIRAC) cycle of this
1694
+ obstruction data set. The format is YYNN where YY is the last two digits of the
1695
+ year and NN is the cycle number.
1696
+
1697
+ base_airac_cycle: The baseline Aeronautical Information Regulation and Control (AIRAC) cycle for
1698
+ change sets only. The format is YYNN where YY is the last two digits of the year
1699
+ and NN is the cycle number.
1700
+
1701
+ baseline_cutoff_date: Earliest record date possible in this obstruction data set (not the earliest
1702
+ data item), in ISO 8601 date-only format (e.g. YYYY-MM-DD). If null, this data
1703
+ set is assumed to be a full data pull of holdings until the cutoffDate. If this
1704
+ field is populated, this data set only contains updates since the last baseline
1705
+ data set.
1706
+
1707
+ bound_ne_lat: WGS-84 latitude of the northeastern boundary for obstructions contained in this
1708
+ data set, in degrees. -90 to 90 degrees (negative values south of equator).
1709
+
1710
+ bound_ne_lon: WGS-84 longitude of the northeastern boundary for obstructions contained in this
1711
+ data set, in degrees. -180 to 180 degrees (negative values west of Prime
1712
+ Meridian).
1713
+
1714
+ bound_sw_lat: WGS-84 latitude of the southwestern boundary for obstructions contained in this
1715
+ data set, in degrees. -90 to 90 degrees (negative values south of equator).
1716
+
1717
+ bound_sw_lon: WGS-84 longitude of the southwestern boundary for obstructions contained in this
1718
+ data set, in degrees. -180 to 180 degrees (negative values west of Prime
1719
+ Meridian).
1720
+
1721
+ country_code: The DoD Standard Country Code designator for the country issuing the diplomatic
1722
+ clearance. This field will be set to "OTHR" if the source value does not match a
1723
+ UDL Country code value (ISO-3166-ALPHA-2).
1724
+
1725
+ cutoff_date: Latest record date possible in this obstruction data set (not the most recent
1726
+ data item), in ISO 8601 date-only format (e.g. YYYY-MM-DD).
1727
+
1728
+ data_set_remarks: Remarks concerning this obstruction's data set.
1729
+
1730
+ deleting_org: The organization that deleted this obstacle record.
1731
+
1732
+ deriving_org: The organization that entered obstacle data other than the producer.
1733
+
1734
+ directivity_code: The side or sides of this obstruction feature which produces the greatest
1735
+ reflectivity potential.
1736
+
1737
+ elevation: The elevation at the point obstacle's location in feet.
1738
+
1739
+ elevation_acc: The difference between the assigned elevation of this point and its true
1740
+ elevation, in feet.
1741
+
1742
+ external_id: Optional obstacle ID from external systems. This field has no meaning within UDL
1743
+ and is provided as a convenience for systems that require tracking of an
1744
+ internal system generated ID.
1745
+
1746
+ facc: FACC (Feature and Attribute Coding Catalog) is a five-character code for
1747
+ encoding real-world entities and objects. The first letter of the code is an
1748
+ alphabetic value from "A" to "Z" which will map to a feature category. The
1749
+ second character will map to a subcategory. Characters three to five are numeric
1750
+ and range from 000 to 999. This value will provide a unit feature type
1751
+ identification within the categories.
1752
+
1753
+ feature_code: Identifying code for the type of this point obstacle.
1754
+
1755
+ feature_description: Description of this obstacle, corresponding to the FACC (Feature and Attribute
1756
+ Coding Catalog) value.
1757
+
1758
+ feature_name: Type name of point obstacle.
1759
+
1760
+ feature_type: Identifying code for the type of this point obstacle.
1761
+
1762
+ height_agl: The height Above Ground Level (AGL) of the point obstacle in feet.
1763
+
1764
+ height_agl_acc: The accuracy of the height Above Ground Level (AGL) value for this point
1765
+ obstacle, in feet.
1766
+
1767
+ height_msl: The height Above Mean Sea Level (AMSL) of the point obstacle in feet.
1768
+
1769
+ height_msl_acc: The accuracy of the height Above Mean Sea Level (AMSL) value for this point
1770
+ obstacle in feet.
1771
+
1772
+ horiz_acc: The difference between the recorded horizontal coordinates of this point
1773
+ obstacle and its true position, in feet.
1774
+
1775
+ horiz_datum_code: Code representing the mathematical model of Earth used to calculate coordinates
1776
+ for this obstacle (e.g. WGS-84, U for undetermined, etc.). US Forces use the
1777
+ World Geodetic System 1984 (WGS-84), but also use maps by allied countries with
1778
+ local datums.
1779
+
1780
+ init_record_date: Date this obstacle was initially added to the data set, in ISO 8601 date-only
1781
+ format (ex. YYYY-MM-DD).
1782
+
1783
+ keys: This field provides an array of keys that can be added to any obstruction
1784
+ feature to provide information that is not already supported. The entries in
1785
+ this array must correspond to the position index in the values array. This array
1786
+ must be the same length as values.
1787
+
1788
+ lighting_code: Code specifying if this obstacle is lit (e.g. Y = Yes, N = No, U = Unknown).
1789
+
1790
+ line_ne_lat: WGS-84 latitude of the northeastern point of the line, in degrees. -90 to 90
1791
+ degrees (negative values south of equator).
1792
+
1793
+ line_ne_lon: WGS-84 longitude of the northeastern point of the line, in degrees. -180 to 180
1794
+ degrees (negative values west of Prime Meridian).
1795
+
1796
+ lines_filename: The name of the line file associated with this obstruction data set.
1797
+
1798
+ line_sw_lat: WGS-84 latitude of the southwestern point of the line, in degrees. -90 to 90
1799
+ degrees (negative values south of equator).
1800
+
1801
+ line_sw_lon: WGS-84 longitude of the southwestern point of the line, in degrees. -180 to 180
1802
+ degrees (negative values west of Prime Meridian).
1803
+
1804
+ min_height_agl: The minimum height Above Ground Level (AGL) of the shortest obstruction
1805
+ contained in this data set, in feet.
1806
+
1807
+ mult_obs: Indicates if the feature has multiple obstructions (e.g. S = Single, M =
1808
+ Multiple, U = Undetermined).
1809
+
1810
+ next_cycle_date: The date after which this obstruction data set’s currency is stale and should be
1811
+ refreshed, in ISO 8601 date-only format (e.g. YYYY-MM-DD).
1812
+
1813
+ num_lines: The number of line features associated with this obstruction data set.
1814
+
1815
+ num_obs: Indicates the number of obstructions associated with a feature.
1816
+
1817
+ num_points: The number of point features associated with this obstruction data set.
1818
+
1819
+ obstacle_remarks: Remarks regarding this obstacle.
1820
+
1821
+ orig_id: The original ID for this obstacle.
1822
+
1823
+ origin: Originating system or organization which produced the data, if different from
1824
+ the source. The origin may be different than the source if the source was a
1825
+ mediating system which forwarded the data on behalf of the origin system. If
1826
+ null, the source may be assumed to be the origin.
1827
+
1828
+ owner_country_code: The DoD Standard Country Code designator for the country or political entity
1829
+ that owns the data set associated with this obstruction. This field will be set
1830
+ to "OTHR" if the source value does not match a UDL Country code value
1831
+ (ISO-3166-ALPHA-2).
1832
+
1833
+ point_lat: WGS-84 latitude of this point obstacle, in degrees. -90 to 90 degrees (negative
1834
+ values south of equator).
1835
+
1836
+ point_lon: WGS-84 longitude of this point obstacle, in degrees. -180 to 180 degrees
1837
+ (negative values west of Prime Meridian).
1838
+
1839
+ points_filename: The name of the point file associated with this obstruction data set.
1840
+
1841
+ process_code: Code denoting the action, review, or process that updated this obstacle.
1842
+
1843
+ producer: Name of the agency that produced this obstruction data set.
1844
+
1845
+ province_code: The Federal Information Processing Standards (FIPS) state/province numeric code
1846
+ of this obstacle's location.
1847
+
1848
+ quality: When horizontal and/or vertical accuracy requirements cannot be met because of
1849
+ inadequate source material, this code indicates the quality of the data.
1850
+
1851
+ rev_date: Date this obstacle data was revised, in ISO 8601 date-only format (ex.
1852
+ YYYY-MM-DD).
1853
+
1854
+ seg_end_point: ID of the end point of a line segment.
1855
+
1856
+ seg_num: Identifies the sequence number of a line segment.
1857
+
1858
+ seg_start_point: ID of the starting point of a line segment.
1859
+
1860
+ source_date: Source date of this obstacle data, in ISO 8601 date-only format (ex.
1861
+ YYYY-MM-DD).
1862
+
1863
+ surface_mat_code: The surface material composition code of this point obstacle.
1864
+
1865
+ transaction_code: The transaction type/code for this obstacle (e.g. "D", "N", "R", "S", "V", "X").
1866
+
1867
+ validation_code: Method used to confirm the existence of this obstacle.
1868
+
1869
+ values: This field provides an array of values that can be added to any obstruction
1870
+ feature to provide information that is not already supported. The entries in
1871
+ this array must correspond to the position index in the keys array. This array
1872
+ must be the same length as keys.
1873
+
1874
+ vectors_filename: The name of the vector file associated with this obstruction data set.
1875
+
1876
+ wac: The World Aeronautical Chart (WAC) identifier for the area in which this
1877
+ obstacle is located.
1878
+
1879
+ wac_innr: This obstacle's World Area Code installation number (WAC-INNR).
1880
+
1881
+ extra_headers: Send extra headers
1882
+
1883
+ extra_query: Add additional query parameters to the request
1884
+
1885
+ extra_body: Add additional JSON properties to the request
1886
+
1887
+ timeout: Override the client-level default timeout for this request, in seconds
1888
+ """
1889
+ if not path_id:
1890
+ raise ValueError(f"Expected a non-empty value for `path_id` but received {path_id!r}")
1891
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
1892
+ return await self._put(
1893
+ f"/udl/navigationalobstruction/{path_id}",
1894
+ body=await async_maybe_transform(
1895
+ {
1896
+ "classification_marking": classification_marking,
1897
+ "cycle_date": cycle_date,
1898
+ "data_mode": data_mode,
1899
+ "obstacle_id": obstacle_id,
1900
+ "obstacle_type": obstacle_type,
1901
+ "source": source,
1902
+ "body_id": body_id,
1903
+ "act_del_code": act_del_code,
1904
+ "airac_cycle": airac_cycle,
1905
+ "base_airac_cycle": base_airac_cycle,
1906
+ "baseline_cutoff_date": baseline_cutoff_date,
1907
+ "bound_ne_lat": bound_ne_lat,
1908
+ "bound_ne_lon": bound_ne_lon,
1909
+ "bound_sw_lat": bound_sw_lat,
1910
+ "bound_sw_lon": bound_sw_lon,
1911
+ "country_code": country_code,
1912
+ "cutoff_date": cutoff_date,
1913
+ "data_set_remarks": data_set_remarks,
1914
+ "deleting_org": deleting_org,
1915
+ "deriving_org": deriving_org,
1916
+ "directivity_code": directivity_code,
1917
+ "elevation": elevation,
1918
+ "elevation_acc": elevation_acc,
1919
+ "external_id": external_id,
1920
+ "facc": facc,
1921
+ "feature_code": feature_code,
1922
+ "feature_description": feature_description,
1923
+ "feature_name": feature_name,
1924
+ "feature_type": feature_type,
1925
+ "height_agl": height_agl,
1926
+ "height_agl_acc": height_agl_acc,
1927
+ "height_msl": height_msl,
1928
+ "height_msl_acc": height_msl_acc,
1929
+ "horiz_acc": horiz_acc,
1930
+ "horiz_datum_code": horiz_datum_code,
1931
+ "init_record_date": init_record_date,
1932
+ "keys": keys,
1933
+ "lighting_code": lighting_code,
1934
+ "line_ne_lat": line_ne_lat,
1935
+ "line_ne_lon": line_ne_lon,
1936
+ "lines_filename": lines_filename,
1937
+ "line_sw_lat": line_sw_lat,
1938
+ "line_sw_lon": line_sw_lon,
1939
+ "min_height_agl": min_height_agl,
1940
+ "mult_obs": mult_obs,
1941
+ "next_cycle_date": next_cycle_date,
1942
+ "num_lines": num_lines,
1943
+ "num_obs": num_obs,
1944
+ "num_points": num_points,
1945
+ "obstacle_remarks": obstacle_remarks,
1946
+ "orig_id": orig_id,
1947
+ "origin": origin,
1948
+ "owner_country_code": owner_country_code,
1949
+ "point_lat": point_lat,
1950
+ "point_lon": point_lon,
1951
+ "points_filename": points_filename,
1952
+ "process_code": process_code,
1953
+ "producer": producer,
1954
+ "province_code": province_code,
1955
+ "quality": quality,
1956
+ "rev_date": rev_date,
1957
+ "seg_end_point": seg_end_point,
1958
+ "seg_num": seg_num,
1959
+ "seg_start_point": seg_start_point,
1960
+ "source_date": source_date,
1961
+ "surface_mat_code": surface_mat_code,
1962
+ "transaction_code": transaction_code,
1963
+ "validation_code": validation_code,
1964
+ "values": values,
1965
+ "vectors_filename": vectors_filename,
1966
+ "wac": wac,
1967
+ "wac_innr": wac_innr,
1968
+ },
1969
+ navigational_obstruction_update_params.NavigationalObstructionUpdateParams,
1970
+ ),
1971
+ options=make_request_options(
1972
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1973
+ ),
1974
+ cast_to=NoneType,
1975
+ )
1976
+
1977
+ def list(
1978
+ self,
1979
+ *,
1980
+ cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
1981
+ first_result: int | NotGiven = NOT_GIVEN,
1982
+ max_results: int | NotGiven = NOT_GIVEN,
1983
+ obstacle_id: str | NotGiven = NOT_GIVEN,
1984
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1985
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1986
+ extra_headers: Headers | None = None,
1987
+ extra_query: Query | None = None,
1988
+ extra_body: Body | None = None,
1989
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1990
+ ) -> AsyncPaginator[NavigationalObstructionListResponse, AsyncOffsetPage[NavigationalObstructionListResponse]]:
1991
+ """
1992
+ Service operation to dynamically query data by a variety of query parameters not
1993
+ specified in this API documentation. See the queryhelp operation
1994
+ (/udl/&lt;datatype&gt;/queryhelp) for more details on valid/required query
1995
+ parameter information.
1996
+
1997
+ Args:
1998
+ cycle_date: (One or more of fields 'cycleDate, obstacleId' are required.) Start date of this
1999
+ obstruction data set's currency, in ISO 8601 date-only format. (YYYY-MM-DD)
2000
+
2001
+ obstacle_id: (One or more of fields 'cycleDate, obstacleId' are required.) The ID of this
2002
+ obstacle.
2003
+
2004
+ extra_headers: Send extra headers
2005
+
2006
+ extra_query: Add additional query parameters to the request
2007
+
2008
+ extra_body: Add additional JSON properties to the request
2009
+
2010
+ timeout: Override the client-level default timeout for this request, in seconds
2011
+ """
2012
+ return self._get_api_list(
2013
+ "/udl/navigationalobstruction",
2014
+ page=AsyncOffsetPage[NavigationalObstructionListResponse],
2015
+ options=make_request_options(
2016
+ extra_headers=extra_headers,
2017
+ extra_query=extra_query,
2018
+ extra_body=extra_body,
2019
+ timeout=timeout,
2020
+ query=maybe_transform(
2021
+ {
2022
+ "cycle_date": cycle_date,
2023
+ "first_result": first_result,
2024
+ "max_results": max_results,
2025
+ "obstacle_id": obstacle_id,
2026
+ },
2027
+ navigational_obstruction_list_params.NavigationalObstructionListParams,
2028
+ ),
2029
+ ),
2030
+ model=NavigationalObstructionListResponse,
2031
+ )
2032
+
2033
+ async def count(
2034
+ self,
2035
+ *,
2036
+ cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
2037
+ first_result: int | NotGiven = NOT_GIVEN,
2038
+ max_results: int | NotGiven = NOT_GIVEN,
2039
+ obstacle_id: str | NotGiven = NOT_GIVEN,
2040
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2041
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2042
+ extra_headers: Headers | None = None,
2043
+ extra_query: Query | None = None,
2044
+ extra_body: Body | None = None,
2045
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2046
+ ) -> str:
2047
+ """
2048
+ Service operation to return the count of records satisfying the specified query
2049
+ parameters. This operation is useful to determine how many records pass a
2050
+ particular query criteria without retrieving large amounts of data. See the
2051
+ queryhelp operation (/udl/&lt;datatype&gt;/queryhelp) for more details on
2052
+ valid/required query parameter information.
2053
+
2054
+ Args:
2055
+ cycle_date: (One or more of fields 'cycleDate, obstacleId' are required.) Start date of this
2056
+ obstruction data set's currency, in ISO 8601 date-only format. (YYYY-MM-DD)
2057
+
2058
+ obstacle_id: (One or more of fields 'cycleDate, obstacleId' are required.) The ID of this
2059
+ obstacle.
2060
+
2061
+ extra_headers: Send extra headers
2062
+
2063
+ extra_query: Add additional query parameters to the request
2064
+
2065
+ extra_body: Add additional JSON properties to the request
2066
+
2067
+ timeout: Override the client-level default timeout for this request, in seconds
2068
+ """
2069
+ extra_headers = {"Accept": "text/plain", **(extra_headers or {})}
2070
+ return await self._get(
2071
+ "/udl/navigationalobstruction/count",
2072
+ options=make_request_options(
2073
+ extra_headers=extra_headers,
2074
+ extra_query=extra_query,
2075
+ extra_body=extra_body,
2076
+ timeout=timeout,
2077
+ query=await async_maybe_transform(
2078
+ {
2079
+ "cycle_date": cycle_date,
2080
+ "first_result": first_result,
2081
+ "max_results": max_results,
2082
+ "obstacle_id": obstacle_id,
2083
+ },
2084
+ navigational_obstruction_count_params.NavigationalObstructionCountParams,
2085
+ ),
2086
+ ),
2087
+ cast_to=str,
2088
+ )
2089
+
2090
+ async def create_bulk(
2091
+ self,
2092
+ *,
2093
+ body: Iterable[navigational_obstruction_create_bulk_params.Body],
2094
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2095
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2096
+ extra_headers: Headers | None = None,
2097
+ extra_query: Query | None = None,
2098
+ extra_body: Body | None = None,
2099
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2100
+ ) -> None:
2101
+ """
2102
+ Service operation intended for initial integration only, to take a list of
2103
+ navigational obstruction records as a POST body and ingest into the database.
2104
+ This operation is not intended to be used for automated feeds into UDL. Data
2105
+ providers should contact the UDL team for specific role assignments and for
2106
+ instructions on setting up a permanent feed through an alternate mechanism.
2107
+
2108
+ Args:
2109
+ extra_headers: Send extra headers
2110
+
2111
+ extra_query: Add additional query parameters to the request
2112
+
2113
+ extra_body: Add additional JSON properties to the request
2114
+
2115
+ timeout: Override the client-level default timeout for this request, in seconds
2116
+ """
2117
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
2118
+ return await self._post(
2119
+ "/udl/navigationalobstruction/createBulk",
2120
+ body=await async_maybe_transform(body, Iterable[navigational_obstruction_create_bulk_params.Body]),
2121
+ options=make_request_options(
2122
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
2123
+ ),
2124
+ cast_to=NoneType,
2125
+ )
2126
+
2127
+ async def get(
2128
+ self,
2129
+ id: str,
2130
+ *,
2131
+ first_result: int | NotGiven = NOT_GIVEN,
2132
+ max_results: int | NotGiven = NOT_GIVEN,
2133
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2134
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2135
+ extra_headers: Headers | None = None,
2136
+ extra_query: Query | None = None,
2137
+ extra_body: Body | None = None,
2138
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2139
+ ) -> NavigationalObstructionGetResponse:
2140
+ """
2141
+ Service operation to get a single navigational obstruction record by its unique
2142
+ ID passed as a path parameter.
2143
+
2144
+ Args:
2145
+ extra_headers: Send extra headers
2146
+
2147
+ extra_query: Add additional query parameters to the request
2148
+
2149
+ extra_body: Add additional JSON properties to the request
2150
+
2151
+ timeout: Override the client-level default timeout for this request, in seconds
2152
+ """
2153
+ if not id:
2154
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
2155
+ return await self._get(
2156
+ f"/udl/navigationalobstruction/{id}",
2157
+ options=make_request_options(
2158
+ extra_headers=extra_headers,
2159
+ extra_query=extra_query,
2160
+ extra_body=extra_body,
2161
+ timeout=timeout,
2162
+ query=await async_maybe_transform(
2163
+ {
2164
+ "first_result": first_result,
2165
+ "max_results": max_results,
2166
+ },
2167
+ navigational_obstruction_get_params.NavigationalObstructionGetParams,
2168
+ ),
2169
+ ),
2170
+ cast_to=NavigationalObstructionGetResponse,
2171
+ )
2172
+
2173
+ async def queryhelp(
2174
+ self,
2175
+ *,
2176
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2177
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2178
+ extra_headers: Headers | None = None,
2179
+ extra_query: Query | None = None,
2180
+ extra_body: Body | None = None,
2181
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2182
+ ) -> None:
2183
+ """
2184
+ Service operation to provide detailed information on available dynamic query
2185
+ parameters for a particular data type.
2186
+ """
2187
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
2188
+ return await self._get(
2189
+ "/udl/navigationalobstruction/queryhelp",
2190
+ options=make_request_options(
2191
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
2192
+ ),
2193
+ cast_to=NoneType,
2194
+ )
2195
+
2196
+ async def tuple(
2197
+ self,
2198
+ *,
2199
+ columns: str,
2200
+ cycle_date: Union[str, date] | NotGiven = NOT_GIVEN,
2201
+ first_result: int | NotGiven = NOT_GIVEN,
2202
+ max_results: int | NotGiven = NOT_GIVEN,
2203
+ obstacle_id: str | NotGiven = NOT_GIVEN,
2204
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2205
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2206
+ extra_headers: Headers | None = None,
2207
+ extra_query: Query | None = None,
2208
+ extra_body: Body | None = None,
2209
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2210
+ ) -> NavigationalObstructionTupleResponse:
2211
+ """
2212
+ Service operation to dynamically query data and only return specified
2213
+ columns/fields. Requested columns are specified by the 'columns' query parameter
2214
+ and should be a comma separated list of valid fields for the specified data
2215
+ type. classificationMarking is always returned. See the queryhelp operation
2216
+ (/udl/<datatype>/queryhelp) for more details on valid/required query parameter
2217
+ information. An example URI: /udl/elset/tuple?columns=satNo,period&epoch=>now-5
2218
+ hours would return the satNo and period of elsets with an epoch greater than 5
2219
+ hours ago.
2220
+
2221
+ Args:
2222
+ columns: Comma-separated list of valid field names for this data type to be returned in
2223
+ the response. Only the fields specified will be returned as well as the
2224
+ classification marking of the data, if applicable. See the ‘queryhelp’ operation
2225
+ for a complete list of possible fields.
2226
+
2227
+ cycle_date: (One or more of fields 'cycleDate, obstacleId' are required.) Start date of this
2228
+ obstruction data set's currency, in ISO 8601 date-only format. (YYYY-MM-DD)
2229
+
2230
+ obstacle_id: (One or more of fields 'cycleDate, obstacleId' are required.) The ID of this
2231
+ obstacle.
2232
+
2233
+ extra_headers: Send extra headers
2234
+
2235
+ extra_query: Add additional query parameters to the request
2236
+
2237
+ extra_body: Add additional JSON properties to the request
2238
+
2239
+ timeout: Override the client-level default timeout for this request, in seconds
2240
+ """
2241
+ return await self._get(
2242
+ "/udl/navigationalobstruction/tuple",
2243
+ options=make_request_options(
2244
+ extra_headers=extra_headers,
2245
+ extra_query=extra_query,
2246
+ extra_body=extra_body,
2247
+ timeout=timeout,
2248
+ query=await async_maybe_transform(
2249
+ {
2250
+ "columns": columns,
2251
+ "cycle_date": cycle_date,
2252
+ "first_result": first_result,
2253
+ "max_results": max_results,
2254
+ "obstacle_id": obstacle_id,
2255
+ },
2256
+ navigational_obstruction_tuple_params.NavigationalObstructionTupleParams,
2257
+ ),
2258
+ ),
2259
+ cast_to=NavigationalObstructionTupleResponse,
2260
+ )
2261
+
2262
+
2263
+ class NavigationalObstructionResourceWithRawResponse:
2264
+ def __init__(self, navigational_obstruction: NavigationalObstructionResource) -> None:
2265
+ self._navigational_obstruction = navigational_obstruction
2266
+
2267
+ self.create = to_raw_response_wrapper(
2268
+ navigational_obstruction.create,
2269
+ )
2270
+ self.update = to_raw_response_wrapper(
2271
+ navigational_obstruction.update,
2272
+ )
2273
+ self.list = to_raw_response_wrapper(
2274
+ navigational_obstruction.list,
2275
+ )
2276
+ self.count = to_raw_response_wrapper(
2277
+ navigational_obstruction.count,
2278
+ )
2279
+ self.create_bulk = to_raw_response_wrapper(
2280
+ navigational_obstruction.create_bulk,
2281
+ )
2282
+ self.get = to_raw_response_wrapper(
2283
+ navigational_obstruction.get,
2284
+ )
2285
+ self.queryhelp = to_raw_response_wrapper(
2286
+ navigational_obstruction.queryhelp,
2287
+ )
2288
+ self.tuple = to_raw_response_wrapper(
2289
+ navigational_obstruction.tuple,
2290
+ )
2291
+
2292
+
2293
+ class AsyncNavigationalObstructionResourceWithRawResponse:
2294
+ def __init__(self, navigational_obstruction: AsyncNavigationalObstructionResource) -> None:
2295
+ self._navigational_obstruction = navigational_obstruction
2296
+
2297
+ self.create = async_to_raw_response_wrapper(
2298
+ navigational_obstruction.create,
2299
+ )
2300
+ self.update = async_to_raw_response_wrapper(
2301
+ navigational_obstruction.update,
2302
+ )
2303
+ self.list = async_to_raw_response_wrapper(
2304
+ navigational_obstruction.list,
2305
+ )
2306
+ self.count = async_to_raw_response_wrapper(
2307
+ navigational_obstruction.count,
2308
+ )
2309
+ self.create_bulk = async_to_raw_response_wrapper(
2310
+ navigational_obstruction.create_bulk,
2311
+ )
2312
+ self.get = async_to_raw_response_wrapper(
2313
+ navigational_obstruction.get,
2314
+ )
2315
+ self.queryhelp = async_to_raw_response_wrapper(
2316
+ navigational_obstruction.queryhelp,
2317
+ )
2318
+ self.tuple = async_to_raw_response_wrapper(
2319
+ navigational_obstruction.tuple,
2320
+ )
2321
+
2322
+
2323
+ class NavigationalObstructionResourceWithStreamingResponse:
2324
+ def __init__(self, navigational_obstruction: NavigationalObstructionResource) -> None:
2325
+ self._navigational_obstruction = navigational_obstruction
2326
+
2327
+ self.create = to_streamed_response_wrapper(
2328
+ navigational_obstruction.create,
2329
+ )
2330
+ self.update = to_streamed_response_wrapper(
2331
+ navigational_obstruction.update,
2332
+ )
2333
+ self.list = to_streamed_response_wrapper(
2334
+ navigational_obstruction.list,
2335
+ )
2336
+ self.count = to_streamed_response_wrapper(
2337
+ navigational_obstruction.count,
2338
+ )
2339
+ self.create_bulk = to_streamed_response_wrapper(
2340
+ navigational_obstruction.create_bulk,
2341
+ )
2342
+ self.get = to_streamed_response_wrapper(
2343
+ navigational_obstruction.get,
2344
+ )
2345
+ self.queryhelp = to_streamed_response_wrapper(
2346
+ navigational_obstruction.queryhelp,
2347
+ )
2348
+ self.tuple = to_streamed_response_wrapper(
2349
+ navigational_obstruction.tuple,
2350
+ )
2351
+
2352
+
2353
+ class AsyncNavigationalObstructionResourceWithStreamingResponse:
2354
+ def __init__(self, navigational_obstruction: AsyncNavigationalObstructionResource) -> None:
2355
+ self._navigational_obstruction = navigational_obstruction
2356
+
2357
+ self.create = async_to_streamed_response_wrapper(
2358
+ navigational_obstruction.create,
2359
+ )
2360
+ self.update = async_to_streamed_response_wrapper(
2361
+ navigational_obstruction.update,
2362
+ )
2363
+ self.list = async_to_streamed_response_wrapper(
2364
+ navigational_obstruction.list,
2365
+ )
2366
+ self.count = async_to_streamed_response_wrapper(
2367
+ navigational_obstruction.count,
2368
+ )
2369
+ self.create_bulk = async_to_streamed_response_wrapper(
2370
+ navigational_obstruction.create_bulk,
2371
+ )
2372
+ self.get = async_to_streamed_response_wrapper(
2373
+ navigational_obstruction.get,
2374
+ )
2375
+ self.queryhelp = async_to_streamed_response_wrapper(
2376
+ navigational_obstruction.queryhelp,
2377
+ )
2378
+ self.tuple = async_to_streamed_response_wrapper(
2379
+ navigational_obstruction.tuple,
2380
+ )