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