udl-sdk 0.1.0a1__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 (2289) hide show
  1. udl_sdk-0.1.0a1.dist-info/METADATA +462 -0
  2. udl_sdk-0.1.0a1.dist-info/RECORD +2289 -0
  3. udl_sdk-0.1.0a1.dist-info/WHEEL +4 -0
  4. udl_sdk-0.1.0a1.dist-info/licenses/LICENSE +201 -0
  5. unifieddatalibrary/__init__.py +94 -0
  6. unifieddatalibrary/_base_client.py +2007 -0
  7. unifieddatalibrary/_client.py +2379 -0
  8. unifieddatalibrary/_compat.py +219 -0
  9. unifieddatalibrary/_constants.py +14 -0
  10. unifieddatalibrary/_exceptions.py +108 -0
  11. unifieddatalibrary/_files.py +123 -0
  12. unifieddatalibrary/_models.py +803 -0
  13. unifieddatalibrary/_qs.py +150 -0
  14. unifieddatalibrary/_resource.py +43 -0
  15. unifieddatalibrary/_response.py +832 -0
  16. unifieddatalibrary/_streaming.py +333 -0
  17. unifieddatalibrary/_types.py +217 -0
  18. unifieddatalibrary/_utils/__init__.py +57 -0
  19. unifieddatalibrary/_utils/_logs.py +25 -0
  20. unifieddatalibrary/_utils/_proxy.py +62 -0
  21. unifieddatalibrary/_utils/_reflection.py +42 -0
  22. unifieddatalibrary/_utils/_streams.py +12 -0
  23. unifieddatalibrary/_utils/_sync.py +86 -0
  24. unifieddatalibrary/_utils/_transform.py +451 -0
  25. unifieddatalibrary/_utils/_typing.py +151 -0
  26. unifieddatalibrary/_utils/_utils.py +414 -0
  27. unifieddatalibrary/_version.py +4 -0
  28. unifieddatalibrary/lib/.keep +4 -0
  29. unifieddatalibrary/lib/common.py +3 -0
  30. unifieddatalibrary/lib/model_based_query.py +112 -0
  31. unifieddatalibrary/lib/query_field_names.py +142 -0
  32. unifieddatalibrary/lib/util.py +17 -0
  33. unifieddatalibrary/pagination.py +78 -0
  34. unifieddatalibrary/py.typed +0 -0
  35. unifieddatalibrary/resources/__init__.py +2511 -0
  36. unifieddatalibrary/resources/air_events.py +1722 -0
  37. unifieddatalibrary/resources/air_load_plans.py +1279 -0
  38. unifieddatalibrary/resources/air_operations/__init__.py +103 -0
  39. unifieddatalibrary/resources/air_operations/air_operations.py +262 -0
  40. unifieddatalibrary/resources/air_operations/air_tasking_orders.py +175 -0
  41. unifieddatalibrary/resources/air_operations/aircraft_sortie.py +1501 -0
  42. unifieddatalibrary/resources/air_operations/aircraft_sorties.py +175 -0
  43. unifieddatalibrary/resources/air_operations/airspace_control_orders.py +175 -0
  44. unifieddatalibrary/resources/air_operations/crewpapers.py +317 -0
  45. unifieddatalibrary/resources/air_operations/diplomatic_clearance.py +175 -0
  46. unifieddatalibrary/resources/air_tasking_orders.py +677 -0
  47. unifieddatalibrary/resources/air_transport_missions/__init__.py +33 -0
  48. unifieddatalibrary/resources/air_transport_missions/air_transport_missions.py +1566 -0
  49. unifieddatalibrary/resources/air_transport_missions/history.py +461 -0
  50. unifieddatalibrary/resources/aircraft.py +1083 -0
  51. unifieddatalibrary/resources/aircraft_sorties.py +1103 -0
  52. unifieddatalibrary/resources/aircraft_status_remarks.py +696 -0
  53. unifieddatalibrary/resources/aircraft_statuses/__init__.py +33 -0
  54. unifieddatalibrary/resources/aircraft_statuses/aircraft_statuses.py +1732 -0
  55. unifieddatalibrary/resources/aircraft_statuses/history.py +250 -0
  56. unifieddatalibrary/resources/aircraftstatusremark.py +413 -0
  57. unifieddatalibrary/resources/airfield_slots.py +424 -0
  58. unifieddatalibrary/resources/airfield_status.py +861 -0
  59. unifieddatalibrary/resources/airfields.py +1425 -0
  60. unifieddatalibrary/resources/airfieldslotconsumptions.py +1476 -0
  61. unifieddatalibrary/resources/airfieldslots.py +767 -0
  62. unifieddatalibrary/resources/airfieldstatus/__init__.py +33 -0
  63. unifieddatalibrary/resources/airfieldstatus/airfieldstatus.py +798 -0
  64. unifieddatalibrary/resources/airfieldstatus/history.py +250 -0
  65. unifieddatalibrary/resources/airloadplans.py +901 -0
  66. unifieddatalibrary/resources/airspace_control_orders.py +942 -0
  67. unifieddatalibrary/resources/airtaskingorders.py +145 -0
  68. unifieddatalibrary/resources/ais/__init__.py +33 -0
  69. unifieddatalibrary/resources/ais/ais.py +692 -0
  70. unifieddatalibrary/resources/ais/history.py +363 -0
  71. unifieddatalibrary/resources/ais_objects.py +175 -0
  72. unifieddatalibrary/resources/analytic_imagery.py +1168 -0
  73. unifieddatalibrary/resources/antennas.py +876 -0
  74. unifieddatalibrary/resources/attitude_data.py +272 -0
  75. unifieddatalibrary/resources/attitude_sets/__init__.py +33 -0
  76. unifieddatalibrary/resources/attitude_sets/attitude_sets.py +1407 -0
  77. unifieddatalibrary/resources/attitude_sets/history.py +473 -0
  78. unifieddatalibrary/resources/attitudesets.py +165 -0
  79. unifieddatalibrary/resources/aviationriskmanagement.py +1277 -0
  80. unifieddatalibrary/resources/batteries.py +876 -0
  81. unifieddatalibrary/resources/batterydetails.py +800 -0
  82. unifieddatalibrary/resources/beam.py +912 -0
  83. unifieddatalibrary/resources/beam_contours.py +1314 -0
  84. unifieddatalibrary/resources/buses.py +1722 -0
  85. unifieddatalibrary/resources/channels.py +1114 -0
  86. unifieddatalibrary/resources/collect_requests/__init__.py +33 -0
  87. unifieddatalibrary/resources/collect_requests/collect_requests.py +1767 -0
  88. unifieddatalibrary/resources/collect_requests/history.py +461 -0
  89. unifieddatalibrary/resources/collect_responses/__init__.py +47 -0
  90. unifieddatalibrary/resources/collect_responses/collect_responses.py +1093 -0
  91. unifieddatalibrary/resources/collect_responses/history/__init__.py +33 -0
  92. unifieddatalibrary/resources/collect_responses/history/aodr.py +246 -0
  93. unifieddatalibrary/resources/collect_responses/history/history.py +339 -0
  94. unifieddatalibrary/resources/collect_responses/tuple.py +219 -0
  95. unifieddatalibrary/resources/comm.py +947 -0
  96. unifieddatalibrary/resources/conjunctions/__init__.py +33 -0
  97. unifieddatalibrary/resources/conjunctions/conjunctions.py +1812 -0
  98. unifieddatalibrary/resources/conjunctions/history.py +340 -0
  99. unifieddatalibrary/resources/cots.py +310 -0
  100. unifieddatalibrary/resources/countries.py +924 -0
  101. unifieddatalibrary/resources/crew.py +1887 -0
  102. unifieddatalibrary/resources/diffofarrival/__init__.py +33 -0
  103. unifieddatalibrary/resources/diffofarrival/diffofarrival.py +474 -0
  104. unifieddatalibrary/resources/diffofarrival/history.py +190 -0
  105. unifieddatalibrary/resources/diplomatic_clearance/__init__.py +47 -0
  106. unifieddatalibrary/resources/diplomatic_clearance/country.py +1616 -0
  107. unifieddatalibrary/resources/diplomatic_clearance/diplomatic_clearance.py +1301 -0
  108. unifieddatalibrary/resources/diplomatic_clearance/history.py +463 -0
  109. unifieddatalibrary/resources/drift_history.py +464 -0
  110. unifieddatalibrary/resources/dropzone.py +1540 -0
  111. unifieddatalibrary/resources/ecpsdr.py +175 -0
  112. unifieddatalibrary/resources/effect_requests/__init__.py +33 -0
  113. unifieddatalibrary/resources/effect_requests/effect_requests.py +1071 -0
  114. unifieddatalibrary/resources/effect_requests/history.py +461 -0
  115. unifieddatalibrary/resources/effect_responses/__init__.py +33 -0
  116. unifieddatalibrary/resources/effect_responses/effect_responses.py +1083 -0
  117. unifieddatalibrary/resources/effect_responses/history.py +461 -0
  118. unifieddatalibrary/resources/elsets/__init__.py +47 -0
  119. unifieddatalibrary/resources/elsets/current.py +265 -0
  120. unifieddatalibrary/resources/elsets/elsets.py +1588 -0
  121. unifieddatalibrary/resources/elsets/history.py +461 -0
  122. unifieddatalibrary/resources/emittergeolocation.py +1339 -0
  123. unifieddatalibrary/resources/engine_details.py +893 -0
  124. unifieddatalibrary/resources/enginedetails.py +145 -0
  125. unifieddatalibrary/resources/engines.py +908 -0
  126. unifieddatalibrary/resources/entities.py +1193 -0
  127. unifieddatalibrary/resources/eo_observations/__init__.py +33 -0
  128. unifieddatalibrary/resources/eo_observations/eo_observations.py +1602 -0
  129. unifieddatalibrary/resources/eo_observations/history.py +467 -0
  130. unifieddatalibrary/resources/eoobservations.py +360 -0
  131. unifieddatalibrary/resources/eop/__init__.py +33 -0
  132. unifieddatalibrary/resources/eop/eop.py +1662 -0
  133. unifieddatalibrary/resources/eop/history.py +461 -0
  134. unifieddatalibrary/resources/ephemeris/__init__.py +47 -0
  135. unifieddatalibrary/resources/ephemeris/attitude_data/__init__.py +33 -0
  136. unifieddatalibrary/resources/ephemeris/attitude_data/attitude_data.py +310 -0
  137. unifieddatalibrary/resources/ephemeris/attitude_data/history.py +452 -0
  138. unifieddatalibrary/resources/ephemeris/ephemeris.py +1259 -0
  139. unifieddatalibrary/resources/ephemeris/history.py +464 -0
  140. unifieddatalibrary/resources/ephemeris_sets/__init__.py +33 -0
  141. unifieddatalibrary/resources/ephemeris_sets/ephemeris_sets.py +1267 -0
  142. unifieddatalibrary/resources/ephemeris_sets/history.py +513 -0
  143. unifieddatalibrary/resources/equipment.py +2459 -0
  144. unifieddatalibrary/resources/equipmentremarks.py +767 -0
  145. unifieddatalibrary/resources/evac/__init__.py +47 -0
  146. unifieddatalibrary/resources/evac/evac.py +1107 -0
  147. unifieddatalibrary/resources/evac/history.py +303 -0
  148. unifieddatalibrary/resources/evac/tuple.py +217 -0
  149. unifieddatalibrary/resources/event_evolution/__init__.py +33 -0
  150. unifieddatalibrary/resources/event_evolution/event_evolution.py +1263 -0
  151. unifieddatalibrary/resources/event_evolution/history.py +519 -0
  152. unifieddatalibrary/resources/featureassessment/__init__.py +33 -0
  153. unifieddatalibrary/resources/featureassessment/featureassessment.py +1321 -0
  154. unifieddatalibrary/resources/featureassessment/history.py +462 -0
  155. unifieddatalibrary/resources/flightplan.py +2589 -0
  156. unifieddatalibrary/resources/geostatus.py +970 -0
  157. unifieddatalibrary/resources/globalatmosphericmodel/__init__.py +33 -0
  158. unifieddatalibrary/resources/globalatmosphericmodel/globalatmosphericmodel.py +1045 -0
  159. unifieddatalibrary/resources/globalatmosphericmodel/history.py +461 -0
  160. unifieddatalibrary/resources/gnss_observations/__init__.py +33 -0
  161. unifieddatalibrary/resources/gnss_observations/gnss_observations.py +102 -0
  162. unifieddatalibrary/resources/gnss_observations/history.py +192 -0
  163. unifieddatalibrary/resources/gnss_raw_if/__init__.py +33 -0
  164. unifieddatalibrary/resources/gnss_raw_if/gnss_raw_if.py +102 -0
  165. unifieddatalibrary/resources/gnss_raw_if/history.py +461 -0
  166. unifieddatalibrary/resources/gnssobservationset.py +656 -0
  167. unifieddatalibrary/resources/gnssrawif.py +784 -0
  168. unifieddatalibrary/resources/ground_imagery/__init__.py +33 -0
  169. unifieddatalibrary/resources/ground_imagery/ground_imagery.py +404 -0
  170. unifieddatalibrary/resources/ground_imagery/history.py +303 -0
  171. unifieddatalibrary/resources/groundimagery.py +1007 -0
  172. unifieddatalibrary/resources/h3geo/__init__.py +33 -0
  173. unifieddatalibrary/resources/h3geo/h3geo.py +832 -0
  174. unifieddatalibrary/resources/h3geo/history.py +461 -0
  175. unifieddatalibrary/resources/h3geohexcell.py +465 -0
  176. unifieddatalibrary/resources/hazard/__init__.py +33 -0
  177. unifieddatalibrary/resources/hazard/hazard.py +1212 -0
  178. unifieddatalibrary/resources/hazard/history.py +463 -0
  179. unifieddatalibrary/resources/iono_observation/__init__.py +33 -0
  180. unifieddatalibrary/resources/iono_observation/history.py +457 -0
  181. unifieddatalibrary/resources/iono_observation/iono_observation.py +102 -0
  182. unifieddatalibrary/resources/ionoobservation.py +650 -0
  183. unifieddatalibrary/resources/ir.py +951 -0
  184. unifieddatalibrary/resources/isr_collections/__init__.py +33 -0
  185. unifieddatalibrary/resources/isr_collections/history.py +461 -0
  186. unifieddatalibrary/resources/isr_collections/isr_collections.py +682 -0
  187. unifieddatalibrary/resources/item.py +1757 -0
  188. unifieddatalibrary/resources/item_trackings/__init__.py +33 -0
  189. unifieddatalibrary/resources/item_trackings/history.py +307 -0
  190. unifieddatalibrary/resources/item_trackings/item_trackings.py +1042 -0
  191. unifieddatalibrary/resources/launch_event/__init__.py +33 -0
  192. unifieddatalibrary/resources/launch_event/history.py +463 -0
  193. unifieddatalibrary/resources/launch_event/launch_event.py +207 -0
  194. unifieddatalibrary/resources/launchdetection.py +1190 -0
  195. unifieddatalibrary/resources/launchevent.py +989 -0
  196. unifieddatalibrary/resources/launchsite.py +956 -0
  197. unifieddatalibrary/resources/launchsitedetails.py +886 -0
  198. unifieddatalibrary/resources/launchvehicle.py +910 -0
  199. unifieddatalibrary/resources/launchvehicledetails.py +1434 -0
  200. unifieddatalibrary/resources/link_status/__init__.py +47 -0
  201. unifieddatalibrary/resources/link_status/datalink.py +1343 -0
  202. unifieddatalibrary/resources/link_status/history.py +549 -0
  203. unifieddatalibrary/resources/link_status/link_status.py +1067 -0
  204. unifieddatalibrary/resources/location.py +998 -0
  205. unifieddatalibrary/resources/logisticssupport/__init__.py +33 -0
  206. unifieddatalibrary/resources/logisticssupport/history.py +394 -0
  207. unifieddatalibrary/resources/logisticssupport/logisticssupport.py +1418 -0
  208. unifieddatalibrary/resources/maneuvers/__init__.py +33 -0
  209. unifieddatalibrary/resources/maneuvers/history.py +469 -0
  210. unifieddatalibrary/resources/maneuvers/maneuvers.py +1857 -0
  211. unifieddatalibrary/resources/manifold.py +1066 -0
  212. unifieddatalibrary/resources/manifoldelset.py +1435 -0
  213. unifieddatalibrary/resources/missile_tracks/__init__.py +33 -0
  214. unifieddatalibrary/resources/missile_tracks/history.py +461 -0
  215. unifieddatalibrary/resources/missile_tracks/missile_tracks.py +678 -0
  216. unifieddatalibrary/resources/missionassignment/__init__.py +33 -0
  217. unifieddatalibrary/resources/missionassignment/history.py +461 -0
  218. unifieddatalibrary/resources/missionassignment/missionassignment.py +2029 -0
  219. unifieddatalibrary/resources/monoradar.py +561 -0
  220. unifieddatalibrary/resources/mti.py +642 -0
  221. unifieddatalibrary/resources/navigation.py +959 -0
  222. unifieddatalibrary/resources/navigationalobstruction.py +2331 -0
  223. unifieddatalibrary/resources/notification.py +962 -0
  224. unifieddatalibrary/resources/objectofinterest.py +1590 -0
  225. unifieddatalibrary/resources/observations/__init__.py +89 -0
  226. unifieddatalibrary/resources/observations/ecpsdr.py +1202 -0
  227. unifieddatalibrary/resources/observations/monoradar/__init__.py +33 -0
  228. unifieddatalibrary/resources/observations/monoradar/history.py +461 -0
  229. unifieddatalibrary/resources/observations/monoradar/monoradar.py +207 -0
  230. unifieddatalibrary/resources/observations/observations.py +230 -0
  231. unifieddatalibrary/resources/observations/radarobservation/__init__.py +33 -0
  232. unifieddatalibrary/resources/observations/radarobservation/history.py +461 -0
  233. unifieddatalibrary/resources/observations/radarobservation/radarobservation.py +102 -0
  234. unifieddatalibrary/resources/observations/rfobservation/__init__.py +33 -0
  235. unifieddatalibrary/resources/observations/rfobservation/history.py +363 -0
  236. unifieddatalibrary/resources/observations/rfobservation/rfobservation.py +102 -0
  237. unifieddatalibrary/resources/observations/swir.py +175 -0
  238. unifieddatalibrary/resources/onboardnavigation.py +654 -0
  239. unifieddatalibrary/resources/onorbit/__init__.py +33 -0
  240. unifieddatalibrary/resources/onorbit/antenna_details.py +958 -0
  241. unifieddatalibrary/resources/onorbit/onorbit.py +1326 -0
  242. unifieddatalibrary/resources/onorbitantenna.py +721 -0
  243. unifieddatalibrary/resources/onorbitbattery.py +729 -0
  244. unifieddatalibrary/resources/onorbitdetails.py +1371 -0
  245. unifieddatalibrary/resources/onorbitevent.py +1662 -0
  246. unifieddatalibrary/resources/onorbitlist.py +933 -0
  247. unifieddatalibrary/resources/onorbitsolararray.py +745 -0
  248. unifieddatalibrary/resources/onorbitthruster.py +757 -0
  249. unifieddatalibrary/resources/onorbitthrusterstatus/__init__.py +33 -0
  250. unifieddatalibrary/resources/onorbitthrusterstatus/history.py +218 -0
  251. unifieddatalibrary/resources/onorbitthrusterstatus/onorbitthrusterstatus.py +1138 -0
  252. unifieddatalibrary/resources/operatingunit.py +2430 -0
  253. unifieddatalibrary/resources/operatingunitremark.py +769 -0
  254. unifieddatalibrary/resources/orbitdetermination/__init__.py +33 -0
  255. unifieddatalibrary/resources/orbitdetermination/history.py +525 -0
  256. unifieddatalibrary/resources/orbitdetermination/orbitdetermination.py +1373 -0
  257. unifieddatalibrary/resources/orbittrack/__init__.py +33 -0
  258. unifieddatalibrary/resources/orbittrack/history.py +461 -0
  259. unifieddatalibrary/resources/orbittrack/orbittrack.py +678 -0
  260. unifieddatalibrary/resources/organization.py +1152 -0
  261. unifieddatalibrary/resources/organizationdetails.py +1349 -0
  262. unifieddatalibrary/resources/passiveradarobservation/__init__.py +33 -0
  263. unifieddatalibrary/resources/passiveradarobservation/history.py +461 -0
  264. unifieddatalibrary/resources/passiveradarobservation/passiveradarobservation.py +1455 -0
  265. unifieddatalibrary/resources/personnelrecovery/__init__.py +33 -0
  266. unifieddatalibrary/resources/personnelrecovery/history.py +307 -0
  267. unifieddatalibrary/resources/personnelrecovery/personnelrecovery.py +1263 -0
  268. unifieddatalibrary/resources/poi.py +1313 -0
  269. unifieddatalibrary/resources/port.py +1239 -0
  270. unifieddatalibrary/resources/radarobservation.py +1467 -0
  271. unifieddatalibrary/resources/report_and_activity/__init__.py +61 -0
  272. unifieddatalibrary/resources/report_and_activity/poi/__init__.py +33 -0
  273. unifieddatalibrary/resources/report_and_activity/poi/history.py +455 -0
  274. unifieddatalibrary/resources/report_and_activity/poi/poi.py +102 -0
  275. unifieddatalibrary/resources/report_and_activity/report_and_activity.py +166 -0
  276. unifieddatalibrary/resources/report_and_activity/udl_h3geo.py +337 -0
  277. unifieddatalibrary/resources/report_and_activity/udl_sigact.py +269 -0
  278. unifieddatalibrary/resources/rfband.py +1204 -0
  279. unifieddatalibrary/resources/rfbandtype.py +924 -0
  280. unifieddatalibrary/resources/rfemitter.py +953 -0
  281. unifieddatalibrary/resources/rfemitterdetails.py +1339 -0
  282. unifieddatalibrary/resources/rfobservation/__init__.py +33 -0
  283. unifieddatalibrary/resources/rfobservation/history.py +190 -0
  284. unifieddatalibrary/resources/rfobservation/rfobservation.py +1753 -0
  285. unifieddatalibrary/resources/routestats.py +1506 -0
  286. unifieddatalibrary/resources/sarobservation/__init__.py +33 -0
  287. unifieddatalibrary/resources/sarobservation/history.py +463 -0
  288. unifieddatalibrary/resources/sarobservation/sarobservation.py +1531 -0
  289. unifieddatalibrary/resources/scientific.py +1033 -0
  290. unifieddatalibrary/resources/scs/__init__.py +131 -0
  291. unifieddatalibrary/resources/scs/classification_markings.py +135 -0
  292. unifieddatalibrary/resources/scs/file.py +382 -0
  293. unifieddatalibrary/resources/scs/file_metadata.py +135 -0
  294. unifieddatalibrary/resources/scs/folders.py +434 -0
  295. unifieddatalibrary/resources/scs/groups.py +135 -0
  296. unifieddatalibrary/resources/scs/paths.py +227 -0
  297. unifieddatalibrary/resources/scs/range_parameters.py +135 -0
  298. unifieddatalibrary/resources/scs/scs.py +1502 -0
  299. unifieddatalibrary/resources/scs/v2.py +960 -0
  300. unifieddatalibrary/resources/scs_views.py +172 -0
  301. unifieddatalibrary/resources/secure_messaging.py +380 -0
  302. unifieddatalibrary/resources/sensor/__init__.py +33 -0
  303. unifieddatalibrary/resources/sensor/calibration/__init__.py +33 -0
  304. unifieddatalibrary/resources/sensor/calibration/calibration.py +1381 -0
  305. unifieddatalibrary/resources/sensor/calibration/history.py +461 -0
  306. unifieddatalibrary/resources/sensor/sensor.py +1153 -0
  307. unifieddatalibrary/resources/sensormaintenance/__init__.py +33 -0
  308. unifieddatalibrary/resources/sensormaintenance/history.py +501 -0
  309. unifieddatalibrary/resources/sensormaintenance/sensormaintenance.py +1596 -0
  310. unifieddatalibrary/resources/sensorobservationtype.py +266 -0
  311. unifieddatalibrary/resources/sensorplan/__init__.py +33 -0
  312. unifieddatalibrary/resources/sensorplan/history.py +461 -0
  313. unifieddatalibrary/resources/sensorplan/sensorplan.py +1281 -0
  314. unifieddatalibrary/resources/sensortype.py +280 -0
  315. unifieddatalibrary/resources/seradatacommdetails.py +1356 -0
  316. unifieddatalibrary/resources/seradataearlywarning.py +1108 -0
  317. unifieddatalibrary/resources/seradatanavigation.py +1092 -0
  318. unifieddatalibrary/resources/seradataopticalpayload.py +1182 -0
  319. unifieddatalibrary/resources/seradataradarpayload.py +1280 -0
  320. unifieddatalibrary/resources/seradatasigintpayload.py +1094 -0
  321. unifieddatalibrary/resources/seradataspacecraftdetails.py +2292 -0
  322. unifieddatalibrary/resources/sgi/__init__.py +33 -0
  323. unifieddatalibrary/resources/sgi/history.py +525 -0
  324. unifieddatalibrary/resources/sgi/sgi.py +2475 -0
  325. unifieddatalibrary/resources/sigact/__init__.py +33 -0
  326. unifieddatalibrary/resources/sigact/history.py +305 -0
  327. unifieddatalibrary/resources/sigact/sigact.py +724 -0
  328. unifieddatalibrary/resources/site/__init__.py +33 -0
  329. unifieddatalibrary/resources/site/operations.py +1404 -0
  330. unifieddatalibrary/resources/site/site.py +2703 -0
  331. unifieddatalibrary/resources/siteremark.py +674 -0
  332. unifieddatalibrary/resources/sitestatus/__init__.py +33 -0
  333. unifieddatalibrary/resources/sitestatus/history.py +250 -0
  334. unifieddatalibrary/resources/sitestatus/sitestatus.py +1698 -0
  335. unifieddatalibrary/resources/skyimagery/__init__.py +33 -0
  336. unifieddatalibrary/resources/skyimagery/history.py +463 -0
  337. unifieddatalibrary/resources/skyimagery/skyimagery.py +822 -0
  338. unifieddatalibrary/resources/soiobservationset/__init__.py +33 -0
  339. unifieddatalibrary/resources/soiobservationset/history.py +461 -0
  340. unifieddatalibrary/resources/soiobservationset/soiobservationset.py +1569 -0
  341. unifieddatalibrary/resources/solararray.py +876 -0
  342. unifieddatalibrary/resources/solararraydetails.py +888 -0
  343. unifieddatalibrary/resources/sortieppr/__init__.py +33 -0
  344. unifieddatalibrary/resources/sortieppr/history.py +458 -0
  345. unifieddatalibrary/resources/sortieppr/sortieppr.py +1348 -0
  346. unifieddatalibrary/resources/spaceenvobservation/__init__.py +33 -0
  347. unifieddatalibrary/resources/spaceenvobservation/history.py +461 -0
  348. unifieddatalibrary/resources/spaceenvobservation/spaceenvobservation.py +686 -0
  349. unifieddatalibrary/resources/stage.py +1423 -0
  350. unifieddatalibrary/resources/starcatalog/__init__.py +33 -0
  351. unifieddatalibrary/resources/starcatalog/history.py +257 -0
  352. unifieddatalibrary/resources/starcatalog/starcatalog.py +1911 -0
  353. unifieddatalibrary/resources/statevector/__init__.py +47 -0
  354. unifieddatalibrary/resources/statevector/current.py +273 -0
  355. unifieddatalibrary/resources/statevector/history.py +461 -0
  356. unifieddatalibrary/resources/statevector/statevector.py +2072 -0
  357. unifieddatalibrary/resources/status.py +1180 -0
  358. unifieddatalibrary/resources/substatus.py +942 -0
  359. unifieddatalibrary/resources/supporting_data/__init__.py +89 -0
  360. unifieddatalibrary/resources/supporting_data/data_types.py +135 -0
  361. unifieddatalibrary/resources/supporting_data/dataowner.py +197 -0
  362. unifieddatalibrary/resources/supporting_data/dataowner_types.py +135 -0
  363. unifieddatalibrary/resources/supporting_data/provider_metadata.py +133 -0
  364. unifieddatalibrary/resources/supporting_data/query_help.py +142 -0
  365. unifieddatalibrary/resources/supporting_data/supporting_data.py +230 -0
  366. unifieddatalibrary/resources/surface.py +2372 -0
  367. unifieddatalibrary/resources/surfaceobstruction.py +1092 -0
  368. unifieddatalibrary/resources/swir/__init__.py +33 -0
  369. unifieddatalibrary/resources/swir/history.py +455 -0
  370. unifieddatalibrary/resources/swir/swir.py +942 -0
  371. unifieddatalibrary/resources/taiutc/__init__.py +33 -0
  372. unifieddatalibrary/resources/taiutc/history.py +463 -0
  373. unifieddatalibrary/resources/taiutc/taiutc.py +1086 -0
  374. unifieddatalibrary/resources/tdoa_fdoa/__init__.py +33 -0
  375. unifieddatalibrary/resources/tdoa_fdoa/diffofarrival/__init__.py +33 -0
  376. unifieddatalibrary/resources/tdoa_fdoa/diffofarrival/diffofarrival.py +905 -0
  377. unifieddatalibrary/resources/tdoa_fdoa/diffofarrival/history.py +363 -0
  378. unifieddatalibrary/resources/tdoa_fdoa/tdoa_fdoa.py +102 -0
  379. unifieddatalibrary/resources/track/__init__.py +33 -0
  380. unifieddatalibrary/resources/track/history.py +461 -0
  381. unifieddatalibrary/resources/track/track.py +678 -0
  382. unifieddatalibrary/resources/trackdetails/__init__.py +33 -0
  383. unifieddatalibrary/resources/trackdetails/history.py +461 -0
  384. unifieddatalibrary/resources/trackdetails/trackdetails.py +593 -0
  385. unifieddatalibrary/resources/trackroute/__init__.py +33 -0
  386. unifieddatalibrary/resources/trackroute/history.py +463 -0
  387. unifieddatalibrary/resources/trackroute/trackroute.py +1986 -0
  388. unifieddatalibrary/resources/transponder.py +1068 -0
  389. unifieddatalibrary/resources/udl/__init__.py +103 -0
  390. unifieddatalibrary/resources/udl/geostatus/__init__.py +33 -0
  391. unifieddatalibrary/resources/udl/geostatus/geostatus.py +102 -0
  392. unifieddatalibrary/resources/udl/geostatus/history.py +461 -0
  393. unifieddatalibrary/resources/udl/gnssobservationset/__init__.py +33 -0
  394. unifieddatalibrary/resources/udl/gnssobservationset/gnssobservationset.py +102 -0
  395. unifieddatalibrary/resources/udl/gnssobservationset/history.py +367 -0
  396. unifieddatalibrary/resources/udl/mti/__init__.py +33 -0
  397. unifieddatalibrary/resources/udl/mti/history.py +455 -0
  398. unifieddatalibrary/resources/udl/mti/mti.py +102 -0
  399. unifieddatalibrary/resources/udl/notification/__init__.py +33 -0
  400. unifieddatalibrary/resources/udl/notification/history.py +455 -0
  401. unifieddatalibrary/resources/udl/notification/notification.py +102 -0
  402. unifieddatalibrary/resources/udl/onboardnavigation/__init__.py +33 -0
  403. unifieddatalibrary/resources/udl/onboardnavigation/history.py +461 -0
  404. unifieddatalibrary/resources/udl/onboardnavigation/onboardnavigation.py +102 -0
  405. unifieddatalibrary/resources/udl/onorbitthrusterstatus/__init__.py +33 -0
  406. unifieddatalibrary/resources/udl/onorbitthrusterstatus/history.py +227 -0
  407. unifieddatalibrary/resources/udl/onorbitthrusterstatus/onorbitthrusterstatus.py +102 -0
  408. unifieddatalibrary/resources/udl/udl.py +262 -0
  409. unifieddatalibrary/resources/vessel.py +1382 -0
  410. unifieddatalibrary/resources/video/__init__.py +33 -0
  411. unifieddatalibrary/resources/video/history.py +250 -0
  412. unifieddatalibrary/resources/video/video.py +1007 -0
  413. unifieddatalibrary/resources/weatherdata/__init__.py +33 -0
  414. unifieddatalibrary/resources/weatherdata/history.py +461 -0
  415. unifieddatalibrary/resources/weatherdata/weatherdata.py +1253 -0
  416. unifieddatalibrary/resources/weatherreport/__init__.py +33 -0
  417. unifieddatalibrary/resources/weatherreport/history.py +461 -0
  418. unifieddatalibrary/resources/weatherreport/weatherreport.py +1686 -0
  419. unifieddatalibrary/types/__init__.py +1502 -0
  420. unifieddatalibrary/types/ai_count_params.py +19 -0
  421. unifieddatalibrary/types/ai_count_response.py +7 -0
  422. unifieddatalibrary/types/ai_create_bulk_params.py +272 -0
  423. unifieddatalibrary/types/ai_history_count_params.py +19 -0
  424. unifieddatalibrary/types/ai_history_count_response.py +7 -0
  425. unifieddatalibrary/types/ai_list_params.py +19 -0
  426. unifieddatalibrary/types/ai_list_response.py +10 -0
  427. unifieddatalibrary/types/ai_tuple_params.py +27 -0
  428. unifieddatalibrary/types/ai_tuple_response.py +10 -0
  429. unifieddatalibrary/types/air_event_count_response.py +7 -0
  430. unifieddatalibrary/types/air_event_create_bulk_params.py +413 -0
  431. unifieddatalibrary/types/air_event_create_params.py +409 -0
  432. unifieddatalibrary/types/air_event_get_response.py +440 -0
  433. unifieddatalibrary/types/air_event_list_response.py +449 -0
  434. unifieddatalibrary/types/air_event_tuple_params.py +17 -0
  435. unifieddatalibrary/types/air_event_tuple_response.py +449 -0
  436. unifieddatalibrary/types/air_event_unvalidated_publish_params.py +413 -0
  437. unifieddatalibrary/types/air_event_update_params.py +409 -0
  438. unifieddatalibrary/types/air_load_plan_count_params.py +19 -0
  439. unifieddatalibrary/types/air_load_plan_count_response.py +7 -0
  440. unifieddatalibrary/types/air_load_plan_create_params.py +607 -0
  441. unifieddatalibrary/types/air_load_plan_list_params.py +19 -0
  442. unifieddatalibrary/types/air_load_plan_list_response.py +10 -0
  443. unifieddatalibrary/types/air_load_plan_tuple_params.py +27 -0
  444. unifieddatalibrary/types/air_load_plan_tuple_response.py +10 -0
  445. unifieddatalibrary/types/air_operations/__init__.py +37 -0
  446. unifieddatalibrary/types/air_operations/air_tasking_order_unvalidated_publish_params.py +383 -0
  447. unifieddatalibrary/types/air_operations/aircraft_sortie_count_params.py +19 -0
  448. unifieddatalibrary/types/air_operations/aircraft_sortie_count_response.py +7 -0
  449. unifieddatalibrary/types/air_operations/aircraft_sortie_create_bulk_params.py +313 -0
  450. unifieddatalibrary/types/air_operations/aircraft_sortie_create_params.py +309 -0
  451. unifieddatalibrary/types/air_operations/aircraft_sortie_history_aodr_params.py +47 -0
  452. unifieddatalibrary/types/air_operations/aircraft_sortie_history_count_params.py +19 -0
  453. unifieddatalibrary/types/air_operations/aircraft_sortie_history_count_response.py +7 -0
  454. unifieddatalibrary/types/air_operations/aircraft_sortie_history_query_params.py +27 -0
  455. unifieddatalibrary/types/air_operations/aircraft_sortie_history_query_response.py +10 -0
  456. unifieddatalibrary/types/air_operations/aircraft_sortie_list_params.py +19 -0
  457. unifieddatalibrary/types/air_operations/aircraft_sortie_list_response.py +10 -0
  458. unifieddatalibrary/types/air_operations/aircraft_sorty_unvalidated_publish_params.py +313 -0
  459. unifieddatalibrary/types/air_operations/aircraftsortie_abridged.py +353 -0
  460. unifieddatalibrary/types/air_operations/aircraftsortie_full.py +369 -0
  461. unifieddatalibrary/types/air_operations/airspace_control_order_unvalidated_publish_params.py +475 -0
  462. unifieddatalibrary/types/air_operations/crewpaper_unpublish_params.py +12 -0
  463. unifieddatalibrary/types/air_operations/crewpaper_upload_pdf_params.py +28 -0
  464. unifieddatalibrary/types/air_operations/diplomatic_clearance_unvalidated_publish_params.py +239 -0
  465. unifieddatalibrary/types/air_operations/diplomaticclearance_abridged.py +261 -0
  466. unifieddatalibrary/types/air_operations/diplomaticclearance_full.py +261 -0
  467. unifieddatalibrary/types/air_tasking_order_count_response.py +7 -0
  468. unifieddatalibrary/types/air_tasking_order_create_params.py +378 -0
  469. unifieddatalibrary/types/air_tasking_order_full.py +402 -0
  470. unifieddatalibrary/types/air_tasking_order_tuple_params.py +17 -0
  471. unifieddatalibrary/types/air_tasking_order_tuple_response.py +10 -0
  472. unifieddatalibrary/types/air_transport_mission_abridged.py +409 -0
  473. unifieddatalibrary/types/air_transport_mission_count_params.py +19 -0
  474. unifieddatalibrary/types/air_transport_mission_count_response.py +7 -0
  475. unifieddatalibrary/types/air_transport_mission_create_params.py +378 -0
  476. unifieddatalibrary/types/air_transport_mission_list_params.py +19 -0
  477. unifieddatalibrary/types/air_transport_mission_list_response.py +10 -0
  478. unifieddatalibrary/types/air_transport_mission_tuple_params.py +27 -0
  479. unifieddatalibrary/types/air_transport_mission_tuple_response.py +10 -0
  480. unifieddatalibrary/types/air_transport_mission_update_params.py +378 -0
  481. unifieddatalibrary/types/air_transport_missions/__init__.py +9 -0
  482. unifieddatalibrary/types/air_transport_missions/history_aodr_params.py +47 -0
  483. unifieddatalibrary/types/air_transport_missions/history_count_params.py +19 -0
  484. unifieddatalibrary/types/air_transport_missions/history_count_response.py +7 -0
  485. unifieddatalibrary/types/air_transport_missions/history_list_params.py +27 -0
  486. unifieddatalibrary/types/air_transport_missions/history_list_response.py +10 -0
  487. unifieddatalibrary/types/aircraft_abridged.py +126 -0
  488. unifieddatalibrary/types/aircraft_count_response.py +7 -0
  489. unifieddatalibrary/types/aircraft_create_params.py +110 -0
  490. unifieddatalibrary/types/aircraft_full.py +143 -0
  491. unifieddatalibrary/types/aircraft_list_response.py +10 -0
  492. unifieddatalibrary/types/aircraft_sorty_tuple_params.py +27 -0
  493. unifieddatalibrary/types/aircraft_sorty_tuple_response.py +10 -0
  494. unifieddatalibrary/types/aircraft_sorty_update_params.py +309 -0
  495. unifieddatalibrary/types/aircraft_status_count_response.py +7 -0
  496. unifieddatalibrary/types/aircraft_status_create_params.py +260 -0
  497. unifieddatalibrary/types/aircraft_status_list_response.py +10 -0
  498. unifieddatalibrary/types/aircraft_status_remark_count_response.py +7 -0
  499. unifieddatalibrary/types/aircraft_status_remark_create_params.py +83 -0
  500. unifieddatalibrary/types/aircraft_status_remark_list_response.py +10 -0
  501. unifieddatalibrary/types/aircraft_status_remark_tuple_params.py +17 -0
  502. unifieddatalibrary/types/aircraft_status_remark_tuple_response.py +10 -0
  503. unifieddatalibrary/types/aircraft_status_tuple_params.py +17 -0
  504. unifieddatalibrary/types/aircraft_status_tuple_response.py +10 -0
  505. unifieddatalibrary/types/aircraft_status_update_params.py +260 -0
  506. unifieddatalibrary/types/aircraft_statuses/__init__.py +7 -0
  507. unifieddatalibrary/types/aircraft_statuses/history_count_response.py +7 -0
  508. unifieddatalibrary/types/aircraft_statuses/history_list_params.py +17 -0
  509. unifieddatalibrary/types/aircraft_statuses/history_list_response.py +10 -0
  510. unifieddatalibrary/types/aircraft_tuple_query_params.py +17 -0
  511. unifieddatalibrary/types/aircraft_tuple_query_response.py +10 -0
  512. unifieddatalibrary/types/aircraft_update_params.py +110 -0
  513. unifieddatalibrary/types/aircraftstatus_abridged.py +284 -0
  514. unifieddatalibrary/types/aircraftstatusremark_abridged.py +105 -0
  515. unifieddatalibrary/types/aircraftstatusremark_full.py +114 -0
  516. unifieddatalibrary/types/aircraftstatusremark_update_params.py +83 -0
  517. unifieddatalibrary/types/airfield_abridged.py +221 -0
  518. unifieddatalibrary/types/airfield_count_response.py +7 -0
  519. unifieddatalibrary/types/airfield_create_params.py +198 -0
  520. unifieddatalibrary/types/airfield_full.py +230 -0
  521. unifieddatalibrary/types/airfield_list_response.py +10 -0
  522. unifieddatalibrary/types/airfield_slot_create_params.py +98 -0
  523. unifieddatalibrary/types/airfield_slot_list_response.py +10 -0
  524. unifieddatalibrary/types/airfield_status_tuple_params.py +17 -0
  525. unifieddatalibrary/types/airfield_status_tuple_response.py +10 -0
  526. unifieddatalibrary/types/airfield_status_update_params.py +221 -0
  527. unifieddatalibrary/types/airfield_tuple_params.py +17 -0
  528. unifieddatalibrary/types/airfield_tuple_response.py +10 -0
  529. unifieddatalibrary/types/airfield_update_params.py +198 -0
  530. unifieddatalibrary/types/airfieldslot_abridged.py +124 -0
  531. unifieddatalibrary/types/airfieldslot_count_response.py +7 -0
  532. unifieddatalibrary/types/airfieldslot_full.py +133 -0
  533. unifieddatalibrary/types/airfieldslot_tuple_params.py +17 -0
  534. unifieddatalibrary/types/airfieldslot_tuple_response.py +10 -0
  535. unifieddatalibrary/types/airfieldslot_update_params.py +98 -0
  536. unifieddatalibrary/types/airfieldslotconsumption_abridged.py +193 -0
  537. unifieddatalibrary/types/airfieldslotconsumption_count_params.py +19 -0
  538. unifieddatalibrary/types/airfieldslotconsumption_count_response.py +7 -0
  539. unifieddatalibrary/types/airfieldslotconsumption_create_params.py +171 -0
  540. unifieddatalibrary/types/airfieldslotconsumption_full.py +202 -0
  541. unifieddatalibrary/types/airfieldslotconsumption_list_params.py +19 -0
  542. unifieddatalibrary/types/airfieldslotconsumption_list_response.py +10 -0
  543. unifieddatalibrary/types/airfieldslotconsumption_tuple_params.py +27 -0
  544. unifieddatalibrary/types/airfieldslotconsumption_tuple_response.py +10 -0
  545. unifieddatalibrary/types/airfieldslotconsumption_update_params.py +171 -0
  546. unifieddatalibrary/types/airfieldstatus/__init__.py +7 -0
  547. unifieddatalibrary/types/airfieldstatus/history_count_response.py +7 -0
  548. unifieddatalibrary/types/airfieldstatus/history_list_params.py +17 -0
  549. unifieddatalibrary/types/airfieldstatus/history_list_response.py +10 -0
  550. unifieddatalibrary/types/airfieldstatus_abridged.py +243 -0
  551. unifieddatalibrary/types/airfieldstatus_count_response.py +7 -0
  552. unifieddatalibrary/types/airfieldstatus_create_params.py +221 -0
  553. unifieddatalibrary/types/airfieldstatus_full.py +252 -0
  554. unifieddatalibrary/types/airfieldstatus_list_response.py +10 -0
  555. unifieddatalibrary/types/airloadplan_abridged.py +640 -0
  556. unifieddatalibrary/types/airloadplan_full.py +640 -0
  557. unifieddatalibrary/types/airloadplan_update_params.py +607 -0
  558. unifieddatalibrary/types/airspace_control_order_count_response.py +7 -0
  559. unifieddatalibrary/types/airspace_control_order_create_bulk_params.py +475 -0
  560. unifieddatalibrary/types/airspace_control_order_create_params.py +470 -0
  561. unifieddatalibrary/types/airspace_control_order_list_response.py +10 -0
  562. unifieddatalibrary/types/airspace_control_order_tuple_params.py +17 -0
  563. unifieddatalibrary/types/airspace_control_order_tuple_response.py +10 -0
  564. unifieddatalibrary/types/airspacecontrolorder_abridged.py +496 -0
  565. unifieddatalibrary/types/airspacecontrolorder_full.py +496 -0
  566. unifieddatalibrary/types/airtaskingorder_abridged.py +402 -0
  567. unifieddatalibrary/types/airtaskingorder_list_response.py +10 -0
  568. unifieddatalibrary/types/ais/__init__.py +7 -0
  569. unifieddatalibrary/types/ais/history_aodr_params.py +47 -0
  570. unifieddatalibrary/types/ais/history_list_params.py +27 -0
  571. unifieddatalibrary/types/ais/history_list_response.py +10 -0
  572. unifieddatalibrary/types/ais_abridged.py +290 -0
  573. unifieddatalibrary/types/ais_object_unvalidated_publish_params.py +272 -0
  574. unifieddatalibrary/types/analytic_imagery_abridged.py +244 -0
  575. unifieddatalibrary/types/analytic_imagery_count_params.py +19 -0
  576. unifieddatalibrary/types/analytic_imagery_count_response.py +7 -0
  577. unifieddatalibrary/types/analytic_imagery_full.py +250 -0
  578. unifieddatalibrary/types/analytic_imagery_history_aodr_params.py +47 -0
  579. unifieddatalibrary/types/analytic_imagery_history_count_params.py +19 -0
  580. unifieddatalibrary/types/analytic_imagery_history_count_response.py +7 -0
  581. unifieddatalibrary/types/analytic_imagery_history_params.py +27 -0
  582. unifieddatalibrary/types/analytic_imagery_history_response.py +10 -0
  583. unifieddatalibrary/types/analytic_imagery_list_params.py +19 -0
  584. unifieddatalibrary/types/analytic_imagery_list_response.py +10 -0
  585. unifieddatalibrary/types/analytic_imagery_tuple_params.py +27 -0
  586. unifieddatalibrary/types/analytic_imagery_tuple_response.py +10 -0
  587. unifieddatalibrary/types/analytic_imagery_unvalidated_publish_params.py +14 -0
  588. unifieddatalibrary/types/antenna_abridged.py +62 -0
  589. unifieddatalibrary/types/antenna_count_response.py +7 -0
  590. unifieddatalibrary/types/antenna_create_params.py +45 -0
  591. unifieddatalibrary/types/antenna_full.py +79 -0
  592. unifieddatalibrary/types/antenna_list_response.py +10 -0
  593. unifieddatalibrary/types/antenna_tuple_params.py +17 -0
  594. unifieddatalibrary/types/antenna_tuple_response.py +10 -0
  595. unifieddatalibrary/types/antenna_update_params.py +45 -0
  596. unifieddatalibrary/types/attitude_data_tuple_params.py +22 -0
  597. unifieddatalibrary/types/attitude_data_tuple_response.py +10 -0
  598. unifieddatalibrary/types/attitude_set_count_params.py +21 -0
  599. unifieddatalibrary/types/attitude_set_count_response.py +7 -0
  600. unifieddatalibrary/types/attitude_set_create_params.py +322 -0
  601. unifieddatalibrary/types/attitude_set_list_params.py +21 -0
  602. unifieddatalibrary/types/attitude_set_list_response.py +10 -0
  603. unifieddatalibrary/types/attitude_set_tuple_params.py +29 -0
  604. unifieddatalibrary/types/attitude_set_tuple_response.py +10 -0
  605. unifieddatalibrary/types/attitude_set_unvalidated_publish_params.py +322 -0
  606. unifieddatalibrary/types/attitude_sets/__init__.py +9 -0
  607. unifieddatalibrary/types/attitude_sets/history_aodr_params.py +49 -0
  608. unifieddatalibrary/types/attitude_sets/history_count_params.py +21 -0
  609. unifieddatalibrary/types/attitude_sets/history_count_response.py +7 -0
  610. unifieddatalibrary/types/attitude_sets/history_list_params.py +29 -0
  611. unifieddatalibrary/types/attitude_sets/history_list_response.py +10 -0
  612. unifieddatalibrary/types/attitudedata_full.py +177 -0
  613. unifieddatalibrary/types/attitudeset_abridged.py +183 -0
  614. unifieddatalibrary/types/aviationriskmanagement_count_params.py +17 -0
  615. unifieddatalibrary/types/aviationriskmanagement_count_response.py +7 -0
  616. unifieddatalibrary/types/aviationriskmanagement_create_bulk_params.py +249 -0
  617. unifieddatalibrary/types/aviationriskmanagement_create_params.py +242 -0
  618. unifieddatalibrary/types/aviationriskmanagement_query_params.py +17 -0
  619. unifieddatalibrary/types/aviationriskmanagement_query_response.py +281 -0
  620. unifieddatalibrary/types/aviationriskmanagement_retrieve_response.py +269 -0
  621. unifieddatalibrary/types/aviationriskmanagement_tuple_params.py +25 -0
  622. unifieddatalibrary/types/aviationriskmanagement_tuple_response.py +281 -0
  623. unifieddatalibrary/types/aviationriskmanagement_unvalidated_publish_params.py +249 -0
  624. unifieddatalibrary/types/aviationriskmanagement_update_params.py +242 -0
  625. unifieddatalibrary/types/battery_abridged.py +62 -0
  626. unifieddatalibrary/types/battery_count_response.py +7 -0
  627. unifieddatalibrary/types/battery_create_params.py +45 -0
  628. unifieddatalibrary/types/battery_full.py +79 -0
  629. unifieddatalibrary/types/battery_list_response.py +10 -0
  630. unifieddatalibrary/types/battery_tuple_params.py +17 -0
  631. unifieddatalibrary/types/battery_tuple_response.py +10 -0
  632. unifieddatalibrary/types/battery_update_params.py +45 -0
  633. unifieddatalibrary/types/batterydetail_create_params.py +76 -0
  634. unifieddatalibrary/types/batterydetail_list_response.py +10 -0
  635. unifieddatalibrary/types/batterydetail_update_params.py +76 -0
  636. unifieddatalibrary/types/batterydetails_abridged.py +83 -0
  637. unifieddatalibrary/types/batterydetails_full.py +110 -0
  638. unifieddatalibrary/types/beam_abridged.py +71 -0
  639. unifieddatalibrary/types/beam_contour_count_params.py +14 -0
  640. unifieddatalibrary/types/beam_contour_count_response.py +7 -0
  641. unifieddatalibrary/types/beam_contour_create_bulk_params.py +114 -0
  642. unifieddatalibrary/types/beam_contour_create_params.py +109 -0
  643. unifieddatalibrary/types/beam_contour_list_params.py +14 -0
  644. unifieddatalibrary/types/beam_contour_list_response.py +10 -0
  645. unifieddatalibrary/types/beam_contour_tuple_params.py +22 -0
  646. unifieddatalibrary/types/beam_contour_tuple_response.py +10 -0
  647. unifieddatalibrary/types/beam_contour_update_params.py +109 -0
  648. unifieddatalibrary/types/beam_count_response.py +7 -0
  649. unifieddatalibrary/types/beam_create_params.py +54 -0
  650. unifieddatalibrary/types/beam_full.py +87 -0
  651. unifieddatalibrary/types/beam_list_response.py +10 -0
  652. unifieddatalibrary/types/beam_tuple_params.py +17 -0
  653. unifieddatalibrary/types/beam_tuple_response.py +10 -0
  654. unifieddatalibrary/types/beam_update_params.py +54 -0
  655. unifieddatalibrary/types/beamcontour_abridged.py +116 -0
  656. unifieddatalibrary/types/beamcontour_full.py +141 -0
  657. unifieddatalibrary/types/bus_abridged.py +228 -0
  658. unifieddatalibrary/types/bus_count_response.py +7 -0
  659. unifieddatalibrary/types/bus_create_params.py +225 -0
  660. unifieddatalibrary/types/bus_full.py +252 -0
  661. unifieddatalibrary/types/bus_list_response.py +10 -0
  662. unifieddatalibrary/types/bus_tuple_params.py +17 -0
  663. unifieddatalibrary/types/bus_tuple_response.py +10 -0
  664. unifieddatalibrary/types/bus_update_params.py +225 -0
  665. unifieddatalibrary/types/channel_abridged.py +107 -0
  666. unifieddatalibrary/types/channel_count_response.py +7 -0
  667. unifieddatalibrary/types/channel_create_params.py +90 -0
  668. unifieddatalibrary/types/channel_full.py +116 -0
  669. unifieddatalibrary/types/channel_list_response.py +10 -0
  670. unifieddatalibrary/types/channel_tuple_params.py +17 -0
  671. unifieddatalibrary/types/channel_tuple_response.py +10 -0
  672. unifieddatalibrary/types/channel_update_params.py +90 -0
  673. unifieddatalibrary/types/collect_request_abridged.py +1366 -0
  674. unifieddatalibrary/types/collect_request_count_params.py +19 -0
  675. unifieddatalibrary/types/collect_request_count_response.py +7 -0
  676. unifieddatalibrary/types/collect_request_create_bulk_params.py +1360 -0
  677. unifieddatalibrary/types/collect_request_create_params.py +1356 -0
  678. unifieddatalibrary/types/collect_request_list_params.py +19 -0
  679. unifieddatalibrary/types/collect_request_list_response.py +10 -0
  680. unifieddatalibrary/types/collect_request_tuple_params.py +27 -0
  681. unifieddatalibrary/types/collect_request_tuple_response.py +10 -0
  682. unifieddatalibrary/types/collect_request_unvalidated_publish_params.py +1360 -0
  683. unifieddatalibrary/types/collect_requests/__init__.py +9 -0
  684. unifieddatalibrary/types/collect_requests/history_aodr_params.py +47 -0
  685. unifieddatalibrary/types/collect_requests/history_count_params.py +19 -0
  686. unifieddatalibrary/types/collect_requests/history_count_response.py +7 -0
  687. unifieddatalibrary/types/collect_requests/history_list_params.py +27 -0
  688. unifieddatalibrary/types/collect_requests/history_list_response.py +10 -0
  689. unifieddatalibrary/types/collect_response_abridged.py +183 -0
  690. unifieddatalibrary/types/collect_response_count_params.py +19 -0
  691. unifieddatalibrary/types/collect_response_count_response.py +7 -0
  692. unifieddatalibrary/types/collect_response_create_bulk_params.py +178 -0
  693. unifieddatalibrary/types/collect_response_create_params.py +174 -0
  694. unifieddatalibrary/types/collect_response_list_params.py +19 -0
  695. unifieddatalibrary/types/collect_response_list_response.py +10 -0
  696. unifieddatalibrary/types/collect_response_unvalidated_publish_params.py +178 -0
  697. unifieddatalibrary/types/collect_responses/__init__.py +10 -0
  698. unifieddatalibrary/types/collect_responses/history/__init__.py +5 -0
  699. unifieddatalibrary/types/collect_responses/history/aodr_list_params.py +47 -0
  700. unifieddatalibrary/types/collect_responses/history_count_params.py +19 -0
  701. unifieddatalibrary/types/collect_responses/history_count_response.py +7 -0
  702. unifieddatalibrary/types/collect_responses/history_list_params.py +27 -0
  703. unifieddatalibrary/types/collect_responses/history_list_response.py +10 -0
  704. unifieddatalibrary/types/collect_responses/tuple_list_params.py +27 -0
  705. unifieddatalibrary/types/collect_responses/tuple_list_response.py +10 -0
  706. unifieddatalibrary/types/comm_abridged.py +71 -0
  707. unifieddatalibrary/types/comm_count_response.py +7 -0
  708. unifieddatalibrary/types/comm_create_params.py +62 -0
  709. unifieddatalibrary/types/comm_full.py +198 -0
  710. unifieddatalibrary/types/comm_list_response.py +10 -0
  711. unifieddatalibrary/types/comm_tuple_params.py +17 -0
  712. unifieddatalibrary/types/comm_tuple_response.py +10 -0
  713. unifieddatalibrary/types/comm_update_params.py +54 -0
  714. unifieddatalibrary/types/conjunction_abridged.py +1564 -0
  715. unifieddatalibrary/types/conjunction_count_params.py +16 -0
  716. unifieddatalibrary/types/conjunction_count_response.py +7 -0
  717. unifieddatalibrary/types/conjunction_create_bulk_params.py +1569 -0
  718. unifieddatalibrary/types/conjunction_create_udl_params.py +1568 -0
  719. unifieddatalibrary/types/conjunction_full.py +1672 -0
  720. unifieddatalibrary/types/conjunction_get_history_params.py +24 -0
  721. unifieddatalibrary/types/conjunction_get_history_response.py +10 -0
  722. unifieddatalibrary/types/conjunction_list_params.py +16 -0
  723. unifieddatalibrary/types/conjunction_list_response.py +10 -0
  724. unifieddatalibrary/types/conjunction_tuple_params.py +24 -0
  725. unifieddatalibrary/types/conjunction_tuple_response.py +10 -0
  726. unifieddatalibrary/types/conjunction_unvalidated_publish_params.py +1569 -0
  727. unifieddatalibrary/types/conjunction_upload_conjunction_data_message_params.py +35 -0
  728. unifieddatalibrary/types/conjunctions/__init__.py +7 -0
  729. unifieddatalibrary/types/conjunctions/history_aodr_params.py +44 -0
  730. unifieddatalibrary/types/conjunctions/history_count_params.py +16 -0
  731. unifieddatalibrary/types/conjunctions/history_count_response.py +7 -0
  732. unifieddatalibrary/types/cot_create_params.py +95 -0
  733. unifieddatalibrary/types/country_abridged.py +77 -0
  734. unifieddatalibrary/types/country_count_response.py +7 -0
  735. unifieddatalibrary/types/country_create_params.py +60 -0
  736. unifieddatalibrary/types/country_full.py +86 -0
  737. unifieddatalibrary/types/country_list_response.py +10 -0
  738. unifieddatalibrary/types/country_tuple_params.py +17 -0
  739. unifieddatalibrary/types/country_tuple_response.py +10 -0
  740. unifieddatalibrary/types/country_update_params.py +60 -0
  741. unifieddatalibrary/types/crew_abridged.py +641 -0
  742. unifieddatalibrary/types/crew_count_response.py +7 -0
  743. unifieddatalibrary/types/crew_create_params.py +616 -0
  744. unifieddatalibrary/types/crew_full.py +641 -0
  745. unifieddatalibrary/types/crew_list_response.py +10 -0
  746. unifieddatalibrary/types/crew_tuple_params.py +17 -0
  747. unifieddatalibrary/types/crew_tuple_response.py +10 -0
  748. unifieddatalibrary/types/crew_unvalidated_publish_params.py +620 -0
  749. unifieddatalibrary/types/crew_update_params.py +616 -0
  750. unifieddatalibrary/types/diffofarrival/__init__.py +6 -0
  751. unifieddatalibrary/types/diffofarrival/history_count_params.py +19 -0
  752. unifieddatalibrary/types/diffofarrival/history_count_response.py +7 -0
  753. unifieddatalibrary/types/diffofarrival_tuple_params.py +27 -0
  754. unifieddatalibrary/types/diffofarrival_tuple_response.py +10 -0
  755. unifieddatalibrary/types/diffofarrival_unvalidated_publish_params.py +222 -0
  756. unifieddatalibrary/types/diplomatic_clearance/__init__.py +18 -0
  757. unifieddatalibrary/types/diplomatic_clearance/country_count_response.py +7 -0
  758. unifieddatalibrary/types/diplomatic_clearance/country_create_bulk_params.py +541 -0
  759. unifieddatalibrary/types/diplomatic_clearance/country_create_params.py +536 -0
  760. unifieddatalibrary/types/diplomatic_clearance/country_list_response.py +568 -0
  761. unifieddatalibrary/types/diplomatic_clearance/country_retrieve_response.py +564 -0
  762. unifieddatalibrary/types/diplomatic_clearance/country_tuple_params.py +17 -0
  763. unifieddatalibrary/types/diplomatic_clearance/country_tuple_response.py +568 -0
  764. unifieddatalibrary/types/diplomatic_clearance/country_unvalidated_publish_params.py +541 -0
  765. unifieddatalibrary/types/diplomatic_clearance/country_update_params.py +536 -0
  766. unifieddatalibrary/types/diplomatic_clearance/history_aodr_params.py +47 -0
  767. unifieddatalibrary/types/diplomatic_clearance/history_count_params.py +19 -0
  768. unifieddatalibrary/types/diplomatic_clearance/history_count_response.py +7 -0
  769. unifieddatalibrary/types/diplomatic_clearance/history_list_params.py +27 -0
  770. unifieddatalibrary/types/diplomatic_clearance/history_list_response.py +10 -0
  771. unifieddatalibrary/types/diplomatic_clearance_count_params.py +19 -0
  772. unifieddatalibrary/types/diplomatic_clearance_count_response.py +7 -0
  773. unifieddatalibrary/types/diplomatic_clearance_create_bulk_params.py +239 -0
  774. unifieddatalibrary/types/diplomatic_clearance_create_params.py +230 -0
  775. unifieddatalibrary/types/diplomatic_clearance_list_params.py +19 -0
  776. unifieddatalibrary/types/diplomatic_clearance_list_response.py +10 -0
  777. unifieddatalibrary/types/diplomatic_clearance_tuple_params.py +27 -0
  778. unifieddatalibrary/types/diplomatic_clearance_tuple_response.py +10 -0
  779. unifieddatalibrary/types/diplomatic_clearance_update_params.py +230 -0
  780. unifieddatalibrary/types/drift_history_count_response.py +7 -0
  781. unifieddatalibrary/types/drift_history_list_response.py +10 -0
  782. unifieddatalibrary/types/drift_history_tuple_params.py +17 -0
  783. unifieddatalibrary/types/drift_history_tuple_response.py +10 -0
  784. unifieddatalibrary/types/dropzone_count_response.py +7 -0
  785. unifieddatalibrary/types/dropzone_create_bulk_params.py +170 -0
  786. unifieddatalibrary/types/dropzone_create_params.py +166 -0
  787. unifieddatalibrary/types/dropzone_query_response.py +189 -0
  788. unifieddatalibrary/types/dropzone_retrieve_response.py +195 -0
  789. unifieddatalibrary/types/dropzone_tuple_params.py +17 -0
  790. unifieddatalibrary/types/dropzone_tuple_response.py +198 -0
  791. unifieddatalibrary/types/dropzone_unvalidated_publish_params.py +170 -0
  792. unifieddatalibrary/types/dropzone_update_params.py +166 -0
  793. unifieddatalibrary/types/ecpsdr_unvalidated_publish_params.py +253 -0
  794. unifieddatalibrary/types/effect_request_count_params.py +19 -0
  795. unifieddatalibrary/types/effect_request_count_response.py +7 -0
  796. unifieddatalibrary/types/effect_request_create_bulk_params.py +119 -0
  797. unifieddatalibrary/types/effect_request_create_params.py +115 -0
  798. unifieddatalibrary/types/effect_request_list_params.py +19 -0
  799. unifieddatalibrary/types/effect_request_list_response.py +133 -0
  800. unifieddatalibrary/types/effect_request_retrieve_response.py +130 -0
  801. unifieddatalibrary/types/effect_request_tuple_params.py +27 -0
  802. unifieddatalibrary/types/effect_request_tuple_response.py +133 -0
  803. unifieddatalibrary/types/effect_request_unvalidated_publish_params.py +119 -0
  804. unifieddatalibrary/types/effect_requests/__init__.py +9 -0
  805. unifieddatalibrary/types/effect_requests/history_aodr_params.py +47 -0
  806. unifieddatalibrary/types/effect_requests/history_count_params.py +19 -0
  807. unifieddatalibrary/types/effect_requests/history_count_response.py +7 -0
  808. unifieddatalibrary/types/effect_requests/history_list_params.py +27 -0
  809. unifieddatalibrary/types/effect_requests/history_list_response.py +133 -0
  810. unifieddatalibrary/types/effect_response_count_params.py +19 -0
  811. unifieddatalibrary/types/effect_response_count_response.py +7 -0
  812. unifieddatalibrary/types/effect_response_create_bulk_params.py +235 -0
  813. unifieddatalibrary/types/effect_response_create_params.py +231 -0
  814. unifieddatalibrary/types/effect_response_list_params.py +19 -0
  815. unifieddatalibrary/types/effect_response_list_response.py +259 -0
  816. unifieddatalibrary/types/effect_response_retrieve_response.py +246 -0
  817. unifieddatalibrary/types/effect_response_tuple_params.py +27 -0
  818. unifieddatalibrary/types/effect_response_tuple_response.py +259 -0
  819. unifieddatalibrary/types/effect_response_unvalidated_publish_params.py +241 -0
  820. unifieddatalibrary/types/effect_responses/__init__.py +9 -0
  821. unifieddatalibrary/types/effect_responses/history_aodr_params.py +47 -0
  822. unifieddatalibrary/types/effect_responses/history_count_params.py +19 -0
  823. unifieddatalibrary/types/effect_responses/history_count_response.py +7 -0
  824. unifieddatalibrary/types/effect_responses/history_list_params.py +27 -0
  825. unifieddatalibrary/types/effect_responses/history_list_response.py +257 -0
  826. unifieddatalibrary/types/elset.py +318 -0
  827. unifieddatalibrary/types/elset_abridged.py +265 -0
  828. unifieddatalibrary/types/elset_count_params.py +19 -0
  829. unifieddatalibrary/types/elset_count_response.py +7 -0
  830. unifieddatalibrary/types/elset_create_bulk_from_tle_params.py +49 -0
  831. unifieddatalibrary/types/elset_create_bulk_params.py +21 -0
  832. unifieddatalibrary/types/elset_create_params.py +259 -0
  833. unifieddatalibrary/types/elset_ingest_param.py +259 -0
  834. unifieddatalibrary/types/elset_list_params.py +19 -0
  835. unifieddatalibrary/types/elset_list_response.py +10 -0
  836. unifieddatalibrary/types/elset_tuple_params.py +27 -0
  837. unifieddatalibrary/types/elset_tuple_response.py +10 -0
  838. unifieddatalibrary/types/elset_unvalidated_publish_params.py +14 -0
  839. unifieddatalibrary/types/elsets/__init__.py +12 -0
  840. unifieddatalibrary/types/elsets/current_list_response.py +10 -0
  841. unifieddatalibrary/types/elsets/current_tuple_params.py +17 -0
  842. unifieddatalibrary/types/elsets/current_tuple_response.py +10 -0
  843. unifieddatalibrary/types/elsets/history_aodr_params.py +47 -0
  844. unifieddatalibrary/types/elsets/history_count_params.py +19 -0
  845. unifieddatalibrary/types/elsets/history_count_response.py +7 -0
  846. unifieddatalibrary/types/elsets/history_list_params.py +27 -0
  847. unifieddatalibrary/types/elsets/history_list_response.py +10 -0
  848. unifieddatalibrary/types/emittergeolocation_count_params.py +19 -0
  849. unifieddatalibrary/types/emittergeolocation_count_response.py +7 -0
  850. unifieddatalibrary/types/emittergeolocation_create_bulk_params.py +236 -0
  851. unifieddatalibrary/types/emittergeolocation_create_params.py +232 -0
  852. unifieddatalibrary/types/emittergeolocation_query_params.py +19 -0
  853. unifieddatalibrary/types/emittergeolocation_query_response.py +260 -0
  854. unifieddatalibrary/types/emittergeolocation_retrieve_response.py +267 -0
  855. unifieddatalibrary/types/emittergeolocation_tuple_params.py +27 -0
  856. unifieddatalibrary/types/emittergeolocation_tuple_response.py +270 -0
  857. unifieddatalibrary/types/emittergeolocation_unvalidated_publish_params.py +236 -0
  858. unifieddatalibrary/types/engine.py +82 -0
  859. unifieddatalibrary/types/engine_abridged.py +65 -0
  860. unifieddatalibrary/types/engine_count_response.py +7 -0
  861. unifieddatalibrary/types/engine_create_params.py +48 -0
  862. unifieddatalibrary/types/engine_detail_create_params.py +109 -0
  863. unifieddatalibrary/types/engine_detail_update_params.py +109 -0
  864. unifieddatalibrary/types/engine_details_abridged.py +116 -0
  865. unifieddatalibrary/types/engine_details_full.py +134 -0
  866. unifieddatalibrary/types/engine_list_response.py +10 -0
  867. unifieddatalibrary/types/engine_tuple_params.py +17 -0
  868. unifieddatalibrary/types/engine_tuple_response.py +10 -0
  869. unifieddatalibrary/types/engine_update_params.py +48 -0
  870. unifieddatalibrary/types/enginedetail_list_response.py +10 -0
  871. unifieddatalibrary/types/entity_abridged.py +326 -0
  872. unifieddatalibrary/types/entity_count_response.py +7 -0
  873. unifieddatalibrary/types/entity_create_params.py +231 -0
  874. unifieddatalibrary/types/entity_full.py +1794 -0
  875. unifieddatalibrary/types/entity_get_all_types_response.py +3879 -0
  876. unifieddatalibrary/types/entity_ingest_param.py +231 -0
  877. unifieddatalibrary/types/entity_list_response.py +10 -0
  878. unifieddatalibrary/types/entity_tuple_params.py +17 -0
  879. unifieddatalibrary/types/entity_tuple_response.py +10 -0
  880. unifieddatalibrary/types/entity_update_params.py +231 -0
  881. unifieddatalibrary/types/eo_observation_abridged.py +540 -0
  882. unifieddatalibrary/types/eo_observation_count_params.py +20 -0
  883. unifieddatalibrary/types/eo_observation_count_response.py +7 -0
  884. unifieddatalibrary/types/eo_observation_create_bulk_params.py +990 -0
  885. unifieddatalibrary/types/eo_observation_create_params.py +983 -0
  886. unifieddatalibrary/types/eo_observation_list_params.py +20 -0
  887. unifieddatalibrary/types/eo_observation_list_response.py +10 -0
  888. unifieddatalibrary/types/eo_observation_unvalidated_publish_params.py +987 -0
  889. unifieddatalibrary/types/eo_observations/__init__.py +10 -0
  890. unifieddatalibrary/types/eo_observations/eo_observation_full.py +1029 -0
  891. unifieddatalibrary/types/eo_observations/history_aodr_params.py +48 -0
  892. unifieddatalibrary/types/eo_observations/history_count_params.py +20 -0
  893. unifieddatalibrary/types/eo_observations/history_count_response.py +7 -0
  894. unifieddatalibrary/types/eo_observations/history_list_params.py +28 -0
  895. unifieddatalibrary/types/eo_observations/history_list_response.py +10 -0
  896. unifieddatalibrary/types/eoobservation_tuple_params.py +28 -0
  897. unifieddatalibrary/types/eoobservation_tuple_response.py +10 -0
  898. unifieddatalibrary/types/eop/__init__.py +9 -0
  899. unifieddatalibrary/types/eop/history_aodr_params.py +47 -0
  900. unifieddatalibrary/types/eop/history_count_params.py +19 -0
  901. unifieddatalibrary/types/eop/history_count_response.py +7 -0
  902. unifieddatalibrary/types/eop/history_list_params.py +27 -0
  903. unifieddatalibrary/types/eop/history_list_response.py +10 -0
  904. unifieddatalibrary/types/eop_abridged.py +243 -0
  905. unifieddatalibrary/types/eop_count_params.py +19 -0
  906. unifieddatalibrary/types/eop_count_response.py +7 -0
  907. unifieddatalibrary/types/eop_create_params.py +228 -0
  908. unifieddatalibrary/types/eop_list_params.py +19 -0
  909. unifieddatalibrary/types/eop_list_response.py +10 -0
  910. unifieddatalibrary/types/eop_list_tuple_params.py +27 -0
  911. unifieddatalibrary/types/eop_list_tuple_response.py +10 -0
  912. unifieddatalibrary/types/eop_update_params.py +228 -0
  913. unifieddatalibrary/types/ephemeris/__init__.py +14 -0
  914. unifieddatalibrary/types/ephemeris/attitude_data/__init__.py +9 -0
  915. unifieddatalibrary/types/ephemeris/attitude_data/history_aodr_params.py +42 -0
  916. unifieddatalibrary/types/ephemeris/attitude_data/history_count_params.py +14 -0
  917. unifieddatalibrary/types/ephemeris/attitude_data/history_count_response.py +7 -0
  918. unifieddatalibrary/types/ephemeris/attitude_data/history_retrieve_params.py +22 -0
  919. unifieddatalibrary/types/ephemeris/attitude_data/history_retrieve_response.py +10 -0
  920. unifieddatalibrary/types/ephemeris/attitude_data_abridged.py +177 -0
  921. unifieddatalibrary/types/ephemeris/attitude_data_count_params.py +14 -0
  922. unifieddatalibrary/types/ephemeris/attitude_data_count_response.py +7 -0
  923. unifieddatalibrary/types/ephemeris/attitude_data_list_params.py +14 -0
  924. unifieddatalibrary/types/ephemeris/attitude_data_list_response.py +10 -0
  925. unifieddatalibrary/types/ephemeris/history_aodr_params.py +46 -0
  926. unifieddatalibrary/types/ephemeris/history_count_params.py +18 -0
  927. unifieddatalibrary/types/ephemeris/history_count_response.py +7 -0
  928. unifieddatalibrary/types/ephemeris/history_list_params.py +26 -0
  929. unifieddatalibrary/types/ephemeris/history_list_response.py +10 -0
  930. unifieddatalibrary/types/ephemeris_abridged.py +161 -0
  931. unifieddatalibrary/types/ephemeris_count_params.py +18 -0
  932. unifieddatalibrary/types/ephemeris_count_response.py +7 -0
  933. unifieddatalibrary/types/ephemeris_file_upload_params.py +51 -0
  934. unifieddatalibrary/types/ephemeris_list_params.py +18 -0
  935. unifieddatalibrary/types/ephemeris_list_response.py +10 -0
  936. unifieddatalibrary/types/ephemeris_set.py +240 -0
  937. unifieddatalibrary/types/ephemeris_set_abridged.py +206 -0
  938. unifieddatalibrary/types/ephemeris_set_count_params.py +27 -0
  939. unifieddatalibrary/types/ephemeris_set_count_response.py +7 -0
  940. unifieddatalibrary/types/ephemeris_set_create_params.py +351 -0
  941. unifieddatalibrary/types/ephemeris_set_list_params.py +27 -0
  942. unifieddatalibrary/types/ephemeris_set_list_response.py +10 -0
  943. unifieddatalibrary/types/ephemeris_set_tuple_params.py +35 -0
  944. unifieddatalibrary/types/ephemeris_set_tuple_response.py +10 -0
  945. unifieddatalibrary/types/ephemeris_sets/__init__.py +9 -0
  946. unifieddatalibrary/types/ephemeris_sets/history_aodr_params.py +55 -0
  947. unifieddatalibrary/types/ephemeris_sets/history_count_params.py +27 -0
  948. unifieddatalibrary/types/ephemeris_sets/history_count_response.py +7 -0
  949. unifieddatalibrary/types/ephemeris_sets/history_list_params.py +35 -0
  950. unifieddatalibrary/types/ephemeris_sets/history_list_response.py +10 -0
  951. unifieddatalibrary/types/ephemeris_tuple_params.py +26 -0
  952. unifieddatalibrary/types/ephemeris_tuple_response.py +10 -0
  953. unifieddatalibrary/types/ephemeris_unvalidated_publish_params.py +351 -0
  954. unifieddatalibrary/types/equipment_abridged.py +467 -0
  955. unifieddatalibrary/types/equipment_count_response.py +7 -0
  956. unifieddatalibrary/types/equipment_create_bulk_params.py +462 -0
  957. unifieddatalibrary/types/equipment_create_params.py +458 -0
  958. unifieddatalibrary/types/equipment_full.py +483 -0
  959. unifieddatalibrary/types/equipment_list_response.py +10 -0
  960. unifieddatalibrary/types/equipment_remark_abridged.py +78 -0
  961. unifieddatalibrary/types/equipment_remark_full.py +87 -0
  962. unifieddatalibrary/types/equipment_tuple_params.py +17 -0
  963. unifieddatalibrary/types/equipment_tuple_response.py +10 -0
  964. unifieddatalibrary/types/equipment_update_params.py +458 -0
  965. unifieddatalibrary/types/equipmentremark_count_response.py +7 -0
  966. unifieddatalibrary/types/equipmentremark_create_bulk_params.py +72 -0
  967. unifieddatalibrary/types/equipmentremark_create_params.py +67 -0
  968. unifieddatalibrary/types/equipmentremark_list_response.py +10 -0
  969. unifieddatalibrary/types/equipmentremark_tuple_params.py +17 -0
  970. unifieddatalibrary/types/equipmentremark_tuple_response.py +10 -0
  971. unifieddatalibrary/types/evac/__init__.py +10 -0
  972. unifieddatalibrary/types/evac/history_count_params.py +16 -0
  973. unifieddatalibrary/types/evac/history_count_response.py +7 -0
  974. unifieddatalibrary/types/evac/history_list_params.py +24 -0
  975. unifieddatalibrary/types/evac/history_list_response.py +10 -0
  976. unifieddatalibrary/types/evac/tuple_list_params.py +24 -0
  977. unifieddatalibrary/types/evac/tuple_list_response.py +10 -0
  978. unifieddatalibrary/types/evac_abridged.py +589 -0
  979. unifieddatalibrary/types/evac_count_params.py +16 -0
  980. unifieddatalibrary/types/evac_count_response.py +7 -0
  981. unifieddatalibrary/types/evac_create_bulk_params.py +579 -0
  982. unifieddatalibrary/types/evac_create_params.py +574 -0
  983. unifieddatalibrary/types/evac_list_params.py +16 -0
  984. unifieddatalibrary/types/evac_list_response.py +10 -0
  985. unifieddatalibrary/types/evac_unvalidated_publish_params.py +579 -0
  986. unifieddatalibrary/types/event_evolution/__init__.py +9 -0
  987. unifieddatalibrary/types/event_evolution/history_aodr_params.py +56 -0
  988. unifieddatalibrary/types/event_evolution/history_count_params.py +28 -0
  989. unifieddatalibrary/types/event_evolution/history_count_response.py +7 -0
  990. unifieddatalibrary/types/event_evolution/history_list_params.py +36 -0
  991. unifieddatalibrary/types/event_evolution/history_list_response.py +10 -0
  992. unifieddatalibrary/types/event_evolution_count_params.py +28 -0
  993. unifieddatalibrary/types/event_evolution_count_response.py +7 -0
  994. unifieddatalibrary/types/event_evolution_create_bulk_params.py +196 -0
  995. unifieddatalibrary/types/event_evolution_create_params.py +192 -0
  996. unifieddatalibrary/types/event_evolution_list_params.py +28 -0
  997. unifieddatalibrary/types/event_evolution_list_response.py +204 -0
  998. unifieddatalibrary/types/event_evolution_tuple_params.py +36 -0
  999. unifieddatalibrary/types/event_evolution_tuple_response.py +10 -0
  1000. unifieddatalibrary/types/event_evolution_unvalidated_publish_params.py +196 -0
  1001. unifieddatalibrary/types/featureassessment/__init__.py +9 -0
  1002. unifieddatalibrary/types/featureassessment/history_count_params.py +17 -0
  1003. unifieddatalibrary/types/featureassessment/history_count_response.py +7 -0
  1004. unifieddatalibrary/types/featureassessment/history_query_params.py +25 -0
  1005. unifieddatalibrary/types/featureassessment/history_query_response.py +280 -0
  1006. unifieddatalibrary/types/featureassessment/history_write_aodr_params.py +45 -0
  1007. unifieddatalibrary/types/featureassessment_count_params.py +17 -0
  1008. unifieddatalibrary/types/featureassessment_count_response.py +7 -0
  1009. unifieddatalibrary/types/featureassessment_create_bulk_params.py +259 -0
  1010. unifieddatalibrary/types/featureassessment_create_params.py +255 -0
  1011. unifieddatalibrary/types/featureassessment_query_params.py +17 -0
  1012. unifieddatalibrary/types/featureassessment_query_response.py +265 -0
  1013. unifieddatalibrary/types/featureassessment_retrieve_response.py +277 -0
  1014. unifieddatalibrary/types/featureassessment_tuple_params.py +25 -0
  1015. unifieddatalibrary/types/featureassessment_tuple_response.py +280 -0
  1016. unifieddatalibrary/types/featureassessment_unvalidated_publish_params.py +259 -0
  1017. unifieddatalibrary/types/flight_plan_abridged.py +923 -0
  1018. unifieddatalibrary/types/flightplan_count_response.py +7 -0
  1019. unifieddatalibrary/types/flightplan_create_params.py +888 -0
  1020. unifieddatalibrary/types/flightplan_list_response.py +10 -0
  1021. unifieddatalibrary/types/flightplan_tuple_params.py +17 -0
  1022. unifieddatalibrary/types/flightplan_tuple_response.py +10 -0
  1023. unifieddatalibrary/types/flightplan_unvalidated_publish_params.py +895 -0
  1024. unifieddatalibrary/types/flightplan_update_params.py +888 -0
  1025. unifieddatalibrary/types/geostatus_count_params.py +19 -0
  1026. unifieddatalibrary/types/geostatus_count_response.py +7 -0
  1027. unifieddatalibrary/types/geostatus_create_bulk_params.py +124 -0
  1028. unifieddatalibrary/types/geostatus_create_params.py +119 -0
  1029. unifieddatalibrary/types/geostatus_list_params.py +19 -0
  1030. unifieddatalibrary/types/geostatus_list_response.py +142 -0
  1031. unifieddatalibrary/types/geostatus_tuple_params.py +27 -0
  1032. unifieddatalibrary/types/geostatus_tuple_response.py +10 -0
  1033. unifieddatalibrary/types/globalatmosphericmodel/__init__.py +9 -0
  1034. unifieddatalibrary/types/globalatmosphericmodel/history_count_params.py +19 -0
  1035. unifieddatalibrary/types/globalatmosphericmodel/history_count_response.py +7 -0
  1036. unifieddatalibrary/types/globalatmosphericmodel/history_query_params.py +27 -0
  1037. unifieddatalibrary/types/globalatmosphericmodel/history_query_response.py +158 -0
  1038. unifieddatalibrary/types/globalatmosphericmodel/history_write_aodr_params.py +47 -0
  1039. unifieddatalibrary/types/globalatmosphericmodel_count_params.py +19 -0
  1040. unifieddatalibrary/types/globalatmosphericmodel_count_response.py +7 -0
  1041. unifieddatalibrary/types/globalatmosphericmodel_query_params.py +19 -0
  1042. unifieddatalibrary/types/globalatmosphericmodel_query_response.py +158 -0
  1043. unifieddatalibrary/types/globalatmosphericmodel_retrieve_response.py +155 -0
  1044. unifieddatalibrary/types/globalatmosphericmodel_tuple_params.py +27 -0
  1045. unifieddatalibrary/types/globalatmosphericmodel_tuple_response.py +158 -0
  1046. unifieddatalibrary/types/globalatmosphericmodel_unvalidated_publish_params.py +126 -0
  1047. unifieddatalibrary/types/gnss_observations/__init__.py +6 -0
  1048. unifieddatalibrary/types/gnss_observations/history_count_params.py +20 -0
  1049. unifieddatalibrary/types/gnss_observations/history_count_response.py +7 -0
  1050. unifieddatalibrary/types/gnss_raw_if/__init__.py +9 -0
  1051. unifieddatalibrary/types/gnss_raw_if/history_aodr_params.py +47 -0
  1052. unifieddatalibrary/types/gnss_raw_if/history_count_params.py +19 -0
  1053. unifieddatalibrary/types/gnss_raw_if/history_count_response.py +7 -0
  1054. unifieddatalibrary/types/gnss_raw_if/history_query_params.py +27 -0
  1055. unifieddatalibrary/types/gnss_raw_if/history_query_response.py +10 -0
  1056. unifieddatalibrary/types/gnssobservationset_count_params.py +20 -0
  1057. unifieddatalibrary/types/gnssobservationset_count_response.py +7 -0
  1058. unifieddatalibrary/types/gnssobservationset_create_bulk_params.py +273 -0
  1059. unifieddatalibrary/types/gnssobservationset_list_params.py +20 -0
  1060. unifieddatalibrary/types/gnssobservationset_list_response.py +296 -0
  1061. unifieddatalibrary/types/gnssobservationset_tuple_params.py +28 -0
  1062. unifieddatalibrary/types/gnssobservationset_tuple_response.py +10 -0
  1063. unifieddatalibrary/types/gnssobservationset_unvalidated_publish_params.py +273 -0
  1064. unifieddatalibrary/types/gnssrawif_count_params.py +19 -0
  1065. unifieddatalibrary/types/gnssrawif_count_response.py +7 -0
  1066. unifieddatalibrary/types/gnssrawif_list_params.py +19 -0
  1067. unifieddatalibrary/types/gnssrawif_list_response.py +281 -0
  1068. unifieddatalibrary/types/gnssrawif_tuple_params.py +27 -0
  1069. unifieddatalibrary/types/gnssrawif_tuple_response.py +10 -0
  1070. unifieddatalibrary/types/gnssrawif_upload_zip_params.py +14 -0
  1071. unifieddatalibrary/types/ground_imagery/__init__.py +8 -0
  1072. unifieddatalibrary/types/ground_imagery/history_count_params.py +16 -0
  1073. unifieddatalibrary/types/ground_imagery/history_count_response.py +7 -0
  1074. unifieddatalibrary/types/ground_imagery/history_query_params.py +24 -0
  1075. unifieddatalibrary/types/ground_imagery/history_query_response.py +10 -0
  1076. unifieddatalibrary/types/ground_imagery_history_aodr_params.py +44 -0
  1077. unifieddatalibrary/types/ground_imagery_upload_zip_params.py +14 -0
  1078. unifieddatalibrary/types/groundimagery_count_params.py +16 -0
  1079. unifieddatalibrary/types/groundimagery_count_response.py +7 -0
  1080. unifieddatalibrary/types/groundimagery_create_params.py +143 -0
  1081. unifieddatalibrary/types/groundimagery_list_params.py +16 -0
  1082. unifieddatalibrary/types/groundimagery_list_response.py +147 -0
  1083. unifieddatalibrary/types/groundimagery_tuple_params.py +24 -0
  1084. unifieddatalibrary/types/groundimagery_tuple_response.py +10 -0
  1085. unifieddatalibrary/types/h3geo/__init__.py +9 -0
  1086. unifieddatalibrary/types/h3geo/history_ador_params.py +47 -0
  1087. unifieddatalibrary/types/h3geo/history_count_params.py +19 -0
  1088. unifieddatalibrary/types/h3geo/history_count_response.py +7 -0
  1089. unifieddatalibrary/types/h3geo/history_query_params.py +27 -0
  1090. unifieddatalibrary/types/h3geo/history_query_response.py +99 -0
  1091. unifieddatalibrary/types/h3geo_count_params.py +19 -0
  1092. unifieddatalibrary/types/h3geo_count_response.py +7 -0
  1093. unifieddatalibrary/types/h3geo_create_params.py +197 -0
  1094. unifieddatalibrary/types/h3geo_get_response.py +241 -0
  1095. unifieddatalibrary/types/h3geo_list_params.py +19 -0
  1096. unifieddatalibrary/types/h3geo_list_response.py +99 -0
  1097. unifieddatalibrary/types/h3geo_tuple_params.py +27 -0
  1098. unifieddatalibrary/types/h3geo_tuple_response.py +244 -0
  1099. unifieddatalibrary/types/h3geohexcell_count_params.py +14 -0
  1100. unifieddatalibrary/types/h3geohexcell_count_response.py +7 -0
  1101. unifieddatalibrary/types/h3geohexcell_list_params.py +14 -0
  1102. unifieddatalibrary/types/h3geohexcell_list_response.py +144 -0
  1103. unifieddatalibrary/types/h3geohexcell_tuple_params.py +22 -0
  1104. unifieddatalibrary/types/h3geohexcell_tuple_response.py +144 -0
  1105. unifieddatalibrary/types/hazard/__init__.py +9 -0
  1106. unifieddatalibrary/types/hazard/history_aodr_params.py +47 -0
  1107. unifieddatalibrary/types/hazard/history_count_params.py +19 -0
  1108. unifieddatalibrary/types/hazard/history_count_response.py +7 -0
  1109. unifieddatalibrary/types/hazard/history_query_params.py +27 -0
  1110. unifieddatalibrary/types/hazard/history_query_response.py +10 -0
  1111. unifieddatalibrary/types/hazard_count_params.py +19 -0
  1112. unifieddatalibrary/types/hazard_count_response.py +7 -0
  1113. unifieddatalibrary/types/hazard_create_bulk_params.py +255 -0
  1114. unifieddatalibrary/types/hazard_create_params.py +251 -0
  1115. unifieddatalibrary/types/hazard_list_params.py +19 -0
  1116. unifieddatalibrary/types/hazard_list_response.py +269 -0
  1117. unifieddatalibrary/types/hazard_tuple_params.py +27 -0
  1118. unifieddatalibrary/types/hazard_tuple_response.py +10 -0
  1119. unifieddatalibrary/types/iono_observation/__init__.py +9 -0
  1120. unifieddatalibrary/types/iono_observation/history_aodr_params.py +44 -0
  1121. unifieddatalibrary/types/iono_observation/history_count_params.py +16 -0
  1122. unifieddatalibrary/types/iono_observation/history_count_response.py +7 -0
  1123. unifieddatalibrary/types/iono_observation/history_list_params.py +24 -0
  1124. unifieddatalibrary/types/iono_observation/history_list_response.py +10 -0
  1125. unifieddatalibrary/types/ionoobservation_count_params.py +16 -0
  1126. unifieddatalibrary/types/ionoobservation_count_response.py +7 -0
  1127. unifieddatalibrary/types/ionoobservation_create_bulk_params.py +979 -0
  1128. unifieddatalibrary/types/ionoobservation_list_params.py +16 -0
  1129. unifieddatalibrary/types/ionoobservation_list_response.py +1012 -0
  1130. unifieddatalibrary/types/ionoobservation_tuple_params.py +24 -0
  1131. unifieddatalibrary/types/ionoobservation_tuple_response.py +10 -0
  1132. unifieddatalibrary/types/ionoobservation_unvalidated_publish_params.py +979 -0
  1133. unifieddatalibrary/types/ir_count_response.py +7 -0
  1134. unifieddatalibrary/types/ir_create_params.py +62 -0
  1135. unifieddatalibrary/types/ir_get_response.py +88 -0
  1136. unifieddatalibrary/types/ir_list_response.py +74 -0
  1137. unifieddatalibrary/types/ir_tuple_params.py +17 -0
  1138. unifieddatalibrary/types/ir_tuple_response.py +91 -0
  1139. unifieddatalibrary/types/ir_update_params.py +62 -0
  1140. unifieddatalibrary/types/isr_collection_count_params.py +19 -0
  1141. unifieddatalibrary/types/isr_collection_count_response.py +7 -0
  1142. unifieddatalibrary/types/isr_collection_create_bulk_params.py +591 -0
  1143. unifieddatalibrary/types/isr_collection_list_params.py +19 -0
  1144. unifieddatalibrary/types/isr_collection_list_response.py +614 -0
  1145. unifieddatalibrary/types/isr_collection_tuple_params.py +27 -0
  1146. unifieddatalibrary/types/isr_collection_tuple_response.py +10 -0
  1147. unifieddatalibrary/types/isr_collection_unvalidated_publish_params.py +591 -0
  1148. unifieddatalibrary/types/isr_collections/__init__.py +9 -0
  1149. unifieddatalibrary/types/isr_collections/history_aodr_params.py +47 -0
  1150. unifieddatalibrary/types/isr_collections/history_count_params.py +19 -0
  1151. unifieddatalibrary/types/isr_collections/history_count_response.py +7 -0
  1152. unifieddatalibrary/types/isr_collections/history_list_params.py +27 -0
  1153. unifieddatalibrary/types/isr_collections/history_list_response.py +10 -0
  1154. unifieddatalibrary/types/item_count_response.py +7 -0
  1155. unifieddatalibrary/types/item_create_params.py +249 -0
  1156. unifieddatalibrary/types/item_get_response.py +280 -0
  1157. unifieddatalibrary/types/item_list_response.py +274 -0
  1158. unifieddatalibrary/types/item_tracking_count_params.py +19 -0
  1159. unifieddatalibrary/types/item_tracking_count_response.py +7 -0
  1160. unifieddatalibrary/types/item_tracking_create_params.py +108 -0
  1161. unifieddatalibrary/types/item_tracking_list_params.py +19 -0
  1162. unifieddatalibrary/types/item_tracking_list_response.py +133 -0
  1163. unifieddatalibrary/types/item_tracking_tuple_params.py +27 -0
  1164. unifieddatalibrary/types/item_tracking_tuple_response.py +10 -0
  1165. unifieddatalibrary/types/item_tracking_unvalidated_publish_params.py +112 -0
  1166. unifieddatalibrary/types/item_trackings/__init__.py +8 -0
  1167. unifieddatalibrary/types/item_trackings/history_count_params.py +19 -0
  1168. unifieddatalibrary/types/item_trackings/history_count_response.py +7 -0
  1169. unifieddatalibrary/types/item_trackings/history_list_params.py +27 -0
  1170. unifieddatalibrary/types/item_trackings/history_list_response.py +10 -0
  1171. unifieddatalibrary/types/item_tuple_params.py +17 -0
  1172. unifieddatalibrary/types/item_tuple_response.py +283 -0
  1173. unifieddatalibrary/types/item_unvalidated_publish_params.py +253 -0
  1174. unifieddatalibrary/types/item_update_params.py +249 -0
  1175. unifieddatalibrary/types/launch_event/__init__.py +9 -0
  1176. unifieddatalibrary/types/launch_event/history_aodr_params.py +47 -0
  1177. unifieddatalibrary/types/launch_event/history_count_params.py +19 -0
  1178. unifieddatalibrary/types/launch_event/history_count_response.py +7 -0
  1179. unifieddatalibrary/types/launch_event/history_list_params.py +27 -0
  1180. unifieddatalibrary/types/launch_event/history_list_response.py +108 -0
  1181. unifieddatalibrary/types/launch_event_unvalidated_publish_params.py +87 -0
  1182. unifieddatalibrary/types/launchdetection_count_response.py +7 -0
  1183. unifieddatalibrary/types/launchdetection_create_params.py +116 -0
  1184. unifieddatalibrary/types/launchdetection_get_response.py +140 -0
  1185. unifieddatalibrary/types/launchdetection_list_response.py +134 -0
  1186. unifieddatalibrary/types/launchdetection_tuple_params.py +17 -0
  1187. unifieddatalibrary/types/launchdetection_tuple_response.py +143 -0
  1188. unifieddatalibrary/types/launchdetection_update_params.py +116 -0
  1189. unifieddatalibrary/types/launchevent_count_params.py +19 -0
  1190. unifieddatalibrary/types/launchevent_count_response.py +7 -0
  1191. unifieddatalibrary/types/launchevent_create_bulk_params.py +87 -0
  1192. unifieddatalibrary/types/launchevent_create_params.py +83 -0
  1193. unifieddatalibrary/types/launchevent_get_response.py +105 -0
  1194. unifieddatalibrary/types/launchevent_list_params.py +19 -0
  1195. unifieddatalibrary/types/launchevent_list_response.py +104 -0
  1196. unifieddatalibrary/types/launchevent_tuple_params.py +27 -0
  1197. unifieddatalibrary/types/launchevent_tuple_response.py +108 -0
  1198. unifieddatalibrary/types/launchevent_unvalidated_publish_params.py +87 -0
  1199. unifieddatalibrary/types/launchsite_count_response.py +7 -0
  1200. unifieddatalibrary/types/launchsite_create_params.py +60 -0
  1201. unifieddatalibrary/types/launchsite_get_response.py +195 -0
  1202. unifieddatalibrary/types/launchsite_list_response.py +80 -0
  1203. unifieddatalibrary/types/launchsite_tuple_params.py +17 -0
  1204. unifieddatalibrary/types/launchsite_tuple_response.py +200 -0
  1205. unifieddatalibrary/types/launchsite_update_params.py +60 -0
  1206. unifieddatalibrary/types/launchsitedetail_create_params.py +79 -0
  1207. unifieddatalibrary/types/launchsitedetail_find_by_source_params.py +12 -0
  1208. unifieddatalibrary/types/launchsitedetail_find_by_source_response.py +180 -0
  1209. unifieddatalibrary/types/launchsitedetail_get_response.py +113 -0
  1210. unifieddatalibrary/types/launchsitedetail_list_response.py +180 -0
  1211. unifieddatalibrary/types/launchsitedetail_update_params.py +79 -0
  1212. unifieddatalibrary/types/launchvehicle_count_response.py +7 -0
  1213. unifieddatalibrary/types/launchvehicle_create_params.py +51 -0
  1214. unifieddatalibrary/types/launchvehicle_get_response.py +490 -0
  1215. unifieddatalibrary/types/launchvehicle_list_response.py +71 -0
  1216. unifieddatalibrary/types/launchvehicle_tuple_params.py +17 -0
  1217. unifieddatalibrary/types/launchvehicle_tuple_response.py +500 -0
  1218. unifieddatalibrary/types/launchvehicle_update_params.py +51 -0
  1219. unifieddatalibrary/types/launchvehicledetail_create_params.py +197 -0
  1220. unifieddatalibrary/types/launchvehicledetail_get_response.py +239 -0
  1221. unifieddatalibrary/types/launchvehicledetail_list_response.py +215 -0
  1222. unifieddatalibrary/types/launchvehicledetail_update_params.py +197 -0
  1223. unifieddatalibrary/types/link_status/__init__.py +18 -0
  1224. unifieddatalibrary/types/link_status/datalink_count_params.py +19 -0
  1225. unifieddatalibrary/types/link_status/datalink_count_response.py +7 -0
  1226. unifieddatalibrary/types/link_status/datalink_create_params.py +592 -0
  1227. unifieddatalibrary/types/link_status/datalink_ingest_param.py +592 -0
  1228. unifieddatalibrary/types/link_status/datalink_list_params.py +19 -0
  1229. unifieddatalibrary/types/link_status/datalink_list_response.py +636 -0
  1230. unifieddatalibrary/types/link_status/datalink_tuple_params.py +27 -0
  1231. unifieddatalibrary/types/link_status/datalink_tuple_response.py +636 -0
  1232. unifieddatalibrary/types/link_status/datalink_unvalidated_publish_params.py +14 -0
  1233. unifieddatalibrary/types/link_status/history_aodr_params.py +62 -0
  1234. unifieddatalibrary/types/link_status/history_count_params.py +34 -0
  1235. unifieddatalibrary/types/link_status/history_count_response.py +7 -0
  1236. unifieddatalibrary/types/link_status/history_list_params.py +42 -0
  1237. unifieddatalibrary/types/link_status/history_list_response.py +10 -0
  1238. unifieddatalibrary/types/link_status_count_params.py +34 -0
  1239. unifieddatalibrary/types/link_status_count_response.py +7 -0
  1240. unifieddatalibrary/types/link_status_create_params.py +137 -0
  1241. unifieddatalibrary/types/link_status_list_params.py +34 -0
  1242. unifieddatalibrary/types/link_status_list_response.py +169 -0
  1243. unifieddatalibrary/types/link_status_tuple_params.py +42 -0
  1244. unifieddatalibrary/types/link_status_tuple_response.py +10 -0
  1245. unifieddatalibrary/types/location_count_response.py +7 -0
  1246. unifieddatalibrary/types/location_create_params.py +73 -0
  1247. unifieddatalibrary/types/location_full.py +99 -0
  1248. unifieddatalibrary/types/location_ingest_param.py +73 -0
  1249. unifieddatalibrary/types/location_list_response.py +93 -0
  1250. unifieddatalibrary/types/location_tuple_params.py +17 -0
  1251. unifieddatalibrary/types/location_tuple_response.py +10 -0
  1252. unifieddatalibrary/types/location_update_params.py +73 -0
  1253. unifieddatalibrary/types/logistics_remarks_full.py +24 -0
  1254. unifieddatalibrary/types/logisticssupport/__init__.py +8 -0
  1255. unifieddatalibrary/types/logisticssupport/history_aodr_params.py +39 -0
  1256. unifieddatalibrary/types/logisticssupport/history_count_response.py +7 -0
  1257. unifieddatalibrary/types/logisticssupport/history_list_params.py +17 -0
  1258. unifieddatalibrary/types/logisticssupport/history_list_response.py +614 -0
  1259. unifieddatalibrary/types/logisticssupport_count_response.py +7 -0
  1260. unifieddatalibrary/types/logisticssupport_create_bulk_params.py +637 -0
  1261. unifieddatalibrary/types/logisticssupport_create_params.py +630 -0
  1262. unifieddatalibrary/types/logisticssupport_get_response.py +608 -0
  1263. unifieddatalibrary/types/logisticssupport_list_response.py +662 -0
  1264. unifieddatalibrary/types/logisticssupport_tuple_params.py +17 -0
  1265. unifieddatalibrary/types/logisticssupport_tuple_response.py +614 -0
  1266. unifieddatalibrary/types/logisticssupport_unvalidated_publish_params.py +637 -0
  1267. unifieddatalibrary/types/logisticssupport_update_params.py +630 -0
  1268. unifieddatalibrary/types/maneuver_count_params.py +20 -0
  1269. unifieddatalibrary/types/maneuver_count_response.py +7 -0
  1270. unifieddatalibrary/types/maneuver_create_bulk_params.py +2238 -0
  1271. unifieddatalibrary/types/maneuver_create_params.py +2227 -0
  1272. unifieddatalibrary/types/maneuver_list_params.py +20 -0
  1273. unifieddatalibrary/types/maneuver_list_response.py +2238 -0
  1274. unifieddatalibrary/types/maneuver_tuple_params.py +28 -0
  1275. unifieddatalibrary/types/maneuver_tuple_response.py +10 -0
  1276. unifieddatalibrary/types/maneuver_unvalidated_publish_params.py +2238 -0
  1277. unifieddatalibrary/types/maneuvers/__init__.py +9 -0
  1278. unifieddatalibrary/types/maneuvers/history_aodr_params.py +48 -0
  1279. unifieddatalibrary/types/maneuvers/history_count_params.py +20 -0
  1280. unifieddatalibrary/types/maneuvers/history_count_response.py +7 -0
  1281. unifieddatalibrary/types/maneuvers/history_list_params.py +28 -0
  1282. unifieddatalibrary/types/maneuvers/history_list_response.py +10 -0
  1283. unifieddatalibrary/types/manifold_count_response.py +7 -0
  1284. unifieddatalibrary/types/manifold_create_bulk_params.py +72 -0
  1285. unifieddatalibrary/types/manifold_create_params.py +67 -0
  1286. unifieddatalibrary/types/manifold_get_response.py +96 -0
  1287. unifieddatalibrary/types/manifold_list_response.py +87 -0
  1288. unifieddatalibrary/types/manifold_tuple_params.py +17 -0
  1289. unifieddatalibrary/types/manifold_tuple_response.py +99 -0
  1290. unifieddatalibrary/types/manifold_update_params.py +67 -0
  1291. unifieddatalibrary/types/manifoldelset_count_params.py +19 -0
  1292. unifieddatalibrary/types/manifoldelset_count_response.py +7 -0
  1293. unifieddatalibrary/types/manifoldelset_create_bulk_params.py +146 -0
  1294. unifieddatalibrary/types/manifoldelset_create_params.py +142 -0
  1295. unifieddatalibrary/types/manifoldelset_get_response.py +181 -0
  1296. unifieddatalibrary/types/manifoldelset_list_params.py +19 -0
  1297. unifieddatalibrary/types/manifoldelset_list_response.py +172 -0
  1298. unifieddatalibrary/types/manifoldelset_tuple_params.py +27 -0
  1299. unifieddatalibrary/types/manifoldelset_tuple_response.py +184 -0
  1300. unifieddatalibrary/types/manifoldelset_update_params.py +142 -0
  1301. unifieddatalibrary/types/missile_track_count_params.py +19 -0
  1302. unifieddatalibrary/types/missile_track_count_response.py +7 -0
  1303. unifieddatalibrary/types/missile_track_create_bulk_params.py +588 -0
  1304. unifieddatalibrary/types/missile_track_list_params.py +19 -0
  1305. unifieddatalibrary/types/missile_track_list_response.py +598 -0
  1306. unifieddatalibrary/types/missile_track_tuple_params.py +27 -0
  1307. unifieddatalibrary/types/missile_track_tuple_response.py +10 -0
  1308. unifieddatalibrary/types/missile_track_unvalidated_publish_params.py +588 -0
  1309. unifieddatalibrary/types/missile_tracks/__init__.py +9 -0
  1310. unifieddatalibrary/types/missile_tracks/history_aodr_params.py +47 -0
  1311. unifieddatalibrary/types/missile_tracks/history_count_params.py +19 -0
  1312. unifieddatalibrary/types/missile_tracks/history_count_response.py +7 -0
  1313. unifieddatalibrary/types/missile_tracks/history_query_params.py +27 -0
  1314. unifieddatalibrary/types/missile_tracks/history_query_response.py +10 -0
  1315. unifieddatalibrary/types/missionassignment/__init__.py +9 -0
  1316. unifieddatalibrary/types/missionassignment/history_aodr_params.py +47 -0
  1317. unifieddatalibrary/types/missionassignment/history_count_params.py +19 -0
  1318. unifieddatalibrary/types/missionassignment/history_count_response.py +7 -0
  1319. unifieddatalibrary/types/missionassignment/history_query_params.py +27 -0
  1320. unifieddatalibrary/types/missionassignment/history_query_response.py +10 -0
  1321. unifieddatalibrary/types/missionassignment_count_params.py +19 -0
  1322. unifieddatalibrary/types/missionassignment_count_response.py +7 -0
  1323. unifieddatalibrary/types/missionassignment_create_bulk_params.py +231 -0
  1324. unifieddatalibrary/types/missionassignment_create_params.py +227 -0
  1325. unifieddatalibrary/types/missionassignment_list_params.py +19 -0
  1326. unifieddatalibrary/types/missionassignment_list_response.py +245 -0
  1327. unifieddatalibrary/types/missionassignment_tuple_params.py +27 -0
  1328. unifieddatalibrary/types/missionassignment_tuple_response.py +10 -0
  1329. unifieddatalibrary/types/missionassignment_update_params.py +227 -0
  1330. unifieddatalibrary/types/monoradar_count_params.py +19 -0
  1331. unifieddatalibrary/types/monoradar_count_response.py +7 -0
  1332. unifieddatalibrary/types/monoradar_create_bulk_params.py +285 -0
  1333. unifieddatalibrary/types/monoradar_list_params.py +19 -0
  1334. unifieddatalibrary/types/monoradar_list_response.py +296 -0
  1335. unifieddatalibrary/types/monoradar_tuple_params.py +27 -0
  1336. unifieddatalibrary/types/monoradar_tuple_response.py +10 -0
  1337. unifieddatalibrary/types/mti_count_params.py +16 -0
  1338. unifieddatalibrary/types/mti_count_response.py +7 -0
  1339. unifieddatalibrary/types/mti_create_bulk_params.py +911 -0
  1340. unifieddatalibrary/types/mti_list_params.py +16 -0
  1341. unifieddatalibrary/types/mti_list_response.py +919 -0
  1342. unifieddatalibrary/types/mti_tuple_params.py +24 -0
  1343. unifieddatalibrary/types/mti_tuple_response.py +10 -0
  1344. unifieddatalibrary/types/mti_unvalidated_publish_params.py +911 -0
  1345. unifieddatalibrary/types/navigation_count_response.py +7 -0
  1346. unifieddatalibrary/types/navigation_create_params.py +62 -0
  1347. unifieddatalibrary/types/navigation_get_response.py +88 -0
  1348. unifieddatalibrary/types/navigation_list_response.py +74 -0
  1349. unifieddatalibrary/types/navigation_tuple_params.py +17 -0
  1350. unifieddatalibrary/types/navigation_tuple_response.py +91 -0
  1351. unifieddatalibrary/types/navigation_update_params.py +62 -0
  1352. unifieddatalibrary/types/navigationalobstruction_count_params.py +25 -0
  1353. unifieddatalibrary/types/navigationalobstruction_count_response.py +7 -0
  1354. unifieddatalibrary/types/navigationalobstruction_create_bulk_params.py +387 -0
  1355. unifieddatalibrary/types/navigationalobstruction_create_params.py +383 -0
  1356. unifieddatalibrary/types/navigationalobstruction_get_response.py +421 -0
  1357. unifieddatalibrary/types/navigationalobstruction_list_params.py +25 -0
  1358. unifieddatalibrary/types/navigationalobstruction_list_response.py +415 -0
  1359. unifieddatalibrary/types/navigationalobstruction_tuple_params.py +33 -0
  1360. unifieddatalibrary/types/navigationalobstruction_tuple_response.py +424 -0
  1361. unifieddatalibrary/types/navigationalobstruction_update_params.py +383 -0
  1362. unifieddatalibrary/types/notification_count_params.py +16 -0
  1363. unifieddatalibrary/types/notification_count_response.py +7 -0
  1364. unifieddatalibrary/types/notification_create_params.py +64 -0
  1365. unifieddatalibrary/types/notification_create_raw_params.py +51 -0
  1366. unifieddatalibrary/types/notification_list_params.py +16 -0
  1367. unifieddatalibrary/types/notification_list_response.py +87 -0
  1368. unifieddatalibrary/types/notification_tuple_params.py +24 -0
  1369. unifieddatalibrary/types/notification_tuple_response.py +10 -0
  1370. unifieddatalibrary/types/objectofinterest_count_response.py +7 -0
  1371. unifieddatalibrary/types/objectofinterest_create_params.py +234 -0
  1372. unifieddatalibrary/types/objectofinterest_get_response.py +346 -0
  1373. unifieddatalibrary/types/objectofinterest_list_response.py +242 -0
  1374. unifieddatalibrary/types/objectofinterest_tuple_params.py +17 -0
  1375. unifieddatalibrary/types/objectofinterest_tuple_response.py +353 -0
  1376. unifieddatalibrary/types/objectofinterest_update_params.py +234 -0
  1377. unifieddatalibrary/types/observations/__init__.py +16 -0
  1378. unifieddatalibrary/types/observations/ecpsdr.py +280 -0
  1379. unifieddatalibrary/types/observations/ecpsdr_abridged.py +267 -0
  1380. unifieddatalibrary/types/observations/ecpsdr_count_params.py +19 -0
  1381. unifieddatalibrary/types/observations/ecpsdr_count_response.py +7 -0
  1382. unifieddatalibrary/types/observations/ecpsdr_create_bulk_params.py +253 -0
  1383. unifieddatalibrary/types/observations/ecpsdr_create_params.py +249 -0
  1384. unifieddatalibrary/types/observations/ecpsdr_list_params.py +19 -0
  1385. unifieddatalibrary/types/observations/ecpsdr_list_response.py +10 -0
  1386. unifieddatalibrary/types/observations/ecpsdr_tuple_params.py +27 -0
  1387. unifieddatalibrary/types/observations/ecpsdr_tuple_response.py +10 -0
  1388. unifieddatalibrary/types/observations/monoradar/__init__.py +9 -0
  1389. unifieddatalibrary/types/observations/monoradar/history_aodr_params.py +47 -0
  1390. unifieddatalibrary/types/observations/monoradar/history_count_params.py +19 -0
  1391. unifieddatalibrary/types/observations/monoradar/history_count_response.py +7 -0
  1392. unifieddatalibrary/types/observations/monoradar/history_query_params.py +27 -0
  1393. unifieddatalibrary/types/observations/monoradar/history_query_response.py +10 -0
  1394. unifieddatalibrary/types/observations/monoradar_unvalidated_publish_params.py +285 -0
  1395. unifieddatalibrary/types/observations/radarobservation/__init__.py +9 -0
  1396. unifieddatalibrary/types/observations/radarobservation/history_aodr_params.py +47 -0
  1397. unifieddatalibrary/types/observations/radarobservation/history_count_params.py +19 -0
  1398. unifieddatalibrary/types/observations/radarobservation/history_count_response.py +7 -0
  1399. unifieddatalibrary/types/observations/radarobservation/history_list_params.py +27 -0
  1400. unifieddatalibrary/types/observations/radarobservation/history_list_response.py +10 -0
  1401. unifieddatalibrary/types/observations/rfobservation/__init__.py +7 -0
  1402. unifieddatalibrary/types/observations/rfobservation/history_aodr_params.py +47 -0
  1403. unifieddatalibrary/types/observations/rfobservation/history_list_params.py +27 -0
  1404. unifieddatalibrary/types/observations/rfobservation/history_list_response.py +10 -0
  1405. unifieddatalibrary/types/observations/swir_unvalidated_publish_params.py +108 -0
  1406. unifieddatalibrary/types/onboardnavigation_count_params.py +19 -0
  1407. unifieddatalibrary/types/onboardnavigation_count_response.py +7 -0
  1408. unifieddatalibrary/types/onboardnavigation_create_bulk_params.py +125 -0
  1409. unifieddatalibrary/types/onboardnavigation_list_params.py +19 -0
  1410. unifieddatalibrary/types/onboardnavigation_list_response.py +142 -0
  1411. unifieddatalibrary/types/onboardnavigation_tuple_params.py +27 -0
  1412. unifieddatalibrary/types/onboardnavigation_tuple_response.py +10 -0
  1413. unifieddatalibrary/types/onboardnavigation_unvalidated_publish_params.py +125 -0
  1414. unifieddatalibrary/types/onorbit/__init__.py +9 -0
  1415. unifieddatalibrary/types/onorbit/antenna_detail_create_params.py +112 -0
  1416. unifieddatalibrary/types/onorbit/antenna_detail_list_response.py +10 -0
  1417. unifieddatalibrary/types/onorbit/antenna_detail_update_params.py +112 -0
  1418. unifieddatalibrary/types/onorbit/antenna_details_abridged.py +119 -0
  1419. unifieddatalibrary/types/onorbit/antenna_details_full.py +146 -0
  1420. unifieddatalibrary/types/onorbit_count_response.py +7 -0
  1421. unifieddatalibrary/types/onorbit_create_params.py +125 -0
  1422. unifieddatalibrary/types/onorbit_get_signature_params.py +14 -0
  1423. unifieddatalibrary/types/onorbit_get_signature_response.py +750 -0
  1424. unifieddatalibrary/types/onorbit_list_response.py +145 -0
  1425. unifieddatalibrary/types/onorbit_tuple_params.py +17 -0
  1426. unifieddatalibrary/types/onorbit_tuple_response.py +10 -0
  1427. unifieddatalibrary/types/onorbit_update_params.py +125 -0
  1428. unifieddatalibrary/types/onorbitantenna_create_params.py +94 -0
  1429. unifieddatalibrary/types/onorbitantenna_get_response.py +85 -0
  1430. unifieddatalibrary/types/onorbitantenna_list_response.py +79 -0
  1431. unifieddatalibrary/types/onorbitantenna_update_params.py +94 -0
  1432. unifieddatalibrary/types/onorbitbattery_create_params.py +93 -0
  1433. unifieddatalibrary/types/onorbitbattery_get_response.py +84 -0
  1434. unifieddatalibrary/types/onorbitbattery_list_response.py +78 -0
  1435. unifieddatalibrary/types/onorbitbattery_update_params.py +93 -0
  1436. unifieddatalibrary/types/onorbitdetail_create_params.py +208 -0
  1437. unifieddatalibrary/types/onorbitdetail_get_response.py +232 -0
  1438. unifieddatalibrary/types/onorbitdetail_list_response.py +226 -0
  1439. unifieddatalibrary/types/onorbitdetail_update_params.py +208 -0
  1440. unifieddatalibrary/types/onorbitevent_count_response.py +7 -0
  1441. unifieddatalibrary/types/onorbitevent_create_params.py +209 -0
  1442. unifieddatalibrary/types/onorbitevent_get_response.py +237 -0
  1443. unifieddatalibrary/types/onorbitevent_list_response.py +227 -0
  1444. unifieddatalibrary/types/onorbitevent_tuple_params.py +17 -0
  1445. unifieddatalibrary/types/onorbitevent_tuple_response.py +240 -0
  1446. unifieddatalibrary/types/onorbitevent_update_params.py +209 -0
  1447. unifieddatalibrary/types/onorbitlist_count_response.py +7 -0
  1448. unifieddatalibrary/types/onorbitlist_create_params.py +55 -0
  1449. unifieddatalibrary/types/onorbitlist_get_response.py +74 -0
  1450. unifieddatalibrary/types/onorbitlist_list_response.py +68 -0
  1451. unifieddatalibrary/types/onorbitlist_tuple_params.py +17 -0
  1452. unifieddatalibrary/types/onorbitlist_tuple_response.py +77 -0
  1453. unifieddatalibrary/types/onorbitlist_update_params.py +55 -0
  1454. unifieddatalibrary/types/onorbitsolararray_create_params.py +100 -0
  1455. unifieddatalibrary/types/onorbitsolararray_get_response.py +158 -0
  1456. unifieddatalibrary/types/onorbitsolararray_list_response.py +139 -0
  1457. unifieddatalibrary/types/onorbitsolararray_update_params.py +100 -0
  1458. unifieddatalibrary/types/onorbitthruster_create_params.py +108 -0
  1459. unifieddatalibrary/types/onorbitthruster_get_response.py +96 -0
  1460. unifieddatalibrary/types/onorbitthruster_list_response.py +90 -0
  1461. unifieddatalibrary/types/onorbitthruster_update_params.py +108 -0
  1462. unifieddatalibrary/types/onorbitthrusterstatus/__init__.py +6 -0
  1463. unifieddatalibrary/types/onorbitthrusterstatus/history_count_params.py +29 -0
  1464. unifieddatalibrary/types/onorbitthrusterstatus/history_count_response.py +7 -0
  1465. unifieddatalibrary/types/onorbitthrusterstatus_count_params.py +29 -0
  1466. unifieddatalibrary/types/onorbitthrusterstatus_count_response.py +7 -0
  1467. unifieddatalibrary/types/onorbitthrusterstatus_create_bulk_params.py +111 -0
  1468. unifieddatalibrary/types/onorbitthrusterstatus_create_params.py +107 -0
  1469. unifieddatalibrary/types/onorbitthrusterstatus_list_params.py +29 -0
  1470. unifieddatalibrary/types/onorbitthrusterstatus_list_response.py +125 -0
  1471. unifieddatalibrary/types/onorbitthrusterstatus_tuple_params.py +37 -0
  1472. unifieddatalibrary/types/onorbitthrusterstatus_tuple_response.py +10 -0
  1473. unifieddatalibrary/types/operatingunit_count_response.py +7 -0
  1474. unifieddatalibrary/types/operatingunit_create_params.py +469 -0
  1475. unifieddatalibrary/types/operatingunit_get_response.py +585 -0
  1476. unifieddatalibrary/types/operatingunit_list_response.py +481 -0
  1477. unifieddatalibrary/types/operatingunit_tuple_params.py +17 -0
  1478. unifieddatalibrary/types/operatingunit_tuple_response.py +594 -0
  1479. unifieddatalibrary/types/operatingunit_update_params.py +469 -0
  1480. unifieddatalibrary/types/operatingunitremark_count_response.py +7 -0
  1481. unifieddatalibrary/types/operatingunitremark_create_bulk_params.py +72 -0
  1482. unifieddatalibrary/types/operatingunitremark_create_params.py +67 -0
  1483. unifieddatalibrary/types/operatingunitremark_get_response.py +87 -0
  1484. unifieddatalibrary/types/operatingunitremark_list_response.py +81 -0
  1485. unifieddatalibrary/types/operatingunitremark_tuple_params.py +17 -0
  1486. unifieddatalibrary/types/operatingunitremark_tuple_response.py +90 -0
  1487. unifieddatalibrary/types/orbitdetermination/__init__.py +9 -0
  1488. unifieddatalibrary/types/orbitdetermination/history_aodr_params.py +57 -0
  1489. unifieddatalibrary/types/orbitdetermination/history_count_params.py +29 -0
  1490. unifieddatalibrary/types/orbitdetermination/history_count_response.py +7 -0
  1491. unifieddatalibrary/types/orbitdetermination/history_list_params.py +37 -0
  1492. unifieddatalibrary/types/orbitdetermination/history_list_response.py +10 -0
  1493. unifieddatalibrary/types/orbitdetermination_count_params.py +29 -0
  1494. unifieddatalibrary/types/orbitdetermination_count_response.py +7 -0
  1495. unifieddatalibrary/types/orbitdetermination_create_bulk_params.py +1110 -0
  1496. unifieddatalibrary/types/orbitdetermination_create_params.py +1106 -0
  1497. unifieddatalibrary/types/orbitdetermination_list_params.py +29 -0
  1498. unifieddatalibrary/types/orbitdetermination_list_response.py +1149 -0
  1499. unifieddatalibrary/types/orbitdetermination_tuple_params.py +37 -0
  1500. unifieddatalibrary/types/orbitdetermination_tuple_response.py +10 -0
  1501. unifieddatalibrary/types/orbitdetermination_unvalidated_publish_params.py +1110 -0
  1502. unifieddatalibrary/types/orbittrack/__init__.py +9 -0
  1503. unifieddatalibrary/types/orbittrack/history_aodr_params.py +47 -0
  1504. unifieddatalibrary/types/orbittrack/history_count_params.py +19 -0
  1505. unifieddatalibrary/types/orbittrack/history_count_response.py +7 -0
  1506. unifieddatalibrary/types/orbittrack/history_list_params.py +27 -0
  1507. unifieddatalibrary/types/orbittrack/history_list_response.py +10 -0
  1508. unifieddatalibrary/types/orbittrack_count_params.py +19 -0
  1509. unifieddatalibrary/types/orbittrack_count_response.py +7 -0
  1510. unifieddatalibrary/types/orbittrack_create_bulk_params.py +343 -0
  1511. unifieddatalibrary/types/orbittrack_list_params.py +19 -0
  1512. unifieddatalibrary/types/orbittrack_list_response.py +352 -0
  1513. unifieddatalibrary/types/orbittrack_tuple_params.py +27 -0
  1514. unifieddatalibrary/types/orbittrack_tuple_response.py +10 -0
  1515. unifieddatalibrary/types/orbittrack_unvalidated_publish_params.py +343 -0
  1516. unifieddatalibrary/types/organization_count_response.py +7 -0
  1517. unifieddatalibrary/types/organization_create_params.py +87 -0
  1518. unifieddatalibrary/types/organization_details_full.py +202 -0
  1519. unifieddatalibrary/types/organization_full.py +121 -0
  1520. unifieddatalibrary/types/organization_get_organization_categories_response.py +8 -0
  1521. unifieddatalibrary/types/organization_get_organization_types_response.py +8 -0
  1522. unifieddatalibrary/types/organization_list_response.py +107 -0
  1523. unifieddatalibrary/types/organization_tuple_params.py +17 -0
  1524. unifieddatalibrary/types/organization_tuple_response.py +10 -0
  1525. unifieddatalibrary/types/organization_update_params.py +87 -0
  1526. unifieddatalibrary/types/organizationdetail_create_params.py +180 -0
  1527. unifieddatalibrary/types/organizationdetail_find_by_source_params.py +15 -0
  1528. unifieddatalibrary/types/organizationdetail_find_by_source_response.py +187 -0
  1529. unifieddatalibrary/types/organizationdetail_list_params.py +12 -0
  1530. unifieddatalibrary/types/organizationdetail_list_response.py +187 -0
  1531. unifieddatalibrary/types/organizationdetail_update_params.py +180 -0
  1532. unifieddatalibrary/types/passiveradarobservation/__init__.py +9 -0
  1533. unifieddatalibrary/types/passiveradarobservation/history_aodr_params.py +47 -0
  1534. unifieddatalibrary/types/passiveradarobservation/history_count_params.py +19 -0
  1535. unifieddatalibrary/types/passiveradarobservation/history_count_response.py +7 -0
  1536. unifieddatalibrary/types/passiveradarobservation/history_list_params.py +27 -0
  1537. unifieddatalibrary/types/passiveradarobservation/history_list_response.py +10 -0
  1538. unifieddatalibrary/types/passiveradarobservation_count_params.py +19 -0
  1539. unifieddatalibrary/types/passiveradarobservation_count_response.py +7 -0
  1540. unifieddatalibrary/types/passiveradarobservation_create_bulk_params.py +303 -0
  1541. unifieddatalibrary/types/passiveradarobservation_create_params.py +299 -0
  1542. unifieddatalibrary/types/passiveradarobservation_file_create_params.py +303 -0
  1543. unifieddatalibrary/types/passiveradarobservation_list_params.py +19 -0
  1544. unifieddatalibrary/types/passiveradarobservation_list_response.py +329 -0
  1545. unifieddatalibrary/types/passiveradarobservation_tuple_params.py +27 -0
  1546. unifieddatalibrary/types/passiveradarobservation_tuple_response.py +10 -0
  1547. unifieddatalibrary/types/personnel_recovery_full_l.py +354 -0
  1548. unifieddatalibrary/types/personnelrecovery/__init__.py +8 -0
  1549. unifieddatalibrary/types/personnelrecovery/history_count_params.py +19 -0
  1550. unifieddatalibrary/types/personnelrecovery/history_count_response.py +7 -0
  1551. unifieddatalibrary/types/personnelrecovery/history_list_params.py +27 -0
  1552. unifieddatalibrary/types/personnelrecovery/history_list_response.py +10 -0
  1553. unifieddatalibrary/types/personnelrecovery_count_params.py +19 -0
  1554. unifieddatalibrary/types/personnelrecovery_count_response.py +7 -0
  1555. unifieddatalibrary/types/personnelrecovery_create_bulk_params.py +344 -0
  1556. unifieddatalibrary/types/personnelrecovery_create_params.py +339 -0
  1557. unifieddatalibrary/types/personnelrecovery_file_create_params.py +344 -0
  1558. unifieddatalibrary/types/personnelrecovery_list_params.py +19 -0
  1559. unifieddatalibrary/types/personnelrecovery_list_response.py +368 -0
  1560. unifieddatalibrary/types/personnelrecovery_tuple_params.py +27 -0
  1561. unifieddatalibrary/types/personnelrecovery_tuple_response.py +10 -0
  1562. unifieddatalibrary/types/poi_count_params.py +16 -0
  1563. unifieddatalibrary/types/poi_count_response.py +7 -0
  1564. unifieddatalibrary/types/poi_create_bulk_params.py +266 -0
  1565. unifieddatalibrary/types/poi_create_params.py +262 -0
  1566. unifieddatalibrary/types/poi_list_params.py +16 -0
  1567. unifieddatalibrary/types/poi_list_response.py +251 -0
  1568. unifieddatalibrary/types/poi_tuple_params.py +24 -0
  1569. unifieddatalibrary/types/poi_tuple_response.py +10 -0
  1570. unifieddatalibrary/types/poi_unvalidated_publish_params.py +266 -0
  1571. unifieddatalibrary/types/port_count_response.py +7 -0
  1572. unifieddatalibrary/types/port_create_bulk_params.py +143 -0
  1573. unifieddatalibrary/types/port_create_params.py +138 -0
  1574. unifieddatalibrary/types/port_get_response.py +171 -0
  1575. unifieddatalibrary/types/port_list_response.py +158 -0
  1576. unifieddatalibrary/types/port_tuple_params.py +17 -0
  1577. unifieddatalibrary/types/port_tuple_response.py +174 -0
  1578. unifieddatalibrary/types/port_update_params.py +138 -0
  1579. unifieddatalibrary/types/radarobservation_count_params.py +19 -0
  1580. unifieddatalibrary/types/radarobservation_count_response.py +7 -0
  1581. unifieddatalibrary/types/radarobservation_create_bulk_params.py +330 -0
  1582. unifieddatalibrary/types/radarobservation_create_params.py +326 -0
  1583. unifieddatalibrary/types/radarobservation_list_params.py +19 -0
  1584. unifieddatalibrary/types/radarobservation_list_response.py +351 -0
  1585. unifieddatalibrary/types/radarobservation_tuple_params.py +27 -0
  1586. unifieddatalibrary/types/radarobservation_tuple_response.py +10 -0
  1587. unifieddatalibrary/types/radarobservation_unvalidated_publish_params.py +330 -0
  1588. unifieddatalibrary/types/report_and_activity/__init__.py +8 -0
  1589. unifieddatalibrary/types/report_and_activity/poi/__init__.py +9 -0
  1590. unifieddatalibrary/types/report_and_activity/poi/history_aodr_params.py +44 -0
  1591. unifieddatalibrary/types/report_and_activity/poi/history_count_params.py +16 -0
  1592. unifieddatalibrary/types/report_and_activity/poi/history_count_response.py +7 -0
  1593. unifieddatalibrary/types/report_and_activity/poi/history_list_params.py +24 -0
  1594. unifieddatalibrary/types/report_and_activity/poi/history_list_response.py +10 -0
  1595. unifieddatalibrary/types/report_and_activity/udl_h3geo_unvalidated_publish_params.py +197 -0
  1596. unifieddatalibrary/types/report_and_activity/udl_sigact_unvalidated_publish_params.py +430 -0
  1597. unifieddatalibrary/types/rfband_count_response.py +7 -0
  1598. unifieddatalibrary/types/rfband_create_params.py +124 -0
  1599. unifieddatalibrary/types/rfband_get_response.py +150 -0
  1600. unifieddatalibrary/types/rfband_list_response.py +144 -0
  1601. unifieddatalibrary/types/rfband_tuple_params.py +17 -0
  1602. unifieddatalibrary/types/rfband_tuple_response.py +153 -0
  1603. unifieddatalibrary/types/rfband_update_params.py +124 -0
  1604. unifieddatalibrary/types/rfbandtype_count_response.py +7 -0
  1605. unifieddatalibrary/types/rfbandtype_create_params.py +54 -0
  1606. unifieddatalibrary/types/rfbandtype_get_response.py +74 -0
  1607. unifieddatalibrary/types/rfbandtype_list_response.py +68 -0
  1608. unifieddatalibrary/types/rfbandtype_tuple_params.py +17 -0
  1609. unifieddatalibrary/types/rfbandtype_tuple_response.py +77 -0
  1610. unifieddatalibrary/types/rfbandtype_update_params.py +54 -0
  1611. unifieddatalibrary/types/rfemitter_count_response.py +7 -0
  1612. unifieddatalibrary/types/rfemitter_create_params.py +62 -0
  1613. unifieddatalibrary/types/rfemitter_get_response.py +262 -0
  1614. unifieddatalibrary/types/rfemitter_list_response.py +74 -0
  1615. unifieddatalibrary/types/rfemitter_tuple_params.py +17 -0
  1616. unifieddatalibrary/types/rfemitter_tuple_response.py +267 -0
  1617. unifieddatalibrary/types/rfemitter_update_params.py +62 -0
  1618. unifieddatalibrary/types/rfemitterdetail_count_response.py +7 -0
  1619. unifieddatalibrary/types/rfemitterdetail_create_params.py +141 -0
  1620. unifieddatalibrary/types/rfemitterdetail_get_response.py +182 -0
  1621. unifieddatalibrary/types/rfemitterdetail_list_response.py +160 -0
  1622. unifieddatalibrary/types/rfemitterdetail_tuple_params.py +17 -0
  1623. unifieddatalibrary/types/rfemitterdetail_tuple_response.py +185 -0
  1624. unifieddatalibrary/types/rfemitterdetail_update_params.py +141 -0
  1625. unifieddatalibrary/types/rfobservation/__init__.py +6 -0
  1626. unifieddatalibrary/types/rfobservation/history_count_params.py +19 -0
  1627. unifieddatalibrary/types/rfobservation/history_count_response.py +7 -0
  1628. unifieddatalibrary/types/rfobservation_count_params.py +19 -0
  1629. unifieddatalibrary/types/rfobservation_count_response.py +7 -0
  1630. unifieddatalibrary/types/rfobservation_create_bulk_params.py +430 -0
  1631. unifieddatalibrary/types/rfobservation_create_params.py +426 -0
  1632. unifieddatalibrary/types/rfobservation_list_params.py +19 -0
  1633. unifieddatalibrary/types/rfobservation_list_response.py +382 -0
  1634. unifieddatalibrary/types/rfobservation_tuple_params.py +27 -0
  1635. unifieddatalibrary/types/rfobservation_tuple_response.py +395 -0
  1636. unifieddatalibrary/types/rfobservation_unvalidated_publish_params.py +430 -0
  1637. unifieddatalibrary/types/routestat_count_response.py +7 -0
  1638. unifieddatalibrary/types/routestat_create_bulk_params.py +168 -0
  1639. unifieddatalibrary/types/routestat_create_params.py +164 -0
  1640. unifieddatalibrary/types/routestat_query_response.py +189 -0
  1641. unifieddatalibrary/types/routestat_retrieve_response.py +195 -0
  1642. unifieddatalibrary/types/routestat_tuple_params.py +17 -0
  1643. unifieddatalibrary/types/routestat_tuple_response.py +198 -0
  1644. unifieddatalibrary/types/routestat_unvalidated_publish_params.py +168 -0
  1645. unifieddatalibrary/types/routestat_update_params.py +164 -0
  1646. unifieddatalibrary/types/sarobservation/__init__.py +9 -0
  1647. unifieddatalibrary/types/sarobservation/history_aodr_params.py +47 -0
  1648. unifieddatalibrary/types/sarobservation/history_count_params.py +19 -0
  1649. unifieddatalibrary/types/sarobservation/history_count_response.py +7 -0
  1650. unifieddatalibrary/types/sarobservation/history_retrieve_params.py +27 -0
  1651. unifieddatalibrary/types/sarobservation/history_retrieve_response.py +10 -0
  1652. unifieddatalibrary/types/sarobservation_count_params.py +19 -0
  1653. unifieddatalibrary/types/sarobservation_count_response.py +7 -0
  1654. unifieddatalibrary/types/sarobservation_create_bulk_params.py +349 -0
  1655. unifieddatalibrary/types/sarobservation_create_params.py +345 -0
  1656. unifieddatalibrary/types/sarobservation_list_params.py +19 -0
  1657. unifieddatalibrary/types/sarobservation_list_response.py +361 -0
  1658. unifieddatalibrary/types/sarobservation_tuple_params.py +27 -0
  1659. unifieddatalibrary/types/sarobservation_tuple_response.py +10 -0
  1660. unifieddatalibrary/types/sarobservation_unvalidated_publish_params.py +349 -0
  1661. unifieddatalibrary/types/sc_aggregate_doc_type_response.py +8 -0
  1662. unifieddatalibrary/types/sc_allowable_file_extensions_response.py +8 -0
  1663. unifieddatalibrary/types/sc_allowable_file_mimes_response.py +8 -0
  1664. unifieddatalibrary/types/sc_copy_params.py +17 -0
  1665. unifieddatalibrary/types/sc_copy_response.py +7 -0
  1666. unifieddatalibrary/types/sc_delete_params.py +12 -0
  1667. unifieddatalibrary/types/sc_download_params.py +12 -0
  1668. unifieddatalibrary/types/sc_file_download_params.py +12 -0
  1669. unifieddatalibrary/types/sc_file_upload_params.py +32 -0
  1670. unifieddatalibrary/types/sc_file_upload_response.py +7 -0
  1671. unifieddatalibrary/types/sc_move_params.py +17 -0
  1672. unifieddatalibrary/types/sc_move_response.py +7 -0
  1673. unifieddatalibrary/types/sc_rename_params.py +17 -0
  1674. unifieddatalibrary/types/sc_search_params.py +31 -0
  1675. unifieddatalibrary/types/sc_search_response.py +10 -0
  1676. unifieddatalibrary/types/sc_update_tags_params.py +15 -0
  1677. unifieddatalibrary/types/scientific_count_response.py +7 -0
  1678. unifieddatalibrary/types/scientific_create_params.py +77 -0
  1679. unifieddatalibrary/types/scientific_get_response.py +103 -0
  1680. unifieddatalibrary/types/scientific_list_response.py +89 -0
  1681. unifieddatalibrary/types/scientific_tuple_params.py +17 -0
  1682. unifieddatalibrary/types/scientific_tuple_response.py +106 -0
  1683. unifieddatalibrary/types/scientific_update_params.py +77 -0
  1684. unifieddatalibrary/types/scs/__init__.py +27 -0
  1685. unifieddatalibrary/types/scs/attachment.py +25 -0
  1686. unifieddatalibrary/types/scs/classification_marking_list_response.py +8 -0
  1687. unifieddatalibrary/types/scs/file_list_params.py +18 -0
  1688. unifieddatalibrary/types/scs/file_metadata_list_response.py +8 -0
  1689. unifieddatalibrary/types/scs/file_retrieve_params.py +12 -0
  1690. unifieddatalibrary/types/scs/file_update_params.py +15 -0
  1691. unifieddatalibrary/types/scs/folder_create_params.py +29 -0
  1692. unifieddatalibrary/types/scs/folder_create_response.py +7 -0
  1693. unifieddatalibrary/types/scs/folder_retrieve_params.py +12 -0
  1694. unifieddatalibrary/types/scs/folder_update_params.py +86 -0
  1695. unifieddatalibrary/types/scs/group_list_response.py +8 -0
  1696. unifieddatalibrary/types/scs/path_create_params.py +29 -0
  1697. unifieddatalibrary/types/scs/path_create_response.py +7 -0
  1698. unifieddatalibrary/types/scs/range_parameter_list_response.py +8 -0
  1699. unifieddatalibrary/types/scs/scs_entity.py +64 -0
  1700. unifieddatalibrary/types/scs/v2_copy_params.py +17 -0
  1701. unifieddatalibrary/types/scs/v2_delete_params.py +12 -0
  1702. unifieddatalibrary/types/scs/v2_file_upload_params.py +39 -0
  1703. unifieddatalibrary/types/scs/v2_folder_create_params.py +45 -0
  1704. unifieddatalibrary/types/scs/v2_list_params.py +12 -0
  1705. unifieddatalibrary/types/scs/v2_list_response.py +10 -0
  1706. unifieddatalibrary/types/scs/v2_move_params.py +20 -0
  1707. unifieddatalibrary/types/scs/v2_update_params.py +41 -0
  1708. unifieddatalibrary/types/secure_messaging_list_topics_response.py +10 -0
  1709. unifieddatalibrary/types/sensor/__init__.py +16 -0
  1710. unifieddatalibrary/types/sensor/calibration/__init__.py +9 -0
  1711. unifieddatalibrary/types/sensor/calibration/history_count_params.py +19 -0
  1712. unifieddatalibrary/types/sensor/calibration/history_count_response.py +7 -0
  1713. unifieddatalibrary/types/sensor/calibration/history_query_params.py +27 -0
  1714. unifieddatalibrary/types/sensor/calibration/history_query_response.py +303 -0
  1715. unifieddatalibrary/types/sensor/calibration/history_write_aodr_params.py +47 -0
  1716. unifieddatalibrary/types/sensor/calibration_count_params.py +19 -0
  1717. unifieddatalibrary/types/sensor/calibration_count_response.py +7 -0
  1718. unifieddatalibrary/types/sensor/calibration_create_bulk_params.py +282 -0
  1719. unifieddatalibrary/types/sensor/calibration_create_params.py +278 -0
  1720. unifieddatalibrary/types/sensor/calibration_query_params.py +19 -0
  1721. unifieddatalibrary/types/sensor/calibration_query_response.py +303 -0
  1722. unifieddatalibrary/types/sensor/calibration_retrieve_response.py +300 -0
  1723. unifieddatalibrary/types/sensor/calibration_tuple_params.py +27 -0
  1724. unifieddatalibrary/types/sensor/calibration_tuple_response.py +303 -0
  1725. unifieddatalibrary/types/sensor/calibration_unvalidated_publish_params.py +282 -0
  1726. unifieddatalibrary/types/sensor_count_response.py +7 -0
  1727. unifieddatalibrary/types/sensor_create_params.py +854 -0
  1728. unifieddatalibrary/types/sensor_get_response.py +2597 -0
  1729. unifieddatalibrary/types/sensor_list_response.py +1054 -0
  1730. unifieddatalibrary/types/sensor_tuple_params.py +17 -0
  1731. unifieddatalibrary/types/sensor_tuple_response.py +2613 -0
  1732. unifieddatalibrary/types/sensor_update_params.py +854 -0
  1733. unifieddatalibrary/types/sensormaintenance/__init__.py +9 -0
  1734. unifieddatalibrary/types/sensormaintenance/history_aodr_params.py +53 -0
  1735. unifieddatalibrary/types/sensormaintenance/history_count_params.py +25 -0
  1736. unifieddatalibrary/types/sensormaintenance/history_count_response.py +7 -0
  1737. unifieddatalibrary/types/sensormaintenance/history_retrieve_params.py +33 -0
  1738. unifieddatalibrary/types/sensormaintenance/history_retrieve_response.py +10 -0
  1739. unifieddatalibrary/types/sensormaintenance_count_params.py +25 -0
  1740. unifieddatalibrary/types/sensormaintenance_count_response.py +7 -0
  1741. unifieddatalibrary/types/sensormaintenance_create_bulk_params.py +136 -0
  1742. unifieddatalibrary/types/sensormaintenance_create_params.py +126 -0
  1743. unifieddatalibrary/types/sensormaintenance_current_response.py +10 -0
  1744. unifieddatalibrary/types/sensormaintenance_list_params.py +25 -0
  1745. unifieddatalibrary/types/sensormaintenance_list_response.py +147 -0
  1746. unifieddatalibrary/types/sensormaintenance_tuple_params.py +33 -0
  1747. unifieddatalibrary/types/sensormaintenance_tuple_response.py +10 -0
  1748. unifieddatalibrary/types/sensormaintenance_update_params.py +126 -0
  1749. unifieddatalibrary/types/sensorobservationtype_get_response.py +63 -0
  1750. unifieddatalibrary/types/sensorobservationtype_list_response.py +37 -0
  1751. unifieddatalibrary/types/sensorplan/__init__.py +9 -0
  1752. unifieddatalibrary/types/sensorplan/history_aodr_params.py +47 -0
  1753. unifieddatalibrary/types/sensorplan/history_count_params.py +19 -0
  1754. unifieddatalibrary/types/sensorplan/history_count_response.py +7 -0
  1755. unifieddatalibrary/types/sensorplan/history_retrieve_params.py +27 -0
  1756. unifieddatalibrary/types/sensorplan/history_retrieve_response.py +10 -0
  1757. unifieddatalibrary/types/sensorplan_count_params.py +19 -0
  1758. unifieddatalibrary/types/sensorplan_count_response.py +7 -0
  1759. unifieddatalibrary/types/sensorplan_create_params.py +1458 -0
  1760. unifieddatalibrary/types/sensorplan_list_params.py +19 -0
  1761. unifieddatalibrary/types/sensorplan_list_response.py +115 -0
  1762. unifieddatalibrary/types/sensorplan_tuple_params.py +27 -0
  1763. unifieddatalibrary/types/sensorplan_tuple_response.py +10 -0
  1764. unifieddatalibrary/types/sensorplan_unvalidated_publish_params.py +1468 -0
  1765. unifieddatalibrary/types/sensorplan_update_params.py +1458 -0
  1766. unifieddatalibrary/types/sensortype_get_response.py +63 -0
  1767. unifieddatalibrary/types/sensortype_list_response.py +37 -0
  1768. unifieddatalibrary/types/seradatacommdetail_count_response.py +7 -0
  1769. unifieddatalibrary/types/seradatacommdetail_create_params.py +140 -0
  1770. unifieddatalibrary/types/seradatacommdetail_get_response.py +168 -0
  1771. unifieddatalibrary/types/seradatacommdetail_list_response.py +162 -0
  1772. unifieddatalibrary/types/seradatacommdetail_tuple_params.py +17 -0
  1773. unifieddatalibrary/types/seradatacommdetail_tuple_response.py +171 -0
  1774. unifieddatalibrary/types/seradatacommdetail_update_params.py +140 -0
  1775. unifieddatalibrary/types/seradataearlywarning_count_response.py +7 -0
  1776. unifieddatalibrary/types/seradataearlywarning_create_params.py +87 -0
  1777. unifieddatalibrary/types/seradataearlywarning_get_response.py +115 -0
  1778. unifieddatalibrary/types/seradataearlywarning_list_response.py +109 -0
  1779. unifieddatalibrary/types/seradataearlywarning_tuple_params.py +17 -0
  1780. unifieddatalibrary/types/seradataearlywarning_tuple_response.py +118 -0
  1781. unifieddatalibrary/types/seradataearlywarning_update_params.py +87 -0
  1782. unifieddatalibrary/types/seradatanavigation_count_response.py +7 -0
  1783. unifieddatalibrary/types/seradatanavigation_create_params.py +84 -0
  1784. unifieddatalibrary/types/seradatanavigation_get_response.py +110 -0
  1785. unifieddatalibrary/types/seradatanavigation_list_response.py +104 -0
  1786. unifieddatalibrary/types/seradatanavigation_tuple_params.py +17 -0
  1787. unifieddatalibrary/types/seradatanavigation_tuple_response.py +113 -0
  1788. unifieddatalibrary/types/seradatanavigation_update_params.py +84 -0
  1789. unifieddatalibrary/types/seradataopticalpayload_count_response.py +7 -0
  1790. unifieddatalibrary/types/seradataopticalpayload_create_params.py +105 -0
  1791. unifieddatalibrary/types/seradataopticalpayload_get_response.py +131 -0
  1792. unifieddatalibrary/types/seradataopticalpayload_list_response.py +125 -0
  1793. unifieddatalibrary/types/seradataopticalpayload_tuple_params.py +17 -0
  1794. unifieddatalibrary/types/seradataopticalpayload_tuple_response.py +134 -0
  1795. unifieddatalibrary/types/seradataopticalpayload_update_params.py +105 -0
  1796. unifieddatalibrary/types/seradataradarpayload_count_response.py +7 -0
  1797. unifieddatalibrary/types/seradataradarpayload_create_params.py +126 -0
  1798. unifieddatalibrary/types/seradataradarpayload_get_response.py +152 -0
  1799. unifieddatalibrary/types/seradataradarpayload_list_response.py +146 -0
  1800. unifieddatalibrary/types/seradataradarpayload_tuple_params.py +17 -0
  1801. unifieddatalibrary/types/seradataradarpayload_tuple_response.py +155 -0
  1802. unifieddatalibrary/types/seradataradarpayload_update_params.py +126 -0
  1803. unifieddatalibrary/types/seradatasigintpayload_count_response.py +7 -0
  1804. unifieddatalibrary/types/seradatasigintpayload_create_params.py +84 -0
  1805. unifieddatalibrary/types/seradatasigintpayload_get_response.py +110 -0
  1806. unifieddatalibrary/types/seradatasigintpayload_list_response.py +104 -0
  1807. unifieddatalibrary/types/seradatasigintpayload_tuple_params.py +17 -0
  1808. unifieddatalibrary/types/seradatasigintpayload_tuple_response.py +113 -0
  1809. unifieddatalibrary/types/seradatasigintpayload_update_params.py +84 -0
  1810. unifieddatalibrary/types/seradataspacecraftdetail_count_response.py +7 -0
  1811. unifieddatalibrary/types/seradataspacecraftdetail_create_params.py +322 -0
  1812. unifieddatalibrary/types/seradataspacecraftdetail_get_response.py +1982 -0
  1813. unifieddatalibrary/types/seradataspacecraftdetail_list_response.py +344 -0
  1814. unifieddatalibrary/types/seradataspacecraftdetail_tuple_params.py +17 -0
  1815. unifieddatalibrary/types/seradataspacecraftdetail_tuple_response.py +2000 -0
  1816. unifieddatalibrary/types/seradataspacecraftdetail_update_params.py +322 -0
  1817. unifieddatalibrary/types/sgi/__init__.py +9 -0
  1818. unifieddatalibrary/types/sgi/history_aodr_params.py +57 -0
  1819. unifieddatalibrary/types/sgi/history_count_params.py +29 -0
  1820. unifieddatalibrary/types/sgi/history_count_response.py +7 -0
  1821. unifieddatalibrary/types/sgi/history_list_params.py +37 -0
  1822. unifieddatalibrary/types/sgi/history_list_response.py +10 -0
  1823. unifieddatalibrary/types/sgi_count_params.py +29 -0
  1824. unifieddatalibrary/types/sgi_count_response.py +7 -0
  1825. unifieddatalibrary/types/sgi_create_bulk_params.py +365 -0
  1826. unifieddatalibrary/types/sgi_create_params.py +361 -0
  1827. unifieddatalibrary/types/sgi_get_data_by_effective_as_of_date_params.py +29 -0
  1828. unifieddatalibrary/types/sgi_list_params.py +29 -0
  1829. unifieddatalibrary/types/sgi_list_response.py +351 -0
  1830. unifieddatalibrary/types/sgi_tuple_params.py +37 -0
  1831. unifieddatalibrary/types/sgi_tuple_response.py +10 -0
  1832. unifieddatalibrary/types/sgi_unvalidated_publish_params.py +365 -0
  1833. unifieddatalibrary/types/sgi_update_params.py +361 -0
  1834. unifieddatalibrary/types/shared/__init__.py +17 -0
  1835. unifieddatalibrary/types/shared/air_transport_mission_full.py +417 -0
  1836. unifieddatalibrary/types/shared/aircraftstatus_full.py +293 -0
  1837. unifieddatalibrary/types/shared/ais_full.py +290 -0
  1838. unifieddatalibrary/types/shared/attitudeset_full.py +200 -0
  1839. unifieddatalibrary/types/shared/collect_request_full.py +1491 -0
  1840. unifieddatalibrary/types/shared/collect_response_full.py +196 -0
  1841. unifieddatalibrary/types/shared/drift_history.py +65 -0
  1842. unifieddatalibrary/types/shared/drifthistory_abridged.py +65 -0
  1843. unifieddatalibrary/types/shared/eop_full.py +252 -0
  1844. unifieddatalibrary/types/shared/ephemeris_full.py +161 -0
  1845. unifieddatalibrary/types/shared/evac_full.py +619 -0
  1846. unifieddatalibrary/types/shared/event_evolution_full.py +207 -0
  1847. unifieddatalibrary/types/shared/file_data.py +86 -0
  1848. unifieddatalibrary/types/shared/flight_plan_full.py +923 -0
  1849. unifieddatalibrary/types/shared/onorbit.py +1799 -0
  1850. unifieddatalibrary/types/shared_params/__init__.py +3 -0
  1851. unifieddatalibrary/types/shared_params/file_data.py +86 -0
  1852. unifieddatalibrary/types/sigact/__init__.py +8 -0
  1853. unifieddatalibrary/types/sigact/history_count_params.py +16 -0
  1854. unifieddatalibrary/types/sigact/history_count_response.py +7 -0
  1855. unifieddatalibrary/types/sigact/history_list_params.py +24 -0
  1856. unifieddatalibrary/types/sigact/history_list_response.py +10 -0
  1857. unifieddatalibrary/types/sigact_count_params.py +16 -0
  1858. unifieddatalibrary/types/sigact_count_response.py +7 -0
  1859. unifieddatalibrary/types/sigact_create_bulk_params.py +430 -0
  1860. unifieddatalibrary/types/sigact_list_params.py +16 -0
  1861. unifieddatalibrary/types/sigact_list_response.py +448 -0
  1862. unifieddatalibrary/types/sigact_tuple_params.py +24 -0
  1863. unifieddatalibrary/types/sigact_tuple_response.py +10 -0
  1864. unifieddatalibrary/types/sigact_upload_zip_params.py +14 -0
  1865. unifieddatalibrary/types/site/__init__.py +15 -0
  1866. unifieddatalibrary/types/site/operation_count_params.py +14 -0
  1867. unifieddatalibrary/types/site/operation_count_response.py +7 -0
  1868. unifieddatalibrary/types/site/operation_create_bulk_params.py +347 -0
  1869. unifieddatalibrary/types/site/operation_create_params.py +342 -0
  1870. unifieddatalibrary/types/site/operation_list_params.py +14 -0
  1871. unifieddatalibrary/types/site/operation_list_response.py +382 -0
  1872. unifieddatalibrary/types/site/operation_retrieve_response.py +370 -0
  1873. unifieddatalibrary/types/site/operation_tuple_params.py +22 -0
  1874. unifieddatalibrary/types/site/operation_tuple_response.py +382 -0
  1875. unifieddatalibrary/types/site/operation_unvalidated_publish_params.py +347 -0
  1876. unifieddatalibrary/types/site/operation_update_params.py +342 -0
  1877. unifieddatalibrary/types/site_count_response.py +7 -0
  1878. unifieddatalibrary/types/site_create_params.py +547 -0
  1879. unifieddatalibrary/types/site_get_response.py +1017 -0
  1880. unifieddatalibrary/types/site_list_response.py +557 -0
  1881. unifieddatalibrary/types/site_tuple_params.py +17 -0
  1882. unifieddatalibrary/types/site_tuple_response.py +1027 -0
  1883. unifieddatalibrary/types/site_update_params.py +547 -0
  1884. unifieddatalibrary/types/siteremark_count_response.py +7 -0
  1885. unifieddatalibrary/types/siteremark_create_params.py +67 -0
  1886. unifieddatalibrary/types/siteremark_get_response.py +84 -0
  1887. unifieddatalibrary/types/siteremark_list_response.py +87 -0
  1888. unifieddatalibrary/types/siteremark_tuple_params.py +17 -0
  1889. unifieddatalibrary/types/siteremark_tuple_response.py +87 -0
  1890. unifieddatalibrary/types/sitestatus/__init__.py +7 -0
  1891. unifieddatalibrary/types/sitestatus/history_count_response.py +7 -0
  1892. unifieddatalibrary/types/sitestatus/history_list_params.py +17 -0
  1893. unifieddatalibrary/types/sitestatus/history_list_response.py +10 -0
  1894. unifieddatalibrary/types/sitestatus_count_response.py +7 -0
  1895. unifieddatalibrary/types/sitestatus_create_params.py +251 -0
  1896. unifieddatalibrary/types/sitestatus_list_response.py +269 -0
  1897. unifieddatalibrary/types/sitestatus_tuple_params.py +17 -0
  1898. unifieddatalibrary/types/sitestatus_tuple_response.py +10 -0
  1899. unifieddatalibrary/types/sitestatus_update_params.py +251 -0
  1900. unifieddatalibrary/types/skyimagery/__init__.py +9 -0
  1901. unifieddatalibrary/types/skyimagery/history_aodr_params.py +47 -0
  1902. unifieddatalibrary/types/skyimagery/history_count_params.py +19 -0
  1903. unifieddatalibrary/types/skyimagery/history_count_response.py +7 -0
  1904. unifieddatalibrary/types/skyimagery/history_list_params.py +27 -0
  1905. unifieddatalibrary/types/skyimagery/history_list_response.py +10 -0
  1906. unifieddatalibrary/types/skyimagery_count_params.py +19 -0
  1907. unifieddatalibrary/types/skyimagery_count_response.py +7 -0
  1908. unifieddatalibrary/types/skyimagery_list_params.py +19 -0
  1909. unifieddatalibrary/types/skyimagery_list_response.py +255 -0
  1910. unifieddatalibrary/types/skyimagery_tuple_params.py +27 -0
  1911. unifieddatalibrary/types/skyimagery_tuple_response.py +10 -0
  1912. unifieddatalibrary/types/skyimagery_upload_zip_params.py +14 -0
  1913. unifieddatalibrary/types/soiobservationset/__init__.py +10 -0
  1914. unifieddatalibrary/types/soiobservationset/history_aodr_params.py +47 -0
  1915. unifieddatalibrary/types/soiobservationset/history_count_params.py +19 -0
  1916. unifieddatalibrary/types/soiobservationset/history_count_response.py +7 -0
  1917. unifieddatalibrary/types/soiobservationset/history_list_params.py +27 -0
  1918. unifieddatalibrary/types/soiobservationset/history_list_response.py +10 -0
  1919. unifieddatalibrary/types/soiobservationset/soi_observation_set_full.py +849 -0
  1920. unifieddatalibrary/types/soiobservationset_count_params.py +19 -0
  1921. unifieddatalibrary/types/soiobservationset_count_response.py +7 -0
  1922. unifieddatalibrary/types/soiobservationset_create_bulk_params.py +832 -0
  1923. unifieddatalibrary/types/soiobservationset_create_params.py +822 -0
  1924. unifieddatalibrary/types/soiobservationset_list_params.py +19 -0
  1925. unifieddatalibrary/types/soiobservationset_list_response.py +479 -0
  1926. unifieddatalibrary/types/soiobservationset_tuple_params.py +27 -0
  1927. unifieddatalibrary/types/soiobservationset_tuple_response.py +10 -0
  1928. unifieddatalibrary/types/soiobservationset_unvalidated_publish_params.py +832 -0
  1929. unifieddatalibrary/types/solar_array_details_full.py +113 -0
  1930. unifieddatalibrary/types/solararray_count_response.py +7 -0
  1931. unifieddatalibrary/types/solararray_create_params.py +45 -0
  1932. unifieddatalibrary/types/solararray_get_response.py +79 -0
  1933. unifieddatalibrary/types/solararray_list_response.py +65 -0
  1934. unifieddatalibrary/types/solararray_tuple_params.py +17 -0
  1935. unifieddatalibrary/types/solararray_tuple_response.py +82 -0
  1936. unifieddatalibrary/types/solararray_update_params.py +45 -0
  1937. unifieddatalibrary/types/solararraydetail_create_params.py +79 -0
  1938. unifieddatalibrary/types/solararraydetail_list_params.py +30 -0
  1939. unifieddatalibrary/types/solararraydetail_list_response.py +89 -0
  1940. unifieddatalibrary/types/solararraydetail_update_params.py +79 -0
  1941. unifieddatalibrary/types/sortieppr/__init__.py +10 -0
  1942. unifieddatalibrary/types/sortieppr/history_aodr_params.py +45 -0
  1943. unifieddatalibrary/types/sortieppr/history_count_params.py +17 -0
  1944. unifieddatalibrary/types/sortieppr/history_count_response.py +7 -0
  1945. unifieddatalibrary/types/sortieppr/history_list_params.py +25 -0
  1946. unifieddatalibrary/types/sortieppr/history_list_response.py +10 -0
  1947. unifieddatalibrary/types/sortieppr/sortie_ppr_full.py +121 -0
  1948. unifieddatalibrary/types/sortieppr_count_params.py +17 -0
  1949. unifieddatalibrary/types/sortieppr_count_response.py +7 -0
  1950. unifieddatalibrary/types/sortieppr_create_bulk_params.py +94 -0
  1951. unifieddatalibrary/types/sortieppr_create_params.py +90 -0
  1952. unifieddatalibrary/types/sortieppr_list_params.py +17 -0
  1953. unifieddatalibrary/types/sortieppr_list_response.py +115 -0
  1954. unifieddatalibrary/types/sortieppr_tuple_params.py +25 -0
  1955. unifieddatalibrary/types/sortieppr_tuple_response.py +10 -0
  1956. unifieddatalibrary/types/sortieppr_unvalidated_publish_params.py +94 -0
  1957. unifieddatalibrary/types/sortieppr_update_params.py +90 -0
  1958. unifieddatalibrary/types/spaceenvobservation/__init__.py +10 -0
  1959. unifieddatalibrary/types/spaceenvobservation/history_aodr_params.py +47 -0
  1960. unifieddatalibrary/types/spaceenvobservation/history_count_params.py +19 -0
  1961. unifieddatalibrary/types/spaceenvobservation/history_count_response.py +7 -0
  1962. unifieddatalibrary/types/spaceenvobservation/history_list_params.py +27 -0
  1963. unifieddatalibrary/types/spaceenvobservation/history_list_response.py +10 -0
  1964. unifieddatalibrary/types/spaceenvobservation/space_env_observation_full.py +303 -0
  1965. unifieddatalibrary/types/spaceenvobservation_count_params.py +19 -0
  1966. unifieddatalibrary/types/spaceenvobservation_count_response.py +7 -0
  1967. unifieddatalibrary/types/spaceenvobservation_create_bulk_params.py +286 -0
  1968. unifieddatalibrary/types/spaceenvobservation_list_params.py +19 -0
  1969. unifieddatalibrary/types/spaceenvobservation_list_response.py +310 -0
  1970. unifieddatalibrary/types/spaceenvobservation_tuple_params.py +27 -0
  1971. unifieddatalibrary/types/spaceenvobservation_tuple_response.py +10 -0
  1972. unifieddatalibrary/types/spaceenvobservation_unvalidated_publish_params.py +286 -0
  1973. unifieddatalibrary/types/stage_count_response.py +7 -0
  1974. unifieddatalibrary/types/stage_create_params.py +151 -0
  1975. unifieddatalibrary/types/stage_get_response.py +183 -0
  1976. unifieddatalibrary/types/stage_list_response.py +161 -0
  1977. unifieddatalibrary/types/stage_tuple_params.py +17 -0
  1978. unifieddatalibrary/types/stage_tuple_response.py +186 -0
  1979. unifieddatalibrary/types/stage_update_params.py +151 -0
  1980. unifieddatalibrary/types/starcatalog/__init__.py +5 -0
  1981. unifieddatalibrary/types/starcatalog/history_aodr_params.py +53 -0
  1982. unifieddatalibrary/types/starcatalog_count_params.py +23 -0
  1983. unifieddatalibrary/types/starcatalog_count_response.py +7 -0
  1984. unifieddatalibrary/types/starcatalog_create_bulk_params.py +216 -0
  1985. unifieddatalibrary/types/starcatalog_create_params.py +211 -0
  1986. unifieddatalibrary/types/starcatalog_get_response.py +232 -0
  1987. unifieddatalibrary/types/starcatalog_list_params.py +23 -0
  1988. unifieddatalibrary/types/starcatalog_list_response.py +235 -0
  1989. unifieddatalibrary/types/starcatalog_tuple_params.py +31 -0
  1990. unifieddatalibrary/types/starcatalog_tuple_response.py +235 -0
  1991. unifieddatalibrary/types/starcatalog_unvalidated_publish_params.py +216 -0
  1992. unifieddatalibrary/types/starcatalog_update_params.py +211 -0
  1993. unifieddatalibrary/types/state_vector_abridged.py +613 -0
  1994. unifieddatalibrary/types/state_vector_full.py +663 -0
  1995. unifieddatalibrary/types/state_vector_ingest_param.py +618 -0
  1996. unifieddatalibrary/types/statevector/__init__.py +12 -0
  1997. unifieddatalibrary/types/statevector/current_list_response.py +10 -0
  1998. unifieddatalibrary/types/statevector/current_tuple_params.py +17 -0
  1999. unifieddatalibrary/types/statevector/current_tuple_response.py +10 -0
  2000. unifieddatalibrary/types/statevector/history_aodr_params.py +47 -0
  2001. unifieddatalibrary/types/statevector/history_count_params.py +19 -0
  2002. unifieddatalibrary/types/statevector/history_count_response.py +7 -0
  2003. unifieddatalibrary/types/statevector/history_list_params.py +27 -0
  2004. unifieddatalibrary/types/statevector/history_list_response.py +10 -0
  2005. unifieddatalibrary/types/statevector_count_params.py +19 -0
  2006. unifieddatalibrary/types/statevector_count_response.py +7 -0
  2007. unifieddatalibrary/types/statevector_create_bulk_params.py +14 -0
  2008. unifieddatalibrary/types/statevector_create_params.py +618 -0
  2009. unifieddatalibrary/types/statevector_list_params.py +19 -0
  2010. unifieddatalibrary/types/statevector_list_response.py +10 -0
  2011. unifieddatalibrary/types/statevector_tuple_params.py +27 -0
  2012. unifieddatalibrary/types/statevector_tuple_response.py +10 -0
  2013. unifieddatalibrary/types/statevector_unvalidated_publish_params.py +14 -0
  2014. unifieddatalibrary/types/status_count_response.py +7 -0
  2015. unifieddatalibrary/types/status_create_params.py +127 -0
  2016. unifieddatalibrary/types/status_get_by_entity_id_response.py +184 -0
  2017. unifieddatalibrary/types/status_get_by_entity_type_response.py +184 -0
  2018. unifieddatalibrary/types/status_get_response.py +175 -0
  2019. unifieddatalibrary/types/status_list_response.py +162 -0
  2020. unifieddatalibrary/types/status_tuple_params.py +17 -0
  2021. unifieddatalibrary/types/status_tuple_response.py +180 -0
  2022. unifieddatalibrary/types/status_update_params.py +127 -0
  2023. unifieddatalibrary/types/substatus_count_response.py +7 -0
  2024. unifieddatalibrary/types/substatus_create_params.py +57 -0
  2025. unifieddatalibrary/types/substatus_get_response.py +83 -0
  2026. unifieddatalibrary/types/substatus_list_response.py +77 -0
  2027. unifieddatalibrary/types/substatus_tuple_params.py +17 -0
  2028. unifieddatalibrary/types/substatus_tuple_response.py +86 -0
  2029. unifieddatalibrary/types/substatus_update_params.py +57 -0
  2030. unifieddatalibrary/types/supporting_data/__init__.py +10 -0
  2031. unifieddatalibrary/types/supporting_data/data_type_list_response.py +8 -0
  2032. unifieddatalibrary/types/supporting_data/dataowner_abridged.py +60 -0
  2033. unifieddatalibrary/types/supporting_data/dataowner_count_response.py +7 -0
  2034. unifieddatalibrary/types/supporting_data/dataowner_retrieve_response.py +10 -0
  2035. unifieddatalibrary/types/supporting_data/dataowner_type_list_response.py +8 -0
  2036. unifieddatalibrary/types/supporting_data/provider_metadata_retrieve_response.py +10 -0
  2037. unifieddatalibrary/types/surface_count_response.py +7 -0
  2038. unifieddatalibrary/types/surface_create_params.py +471 -0
  2039. unifieddatalibrary/types/surface_get_response.py +601 -0
  2040. unifieddatalibrary/types/surface_list_response.py +491 -0
  2041. unifieddatalibrary/types/surface_tuple_params.py +17 -0
  2042. unifieddatalibrary/types/surface_tuple_response.py +606 -0
  2043. unifieddatalibrary/types/surface_update_params.py +471 -0
  2044. unifieddatalibrary/types/surfaceobstruction_count_response.py +7 -0
  2045. unifieddatalibrary/types/surfaceobstruction_create_params.py +75 -0
  2046. unifieddatalibrary/types/surfaceobstruction_get_response.py +107 -0
  2047. unifieddatalibrary/types/surfaceobstruction_list_response.py +101 -0
  2048. unifieddatalibrary/types/surfaceobstruction_tuple_params.py +17 -0
  2049. unifieddatalibrary/types/surfaceobstruction_tuple_response.py +110 -0
  2050. unifieddatalibrary/types/surfaceobstruction_unvalidated_publish_params.py +79 -0
  2051. unifieddatalibrary/types/surfaceobstruction_update_params.py +75 -0
  2052. unifieddatalibrary/types/swir/__init__.py +10 -0
  2053. unifieddatalibrary/types/swir/history_aodr_params.py +44 -0
  2054. unifieddatalibrary/types/swir/history_count_params.py +16 -0
  2055. unifieddatalibrary/types/swir/history_count_response.py +7 -0
  2056. unifieddatalibrary/types/swir/history_list_params.py +24 -0
  2057. unifieddatalibrary/types/swir/history_list_response.py +10 -0
  2058. unifieddatalibrary/types/swir/swir_full.py +126 -0
  2059. unifieddatalibrary/types/swir_count_params.py +16 -0
  2060. unifieddatalibrary/types/swir_count_response.py +7 -0
  2061. unifieddatalibrary/types/swir_create_bulk_params.py +108 -0
  2062. unifieddatalibrary/types/swir_create_params.py +104 -0
  2063. unifieddatalibrary/types/swir_list_params.py +16 -0
  2064. unifieddatalibrary/types/swir_list_response.py +101 -0
  2065. unifieddatalibrary/types/swir_tuple_params.py +24 -0
  2066. unifieddatalibrary/types/swir_tuple_response.py +10 -0
  2067. unifieddatalibrary/types/taiutc/__init__.py +10 -0
  2068. unifieddatalibrary/types/taiutc/history_aodr_params.py +47 -0
  2069. unifieddatalibrary/types/taiutc/history_count_params.py +19 -0
  2070. unifieddatalibrary/types/taiutc/history_count_response.py +7 -0
  2071. unifieddatalibrary/types/taiutc/history_list_params.py +27 -0
  2072. unifieddatalibrary/types/taiutc/history_list_response.py +10 -0
  2073. unifieddatalibrary/types/taiutc/taiutc_full.py +90 -0
  2074. unifieddatalibrary/types/taiutc_count_params.py +19 -0
  2075. unifieddatalibrary/types/taiutc_count_response.py +7 -0
  2076. unifieddatalibrary/types/taiutc_create_params.py +66 -0
  2077. unifieddatalibrary/types/taiutc_list_params.py +19 -0
  2078. unifieddatalibrary/types/taiutc_list_response.py +84 -0
  2079. unifieddatalibrary/types/taiutc_tuple_params.py +27 -0
  2080. unifieddatalibrary/types/taiutc_tuple_response.py +10 -0
  2081. unifieddatalibrary/types/taiutc_update_params.py +66 -0
  2082. unifieddatalibrary/types/tdoa_fdoa/__init__.py +12 -0
  2083. unifieddatalibrary/types/tdoa_fdoa/diffofarrival/__init__.py +7 -0
  2084. unifieddatalibrary/types/tdoa_fdoa/diffofarrival/history_aodr_params.py +47 -0
  2085. unifieddatalibrary/types/tdoa_fdoa/diffofarrival/history_list_params.py +27 -0
  2086. unifieddatalibrary/types/tdoa_fdoa/diffofarrival/history_list_response.py +10 -0
  2087. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_abridged.py +227 -0
  2088. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_count_params.py +19 -0
  2089. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_count_response.py +7 -0
  2090. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_create_bulk_params.py +222 -0
  2091. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_create_params.py +218 -0
  2092. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_full.py +247 -0
  2093. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_list_params.py +19 -0
  2094. unifieddatalibrary/types/tdoa_fdoa/diffofarrival_list_response.py +10 -0
  2095. unifieddatalibrary/types/topic_details.py +26 -0
  2096. unifieddatalibrary/types/track/__init__.py +10 -0
  2097. unifieddatalibrary/types/track/history_aodr_params.py +47 -0
  2098. unifieddatalibrary/types/track/history_count_params.py +19 -0
  2099. unifieddatalibrary/types/track/history_count_response.py +7 -0
  2100. unifieddatalibrary/types/track/history_list_params.py +27 -0
  2101. unifieddatalibrary/types/track/history_list_response.py +10 -0
  2102. unifieddatalibrary/types/track/track_full.py +495 -0
  2103. unifieddatalibrary/types/track_count_params.py +19 -0
  2104. unifieddatalibrary/types/track_count_response.py +7 -0
  2105. unifieddatalibrary/types/track_create_bulk_params.py +477 -0
  2106. unifieddatalibrary/types/track_list_params.py +19 -0
  2107. unifieddatalibrary/types/track_list_response.py +498 -0
  2108. unifieddatalibrary/types/track_tuple_params.py +27 -0
  2109. unifieddatalibrary/types/track_tuple_response.py +10 -0
  2110. unifieddatalibrary/types/track_unvalidated_publish_params.py +477 -0
  2111. unifieddatalibrary/types/trackdetail_count_params.py +19 -0
  2112. unifieddatalibrary/types/trackdetail_count_response.py +7 -0
  2113. unifieddatalibrary/types/trackdetail_create_bulk_params.py +1111 -0
  2114. unifieddatalibrary/types/trackdetail_list_params.py +19 -0
  2115. unifieddatalibrary/types/trackdetail_list_response.py +1121 -0
  2116. unifieddatalibrary/types/trackdetail_tuple_params.py +27 -0
  2117. unifieddatalibrary/types/trackdetail_tuple_response.py +10 -0
  2118. unifieddatalibrary/types/trackdetails/__init__.py +10 -0
  2119. unifieddatalibrary/types/trackdetails/history_aodr_params.py +47 -0
  2120. unifieddatalibrary/types/trackdetails/history_count_params.py +19 -0
  2121. unifieddatalibrary/types/trackdetails/history_count_response.py +7 -0
  2122. unifieddatalibrary/types/trackdetails/history_list_params.py +27 -0
  2123. unifieddatalibrary/types/trackdetails/history_list_response.py +10 -0
  2124. unifieddatalibrary/types/trackdetails/track_details_full.py +1118 -0
  2125. unifieddatalibrary/types/trackroute/__init__.py +10 -0
  2126. unifieddatalibrary/types/trackroute/history_aodr_params.py +47 -0
  2127. unifieddatalibrary/types/trackroute/history_count_params.py +19 -0
  2128. unifieddatalibrary/types/trackroute/history_count_response.py +7 -0
  2129. unifieddatalibrary/types/trackroute/history_list_params.py +27 -0
  2130. unifieddatalibrary/types/trackroute/history_list_response.py +10 -0
  2131. unifieddatalibrary/types/trackroute/track_route_full.py +303 -0
  2132. unifieddatalibrary/types/trackroute_count_params.py +19 -0
  2133. unifieddatalibrary/types/trackroute_count_response.py +7 -0
  2134. unifieddatalibrary/types/trackroute_create_bulk_params.py +276 -0
  2135. unifieddatalibrary/types/trackroute_create_params.py +272 -0
  2136. unifieddatalibrary/types/trackroute_list_params.py +19 -0
  2137. unifieddatalibrary/types/trackroute_list_response.py +314 -0
  2138. unifieddatalibrary/types/trackroute_tuple_params.py +27 -0
  2139. unifieddatalibrary/types/trackroute_tuple_response.py +10 -0
  2140. unifieddatalibrary/types/trackroute_unvalidated_publish_params.py +272 -0
  2141. unifieddatalibrary/types/trackroute_update_params.py +272 -0
  2142. unifieddatalibrary/types/transponder_count_response.py +7 -0
  2143. unifieddatalibrary/types/transponder_create_params.py +88 -0
  2144. unifieddatalibrary/types/transponder_get_response.py +118 -0
  2145. unifieddatalibrary/types/transponder_list_response.py +108 -0
  2146. unifieddatalibrary/types/transponder_tuple_params.py +17 -0
  2147. unifieddatalibrary/types/transponder_tuple_response.py +121 -0
  2148. unifieddatalibrary/types/transponder_update_params.py +88 -0
  2149. unifieddatalibrary/types/udl/__init__.py +3 -0
  2150. unifieddatalibrary/types/udl/geostatus/__init__.py +10 -0
  2151. unifieddatalibrary/types/udl/geostatus/geo_status_full.py +152 -0
  2152. unifieddatalibrary/types/udl/geostatus/history_aodr_params.py +47 -0
  2153. unifieddatalibrary/types/udl/geostatus/history_count_params.py +19 -0
  2154. unifieddatalibrary/types/udl/geostatus/history_count_response.py +7 -0
  2155. unifieddatalibrary/types/udl/geostatus/history_list_params.py +27 -0
  2156. unifieddatalibrary/types/udl/geostatus/history_list_response.py +10 -0
  2157. unifieddatalibrary/types/udl/gnssobservationset/__init__.py +8 -0
  2158. unifieddatalibrary/types/udl/gnssobservationset/gnss_observation_set_full.py +287 -0
  2159. unifieddatalibrary/types/udl/gnssobservationset/history_aodr_params.py +48 -0
  2160. unifieddatalibrary/types/udl/gnssobservationset/history_list_params.py +28 -0
  2161. unifieddatalibrary/types/udl/gnssobservationset/history_list_response.py +10 -0
  2162. unifieddatalibrary/types/udl/gnssrawif/__init__.py +5 -0
  2163. unifieddatalibrary/types/udl/gnssrawif/gnss_raw_if_full.py +278 -0
  2164. unifieddatalibrary/types/udl/groundimagery/__init__.py +5 -0
  2165. unifieddatalibrary/types/udl/groundimagery/ground_imagery_full.py +177 -0
  2166. unifieddatalibrary/types/udl/hazard/__init__.py +5 -0
  2167. unifieddatalibrary/types/udl/hazard/hazard_full.py +266 -0
  2168. unifieddatalibrary/types/udl/ionoobservation/__init__.py +5 -0
  2169. unifieddatalibrary/types/udl/ionoobservation/iono_observation_full.py +1000 -0
  2170. unifieddatalibrary/types/udl/isrcollection/__init__.py +5 -0
  2171. unifieddatalibrary/types/udl/isrcollection/isr_collection_full.py +606 -0
  2172. unifieddatalibrary/types/udl/itemtracking/__init__.py +5 -0
  2173. unifieddatalibrary/types/udl/itemtracking/item_tracking_full.py +130 -0
  2174. unifieddatalibrary/types/udl/linkstatus/__init__.py +5 -0
  2175. unifieddatalibrary/types/udl/linkstatus/link_status_full.py +166 -0
  2176. unifieddatalibrary/types/udl/maneuver/__init__.py +5 -0
  2177. unifieddatalibrary/types/udl/maneuver/maneuver_full.py +2445 -0
  2178. unifieddatalibrary/types/udl/missiletrack/__init__.py +5 -0
  2179. unifieddatalibrary/types/udl/missiletrack/missile_track_full.py +595 -0
  2180. unifieddatalibrary/types/udl/missionassignment/__init__.py +5 -0
  2181. unifieddatalibrary/types/udl/missionassignment/mission_assignment_full.py +251 -0
  2182. unifieddatalibrary/types/udl/monoradar/__init__.py +5 -0
  2183. unifieddatalibrary/types/udl/monoradar/mono_radar_full.py +293 -0
  2184. unifieddatalibrary/types/udl/mti/__init__.py +10 -0
  2185. unifieddatalibrary/types/udl/mti/history_aodr_params.py +44 -0
  2186. unifieddatalibrary/types/udl/mti/history_count_params.py +16 -0
  2187. unifieddatalibrary/types/udl/mti/history_count_response.py +7 -0
  2188. unifieddatalibrary/types/udl/mti/history_list_params.py +24 -0
  2189. unifieddatalibrary/types/udl/mti/history_list_response.py +10 -0
  2190. unifieddatalibrary/types/udl/mti/mti_full.py +921 -0
  2191. unifieddatalibrary/types/udl/notification/__init__.py +10 -0
  2192. unifieddatalibrary/types/udl/notification/history_aodr_params.py +44 -0
  2193. unifieddatalibrary/types/udl/notification/history_count_params.py +16 -0
  2194. unifieddatalibrary/types/udl/notification/history_count_response.py +7 -0
  2195. unifieddatalibrary/types/udl/notification/history_list_params.py +24 -0
  2196. unifieddatalibrary/types/udl/notification/history_list_response.py +10 -0
  2197. unifieddatalibrary/types/udl/notification/notification_full.py +84 -0
  2198. unifieddatalibrary/types/udl/onboardnavigation/__init__.py +10 -0
  2199. unifieddatalibrary/types/udl/onboardnavigation/history_aodr_params.py +47 -0
  2200. unifieddatalibrary/types/udl/onboardnavigation/history_count_params.py +19 -0
  2201. unifieddatalibrary/types/udl/onboardnavigation/history_count_response.py +7 -0
  2202. unifieddatalibrary/types/udl/onboardnavigation/history_list_params.py +27 -0
  2203. unifieddatalibrary/types/udl/onboardnavigation/history_list_response.py +10 -0
  2204. unifieddatalibrary/types/udl/onboardnavigation/onboardnavigation_full.py +143 -0
  2205. unifieddatalibrary/types/udl/onorbitthrusterstatus/__init__.py +7 -0
  2206. unifieddatalibrary/types/udl/onorbitthrusterstatus/history_list_params.py +37 -0
  2207. unifieddatalibrary/types/udl/onorbitthrusterstatus/history_list_response.py +10 -0
  2208. unifieddatalibrary/types/udl/onorbitthrusterstatus/onorbitthrusterstatus_full.py +122 -0
  2209. unifieddatalibrary/types/udl/orbitdetermination/__init__.py +5 -0
  2210. unifieddatalibrary/types/udl/orbitdetermination/orbitdetermination_full.py +1236 -0
  2211. unifieddatalibrary/types/udl/orbittrack/__init__.py +5 -0
  2212. unifieddatalibrary/types/udl/orbittrack/orbittrack_full.py +353 -0
  2213. unifieddatalibrary/types/udl/passiveradarobservation/__init__.py +5 -0
  2214. unifieddatalibrary/types/udl/passiveradarobservation/passiveradarobservation_full.py +339 -0
  2215. unifieddatalibrary/types/udl/poi/__init__.py +5 -0
  2216. unifieddatalibrary/types/udl/poi/poi_full.py +281 -0
  2217. unifieddatalibrary/types/udl/radarobservation/__init__.py +5 -0
  2218. unifieddatalibrary/types/udl/radarobservation/radarobservation_full.py +361 -0
  2219. unifieddatalibrary/types/udl/rfobservation/__init__.py +5 -0
  2220. unifieddatalibrary/types/udl/rfobservation/rfobservationdetails_full.py +455 -0
  2221. unifieddatalibrary/types/udl/sarobservation/__init__.py +5 -0
  2222. unifieddatalibrary/types/udl/sarobservation/sarobservation_full.py +377 -0
  2223. unifieddatalibrary/types/udl/sensormaintenance/__init__.py +5 -0
  2224. unifieddatalibrary/types/udl/sensormaintenance/sensormaintenance_full.py +153 -0
  2225. unifieddatalibrary/types/udl/sensorplan/__init__.py +5 -0
  2226. unifieddatalibrary/types/udl/sensorplan/sensorplan_full.py +1613 -0
  2227. unifieddatalibrary/types/udl/sgi/__init__.py +5 -0
  2228. unifieddatalibrary/types/udl/sgi/sgi_full.py +385 -0
  2229. unifieddatalibrary/types/udl/sigact/__init__.py +5 -0
  2230. unifieddatalibrary/types/udl/sigact/sigact_full.py +444 -0
  2231. unifieddatalibrary/types/udl/sitestatus/__init__.py +5 -0
  2232. unifieddatalibrary/types/udl/sitestatus/sitestatus_full.py +275 -0
  2233. unifieddatalibrary/types/udl/skyimagery/__init__.py +5 -0
  2234. unifieddatalibrary/types/udl/skyimagery/skyimagery_full.py +260 -0
  2235. unifieddatalibrary/types/vessel_count_response.py +7 -0
  2236. unifieddatalibrary/types/vessel_create_bulk_params.py +175 -0
  2237. unifieddatalibrary/types/vessel_create_params.py +171 -0
  2238. unifieddatalibrary/types/vessel_get_response.py +202 -0
  2239. unifieddatalibrary/types/vessel_list_response.py +181 -0
  2240. unifieddatalibrary/types/vessel_tuple_params.py +17 -0
  2241. unifieddatalibrary/types/vessel_tuple_response.py +205 -0
  2242. unifieddatalibrary/types/vessel_update_params.py +171 -0
  2243. unifieddatalibrary/types/video/__init__.py +8 -0
  2244. unifieddatalibrary/types/video/history_count_response.py +7 -0
  2245. unifieddatalibrary/types/video/history_list_params.py +17 -0
  2246. unifieddatalibrary/types/video/history_list_response.py +10 -0
  2247. unifieddatalibrary/types/video/video_streams_full.py +83 -0
  2248. unifieddatalibrary/types/video_count_response.py +7 -0
  2249. unifieddatalibrary/types/video_create_params.py +53 -0
  2250. unifieddatalibrary/types/video_get_player_streaming_info_params.py +17 -0
  2251. unifieddatalibrary/types/video_get_player_streaming_info_response.py +74 -0
  2252. unifieddatalibrary/types/video_get_publisher_streaming_info_params.py +17 -0
  2253. unifieddatalibrary/types/video_get_publisher_streaming_info_response.py +74 -0
  2254. unifieddatalibrary/types/video_get_stream_file_params.py +17 -0
  2255. unifieddatalibrary/types/video_get_stream_file_response.py +74 -0
  2256. unifieddatalibrary/types/video_list_response.py +77 -0
  2257. unifieddatalibrary/types/video_tuple_params.py +17 -0
  2258. unifieddatalibrary/types/video_tuple_response.py +10 -0
  2259. unifieddatalibrary/types/weatherdata/__init__.py +10 -0
  2260. unifieddatalibrary/types/weatherdata/history_aodr_params.py +47 -0
  2261. unifieddatalibrary/types/weatherdata/history_count_params.py +19 -0
  2262. unifieddatalibrary/types/weatherdata/history_count_response.py +7 -0
  2263. unifieddatalibrary/types/weatherdata/history_list_params.py +27 -0
  2264. unifieddatalibrary/types/weatherdata/history_list_response.py +10 -0
  2265. unifieddatalibrary/types/weatherdata/weather_data_full.py +236 -0
  2266. unifieddatalibrary/types/weatherdata_count_params.py +19 -0
  2267. unifieddatalibrary/types/weatherdata_count_response.py +7 -0
  2268. unifieddatalibrary/types/weatherdata_create_bulk_params.py +228 -0
  2269. unifieddatalibrary/types/weatherdata_create_params.py +224 -0
  2270. unifieddatalibrary/types/weatherdata_list_params.py +19 -0
  2271. unifieddatalibrary/types/weatherdata_list_response.py +239 -0
  2272. unifieddatalibrary/types/weatherdata_tuple_params.py +27 -0
  2273. unifieddatalibrary/types/weatherdata_tuple_response.py +10 -0
  2274. unifieddatalibrary/types/weatherdata_unvalidated_publish_params.py +228 -0
  2275. unifieddatalibrary/types/weatherreport/__init__.py +10 -0
  2276. unifieddatalibrary/types/weatherreport/history_aodr_params.py +47 -0
  2277. unifieddatalibrary/types/weatherreport/history_count_params.py +19 -0
  2278. unifieddatalibrary/types/weatherreport/history_count_response.py +7 -0
  2279. unifieddatalibrary/types/weatherreport/history_list_params.py +27 -0
  2280. unifieddatalibrary/types/weatherreport/history_list_response.py +10 -0
  2281. unifieddatalibrary/types/weatherreport/weather_report_full.py +505 -0
  2282. unifieddatalibrary/types/weatherreport_count_params.py +19 -0
  2283. unifieddatalibrary/types/weatherreport_count_response.py +7 -0
  2284. unifieddatalibrary/types/weatherreport_create_params.py +493 -0
  2285. unifieddatalibrary/types/weatherreport_list_params.py +19 -0
  2286. unifieddatalibrary/types/weatherreport_list_response.py +502 -0
  2287. unifieddatalibrary/types/weatherreport_tuple_params.py +27 -0
  2288. unifieddatalibrary/types/weatherreport_tuple_response.py +10 -0
  2289. unifieddatalibrary/types/weatherreport_unvalidated_publish_params.py +497 -0
@@ -0,0 +1,2372 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal
6
+
7
+ import httpx
8
+
9
+ from ..types import surface_tuple_params, surface_create_params, surface_update_params
10
+ from .._types import NOT_GIVEN, Body, Query, Headers, NoneType, NotGiven
11
+ from .._utils import (
12
+ maybe_transform,
13
+ async_maybe_transform,
14
+ )
15
+ from .._compat import cached_property
16
+ from .._resource import SyncAPIResource, AsyncAPIResource
17
+ from .._response import (
18
+ to_raw_response_wrapper,
19
+ to_streamed_response_wrapper,
20
+ async_to_raw_response_wrapper,
21
+ async_to_streamed_response_wrapper,
22
+ )
23
+ from .._base_client import make_request_options
24
+ from ..types.surface_get_response import SurfaceGetResponse
25
+ from ..types.surface_list_response import SurfaceListResponse
26
+ from ..types.surface_tuple_response import SurfaceTupleResponse
27
+
28
+ __all__ = ["SurfaceResource", "AsyncSurfaceResource"]
29
+
30
+
31
+ class SurfaceResource(SyncAPIResource):
32
+ @cached_property
33
+ def with_raw_response(self) -> SurfaceResourceWithRawResponse:
34
+ """
35
+ This property can be used as a prefix for any HTTP method call to return
36
+ the raw response object instead of the parsed content.
37
+
38
+ For more information, see https://www.github.com/rsivilli-bluestaq/udl-python-sdk#accessing-raw-response-data-eg-headers
39
+ """
40
+ return SurfaceResourceWithRawResponse(self)
41
+
42
+ @cached_property
43
+ def with_streaming_response(self) -> SurfaceResourceWithStreamingResponse:
44
+ """
45
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
46
+
47
+ For more information, see https://www.github.com/rsivilli-bluestaq/udl-python-sdk#with_streaming_response
48
+ """
49
+ return SurfaceResourceWithStreamingResponse(self)
50
+
51
+ def create(
52
+ self,
53
+ *,
54
+ classification_marking: str,
55
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
56
+ name: str,
57
+ source: str,
58
+ type: str,
59
+ id: str | NotGiven = NOT_GIVEN,
60
+ alt_site_id: str | NotGiven = NOT_GIVEN,
61
+ condition: str | NotGiven = NOT_GIVEN,
62
+ ddt_wt_kip: float | NotGiven = NOT_GIVEN,
63
+ ddt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
64
+ ddt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
65
+ ddt_wt_kn: float | NotGiven = NOT_GIVEN,
66
+ dd_wt_kip: float | NotGiven = NOT_GIVEN,
67
+ dd_wt_kip_mod: float | NotGiven = NOT_GIVEN,
68
+ dd_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
69
+ dd_wt_kn: float | NotGiven = NOT_GIVEN,
70
+ end_lat: float | NotGiven = NOT_GIVEN,
71
+ end_lon: float | NotGiven = NOT_GIVEN,
72
+ id_site: str | NotGiven = NOT_GIVEN,
73
+ lcn: int | NotGiven = NOT_GIVEN,
74
+ lda_ft: float | NotGiven = NOT_GIVEN,
75
+ lda_m: float | NotGiven = NOT_GIVEN,
76
+ length_ft: float | NotGiven = NOT_GIVEN,
77
+ length_m: float | NotGiven = NOT_GIVEN,
78
+ lighting: bool | NotGiven = NOT_GIVEN,
79
+ lights_aprch: bool | NotGiven = NOT_GIVEN,
80
+ lights_cl: bool | NotGiven = NOT_GIVEN,
81
+ lights_ols: bool | NotGiven = NOT_GIVEN,
82
+ lights_papi: bool | NotGiven = NOT_GIVEN,
83
+ lights_reil: bool | NotGiven = NOT_GIVEN,
84
+ lights_rwy: bool | NotGiven = NOT_GIVEN,
85
+ lights_seqfl: bool | NotGiven = NOT_GIVEN,
86
+ lights_tdzl: bool | NotGiven = NOT_GIVEN,
87
+ lights_unkn: bool | NotGiven = NOT_GIVEN,
88
+ lights_vasi: bool | NotGiven = NOT_GIVEN,
89
+ material: str | NotGiven = NOT_GIVEN,
90
+ obstacle: bool | NotGiven = NOT_GIVEN,
91
+ origin: str | NotGiven = NOT_GIVEN,
92
+ pcn: str | NotGiven = NOT_GIVEN,
93
+ point_reference: str | NotGiven = NOT_GIVEN,
94
+ primary: bool | NotGiven = NOT_GIVEN,
95
+ raw_wbc: str | NotGiven = NOT_GIVEN,
96
+ sbtt_wt_kip: float | NotGiven = NOT_GIVEN,
97
+ sbtt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
98
+ sbtt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
99
+ sbtt_wt_kn: float | NotGiven = NOT_GIVEN,
100
+ start_lat: float | NotGiven = NOT_GIVEN,
101
+ start_lon: float | NotGiven = NOT_GIVEN,
102
+ st_wt_kip: float | NotGiven = NOT_GIVEN,
103
+ st_wt_kip_mod: float | NotGiven = NOT_GIVEN,
104
+ st_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
105
+ st_wt_kn: float | NotGiven = NOT_GIVEN,
106
+ s_wt_kip: float | NotGiven = NOT_GIVEN,
107
+ s_wt_kip_mod: float | NotGiven = NOT_GIVEN,
108
+ s_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
109
+ s_wt_kn: float | NotGiven = NOT_GIVEN,
110
+ tdt_wtkip: float | NotGiven = NOT_GIVEN,
111
+ tdt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
112
+ tdt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
113
+ tdt_wt_kn: float | NotGiven = NOT_GIVEN,
114
+ trt_wt_kip: float | NotGiven = NOT_GIVEN,
115
+ trt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
116
+ trt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
117
+ trt_wt_kn: float | NotGiven = NOT_GIVEN,
118
+ tt_wt_kip: float | NotGiven = NOT_GIVEN,
119
+ tt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
120
+ tt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
121
+ tt_wt_kn: float | NotGiven = NOT_GIVEN,
122
+ t_wt_kip: float | NotGiven = NOT_GIVEN,
123
+ t_wt_kip_mod: float | NotGiven = NOT_GIVEN,
124
+ t_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
125
+ t_wt_kn: float | NotGiven = NOT_GIVEN,
126
+ width_ft: float | NotGiven = NOT_GIVEN,
127
+ width_m: float | NotGiven = NOT_GIVEN,
128
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
129
+ # The extra values given here take precedence over values defined on the client or passed to this method.
130
+ extra_headers: Headers | None = None,
131
+ extra_query: Query | None = None,
132
+ extra_body: Body | None = None,
133
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
134
+ ) -> None:
135
+ """
136
+ Service operation to take a single Surface as a POST body and ingest into the
137
+ database. A specific role is required to perform this service operation. Please
138
+ contact the UDL team for assistance.
139
+
140
+ Args:
141
+ classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
142
+
143
+ data_mode: Indicator of whether the data is REAL, TEST, SIMULATED, or EXERCISE data.
144
+
145
+ name: The surface name or identifier.
146
+
147
+ source: Source of the data.
148
+
149
+ type: The surface type of this record (e.g. RUNWAY, TAXIWAY, PARKING).
150
+
151
+ id: Unique identifier of the record, auto-generated by the system.
152
+
153
+ alt_site_id: Alternate site identifier provided by the source.
154
+
155
+ condition: The surface condition (e.g. GOOD, FAIR, POOR, SERIOUS, FAILED, CLOSED, UNKNOWN).
156
+
157
+ ddt_wt_kip: The max weight allowable on this surface type for a DDT-type (double dual
158
+ tandem) landing gear configuration, in kilopounds (kip).Note: The corresponding
159
+ equivalent field is not converted by the UDL and may or may not be supplied by
160
+ the provider. The provider/consumer is responsible for all unit conversions.
161
+
162
+ ddt_wt_kip_mod: The modified max weight allowable on this surface type for a DDT-type (double
163
+ dual tandem) landing gear configuration, in kilopounds (kip).
164
+
165
+ ddt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
166
+ indicating the max weight allowable on this surface for a DDT-type (double dual
167
+ tandem) landing gear configuration. For more information, contact the provider
168
+ source.
169
+
170
+ ddt_wt_kn: The max weight allowable on this surface type for a DDT-type (double dual
171
+ tandem) landing gear configuration, in kilonewtons (kN).Note: The corresponding
172
+ equivalent field is not converted by the UDL and may or may not be supplied by
173
+ the provider. The provider/consumer is responsible for all unit conversions.
174
+
175
+ dd_wt_kip: The max weight allowable on this surface type for an FAA 2D-type (twin tandem)
176
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
177
+ equivalent field is not converted by the UDL and may or may not be supplied by
178
+ the provider. The provider/consumer is responsible for all unit conversions.
179
+
180
+ dd_wt_kip_mod: The modified max weight allowable on this surface type for an FAA 2D-type (twin
181
+ tandem) landing gear configuration, in kilopounds (kip).
182
+
183
+ dd_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
184
+ indicating the max weight allowable on this surface for an FAA 2D-type (twin
185
+ tandem) landing gear configuration. For more information, contact the provider
186
+ source.
187
+
188
+ dd_wt_kn: The max weight allowable on this surface type for an FAA 2D-type (twin tandem)
189
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
190
+ equivalent field is not converted by the UDL and may or may not be supplied by
191
+ the provider. The provider/consumer is responsible for all unit conversions.
192
+
193
+ end_lat: WGS-84 latitude of the coordinate representing the end-point of a surface, in
194
+ degrees. -90 to 90 degrees (negative values south of equator).
195
+
196
+ end_lon: WGS-84 longitude of the coordinate representing the end-point of a surface, in
197
+ degrees. -180 to 180 degrees (negative values west of Prime Meridian).
198
+
199
+ id_site: The unique identifier of the Site record that contains location information
200
+ about this surface.
201
+
202
+ lcn: Load classification number or pavement rating which ranks aircraft on a scale of
203
+ 1 to 120.
204
+
205
+ lda_ft: The landing distance available for the runway, in feet. Applicable for runway
206
+ surface types only.
207
+
208
+ lda_m: The landing distance available for the runway, in meters. Applicable for runway
209
+ surface types only.
210
+
211
+ length_ft: The length of the surface type, in feet. Applicable for runway and parking
212
+ surface types.
213
+
214
+ length_m: The length of the surface type, in meters. Applicable for runway and parking
215
+ surface types.
216
+
217
+ lighting: Flag indicating the surface has lighting.
218
+
219
+ lights_aprch: Flag indicating the runway has approach lights. Applicable for runway surface
220
+ types only.
221
+
222
+ lights_cl: Flag indicating the runway has centerline lights. Applicable for runway surface
223
+ types only.
224
+
225
+ lights_ols: Flag indicating the runway has Optical Landing System (OLS) lights. Applicable
226
+ for runway surface types only.
227
+
228
+ lights_papi: Flag indicating the runway has Precision Approach Path Indicator (PAPI) lights.
229
+ Applicable for runway surface types only.
230
+
231
+ lights_reil: Flag indicating the runway has Runway End Identifier Lights (REIL). Applicable
232
+ for runway surface types only.
233
+
234
+ lights_rwy: Flag indicating the runway has edge lighting. Applicable for runway surface
235
+ types only.
236
+
237
+ lights_seqfl: Flag indicating the runway has Sequential Flashing (SEQFL) lights. Applicable
238
+ for runway surface types only.
239
+
240
+ lights_tdzl: Flag indicating the runway has Touchdown Zone lights. Applicable for runway
241
+ surface types only.
242
+
243
+ lights_unkn: Flag indicating the runway lighting is unknown. Applicable for runway surface
244
+ types only.
245
+
246
+ lights_vasi: Flag indicating the runway has Visual Approach Slope Indicator (VASI) lights.
247
+ Applicable for runway surface types only.
248
+
249
+ material: The surface material (e.g. Asphalt, Concrete, Dirt).
250
+
251
+ obstacle: Flag indicating that one or more obstacles or obstructions exist in the
252
+ proximity of this surface.
253
+
254
+ origin: Originating system or organization which produced the data, if different from
255
+ the source. The origin may be different than the source if the source was a
256
+ mediating system which forwarded the data on behalf of the origin system. If
257
+ null, the source may be assumed to be the origin.
258
+
259
+ pcn: Pavement classification number (PCN) and tire pressure code.
260
+
261
+ point_reference: Description of the surface and its dimensions or how it is measured or oriented.
262
+
263
+ primary: Flag indicating this is the primary runway. Applicable for runway surface types
264
+ only.
265
+
266
+ raw_wbc: Raw weight bearing capacity value or pavement strength.
267
+
268
+ sbtt_wt_kip: The max weight allowable on this surface type for an SBTT-type (single belly
269
+ twin tandem) landing gear configuration, in kilopounds (kip).Note: The
270
+ corresponding equivalent field is not converted by the UDL and may or may not be
271
+ supplied by the provider. The provider/consumer is responsible for all unit
272
+ conversions.
273
+
274
+ sbtt_wt_kip_mod: The modified max weight allowable on this surface type for an SBTT-type (single
275
+ belly twin tandem) landing gear configuration, in kilopounds (kip).
276
+
277
+ sbtt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
278
+ indicating the max weight allowable on this surface for an SBTT-type (single
279
+ belly twin tandem) landing gear configuration. For more information, contact the
280
+ provider source.
281
+
282
+ sbtt_wt_kn: The max weight allowable on this surface type for an SBTT-type (single belly
283
+ twin tandem) landing gear configuration, in kilonewtons (kN).Note: The
284
+ corresponding equivalent field is not converted by the UDL and may or may not be
285
+ supplied by the provider. The provider/consumer is responsible for all unit
286
+ conversions.
287
+
288
+ start_lat: WGS-84 latitude of the coordinate representing the start-point of a surface, in
289
+ degrees. -90 to 90 degrees (negative values south of equator).
290
+
291
+ start_lon: WGS-84 longitude of the coordinate representing the start-point of a surface, in
292
+ degrees. -180 to 180 degrees (negative values west of Prime Meridian).
293
+
294
+ st_wt_kip: The max weight allowable on this surface type for an ST-type (single tandem)
295
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
296
+ equivalent field is not converted by the UDL and may or may not be supplied by
297
+ the provider. The provider/consumer is responsible for all unit conversions.
298
+
299
+ st_wt_kip_mod: The modified max weight allowable on this surface type for an ST-type (single
300
+ tandem) landing gear configuration, in kilopounds (kip).
301
+
302
+ st_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
303
+ indicating the max weight allowable on this surface for an ST-type (single
304
+ tandem) landing gear configuration. For more information, contact the provider
305
+ source.
306
+
307
+ st_wt_kn: The max weight allowable on this surface type for an ST-type (single tandem)
308
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
309
+ equivalent field is not converted by the UDL and may or may not be supplied by
310
+ the provider. The provider/consumer is responsible for all unit conversions.
311
+
312
+ s_wt_kip: The max weight allowable on this surface type for an S-type (single) landing
313
+ gear configuration, in kilopounds (kip). Note: The corresponding equivalent
314
+ field is not converted by the UDL and may or may not be supplied by the
315
+ provider. The provider/consumer is responsible for all unit conversions.
316
+
317
+ s_wt_kip_mod: The modified max weight allowable on this surface type for an S-type (single)
318
+ landing gear configuration, in kilopounds (kip).
319
+
320
+ s_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
321
+ indicating the max weight allowable on this surface for an S-type (single)
322
+ landing gear configuration. For more information, contact the provider source.
323
+
324
+ s_wt_kn: The max weight allowable on this surface type for an S-type (single) landing
325
+ gear configuration, in kilonewtons (kN).Note: The corresponding equivalent field
326
+ is not converted by the UDL and may or may not be supplied by the provider. The
327
+ provider/consumer is responsible for all unit conversions.
328
+
329
+ tdt_wtkip: The max weight allowable on this surface type for a TDT-type (twin delta tandem)
330
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
331
+ equivalent field is not converted by the UDL and may or may not be supplied by
332
+ the provider. The provider/consumer is responsible for all unit conversions.
333
+
334
+ tdt_wt_kip_mod: The modified max weight allowable on this surface type for a TDT-type (twin
335
+ delta tandem) landing gear configuration, in kilopounds (kip).
336
+
337
+ tdt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
338
+ indicating the max weight allowable on this surface for a TDT-type (twin delta
339
+ tandem) landing gear configuration. For more information, contact the provider
340
+ source.
341
+
342
+ tdt_wt_kn: The max weight allowable on this surface type for a TDT-type (twin delta tandem)
343
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
344
+ equivalent field is not converted by the UDL and may or may not be supplied by
345
+ the provider. The provider/consumer is responsible for all unit conversions.
346
+
347
+ trt_wt_kip: The max weight allowable on this surface type for a TRT-type (triple tandem)
348
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
349
+ equivalent field is not converted by the UDL and may or may not be supplied by
350
+ the provider. The provider/consumer is responsible for all unit conversions.
351
+
352
+ trt_wt_kip_mod: The modified max weight allowable on this surface type for a TRT-type (triple
353
+ tandem) landing gear configuration, in kilopounds (kip).
354
+
355
+ trt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
356
+ indicating the max weight allowable on this surface for a TRT-type (triple
357
+ tandem) landing gear configuration. For more information, contact the provider
358
+ source.
359
+
360
+ trt_wt_kn: The max weight allowable on this surface type for a TRT-type (triple tandem)
361
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
362
+ equivalent field is not converted by the UDL and may or may not be supplied by
363
+ the provider. The provider/consumer is responsible for all unit conversions.
364
+
365
+ tt_wt_kip: The max weight allowable on this surface type for a GDSS TT-type (twin tandem)
366
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
367
+ equivalent field is not converted by the UDL and may or may not be supplied by
368
+ the provider. The provider/consumer is responsible for all unit conversions.
369
+
370
+ tt_wt_kip_mod: The modified max weight allowable on this surface type for a GDSS TT-type (twin
371
+ tandem) landing gear configuration, in kilopounds (kip).
372
+
373
+ tt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
374
+ indicating the max weight allowable on this surface for a GDSS TT-type (twin
375
+ tandem) landing gear configuration. For more information, contact the provider
376
+ source.
377
+
378
+ tt_wt_kn: The max weight allowable on this surface type for a GDSS TT-type (twin tandem)
379
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
380
+ equivalent field is not converted by the UDL and may or may not be supplied by
381
+ the provider. The provider/consumer is responsible for all unit conversions.
382
+
383
+ t_wt_kip: The max weight allowable on this surface type for a T-type (twin (dual)) landing
384
+ gear configuration, in kilopounds (kip).Note: The corresponding equivalent field
385
+ is not converted by the UDL and may or may not be supplied by the provider. The
386
+ provider/consumer is responsible for all unit conversions.
387
+
388
+ t_wt_kip_mod: The modified max weight allowable on this surface type for a T-type (twin
389
+ (dual)) landing gear configuration, in kilopounds (kip).
390
+
391
+ t_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
392
+ indicating the max weight allowable on this surface for a T-type (twin(dual))
393
+ landing gear configuration. For more information, contact the provider source.
394
+
395
+ t_wt_kn: The max weight allowable on this surface type for a T-type (twin (dual)) landing
396
+ gear configuration, in kilonewtons (kN).Note: The corresponding equivalent field
397
+ is not converted by the UDL and may or may not be supplied by the provider. The
398
+ provider/consumer is responsible for all unit conversions.
399
+
400
+ width_ft: The width of the surface type, in feet.
401
+
402
+ width_m: The width of the surface type, in meters.
403
+
404
+ extra_headers: Send extra headers
405
+
406
+ extra_query: Add additional query parameters to the request
407
+
408
+ extra_body: Add additional JSON properties to the request
409
+
410
+ timeout: Override the client-level default timeout for this request, in seconds
411
+ """
412
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
413
+ return self._post(
414
+ "/udl/surface",
415
+ body=maybe_transform(
416
+ {
417
+ "classification_marking": classification_marking,
418
+ "data_mode": data_mode,
419
+ "name": name,
420
+ "source": source,
421
+ "type": type,
422
+ "id": id,
423
+ "alt_site_id": alt_site_id,
424
+ "condition": condition,
425
+ "ddt_wt_kip": ddt_wt_kip,
426
+ "ddt_wt_kip_mod": ddt_wt_kip_mod,
427
+ "ddt_wt_kip_mod_note": ddt_wt_kip_mod_note,
428
+ "ddt_wt_kn": ddt_wt_kn,
429
+ "dd_wt_kip": dd_wt_kip,
430
+ "dd_wt_kip_mod": dd_wt_kip_mod,
431
+ "dd_wt_kip_mod_note": dd_wt_kip_mod_note,
432
+ "dd_wt_kn": dd_wt_kn,
433
+ "end_lat": end_lat,
434
+ "end_lon": end_lon,
435
+ "id_site": id_site,
436
+ "lcn": lcn,
437
+ "lda_ft": lda_ft,
438
+ "lda_m": lda_m,
439
+ "length_ft": length_ft,
440
+ "length_m": length_m,
441
+ "lighting": lighting,
442
+ "lights_aprch": lights_aprch,
443
+ "lights_cl": lights_cl,
444
+ "lights_ols": lights_ols,
445
+ "lights_papi": lights_papi,
446
+ "lights_reil": lights_reil,
447
+ "lights_rwy": lights_rwy,
448
+ "lights_seqfl": lights_seqfl,
449
+ "lights_tdzl": lights_tdzl,
450
+ "lights_unkn": lights_unkn,
451
+ "lights_vasi": lights_vasi,
452
+ "material": material,
453
+ "obstacle": obstacle,
454
+ "origin": origin,
455
+ "pcn": pcn,
456
+ "point_reference": point_reference,
457
+ "primary": primary,
458
+ "raw_wbc": raw_wbc,
459
+ "sbtt_wt_kip": sbtt_wt_kip,
460
+ "sbtt_wt_kip_mod": sbtt_wt_kip_mod,
461
+ "sbtt_wt_kip_mod_note": sbtt_wt_kip_mod_note,
462
+ "sbtt_wt_kn": sbtt_wt_kn,
463
+ "start_lat": start_lat,
464
+ "start_lon": start_lon,
465
+ "st_wt_kip": st_wt_kip,
466
+ "st_wt_kip_mod": st_wt_kip_mod,
467
+ "st_wt_kip_mod_note": st_wt_kip_mod_note,
468
+ "st_wt_kn": st_wt_kn,
469
+ "s_wt_kip": s_wt_kip,
470
+ "s_wt_kip_mod": s_wt_kip_mod,
471
+ "s_wt_kip_mod_note": s_wt_kip_mod_note,
472
+ "s_wt_kn": s_wt_kn,
473
+ "tdt_wtkip": tdt_wtkip,
474
+ "tdt_wt_kip_mod": tdt_wt_kip_mod,
475
+ "tdt_wt_kip_mod_note": tdt_wt_kip_mod_note,
476
+ "tdt_wt_kn": tdt_wt_kn,
477
+ "trt_wt_kip": trt_wt_kip,
478
+ "trt_wt_kip_mod": trt_wt_kip_mod,
479
+ "trt_wt_kip_mod_note": trt_wt_kip_mod_note,
480
+ "trt_wt_kn": trt_wt_kn,
481
+ "tt_wt_kip": tt_wt_kip,
482
+ "tt_wt_kip_mod": tt_wt_kip_mod,
483
+ "tt_wt_kip_mod_note": tt_wt_kip_mod_note,
484
+ "tt_wt_kn": tt_wt_kn,
485
+ "t_wt_kip": t_wt_kip,
486
+ "t_wt_kip_mod": t_wt_kip_mod,
487
+ "t_wt_kip_mod_note": t_wt_kip_mod_note,
488
+ "t_wt_kn": t_wt_kn,
489
+ "width_ft": width_ft,
490
+ "width_m": width_m,
491
+ },
492
+ surface_create_params.SurfaceCreateParams,
493
+ ),
494
+ options=make_request_options(
495
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
496
+ ),
497
+ cast_to=NoneType,
498
+ )
499
+
500
+ def update(
501
+ self,
502
+ path_id: str,
503
+ *,
504
+ classification_marking: str,
505
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
506
+ name: str,
507
+ source: str,
508
+ type: str,
509
+ body_id: str | NotGiven = NOT_GIVEN,
510
+ alt_site_id: str | NotGiven = NOT_GIVEN,
511
+ condition: str | NotGiven = NOT_GIVEN,
512
+ ddt_wt_kip: float | NotGiven = NOT_GIVEN,
513
+ ddt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
514
+ ddt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
515
+ ddt_wt_kn: float | NotGiven = NOT_GIVEN,
516
+ dd_wt_kip: float | NotGiven = NOT_GIVEN,
517
+ dd_wt_kip_mod: float | NotGiven = NOT_GIVEN,
518
+ dd_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
519
+ dd_wt_kn: float | NotGiven = NOT_GIVEN,
520
+ end_lat: float | NotGiven = NOT_GIVEN,
521
+ end_lon: float | NotGiven = NOT_GIVEN,
522
+ id_site: str | NotGiven = NOT_GIVEN,
523
+ lcn: int | NotGiven = NOT_GIVEN,
524
+ lda_ft: float | NotGiven = NOT_GIVEN,
525
+ lda_m: float | NotGiven = NOT_GIVEN,
526
+ length_ft: float | NotGiven = NOT_GIVEN,
527
+ length_m: float | NotGiven = NOT_GIVEN,
528
+ lighting: bool | NotGiven = NOT_GIVEN,
529
+ lights_aprch: bool | NotGiven = NOT_GIVEN,
530
+ lights_cl: bool | NotGiven = NOT_GIVEN,
531
+ lights_ols: bool | NotGiven = NOT_GIVEN,
532
+ lights_papi: bool | NotGiven = NOT_GIVEN,
533
+ lights_reil: bool | NotGiven = NOT_GIVEN,
534
+ lights_rwy: bool | NotGiven = NOT_GIVEN,
535
+ lights_seqfl: bool | NotGiven = NOT_GIVEN,
536
+ lights_tdzl: bool | NotGiven = NOT_GIVEN,
537
+ lights_unkn: bool | NotGiven = NOT_GIVEN,
538
+ lights_vasi: bool | NotGiven = NOT_GIVEN,
539
+ material: str | NotGiven = NOT_GIVEN,
540
+ obstacle: bool | NotGiven = NOT_GIVEN,
541
+ origin: str | NotGiven = NOT_GIVEN,
542
+ pcn: str | NotGiven = NOT_GIVEN,
543
+ point_reference: str | NotGiven = NOT_GIVEN,
544
+ primary: bool | NotGiven = NOT_GIVEN,
545
+ raw_wbc: str | NotGiven = NOT_GIVEN,
546
+ sbtt_wt_kip: float | NotGiven = NOT_GIVEN,
547
+ sbtt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
548
+ sbtt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
549
+ sbtt_wt_kn: float | NotGiven = NOT_GIVEN,
550
+ start_lat: float | NotGiven = NOT_GIVEN,
551
+ start_lon: float | NotGiven = NOT_GIVEN,
552
+ st_wt_kip: float | NotGiven = NOT_GIVEN,
553
+ st_wt_kip_mod: float | NotGiven = NOT_GIVEN,
554
+ st_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
555
+ st_wt_kn: float | NotGiven = NOT_GIVEN,
556
+ s_wt_kip: float | NotGiven = NOT_GIVEN,
557
+ s_wt_kip_mod: float | NotGiven = NOT_GIVEN,
558
+ s_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
559
+ s_wt_kn: float | NotGiven = NOT_GIVEN,
560
+ tdt_wtkip: float | NotGiven = NOT_GIVEN,
561
+ tdt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
562
+ tdt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
563
+ tdt_wt_kn: float | NotGiven = NOT_GIVEN,
564
+ trt_wt_kip: float | NotGiven = NOT_GIVEN,
565
+ trt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
566
+ trt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
567
+ trt_wt_kn: float | NotGiven = NOT_GIVEN,
568
+ tt_wt_kip: float | NotGiven = NOT_GIVEN,
569
+ tt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
570
+ tt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
571
+ tt_wt_kn: float | NotGiven = NOT_GIVEN,
572
+ t_wt_kip: float | NotGiven = NOT_GIVEN,
573
+ t_wt_kip_mod: float | NotGiven = NOT_GIVEN,
574
+ t_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
575
+ t_wt_kn: float | NotGiven = NOT_GIVEN,
576
+ width_ft: float | NotGiven = NOT_GIVEN,
577
+ width_m: float | NotGiven = NOT_GIVEN,
578
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
579
+ # The extra values given here take precedence over values defined on the client or passed to this method.
580
+ extra_headers: Headers | None = None,
581
+ extra_query: Query | None = None,
582
+ extra_body: Body | None = None,
583
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
584
+ ) -> None:
585
+ """Service operation to update a single Surface.
586
+
587
+ A specific role is required to
588
+ perform this service operation. Please contact the UDL team for assistance.
589
+
590
+ Args:
591
+ classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
592
+
593
+ data_mode: Indicator of whether the data is REAL, TEST, SIMULATED, or EXERCISE data.
594
+
595
+ name: The surface name or identifier.
596
+
597
+ source: Source of the data.
598
+
599
+ type: The surface type of this record (e.g. RUNWAY, TAXIWAY, PARKING).
600
+
601
+ body_id: Unique identifier of the record, auto-generated by the system.
602
+
603
+ alt_site_id: Alternate site identifier provided by the source.
604
+
605
+ condition: The surface condition (e.g. GOOD, FAIR, POOR, SERIOUS, FAILED, CLOSED, UNKNOWN).
606
+
607
+ ddt_wt_kip: The max weight allowable on this surface type for a DDT-type (double dual
608
+ tandem) landing gear configuration, in kilopounds (kip).Note: The corresponding
609
+ equivalent field is not converted by the UDL and may or may not be supplied by
610
+ the provider. The provider/consumer is responsible for all unit conversions.
611
+
612
+ ddt_wt_kip_mod: The modified max weight allowable on this surface type for a DDT-type (double
613
+ dual tandem) landing gear configuration, in kilopounds (kip).
614
+
615
+ ddt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
616
+ indicating the max weight allowable on this surface for a DDT-type (double dual
617
+ tandem) landing gear configuration. For more information, contact the provider
618
+ source.
619
+
620
+ ddt_wt_kn: The max weight allowable on this surface type for a DDT-type (double dual
621
+ tandem) landing gear configuration, in kilonewtons (kN).Note: The corresponding
622
+ equivalent field is not converted by the UDL and may or may not be supplied by
623
+ the provider. The provider/consumer is responsible for all unit conversions.
624
+
625
+ dd_wt_kip: The max weight allowable on this surface type for an FAA 2D-type (twin tandem)
626
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
627
+ equivalent field is not converted by the UDL and may or may not be supplied by
628
+ the provider. The provider/consumer is responsible for all unit conversions.
629
+
630
+ dd_wt_kip_mod: The modified max weight allowable on this surface type for an FAA 2D-type (twin
631
+ tandem) landing gear configuration, in kilopounds (kip).
632
+
633
+ dd_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
634
+ indicating the max weight allowable on this surface for an FAA 2D-type (twin
635
+ tandem) landing gear configuration. For more information, contact the provider
636
+ source.
637
+
638
+ dd_wt_kn: The max weight allowable on this surface type for an FAA 2D-type (twin tandem)
639
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
640
+ equivalent field is not converted by the UDL and may or may not be supplied by
641
+ the provider. The provider/consumer is responsible for all unit conversions.
642
+
643
+ end_lat: WGS-84 latitude of the coordinate representing the end-point of a surface, in
644
+ degrees. -90 to 90 degrees (negative values south of equator).
645
+
646
+ end_lon: WGS-84 longitude of the coordinate representing the end-point of a surface, in
647
+ degrees. -180 to 180 degrees (negative values west of Prime Meridian).
648
+
649
+ id_site: The unique identifier of the Site record that contains location information
650
+ about this surface.
651
+
652
+ lcn: Load classification number or pavement rating which ranks aircraft on a scale of
653
+ 1 to 120.
654
+
655
+ lda_ft: The landing distance available for the runway, in feet. Applicable for runway
656
+ surface types only.
657
+
658
+ lda_m: The landing distance available for the runway, in meters. Applicable for runway
659
+ surface types only.
660
+
661
+ length_ft: The length of the surface type, in feet. Applicable for runway and parking
662
+ surface types.
663
+
664
+ length_m: The length of the surface type, in meters. Applicable for runway and parking
665
+ surface types.
666
+
667
+ lighting: Flag indicating the surface has lighting.
668
+
669
+ lights_aprch: Flag indicating the runway has approach lights. Applicable for runway surface
670
+ types only.
671
+
672
+ lights_cl: Flag indicating the runway has centerline lights. Applicable for runway surface
673
+ types only.
674
+
675
+ lights_ols: Flag indicating the runway has Optical Landing System (OLS) lights. Applicable
676
+ for runway surface types only.
677
+
678
+ lights_papi: Flag indicating the runway has Precision Approach Path Indicator (PAPI) lights.
679
+ Applicable for runway surface types only.
680
+
681
+ lights_reil: Flag indicating the runway has Runway End Identifier Lights (REIL). Applicable
682
+ for runway surface types only.
683
+
684
+ lights_rwy: Flag indicating the runway has edge lighting. Applicable for runway surface
685
+ types only.
686
+
687
+ lights_seqfl: Flag indicating the runway has Sequential Flashing (SEQFL) lights. Applicable
688
+ for runway surface types only.
689
+
690
+ lights_tdzl: Flag indicating the runway has Touchdown Zone lights. Applicable for runway
691
+ surface types only.
692
+
693
+ lights_unkn: Flag indicating the runway lighting is unknown. Applicable for runway surface
694
+ types only.
695
+
696
+ lights_vasi: Flag indicating the runway has Visual Approach Slope Indicator (VASI) lights.
697
+ Applicable for runway surface types only.
698
+
699
+ material: The surface material (e.g. Asphalt, Concrete, Dirt).
700
+
701
+ obstacle: Flag indicating that one or more obstacles or obstructions exist in the
702
+ proximity of this surface.
703
+
704
+ origin: Originating system or organization which produced the data, if different from
705
+ the source. The origin may be different than the source if the source was a
706
+ mediating system which forwarded the data on behalf of the origin system. If
707
+ null, the source may be assumed to be the origin.
708
+
709
+ pcn: Pavement classification number (PCN) and tire pressure code.
710
+
711
+ point_reference: Description of the surface and its dimensions or how it is measured or oriented.
712
+
713
+ primary: Flag indicating this is the primary runway. Applicable for runway surface types
714
+ only.
715
+
716
+ raw_wbc: Raw weight bearing capacity value or pavement strength.
717
+
718
+ sbtt_wt_kip: The max weight allowable on this surface type for an SBTT-type (single belly
719
+ twin tandem) landing gear configuration, in kilopounds (kip).Note: The
720
+ corresponding equivalent field is not converted by the UDL and may or may not be
721
+ supplied by the provider. The provider/consumer is responsible for all unit
722
+ conversions.
723
+
724
+ sbtt_wt_kip_mod: The modified max weight allowable on this surface type for an SBTT-type (single
725
+ belly twin tandem) landing gear configuration, in kilopounds (kip).
726
+
727
+ sbtt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
728
+ indicating the max weight allowable on this surface for an SBTT-type (single
729
+ belly twin tandem) landing gear configuration. For more information, contact the
730
+ provider source.
731
+
732
+ sbtt_wt_kn: The max weight allowable on this surface type for an SBTT-type (single belly
733
+ twin tandem) landing gear configuration, in kilonewtons (kN).Note: The
734
+ corresponding equivalent field is not converted by the UDL and may or may not be
735
+ supplied by the provider. The provider/consumer is responsible for all unit
736
+ conversions.
737
+
738
+ start_lat: WGS-84 latitude of the coordinate representing the start-point of a surface, in
739
+ degrees. -90 to 90 degrees (negative values south of equator).
740
+
741
+ start_lon: WGS-84 longitude of the coordinate representing the start-point of a surface, in
742
+ degrees. -180 to 180 degrees (negative values west of Prime Meridian).
743
+
744
+ st_wt_kip: The max weight allowable on this surface type for an ST-type (single tandem)
745
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
746
+ equivalent field is not converted by the UDL and may or may not be supplied by
747
+ the provider. The provider/consumer is responsible for all unit conversions.
748
+
749
+ st_wt_kip_mod: The modified max weight allowable on this surface type for an ST-type (single
750
+ tandem) landing gear configuration, in kilopounds (kip).
751
+
752
+ st_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
753
+ indicating the max weight allowable on this surface for an ST-type (single
754
+ tandem) landing gear configuration. For more information, contact the provider
755
+ source.
756
+
757
+ st_wt_kn: The max weight allowable on this surface type for an ST-type (single tandem)
758
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
759
+ equivalent field is not converted by the UDL and may or may not be supplied by
760
+ the provider. The provider/consumer is responsible for all unit conversions.
761
+
762
+ s_wt_kip: The max weight allowable on this surface type for an S-type (single) landing
763
+ gear configuration, in kilopounds (kip). Note: The corresponding equivalent
764
+ field is not converted by the UDL and may or may not be supplied by the
765
+ provider. The provider/consumer is responsible for all unit conversions.
766
+
767
+ s_wt_kip_mod: The modified max weight allowable on this surface type for an S-type (single)
768
+ landing gear configuration, in kilopounds (kip).
769
+
770
+ s_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
771
+ indicating the max weight allowable on this surface for an S-type (single)
772
+ landing gear configuration. For more information, contact the provider source.
773
+
774
+ s_wt_kn: The max weight allowable on this surface type for an S-type (single) landing
775
+ gear configuration, in kilonewtons (kN).Note: The corresponding equivalent field
776
+ is not converted by the UDL and may or may not be supplied by the provider. The
777
+ provider/consumer is responsible for all unit conversions.
778
+
779
+ tdt_wtkip: The max weight allowable on this surface type for a TDT-type (twin delta tandem)
780
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
781
+ equivalent field is not converted by the UDL and may or may not be supplied by
782
+ the provider. The provider/consumer is responsible for all unit conversions.
783
+
784
+ tdt_wt_kip_mod: The modified max weight allowable on this surface type for a TDT-type (twin
785
+ delta tandem) landing gear configuration, in kilopounds (kip).
786
+
787
+ tdt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
788
+ indicating the max weight allowable on this surface for a TDT-type (twin delta
789
+ tandem) landing gear configuration. For more information, contact the provider
790
+ source.
791
+
792
+ tdt_wt_kn: The max weight allowable on this surface type for a TDT-type (twin delta tandem)
793
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
794
+ equivalent field is not converted by the UDL and may or may not be supplied by
795
+ the provider. The provider/consumer is responsible for all unit conversions.
796
+
797
+ trt_wt_kip: The max weight allowable on this surface type for a TRT-type (triple tandem)
798
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
799
+ equivalent field is not converted by the UDL and may or may not be supplied by
800
+ the provider. The provider/consumer is responsible for all unit conversions.
801
+
802
+ trt_wt_kip_mod: The modified max weight allowable on this surface type for a TRT-type (triple
803
+ tandem) landing gear configuration, in kilopounds (kip).
804
+
805
+ trt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
806
+ indicating the max weight allowable on this surface for a TRT-type (triple
807
+ tandem) landing gear configuration. For more information, contact the provider
808
+ source.
809
+
810
+ trt_wt_kn: The max weight allowable on this surface type for a TRT-type (triple tandem)
811
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
812
+ equivalent field is not converted by the UDL and may or may not be supplied by
813
+ the provider. The provider/consumer is responsible for all unit conversions.
814
+
815
+ tt_wt_kip: The max weight allowable on this surface type for a GDSS TT-type (twin tandem)
816
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
817
+ equivalent field is not converted by the UDL and may or may not be supplied by
818
+ the provider. The provider/consumer is responsible for all unit conversions.
819
+
820
+ tt_wt_kip_mod: The modified max weight allowable on this surface type for a GDSS TT-type (twin
821
+ tandem) landing gear configuration, in kilopounds (kip).
822
+
823
+ tt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
824
+ indicating the max weight allowable on this surface for a GDSS TT-type (twin
825
+ tandem) landing gear configuration. For more information, contact the provider
826
+ source.
827
+
828
+ tt_wt_kn: The max weight allowable on this surface type for a GDSS TT-type (twin tandem)
829
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
830
+ equivalent field is not converted by the UDL and may or may not be supplied by
831
+ the provider. The provider/consumer is responsible for all unit conversions.
832
+
833
+ t_wt_kip: The max weight allowable on this surface type for a T-type (twin (dual)) landing
834
+ gear configuration, in kilopounds (kip).Note: The corresponding equivalent field
835
+ is not converted by the UDL and may or may not be supplied by the provider. The
836
+ provider/consumer is responsible for all unit conversions.
837
+
838
+ t_wt_kip_mod: The modified max weight allowable on this surface type for a T-type (twin
839
+ (dual)) landing gear configuration, in kilopounds (kip).
840
+
841
+ t_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
842
+ indicating the max weight allowable on this surface for a T-type (twin(dual))
843
+ landing gear configuration. For more information, contact the provider source.
844
+
845
+ t_wt_kn: The max weight allowable on this surface type for a T-type (twin (dual)) landing
846
+ gear configuration, in kilonewtons (kN).Note: The corresponding equivalent field
847
+ is not converted by the UDL and may or may not be supplied by the provider. The
848
+ provider/consumer is responsible for all unit conversions.
849
+
850
+ width_ft: The width of the surface type, in feet.
851
+
852
+ width_m: The width of the surface type, in meters.
853
+
854
+ extra_headers: Send extra headers
855
+
856
+ extra_query: Add additional query parameters to the request
857
+
858
+ extra_body: Add additional JSON properties to the request
859
+
860
+ timeout: Override the client-level default timeout for this request, in seconds
861
+ """
862
+ if not path_id:
863
+ raise ValueError(f"Expected a non-empty value for `path_id` but received {path_id!r}")
864
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
865
+ return self._put(
866
+ f"/udl/surface/{path_id}",
867
+ body=maybe_transform(
868
+ {
869
+ "classification_marking": classification_marking,
870
+ "data_mode": data_mode,
871
+ "name": name,
872
+ "source": source,
873
+ "type": type,
874
+ "body_id": body_id,
875
+ "alt_site_id": alt_site_id,
876
+ "condition": condition,
877
+ "ddt_wt_kip": ddt_wt_kip,
878
+ "ddt_wt_kip_mod": ddt_wt_kip_mod,
879
+ "ddt_wt_kip_mod_note": ddt_wt_kip_mod_note,
880
+ "ddt_wt_kn": ddt_wt_kn,
881
+ "dd_wt_kip": dd_wt_kip,
882
+ "dd_wt_kip_mod": dd_wt_kip_mod,
883
+ "dd_wt_kip_mod_note": dd_wt_kip_mod_note,
884
+ "dd_wt_kn": dd_wt_kn,
885
+ "end_lat": end_lat,
886
+ "end_lon": end_lon,
887
+ "id_site": id_site,
888
+ "lcn": lcn,
889
+ "lda_ft": lda_ft,
890
+ "lda_m": lda_m,
891
+ "length_ft": length_ft,
892
+ "length_m": length_m,
893
+ "lighting": lighting,
894
+ "lights_aprch": lights_aprch,
895
+ "lights_cl": lights_cl,
896
+ "lights_ols": lights_ols,
897
+ "lights_papi": lights_papi,
898
+ "lights_reil": lights_reil,
899
+ "lights_rwy": lights_rwy,
900
+ "lights_seqfl": lights_seqfl,
901
+ "lights_tdzl": lights_tdzl,
902
+ "lights_unkn": lights_unkn,
903
+ "lights_vasi": lights_vasi,
904
+ "material": material,
905
+ "obstacle": obstacle,
906
+ "origin": origin,
907
+ "pcn": pcn,
908
+ "point_reference": point_reference,
909
+ "primary": primary,
910
+ "raw_wbc": raw_wbc,
911
+ "sbtt_wt_kip": sbtt_wt_kip,
912
+ "sbtt_wt_kip_mod": sbtt_wt_kip_mod,
913
+ "sbtt_wt_kip_mod_note": sbtt_wt_kip_mod_note,
914
+ "sbtt_wt_kn": sbtt_wt_kn,
915
+ "start_lat": start_lat,
916
+ "start_lon": start_lon,
917
+ "st_wt_kip": st_wt_kip,
918
+ "st_wt_kip_mod": st_wt_kip_mod,
919
+ "st_wt_kip_mod_note": st_wt_kip_mod_note,
920
+ "st_wt_kn": st_wt_kn,
921
+ "s_wt_kip": s_wt_kip,
922
+ "s_wt_kip_mod": s_wt_kip_mod,
923
+ "s_wt_kip_mod_note": s_wt_kip_mod_note,
924
+ "s_wt_kn": s_wt_kn,
925
+ "tdt_wtkip": tdt_wtkip,
926
+ "tdt_wt_kip_mod": tdt_wt_kip_mod,
927
+ "tdt_wt_kip_mod_note": tdt_wt_kip_mod_note,
928
+ "tdt_wt_kn": tdt_wt_kn,
929
+ "trt_wt_kip": trt_wt_kip,
930
+ "trt_wt_kip_mod": trt_wt_kip_mod,
931
+ "trt_wt_kip_mod_note": trt_wt_kip_mod_note,
932
+ "trt_wt_kn": trt_wt_kn,
933
+ "tt_wt_kip": tt_wt_kip,
934
+ "tt_wt_kip_mod": tt_wt_kip_mod,
935
+ "tt_wt_kip_mod_note": tt_wt_kip_mod_note,
936
+ "tt_wt_kn": tt_wt_kn,
937
+ "t_wt_kip": t_wt_kip,
938
+ "t_wt_kip_mod": t_wt_kip_mod,
939
+ "t_wt_kip_mod_note": t_wt_kip_mod_note,
940
+ "t_wt_kn": t_wt_kn,
941
+ "width_ft": width_ft,
942
+ "width_m": width_m,
943
+ },
944
+ surface_update_params.SurfaceUpdateParams,
945
+ ),
946
+ options=make_request_options(
947
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
948
+ ),
949
+ cast_to=NoneType,
950
+ )
951
+
952
+ def list(
953
+ self,
954
+ *,
955
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
956
+ # The extra values given here take precedence over values defined on the client or passed to this method.
957
+ extra_headers: Headers | None = None,
958
+ extra_query: Query | None = None,
959
+ extra_body: Body | None = None,
960
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
961
+ ) -> SurfaceListResponse:
962
+ """
963
+ Service operation to dynamically query data by a variety of query parameters not
964
+ specified in this API documentation. See the queryhelp operation
965
+ (/udl/<datatype>/queryhelp) for more details on valid/required query
966
+ parameter information.
967
+ """
968
+ return self._get(
969
+ "/udl/surface",
970
+ options=make_request_options(
971
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
972
+ ),
973
+ cast_to=SurfaceListResponse,
974
+ )
975
+
976
+ def delete(
977
+ self,
978
+ id: str,
979
+ *,
980
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
981
+ # The extra values given here take precedence over values defined on the client or passed to this method.
982
+ extra_headers: Headers | None = None,
983
+ extra_query: Query | None = None,
984
+ extra_body: Body | None = None,
985
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
986
+ ) -> None:
987
+ """
988
+ Service operation to delete a Surface object specified by the passed ID path
989
+ parameter. A specific role is required to perform this service operation. Please
990
+ contact the UDL team for assistance.
991
+
992
+ Args:
993
+ extra_headers: Send extra headers
994
+
995
+ extra_query: Add additional query parameters to the request
996
+
997
+ extra_body: Add additional JSON properties to the request
998
+
999
+ timeout: Override the client-level default timeout for this request, in seconds
1000
+ """
1001
+ if not id:
1002
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
1003
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
1004
+ return self._delete(
1005
+ f"/udl/surface/{id}",
1006
+ options=make_request_options(
1007
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1008
+ ),
1009
+ cast_to=NoneType,
1010
+ )
1011
+
1012
+ def count(
1013
+ self,
1014
+ *,
1015
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1016
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1017
+ extra_headers: Headers | None = None,
1018
+ extra_query: Query | None = None,
1019
+ extra_body: Body | None = None,
1020
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1021
+ ) -> str:
1022
+ """
1023
+ Service operation to return the count of records satisfying the specified query
1024
+ parameters. This operation is useful to determine how many records pass a
1025
+ particular query criteria without retrieving large amounts of data. See the
1026
+ queryhelp operation (/udl/<datatype>/queryhelp) for more details on
1027
+ valid/required query parameter information.
1028
+ """
1029
+ extra_headers = {"Accept": "text/plain", **(extra_headers or {})}
1030
+ return self._get(
1031
+ "/udl/surface/count",
1032
+ options=make_request_options(
1033
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1034
+ ),
1035
+ cast_to=str,
1036
+ )
1037
+
1038
+ def get(
1039
+ self,
1040
+ id: str,
1041
+ *,
1042
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1043
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1044
+ extra_headers: Headers | None = None,
1045
+ extra_query: Query | None = None,
1046
+ extra_body: Body | None = None,
1047
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1048
+ ) -> SurfaceGetResponse:
1049
+ """
1050
+ Service operation to get a single Surface record by its unique ID passed as a
1051
+ path parameter.
1052
+
1053
+ Args:
1054
+ extra_headers: Send extra headers
1055
+
1056
+ extra_query: Add additional query parameters to the request
1057
+
1058
+ extra_body: Add additional JSON properties to the request
1059
+
1060
+ timeout: Override the client-level default timeout for this request, in seconds
1061
+ """
1062
+ if not id:
1063
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
1064
+ return self._get(
1065
+ f"/udl/surface/{id}",
1066
+ options=make_request_options(
1067
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1068
+ ),
1069
+ cast_to=SurfaceGetResponse,
1070
+ )
1071
+
1072
+ def queryhelp(
1073
+ self,
1074
+ *,
1075
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1076
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1077
+ extra_headers: Headers | None = None,
1078
+ extra_query: Query | None = None,
1079
+ extra_body: Body | None = None,
1080
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1081
+ ) -> None:
1082
+ """
1083
+ Service operation to provide detailed information on available dynamic query
1084
+ parameters for a particular data type.
1085
+ """
1086
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
1087
+ return self._get(
1088
+ "/udl/surface/queryhelp",
1089
+ options=make_request_options(
1090
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1091
+ ),
1092
+ cast_to=NoneType,
1093
+ )
1094
+
1095
+ def tuple(
1096
+ self,
1097
+ *,
1098
+ columns: str,
1099
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1100
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1101
+ extra_headers: Headers | None = None,
1102
+ extra_query: Query | None = None,
1103
+ extra_body: Body | None = None,
1104
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1105
+ ) -> SurfaceTupleResponse:
1106
+ """
1107
+ Service operation to dynamically query data and only return specified
1108
+ columns/fields. Requested columns are specified by the 'columns' query parameter
1109
+ and should be a comma separated list of valid fields for the specified data
1110
+ type. classificationMarking is always returned. See the queryhelp operation
1111
+ (/udl/<datatype>/queryhelp) for more details on valid/required query parameter
1112
+ information. An example URI: /udl/elset/tuple?columns=satNo,period&epoch=>now-5
1113
+ hours would return the satNo and period of elsets with an epoch greater than 5
1114
+ hours ago.
1115
+
1116
+ Args:
1117
+ columns: Comma-separated list of valid field names for this data type to be returned in
1118
+ the response. Only the fields specified will be returned as well as the
1119
+ classification marking of the data, if applicable. See the ‘queryhelp’ operation
1120
+ for a complete list of possible fields.
1121
+
1122
+ extra_headers: Send extra headers
1123
+
1124
+ extra_query: Add additional query parameters to the request
1125
+
1126
+ extra_body: Add additional JSON properties to the request
1127
+
1128
+ timeout: Override the client-level default timeout for this request, in seconds
1129
+ """
1130
+ return self._get(
1131
+ "/udl/surface/tuple",
1132
+ options=make_request_options(
1133
+ extra_headers=extra_headers,
1134
+ extra_query=extra_query,
1135
+ extra_body=extra_body,
1136
+ timeout=timeout,
1137
+ query=maybe_transform({"columns": columns}, surface_tuple_params.SurfaceTupleParams),
1138
+ ),
1139
+ cast_to=SurfaceTupleResponse,
1140
+ )
1141
+
1142
+
1143
+ class AsyncSurfaceResource(AsyncAPIResource):
1144
+ @cached_property
1145
+ def with_raw_response(self) -> AsyncSurfaceResourceWithRawResponse:
1146
+ """
1147
+ This property can be used as a prefix for any HTTP method call to return
1148
+ the raw response object instead of the parsed content.
1149
+
1150
+ For more information, see https://www.github.com/rsivilli-bluestaq/udl-python-sdk#accessing-raw-response-data-eg-headers
1151
+ """
1152
+ return AsyncSurfaceResourceWithRawResponse(self)
1153
+
1154
+ @cached_property
1155
+ def with_streaming_response(self) -> AsyncSurfaceResourceWithStreamingResponse:
1156
+ """
1157
+ An alternative to `.with_raw_response` that doesn't eagerly read the response body.
1158
+
1159
+ For more information, see https://www.github.com/rsivilli-bluestaq/udl-python-sdk#with_streaming_response
1160
+ """
1161
+ return AsyncSurfaceResourceWithStreamingResponse(self)
1162
+
1163
+ async def create(
1164
+ self,
1165
+ *,
1166
+ classification_marking: str,
1167
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
1168
+ name: str,
1169
+ source: str,
1170
+ type: str,
1171
+ id: str | NotGiven = NOT_GIVEN,
1172
+ alt_site_id: str | NotGiven = NOT_GIVEN,
1173
+ condition: str | NotGiven = NOT_GIVEN,
1174
+ ddt_wt_kip: float | NotGiven = NOT_GIVEN,
1175
+ ddt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1176
+ ddt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1177
+ ddt_wt_kn: float | NotGiven = NOT_GIVEN,
1178
+ dd_wt_kip: float | NotGiven = NOT_GIVEN,
1179
+ dd_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1180
+ dd_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1181
+ dd_wt_kn: float | NotGiven = NOT_GIVEN,
1182
+ end_lat: float | NotGiven = NOT_GIVEN,
1183
+ end_lon: float | NotGiven = NOT_GIVEN,
1184
+ id_site: str | NotGiven = NOT_GIVEN,
1185
+ lcn: int | NotGiven = NOT_GIVEN,
1186
+ lda_ft: float | NotGiven = NOT_GIVEN,
1187
+ lda_m: float | NotGiven = NOT_GIVEN,
1188
+ length_ft: float | NotGiven = NOT_GIVEN,
1189
+ length_m: float | NotGiven = NOT_GIVEN,
1190
+ lighting: bool | NotGiven = NOT_GIVEN,
1191
+ lights_aprch: bool | NotGiven = NOT_GIVEN,
1192
+ lights_cl: bool | NotGiven = NOT_GIVEN,
1193
+ lights_ols: bool | NotGiven = NOT_GIVEN,
1194
+ lights_papi: bool | NotGiven = NOT_GIVEN,
1195
+ lights_reil: bool | NotGiven = NOT_GIVEN,
1196
+ lights_rwy: bool | NotGiven = NOT_GIVEN,
1197
+ lights_seqfl: bool | NotGiven = NOT_GIVEN,
1198
+ lights_tdzl: bool | NotGiven = NOT_GIVEN,
1199
+ lights_unkn: bool | NotGiven = NOT_GIVEN,
1200
+ lights_vasi: bool | NotGiven = NOT_GIVEN,
1201
+ material: str | NotGiven = NOT_GIVEN,
1202
+ obstacle: bool | NotGiven = NOT_GIVEN,
1203
+ origin: str | NotGiven = NOT_GIVEN,
1204
+ pcn: str | NotGiven = NOT_GIVEN,
1205
+ point_reference: str | NotGiven = NOT_GIVEN,
1206
+ primary: bool | NotGiven = NOT_GIVEN,
1207
+ raw_wbc: str | NotGiven = NOT_GIVEN,
1208
+ sbtt_wt_kip: float | NotGiven = NOT_GIVEN,
1209
+ sbtt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1210
+ sbtt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1211
+ sbtt_wt_kn: float | NotGiven = NOT_GIVEN,
1212
+ start_lat: float | NotGiven = NOT_GIVEN,
1213
+ start_lon: float | NotGiven = NOT_GIVEN,
1214
+ st_wt_kip: float | NotGiven = NOT_GIVEN,
1215
+ st_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1216
+ st_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1217
+ st_wt_kn: float | NotGiven = NOT_GIVEN,
1218
+ s_wt_kip: float | NotGiven = NOT_GIVEN,
1219
+ s_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1220
+ s_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1221
+ s_wt_kn: float | NotGiven = NOT_GIVEN,
1222
+ tdt_wtkip: float | NotGiven = NOT_GIVEN,
1223
+ tdt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1224
+ tdt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1225
+ tdt_wt_kn: float | NotGiven = NOT_GIVEN,
1226
+ trt_wt_kip: float | NotGiven = NOT_GIVEN,
1227
+ trt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1228
+ trt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1229
+ trt_wt_kn: float | NotGiven = NOT_GIVEN,
1230
+ tt_wt_kip: float | NotGiven = NOT_GIVEN,
1231
+ tt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1232
+ tt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1233
+ tt_wt_kn: float | NotGiven = NOT_GIVEN,
1234
+ t_wt_kip: float | NotGiven = NOT_GIVEN,
1235
+ t_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1236
+ t_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1237
+ t_wt_kn: float | NotGiven = NOT_GIVEN,
1238
+ width_ft: float | NotGiven = NOT_GIVEN,
1239
+ width_m: float | NotGiven = NOT_GIVEN,
1240
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1241
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1242
+ extra_headers: Headers | None = None,
1243
+ extra_query: Query | None = None,
1244
+ extra_body: Body | None = None,
1245
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1246
+ ) -> None:
1247
+ """
1248
+ Service operation to take a single Surface as a POST body and ingest into the
1249
+ database. A specific role is required to perform this service operation. Please
1250
+ contact the UDL team for assistance.
1251
+
1252
+ Args:
1253
+ classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
1254
+
1255
+ data_mode: Indicator of whether the data is REAL, TEST, SIMULATED, or EXERCISE data.
1256
+
1257
+ name: The surface name or identifier.
1258
+
1259
+ source: Source of the data.
1260
+
1261
+ type: The surface type of this record (e.g. RUNWAY, TAXIWAY, PARKING).
1262
+
1263
+ id: Unique identifier of the record, auto-generated by the system.
1264
+
1265
+ alt_site_id: Alternate site identifier provided by the source.
1266
+
1267
+ condition: The surface condition (e.g. GOOD, FAIR, POOR, SERIOUS, FAILED, CLOSED, UNKNOWN).
1268
+
1269
+ ddt_wt_kip: The max weight allowable on this surface type for a DDT-type (double dual
1270
+ tandem) landing gear configuration, in kilopounds (kip).Note: The corresponding
1271
+ equivalent field is not converted by the UDL and may or may not be supplied by
1272
+ the provider. The provider/consumer is responsible for all unit conversions.
1273
+
1274
+ ddt_wt_kip_mod: The modified max weight allowable on this surface type for a DDT-type (double
1275
+ dual tandem) landing gear configuration, in kilopounds (kip).
1276
+
1277
+ ddt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1278
+ indicating the max weight allowable on this surface for a DDT-type (double dual
1279
+ tandem) landing gear configuration. For more information, contact the provider
1280
+ source.
1281
+
1282
+ ddt_wt_kn: The max weight allowable on this surface type for a DDT-type (double dual
1283
+ tandem) landing gear configuration, in kilonewtons (kN).Note: The corresponding
1284
+ equivalent field is not converted by the UDL and may or may not be supplied by
1285
+ the provider. The provider/consumer is responsible for all unit conversions.
1286
+
1287
+ dd_wt_kip: The max weight allowable on this surface type for an FAA 2D-type (twin tandem)
1288
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1289
+ equivalent field is not converted by the UDL and may or may not be supplied by
1290
+ the provider. The provider/consumer is responsible for all unit conversions.
1291
+
1292
+ dd_wt_kip_mod: The modified max weight allowable on this surface type for an FAA 2D-type (twin
1293
+ tandem) landing gear configuration, in kilopounds (kip).
1294
+
1295
+ dd_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1296
+ indicating the max weight allowable on this surface for an FAA 2D-type (twin
1297
+ tandem) landing gear configuration. For more information, contact the provider
1298
+ source.
1299
+
1300
+ dd_wt_kn: The max weight allowable on this surface type for an FAA 2D-type (twin tandem)
1301
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1302
+ equivalent field is not converted by the UDL and may or may not be supplied by
1303
+ the provider. The provider/consumer is responsible for all unit conversions.
1304
+
1305
+ end_lat: WGS-84 latitude of the coordinate representing the end-point of a surface, in
1306
+ degrees. -90 to 90 degrees (negative values south of equator).
1307
+
1308
+ end_lon: WGS-84 longitude of the coordinate representing the end-point of a surface, in
1309
+ degrees. -180 to 180 degrees (negative values west of Prime Meridian).
1310
+
1311
+ id_site: The unique identifier of the Site record that contains location information
1312
+ about this surface.
1313
+
1314
+ lcn: Load classification number or pavement rating which ranks aircraft on a scale of
1315
+ 1 to 120.
1316
+
1317
+ lda_ft: The landing distance available for the runway, in feet. Applicable for runway
1318
+ surface types only.
1319
+
1320
+ lda_m: The landing distance available for the runway, in meters. Applicable for runway
1321
+ surface types only.
1322
+
1323
+ length_ft: The length of the surface type, in feet. Applicable for runway and parking
1324
+ surface types.
1325
+
1326
+ length_m: The length of the surface type, in meters. Applicable for runway and parking
1327
+ surface types.
1328
+
1329
+ lighting: Flag indicating the surface has lighting.
1330
+
1331
+ lights_aprch: Flag indicating the runway has approach lights. Applicable for runway surface
1332
+ types only.
1333
+
1334
+ lights_cl: Flag indicating the runway has centerline lights. Applicable for runway surface
1335
+ types only.
1336
+
1337
+ lights_ols: Flag indicating the runway has Optical Landing System (OLS) lights. Applicable
1338
+ for runway surface types only.
1339
+
1340
+ lights_papi: Flag indicating the runway has Precision Approach Path Indicator (PAPI) lights.
1341
+ Applicable for runway surface types only.
1342
+
1343
+ lights_reil: Flag indicating the runway has Runway End Identifier Lights (REIL). Applicable
1344
+ for runway surface types only.
1345
+
1346
+ lights_rwy: Flag indicating the runway has edge lighting. Applicable for runway surface
1347
+ types only.
1348
+
1349
+ lights_seqfl: Flag indicating the runway has Sequential Flashing (SEQFL) lights. Applicable
1350
+ for runway surface types only.
1351
+
1352
+ lights_tdzl: Flag indicating the runway has Touchdown Zone lights. Applicable for runway
1353
+ surface types only.
1354
+
1355
+ lights_unkn: Flag indicating the runway lighting is unknown. Applicable for runway surface
1356
+ types only.
1357
+
1358
+ lights_vasi: Flag indicating the runway has Visual Approach Slope Indicator (VASI) lights.
1359
+ Applicable for runway surface types only.
1360
+
1361
+ material: The surface material (e.g. Asphalt, Concrete, Dirt).
1362
+
1363
+ obstacle: Flag indicating that one or more obstacles or obstructions exist in the
1364
+ proximity of this surface.
1365
+
1366
+ origin: Originating system or organization which produced the data, if different from
1367
+ the source. The origin may be different than the source if the source was a
1368
+ mediating system which forwarded the data on behalf of the origin system. If
1369
+ null, the source may be assumed to be the origin.
1370
+
1371
+ pcn: Pavement classification number (PCN) and tire pressure code.
1372
+
1373
+ point_reference: Description of the surface and its dimensions or how it is measured or oriented.
1374
+
1375
+ primary: Flag indicating this is the primary runway. Applicable for runway surface types
1376
+ only.
1377
+
1378
+ raw_wbc: Raw weight bearing capacity value or pavement strength.
1379
+
1380
+ sbtt_wt_kip: The max weight allowable on this surface type for an SBTT-type (single belly
1381
+ twin tandem) landing gear configuration, in kilopounds (kip).Note: The
1382
+ corresponding equivalent field is not converted by the UDL and may or may not be
1383
+ supplied by the provider. The provider/consumer is responsible for all unit
1384
+ conversions.
1385
+
1386
+ sbtt_wt_kip_mod: The modified max weight allowable on this surface type for an SBTT-type (single
1387
+ belly twin tandem) landing gear configuration, in kilopounds (kip).
1388
+
1389
+ sbtt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1390
+ indicating the max weight allowable on this surface for an SBTT-type (single
1391
+ belly twin tandem) landing gear configuration. For more information, contact the
1392
+ provider source.
1393
+
1394
+ sbtt_wt_kn: The max weight allowable on this surface type for an SBTT-type (single belly
1395
+ twin tandem) landing gear configuration, in kilonewtons (kN).Note: The
1396
+ corresponding equivalent field is not converted by the UDL and may or may not be
1397
+ supplied by the provider. The provider/consumer is responsible for all unit
1398
+ conversions.
1399
+
1400
+ start_lat: WGS-84 latitude of the coordinate representing the start-point of a surface, in
1401
+ degrees. -90 to 90 degrees (negative values south of equator).
1402
+
1403
+ start_lon: WGS-84 longitude of the coordinate representing the start-point of a surface, in
1404
+ degrees. -180 to 180 degrees (negative values west of Prime Meridian).
1405
+
1406
+ st_wt_kip: The max weight allowable on this surface type for an ST-type (single tandem)
1407
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1408
+ equivalent field is not converted by the UDL and may or may not be supplied by
1409
+ the provider. The provider/consumer is responsible for all unit conversions.
1410
+
1411
+ st_wt_kip_mod: The modified max weight allowable on this surface type for an ST-type (single
1412
+ tandem) landing gear configuration, in kilopounds (kip).
1413
+
1414
+ st_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1415
+ indicating the max weight allowable on this surface for an ST-type (single
1416
+ tandem) landing gear configuration. For more information, contact the provider
1417
+ source.
1418
+
1419
+ st_wt_kn: The max weight allowable on this surface type for an ST-type (single tandem)
1420
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1421
+ equivalent field is not converted by the UDL and may or may not be supplied by
1422
+ the provider. The provider/consumer is responsible for all unit conversions.
1423
+
1424
+ s_wt_kip: The max weight allowable on this surface type for an S-type (single) landing
1425
+ gear configuration, in kilopounds (kip). Note: The corresponding equivalent
1426
+ field is not converted by the UDL and may or may not be supplied by the
1427
+ provider. The provider/consumer is responsible for all unit conversions.
1428
+
1429
+ s_wt_kip_mod: The modified max weight allowable on this surface type for an S-type (single)
1430
+ landing gear configuration, in kilopounds (kip).
1431
+
1432
+ s_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1433
+ indicating the max weight allowable on this surface for an S-type (single)
1434
+ landing gear configuration. For more information, contact the provider source.
1435
+
1436
+ s_wt_kn: The max weight allowable on this surface type for an S-type (single) landing
1437
+ gear configuration, in kilonewtons (kN).Note: The corresponding equivalent field
1438
+ is not converted by the UDL and may or may not be supplied by the provider. The
1439
+ provider/consumer is responsible for all unit conversions.
1440
+
1441
+ tdt_wtkip: The max weight allowable on this surface type for a TDT-type (twin delta tandem)
1442
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1443
+ equivalent field is not converted by the UDL and may or may not be supplied by
1444
+ the provider. The provider/consumer is responsible for all unit conversions.
1445
+
1446
+ tdt_wt_kip_mod: The modified max weight allowable on this surface type for a TDT-type (twin
1447
+ delta tandem) landing gear configuration, in kilopounds (kip).
1448
+
1449
+ tdt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1450
+ indicating the max weight allowable on this surface for a TDT-type (twin delta
1451
+ tandem) landing gear configuration. For more information, contact the provider
1452
+ source.
1453
+
1454
+ tdt_wt_kn: The max weight allowable on this surface type for a TDT-type (twin delta tandem)
1455
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1456
+ equivalent field is not converted by the UDL and may or may not be supplied by
1457
+ the provider. The provider/consumer is responsible for all unit conversions.
1458
+
1459
+ trt_wt_kip: The max weight allowable on this surface type for a TRT-type (triple tandem)
1460
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1461
+ equivalent field is not converted by the UDL and may or may not be supplied by
1462
+ the provider. The provider/consumer is responsible for all unit conversions.
1463
+
1464
+ trt_wt_kip_mod: The modified max weight allowable on this surface type for a TRT-type (triple
1465
+ tandem) landing gear configuration, in kilopounds (kip).
1466
+
1467
+ trt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1468
+ indicating the max weight allowable on this surface for a TRT-type (triple
1469
+ tandem) landing gear configuration. For more information, contact the provider
1470
+ source.
1471
+
1472
+ trt_wt_kn: The max weight allowable on this surface type for a TRT-type (triple tandem)
1473
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1474
+ equivalent field is not converted by the UDL and may or may not be supplied by
1475
+ the provider. The provider/consumer is responsible for all unit conversions.
1476
+
1477
+ tt_wt_kip: The max weight allowable on this surface type for a GDSS TT-type (twin tandem)
1478
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1479
+ equivalent field is not converted by the UDL and may or may not be supplied by
1480
+ the provider. The provider/consumer is responsible for all unit conversions.
1481
+
1482
+ tt_wt_kip_mod: The modified max weight allowable on this surface type for a GDSS TT-type (twin
1483
+ tandem) landing gear configuration, in kilopounds (kip).
1484
+
1485
+ tt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1486
+ indicating the max weight allowable on this surface for a GDSS TT-type (twin
1487
+ tandem) landing gear configuration. For more information, contact the provider
1488
+ source.
1489
+
1490
+ tt_wt_kn: The max weight allowable on this surface type for a GDSS TT-type (twin tandem)
1491
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1492
+ equivalent field is not converted by the UDL and may or may not be supplied by
1493
+ the provider. The provider/consumer is responsible for all unit conversions.
1494
+
1495
+ t_wt_kip: The max weight allowable on this surface type for a T-type (twin (dual)) landing
1496
+ gear configuration, in kilopounds (kip).Note: The corresponding equivalent field
1497
+ is not converted by the UDL and may or may not be supplied by the provider. The
1498
+ provider/consumer is responsible for all unit conversions.
1499
+
1500
+ t_wt_kip_mod: The modified max weight allowable on this surface type for a T-type (twin
1501
+ (dual)) landing gear configuration, in kilopounds (kip).
1502
+
1503
+ t_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1504
+ indicating the max weight allowable on this surface for a T-type (twin(dual))
1505
+ landing gear configuration. For more information, contact the provider source.
1506
+
1507
+ t_wt_kn: The max weight allowable on this surface type for a T-type (twin (dual)) landing
1508
+ gear configuration, in kilonewtons (kN).Note: The corresponding equivalent field
1509
+ is not converted by the UDL and may or may not be supplied by the provider. The
1510
+ provider/consumer is responsible for all unit conversions.
1511
+
1512
+ width_ft: The width of the surface type, in feet.
1513
+
1514
+ width_m: The width of the surface type, in meters.
1515
+
1516
+ extra_headers: Send extra headers
1517
+
1518
+ extra_query: Add additional query parameters to the request
1519
+
1520
+ extra_body: Add additional JSON properties to the request
1521
+
1522
+ timeout: Override the client-level default timeout for this request, in seconds
1523
+ """
1524
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
1525
+ return await self._post(
1526
+ "/udl/surface",
1527
+ body=await async_maybe_transform(
1528
+ {
1529
+ "classification_marking": classification_marking,
1530
+ "data_mode": data_mode,
1531
+ "name": name,
1532
+ "source": source,
1533
+ "type": type,
1534
+ "id": id,
1535
+ "alt_site_id": alt_site_id,
1536
+ "condition": condition,
1537
+ "ddt_wt_kip": ddt_wt_kip,
1538
+ "ddt_wt_kip_mod": ddt_wt_kip_mod,
1539
+ "ddt_wt_kip_mod_note": ddt_wt_kip_mod_note,
1540
+ "ddt_wt_kn": ddt_wt_kn,
1541
+ "dd_wt_kip": dd_wt_kip,
1542
+ "dd_wt_kip_mod": dd_wt_kip_mod,
1543
+ "dd_wt_kip_mod_note": dd_wt_kip_mod_note,
1544
+ "dd_wt_kn": dd_wt_kn,
1545
+ "end_lat": end_lat,
1546
+ "end_lon": end_lon,
1547
+ "id_site": id_site,
1548
+ "lcn": lcn,
1549
+ "lda_ft": lda_ft,
1550
+ "lda_m": lda_m,
1551
+ "length_ft": length_ft,
1552
+ "length_m": length_m,
1553
+ "lighting": lighting,
1554
+ "lights_aprch": lights_aprch,
1555
+ "lights_cl": lights_cl,
1556
+ "lights_ols": lights_ols,
1557
+ "lights_papi": lights_papi,
1558
+ "lights_reil": lights_reil,
1559
+ "lights_rwy": lights_rwy,
1560
+ "lights_seqfl": lights_seqfl,
1561
+ "lights_tdzl": lights_tdzl,
1562
+ "lights_unkn": lights_unkn,
1563
+ "lights_vasi": lights_vasi,
1564
+ "material": material,
1565
+ "obstacle": obstacle,
1566
+ "origin": origin,
1567
+ "pcn": pcn,
1568
+ "point_reference": point_reference,
1569
+ "primary": primary,
1570
+ "raw_wbc": raw_wbc,
1571
+ "sbtt_wt_kip": sbtt_wt_kip,
1572
+ "sbtt_wt_kip_mod": sbtt_wt_kip_mod,
1573
+ "sbtt_wt_kip_mod_note": sbtt_wt_kip_mod_note,
1574
+ "sbtt_wt_kn": sbtt_wt_kn,
1575
+ "start_lat": start_lat,
1576
+ "start_lon": start_lon,
1577
+ "st_wt_kip": st_wt_kip,
1578
+ "st_wt_kip_mod": st_wt_kip_mod,
1579
+ "st_wt_kip_mod_note": st_wt_kip_mod_note,
1580
+ "st_wt_kn": st_wt_kn,
1581
+ "s_wt_kip": s_wt_kip,
1582
+ "s_wt_kip_mod": s_wt_kip_mod,
1583
+ "s_wt_kip_mod_note": s_wt_kip_mod_note,
1584
+ "s_wt_kn": s_wt_kn,
1585
+ "tdt_wtkip": tdt_wtkip,
1586
+ "tdt_wt_kip_mod": tdt_wt_kip_mod,
1587
+ "tdt_wt_kip_mod_note": tdt_wt_kip_mod_note,
1588
+ "tdt_wt_kn": tdt_wt_kn,
1589
+ "trt_wt_kip": trt_wt_kip,
1590
+ "trt_wt_kip_mod": trt_wt_kip_mod,
1591
+ "trt_wt_kip_mod_note": trt_wt_kip_mod_note,
1592
+ "trt_wt_kn": trt_wt_kn,
1593
+ "tt_wt_kip": tt_wt_kip,
1594
+ "tt_wt_kip_mod": tt_wt_kip_mod,
1595
+ "tt_wt_kip_mod_note": tt_wt_kip_mod_note,
1596
+ "tt_wt_kn": tt_wt_kn,
1597
+ "t_wt_kip": t_wt_kip,
1598
+ "t_wt_kip_mod": t_wt_kip_mod,
1599
+ "t_wt_kip_mod_note": t_wt_kip_mod_note,
1600
+ "t_wt_kn": t_wt_kn,
1601
+ "width_ft": width_ft,
1602
+ "width_m": width_m,
1603
+ },
1604
+ surface_create_params.SurfaceCreateParams,
1605
+ ),
1606
+ options=make_request_options(
1607
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1608
+ ),
1609
+ cast_to=NoneType,
1610
+ )
1611
+
1612
+ async def update(
1613
+ self,
1614
+ path_id: str,
1615
+ *,
1616
+ classification_marking: str,
1617
+ data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
1618
+ name: str,
1619
+ source: str,
1620
+ type: str,
1621
+ body_id: str | NotGiven = NOT_GIVEN,
1622
+ alt_site_id: str | NotGiven = NOT_GIVEN,
1623
+ condition: str | NotGiven = NOT_GIVEN,
1624
+ ddt_wt_kip: float | NotGiven = NOT_GIVEN,
1625
+ ddt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1626
+ ddt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1627
+ ddt_wt_kn: float | NotGiven = NOT_GIVEN,
1628
+ dd_wt_kip: float | NotGiven = NOT_GIVEN,
1629
+ dd_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1630
+ dd_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1631
+ dd_wt_kn: float | NotGiven = NOT_GIVEN,
1632
+ end_lat: float | NotGiven = NOT_GIVEN,
1633
+ end_lon: float | NotGiven = NOT_GIVEN,
1634
+ id_site: str | NotGiven = NOT_GIVEN,
1635
+ lcn: int | NotGiven = NOT_GIVEN,
1636
+ lda_ft: float | NotGiven = NOT_GIVEN,
1637
+ lda_m: float | NotGiven = NOT_GIVEN,
1638
+ length_ft: float | NotGiven = NOT_GIVEN,
1639
+ length_m: float | NotGiven = NOT_GIVEN,
1640
+ lighting: bool | NotGiven = NOT_GIVEN,
1641
+ lights_aprch: bool | NotGiven = NOT_GIVEN,
1642
+ lights_cl: bool | NotGiven = NOT_GIVEN,
1643
+ lights_ols: bool | NotGiven = NOT_GIVEN,
1644
+ lights_papi: bool | NotGiven = NOT_GIVEN,
1645
+ lights_reil: bool | NotGiven = NOT_GIVEN,
1646
+ lights_rwy: bool | NotGiven = NOT_GIVEN,
1647
+ lights_seqfl: bool | NotGiven = NOT_GIVEN,
1648
+ lights_tdzl: bool | NotGiven = NOT_GIVEN,
1649
+ lights_unkn: bool | NotGiven = NOT_GIVEN,
1650
+ lights_vasi: bool | NotGiven = NOT_GIVEN,
1651
+ material: str | NotGiven = NOT_GIVEN,
1652
+ obstacle: bool | NotGiven = NOT_GIVEN,
1653
+ origin: str | NotGiven = NOT_GIVEN,
1654
+ pcn: str | NotGiven = NOT_GIVEN,
1655
+ point_reference: str | NotGiven = NOT_GIVEN,
1656
+ primary: bool | NotGiven = NOT_GIVEN,
1657
+ raw_wbc: str | NotGiven = NOT_GIVEN,
1658
+ sbtt_wt_kip: float | NotGiven = NOT_GIVEN,
1659
+ sbtt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1660
+ sbtt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1661
+ sbtt_wt_kn: float | NotGiven = NOT_GIVEN,
1662
+ start_lat: float | NotGiven = NOT_GIVEN,
1663
+ start_lon: float | NotGiven = NOT_GIVEN,
1664
+ st_wt_kip: float | NotGiven = NOT_GIVEN,
1665
+ st_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1666
+ st_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1667
+ st_wt_kn: float | NotGiven = NOT_GIVEN,
1668
+ s_wt_kip: float | NotGiven = NOT_GIVEN,
1669
+ s_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1670
+ s_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1671
+ s_wt_kn: float | NotGiven = NOT_GIVEN,
1672
+ tdt_wtkip: float | NotGiven = NOT_GIVEN,
1673
+ tdt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1674
+ tdt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1675
+ tdt_wt_kn: float | NotGiven = NOT_GIVEN,
1676
+ trt_wt_kip: float | NotGiven = NOT_GIVEN,
1677
+ trt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1678
+ trt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1679
+ trt_wt_kn: float | NotGiven = NOT_GIVEN,
1680
+ tt_wt_kip: float | NotGiven = NOT_GIVEN,
1681
+ tt_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1682
+ tt_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1683
+ tt_wt_kn: float | NotGiven = NOT_GIVEN,
1684
+ t_wt_kip: float | NotGiven = NOT_GIVEN,
1685
+ t_wt_kip_mod: float | NotGiven = NOT_GIVEN,
1686
+ t_wt_kip_mod_note: str | NotGiven = NOT_GIVEN,
1687
+ t_wt_kn: float | NotGiven = NOT_GIVEN,
1688
+ width_ft: float | NotGiven = NOT_GIVEN,
1689
+ width_m: float | NotGiven = NOT_GIVEN,
1690
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
1691
+ # The extra values given here take precedence over values defined on the client or passed to this method.
1692
+ extra_headers: Headers | None = None,
1693
+ extra_query: Query | None = None,
1694
+ extra_body: Body | None = None,
1695
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
1696
+ ) -> None:
1697
+ """Service operation to update a single Surface.
1698
+
1699
+ A specific role is required to
1700
+ perform this service operation. Please contact the UDL team for assistance.
1701
+
1702
+ Args:
1703
+ classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
1704
+
1705
+ data_mode: Indicator of whether the data is REAL, TEST, SIMULATED, or EXERCISE data.
1706
+
1707
+ name: The surface name or identifier.
1708
+
1709
+ source: Source of the data.
1710
+
1711
+ type: The surface type of this record (e.g. RUNWAY, TAXIWAY, PARKING).
1712
+
1713
+ body_id: Unique identifier of the record, auto-generated by the system.
1714
+
1715
+ alt_site_id: Alternate site identifier provided by the source.
1716
+
1717
+ condition: The surface condition (e.g. GOOD, FAIR, POOR, SERIOUS, FAILED, CLOSED, UNKNOWN).
1718
+
1719
+ ddt_wt_kip: The max weight allowable on this surface type for a DDT-type (double dual
1720
+ tandem) landing gear configuration, in kilopounds (kip).Note: The corresponding
1721
+ equivalent field is not converted by the UDL and may or may not be supplied by
1722
+ the provider. The provider/consumer is responsible for all unit conversions.
1723
+
1724
+ ddt_wt_kip_mod: The modified max weight allowable on this surface type for a DDT-type (double
1725
+ dual tandem) landing gear configuration, in kilopounds (kip).
1726
+
1727
+ ddt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1728
+ indicating the max weight allowable on this surface for a DDT-type (double dual
1729
+ tandem) landing gear configuration. For more information, contact the provider
1730
+ source.
1731
+
1732
+ ddt_wt_kn: The max weight allowable on this surface type for a DDT-type (double dual
1733
+ tandem) landing gear configuration, in kilonewtons (kN).Note: The corresponding
1734
+ equivalent field is not converted by the UDL and may or may not be supplied by
1735
+ the provider. The provider/consumer is responsible for all unit conversions.
1736
+
1737
+ dd_wt_kip: The max weight allowable on this surface type for an FAA 2D-type (twin tandem)
1738
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1739
+ equivalent field is not converted by the UDL and may or may not be supplied by
1740
+ the provider. The provider/consumer is responsible for all unit conversions.
1741
+
1742
+ dd_wt_kip_mod: The modified max weight allowable on this surface type for an FAA 2D-type (twin
1743
+ tandem) landing gear configuration, in kilopounds (kip).
1744
+
1745
+ dd_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1746
+ indicating the max weight allowable on this surface for an FAA 2D-type (twin
1747
+ tandem) landing gear configuration. For more information, contact the provider
1748
+ source.
1749
+
1750
+ dd_wt_kn: The max weight allowable on this surface type for an FAA 2D-type (twin tandem)
1751
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1752
+ equivalent field is not converted by the UDL and may or may not be supplied by
1753
+ the provider. The provider/consumer is responsible for all unit conversions.
1754
+
1755
+ end_lat: WGS-84 latitude of the coordinate representing the end-point of a surface, in
1756
+ degrees. -90 to 90 degrees (negative values south of equator).
1757
+
1758
+ end_lon: WGS-84 longitude of the coordinate representing the end-point of a surface, in
1759
+ degrees. -180 to 180 degrees (negative values west of Prime Meridian).
1760
+
1761
+ id_site: The unique identifier of the Site record that contains location information
1762
+ about this surface.
1763
+
1764
+ lcn: Load classification number or pavement rating which ranks aircraft on a scale of
1765
+ 1 to 120.
1766
+
1767
+ lda_ft: The landing distance available for the runway, in feet. Applicable for runway
1768
+ surface types only.
1769
+
1770
+ lda_m: The landing distance available for the runway, in meters. Applicable for runway
1771
+ surface types only.
1772
+
1773
+ length_ft: The length of the surface type, in feet. Applicable for runway and parking
1774
+ surface types.
1775
+
1776
+ length_m: The length of the surface type, in meters. Applicable for runway and parking
1777
+ surface types.
1778
+
1779
+ lighting: Flag indicating the surface has lighting.
1780
+
1781
+ lights_aprch: Flag indicating the runway has approach lights. Applicable for runway surface
1782
+ types only.
1783
+
1784
+ lights_cl: Flag indicating the runway has centerline lights. Applicable for runway surface
1785
+ types only.
1786
+
1787
+ lights_ols: Flag indicating the runway has Optical Landing System (OLS) lights. Applicable
1788
+ for runway surface types only.
1789
+
1790
+ lights_papi: Flag indicating the runway has Precision Approach Path Indicator (PAPI) lights.
1791
+ Applicable for runway surface types only.
1792
+
1793
+ lights_reil: Flag indicating the runway has Runway End Identifier Lights (REIL). Applicable
1794
+ for runway surface types only.
1795
+
1796
+ lights_rwy: Flag indicating the runway has edge lighting. Applicable for runway surface
1797
+ types only.
1798
+
1799
+ lights_seqfl: Flag indicating the runway has Sequential Flashing (SEQFL) lights. Applicable
1800
+ for runway surface types only.
1801
+
1802
+ lights_tdzl: Flag indicating the runway has Touchdown Zone lights. Applicable for runway
1803
+ surface types only.
1804
+
1805
+ lights_unkn: Flag indicating the runway lighting is unknown. Applicable for runway surface
1806
+ types only.
1807
+
1808
+ lights_vasi: Flag indicating the runway has Visual Approach Slope Indicator (VASI) lights.
1809
+ Applicable for runway surface types only.
1810
+
1811
+ material: The surface material (e.g. Asphalt, Concrete, Dirt).
1812
+
1813
+ obstacle: Flag indicating that one or more obstacles or obstructions exist in the
1814
+ proximity of this surface.
1815
+
1816
+ origin: Originating system or organization which produced the data, if different from
1817
+ the source. The origin may be different than the source if the source was a
1818
+ mediating system which forwarded the data on behalf of the origin system. If
1819
+ null, the source may be assumed to be the origin.
1820
+
1821
+ pcn: Pavement classification number (PCN) and tire pressure code.
1822
+
1823
+ point_reference: Description of the surface and its dimensions or how it is measured or oriented.
1824
+
1825
+ primary: Flag indicating this is the primary runway. Applicable for runway surface types
1826
+ only.
1827
+
1828
+ raw_wbc: Raw weight bearing capacity value or pavement strength.
1829
+
1830
+ sbtt_wt_kip: The max weight allowable on this surface type for an SBTT-type (single belly
1831
+ twin tandem) landing gear configuration, in kilopounds (kip).Note: The
1832
+ corresponding equivalent field is not converted by the UDL and may or may not be
1833
+ supplied by the provider. The provider/consumer is responsible for all unit
1834
+ conversions.
1835
+
1836
+ sbtt_wt_kip_mod: The modified max weight allowable on this surface type for an SBTT-type (single
1837
+ belly twin tandem) landing gear configuration, in kilopounds (kip).
1838
+
1839
+ sbtt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1840
+ indicating the max weight allowable on this surface for an SBTT-type (single
1841
+ belly twin tandem) landing gear configuration. For more information, contact the
1842
+ provider source.
1843
+
1844
+ sbtt_wt_kn: The max weight allowable on this surface type for an SBTT-type (single belly
1845
+ twin tandem) landing gear configuration, in kilonewtons (kN).Note: The
1846
+ corresponding equivalent field is not converted by the UDL and may or may not be
1847
+ supplied by the provider. The provider/consumer is responsible for all unit
1848
+ conversions.
1849
+
1850
+ start_lat: WGS-84 latitude of the coordinate representing the start-point of a surface, in
1851
+ degrees. -90 to 90 degrees (negative values south of equator).
1852
+
1853
+ start_lon: WGS-84 longitude of the coordinate representing the start-point of a surface, in
1854
+ degrees. -180 to 180 degrees (negative values west of Prime Meridian).
1855
+
1856
+ st_wt_kip: The max weight allowable on this surface type for an ST-type (single tandem)
1857
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1858
+ equivalent field is not converted by the UDL and may or may not be supplied by
1859
+ the provider. The provider/consumer is responsible for all unit conversions.
1860
+
1861
+ st_wt_kip_mod: The modified max weight allowable on this surface type for an ST-type (single
1862
+ tandem) landing gear configuration, in kilopounds (kip).
1863
+
1864
+ st_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1865
+ indicating the max weight allowable on this surface for an ST-type (single
1866
+ tandem) landing gear configuration. For more information, contact the provider
1867
+ source.
1868
+
1869
+ st_wt_kn: The max weight allowable on this surface type for an ST-type (single tandem)
1870
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1871
+ equivalent field is not converted by the UDL and may or may not be supplied by
1872
+ the provider. The provider/consumer is responsible for all unit conversions.
1873
+
1874
+ s_wt_kip: The max weight allowable on this surface type for an S-type (single) landing
1875
+ gear configuration, in kilopounds (kip). Note: The corresponding equivalent
1876
+ field is not converted by the UDL and may or may not be supplied by the
1877
+ provider. The provider/consumer is responsible for all unit conversions.
1878
+
1879
+ s_wt_kip_mod: The modified max weight allowable on this surface type for an S-type (single)
1880
+ landing gear configuration, in kilopounds (kip).
1881
+
1882
+ s_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1883
+ indicating the max weight allowable on this surface for an S-type (single)
1884
+ landing gear configuration. For more information, contact the provider source.
1885
+
1886
+ s_wt_kn: The max weight allowable on this surface type for an S-type (single) landing
1887
+ gear configuration, in kilonewtons (kN).Note: The corresponding equivalent field
1888
+ is not converted by the UDL and may or may not be supplied by the provider. The
1889
+ provider/consumer is responsible for all unit conversions.
1890
+
1891
+ tdt_wtkip: The max weight allowable on this surface type for a TDT-type (twin delta tandem)
1892
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1893
+ equivalent field is not converted by the UDL and may or may not be supplied by
1894
+ the provider. The provider/consumer is responsible for all unit conversions.
1895
+
1896
+ tdt_wt_kip_mod: The modified max weight allowable on this surface type for a TDT-type (twin
1897
+ delta tandem) landing gear configuration, in kilopounds (kip).
1898
+
1899
+ tdt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1900
+ indicating the max weight allowable on this surface for a TDT-type (twin delta
1901
+ tandem) landing gear configuration. For more information, contact the provider
1902
+ source.
1903
+
1904
+ tdt_wt_kn: The max weight allowable on this surface type for a TDT-type (twin delta tandem)
1905
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1906
+ equivalent field is not converted by the UDL and may or may not be supplied by
1907
+ the provider. The provider/consumer is responsible for all unit conversions.
1908
+
1909
+ trt_wt_kip: The max weight allowable on this surface type for a TRT-type (triple tandem)
1910
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1911
+ equivalent field is not converted by the UDL and may or may not be supplied by
1912
+ the provider. The provider/consumer is responsible for all unit conversions.
1913
+
1914
+ trt_wt_kip_mod: The modified max weight allowable on this surface type for a TRT-type (triple
1915
+ tandem) landing gear configuration, in kilopounds (kip).
1916
+
1917
+ trt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1918
+ indicating the max weight allowable on this surface for a TRT-type (triple
1919
+ tandem) landing gear configuration. For more information, contact the provider
1920
+ source.
1921
+
1922
+ trt_wt_kn: The max weight allowable on this surface type for a TRT-type (triple tandem)
1923
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1924
+ equivalent field is not converted by the UDL and may or may not be supplied by
1925
+ the provider. The provider/consumer is responsible for all unit conversions.
1926
+
1927
+ tt_wt_kip: The max weight allowable on this surface type for a GDSS TT-type (twin tandem)
1928
+ landing gear configuration, in kilopounds (kip).Note: The corresponding
1929
+ equivalent field is not converted by the UDL and may or may not be supplied by
1930
+ the provider. The provider/consumer is responsible for all unit conversions.
1931
+
1932
+ tt_wt_kip_mod: The modified max weight allowable on this surface type for a GDSS TT-type (twin
1933
+ tandem) landing gear configuration, in kilopounds (kip).
1934
+
1935
+ tt_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1936
+ indicating the max weight allowable on this surface for a GDSS TT-type (twin
1937
+ tandem) landing gear configuration. For more information, contact the provider
1938
+ source.
1939
+
1940
+ tt_wt_kn: The max weight allowable on this surface type for a GDSS TT-type (twin tandem)
1941
+ landing gear configuration, in kilonewtons (kN).Note: The corresponding
1942
+ equivalent field is not converted by the UDL and may or may not be supplied by
1943
+ the provider. The provider/consumer is responsible for all unit conversions.
1944
+
1945
+ t_wt_kip: The max weight allowable on this surface type for a T-type (twin (dual)) landing
1946
+ gear configuration, in kilopounds (kip).Note: The corresponding equivalent field
1947
+ is not converted by the UDL and may or may not be supplied by the provider. The
1948
+ provider/consumer is responsible for all unit conversions.
1949
+
1950
+ t_wt_kip_mod: The modified max weight allowable on this surface type for a T-type (twin
1951
+ (dual)) landing gear configuration, in kilopounds (kip).
1952
+
1953
+ t_wt_kip_mod_note: User input rationale for the manual modification of the prescribed value
1954
+ indicating the max weight allowable on this surface for a T-type (twin(dual))
1955
+ landing gear configuration. For more information, contact the provider source.
1956
+
1957
+ t_wt_kn: The max weight allowable on this surface type for a T-type (twin (dual)) landing
1958
+ gear configuration, in kilonewtons (kN).Note: The corresponding equivalent field
1959
+ is not converted by the UDL and may or may not be supplied by the provider. The
1960
+ provider/consumer is responsible for all unit conversions.
1961
+
1962
+ width_ft: The width of the surface type, in feet.
1963
+
1964
+ width_m: The width of the surface type, in meters.
1965
+
1966
+ extra_headers: Send extra headers
1967
+
1968
+ extra_query: Add additional query parameters to the request
1969
+
1970
+ extra_body: Add additional JSON properties to the request
1971
+
1972
+ timeout: Override the client-level default timeout for this request, in seconds
1973
+ """
1974
+ if not path_id:
1975
+ raise ValueError(f"Expected a non-empty value for `path_id` but received {path_id!r}")
1976
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
1977
+ return await self._put(
1978
+ f"/udl/surface/{path_id}",
1979
+ body=await async_maybe_transform(
1980
+ {
1981
+ "classification_marking": classification_marking,
1982
+ "data_mode": data_mode,
1983
+ "name": name,
1984
+ "source": source,
1985
+ "type": type,
1986
+ "body_id": body_id,
1987
+ "alt_site_id": alt_site_id,
1988
+ "condition": condition,
1989
+ "ddt_wt_kip": ddt_wt_kip,
1990
+ "ddt_wt_kip_mod": ddt_wt_kip_mod,
1991
+ "ddt_wt_kip_mod_note": ddt_wt_kip_mod_note,
1992
+ "ddt_wt_kn": ddt_wt_kn,
1993
+ "dd_wt_kip": dd_wt_kip,
1994
+ "dd_wt_kip_mod": dd_wt_kip_mod,
1995
+ "dd_wt_kip_mod_note": dd_wt_kip_mod_note,
1996
+ "dd_wt_kn": dd_wt_kn,
1997
+ "end_lat": end_lat,
1998
+ "end_lon": end_lon,
1999
+ "id_site": id_site,
2000
+ "lcn": lcn,
2001
+ "lda_ft": lda_ft,
2002
+ "lda_m": lda_m,
2003
+ "length_ft": length_ft,
2004
+ "length_m": length_m,
2005
+ "lighting": lighting,
2006
+ "lights_aprch": lights_aprch,
2007
+ "lights_cl": lights_cl,
2008
+ "lights_ols": lights_ols,
2009
+ "lights_papi": lights_papi,
2010
+ "lights_reil": lights_reil,
2011
+ "lights_rwy": lights_rwy,
2012
+ "lights_seqfl": lights_seqfl,
2013
+ "lights_tdzl": lights_tdzl,
2014
+ "lights_unkn": lights_unkn,
2015
+ "lights_vasi": lights_vasi,
2016
+ "material": material,
2017
+ "obstacle": obstacle,
2018
+ "origin": origin,
2019
+ "pcn": pcn,
2020
+ "point_reference": point_reference,
2021
+ "primary": primary,
2022
+ "raw_wbc": raw_wbc,
2023
+ "sbtt_wt_kip": sbtt_wt_kip,
2024
+ "sbtt_wt_kip_mod": sbtt_wt_kip_mod,
2025
+ "sbtt_wt_kip_mod_note": sbtt_wt_kip_mod_note,
2026
+ "sbtt_wt_kn": sbtt_wt_kn,
2027
+ "start_lat": start_lat,
2028
+ "start_lon": start_lon,
2029
+ "st_wt_kip": st_wt_kip,
2030
+ "st_wt_kip_mod": st_wt_kip_mod,
2031
+ "st_wt_kip_mod_note": st_wt_kip_mod_note,
2032
+ "st_wt_kn": st_wt_kn,
2033
+ "s_wt_kip": s_wt_kip,
2034
+ "s_wt_kip_mod": s_wt_kip_mod,
2035
+ "s_wt_kip_mod_note": s_wt_kip_mod_note,
2036
+ "s_wt_kn": s_wt_kn,
2037
+ "tdt_wtkip": tdt_wtkip,
2038
+ "tdt_wt_kip_mod": tdt_wt_kip_mod,
2039
+ "tdt_wt_kip_mod_note": tdt_wt_kip_mod_note,
2040
+ "tdt_wt_kn": tdt_wt_kn,
2041
+ "trt_wt_kip": trt_wt_kip,
2042
+ "trt_wt_kip_mod": trt_wt_kip_mod,
2043
+ "trt_wt_kip_mod_note": trt_wt_kip_mod_note,
2044
+ "trt_wt_kn": trt_wt_kn,
2045
+ "tt_wt_kip": tt_wt_kip,
2046
+ "tt_wt_kip_mod": tt_wt_kip_mod,
2047
+ "tt_wt_kip_mod_note": tt_wt_kip_mod_note,
2048
+ "tt_wt_kn": tt_wt_kn,
2049
+ "t_wt_kip": t_wt_kip,
2050
+ "t_wt_kip_mod": t_wt_kip_mod,
2051
+ "t_wt_kip_mod_note": t_wt_kip_mod_note,
2052
+ "t_wt_kn": t_wt_kn,
2053
+ "width_ft": width_ft,
2054
+ "width_m": width_m,
2055
+ },
2056
+ surface_update_params.SurfaceUpdateParams,
2057
+ ),
2058
+ options=make_request_options(
2059
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
2060
+ ),
2061
+ cast_to=NoneType,
2062
+ )
2063
+
2064
+ async def list(
2065
+ self,
2066
+ *,
2067
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2068
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2069
+ extra_headers: Headers | None = None,
2070
+ extra_query: Query | None = None,
2071
+ extra_body: Body | None = None,
2072
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2073
+ ) -> SurfaceListResponse:
2074
+ """
2075
+ Service operation to dynamically query data by a variety of query parameters not
2076
+ specified in this API documentation. See the queryhelp operation
2077
+ (/udl/&lt;datatype&gt;/queryhelp) for more details on valid/required query
2078
+ parameter information.
2079
+ """
2080
+ return await self._get(
2081
+ "/udl/surface",
2082
+ options=make_request_options(
2083
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
2084
+ ),
2085
+ cast_to=SurfaceListResponse,
2086
+ )
2087
+
2088
+ async def delete(
2089
+ self,
2090
+ id: str,
2091
+ *,
2092
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2093
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2094
+ extra_headers: Headers | None = None,
2095
+ extra_query: Query | None = None,
2096
+ extra_body: Body | None = None,
2097
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2098
+ ) -> None:
2099
+ """
2100
+ Service operation to delete a Surface object specified by the passed ID path
2101
+ parameter. A specific role is required to perform this service operation. Please
2102
+ contact the UDL team for assistance.
2103
+
2104
+ Args:
2105
+ extra_headers: Send extra headers
2106
+
2107
+ extra_query: Add additional query parameters to the request
2108
+
2109
+ extra_body: Add additional JSON properties to the request
2110
+
2111
+ timeout: Override the client-level default timeout for this request, in seconds
2112
+ """
2113
+ if not id:
2114
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
2115
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
2116
+ return await self._delete(
2117
+ f"/udl/surface/{id}",
2118
+ options=make_request_options(
2119
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
2120
+ ),
2121
+ cast_to=NoneType,
2122
+ )
2123
+
2124
+ async def count(
2125
+ self,
2126
+ *,
2127
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2128
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2129
+ extra_headers: Headers | None = None,
2130
+ extra_query: Query | None = None,
2131
+ extra_body: Body | None = None,
2132
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2133
+ ) -> str:
2134
+ """
2135
+ Service operation to return the count of records satisfying the specified query
2136
+ parameters. This operation is useful to determine how many records pass a
2137
+ particular query criteria without retrieving large amounts of data. See the
2138
+ queryhelp operation (/udl/&lt;datatype&gt;/queryhelp) for more details on
2139
+ valid/required query parameter information.
2140
+ """
2141
+ extra_headers = {"Accept": "text/plain", **(extra_headers or {})}
2142
+ return await self._get(
2143
+ "/udl/surface/count",
2144
+ options=make_request_options(
2145
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
2146
+ ),
2147
+ cast_to=str,
2148
+ )
2149
+
2150
+ async def get(
2151
+ self,
2152
+ id: str,
2153
+ *,
2154
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2155
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2156
+ extra_headers: Headers | None = None,
2157
+ extra_query: Query | None = None,
2158
+ extra_body: Body | None = None,
2159
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2160
+ ) -> SurfaceGetResponse:
2161
+ """
2162
+ Service operation to get a single Surface record by its unique ID passed as a
2163
+ path parameter.
2164
+
2165
+ Args:
2166
+ extra_headers: Send extra headers
2167
+
2168
+ extra_query: Add additional query parameters to the request
2169
+
2170
+ extra_body: Add additional JSON properties to the request
2171
+
2172
+ timeout: Override the client-level default timeout for this request, in seconds
2173
+ """
2174
+ if not id:
2175
+ raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
2176
+ return await self._get(
2177
+ f"/udl/surface/{id}",
2178
+ options=make_request_options(
2179
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
2180
+ ),
2181
+ cast_to=SurfaceGetResponse,
2182
+ )
2183
+
2184
+ async def queryhelp(
2185
+ self,
2186
+ *,
2187
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2188
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2189
+ extra_headers: Headers | None = None,
2190
+ extra_query: Query | None = None,
2191
+ extra_body: Body | None = None,
2192
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2193
+ ) -> None:
2194
+ """
2195
+ Service operation to provide detailed information on available dynamic query
2196
+ parameters for a particular data type.
2197
+ """
2198
+ extra_headers = {"Accept": "*/*", **(extra_headers or {})}
2199
+ return await self._get(
2200
+ "/udl/surface/queryhelp",
2201
+ options=make_request_options(
2202
+ extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
2203
+ ),
2204
+ cast_to=NoneType,
2205
+ )
2206
+
2207
+ async def tuple(
2208
+ self,
2209
+ *,
2210
+ columns: str,
2211
+ # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
2212
+ # The extra values given here take precedence over values defined on the client or passed to this method.
2213
+ extra_headers: Headers | None = None,
2214
+ extra_query: Query | None = None,
2215
+ extra_body: Body | None = None,
2216
+ timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
2217
+ ) -> SurfaceTupleResponse:
2218
+ """
2219
+ Service operation to dynamically query data and only return specified
2220
+ columns/fields. Requested columns are specified by the 'columns' query parameter
2221
+ and should be a comma separated list of valid fields for the specified data
2222
+ type. classificationMarking is always returned. See the queryhelp operation
2223
+ (/udl/<datatype>/queryhelp) for more details on valid/required query parameter
2224
+ information. An example URI: /udl/elset/tuple?columns=satNo,period&epoch=>now-5
2225
+ hours would return the satNo and period of elsets with an epoch greater than 5
2226
+ hours ago.
2227
+
2228
+ Args:
2229
+ columns: Comma-separated list of valid field names for this data type to be returned in
2230
+ the response. Only the fields specified will be returned as well as the
2231
+ classification marking of the data, if applicable. See the ‘queryhelp’ operation
2232
+ for a complete list of possible fields.
2233
+
2234
+ extra_headers: Send extra headers
2235
+
2236
+ extra_query: Add additional query parameters to the request
2237
+
2238
+ extra_body: Add additional JSON properties to the request
2239
+
2240
+ timeout: Override the client-level default timeout for this request, in seconds
2241
+ """
2242
+ return await self._get(
2243
+ "/udl/surface/tuple",
2244
+ options=make_request_options(
2245
+ extra_headers=extra_headers,
2246
+ extra_query=extra_query,
2247
+ extra_body=extra_body,
2248
+ timeout=timeout,
2249
+ query=await async_maybe_transform({"columns": columns}, surface_tuple_params.SurfaceTupleParams),
2250
+ ),
2251
+ cast_to=SurfaceTupleResponse,
2252
+ )
2253
+
2254
+
2255
+ class SurfaceResourceWithRawResponse:
2256
+ def __init__(self, surface: SurfaceResource) -> None:
2257
+ self._surface = surface
2258
+
2259
+ self.create = to_raw_response_wrapper(
2260
+ surface.create,
2261
+ )
2262
+ self.update = to_raw_response_wrapper(
2263
+ surface.update,
2264
+ )
2265
+ self.list = to_raw_response_wrapper(
2266
+ surface.list,
2267
+ )
2268
+ self.delete = to_raw_response_wrapper(
2269
+ surface.delete,
2270
+ )
2271
+ self.count = to_raw_response_wrapper(
2272
+ surface.count,
2273
+ )
2274
+ self.get = to_raw_response_wrapper(
2275
+ surface.get,
2276
+ )
2277
+ self.queryhelp = to_raw_response_wrapper(
2278
+ surface.queryhelp,
2279
+ )
2280
+ self.tuple = to_raw_response_wrapper(
2281
+ surface.tuple,
2282
+ )
2283
+
2284
+
2285
+ class AsyncSurfaceResourceWithRawResponse:
2286
+ def __init__(self, surface: AsyncSurfaceResource) -> None:
2287
+ self._surface = surface
2288
+
2289
+ self.create = async_to_raw_response_wrapper(
2290
+ surface.create,
2291
+ )
2292
+ self.update = async_to_raw_response_wrapper(
2293
+ surface.update,
2294
+ )
2295
+ self.list = async_to_raw_response_wrapper(
2296
+ surface.list,
2297
+ )
2298
+ self.delete = async_to_raw_response_wrapper(
2299
+ surface.delete,
2300
+ )
2301
+ self.count = async_to_raw_response_wrapper(
2302
+ surface.count,
2303
+ )
2304
+ self.get = async_to_raw_response_wrapper(
2305
+ surface.get,
2306
+ )
2307
+ self.queryhelp = async_to_raw_response_wrapper(
2308
+ surface.queryhelp,
2309
+ )
2310
+ self.tuple = async_to_raw_response_wrapper(
2311
+ surface.tuple,
2312
+ )
2313
+
2314
+
2315
+ class SurfaceResourceWithStreamingResponse:
2316
+ def __init__(self, surface: SurfaceResource) -> None:
2317
+ self._surface = surface
2318
+
2319
+ self.create = to_streamed_response_wrapper(
2320
+ surface.create,
2321
+ )
2322
+ self.update = to_streamed_response_wrapper(
2323
+ surface.update,
2324
+ )
2325
+ self.list = to_streamed_response_wrapper(
2326
+ surface.list,
2327
+ )
2328
+ self.delete = to_streamed_response_wrapper(
2329
+ surface.delete,
2330
+ )
2331
+ self.count = to_streamed_response_wrapper(
2332
+ surface.count,
2333
+ )
2334
+ self.get = to_streamed_response_wrapper(
2335
+ surface.get,
2336
+ )
2337
+ self.queryhelp = to_streamed_response_wrapper(
2338
+ surface.queryhelp,
2339
+ )
2340
+ self.tuple = to_streamed_response_wrapper(
2341
+ surface.tuple,
2342
+ )
2343
+
2344
+
2345
+ class AsyncSurfaceResourceWithStreamingResponse:
2346
+ def __init__(self, surface: AsyncSurfaceResource) -> None:
2347
+ self._surface = surface
2348
+
2349
+ self.create = async_to_streamed_response_wrapper(
2350
+ surface.create,
2351
+ )
2352
+ self.update = async_to_streamed_response_wrapper(
2353
+ surface.update,
2354
+ )
2355
+ self.list = async_to_streamed_response_wrapper(
2356
+ surface.list,
2357
+ )
2358
+ self.delete = async_to_streamed_response_wrapper(
2359
+ surface.delete,
2360
+ )
2361
+ self.count = async_to_streamed_response_wrapper(
2362
+ surface.count,
2363
+ )
2364
+ self.get = async_to_streamed_response_wrapper(
2365
+ surface.get,
2366
+ )
2367
+ self.queryhelp = async_to_streamed_response_wrapper(
2368
+ surface.queryhelp,
2369
+ )
2370
+ self.tuple = async_to_streamed_response_wrapper(
2371
+ surface.tuple,
2372
+ )