udl-sdk 0.1.0a6__py3-none-any.whl → 0.1.0a8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- udl_sdk-0.1.0a8.dist-info/METADATA +509 -0
- udl_sdk-0.1.0a8.dist-info/RECORD +2466 -0
- unifieddatalibrary/__init__.py +5 -0
- unifieddatalibrary/_client.py +656 -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 +147 -24
- 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 +1117 -99
- 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 +908 -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.0a8.dist-info}/WHEEL +0 -0
- {udl_sdk-0.1.0a6.dist-info → udl_sdk-0.1.0a8.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
@@ -1,2069 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
2
|
-
|
3
|
-
from __future__ import annotations
|
4
|
-
|
5
|
-
from typing import List, Union, Iterable
|
6
|
-
from datetime import datetime
|
7
|
-
from typing_extensions import Literal
|
8
|
-
|
9
|
-
import httpx
|
10
|
-
|
11
|
-
from ...types import (
|
12
|
-
statevector_list_params,
|
13
|
-
statevector_count_params,
|
14
|
-
statevector_tuple_params,
|
15
|
-
statevector_create_params,
|
16
|
-
)
|
17
|
-
from .current import (
|
18
|
-
CurrentResource,
|
19
|
-
AsyncCurrentResource,
|
20
|
-
CurrentResourceWithRawResponse,
|
21
|
-
AsyncCurrentResourceWithRawResponse,
|
22
|
-
CurrentResourceWithStreamingResponse,
|
23
|
-
AsyncCurrentResourceWithStreamingResponse,
|
24
|
-
)
|
25
|
-
from .history import (
|
26
|
-
HistoryResource,
|
27
|
-
AsyncHistoryResource,
|
28
|
-
HistoryResourceWithRawResponse,
|
29
|
-
AsyncHistoryResourceWithRawResponse,
|
30
|
-
HistoryResourceWithStreamingResponse,
|
31
|
-
AsyncHistoryResourceWithStreamingResponse,
|
32
|
-
)
|
33
|
-
from ..._types import NOT_GIVEN, Body, Query, Headers, NoneType, NotGiven
|
34
|
-
from ..._utils import maybe_transform, async_maybe_transform
|
35
|
-
from ..._compat import cached_property
|
36
|
-
from ..._resource import SyncAPIResource, AsyncAPIResource
|
37
|
-
from ..._response import (
|
38
|
-
to_raw_response_wrapper,
|
39
|
-
to_streamed_response_wrapper,
|
40
|
-
async_to_raw_response_wrapper,
|
41
|
-
async_to_streamed_response_wrapper,
|
42
|
-
)
|
43
|
-
from ..._base_client import make_request_options
|
44
|
-
from ...types.state_vector_full import StateVectorFull
|
45
|
-
from ...types.state_vector_ingest_param import StateVectorIngestParam
|
46
|
-
from ...types.statevector_list_response import StatevectorListResponse
|
47
|
-
from ...types.statevector_tuple_response import StatevectorTupleResponse
|
48
|
-
|
49
|
-
__all__ = ["StatevectorResource", "AsyncStatevectorResource"]
|
50
|
-
|
51
|
-
|
52
|
-
class StatevectorResource(SyncAPIResource):
|
53
|
-
@cached_property
|
54
|
-
def history(self) -> HistoryResource:
|
55
|
-
return HistoryResource(self._client)
|
56
|
-
|
57
|
-
@cached_property
|
58
|
-
def current(self) -> CurrentResource:
|
59
|
-
return CurrentResource(self._client)
|
60
|
-
|
61
|
-
@cached_property
|
62
|
-
def with_raw_response(self) -> StatevectorResourceWithRawResponse:
|
63
|
-
"""
|
64
|
-
This property can be used as a prefix for any HTTP method call to return
|
65
|
-
the raw response object instead of the parsed content.
|
66
|
-
|
67
|
-
For more information, see https://www.github.com/rsivilli-bluestaq/udl-python-sdk#accessing-raw-response-data-eg-headers
|
68
|
-
"""
|
69
|
-
return StatevectorResourceWithRawResponse(self)
|
70
|
-
|
71
|
-
@cached_property
|
72
|
-
def with_streaming_response(self) -> StatevectorResourceWithStreamingResponse:
|
73
|
-
"""
|
74
|
-
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
75
|
-
|
76
|
-
For more information, see https://www.github.com/rsivilli-bluestaq/udl-python-sdk#with_streaming_response
|
77
|
-
"""
|
78
|
-
return StatevectorResourceWithStreamingResponse(self)
|
79
|
-
|
80
|
-
def create(
|
81
|
-
self,
|
82
|
-
*,
|
83
|
-
classification_marking: str,
|
84
|
-
data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
|
85
|
-
epoch: Union[str, datetime],
|
86
|
-
source: str,
|
87
|
-
actual_od_span: float | NotGiven = NOT_GIVEN,
|
88
|
-
algorithm: str | NotGiven = NOT_GIVEN,
|
89
|
-
alt1_reference_frame: str | NotGiven = NOT_GIVEN,
|
90
|
-
alt2_reference_frame: str | NotGiven = NOT_GIVEN,
|
91
|
-
area: float | NotGiven = NOT_GIVEN,
|
92
|
-
b_dot: float | NotGiven = NOT_GIVEN,
|
93
|
-
cm_offset: float | NotGiven = NOT_GIVEN,
|
94
|
-
cov: Iterable[float] | NotGiven = NOT_GIVEN,
|
95
|
-
cov_method: str | NotGiven = NOT_GIVEN,
|
96
|
-
cov_reference_frame: Literal["J2000", "UVW"] | NotGiven = NOT_GIVEN,
|
97
|
-
descriptor: str | NotGiven = NOT_GIVEN,
|
98
|
-
drag_area: float | NotGiven = NOT_GIVEN,
|
99
|
-
drag_coeff: float | NotGiven = NOT_GIVEN,
|
100
|
-
drag_model: str | NotGiven = NOT_GIVEN,
|
101
|
-
edr: float | NotGiven = NOT_GIVEN,
|
102
|
-
eq_cov: Iterable[float] | NotGiven = NOT_GIVEN,
|
103
|
-
error_control: float | NotGiven = NOT_GIVEN,
|
104
|
-
fixed_step: bool | NotGiven = NOT_GIVEN,
|
105
|
-
geopotential_model: str | NotGiven = NOT_GIVEN,
|
106
|
-
iau1980_terms: int | NotGiven = NOT_GIVEN,
|
107
|
-
id_orbit_determination: str | NotGiven = NOT_GIVEN,
|
108
|
-
id_state_vector: str | NotGiven = NOT_GIVEN,
|
109
|
-
integrator_mode: str | NotGiven = NOT_GIVEN,
|
110
|
-
in_track_thrust: bool | NotGiven = NOT_GIVEN,
|
111
|
-
last_ob_end: Union[str, datetime] | NotGiven = NOT_GIVEN,
|
112
|
-
last_ob_start: Union[str, datetime] | NotGiven = NOT_GIVEN,
|
113
|
-
leap_second_time: Union[str, datetime] | NotGiven = NOT_GIVEN,
|
114
|
-
lunar_solar: bool | NotGiven = NOT_GIVEN,
|
115
|
-
mass: float | NotGiven = NOT_GIVEN,
|
116
|
-
obs_available: int | NotGiven = NOT_GIVEN,
|
117
|
-
obs_used: int | NotGiven = NOT_GIVEN,
|
118
|
-
origin: str | NotGiven = NOT_GIVEN,
|
119
|
-
orig_object_id: str | NotGiven = NOT_GIVEN,
|
120
|
-
partials: str | NotGiven = NOT_GIVEN,
|
121
|
-
pedigree: str | NotGiven = NOT_GIVEN,
|
122
|
-
polar_motion_x: float | NotGiven = NOT_GIVEN,
|
123
|
-
polar_motion_y: float | NotGiven = NOT_GIVEN,
|
124
|
-
pos_unc: float | NotGiven = NOT_GIVEN,
|
125
|
-
raw_file_uri: str | NotGiven = NOT_GIVEN,
|
126
|
-
rec_od_span: float | NotGiven = NOT_GIVEN,
|
127
|
-
reference_frame: Literal["J2000", "EFG/TDR", "ECR/ECEF", "TEME", "ITRF", "GCRF"] | NotGiven = NOT_GIVEN,
|
128
|
-
residuals_acc: float | NotGiven = NOT_GIVEN,
|
129
|
-
rev_no: int | NotGiven = NOT_GIVEN,
|
130
|
-
rms: float | NotGiven = NOT_GIVEN,
|
131
|
-
sat_no: int | NotGiven = NOT_GIVEN,
|
132
|
-
sigma_pos_uvw: Iterable[float] | NotGiven = NOT_GIVEN,
|
133
|
-
sigma_vel_uvw: Iterable[float] | NotGiven = NOT_GIVEN,
|
134
|
-
solar_flux_ap_avg: float | NotGiven = NOT_GIVEN,
|
135
|
-
solar_flux_f10: float | NotGiven = NOT_GIVEN,
|
136
|
-
solar_flux_f10_avg: float | NotGiven = NOT_GIVEN,
|
137
|
-
solar_rad_press: bool | NotGiven = NOT_GIVEN,
|
138
|
-
solar_rad_press_coeff: float | NotGiven = NOT_GIVEN,
|
139
|
-
solid_earth_tides: bool | NotGiven = NOT_GIVEN,
|
140
|
-
sourced_data: List[str] | NotGiven = NOT_GIVEN,
|
141
|
-
sourced_data_types: List[Literal["EO", "RADAR", "RF", "DOA", "ELSET", "SV"]] | NotGiven = NOT_GIVEN,
|
142
|
-
srp_area: float | NotGiven = NOT_GIVEN,
|
143
|
-
step_mode: str | NotGiven = NOT_GIVEN,
|
144
|
-
step_size: float | NotGiven = NOT_GIVEN,
|
145
|
-
step_size_selection: str | NotGiven = NOT_GIVEN,
|
146
|
-
tags: List[str] | NotGiven = NOT_GIVEN,
|
147
|
-
tai_utc: float | NotGiven = NOT_GIVEN,
|
148
|
-
thrust_accel: float | NotGiven = NOT_GIVEN,
|
149
|
-
tracks_avail: int | NotGiven = NOT_GIVEN,
|
150
|
-
tracks_used: int | NotGiven = NOT_GIVEN,
|
151
|
-
transaction_id: str | NotGiven = NOT_GIVEN,
|
152
|
-
uct: bool | NotGiven = NOT_GIVEN,
|
153
|
-
ut1_rate: float | NotGiven = NOT_GIVEN,
|
154
|
-
ut1_utc: float | NotGiven = NOT_GIVEN,
|
155
|
-
vel_unc: float | NotGiven = NOT_GIVEN,
|
156
|
-
xaccel: float | NotGiven = NOT_GIVEN,
|
157
|
-
xpos: float | NotGiven = NOT_GIVEN,
|
158
|
-
xpos_alt1: float | NotGiven = NOT_GIVEN,
|
159
|
-
xpos_alt2: float | NotGiven = NOT_GIVEN,
|
160
|
-
xvel: float | NotGiven = NOT_GIVEN,
|
161
|
-
xvel_alt1: float | NotGiven = NOT_GIVEN,
|
162
|
-
xvel_alt2: float | NotGiven = NOT_GIVEN,
|
163
|
-
yaccel: float | NotGiven = NOT_GIVEN,
|
164
|
-
ypos: float | NotGiven = NOT_GIVEN,
|
165
|
-
ypos_alt1: float | NotGiven = NOT_GIVEN,
|
166
|
-
ypos_alt2: float | NotGiven = NOT_GIVEN,
|
167
|
-
yvel: float | NotGiven = NOT_GIVEN,
|
168
|
-
yvel_alt1: float | NotGiven = NOT_GIVEN,
|
169
|
-
yvel_alt2: float | NotGiven = NOT_GIVEN,
|
170
|
-
zaccel: float | NotGiven = NOT_GIVEN,
|
171
|
-
zpos: float | NotGiven = NOT_GIVEN,
|
172
|
-
zpos_alt1: float | NotGiven = NOT_GIVEN,
|
173
|
-
zpos_alt2: float | NotGiven = NOT_GIVEN,
|
174
|
-
zvel: float | NotGiven = NOT_GIVEN,
|
175
|
-
zvel_alt1: float | NotGiven = NOT_GIVEN,
|
176
|
-
zvel_alt2: float | NotGiven = NOT_GIVEN,
|
177
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
178
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
179
|
-
extra_headers: Headers | None = None,
|
180
|
-
extra_query: Query | None = None,
|
181
|
-
extra_body: Body | None = None,
|
182
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
183
|
-
) -> None:
|
184
|
-
"""
|
185
|
-
Service operation to take a single state vector as a POST body and ingest into
|
186
|
-
the database. This operation is not intended to be used for automated feeds into
|
187
|
-
UDL. Data providers should contact the UDL team for specific role assignments
|
188
|
-
and for instructions on setting up a permanent feed through an alternate
|
189
|
-
mechanism.
|
190
|
-
|
191
|
-
Args:
|
192
|
-
classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
|
193
|
-
|
194
|
-
data_mode:
|
195
|
-
Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
|
196
|
-
|
197
|
-
EXERCISE: Data pertaining to a government or military exercise. The data
|
198
|
-
may include both real and simulated data.
|
199
|
-
|
200
|
-
REAL: Data collected or produced that pertains to real-world objects,
|
201
|
-
events, and analysis.
|
202
|
-
|
203
|
-
SIMULATED: Synthetic data generated by a model to mimic real-world
|
204
|
-
datasets.
|
205
|
-
|
206
|
-
TEST: Specific datasets used to evaluate compliance with specifications and
|
207
|
-
requirements, and for validating technical, functional, and performance
|
208
|
-
characteristics.
|
209
|
-
|
210
|
-
epoch: Time of validity for state vector in ISO 8601 UTC datetime format, with
|
211
|
-
microsecond precision.
|
212
|
-
|
213
|
-
source: Source of the data.
|
214
|
-
|
215
|
-
actual_od_span: The actual time span used for the OD of the object, expressed in days.
|
216
|
-
|
217
|
-
algorithm: Optional algorithm used to produce this record.
|
218
|
-
|
219
|
-
alt1_reference_frame: The reference frame of the alternate1 (Alt1) cartesian orbital state.
|
220
|
-
|
221
|
-
alt2_reference_frame: The reference frame of the alternate2 (Alt2) cartesian orbital state.
|
222
|
-
|
223
|
-
area: The actual area of the object at it's largest cross-section, expressed in
|
224
|
-
meters^2.
|
225
|
-
|
226
|
-
b_dot: First derivative of drag/ballistic coefficient (m2/kg-s).
|
227
|
-
|
228
|
-
cm_offset: Model parameter value for center of mass offset (m).
|
229
|
-
|
230
|
-
cov: Covariance matrix, in kilometer and second based units, in the specified
|
231
|
-
covReferenceFrame. If the covReferenceFrame is null it is assumed to be J2000.
|
232
|
-
The array values (1-21) represent the lower triangular half of the
|
233
|
-
position-velocity covariance matrix. The size of the covariance matrix is
|
234
|
-
dynamic, depending on whether the covariance for position only or position &
|
235
|
-
velocity. The covariance elements are position dependent within the array with
|
236
|
-
values ordered as follows:
|
237
|
-
|
238
|
-
x y z x' y' z' DRG SRP THR
|
239
|
-
|
240
|
-
x 1
|
241
|
-
|
242
|
-
y 2 3
|
243
|
-
|
244
|
-
z 4 5 6
|
245
|
-
|
246
|
-
x' 7 8 9 10
|
247
|
-
|
248
|
-
y' 11 12 13 14 15
|
249
|
-
|
250
|
-
z' 16 17 18 19 20 21
|
251
|
-
|
252
|
-
The cov array should contain only the lower left triangle values from top left
|
253
|
-
down to bottom right, in order.
|
254
|
-
|
255
|
-
If additional covariance terms are included for DRAG, SRP, and/or THRUST, the
|
256
|
-
matrix can be extended with the following order of elements:
|
257
|
-
|
258
|
-
x y z x' y' z' DRG SRP THR
|
259
|
-
|
260
|
-
DRG 22 23 24 25 26 27 28
|
261
|
-
|
262
|
-
SRP 29 30 31 32 33 34 35 36
|
263
|
-
|
264
|
-
THR 37 38 39 40 41 42 43 44 45
|
265
|
-
|
266
|
-
cov_method: The method used to generate the covariance during the orbit determination (OD)
|
267
|
-
that produced the state vector, or whether an arbitrary, non-calculated default
|
268
|
-
value was used (CALCULATED, DEFAULT).
|
269
|
-
|
270
|
-
cov_reference_frame: The reference frame of the covariance matrix elements. If the covReferenceFrame
|
271
|
-
is null it is assumed to be J2000.
|
272
|
-
|
273
|
-
descriptor: Optional source-provided and searchable metadata or descriptor of the data.
|
274
|
-
|
275
|
-
drag_area: The effective area of the object exposed to atmospheric drag, expressed in
|
276
|
-
meters^2.
|
277
|
-
|
278
|
-
drag_coeff: Area-to-mass ratio coefficient for atmospheric ballistic drag (m2/kg).
|
279
|
-
|
280
|
-
drag_model: The Drag Model used for this vector (e.g. HARRIS-PRIESTER, JAC70, JBH09, MSIS90,
|
281
|
-
NONE, etc.).
|
282
|
-
|
283
|
-
edr: Model parameter value for energy dissipation rate (EDR) (w/kg).
|
284
|
-
|
285
|
-
eq_cov: The covariance matrix values represent the lower triangular half of the
|
286
|
-
covariance matrix in terms of equinoctial elements. The size of the
|
287
|
-
covariance matrix is dynamic. The values are outputted in order across
|
288
|
-
each row, i.e.:
|
289
|
-
|
290
|
-
1 2 3 4 5
|
291
|
-
|
292
|
-
6 7 8 9 10
|
293
|
-
|
294
|
-
: : : : :
|
295
|
-
|
296
|
-
: : : : :
|
297
|
-
|
298
|
-
51 52 53 54 55
|
299
|
-
|
300
|
-
: : : : :
|
301
|
-
|
302
|
-
: : : : :
|
303
|
-
|
304
|
-
The ordering of values is as follows:
|
305
|
-
|
306
|
-
Af
|
307
|
-
Ag L N Chi Psi
|
308
|
-
B BDOT AGOM T C1 C2 ...
|
309
|
-
|
310
|
-
Af 1
|
311
|
-
|
312
|
-
Ag 2 3
|
313
|
-
|
314
|
-
L
|
315
|
-
4 5 6
|
316
|
-
|
317
|
-
N
|
318
|
-
7 8 9 10
|
319
|
-
|
320
|
-
Chi 11 12
|
321
|
-
13 14 15
|
322
|
-
|
323
|
-
Psi 16 17
|
324
|
-
18 19 20 21
|
325
|
-
|
326
|
-
B 22
|
327
|
-
23 24 25 26 27 28
|
328
|
-
|
329
|
-
BDOT 29 30 31 32
|
330
|
-
33 34 35 36
|
331
|
-
|
332
|
-
AGOM 37 38 39 40
|
333
|
-
41 42 43 44 45
|
334
|
-
|
335
|
-
T 46
|
336
|
-
47 48 49 50 51
|
337
|
-
52 53 54 55
|
338
|
-
|
339
|
-
C1 56 57
|
340
|
-
58 59 60 61 62
|
341
|
-
63 64 65 66
|
342
|
-
|
343
|
-
C2 67 68
|
344
|
-
69 70 71 72 73
|
345
|
-
74 75 76 77 78
|
346
|
-
|
347
|
-
:
|
348
|
-
|
349
|
-
:
|
350
|
-
|
351
|
-
where C1, C2, etc, are the "consider parameters" that may be added to the
|
352
|
-
covariance matrix. The covariance matrix will be as large as the last
|
353
|
-
element/model parameter needed. In other words, if the DC solved for all 6
|
354
|
-
elements plus AGOM, the covariance matrix will be 9x9 (and the rows for B and
|
355
|
-
BDOT will be all zeros). If the covariance matrix is unavailable, the size
|
356
|
-
will be set to 0x0, and no data will follow. The cov field should contain
|
357
|
-
only the lower left triangle values from top left down to bottom right, in
|
358
|
-
order.
|
359
|
-
|
360
|
-
error_control: Integrator error control.
|
361
|
-
|
362
|
-
fixed_step: Boolean indicating use of fixed step size for this vector.
|
363
|
-
|
364
|
-
geopotential_model: Geopotential model used for this vector (e.g. EGM-96, WGS-84, WGS-72, JGM-2, or
|
365
|
-
GEM-T3), including mm degree zonals, nn degree/order tesserals. E.g. EGM-96
|
366
|
-
24Z,24T.
|
367
|
-
|
368
|
-
iau1980_terms: Number of terms used in the IAU 1980 nutation model (4, 50, or 106).
|
369
|
-
|
370
|
-
id_orbit_determination: Unique identifier of the OD solution record that produced this state vector.
|
371
|
-
This ID can be used to obtain additional information on an OrbitDetermination
|
372
|
-
object using the 'get by ID' operation (e.g. /udl/orbitdetermination/{id}). For
|
373
|
-
example, the OrbitDetermination with idOrbitDetermination = abc would be queries
|
374
|
-
as /udl/orbitdetermination/abc.
|
375
|
-
|
376
|
-
id_state_vector: Unique identifier of the record, auto-generated by the system.
|
377
|
-
|
378
|
-
integrator_mode: Integrator Mode.
|
379
|
-
|
380
|
-
in_track_thrust: Boolean indicating use of in-track thrust perturbations for this vector.
|
381
|
-
|
382
|
-
last_ob_end: The end of the time interval containing the time of the last accepted
|
383
|
-
observation, in ISO 8601 UTC format with microsecond precision. For an exact
|
384
|
-
observation time, the firstObTime and lastObTime are the same.
|
385
|
-
|
386
|
-
last_ob_start: The start of the time interval containing the time of the last accepted
|
387
|
-
observation, in ISO 8601 UTC format with microsecond precision. For an exact
|
388
|
-
observation time, the firstObTime and lastObTime are the same.
|
389
|
-
|
390
|
-
leap_second_time: Time of the next leap second after epoch in ISO 8601 UTC time. If the next leap
|
391
|
-
second is not known, the time of the previous leap second is used.
|
392
|
-
|
393
|
-
lunar_solar: Boolean indicating use of lunar/solar perturbations for this vector.
|
394
|
-
|
395
|
-
mass: The mass of the object, in kilograms.
|
396
|
-
|
397
|
-
obs_available: The number of observations available for the OD of the object.
|
398
|
-
|
399
|
-
obs_used: The number of observations accepted for the OD of the object.
|
400
|
-
|
401
|
-
origin: Originating system or organization which produced the data, if different from
|
402
|
-
the source. The origin may be different than the source if the source was a
|
403
|
-
mediating system which forwarded the data on behalf of the origin system. If
|
404
|
-
null, the source may be assumed to be the origin.
|
405
|
-
|
406
|
-
orig_object_id: Optional identifier provided by state vector source to indicate the target
|
407
|
-
onorbit object of this state vector. This may be an internal identifier and not
|
408
|
-
necessarily map to a valid satellite number.
|
409
|
-
|
410
|
-
partials: Type of partial derivatives used (ANALYTIC, FULL NUM, or FAST NUM).
|
411
|
-
|
412
|
-
pedigree: The pedigree of state vector, or methods used for its generation to include
|
413
|
-
state update/orbit determination, propagation from another state, or a state
|
414
|
-
from a calibration satellite (e.g. ORBIT_UPDATE, PROPAGATION, CALIBRATION,
|
415
|
-
CONJUNCTION, FLIGHT_PLAN).
|
416
|
-
|
417
|
-
polar_motion_x: Polar Wander Motion X (arc seconds).
|
418
|
-
|
419
|
-
polar_motion_y: Polar Wander Motion Y (arc seconds).
|
420
|
-
|
421
|
-
pos_unc: One sigma position uncertainty, in kilometers.
|
422
|
-
|
423
|
-
raw_file_uri: Optional URI location in the document repository of the raw file parsed by the
|
424
|
-
system to produce this record. To download the raw file, prepend
|
425
|
-
https://udl-hostname/scs/download?id= to this value.
|
426
|
-
|
427
|
-
rec_od_span: The recommended OD time span calculated for the object, expressed in days.
|
428
|
-
|
429
|
-
reference_frame: The reference frame of the cartesian orbital states. If the referenceFrame is
|
430
|
-
null it is assumed to be J2000.
|
431
|
-
|
432
|
-
residuals_acc: The percentage of residuals accepted in the OD of the object.
|
433
|
-
|
434
|
-
rev_no: Epoch revolution number.
|
435
|
-
|
436
|
-
rms: The Weighted Root Mean Squared (RMS) of the differential correction on the
|
437
|
-
target object that produced this vector. WRMS is a quality indicator of the
|
438
|
-
state vector update, with a value of 1.00 being optimal. WRMS applies to Batch
|
439
|
-
Least Squares (BLS) processes.
|
440
|
-
|
441
|
-
sat_no: Satellite/Catalog number of the target OnOrbit object.
|
442
|
-
|
443
|
-
sigma_pos_uvw: Array containing the standard deviation of error in target object position, U, V
|
444
|
-
and W direction respectively (km).
|
445
|
-
|
446
|
-
sigma_vel_uvw: Array containing the standard deviation of error in target object velocity, U, V
|
447
|
-
and W direction respectively (km/sec).
|
448
|
-
|
449
|
-
solar_flux_ap_avg: Average solar flux geomagnetic index.
|
450
|
-
|
451
|
-
solar_flux_f10: F10 (10.7 cm) solar flux value.
|
452
|
-
|
453
|
-
solar_flux_f10_avg: F10 (10.7 cm) solar flux 81-day average value.
|
454
|
-
|
455
|
-
solar_rad_press: Boolean indicating use of solar radiation pressure perturbations for this
|
456
|
-
vector.
|
457
|
-
|
458
|
-
solar_rad_press_coeff: Area-to-mass ratio coefficient for solar radiation pressure.
|
459
|
-
|
460
|
-
solid_earth_tides: Boolean indicating use of solid earth tide perturbations for this vector.
|
461
|
-
|
462
|
-
sourced_data: Optional array of UDL data (observation) UUIDs used to build this state vector.
|
463
|
-
See the associated sourcedDataTypes array for the specific types of observations
|
464
|
-
for the positionally corresponding UUIDs in this array (the two arrays must
|
465
|
-
match in size).
|
466
|
-
|
467
|
-
sourced_data_types: Optional array of UDL observation data types used to build this state vector
|
468
|
-
(e.g. EO, RADAR, RF, DOA). See the associated sourcedData array for the specific
|
469
|
-
UUIDs of observations for the positionally corresponding data types in this
|
470
|
-
array (the two arrays must match in size).
|
471
|
-
|
472
|
-
srp_area: The effective area of the object exposed to solar radiation pressure, expressed
|
473
|
-
in meters^2.
|
474
|
-
|
475
|
-
step_mode: Integrator step mode (AUTO, TIME, or S).
|
476
|
-
|
477
|
-
step_size: Initial integration step size (seconds).
|
478
|
-
|
479
|
-
step_size_selection: Initial step size selection (AUTO or MANUAL).
|
480
|
-
|
481
|
-
tags: Optional array of provider/source specific tags for this data, where each
|
482
|
-
element is no longer than 32 characters, used for implementing data owner
|
483
|
-
conditional access controls to restrict access to the data. Should be left null
|
484
|
-
by data providers unless conditional access controls are coordinated with the
|
485
|
-
UDL team.
|
486
|
-
|
487
|
-
tai_utc: TAI (Temps Atomique International) minus UTC (Universal Time Coordinates) offset
|
488
|
-
in seconds.
|
489
|
-
|
490
|
-
thrust_accel: Model parameter value for thrust acceleration (m/s2).
|
491
|
-
|
492
|
-
tracks_avail: The number of sensor tracks available for the OD of the object.
|
493
|
-
|
494
|
-
tracks_used: The number of sensor tracks accepted for the OD of the object.
|
495
|
-
|
496
|
-
transaction_id: Optional identifier to track a commercial or marketplace transaction executed to
|
497
|
-
produce this data.
|
498
|
-
|
499
|
-
uct: Boolean indicating this state vector was unable to be correlated to a known
|
500
|
-
object. This flag should only be set to true by data providers after an attempt
|
501
|
-
to correlate to an OnOrbit object was made and failed. If unable to correlate,
|
502
|
-
the 'origObjectId' field may be populated with an internal data provider
|
503
|
-
specific identifier.
|
504
|
-
|
505
|
-
ut1_rate: Rate of change of UT1 (milliseconds/day) - first derivative of ut1Utc.
|
506
|
-
|
507
|
-
ut1_utc: Universal Time-1 (UT1) minus UTC offset, in seconds.
|
508
|
-
|
509
|
-
vel_unc: One sigma velocity uncertainty, in kilometers/second.
|
510
|
-
|
511
|
-
xaccel: Cartesian X acceleration of target, in kilometers/second^2, in the specified
|
512
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
513
|
-
|
514
|
-
xpos: Cartesian X position of the target, in kilometers, in the specified
|
515
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
516
|
-
|
517
|
-
xpos_alt1: Cartesian X position of the target, in kilometers, in the specified
|
518
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
519
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
520
|
-
frame than the primary vector.
|
521
|
-
|
522
|
-
xpos_alt2: Cartesian X position of the target, in kilometers, in the specified
|
523
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
524
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
525
|
-
frame than the primary vector.
|
526
|
-
|
527
|
-
xvel: Cartesian X velocity of target, in kilometers/second, in the specified
|
528
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
529
|
-
|
530
|
-
xvel_alt1: Cartesian X velocity of the target, in kilometers/second, in the specified
|
531
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
532
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
533
|
-
frame than the primary vector.
|
534
|
-
|
535
|
-
xvel_alt2: Cartesian X velocity of the target, in kilometers/second, in the specified
|
536
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
537
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
538
|
-
frame than the primary vector.
|
539
|
-
|
540
|
-
yaccel: Cartesian Y acceleration of target, in kilometers/second^2, in the specified
|
541
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
542
|
-
|
543
|
-
ypos: Cartesian Y position of the target, in kilometers, in the specified
|
544
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
545
|
-
|
546
|
-
ypos_alt1: Cartesian Y position of the target, in kilometers, in the specified
|
547
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
548
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
549
|
-
frame than the primary vector.
|
550
|
-
|
551
|
-
ypos_alt2: Cartesian Y position of the target, in kilometers, in the specified
|
552
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
553
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
554
|
-
frame than the primary vector.
|
555
|
-
|
556
|
-
yvel: Cartesian Y velocity of target, in kilometers/second, in the specified
|
557
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
558
|
-
|
559
|
-
yvel_alt1: Cartesian Y velocity of the target, in kilometers/second, in the specified
|
560
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
561
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
562
|
-
frame than the primary vector.
|
563
|
-
|
564
|
-
yvel_alt2: Cartesian Y velocity of the target, in kilometers/second, in the specified
|
565
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
566
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
567
|
-
frame than the primary vector.
|
568
|
-
|
569
|
-
zaccel: Cartesian Z acceleration of target, in kilometers/second^2, in the specified
|
570
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
571
|
-
|
572
|
-
zpos: Cartesian Z position of the target, in kilometers, in the specified
|
573
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
574
|
-
|
575
|
-
zpos_alt1: Cartesian Z position of the target, in kilometers, in the specified
|
576
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
577
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
578
|
-
frame than the primary vector.
|
579
|
-
|
580
|
-
zpos_alt2: Cartesian Z position of the target, in kilometers, in the specified
|
581
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
582
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
583
|
-
frame than the primary vector.
|
584
|
-
|
585
|
-
zvel: Cartesian Z velocity of target, in kilometers/second, in the specified
|
586
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
587
|
-
|
588
|
-
zvel_alt1: Cartesian Z velocity of the target, in kilometers/second, in the specified
|
589
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
590
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
591
|
-
frame than the primary vector.
|
592
|
-
|
593
|
-
zvel_alt2: Cartesian Z velocity of the target, in kilometers/second, in the specified
|
594
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
595
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
596
|
-
frame than the primary vector.
|
597
|
-
|
598
|
-
extra_headers: Send extra headers
|
599
|
-
|
600
|
-
extra_query: Add additional query parameters to the request
|
601
|
-
|
602
|
-
extra_body: Add additional JSON properties to the request
|
603
|
-
|
604
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
605
|
-
"""
|
606
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
607
|
-
return self._post(
|
608
|
-
"/udl/statevector",
|
609
|
-
body=maybe_transform(
|
610
|
-
{
|
611
|
-
"classification_marking": classification_marking,
|
612
|
-
"data_mode": data_mode,
|
613
|
-
"epoch": epoch,
|
614
|
-
"source": source,
|
615
|
-
"actual_od_span": actual_od_span,
|
616
|
-
"algorithm": algorithm,
|
617
|
-
"alt1_reference_frame": alt1_reference_frame,
|
618
|
-
"alt2_reference_frame": alt2_reference_frame,
|
619
|
-
"area": area,
|
620
|
-
"b_dot": b_dot,
|
621
|
-
"cm_offset": cm_offset,
|
622
|
-
"cov": cov,
|
623
|
-
"cov_method": cov_method,
|
624
|
-
"cov_reference_frame": cov_reference_frame,
|
625
|
-
"descriptor": descriptor,
|
626
|
-
"drag_area": drag_area,
|
627
|
-
"drag_coeff": drag_coeff,
|
628
|
-
"drag_model": drag_model,
|
629
|
-
"edr": edr,
|
630
|
-
"eq_cov": eq_cov,
|
631
|
-
"error_control": error_control,
|
632
|
-
"fixed_step": fixed_step,
|
633
|
-
"geopotential_model": geopotential_model,
|
634
|
-
"iau1980_terms": iau1980_terms,
|
635
|
-
"id_orbit_determination": id_orbit_determination,
|
636
|
-
"id_state_vector": id_state_vector,
|
637
|
-
"integrator_mode": integrator_mode,
|
638
|
-
"in_track_thrust": in_track_thrust,
|
639
|
-
"last_ob_end": last_ob_end,
|
640
|
-
"last_ob_start": last_ob_start,
|
641
|
-
"leap_second_time": leap_second_time,
|
642
|
-
"lunar_solar": lunar_solar,
|
643
|
-
"mass": mass,
|
644
|
-
"obs_available": obs_available,
|
645
|
-
"obs_used": obs_used,
|
646
|
-
"origin": origin,
|
647
|
-
"orig_object_id": orig_object_id,
|
648
|
-
"partials": partials,
|
649
|
-
"pedigree": pedigree,
|
650
|
-
"polar_motion_x": polar_motion_x,
|
651
|
-
"polar_motion_y": polar_motion_y,
|
652
|
-
"pos_unc": pos_unc,
|
653
|
-
"raw_file_uri": raw_file_uri,
|
654
|
-
"rec_od_span": rec_od_span,
|
655
|
-
"reference_frame": reference_frame,
|
656
|
-
"residuals_acc": residuals_acc,
|
657
|
-
"rev_no": rev_no,
|
658
|
-
"rms": rms,
|
659
|
-
"sat_no": sat_no,
|
660
|
-
"sigma_pos_uvw": sigma_pos_uvw,
|
661
|
-
"sigma_vel_uvw": sigma_vel_uvw,
|
662
|
-
"solar_flux_ap_avg": solar_flux_ap_avg,
|
663
|
-
"solar_flux_f10": solar_flux_f10,
|
664
|
-
"solar_flux_f10_avg": solar_flux_f10_avg,
|
665
|
-
"solar_rad_press": solar_rad_press,
|
666
|
-
"solar_rad_press_coeff": solar_rad_press_coeff,
|
667
|
-
"solid_earth_tides": solid_earth_tides,
|
668
|
-
"sourced_data": sourced_data,
|
669
|
-
"sourced_data_types": sourced_data_types,
|
670
|
-
"srp_area": srp_area,
|
671
|
-
"step_mode": step_mode,
|
672
|
-
"step_size": step_size,
|
673
|
-
"step_size_selection": step_size_selection,
|
674
|
-
"tags": tags,
|
675
|
-
"tai_utc": tai_utc,
|
676
|
-
"thrust_accel": thrust_accel,
|
677
|
-
"tracks_avail": tracks_avail,
|
678
|
-
"tracks_used": tracks_used,
|
679
|
-
"transaction_id": transaction_id,
|
680
|
-
"uct": uct,
|
681
|
-
"ut1_rate": ut1_rate,
|
682
|
-
"ut1_utc": ut1_utc,
|
683
|
-
"vel_unc": vel_unc,
|
684
|
-
"xaccel": xaccel,
|
685
|
-
"xpos": xpos,
|
686
|
-
"xpos_alt1": xpos_alt1,
|
687
|
-
"xpos_alt2": xpos_alt2,
|
688
|
-
"xvel": xvel,
|
689
|
-
"xvel_alt1": xvel_alt1,
|
690
|
-
"xvel_alt2": xvel_alt2,
|
691
|
-
"yaccel": yaccel,
|
692
|
-
"ypos": ypos,
|
693
|
-
"ypos_alt1": ypos_alt1,
|
694
|
-
"ypos_alt2": ypos_alt2,
|
695
|
-
"yvel": yvel,
|
696
|
-
"yvel_alt1": yvel_alt1,
|
697
|
-
"yvel_alt2": yvel_alt2,
|
698
|
-
"zaccel": zaccel,
|
699
|
-
"zpos": zpos,
|
700
|
-
"zpos_alt1": zpos_alt1,
|
701
|
-
"zpos_alt2": zpos_alt2,
|
702
|
-
"zvel": zvel,
|
703
|
-
"zvel_alt1": zvel_alt1,
|
704
|
-
"zvel_alt2": zvel_alt2,
|
705
|
-
},
|
706
|
-
statevector_create_params.StatevectorCreateParams,
|
707
|
-
),
|
708
|
-
options=make_request_options(
|
709
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
710
|
-
),
|
711
|
-
cast_to=NoneType,
|
712
|
-
)
|
713
|
-
|
714
|
-
def list(
|
715
|
-
self,
|
716
|
-
*,
|
717
|
-
epoch: Union[str, datetime],
|
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
|
-
) -> StatevectorListResponse:
|
725
|
-
"""
|
726
|
-
Service operation to dynamically query data by a variety of query parameters not
|
727
|
-
specified in this API documentation. See the queryhelp operation
|
728
|
-
(/udl/<datatype>/queryhelp) for more details on valid/required query
|
729
|
-
parameter information.
|
730
|
-
|
731
|
-
Args:
|
732
|
-
epoch: Time of validity for state vector in ISO 8601 UTC datetime format, with
|
733
|
-
microsecond precision. (YYYY-MM-DDTHH:MM:SS.ssssssZ)
|
734
|
-
|
735
|
-
extra_headers: Send extra headers
|
736
|
-
|
737
|
-
extra_query: Add additional query parameters to the request
|
738
|
-
|
739
|
-
extra_body: Add additional JSON properties to the request
|
740
|
-
|
741
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
742
|
-
"""
|
743
|
-
return self._get(
|
744
|
-
"/udl/statevector",
|
745
|
-
options=make_request_options(
|
746
|
-
extra_headers=extra_headers,
|
747
|
-
extra_query=extra_query,
|
748
|
-
extra_body=extra_body,
|
749
|
-
timeout=timeout,
|
750
|
-
query=maybe_transform({"epoch": epoch}, statevector_list_params.StatevectorListParams),
|
751
|
-
),
|
752
|
-
cast_to=StatevectorListResponse,
|
753
|
-
)
|
754
|
-
|
755
|
-
def count(
|
756
|
-
self,
|
757
|
-
*,
|
758
|
-
epoch: Union[str, datetime],
|
759
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
760
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
761
|
-
extra_headers: Headers | None = None,
|
762
|
-
extra_query: Query | None = None,
|
763
|
-
extra_body: Body | None = None,
|
764
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
765
|
-
) -> str:
|
766
|
-
"""
|
767
|
-
Service operation to return the count of records satisfying the specified query
|
768
|
-
parameters. This operation is useful to determine how many records pass a
|
769
|
-
particular query criteria without retrieving large amounts of data. See the
|
770
|
-
queryhelp operation (/udl/<datatype>/queryhelp) for more details on
|
771
|
-
valid/required query parameter information.
|
772
|
-
|
773
|
-
Args:
|
774
|
-
epoch: Time of validity for state vector in ISO 8601 UTC datetime format, with
|
775
|
-
microsecond precision. (YYYY-MM-DDTHH:MM:SS.ssssssZ)
|
776
|
-
|
777
|
-
extra_headers: Send extra headers
|
778
|
-
|
779
|
-
extra_query: Add additional query parameters to the request
|
780
|
-
|
781
|
-
extra_body: Add additional JSON properties to the request
|
782
|
-
|
783
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
784
|
-
"""
|
785
|
-
extra_headers = {"Accept": "text/plain", **(extra_headers or {})}
|
786
|
-
return self._get(
|
787
|
-
"/udl/statevector/count",
|
788
|
-
options=make_request_options(
|
789
|
-
extra_headers=extra_headers,
|
790
|
-
extra_query=extra_query,
|
791
|
-
extra_body=extra_body,
|
792
|
-
timeout=timeout,
|
793
|
-
query=maybe_transform({"epoch": epoch}, statevector_count_params.StatevectorCountParams),
|
794
|
-
),
|
795
|
-
cast_to=str,
|
796
|
-
)
|
797
|
-
|
798
|
-
def create_bulk(
|
799
|
-
self,
|
800
|
-
*,
|
801
|
-
body: Iterable[StateVectorIngestParam],
|
802
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
803
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
804
|
-
extra_headers: Headers | None = None,
|
805
|
-
extra_query: Query | None = None,
|
806
|
-
extra_body: Body | None = None,
|
807
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
808
|
-
) -> None:
|
809
|
-
"""
|
810
|
-
Service operation intended for initial integration only, to take a list of state
|
811
|
-
vectors as a POST body and ingest into the database. This operation is not
|
812
|
-
intended to be used for automated feeds into UDL. Data providers should contact
|
813
|
-
the UDL team for specific role assignments and for instructions on setting up a
|
814
|
-
permanent feed through an alternate mechanism.
|
815
|
-
|
816
|
-
Args:
|
817
|
-
extra_headers: Send extra headers
|
818
|
-
|
819
|
-
extra_query: Add additional query parameters to the request
|
820
|
-
|
821
|
-
extra_body: Add additional JSON properties to the request
|
822
|
-
|
823
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
824
|
-
"""
|
825
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
826
|
-
return self._post(
|
827
|
-
"/udl/statevector/createBulk",
|
828
|
-
body=maybe_transform(body, Iterable[StateVectorIngestParam]),
|
829
|
-
options=make_request_options(
|
830
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
831
|
-
),
|
832
|
-
cast_to=NoneType,
|
833
|
-
)
|
834
|
-
|
835
|
-
def get(
|
836
|
-
self,
|
837
|
-
id: str,
|
838
|
-
*,
|
839
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
840
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
841
|
-
extra_headers: Headers | None = None,
|
842
|
-
extra_query: Query | None = None,
|
843
|
-
extra_body: Body | None = None,
|
844
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
845
|
-
) -> StateVectorFull:
|
846
|
-
"""
|
847
|
-
Service operation to get a single state vector by its unique ID passed as a path
|
848
|
-
parameter.
|
849
|
-
|
850
|
-
Args:
|
851
|
-
extra_headers: Send extra headers
|
852
|
-
|
853
|
-
extra_query: Add additional query parameters to the request
|
854
|
-
|
855
|
-
extra_body: Add additional JSON properties to the request
|
856
|
-
|
857
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
858
|
-
"""
|
859
|
-
if not id:
|
860
|
-
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
861
|
-
return self._get(
|
862
|
-
f"/udl/statevector/{id}",
|
863
|
-
options=make_request_options(
|
864
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
865
|
-
),
|
866
|
-
cast_to=StateVectorFull,
|
867
|
-
)
|
868
|
-
|
869
|
-
def queryhelp(
|
870
|
-
self,
|
871
|
-
*,
|
872
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
873
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
874
|
-
extra_headers: Headers | None = None,
|
875
|
-
extra_query: Query | None = None,
|
876
|
-
extra_body: Body | None = None,
|
877
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
878
|
-
) -> None:
|
879
|
-
"""
|
880
|
-
Service operation to provide detailed information on available dynamic query
|
881
|
-
parameters for a particular data type.
|
882
|
-
"""
|
883
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
884
|
-
return self._get(
|
885
|
-
"/udl/statevector/queryhelp",
|
886
|
-
options=make_request_options(
|
887
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
888
|
-
),
|
889
|
-
cast_to=NoneType,
|
890
|
-
)
|
891
|
-
|
892
|
-
def tuple(
|
893
|
-
self,
|
894
|
-
*,
|
895
|
-
columns: str,
|
896
|
-
epoch: Union[str, datetime],
|
897
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
898
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
899
|
-
extra_headers: Headers | None = None,
|
900
|
-
extra_query: Query | None = None,
|
901
|
-
extra_body: Body | None = None,
|
902
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
903
|
-
) -> StatevectorTupleResponse:
|
904
|
-
"""
|
905
|
-
Service operation to dynamically query data and only return specified
|
906
|
-
columns/fields. Requested columns are specified by the 'columns' query parameter
|
907
|
-
and should be a comma separated list of valid fields for the specified data
|
908
|
-
type. classificationMarking is always returned. See the queryhelp operation
|
909
|
-
(/udl/<datatype>/queryhelp) for more details on valid/required query parameter
|
910
|
-
information. An example URI: /udl/elset/tuple?columns=satNo,period&epoch=>now-5
|
911
|
-
hours would return the satNo and period of elsets with an epoch greater than 5
|
912
|
-
hours ago.
|
913
|
-
|
914
|
-
Args:
|
915
|
-
columns: Comma-separated list of valid field names for this data type to be returned in
|
916
|
-
the response. Only the fields specified will be returned as well as the
|
917
|
-
classification marking of the data, if applicable. See the ‘queryhelp’ operation
|
918
|
-
for a complete list of possible fields.
|
919
|
-
|
920
|
-
epoch: Time of validity for state vector in ISO 8601 UTC datetime format, with
|
921
|
-
microsecond precision. (YYYY-MM-DDTHH:MM:SS.ssssssZ)
|
922
|
-
|
923
|
-
extra_headers: Send extra headers
|
924
|
-
|
925
|
-
extra_query: Add additional query parameters to the request
|
926
|
-
|
927
|
-
extra_body: Add additional JSON properties to the request
|
928
|
-
|
929
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
930
|
-
"""
|
931
|
-
return self._get(
|
932
|
-
"/udl/statevector/tuple",
|
933
|
-
options=make_request_options(
|
934
|
-
extra_headers=extra_headers,
|
935
|
-
extra_query=extra_query,
|
936
|
-
extra_body=extra_body,
|
937
|
-
timeout=timeout,
|
938
|
-
query=maybe_transform(
|
939
|
-
{
|
940
|
-
"columns": columns,
|
941
|
-
"epoch": epoch,
|
942
|
-
},
|
943
|
-
statevector_tuple_params.StatevectorTupleParams,
|
944
|
-
),
|
945
|
-
),
|
946
|
-
cast_to=StatevectorTupleResponse,
|
947
|
-
)
|
948
|
-
|
949
|
-
def unvalidated_publish(
|
950
|
-
self,
|
951
|
-
*,
|
952
|
-
body: Iterable[StateVectorIngestParam],
|
953
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
954
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
955
|
-
extra_headers: Headers | None = None,
|
956
|
-
extra_query: Query | None = None,
|
957
|
-
extra_body: Body | None = None,
|
958
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
959
|
-
) -> None:
|
960
|
-
"""
|
961
|
-
Service operation to take multiple state vectors as a POST body and ingest into
|
962
|
-
the database. This operation is intended to be used for automated feeds into
|
963
|
-
UDL. A specific role is required to perform this service operation. Please
|
964
|
-
contact the UDL team for assistance.
|
965
|
-
|
966
|
-
Args:
|
967
|
-
extra_headers: Send extra headers
|
968
|
-
|
969
|
-
extra_query: Add additional query parameters to the request
|
970
|
-
|
971
|
-
extra_body: Add additional JSON properties to the request
|
972
|
-
|
973
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
974
|
-
"""
|
975
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
976
|
-
return self._post(
|
977
|
-
"/filedrop/udl-sv",
|
978
|
-
body=maybe_transform(body, Iterable[StateVectorIngestParam]),
|
979
|
-
options=make_request_options(
|
980
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
981
|
-
),
|
982
|
-
cast_to=NoneType,
|
983
|
-
)
|
984
|
-
|
985
|
-
|
986
|
-
class AsyncStatevectorResource(AsyncAPIResource):
|
987
|
-
@cached_property
|
988
|
-
def history(self) -> AsyncHistoryResource:
|
989
|
-
return AsyncHistoryResource(self._client)
|
990
|
-
|
991
|
-
@cached_property
|
992
|
-
def current(self) -> AsyncCurrentResource:
|
993
|
-
return AsyncCurrentResource(self._client)
|
994
|
-
|
995
|
-
@cached_property
|
996
|
-
def with_raw_response(self) -> AsyncStatevectorResourceWithRawResponse:
|
997
|
-
"""
|
998
|
-
This property can be used as a prefix for any HTTP method call to return
|
999
|
-
the raw response object instead of the parsed content.
|
1000
|
-
|
1001
|
-
For more information, see https://www.github.com/rsivilli-bluestaq/udl-python-sdk#accessing-raw-response-data-eg-headers
|
1002
|
-
"""
|
1003
|
-
return AsyncStatevectorResourceWithRawResponse(self)
|
1004
|
-
|
1005
|
-
@cached_property
|
1006
|
-
def with_streaming_response(self) -> AsyncStatevectorResourceWithStreamingResponse:
|
1007
|
-
"""
|
1008
|
-
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
|
1009
|
-
|
1010
|
-
For more information, see https://www.github.com/rsivilli-bluestaq/udl-python-sdk#with_streaming_response
|
1011
|
-
"""
|
1012
|
-
return AsyncStatevectorResourceWithStreamingResponse(self)
|
1013
|
-
|
1014
|
-
async def create(
|
1015
|
-
self,
|
1016
|
-
*,
|
1017
|
-
classification_marking: str,
|
1018
|
-
data_mode: Literal["REAL", "TEST", "SIMULATED", "EXERCISE"],
|
1019
|
-
epoch: Union[str, datetime],
|
1020
|
-
source: str,
|
1021
|
-
actual_od_span: float | NotGiven = NOT_GIVEN,
|
1022
|
-
algorithm: str | NotGiven = NOT_GIVEN,
|
1023
|
-
alt1_reference_frame: str | NotGiven = NOT_GIVEN,
|
1024
|
-
alt2_reference_frame: str | NotGiven = NOT_GIVEN,
|
1025
|
-
area: float | NotGiven = NOT_GIVEN,
|
1026
|
-
b_dot: float | NotGiven = NOT_GIVEN,
|
1027
|
-
cm_offset: float | NotGiven = NOT_GIVEN,
|
1028
|
-
cov: Iterable[float] | NotGiven = NOT_GIVEN,
|
1029
|
-
cov_method: str | NotGiven = NOT_GIVEN,
|
1030
|
-
cov_reference_frame: Literal["J2000", "UVW"] | NotGiven = NOT_GIVEN,
|
1031
|
-
descriptor: str | NotGiven = NOT_GIVEN,
|
1032
|
-
drag_area: float | NotGiven = NOT_GIVEN,
|
1033
|
-
drag_coeff: float | NotGiven = NOT_GIVEN,
|
1034
|
-
drag_model: str | NotGiven = NOT_GIVEN,
|
1035
|
-
edr: float | NotGiven = NOT_GIVEN,
|
1036
|
-
eq_cov: Iterable[float] | NotGiven = NOT_GIVEN,
|
1037
|
-
error_control: float | NotGiven = NOT_GIVEN,
|
1038
|
-
fixed_step: bool | NotGiven = NOT_GIVEN,
|
1039
|
-
geopotential_model: str | NotGiven = NOT_GIVEN,
|
1040
|
-
iau1980_terms: int | NotGiven = NOT_GIVEN,
|
1041
|
-
id_orbit_determination: str | NotGiven = NOT_GIVEN,
|
1042
|
-
id_state_vector: str | NotGiven = NOT_GIVEN,
|
1043
|
-
integrator_mode: str | NotGiven = NOT_GIVEN,
|
1044
|
-
in_track_thrust: bool | NotGiven = NOT_GIVEN,
|
1045
|
-
last_ob_end: Union[str, datetime] | NotGiven = NOT_GIVEN,
|
1046
|
-
last_ob_start: Union[str, datetime] | NotGiven = NOT_GIVEN,
|
1047
|
-
leap_second_time: Union[str, datetime] | NotGiven = NOT_GIVEN,
|
1048
|
-
lunar_solar: bool | NotGiven = NOT_GIVEN,
|
1049
|
-
mass: float | NotGiven = NOT_GIVEN,
|
1050
|
-
obs_available: int | NotGiven = NOT_GIVEN,
|
1051
|
-
obs_used: int | NotGiven = NOT_GIVEN,
|
1052
|
-
origin: str | NotGiven = NOT_GIVEN,
|
1053
|
-
orig_object_id: str | NotGiven = NOT_GIVEN,
|
1054
|
-
partials: str | NotGiven = NOT_GIVEN,
|
1055
|
-
pedigree: str | NotGiven = NOT_GIVEN,
|
1056
|
-
polar_motion_x: float | NotGiven = NOT_GIVEN,
|
1057
|
-
polar_motion_y: float | NotGiven = NOT_GIVEN,
|
1058
|
-
pos_unc: float | NotGiven = NOT_GIVEN,
|
1059
|
-
raw_file_uri: str | NotGiven = NOT_GIVEN,
|
1060
|
-
rec_od_span: float | NotGiven = NOT_GIVEN,
|
1061
|
-
reference_frame: Literal["J2000", "EFG/TDR", "ECR/ECEF", "TEME", "ITRF", "GCRF"] | NotGiven = NOT_GIVEN,
|
1062
|
-
residuals_acc: float | NotGiven = NOT_GIVEN,
|
1063
|
-
rev_no: int | NotGiven = NOT_GIVEN,
|
1064
|
-
rms: float | NotGiven = NOT_GIVEN,
|
1065
|
-
sat_no: int | NotGiven = NOT_GIVEN,
|
1066
|
-
sigma_pos_uvw: Iterable[float] | NotGiven = NOT_GIVEN,
|
1067
|
-
sigma_vel_uvw: Iterable[float] | NotGiven = NOT_GIVEN,
|
1068
|
-
solar_flux_ap_avg: float | NotGiven = NOT_GIVEN,
|
1069
|
-
solar_flux_f10: float | NotGiven = NOT_GIVEN,
|
1070
|
-
solar_flux_f10_avg: float | NotGiven = NOT_GIVEN,
|
1071
|
-
solar_rad_press: bool | NotGiven = NOT_GIVEN,
|
1072
|
-
solar_rad_press_coeff: float | NotGiven = NOT_GIVEN,
|
1073
|
-
solid_earth_tides: bool | NotGiven = NOT_GIVEN,
|
1074
|
-
sourced_data: List[str] | NotGiven = NOT_GIVEN,
|
1075
|
-
sourced_data_types: List[Literal["EO", "RADAR", "RF", "DOA", "ELSET", "SV"]] | NotGiven = NOT_GIVEN,
|
1076
|
-
srp_area: float | NotGiven = NOT_GIVEN,
|
1077
|
-
step_mode: str | NotGiven = NOT_GIVEN,
|
1078
|
-
step_size: float | NotGiven = NOT_GIVEN,
|
1079
|
-
step_size_selection: str | NotGiven = NOT_GIVEN,
|
1080
|
-
tags: List[str] | NotGiven = NOT_GIVEN,
|
1081
|
-
tai_utc: float | NotGiven = NOT_GIVEN,
|
1082
|
-
thrust_accel: float | NotGiven = NOT_GIVEN,
|
1083
|
-
tracks_avail: int | NotGiven = NOT_GIVEN,
|
1084
|
-
tracks_used: int | NotGiven = NOT_GIVEN,
|
1085
|
-
transaction_id: str | NotGiven = NOT_GIVEN,
|
1086
|
-
uct: bool | NotGiven = NOT_GIVEN,
|
1087
|
-
ut1_rate: float | NotGiven = NOT_GIVEN,
|
1088
|
-
ut1_utc: float | NotGiven = NOT_GIVEN,
|
1089
|
-
vel_unc: float | NotGiven = NOT_GIVEN,
|
1090
|
-
xaccel: float | NotGiven = NOT_GIVEN,
|
1091
|
-
xpos: float | NotGiven = NOT_GIVEN,
|
1092
|
-
xpos_alt1: float | NotGiven = NOT_GIVEN,
|
1093
|
-
xpos_alt2: float | NotGiven = NOT_GIVEN,
|
1094
|
-
xvel: float | NotGiven = NOT_GIVEN,
|
1095
|
-
xvel_alt1: float | NotGiven = NOT_GIVEN,
|
1096
|
-
xvel_alt2: float | NotGiven = NOT_GIVEN,
|
1097
|
-
yaccel: float | NotGiven = NOT_GIVEN,
|
1098
|
-
ypos: float | NotGiven = NOT_GIVEN,
|
1099
|
-
ypos_alt1: float | NotGiven = NOT_GIVEN,
|
1100
|
-
ypos_alt2: float | NotGiven = NOT_GIVEN,
|
1101
|
-
yvel: float | NotGiven = NOT_GIVEN,
|
1102
|
-
yvel_alt1: float | NotGiven = NOT_GIVEN,
|
1103
|
-
yvel_alt2: float | NotGiven = NOT_GIVEN,
|
1104
|
-
zaccel: float | NotGiven = NOT_GIVEN,
|
1105
|
-
zpos: float | NotGiven = NOT_GIVEN,
|
1106
|
-
zpos_alt1: float | NotGiven = NOT_GIVEN,
|
1107
|
-
zpos_alt2: float | NotGiven = NOT_GIVEN,
|
1108
|
-
zvel: float | NotGiven = NOT_GIVEN,
|
1109
|
-
zvel_alt1: float | NotGiven = NOT_GIVEN,
|
1110
|
-
zvel_alt2: float | NotGiven = NOT_GIVEN,
|
1111
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
1112
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
1113
|
-
extra_headers: Headers | None = None,
|
1114
|
-
extra_query: Query | None = None,
|
1115
|
-
extra_body: Body | None = None,
|
1116
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1117
|
-
) -> None:
|
1118
|
-
"""
|
1119
|
-
Service operation to take a single state vector as a POST body and ingest into
|
1120
|
-
the database. This operation is not intended to be used for automated feeds into
|
1121
|
-
UDL. Data providers should contact the UDL team for specific role assignments
|
1122
|
-
and for instructions on setting up a permanent feed through an alternate
|
1123
|
-
mechanism.
|
1124
|
-
|
1125
|
-
Args:
|
1126
|
-
classification_marking: Classification marking of the data in IC/CAPCO Portion-marked format.
|
1127
|
-
|
1128
|
-
data_mode:
|
1129
|
-
Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
|
1130
|
-
|
1131
|
-
EXERCISE: Data pertaining to a government or military exercise. The data
|
1132
|
-
may include both real and simulated data.
|
1133
|
-
|
1134
|
-
REAL: Data collected or produced that pertains to real-world objects,
|
1135
|
-
events, and analysis.
|
1136
|
-
|
1137
|
-
SIMULATED: Synthetic data generated by a model to mimic real-world
|
1138
|
-
datasets.
|
1139
|
-
|
1140
|
-
TEST: Specific datasets used to evaluate compliance with specifications and
|
1141
|
-
requirements, and for validating technical, functional, and performance
|
1142
|
-
characteristics.
|
1143
|
-
|
1144
|
-
epoch: Time of validity for state vector in ISO 8601 UTC datetime format, with
|
1145
|
-
microsecond precision.
|
1146
|
-
|
1147
|
-
source: Source of the data.
|
1148
|
-
|
1149
|
-
actual_od_span: The actual time span used for the OD of the object, expressed in days.
|
1150
|
-
|
1151
|
-
algorithm: Optional algorithm used to produce this record.
|
1152
|
-
|
1153
|
-
alt1_reference_frame: The reference frame of the alternate1 (Alt1) cartesian orbital state.
|
1154
|
-
|
1155
|
-
alt2_reference_frame: The reference frame of the alternate2 (Alt2) cartesian orbital state.
|
1156
|
-
|
1157
|
-
area: The actual area of the object at it's largest cross-section, expressed in
|
1158
|
-
meters^2.
|
1159
|
-
|
1160
|
-
b_dot: First derivative of drag/ballistic coefficient (m2/kg-s).
|
1161
|
-
|
1162
|
-
cm_offset: Model parameter value for center of mass offset (m).
|
1163
|
-
|
1164
|
-
cov: Covariance matrix, in kilometer and second based units, in the specified
|
1165
|
-
covReferenceFrame. If the covReferenceFrame is null it is assumed to be J2000.
|
1166
|
-
The array values (1-21) represent the lower triangular half of the
|
1167
|
-
position-velocity covariance matrix. The size of the covariance matrix is
|
1168
|
-
dynamic, depending on whether the covariance for position only or position &
|
1169
|
-
velocity. The covariance elements are position dependent within the array with
|
1170
|
-
values ordered as follows:
|
1171
|
-
|
1172
|
-
x y z x' y' z' DRG SRP THR
|
1173
|
-
|
1174
|
-
x 1
|
1175
|
-
|
1176
|
-
y 2 3
|
1177
|
-
|
1178
|
-
z 4 5 6
|
1179
|
-
|
1180
|
-
x' 7 8 9 10
|
1181
|
-
|
1182
|
-
y' 11 12 13 14 15
|
1183
|
-
|
1184
|
-
z' 16 17 18 19 20 21
|
1185
|
-
|
1186
|
-
The cov array should contain only the lower left triangle values from top left
|
1187
|
-
down to bottom right, in order.
|
1188
|
-
|
1189
|
-
If additional covariance terms are included for DRAG, SRP, and/or THRUST, the
|
1190
|
-
matrix can be extended with the following order of elements:
|
1191
|
-
|
1192
|
-
x y z x' y' z' DRG SRP THR
|
1193
|
-
|
1194
|
-
DRG 22 23 24 25 26 27 28
|
1195
|
-
|
1196
|
-
SRP 29 30 31 32 33 34 35 36
|
1197
|
-
|
1198
|
-
THR 37 38 39 40 41 42 43 44 45
|
1199
|
-
|
1200
|
-
cov_method: The method used to generate the covariance during the orbit determination (OD)
|
1201
|
-
that produced the state vector, or whether an arbitrary, non-calculated default
|
1202
|
-
value was used (CALCULATED, DEFAULT).
|
1203
|
-
|
1204
|
-
cov_reference_frame: The reference frame of the covariance matrix elements. If the covReferenceFrame
|
1205
|
-
is null it is assumed to be J2000.
|
1206
|
-
|
1207
|
-
descriptor: Optional source-provided and searchable metadata or descriptor of the data.
|
1208
|
-
|
1209
|
-
drag_area: The effective area of the object exposed to atmospheric drag, expressed in
|
1210
|
-
meters^2.
|
1211
|
-
|
1212
|
-
drag_coeff: Area-to-mass ratio coefficient for atmospheric ballistic drag (m2/kg).
|
1213
|
-
|
1214
|
-
drag_model: The Drag Model used for this vector (e.g. HARRIS-PRIESTER, JAC70, JBH09, MSIS90,
|
1215
|
-
NONE, etc.).
|
1216
|
-
|
1217
|
-
edr: Model parameter value for energy dissipation rate (EDR) (w/kg).
|
1218
|
-
|
1219
|
-
eq_cov: The covariance matrix values represent the lower triangular half of the
|
1220
|
-
covariance matrix in terms of equinoctial elements. The size of the
|
1221
|
-
covariance matrix is dynamic. The values are outputted in order across
|
1222
|
-
each row, i.e.:
|
1223
|
-
|
1224
|
-
1 2 3 4 5
|
1225
|
-
|
1226
|
-
6 7 8 9 10
|
1227
|
-
|
1228
|
-
: : : : :
|
1229
|
-
|
1230
|
-
: : : : :
|
1231
|
-
|
1232
|
-
51 52 53 54 55
|
1233
|
-
|
1234
|
-
: : : : :
|
1235
|
-
|
1236
|
-
: : : : :
|
1237
|
-
|
1238
|
-
The ordering of values is as follows:
|
1239
|
-
|
1240
|
-
Af
|
1241
|
-
Ag L N Chi Psi
|
1242
|
-
B BDOT AGOM T C1 C2 ...
|
1243
|
-
|
1244
|
-
Af 1
|
1245
|
-
|
1246
|
-
Ag 2 3
|
1247
|
-
|
1248
|
-
L
|
1249
|
-
4 5 6
|
1250
|
-
|
1251
|
-
N
|
1252
|
-
7 8 9 10
|
1253
|
-
|
1254
|
-
Chi 11 12
|
1255
|
-
13 14 15
|
1256
|
-
|
1257
|
-
Psi 16 17
|
1258
|
-
18 19 20 21
|
1259
|
-
|
1260
|
-
B 22
|
1261
|
-
23 24 25 26 27 28
|
1262
|
-
|
1263
|
-
BDOT 29 30 31 32
|
1264
|
-
33 34 35 36
|
1265
|
-
|
1266
|
-
AGOM 37 38 39 40
|
1267
|
-
41 42 43 44 45
|
1268
|
-
|
1269
|
-
T 46
|
1270
|
-
47 48 49 50 51
|
1271
|
-
52 53 54 55
|
1272
|
-
|
1273
|
-
C1 56 57
|
1274
|
-
58 59 60 61 62
|
1275
|
-
63 64 65 66
|
1276
|
-
|
1277
|
-
C2 67 68
|
1278
|
-
69 70 71 72 73
|
1279
|
-
74 75 76 77 78
|
1280
|
-
|
1281
|
-
:
|
1282
|
-
|
1283
|
-
:
|
1284
|
-
|
1285
|
-
where C1, C2, etc, are the "consider parameters" that may be added to the
|
1286
|
-
covariance matrix. The covariance matrix will be as large as the last
|
1287
|
-
element/model parameter needed. In other words, if the DC solved for all 6
|
1288
|
-
elements plus AGOM, the covariance matrix will be 9x9 (and the rows for B and
|
1289
|
-
BDOT will be all zeros). If the covariance matrix is unavailable, the size
|
1290
|
-
will be set to 0x0, and no data will follow. The cov field should contain
|
1291
|
-
only the lower left triangle values from top left down to bottom right, in
|
1292
|
-
order.
|
1293
|
-
|
1294
|
-
error_control: Integrator error control.
|
1295
|
-
|
1296
|
-
fixed_step: Boolean indicating use of fixed step size for this vector.
|
1297
|
-
|
1298
|
-
geopotential_model: Geopotential model used for this vector (e.g. EGM-96, WGS-84, WGS-72, JGM-2, or
|
1299
|
-
GEM-T3), including mm degree zonals, nn degree/order tesserals. E.g. EGM-96
|
1300
|
-
24Z,24T.
|
1301
|
-
|
1302
|
-
iau1980_terms: Number of terms used in the IAU 1980 nutation model (4, 50, or 106).
|
1303
|
-
|
1304
|
-
id_orbit_determination: Unique identifier of the OD solution record that produced this state vector.
|
1305
|
-
This ID can be used to obtain additional information on an OrbitDetermination
|
1306
|
-
object using the 'get by ID' operation (e.g. /udl/orbitdetermination/{id}). For
|
1307
|
-
example, the OrbitDetermination with idOrbitDetermination = abc would be queries
|
1308
|
-
as /udl/orbitdetermination/abc.
|
1309
|
-
|
1310
|
-
id_state_vector: Unique identifier of the record, auto-generated by the system.
|
1311
|
-
|
1312
|
-
integrator_mode: Integrator Mode.
|
1313
|
-
|
1314
|
-
in_track_thrust: Boolean indicating use of in-track thrust perturbations for this vector.
|
1315
|
-
|
1316
|
-
last_ob_end: The end of the time interval containing the time of the last accepted
|
1317
|
-
observation, in ISO 8601 UTC format with microsecond precision. For an exact
|
1318
|
-
observation time, the firstObTime and lastObTime are the same.
|
1319
|
-
|
1320
|
-
last_ob_start: The start of the time interval containing the time of the last accepted
|
1321
|
-
observation, in ISO 8601 UTC format with microsecond precision. For an exact
|
1322
|
-
observation time, the firstObTime and lastObTime are the same.
|
1323
|
-
|
1324
|
-
leap_second_time: Time of the next leap second after epoch in ISO 8601 UTC time. If the next leap
|
1325
|
-
second is not known, the time of the previous leap second is used.
|
1326
|
-
|
1327
|
-
lunar_solar: Boolean indicating use of lunar/solar perturbations for this vector.
|
1328
|
-
|
1329
|
-
mass: The mass of the object, in kilograms.
|
1330
|
-
|
1331
|
-
obs_available: The number of observations available for the OD of the object.
|
1332
|
-
|
1333
|
-
obs_used: The number of observations accepted for the OD of the object.
|
1334
|
-
|
1335
|
-
origin: Originating system or organization which produced the data, if different from
|
1336
|
-
the source. The origin may be different than the source if the source was a
|
1337
|
-
mediating system which forwarded the data on behalf of the origin system. If
|
1338
|
-
null, the source may be assumed to be the origin.
|
1339
|
-
|
1340
|
-
orig_object_id: Optional identifier provided by state vector source to indicate the target
|
1341
|
-
onorbit object of this state vector. This may be an internal identifier and not
|
1342
|
-
necessarily map to a valid satellite number.
|
1343
|
-
|
1344
|
-
partials: Type of partial derivatives used (ANALYTIC, FULL NUM, or FAST NUM).
|
1345
|
-
|
1346
|
-
pedigree: The pedigree of state vector, or methods used for its generation to include
|
1347
|
-
state update/orbit determination, propagation from another state, or a state
|
1348
|
-
from a calibration satellite (e.g. ORBIT_UPDATE, PROPAGATION, CALIBRATION,
|
1349
|
-
CONJUNCTION, FLIGHT_PLAN).
|
1350
|
-
|
1351
|
-
polar_motion_x: Polar Wander Motion X (arc seconds).
|
1352
|
-
|
1353
|
-
polar_motion_y: Polar Wander Motion Y (arc seconds).
|
1354
|
-
|
1355
|
-
pos_unc: One sigma position uncertainty, in kilometers.
|
1356
|
-
|
1357
|
-
raw_file_uri: Optional URI location in the document repository of the raw file parsed by the
|
1358
|
-
system to produce this record. To download the raw file, prepend
|
1359
|
-
https://udl-hostname/scs/download?id= to this value.
|
1360
|
-
|
1361
|
-
rec_od_span: The recommended OD time span calculated for the object, expressed in days.
|
1362
|
-
|
1363
|
-
reference_frame: The reference frame of the cartesian orbital states. If the referenceFrame is
|
1364
|
-
null it is assumed to be J2000.
|
1365
|
-
|
1366
|
-
residuals_acc: The percentage of residuals accepted in the OD of the object.
|
1367
|
-
|
1368
|
-
rev_no: Epoch revolution number.
|
1369
|
-
|
1370
|
-
rms: The Weighted Root Mean Squared (RMS) of the differential correction on the
|
1371
|
-
target object that produced this vector. WRMS is a quality indicator of the
|
1372
|
-
state vector update, with a value of 1.00 being optimal. WRMS applies to Batch
|
1373
|
-
Least Squares (BLS) processes.
|
1374
|
-
|
1375
|
-
sat_no: Satellite/Catalog number of the target OnOrbit object.
|
1376
|
-
|
1377
|
-
sigma_pos_uvw: Array containing the standard deviation of error in target object position, U, V
|
1378
|
-
and W direction respectively (km).
|
1379
|
-
|
1380
|
-
sigma_vel_uvw: Array containing the standard deviation of error in target object velocity, U, V
|
1381
|
-
and W direction respectively (km/sec).
|
1382
|
-
|
1383
|
-
solar_flux_ap_avg: Average solar flux geomagnetic index.
|
1384
|
-
|
1385
|
-
solar_flux_f10: F10 (10.7 cm) solar flux value.
|
1386
|
-
|
1387
|
-
solar_flux_f10_avg: F10 (10.7 cm) solar flux 81-day average value.
|
1388
|
-
|
1389
|
-
solar_rad_press: Boolean indicating use of solar radiation pressure perturbations for this
|
1390
|
-
vector.
|
1391
|
-
|
1392
|
-
solar_rad_press_coeff: Area-to-mass ratio coefficient for solar radiation pressure.
|
1393
|
-
|
1394
|
-
solid_earth_tides: Boolean indicating use of solid earth tide perturbations for this vector.
|
1395
|
-
|
1396
|
-
sourced_data: Optional array of UDL data (observation) UUIDs used to build this state vector.
|
1397
|
-
See the associated sourcedDataTypes array for the specific types of observations
|
1398
|
-
for the positionally corresponding UUIDs in this array (the two arrays must
|
1399
|
-
match in size).
|
1400
|
-
|
1401
|
-
sourced_data_types: Optional array of UDL observation data types used to build this state vector
|
1402
|
-
(e.g. EO, RADAR, RF, DOA). See the associated sourcedData array for the specific
|
1403
|
-
UUIDs of observations for the positionally corresponding data types in this
|
1404
|
-
array (the two arrays must match in size).
|
1405
|
-
|
1406
|
-
srp_area: The effective area of the object exposed to solar radiation pressure, expressed
|
1407
|
-
in meters^2.
|
1408
|
-
|
1409
|
-
step_mode: Integrator step mode (AUTO, TIME, or S).
|
1410
|
-
|
1411
|
-
step_size: Initial integration step size (seconds).
|
1412
|
-
|
1413
|
-
step_size_selection: Initial step size selection (AUTO or MANUAL).
|
1414
|
-
|
1415
|
-
tags: Optional array of provider/source specific tags for this data, where each
|
1416
|
-
element is no longer than 32 characters, used for implementing data owner
|
1417
|
-
conditional access controls to restrict access to the data. Should be left null
|
1418
|
-
by data providers unless conditional access controls are coordinated with the
|
1419
|
-
UDL team.
|
1420
|
-
|
1421
|
-
tai_utc: TAI (Temps Atomique International) minus UTC (Universal Time Coordinates) offset
|
1422
|
-
in seconds.
|
1423
|
-
|
1424
|
-
thrust_accel: Model parameter value for thrust acceleration (m/s2).
|
1425
|
-
|
1426
|
-
tracks_avail: The number of sensor tracks available for the OD of the object.
|
1427
|
-
|
1428
|
-
tracks_used: The number of sensor tracks accepted for the OD of the object.
|
1429
|
-
|
1430
|
-
transaction_id: Optional identifier to track a commercial or marketplace transaction executed to
|
1431
|
-
produce this data.
|
1432
|
-
|
1433
|
-
uct: Boolean indicating this state vector was unable to be correlated to a known
|
1434
|
-
object. This flag should only be set to true by data providers after an attempt
|
1435
|
-
to correlate to an OnOrbit object was made and failed. If unable to correlate,
|
1436
|
-
the 'origObjectId' field may be populated with an internal data provider
|
1437
|
-
specific identifier.
|
1438
|
-
|
1439
|
-
ut1_rate: Rate of change of UT1 (milliseconds/day) - first derivative of ut1Utc.
|
1440
|
-
|
1441
|
-
ut1_utc: Universal Time-1 (UT1) minus UTC offset, in seconds.
|
1442
|
-
|
1443
|
-
vel_unc: One sigma velocity uncertainty, in kilometers/second.
|
1444
|
-
|
1445
|
-
xaccel: Cartesian X acceleration of target, in kilometers/second^2, in the specified
|
1446
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
1447
|
-
|
1448
|
-
xpos: Cartesian X position of the target, in kilometers, in the specified
|
1449
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
1450
|
-
|
1451
|
-
xpos_alt1: Cartesian X position of the target, in kilometers, in the specified
|
1452
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
1453
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1454
|
-
frame than the primary vector.
|
1455
|
-
|
1456
|
-
xpos_alt2: Cartesian X position of the target, in kilometers, in the specified
|
1457
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
1458
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1459
|
-
frame than the primary vector.
|
1460
|
-
|
1461
|
-
xvel: Cartesian X velocity of target, in kilometers/second, in the specified
|
1462
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
1463
|
-
|
1464
|
-
xvel_alt1: Cartesian X velocity of the target, in kilometers/second, in the specified
|
1465
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
1466
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1467
|
-
frame than the primary vector.
|
1468
|
-
|
1469
|
-
xvel_alt2: Cartesian X velocity of the target, in kilometers/second, in the specified
|
1470
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
1471
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1472
|
-
frame than the primary vector.
|
1473
|
-
|
1474
|
-
yaccel: Cartesian Y acceleration of target, in kilometers/second^2, in the specified
|
1475
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
1476
|
-
|
1477
|
-
ypos: Cartesian Y position of the target, in kilometers, in the specified
|
1478
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
1479
|
-
|
1480
|
-
ypos_alt1: Cartesian Y position of the target, in kilometers, in the specified
|
1481
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
1482
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1483
|
-
frame than the primary vector.
|
1484
|
-
|
1485
|
-
ypos_alt2: Cartesian Y position of the target, in kilometers, in the specified
|
1486
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
1487
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1488
|
-
frame than the primary vector.
|
1489
|
-
|
1490
|
-
yvel: Cartesian Y velocity of target, in kilometers/second, in the specified
|
1491
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
1492
|
-
|
1493
|
-
yvel_alt1: Cartesian Y velocity of the target, in kilometers/second, in the specified
|
1494
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
1495
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1496
|
-
frame than the primary vector.
|
1497
|
-
|
1498
|
-
yvel_alt2: Cartesian Y velocity of the target, in kilometers/second, in the specified
|
1499
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
1500
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1501
|
-
frame than the primary vector.
|
1502
|
-
|
1503
|
-
zaccel: Cartesian Z acceleration of target, in kilometers/second^2, in the specified
|
1504
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
1505
|
-
|
1506
|
-
zpos: Cartesian Z position of the target, in kilometers, in the specified
|
1507
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
1508
|
-
|
1509
|
-
zpos_alt1: Cartesian Z position of the target, in kilometers, in the specified
|
1510
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
1511
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1512
|
-
frame than the primary vector.
|
1513
|
-
|
1514
|
-
zpos_alt2: Cartesian Z position of the target, in kilometers, in the specified
|
1515
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
1516
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1517
|
-
frame than the primary vector.
|
1518
|
-
|
1519
|
-
zvel: Cartesian Z velocity of target, in kilometers/second, in the specified
|
1520
|
-
referenceFrame. If referenceFrame is null then J2K should be assumed.
|
1521
|
-
|
1522
|
-
zvel_alt1: Cartesian Z velocity of the target, in kilometers/second, in the specified
|
1523
|
-
alt1ReferenceFrame. Alternate reference frames are optional and are intended to
|
1524
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1525
|
-
frame than the primary vector.
|
1526
|
-
|
1527
|
-
zvel_alt2: Cartesian Z velocity of the target, in kilometers/second, in the specified
|
1528
|
-
alt2ReferenceFrame. Alternate reference frames are optional and are intended to
|
1529
|
-
allow a data source to provide an equivalent vector in a different cartesian
|
1530
|
-
frame than the primary vector.
|
1531
|
-
|
1532
|
-
extra_headers: Send extra headers
|
1533
|
-
|
1534
|
-
extra_query: Add additional query parameters to the request
|
1535
|
-
|
1536
|
-
extra_body: Add additional JSON properties to the request
|
1537
|
-
|
1538
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
1539
|
-
"""
|
1540
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1541
|
-
return await self._post(
|
1542
|
-
"/udl/statevector",
|
1543
|
-
body=await async_maybe_transform(
|
1544
|
-
{
|
1545
|
-
"classification_marking": classification_marking,
|
1546
|
-
"data_mode": data_mode,
|
1547
|
-
"epoch": epoch,
|
1548
|
-
"source": source,
|
1549
|
-
"actual_od_span": actual_od_span,
|
1550
|
-
"algorithm": algorithm,
|
1551
|
-
"alt1_reference_frame": alt1_reference_frame,
|
1552
|
-
"alt2_reference_frame": alt2_reference_frame,
|
1553
|
-
"area": area,
|
1554
|
-
"b_dot": b_dot,
|
1555
|
-
"cm_offset": cm_offset,
|
1556
|
-
"cov": cov,
|
1557
|
-
"cov_method": cov_method,
|
1558
|
-
"cov_reference_frame": cov_reference_frame,
|
1559
|
-
"descriptor": descriptor,
|
1560
|
-
"drag_area": drag_area,
|
1561
|
-
"drag_coeff": drag_coeff,
|
1562
|
-
"drag_model": drag_model,
|
1563
|
-
"edr": edr,
|
1564
|
-
"eq_cov": eq_cov,
|
1565
|
-
"error_control": error_control,
|
1566
|
-
"fixed_step": fixed_step,
|
1567
|
-
"geopotential_model": geopotential_model,
|
1568
|
-
"iau1980_terms": iau1980_terms,
|
1569
|
-
"id_orbit_determination": id_orbit_determination,
|
1570
|
-
"id_state_vector": id_state_vector,
|
1571
|
-
"integrator_mode": integrator_mode,
|
1572
|
-
"in_track_thrust": in_track_thrust,
|
1573
|
-
"last_ob_end": last_ob_end,
|
1574
|
-
"last_ob_start": last_ob_start,
|
1575
|
-
"leap_second_time": leap_second_time,
|
1576
|
-
"lunar_solar": lunar_solar,
|
1577
|
-
"mass": mass,
|
1578
|
-
"obs_available": obs_available,
|
1579
|
-
"obs_used": obs_used,
|
1580
|
-
"origin": origin,
|
1581
|
-
"orig_object_id": orig_object_id,
|
1582
|
-
"partials": partials,
|
1583
|
-
"pedigree": pedigree,
|
1584
|
-
"polar_motion_x": polar_motion_x,
|
1585
|
-
"polar_motion_y": polar_motion_y,
|
1586
|
-
"pos_unc": pos_unc,
|
1587
|
-
"raw_file_uri": raw_file_uri,
|
1588
|
-
"rec_od_span": rec_od_span,
|
1589
|
-
"reference_frame": reference_frame,
|
1590
|
-
"residuals_acc": residuals_acc,
|
1591
|
-
"rev_no": rev_no,
|
1592
|
-
"rms": rms,
|
1593
|
-
"sat_no": sat_no,
|
1594
|
-
"sigma_pos_uvw": sigma_pos_uvw,
|
1595
|
-
"sigma_vel_uvw": sigma_vel_uvw,
|
1596
|
-
"solar_flux_ap_avg": solar_flux_ap_avg,
|
1597
|
-
"solar_flux_f10": solar_flux_f10,
|
1598
|
-
"solar_flux_f10_avg": solar_flux_f10_avg,
|
1599
|
-
"solar_rad_press": solar_rad_press,
|
1600
|
-
"solar_rad_press_coeff": solar_rad_press_coeff,
|
1601
|
-
"solid_earth_tides": solid_earth_tides,
|
1602
|
-
"sourced_data": sourced_data,
|
1603
|
-
"sourced_data_types": sourced_data_types,
|
1604
|
-
"srp_area": srp_area,
|
1605
|
-
"step_mode": step_mode,
|
1606
|
-
"step_size": step_size,
|
1607
|
-
"step_size_selection": step_size_selection,
|
1608
|
-
"tags": tags,
|
1609
|
-
"tai_utc": tai_utc,
|
1610
|
-
"thrust_accel": thrust_accel,
|
1611
|
-
"tracks_avail": tracks_avail,
|
1612
|
-
"tracks_used": tracks_used,
|
1613
|
-
"transaction_id": transaction_id,
|
1614
|
-
"uct": uct,
|
1615
|
-
"ut1_rate": ut1_rate,
|
1616
|
-
"ut1_utc": ut1_utc,
|
1617
|
-
"vel_unc": vel_unc,
|
1618
|
-
"xaccel": xaccel,
|
1619
|
-
"xpos": xpos,
|
1620
|
-
"xpos_alt1": xpos_alt1,
|
1621
|
-
"xpos_alt2": xpos_alt2,
|
1622
|
-
"xvel": xvel,
|
1623
|
-
"xvel_alt1": xvel_alt1,
|
1624
|
-
"xvel_alt2": xvel_alt2,
|
1625
|
-
"yaccel": yaccel,
|
1626
|
-
"ypos": ypos,
|
1627
|
-
"ypos_alt1": ypos_alt1,
|
1628
|
-
"ypos_alt2": ypos_alt2,
|
1629
|
-
"yvel": yvel,
|
1630
|
-
"yvel_alt1": yvel_alt1,
|
1631
|
-
"yvel_alt2": yvel_alt2,
|
1632
|
-
"zaccel": zaccel,
|
1633
|
-
"zpos": zpos,
|
1634
|
-
"zpos_alt1": zpos_alt1,
|
1635
|
-
"zpos_alt2": zpos_alt2,
|
1636
|
-
"zvel": zvel,
|
1637
|
-
"zvel_alt1": zvel_alt1,
|
1638
|
-
"zvel_alt2": zvel_alt2,
|
1639
|
-
},
|
1640
|
-
statevector_create_params.StatevectorCreateParams,
|
1641
|
-
),
|
1642
|
-
options=make_request_options(
|
1643
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1644
|
-
),
|
1645
|
-
cast_to=NoneType,
|
1646
|
-
)
|
1647
|
-
|
1648
|
-
async def list(
|
1649
|
-
self,
|
1650
|
-
*,
|
1651
|
-
epoch: Union[str, datetime],
|
1652
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
1653
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
1654
|
-
extra_headers: Headers | None = None,
|
1655
|
-
extra_query: Query | None = None,
|
1656
|
-
extra_body: Body | None = None,
|
1657
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1658
|
-
) -> StatevectorListResponse:
|
1659
|
-
"""
|
1660
|
-
Service operation to dynamically query data by a variety of query parameters not
|
1661
|
-
specified in this API documentation. See the queryhelp operation
|
1662
|
-
(/udl/<datatype>/queryhelp) for more details on valid/required query
|
1663
|
-
parameter information.
|
1664
|
-
|
1665
|
-
Args:
|
1666
|
-
epoch: Time of validity for state vector in ISO 8601 UTC datetime format, with
|
1667
|
-
microsecond precision. (YYYY-MM-DDTHH:MM:SS.ssssssZ)
|
1668
|
-
|
1669
|
-
extra_headers: Send extra headers
|
1670
|
-
|
1671
|
-
extra_query: Add additional query parameters to the request
|
1672
|
-
|
1673
|
-
extra_body: Add additional JSON properties to the request
|
1674
|
-
|
1675
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
1676
|
-
"""
|
1677
|
-
return await self._get(
|
1678
|
-
"/udl/statevector",
|
1679
|
-
options=make_request_options(
|
1680
|
-
extra_headers=extra_headers,
|
1681
|
-
extra_query=extra_query,
|
1682
|
-
extra_body=extra_body,
|
1683
|
-
timeout=timeout,
|
1684
|
-
query=await async_maybe_transform({"epoch": epoch}, statevector_list_params.StatevectorListParams),
|
1685
|
-
),
|
1686
|
-
cast_to=StatevectorListResponse,
|
1687
|
-
)
|
1688
|
-
|
1689
|
-
async def count(
|
1690
|
-
self,
|
1691
|
-
*,
|
1692
|
-
epoch: Union[str, datetime],
|
1693
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
1694
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
1695
|
-
extra_headers: Headers | None = None,
|
1696
|
-
extra_query: Query | None = None,
|
1697
|
-
extra_body: Body | None = None,
|
1698
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1699
|
-
) -> str:
|
1700
|
-
"""
|
1701
|
-
Service operation to return the count of records satisfying the specified query
|
1702
|
-
parameters. This operation is useful to determine how many records pass a
|
1703
|
-
particular query criteria without retrieving large amounts of data. See the
|
1704
|
-
queryhelp operation (/udl/<datatype>/queryhelp) for more details on
|
1705
|
-
valid/required query parameter information.
|
1706
|
-
|
1707
|
-
Args:
|
1708
|
-
epoch: Time of validity for state vector in ISO 8601 UTC datetime format, with
|
1709
|
-
microsecond precision. (YYYY-MM-DDTHH:MM:SS.ssssssZ)
|
1710
|
-
|
1711
|
-
extra_headers: Send extra headers
|
1712
|
-
|
1713
|
-
extra_query: Add additional query parameters to the request
|
1714
|
-
|
1715
|
-
extra_body: Add additional JSON properties to the request
|
1716
|
-
|
1717
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
1718
|
-
"""
|
1719
|
-
extra_headers = {"Accept": "text/plain", **(extra_headers or {})}
|
1720
|
-
return await self._get(
|
1721
|
-
"/udl/statevector/count",
|
1722
|
-
options=make_request_options(
|
1723
|
-
extra_headers=extra_headers,
|
1724
|
-
extra_query=extra_query,
|
1725
|
-
extra_body=extra_body,
|
1726
|
-
timeout=timeout,
|
1727
|
-
query=await async_maybe_transform({"epoch": epoch}, statevector_count_params.StatevectorCountParams),
|
1728
|
-
),
|
1729
|
-
cast_to=str,
|
1730
|
-
)
|
1731
|
-
|
1732
|
-
async def create_bulk(
|
1733
|
-
self,
|
1734
|
-
*,
|
1735
|
-
body: Iterable[StateVectorIngestParam],
|
1736
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
1737
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
1738
|
-
extra_headers: Headers | None = None,
|
1739
|
-
extra_query: Query | None = None,
|
1740
|
-
extra_body: Body | None = None,
|
1741
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1742
|
-
) -> None:
|
1743
|
-
"""
|
1744
|
-
Service operation intended for initial integration only, to take a list of state
|
1745
|
-
vectors as a POST body and ingest into the database. This operation is not
|
1746
|
-
intended to be used for automated feeds into UDL. Data providers should contact
|
1747
|
-
the UDL team for specific role assignments and for instructions on setting up a
|
1748
|
-
permanent feed through an alternate mechanism.
|
1749
|
-
|
1750
|
-
Args:
|
1751
|
-
extra_headers: Send extra headers
|
1752
|
-
|
1753
|
-
extra_query: Add additional query parameters to the request
|
1754
|
-
|
1755
|
-
extra_body: Add additional JSON properties to the request
|
1756
|
-
|
1757
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
1758
|
-
"""
|
1759
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1760
|
-
return await self._post(
|
1761
|
-
"/udl/statevector/createBulk",
|
1762
|
-
body=await async_maybe_transform(body, Iterable[StateVectorIngestParam]),
|
1763
|
-
options=make_request_options(
|
1764
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1765
|
-
),
|
1766
|
-
cast_to=NoneType,
|
1767
|
-
)
|
1768
|
-
|
1769
|
-
async def get(
|
1770
|
-
self,
|
1771
|
-
id: str,
|
1772
|
-
*,
|
1773
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
1774
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
1775
|
-
extra_headers: Headers | None = None,
|
1776
|
-
extra_query: Query | None = None,
|
1777
|
-
extra_body: Body | None = None,
|
1778
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1779
|
-
) -> StateVectorFull:
|
1780
|
-
"""
|
1781
|
-
Service operation to get a single state vector by its unique ID passed as a path
|
1782
|
-
parameter.
|
1783
|
-
|
1784
|
-
Args:
|
1785
|
-
extra_headers: Send extra headers
|
1786
|
-
|
1787
|
-
extra_query: Add additional query parameters to the request
|
1788
|
-
|
1789
|
-
extra_body: Add additional JSON properties to the request
|
1790
|
-
|
1791
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
1792
|
-
"""
|
1793
|
-
if not id:
|
1794
|
-
raise ValueError(f"Expected a non-empty value for `id` but received {id!r}")
|
1795
|
-
return await self._get(
|
1796
|
-
f"/udl/statevector/{id}",
|
1797
|
-
options=make_request_options(
|
1798
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1799
|
-
),
|
1800
|
-
cast_to=StateVectorFull,
|
1801
|
-
)
|
1802
|
-
|
1803
|
-
async def queryhelp(
|
1804
|
-
self,
|
1805
|
-
*,
|
1806
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
1807
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
1808
|
-
extra_headers: Headers | None = None,
|
1809
|
-
extra_query: Query | None = None,
|
1810
|
-
extra_body: Body | None = None,
|
1811
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1812
|
-
) -> None:
|
1813
|
-
"""
|
1814
|
-
Service operation to provide detailed information on available dynamic query
|
1815
|
-
parameters for a particular data type.
|
1816
|
-
"""
|
1817
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1818
|
-
return await self._get(
|
1819
|
-
"/udl/statevector/queryhelp",
|
1820
|
-
options=make_request_options(
|
1821
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1822
|
-
),
|
1823
|
-
cast_to=NoneType,
|
1824
|
-
)
|
1825
|
-
|
1826
|
-
async def tuple(
|
1827
|
-
self,
|
1828
|
-
*,
|
1829
|
-
columns: str,
|
1830
|
-
epoch: Union[str, datetime],
|
1831
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
1832
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
1833
|
-
extra_headers: Headers | None = None,
|
1834
|
-
extra_query: Query | None = None,
|
1835
|
-
extra_body: Body | None = None,
|
1836
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1837
|
-
) -> StatevectorTupleResponse:
|
1838
|
-
"""
|
1839
|
-
Service operation to dynamically query data and only return specified
|
1840
|
-
columns/fields. Requested columns are specified by the 'columns' query parameter
|
1841
|
-
and should be a comma separated list of valid fields for the specified data
|
1842
|
-
type. classificationMarking is always returned. See the queryhelp operation
|
1843
|
-
(/udl/<datatype>/queryhelp) for more details on valid/required query parameter
|
1844
|
-
information. An example URI: /udl/elset/tuple?columns=satNo,period&epoch=>now-5
|
1845
|
-
hours would return the satNo and period of elsets with an epoch greater than 5
|
1846
|
-
hours ago.
|
1847
|
-
|
1848
|
-
Args:
|
1849
|
-
columns: Comma-separated list of valid field names for this data type to be returned in
|
1850
|
-
the response. Only the fields specified will be returned as well as the
|
1851
|
-
classification marking of the data, if applicable. See the ‘queryhelp’ operation
|
1852
|
-
for a complete list of possible fields.
|
1853
|
-
|
1854
|
-
epoch: Time of validity for state vector in ISO 8601 UTC datetime format, with
|
1855
|
-
microsecond precision. (YYYY-MM-DDTHH:MM:SS.ssssssZ)
|
1856
|
-
|
1857
|
-
extra_headers: Send extra headers
|
1858
|
-
|
1859
|
-
extra_query: Add additional query parameters to the request
|
1860
|
-
|
1861
|
-
extra_body: Add additional JSON properties to the request
|
1862
|
-
|
1863
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
1864
|
-
"""
|
1865
|
-
return await self._get(
|
1866
|
-
"/udl/statevector/tuple",
|
1867
|
-
options=make_request_options(
|
1868
|
-
extra_headers=extra_headers,
|
1869
|
-
extra_query=extra_query,
|
1870
|
-
extra_body=extra_body,
|
1871
|
-
timeout=timeout,
|
1872
|
-
query=await async_maybe_transform(
|
1873
|
-
{
|
1874
|
-
"columns": columns,
|
1875
|
-
"epoch": epoch,
|
1876
|
-
},
|
1877
|
-
statevector_tuple_params.StatevectorTupleParams,
|
1878
|
-
),
|
1879
|
-
),
|
1880
|
-
cast_to=StatevectorTupleResponse,
|
1881
|
-
)
|
1882
|
-
|
1883
|
-
async def unvalidated_publish(
|
1884
|
-
self,
|
1885
|
-
*,
|
1886
|
-
body: Iterable[StateVectorIngestParam],
|
1887
|
-
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
1888
|
-
# The extra values given here take precedence over values defined on the client or passed to this method.
|
1889
|
-
extra_headers: Headers | None = None,
|
1890
|
-
extra_query: Query | None = None,
|
1891
|
-
extra_body: Body | None = None,
|
1892
|
-
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1893
|
-
) -> None:
|
1894
|
-
"""
|
1895
|
-
Service operation to take multiple state vectors as a POST body and ingest into
|
1896
|
-
the database. This operation is intended to be used for automated feeds into
|
1897
|
-
UDL. A specific role is required to perform this service operation. Please
|
1898
|
-
contact the UDL team for assistance.
|
1899
|
-
|
1900
|
-
Args:
|
1901
|
-
extra_headers: Send extra headers
|
1902
|
-
|
1903
|
-
extra_query: Add additional query parameters to the request
|
1904
|
-
|
1905
|
-
extra_body: Add additional JSON properties to the request
|
1906
|
-
|
1907
|
-
timeout: Override the client-level default timeout for this request, in seconds
|
1908
|
-
"""
|
1909
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1910
|
-
return await self._post(
|
1911
|
-
"/filedrop/udl-sv",
|
1912
|
-
body=await async_maybe_transform(body, Iterable[StateVectorIngestParam]),
|
1913
|
-
options=make_request_options(
|
1914
|
-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1915
|
-
),
|
1916
|
-
cast_to=NoneType,
|
1917
|
-
)
|
1918
|
-
|
1919
|
-
|
1920
|
-
class StatevectorResourceWithRawResponse:
|
1921
|
-
def __init__(self, statevector: StatevectorResource) -> None:
|
1922
|
-
self._statevector = statevector
|
1923
|
-
|
1924
|
-
self.create = to_raw_response_wrapper(
|
1925
|
-
statevector.create,
|
1926
|
-
)
|
1927
|
-
self.list = to_raw_response_wrapper(
|
1928
|
-
statevector.list,
|
1929
|
-
)
|
1930
|
-
self.count = to_raw_response_wrapper(
|
1931
|
-
statevector.count,
|
1932
|
-
)
|
1933
|
-
self.create_bulk = to_raw_response_wrapper(
|
1934
|
-
statevector.create_bulk,
|
1935
|
-
)
|
1936
|
-
self.get = to_raw_response_wrapper(
|
1937
|
-
statevector.get,
|
1938
|
-
)
|
1939
|
-
self.queryhelp = to_raw_response_wrapper(
|
1940
|
-
statevector.queryhelp,
|
1941
|
-
)
|
1942
|
-
self.tuple = to_raw_response_wrapper(
|
1943
|
-
statevector.tuple,
|
1944
|
-
)
|
1945
|
-
self.unvalidated_publish = to_raw_response_wrapper(
|
1946
|
-
statevector.unvalidated_publish,
|
1947
|
-
)
|
1948
|
-
|
1949
|
-
@cached_property
|
1950
|
-
def history(self) -> HistoryResourceWithRawResponse:
|
1951
|
-
return HistoryResourceWithRawResponse(self._statevector.history)
|
1952
|
-
|
1953
|
-
@cached_property
|
1954
|
-
def current(self) -> CurrentResourceWithRawResponse:
|
1955
|
-
return CurrentResourceWithRawResponse(self._statevector.current)
|
1956
|
-
|
1957
|
-
|
1958
|
-
class AsyncStatevectorResourceWithRawResponse:
|
1959
|
-
def __init__(self, statevector: AsyncStatevectorResource) -> None:
|
1960
|
-
self._statevector = statevector
|
1961
|
-
|
1962
|
-
self.create = async_to_raw_response_wrapper(
|
1963
|
-
statevector.create,
|
1964
|
-
)
|
1965
|
-
self.list = async_to_raw_response_wrapper(
|
1966
|
-
statevector.list,
|
1967
|
-
)
|
1968
|
-
self.count = async_to_raw_response_wrapper(
|
1969
|
-
statevector.count,
|
1970
|
-
)
|
1971
|
-
self.create_bulk = async_to_raw_response_wrapper(
|
1972
|
-
statevector.create_bulk,
|
1973
|
-
)
|
1974
|
-
self.get = async_to_raw_response_wrapper(
|
1975
|
-
statevector.get,
|
1976
|
-
)
|
1977
|
-
self.queryhelp = async_to_raw_response_wrapper(
|
1978
|
-
statevector.queryhelp,
|
1979
|
-
)
|
1980
|
-
self.tuple = async_to_raw_response_wrapper(
|
1981
|
-
statevector.tuple,
|
1982
|
-
)
|
1983
|
-
self.unvalidated_publish = async_to_raw_response_wrapper(
|
1984
|
-
statevector.unvalidated_publish,
|
1985
|
-
)
|
1986
|
-
|
1987
|
-
@cached_property
|
1988
|
-
def history(self) -> AsyncHistoryResourceWithRawResponse:
|
1989
|
-
return AsyncHistoryResourceWithRawResponse(self._statevector.history)
|
1990
|
-
|
1991
|
-
@cached_property
|
1992
|
-
def current(self) -> AsyncCurrentResourceWithRawResponse:
|
1993
|
-
return AsyncCurrentResourceWithRawResponse(self._statevector.current)
|
1994
|
-
|
1995
|
-
|
1996
|
-
class StatevectorResourceWithStreamingResponse:
|
1997
|
-
def __init__(self, statevector: StatevectorResource) -> None:
|
1998
|
-
self._statevector = statevector
|
1999
|
-
|
2000
|
-
self.create = to_streamed_response_wrapper(
|
2001
|
-
statevector.create,
|
2002
|
-
)
|
2003
|
-
self.list = to_streamed_response_wrapper(
|
2004
|
-
statevector.list,
|
2005
|
-
)
|
2006
|
-
self.count = to_streamed_response_wrapper(
|
2007
|
-
statevector.count,
|
2008
|
-
)
|
2009
|
-
self.create_bulk = to_streamed_response_wrapper(
|
2010
|
-
statevector.create_bulk,
|
2011
|
-
)
|
2012
|
-
self.get = to_streamed_response_wrapper(
|
2013
|
-
statevector.get,
|
2014
|
-
)
|
2015
|
-
self.queryhelp = to_streamed_response_wrapper(
|
2016
|
-
statevector.queryhelp,
|
2017
|
-
)
|
2018
|
-
self.tuple = to_streamed_response_wrapper(
|
2019
|
-
statevector.tuple,
|
2020
|
-
)
|
2021
|
-
self.unvalidated_publish = to_streamed_response_wrapper(
|
2022
|
-
statevector.unvalidated_publish,
|
2023
|
-
)
|
2024
|
-
|
2025
|
-
@cached_property
|
2026
|
-
def history(self) -> HistoryResourceWithStreamingResponse:
|
2027
|
-
return HistoryResourceWithStreamingResponse(self._statevector.history)
|
2028
|
-
|
2029
|
-
@cached_property
|
2030
|
-
def current(self) -> CurrentResourceWithStreamingResponse:
|
2031
|
-
return CurrentResourceWithStreamingResponse(self._statevector.current)
|
2032
|
-
|
2033
|
-
|
2034
|
-
class AsyncStatevectorResourceWithStreamingResponse:
|
2035
|
-
def __init__(self, statevector: AsyncStatevectorResource) -> None:
|
2036
|
-
self._statevector = statevector
|
2037
|
-
|
2038
|
-
self.create = async_to_streamed_response_wrapper(
|
2039
|
-
statevector.create,
|
2040
|
-
)
|
2041
|
-
self.list = async_to_streamed_response_wrapper(
|
2042
|
-
statevector.list,
|
2043
|
-
)
|
2044
|
-
self.count = async_to_streamed_response_wrapper(
|
2045
|
-
statevector.count,
|
2046
|
-
)
|
2047
|
-
self.create_bulk = async_to_streamed_response_wrapper(
|
2048
|
-
statevector.create_bulk,
|
2049
|
-
)
|
2050
|
-
self.get = async_to_streamed_response_wrapper(
|
2051
|
-
statevector.get,
|
2052
|
-
)
|
2053
|
-
self.queryhelp = async_to_streamed_response_wrapper(
|
2054
|
-
statevector.queryhelp,
|
2055
|
-
)
|
2056
|
-
self.tuple = async_to_streamed_response_wrapper(
|
2057
|
-
statevector.tuple,
|
2058
|
-
)
|
2059
|
-
self.unvalidated_publish = async_to_streamed_response_wrapper(
|
2060
|
-
statevector.unvalidated_publish,
|
2061
|
-
)
|
2062
|
-
|
2063
|
-
@cached_property
|
2064
|
-
def history(self) -> AsyncHistoryResourceWithStreamingResponse:
|
2065
|
-
return AsyncHistoryResourceWithStreamingResponse(self._statevector.history)
|
2066
|
-
|
2067
|
-
@cached_property
|
2068
|
-
def current(self) -> AsyncCurrentResourceWithStreamingResponse:
|
2069
|
-
return AsyncCurrentResourceWithStreamingResponse(self._statevector.current)
|