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
@@ -56,14 +56,6 @@ from .sgi import (
|
|
56
56
|
SgiResourceWithStreamingResponse,
|
57
57
|
AsyncSgiResourceWithStreamingResponse,
|
58
58
|
)
|
59
|
-
from .udl import (
|
60
|
-
UdlResource,
|
61
|
-
AsyncUdlResource,
|
62
|
-
UdlResourceWithRawResponse,
|
63
|
-
AsyncUdlResourceWithRawResponse,
|
64
|
-
UdlResourceWithStreamingResponse,
|
65
|
-
AsyncUdlResourceWithStreamingResponse,
|
66
|
-
)
|
67
59
|
from .beam import (
|
68
60
|
BeamResource,
|
69
61
|
AsyncBeamResource,
|
@@ -144,14 +136,6 @@ from .buses import (
|
|
144
136
|
BusesResourceWithStreamingResponse,
|
145
137
|
AsyncBusesResourceWithStreamingResponse,
|
146
138
|
)
|
147
|
-
from .h3geo import (
|
148
|
-
H3geoResource,
|
149
|
-
AsyncH3geoResource,
|
150
|
-
H3geoResourceWithRawResponse,
|
151
|
-
AsyncH3geoResourceWithRawResponse,
|
152
|
-
H3geoResourceWithStreamingResponse,
|
153
|
-
AsyncH3geoResourceWithStreamingResponse,
|
154
|
-
)
|
155
139
|
from .stage import (
|
156
140
|
StageResource,
|
157
141
|
AsyncStageResource,
|
@@ -176,14 +160,6 @@ from .video import (
|
|
176
160
|
VideoResourceWithStreamingResponse,
|
177
161
|
AsyncVideoResourceWithStreamingResponse,
|
178
162
|
)
|
179
|
-
from .ecpsdr import (
|
180
|
-
EcpsdrResource,
|
181
|
-
AsyncEcpsdrResource,
|
182
|
-
EcpsdrResourceWithRawResponse,
|
183
|
-
AsyncEcpsdrResourceWithRawResponse,
|
184
|
-
EcpsdrResourceWithStreamingResponse,
|
185
|
-
AsyncEcpsdrResourceWithStreamingResponse,
|
186
|
-
)
|
187
163
|
from .elsets import (
|
188
164
|
ElsetsResource,
|
189
165
|
AsyncElsetsResource,
|
@@ -192,6 +168,14 @@ from .elsets import (
|
|
192
168
|
ElsetsResourceWithStreamingResponse,
|
193
169
|
AsyncElsetsResourceWithStreamingResponse,
|
194
170
|
)
|
171
|
+
from .h3_geo import (
|
172
|
+
H3GeoResource,
|
173
|
+
AsyncH3GeoResource,
|
174
|
+
H3GeoResourceWithRawResponse,
|
175
|
+
AsyncH3GeoResourceWithRawResponse,
|
176
|
+
H3GeoResourceWithStreamingResponse,
|
177
|
+
AsyncH3GeoResourceWithStreamingResponse,
|
178
|
+
)
|
195
179
|
from .hazard import (
|
196
180
|
HazardResource,
|
197
181
|
AsyncHazardResource,
|
@@ -200,14 +184,6 @@ from .hazard import (
|
|
200
184
|
HazardResourceWithStreamingResponse,
|
201
185
|
AsyncHazardResourceWithStreamingResponse,
|
202
186
|
)
|
203
|
-
from .rfband import (
|
204
|
-
RfbandResource,
|
205
|
-
AsyncRfbandResource,
|
206
|
-
RfbandResourceWithRawResponse,
|
207
|
-
AsyncRfbandResourceWithRawResponse,
|
208
|
-
RfbandResourceWithStreamingResponse,
|
209
|
-
AsyncRfbandResourceWithStreamingResponse,
|
210
|
-
)
|
211
187
|
from .sensor import (
|
212
188
|
SensorResource,
|
213
189
|
AsyncSensorResource,
|
@@ -232,14 +208,6 @@ from .status import (
|
|
232
208
|
StatusResourceWithStreamingResponse,
|
233
209
|
AsyncStatusResourceWithStreamingResponse,
|
234
210
|
)
|
235
|
-
from .taiutc import (
|
236
|
-
TaiutcResource,
|
237
|
-
AsyncTaiutcResource,
|
238
|
-
TaiutcResourceWithRawResponse,
|
239
|
-
AsyncTaiutcResourceWithRawResponse,
|
240
|
-
TaiutcResourceWithStreamingResponse,
|
241
|
-
AsyncTaiutcResourceWithStreamingResponse,
|
242
|
-
)
|
243
211
|
from .vessel import (
|
244
212
|
VesselResource,
|
245
213
|
AsyncVesselResource,
|
@@ -248,6 +216,14 @@ from .vessel import (
|
|
248
216
|
VesselResourceWithStreamingResponse,
|
249
217
|
AsyncVesselResourceWithStreamingResponse,
|
250
218
|
)
|
219
|
+
from .ecp_sdr import (
|
220
|
+
EcpSdrResource,
|
221
|
+
AsyncEcpSdrResource,
|
222
|
+
EcpSdrResourceWithRawResponse,
|
223
|
+
AsyncEcpSdrResourceWithRawResponse,
|
224
|
+
EcpSdrResourceWithStreamingResponse,
|
225
|
+
AsyncEcpSdrResourceWithStreamingResponse,
|
226
|
+
)
|
251
227
|
from .engines import (
|
252
228
|
EnginesResource,
|
253
229
|
AsyncEnginesResource,
|
@@ -264,6 +240,14 @@ from .onorbit import (
|
|
264
240
|
OnorbitResourceWithStreamingResponse,
|
265
241
|
AsyncOnorbitResourceWithStreamingResponse,
|
266
242
|
)
|
243
|
+
from .rf_band import (
|
244
|
+
RfBandResource,
|
245
|
+
AsyncRfBandResource,
|
246
|
+
RfBandResourceWithRawResponse,
|
247
|
+
AsyncRfBandResourceWithRawResponse,
|
248
|
+
RfBandResourceWithStreamingResponse,
|
249
|
+
AsyncRfBandResourceWithStreamingResponse,
|
250
|
+
)
|
267
251
|
from .surface import (
|
268
252
|
SurfaceResource,
|
269
253
|
AsyncSurfaceResource,
|
@@ -272,6 +256,14 @@ from .surface import (
|
|
272
256
|
SurfaceResourceWithStreamingResponse,
|
273
257
|
AsyncSurfaceResourceWithStreamingResponse,
|
274
258
|
)
|
259
|
+
from .tai_utc import (
|
260
|
+
TaiUtcResource,
|
261
|
+
AsyncTaiUtcResource,
|
262
|
+
TaiUtcResourceWithRawResponse,
|
263
|
+
AsyncTaiUtcResourceWithRawResponse,
|
264
|
+
TaiUtcResourceWithStreamingResponse,
|
265
|
+
AsyncTaiUtcResourceWithStreamingResponse,
|
266
|
+
)
|
275
267
|
from .aircraft import (
|
276
268
|
AircraftResource,
|
277
269
|
AsyncAircraftResource,
|
@@ -368,22 +360,6 @@ from .equipment import (
|
|
368
360
|
EquipmentResourceWithStreamingResponse,
|
369
361
|
AsyncEquipmentResourceWithStreamingResponse,
|
370
362
|
)
|
371
|
-
from .geostatus import (
|
372
|
-
GeostatusResource,
|
373
|
-
AsyncGeostatusResource,
|
374
|
-
GeostatusResourceWithRawResponse,
|
375
|
-
AsyncGeostatusResourceWithRawResponse,
|
376
|
-
GeostatusResourceWithStreamingResponse,
|
377
|
-
AsyncGeostatusResourceWithStreamingResponse,
|
378
|
-
)
|
379
|
-
from .gnssrawif import (
|
380
|
-
GnssrawifResource,
|
381
|
-
AsyncGnssrawifResource,
|
382
|
-
GnssrawifResourceWithRawResponse,
|
383
|
-
AsyncGnssrawifResourceWithRawResponse,
|
384
|
-
GnssrawifResourceWithStreamingResponse,
|
385
|
-
AsyncGnssrawifResourceWithStreamingResponse,
|
386
|
-
)
|
387
363
|
from .maneuvers import (
|
388
364
|
ManeuversResource,
|
389
365
|
AsyncManeuversResource,
|
@@ -392,22 +368,6 @@ from .maneuvers import (
|
|
392
368
|
ManeuversResourceWithStreamingResponse,
|
393
369
|
AsyncManeuversResourceWithStreamingResponse,
|
394
370
|
)
|
395
|
-
from .monoradar import (
|
396
|
-
MonoradarResource,
|
397
|
-
AsyncMonoradarResource,
|
398
|
-
MonoradarResourceWithRawResponse,
|
399
|
-
AsyncMonoradarResourceWithRawResponse,
|
400
|
-
MonoradarResourceWithStreamingResponse,
|
401
|
-
AsyncMonoradarResourceWithStreamingResponse,
|
402
|
-
)
|
403
|
-
from .rfemitter import (
|
404
|
-
RfemitterResource,
|
405
|
-
AsyncRfemitterResource,
|
406
|
-
RfemitterResourceWithRawResponse,
|
407
|
-
AsyncRfemitterResourceWithRawResponse,
|
408
|
-
RfemitterResourceWithStreamingResponse,
|
409
|
-
AsyncRfemitterResourceWithStreamingResponse,
|
410
|
-
)
|
411
371
|
from .scs_views import (
|
412
372
|
ScsViewsResource,
|
413
373
|
AsyncScsViewsResource,
|
@@ -416,14 +376,6 @@ from .scs_views import (
|
|
416
376
|
ScsViewsResourceWithStreamingResponse,
|
417
377
|
AsyncScsViewsResourceWithStreamingResponse,
|
418
378
|
)
|
419
|
-
from .sortieppr import (
|
420
|
-
SortiepprResource,
|
421
|
-
AsyncSortiepprResource,
|
422
|
-
SortiepprResourceWithRawResponse,
|
423
|
-
AsyncSortiepprResourceWithRawResponse,
|
424
|
-
SortiepprResourceWithStreamingResponse,
|
425
|
-
AsyncSortiepprResourceWithStreamingResponse,
|
426
|
-
)
|
427
379
|
from .substatus import (
|
428
380
|
SubstatusResource,
|
429
381
|
AsyncSubstatusResource,
|
@@ -456,13 +408,21 @@ from .flightplan import (
|
|
456
408
|
FlightplanResourceWithStreamingResponse,
|
457
409
|
AsyncFlightplanResourceWithStreamingResponse,
|
458
410
|
)
|
459
|
-
from .
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
411
|
+
from .geo_status import (
|
412
|
+
GeoStatusResource,
|
413
|
+
AsyncGeoStatusResource,
|
414
|
+
GeoStatusResourceWithRawResponse,
|
415
|
+
AsyncGeoStatusResourceWithRawResponse,
|
416
|
+
GeoStatusResourceWithStreamingResponse,
|
417
|
+
AsyncGeoStatusResourceWithStreamingResponse,
|
418
|
+
)
|
419
|
+
from .gnss_rawif import (
|
420
|
+
GnssRawifResource,
|
421
|
+
AsyncGnssRawifResource,
|
422
|
+
GnssRawifResourceWithRawResponse,
|
423
|
+
AsyncGnssRawifResourceWithRawResponse,
|
424
|
+
GnssRawifResourceWithStreamingResponse,
|
425
|
+
AsyncGnssRawifResourceWithStreamingResponse,
|
466
426
|
)
|
467
427
|
from .navigation import (
|
468
428
|
NavigationResource,
|
@@ -480,21 +440,13 @@ from .orbittrack import (
|
|
480
440
|
OrbittrackResourceWithStreamingResponse,
|
481
441
|
AsyncOrbittrackResourceWithStreamingResponse,
|
482
442
|
)
|
483
|
-
from .
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
)
|
491
|
-
from .routestats import (
|
492
|
-
RoutestatsResource,
|
493
|
-
AsyncRoutestatsResource,
|
494
|
-
RoutestatsResourceWithRawResponse,
|
495
|
-
AsyncRoutestatsResourceWithRawResponse,
|
496
|
-
RoutestatsResourceWithStreamingResponse,
|
497
|
-
AsyncRoutestatsResourceWithStreamingResponse,
|
443
|
+
from .rf_emitter import (
|
444
|
+
RfEmitterResource,
|
445
|
+
AsyncRfEmitterResource,
|
446
|
+
RfEmitterResourceWithRawResponse,
|
447
|
+
AsyncRfEmitterResourceWithRawResponse,
|
448
|
+
RfEmitterResourceWithStreamingResponse,
|
449
|
+
AsyncRfEmitterResourceWithStreamingResponse,
|
498
450
|
)
|
499
451
|
from .scientific import (
|
500
452
|
ScientificResource,
|
@@ -504,61 +456,13 @@ from .scientific import (
|
|
504
456
|
ScientificResourceWithStreamingResponse,
|
505
457
|
AsyncScientificResourceWithStreamingResponse,
|
506
458
|
)
|
507
|
-
from .
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
)
|
515
|
-
from .sensortype import (
|
516
|
-
SensortypeResource,
|
517
|
-
AsyncSensortypeResource,
|
518
|
-
SensortypeResourceWithRawResponse,
|
519
|
-
AsyncSensortypeResourceWithRawResponse,
|
520
|
-
SensortypeResourceWithStreamingResponse,
|
521
|
-
AsyncSensortypeResourceWithStreamingResponse,
|
522
|
-
)
|
523
|
-
from .siteremark import (
|
524
|
-
SiteremarkResource,
|
525
|
-
AsyncSiteremarkResource,
|
526
|
-
SiteremarkResourceWithRawResponse,
|
527
|
-
AsyncSiteremarkResourceWithRawResponse,
|
528
|
-
SiteremarkResourceWithStreamingResponse,
|
529
|
-
AsyncSiteremarkResourceWithStreamingResponse,
|
530
|
-
)
|
531
|
-
from .sitestatus import (
|
532
|
-
SitestatusResource,
|
533
|
-
AsyncSitestatusResource,
|
534
|
-
SitestatusResourceWithRawResponse,
|
535
|
-
AsyncSitestatusResourceWithRawResponse,
|
536
|
-
SitestatusResourceWithStreamingResponse,
|
537
|
-
AsyncSitestatusResourceWithStreamingResponse,
|
538
|
-
)
|
539
|
-
from .skyimagery import (
|
540
|
-
SkyimageryResource,
|
541
|
-
AsyncSkyimageryResource,
|
542
|
-
SkyimageryResourceWithRawResponse,
|
543
|
-
AsyncSkyimageryResourceWithRawResponse,
|
544
|
-
SkyimageryResourceWithStreamingResponse,
|
545
|
-
AsyncSkyimageryResourceWithStreamingResponse,
|
546
|
-
)
|
547
|
-
from .solararray import (
|
548
|
-
SolararrayResource,
|
549
|
-
AsyncSolararrayResource,
|
550
|
-
SolararrayResourceWithRawResponse,
|
551
|
-
AsyncSolararrayResourceWithRawResponse,
|
552
|
-
SolararrayResourceWithStreamingResponse,
|
553
|
-
AsyncSolararrayResourceWithStreamingResponse,
|
554
|
-
)
|
555
|
-
from .trackroute import (
|
556
|
-
TrackrouteResource,
|
557
|
-
AsyncTrackrouteResource,
|
558
|
-
TrackrouteResourceWithRawResponse,
|
559
|
-
AsyncTrackrouteResourceWithRawResponse,
|
560
|
-
TrackrouteResourceWithStreamingResponse,
|
561
|
-
AsyncTrackrouteResourceWithStreamingResponse,
|
459
|
+
from .sortie_ppr import (
|
460
|
+
SortiePprResource,
|
461
|
+
AsyncSortiePprResource,
|
462
|
+
SortiePprResourceWithRawResponse,
|
463
|
+
AsyncSortiePprResourceWithRawResponse,
|
464
|
+
SortiePprResourceWithStreamingResponse,
|
465
|
+
AsyncSortiePprResourceWithStreamingResponse,
|
562
466
|
)
|
563
467
|
from .ais_objects import (
|
564
468
|
AIsObjectsResource,
|
@@ -576,13 +480,13 @@ from .gnss_raw_if import (
|
|
576
480
|
GnssRawIfResourceWithStreamingResponse,
|
577
481
|
AsyncGnssRawIfResourceWithStreamingResponse,
|
578
482
|
)
|
579
|
-
from .
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
483
|
+
from .launch_site import (
|
484
|
+
LaunchSiteResource,
|
485
|
+
AsyncLaunchSiteResource,
|
486
|
+
LaunchSiteResourceWithRawResponse,
|
487
|
+
AsyncLaunchSiteResourceWithRawResponse,
|
488
|
+
LaunchSiteResourceWithStreamingResponse,
|
489
|
+
AsyncLaunchSiteResourceWithStreamingResponse,
|
586
490
|
)
|
587
491
|
from .link_status import (
|
588
492
|
LinkStatusResource,
|
@@ -600,21 +504,69 @@ from .onorbitlist import (
|
|
600
504
|
OnorbitlistResourceWithStreamingResponse,
|
601
505
|
AsyncOnorbitlistResourceWithStreamingResponse,
|
602
506
|
)
|
603
|
-
from .
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
)
|
611
|
-
from .
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
507
|
+
from .route_stats import (
|
508
|
+
RouteStatsResource,
|
509
|
+
AsyncRouteStatsResource,
|
510
|
+
RouteStatsResourceWithRawResponse,
|
511
|
+
AsyncRouteStatsResourceWithRawResponse,
|
512
|
+
RouteStatsResourceWithStreamingResponse,
|
513
|
+
AsyncRouteStatsResourceWithStreamingResponse,
|
514
|
+
)
|
515
|
+
from .sensor_plan import (
|
516
|
+
SensorPlanResource,
|
517
|
+
AsyncSensorPlanResource,
|
518
|
+
SensorPlanResourceWithRawResponse,
|
519
|
+
AsyncSensorPlanResourceWithRawResponse,
|
520
|
+
SensorPlanResourceWithStreamingResponse,
|
521
|
+
AsyncSensorPlanResourceWithStreamingResponse,
|
522
|
+
)
|
523
|
+
from .sensor_type import (
|
524
|
+
SensorTypeResource,
|
525
|
+
AsyncSensorTypeResource,
|
526
|
+
SensorTypeResourceWithRawResponse,
|
527
|
+
AsyncSensorTypeResourceWithRawResponse,
|
528
|
+
SensorTypeResourceWithStreamingResponse,
|
529
|
+
AsyncSensorTypeResourceWithStreamingResponse,
|
530
|
+
)
|
531
|
+
from .site_remark import (
|
532
|
+
SiteRemarkResource,
|
533
|
+
AsyncSiteRemarkResource,
|
534
|
+
SiteRemarkResourceWithRawResponse,
|
535
|
+
AsyncSiteRemarkResourceWithRawResponse,
|
536
|
+
SiteRemarkResourceWithStreamingResponse,
|
537
|
+
AsyncSiteRemarkResourceWithStreamingResponse,
|
538
|
+
)
|
539
|
+
from .site_status import (
|
540
|
+
SiteStatusResource,
|
541
|
+
AsyncSiteStatusResource,
|
542
|
+
SiteStatusResourceWithRawResponse,
|
543
|
+
AsyncSiteStatusResourceWithRawResponse,
|
544
|
+
SiteStatusResourceWithStreamingResponse,
|
545
|
+
AsyncSiteStatusResourceWithStreamingResponse,
|
546
|
+
)
|
547
|
+
from .sky_imagery import (
|
548
|
+
SkyImageryResource,
|
549
|
+
AsyncSkyImageryResource,
|
550
|
+
SkyImageryResourceWithRawResponse,
|
551
|
+
AsyncSkyImageryResourceWithRawResponse,
|
552
|
+
SkyImageryResourceWithStreamingResponse,
|
553
|
+
AsyncSkyImageryResourceWithStreamingResponse,
|
554
|
+
)
|
555
|
+
from .solar_array import (
|
556
|
+
SolarArrayResource,
|
557
|
+
AsyncSolarArrayResource,
|
558
|
+
SolarArrayResourceWithRawResponse,
|
559
|
+
AsyncSolarArrayResourceWithRawResponse,
|
560
|
+
SolarArrayResourceWithStreamingResponse,
|
561
|
+
AsyncSolarArrayResourceWithStreamingResponse,
|
562
|
+
)
|
563
|
+
from .track_route import (
|
564
|
+
TrackRouteResource,
|
565
|
+
AsyncTrackRouteResource,
|
566
|
+
TrackRouteResourceWithRawResponse,
|
567
|
+
AsyncTrackRouteResourceWithRawResponse,
|
568
|
+
TrackRouteResourceWithStreamingResponse,
|
569
|
+
AsyncTrackRouteResourceWithStreamingResponse,
|
618
570
|
)
|
619
571
|
from .transponder import (
|
620
572
|
TransponderResource,
|
@@ -624,22 +576,6 @@ from .transponder import (
|
|
624
576
|
TransponderResourceWithStreamingResponse,
|
625
577
|
AsyncTransponderResourceWithStreamingResponse,
|
626
578
|
)
|
627
|
-
from .weatherdata import (
|
628
|
-
WeatherdataResource,
|
629
|
-
AsyncWeatherdataResource,
|
630
|
-
WeatherdataResourceWithRawResponse,
|
631
|
-
AsyncWeatherdataResourceWithRawResponse,
|
632
|
-
WeatherdataResourceWithStreamingResponse,
|
633
|
-
AsyncWeatherdataResourceWithStreamingResponse,
|
634
|
-
)
|
635
|
-
from .airloadplans import (
|
636
|
-
AirloadplansResource,
|
637
|
-
AsyncAirloadplansResource,
|
638
|
-
AirloadplansResourceWithRawResponse,
|
639
|
-
AsyncAirloadplansResourceWithRawResponse,
|
640
|
-
AirloadplansResourceWithStreamingResponse,
|
641
|
-
AsyncAirloadplansResourceWithStreamingResponse,
|
642
|
-
)
|
643
579
|
from .attitudesets import (
|
644
580
|
AttitudesetsResource,
|
645
581
|
AsyncAttitudesetsResource,
|
@@ -656,14 +592,6 @@ from .conjunctions import (
|
|
656
592
|
ConjunctionsResourceWithStreamingResponse,
|
657
593
|
AsyncConjunctionsResourceWithStreamingResponse,
|
658
594
|
)
|
659
|
-
from .h3geohexcell import (
|
660
|
-
H3geohexcellResource,
|
661
|
-
AsyncH3geohexcellResource,
|
662
|
-
H3geohexcellResourceWithRawResponse,
|
663
|
-
AsyncH3geohexcellResourceWithRawResponse,
|
664
|
-
H3geohexcellResourceWithStreamingResponse,
|
665
|
-
AsyncH3geohexcellResourceWithStreamingResponse,
|
666
|
-
)
|
667
595
|
from .launch_event import (
|
668
596
|
LaunchEventResource,
|
669
597
|
AsyncLaunchEventResource,
|
@@ -704,21 +632,45 @@ from .organization import (
|
|
704
632
|
OrganizationResourceWithStreamingResponse,
|
705
633
|
AsyncOrganizationResourceWithStreamingResponse,
|
706
634
|
)
|
707
|
-
from .
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
)
|
715
|
-
from .
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
635
|
+
from .rf_band_type import (
|
636
|
+
RfBandTypeResource,
|
637
|
+
AsyncRfBandTypeResource,
|
638
|
+
RfBandTypeResourceWithRawResponse,
|
639
|
+
AsyncRfBandTypeResourceWithRawResponse,
|
640
|
+
RfBandTypeResourceWithStreamingResponse,
|
641
|
+
AsyncRfBandTypeResourceWithStreamingResponse,
|
642
|
+
)
|
643
|
+
from .star_catalog import (
|
644
|
+
StarCatalogResource,
|
645
|
+
AsyncStarCatalogResource,
|
646
|
+
StarCatalogResourceWithRawResponse,
|
647
|
+
AsyncStarCatalogResourceWithRawResponse,
|
648
|
+
StarCatalogResourceWithStreamingResponse,
|
649
|
+
AsyncStarCatalogResourceWithStreamingResponse,
|
650
|
+
)
|
651
|
+
from .state_vector import (
|
652
|
+
StateVectorResource,
|
653
|
+
AsyncStateVectorResource,
|
654
|
+
StateVectorResourceWithRawResponse,
|
655
|
+
AsyncStateVectorResourceWithRawResponse,
|
656
|
+
StateVectorResourceWithStreamingResponse,
|
657
|
+
AsyncStateVectorResourceWithStreamingResponse,
|
658
|
+
)
|
659
|
+
from .weather_data import (
|
660
|
+
WeatherDataResource,
|
661
|
+
AsyncWeatherDataResource,
|
662
|
+
WeatherDataResourceWithRawResponse,
|
663
|
+
AsyncWeatherDataResourceWithRawResponse,
|
664
|
+
WeatherDataResourceWithStreamingResponse,
|
665
|
+
AsyncWeatherDataResourceWithStreamingResponse,
|
666
|
+
)
|
667
|
+
from .airload_plans import (
|
668
|
+
AirloadPlansResource,
|
669
|
+
AsyncAirloadPlansResource,
|
670
|
+
AirloadPlansResourceWithRawResponse,
|
671
|
+
AsyncAirloadPlansResourceWithRawResponse,
|
672
|
+
AirloadPlansResourceWithStreamingResponse,
|
673
|
+
AsyncAirloadPlansResourceWithStreamingResponse,
|
722
674
|
)
|
723
675
|
from .attitude_data import (
|
724
676
|
AttitudeDataResource,
|
@@ -744,14 +696,6 @@ from .beam_contours import (
|
|
744
696
|
BeamContoursResourceWithStreamingResponse,
|
745
697
|
AsyncBeamContoursResourceWithStreamingResponse,
|
746
698
|
)
|
747
|
-
from .diffofarrival import (
|
748
|
-
DiffofarrivalResource,
|
749
|
-
AsyncDiffofarrivalResource,
|
750
|
-
DiffofarrivalResourceWithRawResponse,
|
751
|
-
AsyncDiffofarrivalResourceWithRawResponse,
|
752
|
-
DiffofarrivalResourceWithStreamingResponse,
|
753
|
-
AsyncDiffofarrivalResourceWithStreamingResponse,
|
754
|
-
)
|
755
699
|
from .drift_history import (
|
756
700
|
DriftHistoryResource,
|
757
701
|
AsyncDriftHistoryResource,
|
@@ -760,30 +704,6 @@ from .drift_history import (
|
|
760
704
|
DriftHistoryResourceWithStreamingResponse,
|
761
705
|
AsyncDriftHistoryResourceWithStreamingResponse,
|
762
706
|
)
|
763
|
-
from .enginedetails import (
|
764
|
-
EnginedetailsResource,
|
765
|
-
AsyncEnginedetailsResource,
|
766
|
-
EnginedetailsResourceWithRawResponse,
|
767
|
-
AsyncEnginedetailsResourceWithRawResponse,
|
768
|
-
EnginedetailsResourceWithStreamingResponse,
|
769
|
-
AsyncEnginedetailsResourceWithStreamingResponse,
|
770
|
-
)
|
771
|
-
from .groundimagery import (
|
772
|
-
GroundimageryResource,
|
773
|
-
AsyncGroundimageryResource,
|
774
|
-
GroundimageryResourceWithRawResponse,
|
775
|
-
AsyncGroundimageryResourceWithRawResponse,
|
776
|
-
GroundimageryResourceWithStreamingResponse,
|
777
|
-
AsyncGroundimageryResourceWithStreamingResponse,
|
778
|
-
)
|
779
|
-
from .launchvehicle import (
|
780
|
-
LaunchvehicleResource,
|
781
|
-
AsyncLaunchvehicleResource,
|
782
|
-
LaunchvehicleResourceWithRawResponse,
|
783
|
-
AsyncLaunchvehicleResourceWithRawResponse,
|
784
|
-
LaunchvehicleResourceWithStreamingResponse,
|
785
|
-
AsyncLaunchvehicleResourceWithStreamingResponse,
|
786
|
-
)
|
787
707
|
from .manifoldelset import (
|
788
708
|
ManifoldelsetResource,
|
789
709
|
AsyncManifoldelsetResource,
|
@@ -800,21 +720,13 @@ from .operatingunit import (
|
|
800
720
|
OperatingunitResourceWithStreamingResponse,
|
801
721
|
AsyncOperatingunitResourceWithStreamingResponse,
|
802
722
|
)
|
803
|
-
from .
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
)
|
811
|
-
from .weatherreport import (
|
812
|
-
WeatherreportResource,
|
813
|
-
AsyncWeatherreportResource,
|
814
|
-
WeatherreportResourceWithRawResponse,
|
815
|
-
AsyncWeatherreportResourceWithRawResponse,
|
816
|
-
WeatherreportResourceWithStreamingResponse,
|
817
|
-
AsyncWeatherreportResourceWithStreamingResponse,
|
723
|
+
from .track_details import (
|
724
|
+
TrackDetailsResource,
|
725
|
+
AsyncTrackDetailsResource,
|
726
|
+
TrackDetailsResourceWithRawResponse,
|
727
|
+
AsyncTrackDetailsResourceWithRawResponse,
|
728
|
+
TrackDetailsResourceWithStreamingResponse,
|
729
|
+
AsyncTrackDetailsResourceWithStreamingResponse,
|
818
730
|
)
|
819
731
|
from .air_load_plans import (
|
820
732
|
AirLoadPlansResource,
|
@@ -840,14 +752,6 @@ from .airfield_slots import (
|
|
840
752
|
AirfieldSlotsResourceWithStreamingResponse,
|
841
753
|
AsyncAirfieldSlotsResourceWithStreamingResponse,
|
842
754
|
)
|
843
|
-
from .airfieldstatus import (
|
844
|
-
AirfieldstatusResource,
|
845
|
-
AsyncAirfieldstatusResource,
|
846
|
-
AirfieldstatusResourceWithRawResponse,
|
847
|
-
AsyncAirfieldstatusResourceWithRawResponse,
|
848
|
-
AirfieldstatusResourceWithStreamingResponse,
|
849
|
-
AsyncAirfieldstatusResourceWithStreamingResponse,
|
850
|
-
)
|
851
755
|
from .batterydetails import (
|
852
756
|
BatterydetailsResource,
|
853
757
|
AsyncBatterydetailsResource,
|
@@ -864,14 +768,6 @@ from .engine_details import (
|
|
864
768
|
EngineDetailsResourceWithStreamingResponse,
|
865
769
|
AsyncEngineDetailsResourceWithStreamingResponse,
|
866
770
|
)
|
867
|
-
from .eoobservations import (
|
868
|
-
EoobservationsResource,
|
869
|
-
AsyncEoobservationsResource,
|
870
|
-
EoobservationsResourceWithRawResponse,
|
871
|
-
AsyncEoobservationsResourceWithRawResponse,
|
872
|
-
EoobservationsResourceWithStreamingResponse,
|
873
|
-
AsyncEoobservationsResourceWithStreamingResponse,
|
874
|
-
)
|
875
771
|
from .ephemeris_sets import (
|
876
772
|
EphemerisSetsResource,
|
877
773
|
AsyncEphemerisSetsResource,
|
@@ -896,6 +792,14 @@ from .item_trackings import (
|
|
896
792
|
ItemTrackingsResourceWithStreamingResponse,
|
897
793
|
AsyncItemTrackingsResourceWithStreamingResponse,
|
898
794
|
)
|
795
|
+
from .launch_vehicle import (
|
796
|
+
LaunchVehicleResource,
|
797
|
+
AsyncLaunchVehicleResource,
|
798
|
+
LaunchVehicleResourceWithRawResponse,
|
799
|
+
AsyncLaunchVehicleResourceWithRawResponse,
|
800
|
+
LaunchVehicleResourceWithStreamingResponse,
|
801
|
+
AsyncLaunchVehicleResourceWithStreamingResponse,
|
802
|
+
)
|
899
803
|
from .missile_tracks import (
|
900
804
|
MissileTracksResource,
|
901
805
|
AsyncMissileTracksResource,
|
@@ -928,13 +832,13 @@ from .onorbitdetails import (
|
|
928
832
|
OnorbitdetailsResourceWithStreamingResponse,
|
929
833
|
AsyncOnorbitdetailsResourceWithStreamingResponse,
|
930
834
|
)
|
931
|
-
from .
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
835
|
+
from .weather_report import (
|
836
|
+
WeatherReportResource,
|
837
|
+
AsyncWeatherReportResource,
|
838
|
+
WeatherReportResourceWithRawResponse,
|
839
|
+
AsyncWeatherReportResourceWithRawResponse,
|
840
|
+
WeatherReportResourceWithStreamingResponse,
|
841
|
+
AsyncWeatherReportResourceWithStreamingResponse,
|
938
842
|
)
|
939
843
|
from .airfield_status import (
|
940
844
|
AirfieldStatusResource,
|
@@ -944,6 +848,14 @@ from .airfield_status import (
|
|
944
848
|
AirfieldStatusResourceWithStreamingResponse,
|
945
849
|
AsyncAirfieldStatusResourceWithStreamingResponse,
|
946
850
|
)
|
851
|
+
from .diff_of_arrival import (
|
852
|
+
DiffOfArrivalResource,
|
853
|
+
AsyncDiffOfArrivalResource,
|
854
|
+
DiffOfArrivalResourceWithRawResponse,
|
855
|
+
AsyncDiffOfArrivalResourceWithRawResponse,
|
856
|
+
DiffOfArrivalResourceWithStreamingResponse,
|
857
|
+
AsyncDiffOfArrivalResourceWithStreamingResponse,
|
858
|
+
)
|
947
859
|
from .effect_requests import (
|
948
860
|
EffectRequestsResource,
|
949
861
|
AsyncEffectRequestsResource,
|
@@ -952,14 +864,6 @@ from .effect_requests import (
|
|
952
864
|
EffectRequestsResourceWithStreamingResponse,
|
953
865
|
AsyncEffectRequestsResourceWithStreamingResponse,
|
954
866
|
)
|
955
|
-
from .eo_observations import (
|
956
|
-
EoObservationsResource,
|
957
|
-
AsyncEoObservationsResource,
|
958
|
-
EoObservationsResourceWithRawResponse,
|
959
|
-
AsyncEoObservationsResourceWithRawResponse,
|
960
|
-
EoObservationsResourceWithStreamingResponse,
|
961
|
-
AsyncEoObservationsResourceWithStreamingResponse,
|
962
|
-
)
|
963
867
|
from .event_evolution import (
|
964
868
|
EventEvolutionResource,
|
965
869
|
AsyncEventEvolutionResource,
|
@@ -968,13 +872,13 @@ from .event_evolution import (
|
|
968
872
|
EventEvolutionResourceWithStreamingResponse,
|
969
873
|
AsyncEventEvolutionResourceWithStreamingResponse,
|
970
874
|
)
|
971
|
-
from .
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
875
|
+
from .h3_geo_hex_cell import (
|
876
|
+
H3GeoHexCellResource,
|
877
|
+
AsyncH3GeoHexCellResource,
|
878
|
+
H3GeoHexCellResourceWithRawResponse,
|
879
|
+
AsyncH3GeoHexCellResourceWithRawResponse,
|
880
|
+
H3GeoHexCellResourceWithStreamingResponse,
|
881
|
+
AsyncH3GeoHexCellResourceWithStreamingResponse,
|
978
882
|
)
|
979
883
|
from .isr_collections import (
|
980
884
|
IsrCollectionsResource,
|
@@ -984,14 +888,6 @@ from .isr_collections import (
|
|
984
888
|
IsrCollectionsResourceWithStreamingResponse,
|
985
889
|
AsyncIsrCollectionsResourceWithStreamingResponse,
|
986
890
|
)
|
987
|
-
from .launchdetection import (
|
988
|
-
LaunchdetectionResource,
|
989
|
-
AsyncLaunchdetectionResource,
|
990
|
-
LaunchdetectionResourceWithRawResponse,
|
991
|
-
AsyncLaunchdetectionResourceWithRawResponse,
|
992
|
-
LaunchdetectionResourceWithStreamingResponse,
|
993
|
-
AsyncLaunchdetectionResourceWithStreamingResponse,
|
994
|
-
)
|
995
891
|
from .onorbitthruster import (
|
996
892
|
OnorbitthrusterResource,
|
997
893
|
AsyncOnorbitthrusterResource,
|
@@ -1000,6 +896,14 @@ from .onorbitthruster import (
|
|
1000
896
|
OnorbitthrusterResourceWithStreamingResponse,
|
1001
897
|
AsyncOnorbitthrusterResourceWithStreamingResponse,
|
1002
898
|
)
|
899
|
+
from .sar_observation import (
|
900
|
+
SarObservationResource,
|
901
|
+
AsyncSarObservationResource,
|
902
|
+
SarObservationResourceWithRawResponse,
|
903
|
+
AsyncSarObservationResourceWithRawResponse,
|
904
|
+
SarObservationResourceWithStreamingResponse,
|
905
|
+
AsyncSarObservationResourceWithStreamingResponse,
|
906
|
+
)
|
1003
907
|
from .supporting_data import (
|
1004
908
|
SupportingDataResource,
|
1005
909
|
AsyncSupportingDataResource,
|
@@ -1016,14 +920,6 @@ from .aircraft_sorties import (
|
|
1016
920
|
AircraftSortiesResourceWithStreamingResponse,
|
1017
921
|
AsyncAircraftSortiesResourceWithStreamingResponse,
|
1018
922
|
)
|
1019
|
-
from .airtaskingorders import (
|
1020
|
-
AirtaskingordersResource,
|
1021
|
-
AsyncAirtaskingordersResource,
|
1022
|
-
AirtaskingordersResourceWithRawResponse,
|
1023
|
-
AsyncAirtaskingordersResourceWithRawResponse,
|
1024
|
-
AirtaskingordersResourceWithStreamingResponse,
|
1025
|
-
AsyncAirtaskingordersResourceWithStreamingResponse,
|
1026
|
-
)
|
1027
923
|
from .analytic_imagery import (
|
1028
924
|
AnalyticImageryResource,
|
1029
925
|
AsyncAnalyticImageryResource,
|
@@ -1048,13 +944,13 @@ from .effect_responses import (
|
|
1048
944
|
EffectResponsesResourceWithStreamingResponse,
|
1049
945
|
AsyncEffectResponsesResourceWithStreamingResponse,
|
1050
946
|
)
|
1051
|
-
from .
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
947
|
+
from .ion_oobservation import (
|
948
|
+
IonOobservationResource,
|
949
|
+
AsyncIonOobservationResource,
|
950
|
+
IonOobservationResourceWithRawResponse,
|
951
|
+
AsyncIonOobservationResourceWithRawResponse,
|
952
|
+
IonOobservationResourceWithStreamingResponse,
|
953
|
+
AsyncIonOobservationResourceWithStreamingResponse,
|
1058
954
|
)
|
1059
955
|
from .iono_observation import (
|
1060
956
|
IonoObservationResource,
|
@@ -1064,37 +960,13 @@ from .iono_observation import (
|
|
1064
960
|
IonoObservationResourceWithStreamingResponse,
|
1065
961
|
AsyncIonoObservationResourceWithStreamingResponse,
|
1066
962
|
)
|
1067
|
-
from .
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
)
|
1075
|
-
from .objectofinterest import (
|
1076
|
-
ObjectofinterestResource,
|
1077
|
-
AsyncObjectofinterestResource,
|
1078
|
-
ObjectofinterestResourceWithRawResponse,
|
1079
|
-
AsyncObjectofinterestResourceWithRawResponse,
|
1080
|
-
ObjectofinterestResourceWithStreamingResponse,
|
1081
|
-
AsyncObjectofinterestResourceWithStreamingResponse,
|
1082
|
-
)
|
1083
|
-
from .radarobservation import (
|
1084
|
-
RadarobservationResource,
|
1085
|
-
AsyncRadarobservationResource,
|
1086
|
-
RadarobservationResourceWithRawResponse,
|
1087
|
-
AsyncRadarobservationResourceWithRawResponse,
|
1088
|
-
RadarobservationResourceWithStreamingResponse,
|
1089
|
-
AsyncRadarobservationResourceWithStreamingResponse,
|
1090
|
-
)
|
1091
|
-
from .rfemitterdetails import (
|
1092
|
-
RfemitterdetailsResource,
|
1093
|
-
AsyncRfemitterdetailsResource,
|
1094
|
-
RfemitterdetailsResourceWithRawResponse,
|
1095
|
-
AsyncRfemitterdetailsResourceWithRawResponse,
|
1096
|
-
RfemitterdetailsResourceWithStreamingResponse,
|
1097
|
-
AsyncRfemitterdetailsResourceWithStreamingResponse,
|
963
|
+
from .launch_detection import (
|
964
|
+
LaunchDetectionResource,
|
965
|
+
AsyncLaunchDetectionResource,
|
966
|
+
LaunchDetectionResourceWithRawResponse,
|
967
|
+
AsyncLaunchDetectionResourceWithRawResponse,
|
968
|
+
LaunchDetectionResourceWithStreamingResponse,
|
969
|
+
AsyncLaunchDetectionResourceWithStreamingResponse,
|
1098
970
|
)
|
1099
971
|
from .secure_messaging import (
|
1100
972
|
SecureMessagingResource,
|
@@ -1120,13 +992,13 @@ from .collect_responses import (
|
|
1120
992
|
CollectResponsesResourceWithStreamingResponse,
|
1121
993
|
AsyncCollectResponsesResourceWithStreamingResponse,
|
1122
994
|
)
|
1123
|
-
from .
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
995
|
+
from .equipment_remarks import (
|
996
|
+
EquipmentRemarksResource,
|
997
|
+
AsyncEquipmentRemarksResource,
|
998
|
+
EquipmentRemarksResourceWithRawResponse,
|
999
|
+
AsyncEquipmentRemarksResourceWithRawResponse,
|
1000
|
+
EquipmentRemarksResourceWithStreamingResponse,
|
1001
|
+
AsyncEquipmentRemarksResourceWithStreamingResponse,
|
1130
1002
|
)
|
1131
1003
|
from .gnss_observations import (
|
1132
1004
|
GnssObservationsResource,
|
@@ -1136,21 +1008,13 @@ from .gnss_observations import (
|
|
1136
1008
|
GnssObservationsResourceWithStreamingResponse,
|
1137
1009
|
AsyncGnssObservationsResourceWithStreamingResponse,
|
1138
1010
|
)
|
1139
|
-
from .
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
)
|
1147
|
-
from .missionassignment import (
|
1148
|
-
MissionassignmentResource,
|
1149
|
-
AsyncMissionassignmentResource,
|
1150
|
-
MissionassignmentResourceWithRawResponse,
|
1151
|
-
AsyncMissionassignmentResourceWithRawResponse,
|
1152
|
-
MissionassignmentResourceWithStreamingResponse,
|
1153
|
-
AsyncMissionassignmentResourceWithStreamingResponse,
|
1011
|
+
from .logistics_support import (
|
1012
|
+
LogisticsSupportResource,
|
1013
|
+
AsyncLogisticsSupportResource,
|
1014
|
+
LogisticsSupportResourceWithRawResponse,
|
1015
|
+
AsyncLogisticsSupportResourceWithRawResponse,
|
1016
|
+
LogisticsSupportResourceWithStreamingResponse,
|
1017
|
+
AsyncLogisticsSupportResourceWithStreamingResponse,
|
1154
1018
|
)
|
1155
1019
|
from .onboardnavigation import (
|
1156
1020
|
OnboardnavigationResource,
|
@@ -1176,53 +1040,29 @@ from .personnelrecovery import (
|
|
1176
1040
|
PersonnelrecoveryResourceWithStreamingResponse,
|
1177
1041
|
AsyncPersonnelrecoveryResourceWithStreamingResponse,
|
1178
1042
|
)
|
1179
|
-
from .
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
)
|
1187
|
-
from .
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
)
|
1195
|
-
from .
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
)
|
1203
|
-
from .air_tasking_orders import (
|
1204
|
-
AirTaskingOrdersResource,
|
1205
|
-
AsyncAirTaskingOrdersResource,
|
1206
|
-
AirTaskingOrdersResourceWithRawResponse,
|
1207
|
-
AsyncAirTaskingOrdersResourceWithRawResponse,
|
1208
|
-
AirTaskingOrdersResourceWithStreamingResponse,
|
1209
|
-
AsyncAirTaskingOrdersResourceWithStreamingResponse,
|
1210
|
-
)
|
1211
|
-
from .emittergeolocation import (
|
1212
|
-
EmittergeolocationResource,
|
1213
|
-
AsyncEmittergeolocationResource,
|
1214
|
-
EmittergeolocationResourceWithRawResponse,
|
1215
|
-
AsyncEmittergeolocationResourceWithRawResponse,
|
1216
|
-
EmittergeolocationResourceWithStreamingResponse,
|
1217
|
-
AsyncEmittergeolocationResourceWithStreamingResponse,
|
1218
|
-
)
|
1219
|
-
from .gnssobservationset import (
|
1220
|
-
GnssobservationsetResource,
|
1221
|
-
AsyncGnssobservationsetResource,
|
1222
|
-
GnssobservationsetResourceWithRawResponse,
|
1223
|
-
AsyncGnssobservationsetResourceWithRawResponse,
|
1224
|
-
GnssobservationsetResourceWithStreamingResponse,
|
1225
|
-
AsyncGnssobservationsetResourceWithStreamingResponse,
|
1043
|
+
from .feature_assessment import (
|
1044
|
+
FeatureAssessmentResource,
|
1045
|
+
AsyncFeatureAssessmentResource,
|
1046
|
+
FeatureAssessmentResourceWithRawResponse,
|
1047
|
+
AsyncFeatureAssessmentResourceWithRawResponse,
|
1048
|
+
FeatureAssessmentResourceWithStreamingResponse,
|
1049
|
+
AsyncFeatureAssessmentResourceWithStreamingResponse,
|
1050
|
+
)
|
1051
|
+
from .mission_assignment import (
|
1052
|
+
MissionAssignmentResource,
|
1053
|
+
AsyncMissionAssignmentResource,
|
1054
|
+
MissionAssignmentResourceWithRawResponse,
|
1055
|
+
AsyncMissionAssignmentResourceWithRawResponse,
|
1056
|
+
MissionAssignmentResourceWithStreamingResponse,
|
1057
|
+
AsyncMissionAssignmentResourceWithStreamingResponse,
|
1058
|
+
)
|
1059
|
+
from .object_of_interest import (
|
1060
|
+
ObjectOfInterestResource,
|
1061
|
+
AsyncObjectOfInterestResource,
|
1062
|
+
ObjectOfInterestResourceWithRawResponse,
|
1063
|
+
AsyncObjectOfInterestResourceWithRawResponse,
|
1064
|
+
ObjectOfInterestResourceWithStreamingResponse,
|
1065
|
+
AsyncObjectOfInterestResourceWithStreamingResponse,
|
1226
1066
|
)
|
1227
1067
|
from .orbitdetermination import (
|
1228
1068
|
OrbitdeterminationResource,
|
@@ -1232,21 +1072,45 @@ from .orbitdetermination import (
|
|
1232
1072
|
OrbitdeterminationResourceWithStreamingResponse,
|
1233
1073
|
AsyncOrbitdeterminationResourceWithStreamingResponse,
|
1234
1074
|
)
|
1235
|
-
from .
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
)
|
1243
|
-
from .
|
1244
|
-
|
1245
|
-
|
1246
|
-
|
1247
|
-
|
1248
|
-
|
1249
|
-
|
1075
|
+
from .rf_emitter_details import (
|
1076
|
+
RfEmitterDetailsResource,
|
1077
|
+
AsyncRfEmitterDetailsResource,
|
1078
|
+
RfEmitterDetailsResourceWithRawResponse,
|
1079
|
+
AsyncRfEmitterDetailsResourceWithRawResponse,
|
1080
|
+
RfEmitterDetailsResourceWithStreamingResponse,
|
1081
|
+
AsyncRfEmitterDetailsResourceWithStreamingResponse,
|
1082
|
+
)
|
1083
|
+
from .sensor_maintenance import (
|
1084
|
+
SensorMaintenanceResource,
|
1085
|
+
AsyncSensorMaintenanceResource,
|
1086
|
+
SensorMaintenanceResourceWithRawResponse,
|
1087
|
+
AsyncSensorMaintenanceResourceWithRawResponse,
|
1088
|
+
SensorMaintenanceResourceWithStreamingResponse,
|
1089
|
+
AsyncSensorMaintenanceResourceWithStreamingResponse,
|
1090
|
+
)
|
1091
|
+
from .emitter_geolocation import (
|
1092
|
+
EmitterGeolocationResource,
|
1093
|
+
AsyncEmitterGeolocationResource,
|
1094
|
+
EmitterGeolocationResourceWithRawResponse,
|
1095
|
+
AsyncEmitterGeolocationResourceWithRawResponse,
|
1096
|
+
EmitterGeolocationResourceWithStreamingResponse,
|
1097
|
+
AsyncEmitterGeolocationResourceWithStreamingResponse,
|
1098
|
+
)
|
1099
|
+
from .gnss_observationset import (
|
1100
|
+
GnssObservationsetResource,
|
1101
|
+
AsyncGnssObservationsetResource,
|
1102
|
+
GnssObservationsetResourceWithRawResponse,
|
1103
|
+
AsyncGnssObservationsetResourceWithRawResponse,
|
1104
|
+
GnssObservationsetResourceWithStreamingResponse,
|
1105
|
+
AsyncGnssObservationsetResourceWithStreamingResponse,
|
1106
|
+
)
|
1107
|
+
from .launch_site_details import (
|
1108
|
+
LaunchSiteDetailsResource,
|
1109
|
+
AsyncLaunchSiteDetailsResource,
|
1110
|
+
LaunchSiteDetailsResourceWithRawResponse,
|
1111
|
+
AsyncLaunchSiteDetailsResourceWithRawResponse,
|
1112
|
+
LaunchSiteDetailsResourceWithStreamingResponse,
|
1113
|
+
AsyncLaunchSiteDetailsResourceWithStreamingResponse,
|
1250
1114
|
)
|
1251
1115
|
from .operatingunitremark import (
|
1252
1116
|
OperatingunitremarkResource,
|
@@ -1272,29 +1136,29 @@ from .report_and_activity import (
|
|
1272
1136
|
ReportAndActivityResourceWithStreamingResponse,
|
1273
1137
|
AsyncReportAndActivityResourceWithStreamingResponse,
|
1274
1138
|
)
|
1275
|
-
from .
|
1276
|
-
|
1277
|
-
|
1278
|
-
|
1279
|
-
|
1280
|
-
|
1281
|
-
|
1282
|
-
)
|
1283
|
-
from .
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
)
|
1291
|
-
from .
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1139
|
+
from .soi_observation_set import (
|
1140
|
+
SoiObservationSetResource,
|
1141
|
+
AsyncSoiObservationSetResource,
|
1142
|
+
SoiObservationSetResourceWithRawResponse,
|
1143
|
+
AsyncSoiObservationSetResourceWithRawResponse,
|
1144
|
+
SoiObservationSetResourceWithStreamingResponse,
|
1145
|
+
AsyncSoiObservationSetResourceWithStreamingResponse,
|
1146
|
+
)
|
1147
|
+
from .solar_array_details import (
|
1148
|
+
SolarArrayDetailsResource,
|
1149
|
+
AsyncSolarArrayDetailsResource,
|
1150
|
+
SolarArrayDetailsResourceWithRawResponse,
|
1151
|
+
AsyncSolarArrayDetailsResourceWithRawResponse,
|
1152
|
+
SolarArrayDetailsResourceWithStreamingResponse,
|
1153
|
+
AsyncSolarArrayDetailsResourceWithStreamingResponse,
|
1154
|
+
)
|
1155
|
+
from .surface_obstruction import (
|
1156
|
+
SurfaceObstructionResource,
|
1157
|
+
AsyncSurfaceObstructionResource,
|
1158
|
+
SurfaceObstructionResourceWithRawResponse,
|
1159
|
+
AsyncSurfaceObstructionResourceWithRawResponse,
|
1160
|
+
SurfaceObstructionResourceWithStreamingResponse,
|
1161
|
+
AsyncSurfaceObstructionResourceWithStreamingResponse,
|
1298
1162
|
)
|
1299
1163
|
from .diplomatic_clearance import (
|
1300
1164
|
DiplomaticClearanceResource,
|
@@ -1304,29 +1168,13 @@ from .diplomatic_clearance import (
|
|
1304
1168
|
DiplomaticClearanceResourceWithStreamingResponse,
|
1305
1169
|
AsyncDiplomaticClearanceResourceWithStreamingResponse,
|
1306
1170
|
)
|
1307
|
-
from .
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
)
|
1315
|
-
from .seradataearlywarning import (
|
1316
|
-
SeradataearlywarningResource,
|
1317
|
-
AsyncSeradataearlywarningResource,
|
1318
|
-
SeradataearlywarningResourceWithRawResponse,
|
1319
|
-
AsyncSeradataearlywarningResourceWithRawResponse,
|
1320
|
-
SeradataearlywarningResourceWithStreamingResponse,
|
1321
|
-
AsyncSeradataearlywarningResourceWithStreamingResponse,
|
1322
|
-
)
|
1323
|
-
from .seradataradarpayload import (
|
1324
|
-
SeradataradarpayloadResource,
|
1325
|
-
AsyncSeradataradarpayloadResource,
|
1326
|
-
SeradataradarpayloadResourceWithRawResponse,
|
1327
|
-
AsyncSeradataradarpayloadResourceWithRawResponse,
|
1328
|
-
SeradataradarpayloadResourceWithStreamingResponse,
|
1329
|
-
AsyncSeradataradarpayloadResourceWithStreamingResponse,
|
1171
|
+
from .sera_data_navigation import (
|
1172
|
+
SeraDataNavigationResource,
|
1173
|
+
AsyncSeraDataNavigationResource,
|
1174
|
+
SeraDataNavigationResourceWithRawResponse,
|
1175
|
+
AsyncSeraDataNavigationResourceWithRawResponse,
|
1176
|
+
SeraDataNavigationResourceWithStreamingResponse,
|
1177
|
+
AsyncSeraDataNavigationResourceWithStreamingResponse,
|
1330
1178
|
)
|
1331
1179
|
from .onorbitthrusterstatus import (
|
1332
1180
|
OnorbitthrusterstatusResource,
|
@@ -1336,21 +1184,13 @@ from .onorbitthrusterstatus import (
|
|
1336
1184
|
OnorbitthrusterstatusResourceWithStreamingResponse,
|
1337
1185
|
AsyncOnorbitthrusterstatusResourceWithStreamingResponse,
|
1338
1186
|
)
|
1339
|
-
from .
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
)
|
1347
|
-
from .seradatasigintpayload import (
|
1348
|
-
SeradatasigintpayloadResource,
|
1349
|
-
AsyncSeradatasigintpayloadResource,
|
1350
|
-
SeradatasigintpayloadResourceWithRawResponse,
|
1351
|
-
AsyncSeradatasigintpayloadResourceWithRawResponse,
|
1352
|
-
SeradatasigintpayloadResourceWithStreamingResponse,
|
1353
|
-
AsyncSeradatasigintpayloadResourceWithStreamingResponse,
|
1187
|
+
from .space_env_observation import (
|
1188
|
+
SpaceEnvObservationResource,
|
1189
|
+
AsyncSpaceEnvObservationResource,
|
1190
|
+
SpaceEnvObservationResourceWithRawResponse,
|
1191
|
+
AsyncSpaceEnvObservationResourceWithRawResponse,
|
1192
|
+
SpaceEnvObservationResourceWithStreamingResponse,
|
1193
|
+
AsyncSpaceEnvObservationResourceWithStreamingResponse,
|
1354
1194
|
)
|
1355
1195
|
from .air_transport_missions import (
|
1356
1196
|
AirTransportMissionsResource,
|
@@ -1360,29 +1200,29 @@ from .air_transport_missions import (
|
|
1360
1200
|
AirTransportMissionsResourceWithStreamingResponse,
|
1361
1201
|
AsyncAirTransportMissionsResourceWithStreamingResponse,
|
1362
1202
|
)
|
1363
|
-
from .
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1368
|
-
|
1369
|
-
|
1370
|
-
)
|
1371
|
-
from .
|
1372
|
-
|
1373
|
-
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
|
1378
|
-
)
|
1379
|
-
from .
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1203
|
+
from .launch_vehicle_details import (
|
1204
|
+
LaunchVehicleDetailsResource,
|
1205
|
+
AsyncLaunchVehicleDetailsResource,
|
1206
|
+
LaunchVehicleDetailsResourceWithRawResponse,
|
1207
|
+
AsyncLaunchVehicleDetailsResourceWithRawResponse,
|
1208
|
+
LaunchVehicleDetailsResourceWithStreamingResponse,
|
1209
|
+
AsyncLaunchVehicleDetailsResourceWithStreamingResponse,
|
1210
|
+
)
|
1211
|
+
from .sera_data_comm_details import (
|
1212
|
+
SeraDataCommDetailsResource,
|
1213
|
+
AsyncSeraDataCommDetailsResource,
|
1214
|
+
SeraDataCommDetailsResourceWithRawResponse,
|
1215
|
+
AsyncSeraDataCommDetailsResourceWithRawResponse,
|
1216
|
+
SeraDataCommDetailsResourceWithStreamingResponse,
|
1217
|
+
AsyncSeraDataCommDetailsResourceWithStreamingResponse,
|
1218
|
+
)
|
1219
|
+
from .seradata_radar_payload import (
|
1220
|
+
SeradataRadarPayloadResource,
|
1221
|
+
AsyncSeradataRadarPayloadResource,
|
1222
|
+
SeradataRadarPayloadResourceWithRawResponse,
|
1223
|
+
AsyncSeradataRadarPayloadResourceWithRawResponse,
|
1224
|
+
SeradataRadarPayloadResourceWithStreamingResponse,
|
1225
|
+
AsyncSeradataRadarPayloadResourceWithStreamingResponse,
|
1386
1226
|
)
|
1387
1227
|
from .aircraft_status_remarks import (
|
1388
1228
|
AircraftStatusRemarksResource,
|
@@ -1400,37 +1240,77 @@ from .airspace_control_orders import (
|
|
1400
1240
|
AirspaceControlOrdersResourceWithStreamingResponse,
|
1401
1241
|
AsyncAirspaceControlOrdersResourceWithStreamingResponse,
|
1402
1242
|
)
|
1403
|
-
from .
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
)
|
1411
|
-
from .
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
)
|
1419
|
-
from .
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
)
|
1427
|
-
from .
|
1428
|
-
|
1429
|
-
|
1430
|
-
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1243
|
+
from .sensor_observation_type import (
|
1244
|
+
SensorObservationTypeResource,
|
1245
|
+
AsyncSensorObservationTypeResource,
|
1246
|
+
SensorObservationTypeResourceWithRawResponse,
|
1247
|
+
AsyncSensorObservationTypeResourceWithRawResponse,
|
1248
|
+
SensorObservationTypeResourceWithStreamingResponse,
|
1249
|
+
AsyncSensorObservationTypeResourceWithStreamingResponse,
|
1250
|
+
)
|
1251
|
+
from .sera_data_early_warning import (
|
1252
|
+
SeraDataEarlyWarningResource,
|
1253
|
+
AsyncSeraDataEarlyWarningResource,
|
1254
|
+
SeraDataEarlyWarningResourceWithRawResponse,
|
1255
|
+
AsyncSeraDataEarlyWarningResourceWithRawResponse,
|
1256
|
+
SeraDataEarlyWarningResourceWithStreamingResponse,
|
1257
|
+
AsyncSeraDataEarlyWarningResourceWithStreamingResponse,
|
1258
|
+
)
|
1259
|
+
from .seradata_sigint_payload import (
|
1260
|
+
SeradataSigintPayloadResource,
|
1261
|
+
AsyncSeradataSigintPayloadResource,
|
1262
|
+
SeradataSigintPayloadResourceWithRawResponse,
|
1263
|
+
AsyncSeradataSigintPayloadResourceWithRawResponse,
|
1264
|
+
SeradataSigintPayloadResourceWithStreamingResponse,
|
1265
|
+
AsyncSeradataSigintPayloadResourceWithStreamingResponse,
|
1266
|
+
)
|
1267
|
+
from .aviation_risk_management import (
|
1268
|
+
AviationRiskManagementResource,
|
1269
|
+
AsyncAviationRiskManagementResource,
|
1270
|
+
AviationRiskManagementResourceWithRawResponse,
|
1271
|
+
AsyncAviationRiskManagementResourceWithRawResponse,
|
1272
|
+
AviationRiskManagementResourceWithStreamingResponse,
|
1273
|
+
AsyncAviationRiskManagementResourceWithStreamingResponse,
|
1274
|
+
)
|
1275
|
+
from .global_atmospheric_model import (
|
1276
|
+
GlobalAtmosphericModelResource,
|
1277
|
+
AsyncGlobalAtmosphericModelResource,
|
1278
|
+
GlobalAtmosphericModelResourceWithRawResponse,
|
1279
|
+
AsyncGlobalAtmosphericModelResourceWithRawResponse,
|
1280
|
+
GlobalAtmosphericModelResourceWithStreamingResponse,
|
1281
|
+
AsyncGlobalAtmosphericModelResourceWithStreamingResponse,
|
1282
|
+
)
|
1283
|
+
from .navigational_obstruction import (
|
1284
|
+
NavigationalObstructionResource,
|
1285
|
+
AsyncNavigationalObstructionResource,
|
1286
|
+
NavigationalObstructionResourceWithRawResponse,
|
1287
|
+
AsyncNavigationalObstructionResourceWithRawResponse,
|
1288
|
+
NavigationalObstructionResourceWithStreamingResponse,
|
1289
|
+
AsyncNavigationalObstructionResourceWithStreamingResponse,
|
1290
|
+
)
|
1291
|
+
from .seradata_optical_payload import (
|
1292
|
+
SeradataOpticalPayloadResource,
|
1293
|
+
AsyncSeradataOpticalPayloadResource,
|
1294
|
+
SeradataOpticalPayloadResourceWithRawResponse,
|
1295
|
+
AsyncSeradataOpticalPayloadResourceWithRawResponse,
|
1296
|
+
SeradataOpticalPayloadResourceWithStreamingResponse,
|
1297
|
+
AsyncSeradataOpticalPayloadResourceWithStreamingResponse,
|
1298
|
+
)
|
1299
|
+
from .airfield_slot_consumptions import (
|
1300
|
+
AirfieldSlotConsumptionsResource,
|
1301
|
+
AsyncAirfieldSlotConsumptionsResource,
|
1302
|
+
AirfieldSlotConsumptionsResourceWithRawResponse,
|
1303
|
+
AsyncAirfieldSlotConsumptionsResourceWithRawResponse,
|
1304
|
+
AirfieldSlotConsumptionsResourceWithStreamingResponse,
|
1305
|
+
AsyncAirfieldSlotConsumptionsResourceWithStreamingResponse,
|
1306
|
+
)
|
1307
|
+
from .seradata_spacecraft_details import (
|
1308
|
+
SeradataSpacecraftDetailsResource,
|
1309
|
+
AsyncSeradataSpacecraftDetailsResource,
|
1310
|
+
SeradataSpacecraftDetailsResourceWithRawResponse,
|
1311
|
+
AsyncSeradataSpacecraftDetailsResourceWithRawResponse,
|
1312
|
+
SeradataSpacecraftDetailsResourceWithStreamingResponse,
|
1313
|
+
AsyncSeradataSpacecraftDetailsResourceWithStreamingResponse,
|
1434
1314
|
)
|
1435
1315
|
|
1436
1316
|
__all__ = [
|
@@ -1452,12 +1332,6 @@ __all__ = [
|
|
1452
1332
|
"AsyncAirOperationsResourceWithRawResponse",
|
1453
1333
|
"AirOperationsResourceWithStreamingResponse",
|
1454
1334
|
"AsyncAirOperationsResourceWithStreamingResponse",
|
1455
|
-
"AirTaskingOrdersResource",
|
1456
|
-
"AsyncAirTaskingOrdersResource",
|
1457
|
-
"AirTaskingOrdersResourceWithRawResponse",
|
1458
|
-
"AsyncAirTaskingOrdersResourceWithRawResponse",
|
1459
|
-
"AirTaskingOrdersResourceWithStreamingResponse",
|
1460
|
-
"AsyncAirTaskingOrdersResourceWithStreamingResponse",
|
1461
1335
|
"AirTransportMissionsResource",
|
1462
1336
|
"AsyncAirTransportMissionsResource",
|
1463
1337
|
"AirTransportMissionsResourceWithRawResponse",
|
@@ -1488,12 +1362,6 @@ __all__ = [
|
|
1488
1362
|
"AsyncAircraftStatusesResourceWithRawResponse",
|
1489
1363
|
"AircraftStatusesResourceWithStreamingResponse",
|
1490
1364
|
"AsyncAircraftStatusesResourceWithStreamingResponse",
|
1491
|
-
"AircraftstatusremarkResource",
|
1492
|
-
"AsyncAircraftstatusremarkResource",
|
1493
|
-
"AircraftstatusremarkResourceWithRawResponse",
|
1494
|
-
"AsyncAircraftstatusremarkResourceWithRawResponse",
|
1495
|
-
"AircraftstatusremarkResourceWithStreamingResponse",
|
1496
|
-
"AsyncAircraftstatusremarkResourceWithStreamingResponse",
|
1497
1365
|
"AirfieldSlotsResource",
|
1498
1366
|
"AsyncAirfieldSlotsResource",
|
1499
1367
|
"AirfieldSlotsResourceWithRawResponse",
|
@@ -1512,42 +1380,24 @@ __all__ = [
|
|
1512
1380
|
"AsyncAirfieldsResourceWithRawResponse",
|
1513
1381
|
"AirfieldsResourceWithStreamingResponse",
|
1514
1382
|
"AsyncAirfieldsResourceWithStreamingResponse",
|
1515
|
-
"
|
1516
|
-
"
|
1517
|
-
"
|
1518
|
-
"
|
1519
|
-
"
|
1520
|
-
"
|
1521
|
-
"
|
1522
|
-
"
|
1523
|
-
"
|
1524
|
-
"
|
1525
|
-
"
|
1526
|
-
"
|
1527
|
-
"AirfieldstatusResource",
|
1528
|
-
"AsyncAirfieldstatusResource",
|
1529
|
-
"AirfieldstatusResourceWithRawResponse",
|
1530
|
-
"AsyncAirfieldstatusResourceWithRawResponse",
|
1531
|
-
"AirfieldstatusResourceWithStreamingResponse",
|
1532
|
-
"AsyncAirfieldstatusResourceWithStreamingResponse",
|
1533
|
-
"AirloadplansResource",
|
1534
|
-
"AsyncAirloadplansResource",
|
1535
|
-
"AirloadplansResourceWithRawResponse",
|
1536
|
-
"AsyncAirloadplansResourceWithRawResponse",
|
1537
|
-
"AirloadplansResourceWithStreamingResponse",
|
1538
|
-
"AsyncAirloadplansResourceWithStreamingResponse",
|
1383
|
+
"AirfieldSlotConsumptionsResource",
|
1384
|
+
"AsyncAirfieldSlotConsumptionsResource",
|
1385
|
+
"AirfieldSlotConsumptionsResourceWithRawResponse",
|
1386
|
+
"AsyncAirfieldSlotConsumptionsResourceWithRawResponse",
|
1387
|
+
"AirfieldSlotConsumptionsResourceWithStreamingResponse",
|
1388
|
+
"AsyncAirfieldSlotConsumptionsResourceWithStreamingResponse",
|
1389
|
+
"AirloadPlansResource",
|
1390
|
+
"AsyncAirloadPlansResource",
|
1391
|
+
"AirloadPlansResourceWithRawResponse",
|
1392
|
+
"AsyncAirloadPlansResourceWithRawResponse",
|
1393
|
+
"AirloadPlansResourceWithStreamingResponse",
|
1394
|
+
"AsyncAirloadPlansResourceWithStreamingResponse",
|
1539
1395
|
"AirspaceControlOrdersResource",
|
1540
1396
|
"AsyncAirspaceControlOrdersResource",
|
1541
1397
|
"AirspaceControlOrdersResourceWithRawResponse",
|
1542
1398
|
"AsyncAirspaceControlOrdersResourceWithRawResponse",
|
1543
1399
|
"AirspaceControlOrdersResourceWithStreamingResponse",
|
1544
1400
|
"AsyncAirspaceControlOrdersResourceWithStreamingResponse",
|
1545
|
-
"AirtaskingordersResource",
|
1546
|
-
"AsyncAirtaskingordersResource",
|
1547
|
-
"AirtaskingordersResourceWithRawResponse",
|
1548
|
-
"AsyncAirtaskingordersResourceWithRawResponse",
|
1549
|
-
"AirtaskingordersResourceWithStreamingResponse",
|
1550
|
-
"AsyncAirtaskingordersResourceWithStreamingResponse",
|
1551
1401
|
"AIsResource",
|
1552
1402
|
"AsyncAIsResource",
|
1553
1403
|
"AIsResourceWithRawResponse",
|
@@ -1656,42 +1506,42 @@ __all__ = [
|
|
1656
1506
|
"AsyncCotsResourceWithRawResponse",
|
1657
1507
|
"CotsResourceWithStreamingResponse",
|
1658
1508
|
"AsyncCotsResourceWithStreamingResponse",
|
1659
|
-
"
|
1660
|
-
"
|
1661
|
-
"
|
1662
|
-
"
|
1663
|
-
"
|
1664
|
-
"
|
1509
|
+
"AviationRiskManagementResource",
|
1510
|
+
"AsyncAviationRiskManagementResource",
|
1511
|
+
"AviationRiskManagementResourceWithRawResponse",
|
1512
|
+
"AsyncAviationRiskManagementResourceWithRawResponse",
|
1513
|
+
"AviationRiskManagementResourceWithStreamingResponse",
|
1514
|
+
"AsyncAviationRiskManagementResourceWithStreamingResponse",
|
1665
1515
|
"DropzoneResource",
|
1666
1516
|
"AsyncDropzoneResource",
|
1667
1517
|
"DropzoneResourceWithRawResponse",
|
1668
1518
|
"AsyncDropzoneResourceWithRawResponse",
|
1669
1519
|
"DropzoneResourceWithStreamingResponse",
|
1670
1520
|
"AsyncDropzoneResourceWithStreamingResponse",
|
1671
|
-
"
|
1672
|
-
"
|
1673
|
-
"
|
1674
|
-
"
|
1675
|
-
"
|
1676
|
-
"
|
1677
|
-
"
|
1678
|
-
"
|
1679
|
-
"
|
1680
|
-
"
|
1681
|
-
"
|
1682
|
-
"
|
1683
|
-
"
|
1684
|
-
"
|
1685
|
-
"
|
1686
|
-
"
|
1687
|
-
"
|
1688
|
-
"
|
1689
|
-
"
|
1690
|
-
"
|
1691
|
-
"
|
1692
|
-
"
|
1693
|
-
"
|
1694
|
-
"
|
1521
|
+
"EmitterGeolocationResource",
|
1522
|
+
"AsyncEmitterGeolocationResource",
|
1523
|
+
"EmitterGeolocationResourceWithRawResponse",
|
1524
|
+
"AsyncEmitterGeolocationResourceWithRawResponse",
|
1525
|
+
"EmitterGeolocationResourceWithStreamingResponse",
|
1526
|
+
"AsyncEmitterGeolocationResourceWithStreamingResponse",
|
1527
|
+
"FeatureAssessmentResource",
|
1528
|
+
"AsyncFeatureAssessmentResource",
|
1529
|
+
"FeatureAssessmentResourceWithRawResponse",
|
1530
|
+
"AsyncFeatureAssessmentResourceWithRawResponse",
|
1531
|
+
"FeatureAssessmentResourceWithStreamingResponse",
|
1532
|
+
"AsyncFeatureAssessmentResourceWithStreamingResponse",
|
1533
|
+
"GlobalAtmosphericModelResource",
|
1534
|
+
"AsyncGlobalAtmosphericModelResource",
|
1535
|
+
"GlobalAtmosphericModelResourceWithRawResponse",
|
1536
|
+
"AsyncGlobalAtmosphericModelResourceWithRawResponse",
|
1537
|
+
"GlobalAtmosphericModelResourceWithStreamingResponse",
|
1538
|
+
"AsyncGlobalAtmosphericModelResourceWithStreamingResponse",
|
1539
|
+
"RouteStatsResource",
|
1540
|
+
"AsyncRouteStatsResource",
|
1541
|
+
"RouteStatsResourceWithRawResponse",
|
1542
|
+
"AsyncRouteStatsResourceWithRawResponse",
|
1543
|
+
"RouteStatsResourceWithStreamingResponse",
|
1544
|
+
"AsyncRouteStatsResourceWithStreamingResponse",
|
1695
1545
|
"CountriesResource",
|
1696
1546
|
"AsyncCountriesResource",
|
1697
1547
|
"CountriesResourceWithRawResponse",
|
@@ -1704,12 +1554,12 @@ __all__ = [
|
|
1704
1554
|
"AsyncCrewResourceWithRawResponse",
|
1705
1555
|
"CrewResourceWithStreamingResponse",
|
1706
1556
|
"AsyncCrewResourceWithStreamingResponse",
|
1707
|
-
"
|
1708
|
-
"
|
1709
|
-
"
|
1710
|
-
"
|
1711
|
-
"
|
1712
|
-
"
|
1557
|
+
"DiffOfArrivalResource",
|
1558
|
+
"AsyncDiffOfArrivalResource",
|
1559
|
+
"DiffOfArrivalResourceWithRawResponse",
|
1560
|
+
"AsyncDiffOfArrivalResourceWithRawResponse",
|
1561
|
+
"DiffOfArrivalResourceWithStreamingResponse",
|
1562
|
+
"AsyncDiffOfArrivalResourceWithStreamingResponse",
|
1713
1563
|
"DiplomaticClearanceResource",
|
1714
1564
|
"AsyncDiplomaticClearanceResource",
|
1715
1565
|
"DiplomaticClearanceResourceWithRawResponse",
|
@@ -1722,12 +1572,12 @@ __all__ = [
|
|
1722
1572
|
"AsyncDriftHistoryResourceWithRawResponse",
|
1723
1573
|
"DriftHistoryResourceWithStreamingResponse",
|
1724
1574
|
"AsyncDriftHistoryResourceWithStreamingResponse",
|
1725
|
-
"
|
1726
|
-
"
|
1727
|
-
"
|
1728
|
-
"
|
1729
|
-
"
|
1730
|
-
"
|
1575
|
+
"EcpSdrResource",
|
1576
|
+
"AsyncEcpSdrResource",
|
1577
|
+
"EcpSdrResourceWithRawResponse",
|
1578
|
+
"AsyncEcpSdrResourceWithRawResponse",
|
1579
|
+
"EcpSdrResourceWithStreamingResponse",
|
1580
|
+
"AsyncEcpSdrResourceWithStreamingResponse",
|
1731
1581
|
"EffectRequestsResource",
|
1732
1582
|
"AsyncEffectRequestsResource",
|
1733
1583
|
"EffectRequestsResourceWithRawResponse",
|
@@ -1752,12 +1602,6 @@ __all__ = [
|
|
1752
1602
|
"AsyncEngineDetailsResourceWithRawResponse",
|
1753
1603
|
"EngineDetailsResourceWithStreamingResponse",
|
1754
1604
|
"AsyncEngineDetailsResourceWithStreamingResponse",
|
1755
|
-
"EnginedetailsResource",
|
1756
|
-
"AsyncEnginedetailsResource",
|
1757
|
-
"EnginedetailsResourceWithRawResponse",
|
1758
|
-
"AsyncEnginedetailsResourceWithRawResponse",
|
1759
|
-
"EnginedetailsResourceWithStreamingResponse",
|
1760
|
-
"AsyncEnginedetailsResourceWithStreamingResponse",
|
1761
1605
|
"EnginesResource",
|
1762
1606
|
"AsyncEnginesResource",
|
1763
1607
|
"EnginesResourceWithRawResponse",
|
@@ -1770,18 +1614,6 @@ __all__ = [
|
|
1770
1614
|
"AsyncEntitiesResourceWithRawResponse",
|
1771
1615
|
"EntitiesResourceWithStreamingResponse",
|
1772
1616
|
"AsyncEntitiesResourceWithStreamingResponse",
|
1773
|
-
"EoObservationsResource",
|
1774
|
-
"AsyncEoObservationsResource",
|
1775
|
-
"EoObservationsResourceWithRawResponse",
|
1776
|
-
"AsyncEoObservationsResourceWithRawResponse",
|
1777
|
-
"EoObservationsResourceWithStreamingResponse",
|
1778
|
-
"AsyncEoObservationsResourceWithStreamingResponse",
|
1779
|
-
"EoobservationsResource",
|
1780
|
-
"AsyncEoobservationsResource",
|
1781
|
-
"EoobservationsResourceWithRawResponse",
|
1782
|
-
"AsyncEoobservationsResourceWithRawResponse",
|
1783
|
-
"EoobservationsResourceWithStreamingResponse",
|
1784
|
-
"AsyncEoobservationsResourceWithStreamingResponse",
|
1785
1617
|
"EopResource",
|
1786
1618
|
"AsyncEopResource",
|
1787
1619
|
"EopResourceWithRawResponse",
|
@@ -1806,12 +1638,12 @@ __all__ = [
|
|
1806
1638
|
"AsyncEquipmentResourceWithRawResponse",
|
1807
1639
|
"EquipmentResourceWithStreamingResponse",
|
1808
1640
|
"AsyncEquipmentResourceWithStreamingResponse",
|
1809
|
-
"
|
1810
|
-
"
|
1811
|
-
"
|
1812
|
-
"
|
1813
|
-
"
|
1814
|
-
"
|
1641
|
+
"EquipmentRemarksResource",
|
1642
|
+
"AsyncEquipmentRemarksResource",
|
1643
|
+
"EquipmentRemarksResourceWithRawResponse",
|
1644
|
+
"AsyncEquipmentRemarksResourceWithRawResponse",
|
1645
|
+
"EquipmentRemarksResourceWithStreamingResponse",
|
1646
|
+
"AsyncEquipmentRemarksResourceWithStreamingResponse",
|
1815
1647
|
"EvacResource",
|
1816
1648
|
"AsyncEvacResource",
|
1817
1649
|
"EvacResourceWithRawResponse",
|
@@ -1830,60 +1662,54 @@ __all__ = [
|
|
1830
1662
|
"AsyncFlightplanResourceWithRawResponse",
|
1831
1663
|
"FlightplanResourceWithStreamingResponse",
|
1832
1664
|
"AsyncFlightplanResourceWithStreamingResponse",
|
1833
|
-
"
|
1834
|
-
"
|
1835
|
-
"
|
1836
|
-
"
|
1837
|
-
"
|
1838
|
-
"
|
1839
|
-
"
|
1840
|
-
"
|
1841
|
-
"
|
1842
|
-
"
|
1843
|
-
"
|
1844
|
-
"
|
1845
|
-
"
|
1846
|
-
"
|
1847
|
-
"
|
1848
|
-
"
|
1849
|
-
"
|
1850
|
-
"
|
1665
|
+
"GeoStatusResource",
|
1666
|
+
"AsyncGeoStatusResource",
|
1667
|
+
"GeoStatusResourceWithRawResponse",
|
1668
|
+
"AsyncGeoStatusResourceWithRawResponse",
|
1669
|
+
"GeoStatusResourceWithStreamingResponse",
|
1670
|
+
"AsyncGeoStatusResourceWithStreamingResponse",
|
1671
|
+
"GnssObservationsetResource",
|
1672
|
+
"AsyncGnssObservationsetResource",
|
1673
|
+
"GnssObservationsetResourceWithRawResponse",
|
1674
|
+
"AsyncGnssObservationsetResourceWithRawResponse",
|
1675
|
+
"GnssObservationsetResourceWithStreamingResponse",
|
1676
|
+
"AsyncGnssObservationsetResourceWithStreamingResponse",
|
1677
|
+
"GnssRawifResource",
|
1678
|
+
"AsyncGnssRawifResource",
|
1679
|
+
"GnssRawifResourceWithRawResponse",
|
1680
|
+
"AsyncGnssRawifResourceWithRawResponse",
|
1681
|
+
"GnssRawifResourceWithStreamingResponse",
|
1682
|
+
"AsyncGnssRawifResourceWithStreamingResponse",
|
1851
1683
|
"GroundImageryResource",
|
1852
1684
|
"AsyncGroundImageryResource",
|
1853
1685
|
"GroundImageryResourceWithRawResponse",
|
1854
1686
|
"AsyncGroundImageryResourceWithRawResponse",
|
1855
1687
|
"GroundImageryResourceWithStreamingResponse",
|
1856
1688
|
"AsyncGroundImageryResourceWithStreamingResponse",
|
1857
|
-
"
|
1858
|
-
"
|
1859
|
-
"
|
1860
|
-
"
|
1861
|
-
"
|
1862
|
-
"
|
1863
|
-
"
|
1864
|
-
"
|
1865
|
-
"
|
1866
|
-
"
|
1867
|
-
"
|
1868
|
-
"
|
1869
|
-
"H3geohexcellResource",
|
1870
|
-
"AsyncH3geohexcellResource",
|
1871
|
-
"H3geohexcellResourceWithRawResponse",
|
1872
|
-
"AsyncH3geohexcellResourceWithRawResponse",
|
1873
|
-
"H3geohexcellResourceWithStreamingResponse",
|
1874
|
-
"AsyncH3geohexcellResourceWithStreamingResponse",
|
1689
|
+
"H3GeoResource",
|
1690
|
+
"AsyncH3GeoResource",
|
1691
|
+
"H3GeoResourceWithRawResponse",
|
1692
|
+
"AsyncH3GeoResourceWithRawResponse",
|
1693
|
+
"H3GeoResourceWithStreamingResponse",
|
1694
|
+
"AsyncH3GeoResourceWithStreamingResponse",
|
1695
|
+
"H3GeoHexCellResource",
|
1696
|
+
"AsyncH3GeoHexCellResource",
|
1697
|
+
"H3GeoHexCellResourceWithRawResponse",
|
1698
|
+
"AsyncH3GeoHexCellResourceWithRawResponse",
|
1699
|
+
"H3GeoHexCellResourceWithStreamingResponse",
|
1700
|
+
"AsyncH3GeoHexCellResourceWithStreamingResponse",
|
1875
1701
|
"HazardResource",
|
1876
1702
|
"AsyncHazardResource",
|
1877
1703
|
"HazardResourceWithRawResponse",
|
1878
1704
|
"AsyncHazardResourceWithRawResponse",
|
1879
1705
|
"HazardResourceWithStreamingResponse",
|
1880
1706
|
"AsyncHazardResourceWithStreamingResponse",
|
1881
|
-
"
|
1882
|
-
"
|
1883
|
-
"
|
1884
|
-
"
|
1885
|
-
"
|
1886
|
-
"
|
1707
|
+
"IonOobservationResource",
|
1708
|
+
"AsyncIonOobservationResource",
|
1709
|
+
"IonOobservationResourceWithRawResponse",
|
1710
|
+
"AsyncIonOobservationResourceWithRawResponse",
|
1711
|
+
"IonOobservationResourceWithStreamingResponse",
|
1712
|
+
"AsyncIonOobservationResourceWithStreamingResponse",
|
1887
1713
|
"IrResource",
|
1888
1714
|
"AsyncIrResource",
|
1889
1715
|
"IrResourceWithRawResponse",
|
@@ -1908,42 +1734,42 @@ __all__ = [
|
|
1908
1734
|
"AsyncItemTrackingsResourceWithRawResponse",
|
1909
1735
|
"ItemTrackingsResourceWithStreamingResponse",
|
1910
1736
|
"AsyncItemTrackingsResourceWithStreamingResponse",
|
1911
|
-
"
|
1912
|
-
"
|
1913
|
-
"
|
1914
|
-
"
|
1915
|
-
"
|
1916
|
-
"
|
1917
|
-
"
|
1918
|
-
"
|
1919
|
-
"
|
1920
|
-
"
|
1921
|
-
"
|
1922
|
-
"
|
1923
|
-
"
|
1924
|
-
"
|
1925
|
-
"
|
1926
|
-
"
|
1927
|
-
"
|
1928
|
-
"
|
1929
|
-
"
|
1930
|
-
"
|
1931
|
-
"
|
1932
|
-
"
|
1933
|
-
"
|
1934
|
-
"
|
1935
|
-
"
|
1936
|
-
"
|
1937
|
-
"
|
1938
|
-
"
|
1939
|
-
"
|
1940
|
-
"
|
1941
|
-
"
|
1942
|
-
"
|
1943
|
-
"
|
1944
|
-
"
|
1945
|
-
"
|
1946
|
-
"
|
1737
|
+
"LaunchDetectionResource",
|
1738
|
+
"AsyncLaunchDetectionResource",
|
1739
|
+
"LaunchDetectionResourceWithRawResponse",
|
1740
|
+
"AsyncLaunchDetectionResourceWithRawResponse",
|
1741
|
+
"LaunchDetectionResourceWithStreamingResponse",
|
1742
|
+
"AsyncLaunchDetectionResourceWithStreamingResponse",
|
1743
|
+
"LaunchEventResource",
|
1744
|
+
"AsyncLaunchEventResource",
|
1745
|
+
"LaunchEventResourceWithRawResponse",
|
1746
|
+
"AsyncLaunchEventResourceWithRawResponse",
|
1747
|
+
"LaunchEventResourceWithStreamingResponse",
|
1748
|
+
"AsyncLaunchEventResourceWithStreamingResponse",
|
1749
|
+
"LaunchSiteResource",
|
1750
|
+
"AsyncLaunchSiteResource",
|
1751
|
+
"LaunchSiteResourceWithRawResponse",
|
1752
|
+
"AsyncLaunchSiteResourceWithRawResponse",
|
1753
|
+
"LaunchSiteResourceWithStreamingResponse",
|
1754
|
+
"AsyncLaunchSiteResourceWithStreamingResponse",
|
1755
|
+
"LaunchSiteDetailsResource",
|
1756
|
+
"AsyncLaunchSiteDetailsResource",
|
1757
|
+
"LaunchSiteDetailsResourceWithRawResponse",
|
1758
|
+
"AsyncLaunchSiteDetailsResourceWithRawResponse",
|
1759
|
+
"LaunchSiteDetailsResourceWithStreamingResponse",
|
1760
|
+
"AsyncLaunchSiteDetailsResourceWithStreamingResponse",
|
1761
|
+
"LaunchVehicleResource",
|
1762
|
+
"AsyncLaunchVehicleResource",
|
1763
|
+
"LaunchVehicleResourceWithRawResponse",
|
1764
|
+
"AsyncLaunchVehicleResourceWithRawResponse",
|
1765
|
+
"LaunchVehicleResourceWithStreamingResponse",
|
1766
|
+
"AsyncLaunchVehicleResourceWithStreamingResponse",
|
1767
|
+
"LaunchVehicleDetailsResource",
|
1768
|
+
"AsyncLaunchVehicleDetailsResource",
|
1769
|
+
"LaunchVehicleDetailsResourceWithRawResponse",
|
1770
|
+
"AsyncLaunchVehicleDetailsResourceWithRawResponse",
|
1771
|
+
"LaunchVehicleDetailsResourceWithStreamingResponse",
|
1772
|
+
"AsyncLaunchVehicleDetailsResourceWithStreamingResponse",
|
1947
1773
|
"LinkStatusResource",
|
1948
1774
|
"AsyncLinkStatusResource",
|
1949
1775
|
"LinkStatusResourceWithRawResponse",
|
@@ -1956,12 +1782,12 @@ __all__ = [
|
|
1956
1782
|
"AsyncLocationResourceWithRawResponse",
|
1957
1783
|
"LocationResourceWithStreamingResponse",
|
1958
1784
|
"AsyncLocationResourceWithStreamingResponse",
|
1959
|
-
"
|
1960
|
-
"
|
1961
|
-
"
|
1962
|
-
"
|
1963
|
-
"
|
1964
|
-
"
|
1785
|
+
"LogisticsSupportResource",
|
1786
|
+
"AsyncLogisticsSupportResource",
|
1787
|
+
"LogisticsSupportResourceWithRawResponse",
|
1788
|
+
"AsyncLogisticsSupportResourceWithRawResponse",
|
1789
|
+
"LogisticsSupportResourceWithStreamingResponse",
|
1790
|
+
"AsyncLogisticsSupportResourceWithStreamingResponse",
|
1965
1791
|
"ManeuversResource",
|
1966
1792
|
"AsyncManeuversResource",
|
1967
1793
|
"ManeuversResourceWithRawResponse",
|
@@ -1986,18 +1812,12 @@ __all__ = [
|
|
1986
1812
|
"AsyncMissileTracksResourceWithRawResponse",
|
1987
1813
|
"MissileTracksResourceWithStreamingResponse",
|
1988
1814
|
"AsyncMissileTracksResourceWithStreamingResponse",
|
1989
|
-
"
|
1990
|
-
"
|
1991
|
-
"
|
1992
|
-
"
|
1993
|
-
"
|
1994
|
-
"
|
1995
|
-
"MonoradarResource",
|
1996
|
-
"AsyncMonoradarResource",
|
1997
|
-
"MonoradarResourceWithRawResponse",
|
1998
|
-
"AsyncMonoradarResourceWithRawResponse",
|
1999
|
-
"MonoradarResourceWithStreamingResponse",
|
2000
|
-
"AsyncMonoradarResourceWithStreamingResponse",
|
1815
|
+
"MissionAssignmentResource",
|
1816
|
+
"AsyncMissionAssignmentResource",
|
1817
|
+
"MissionAssignmentResourceWithRawResponse",
|
1818
|
+
"AsyncMissionAssignmentResourceWithRawResponse",
|
1819
|
+
"MissionAssignmentResourceWithStreamingResponse",
|
1820
|
+
"AsyncMissionAssignmentResourceWithStreamingResponse",
|
2001
1821
|
"MtiResource",
|
2002
1822
|
"AsyncMtiResource",
|
2003
1823
|
"MtiResourceWithRawResponse",
|
@@ -2010,24 +1830,24 @@ __all__ = [
|
|
2010
1830
|
"AsyncNavigationResourceWithRawResponse",
|
2011
1831
|
"NavigationResourceWithStreamingResponse",
|
2012
1832
|
"AsyncNavigationResourceWithStreamingResponse",
|
2013
|
-
"
|
2014
|
-
"
|
2015
|
-
"
|
2016
|
-
"
|
2017
|
-
"
|
2018
|
-
"
|
1833
|
+
"NavigationalObstructionResource",
|
1834
|
+
"AsyncNavigationalObstructionResource",
|
1835
|
+
"NavigationalObstructionResourceWithRawResponse",
|
1836
|
+
"AsyncNavigationalObstructionResourceWithRawResponse",
|
1837
|
+
"NavigationalObstructionResourceWithStreamingResponse",
|
1838
|
+
"AsyncNavigationalObstructionResourceWithStreamingResponse",
|
2019
1839
|
"NotificationResource",
|
2020
1840
|
"AsyncNotificationResource",
|
2021
1841
|
"NotificationResourceWithRawResponse",
|
2022
1842
|
"AsyncNotificationResourceWithRawResponse",
|
2023
1843
|
"NotificationResourceWithStreamingResponse",
|
2024
1844
|
"AsyncNotificationResourceWithStreamingResponse",
|
2025
|
-
"
|
2026
|
-
"
|
2027
|
-
"
|
2028
|
-
"
|
2029
|
-
"
|
2030
|
-
"
|
1845
|
+
"ObjectOfInterestResource",
|
1846
|
+
"AsyncObjectOfInterestResource",
|
1847
|
+
"ObjectOfInterestResourceWithRawResponse",
|
1848
|
+
"AsyncObjectOfInterestResourceWithRawResponse",
|
1849
|
+
"ObjectOfInterestResourceWithStreamingResponse",
|
1850
|
+
"AsyncObjectOfInterestResourceWithStreamingResponse",
|
2031
1851
|
"ObservationsResource",
|
2032
1852
|
"AsyncObservationsResource",
|
2033
1853
|
"ObservationsResourceWithRawResponse",
|
@@ -2130,12 +1950,6 @@ __all__ = [
|
|
2130
1950
|
"AsyncOrganizationdetailsResourceWithRawResponse",
|
2131
1951
|
"OrganizationdetailsResourceWithStreamingResponse",
|
2132
1952
|
"AsyncOrganizationdetailsResourceWithStreamingResponse",
|
2133
|
-
"PassiveradarobservationResource",
|
2134
|
-
"AsyncPassiveradarobservationResource",
|
2135
|
-
"PassiveradarobservationResourceWithRawResponse",
|
2136
|
-
"AsyncPassiveradarobservationResourceWithRawResponse",
|
2137
|
-
"PassiveradarobservationResourceWithStreamingResponse",
|
2138
|
-
"AsyncPassiveradarobservationResourceWithStreamingResponse",
|
2139
1953
|
"PersonnelrecoveryResource",
|
2140
1954
|
"AsyncPersonnelrecoveryResource",
|
2141
1955
|
"PersonnelrecoveryResourceWithRawResponse",
|
@@ -2154,48 +1968,36 @@ __all__ = [
|
|
2154
1968
|
"AsyncPortResourceWithRawResponse",
|
2155
1969
|
"PortResourceWithStreamingResponse",
|
2156
1970
|
"AsyncPortResourceWithStreamingResponse",
|
2157
|
-
"
|
2158
|
-
"
|
2159
|
-
"
|
2160
|
-
"
|
2161
|
-
"
|
2162
|
-
"
|
2163
|
-
"
|
2164
|
-
"
|
2165
|
-
"
|
2166
|
-
"
|
2167
|
-
"
|
2168
|
-
"
|
2169
|
-
"
|
2170
|
-
"
|
2171
|
-
"
|
2172
|
-
"
|
2173
|
-
"
|
2174
|
-
"
|
2175
|
-
"
|
2176
|
-
"
|
2177
|
-
"
|
2178
|
-
"
|
2179
|
-
"
|
2180
|
-
"
|
2181
|
-
"
|
2182
|
-
"
|
2183
|
-
"
|
2184
|
-
"
|
2185
|
-
"
|
2186
|
-
"
|
2187
|
-
"RfobservationResource",
|
2188
|
-
"AsyncRfobservationResource",
|
2189
|
-
"RfobservationResourceWithRawResponse",
|
2190
|
-
"AsyncRfobservationResourceWithRawResponse",
|
2191
|
-
"RfobservationResourceWithStreamingResponse",
|
2192
|
-
"AsyncRfobservationResourceWithStreamingResponse",
|
2193
|
-
"SarobservationResource",
|
2194
|
-
"AsyncSarobservationResource",
|
2195
|
-
"SarobservationResourceWithRawResponse",
|
2196
|
-
"AsyncSarobservationResourceWithRawResponse",
|
2197
|
-
"SarobservationResourceWithStreamingResponse",
|
2198
|
-
"AsyncSarobservationResourceWithStreamingResponse",
|
1971
|
+
"RfBandResource",
|
1972
|
+
"AsyncRfBandResource",
|
1973
|
+
"RfBandResourceWithRawResponse",
|
1974
|
+
"AsyncRfBandResourceWithRawResponse",
|
1975
|
+
"RfBandResourceWithStreamingResponse",
|
1976
|
+
"AsyncRfBandResourceWithStreamingResponse",
|
1977
|
+
"RfBandTypeResource",
|
1978
|
+
"AsyncRfBandTypeResource",
|
1979
|
+
"RfBandTypeResourceWithRawResponse",
|
1980
|
+
"AsyncRfBandTypeResourceWithRawResponse",
|
1981
|
+
"RfBandTypeResourceWithStreamingResponse",
|
1982
|
+
"AsyncRfBandTypeResourceWithStreamingResponse",
|
1983
|
+
"RfEmitterResource",
|
1984
|
+
"AsyncRfEmitterResource",
|
1985
|
+
"RfEmitterResourceWithRawResponse",
|
1986
|
+
"AsyncRfEmitterResourceWithRawResponse",
|
1987
|
+
"RfEmitterResourceWithStreamingResponse",
|
1988
|
+
"AsyncRfEmitterResourceWithStreamingResponse",
|
1989
|
+
"RfEmitterDetailsResource",
|
1990
|
+
"AsyncRfEmitterDetailsResource",
|
1991
|
+
"RfEmitterDetailsResourceWithRawResponse",
|
1992
|
+
"AsyncRfEmitterDetailsResourceWithRawResponse",
|
1993
|
+
"RfEmitterDetailsResourceWithStreamingResponse",
|
1994
|
+
"AsyncRfEmitterDetailsResourceWithStreamingResponse",
|
1995
|
+
"SarObservationResource",
|
1996
|
+
"AsyncSarObservationResource",
|
1997
|
+
"SarObservationResourceWithRawResponse",
|
1998
|
+
"AsyncSarObservationResourceWithRawResponse",
|
1999
|
+
"SarObservationResourceWithStreamingResponse",
|
2000
|
+
"AsyncSarObservationResourceWithStreamingResponse",
|
2199
2001
|
"ScientificResource",
|
2200
2002
|
"AsyncScientificResource",
|
2201
2003
|
"ScientificResourceWithRawResponse",
|
@@ -2208,72 +2010,72 @@ __all__ = [
|
|
2208
2010
|
"AsyncSensorResourceWithRawResponse",
|
2209
2011
|
"SensorResourceWithStreamingResponse",
|
2210
2012
|
"AsyncSensorResourceWithStreamingResponse",
|
2211
|
-
"
|
2212
|
-
"
|
2213
|
-
"
|
2214
|
-
"
|
2215
|
-
"
|
2216
|
-
"
|
2217
|
-
"
|
2218
|
-
"
|
2219
|
-
"
|
2220
|
-
"
|
2221
|
-
"
|
2222
|
-
"
|
2223
|
-
"
|
2224
|
-
"
|
2225
|
-
"
|
2226
|
-
"
|
2227
|
-
"
|
2228
|
-
"
|
2229
|
-
"
|
2230
|
-
"
|
2231
|
-
"
|
2232
|
-
"
|
2233
|
-
"
|
2234
|
-
"
|
2235
|
-
"
|
2236
|
-
"
|
2237
|
-
"
|
2238
|
-
"
|
2239
|
-
"
|
2240
|
-
"
|
2241
|
-
"
|
2242
|
-
"
|
2243
|
-
"
|
2244
|
-
"
|
2245
|
-
"
|
2246
|
-
"
|
2247
|
-
"
|
2248
|
-
"
|
2249
|
-
"
|
2250
|
-
"
|
2251
|
-
"
|
2252
|
-
"
|
2253
|
-
"
|
2254
|
-
"
|
2255
|
-
"
|
2256
|
-
"
|
2257
|
-
"
|
2258
|
-
"
|
2259
|
-
"
|
2260
|
-
"
|
2261
|
-
"
|
2262
|
-
"
|
2263
|
-
"
|
2264
|
-
"
|
2265
|
-
"
|
2266
|
-
"
|
2267
|
-
"
|
2268
|
-
"
|
2269
|
-
"
|
2270
|
-
"
|
2271
|
-
"
|
2272
|
-
"
|
2273
|
-
"
|
2274
|
-
"
|
2275
|
-
"
|
2276
|
-
"
|
2013
|
+
"SensorMaintenanceResource",
|
2014
|
+
"AsyncSensorMaintenanceResource",
|
2015
|
+
"SensorMaintenanceResourceWithRawResponse",
|
2016
|
+
"AsyncSensorMaintenanceResourceWithRawResponse",
|
2017
|
+
"SensorMaintenanceResourceWithStreamingResponse",
|
2018
|
+
"AsyncSensorMaintenanceResourceWithStreamingResponse",
|
2019
|
+
"SensorObservationTypeResource",
|
2020
|
+
"AsyncSensorObservationTypeResource",
|
2021
|
+
"SensorObservationTypeResourceWithRawResponse",
|
2022
|
+
"AsyncSensorObservationTypeResourceWithRawResponse",
|
2023
|
+
"SensorObservationTypeResourceWithStreamingResponse",
|
2024
|
+
"AsyncSensorObservationTypeResourceWithStreamingResponse",
|
2025
|
+
"SensorPlanResource",
|
2026
|
+
"AsyncSensorPlanResource",
|
2027
|
+
"SensorPlanResourceWithRawResponse",
|
2028
|
+
"AsyncSensorPlanResourceWithRawResponse",
|
2029
|
+
"SensorPlanResourceWithStreamingResponse",
|
2030
|
+
"AsyncSensorPlanResourceWithStreamingResponse",
|
2031
|
+
"SensorTypeResource",
|
2032
|
+
"AsyncSensorTypeResource",
|
2033
|
+
"SensorTypeResourceWithRawResponse",
|
2034
|
+
"AsyncSensorTypeResourceWithRawResponse",
|
2035
|
+
"SensorTypeResourceWithStreamingResponse",
|
2036
|
+
"AsyncSensorTypeResourceWithStreamingResponse",
|
2037
|
+
"SeraDataCommDetailsResource",
|
2038
|
+
"AsyncSeraDataCommDetailsResource",
|
2039
|
+
"SeraDataCommDetailsResourceWithRawResponse",
|
2040
|
+
"AsyncSeraDataCommDetailsResourceWithRawResponse",
|
2041
|
+
"SeraDataCommDetailsResourceWithStreamingResponse",
|
2042
|
+
"AsyncSeraDataCommDetailsResourceWithStreamingResponse",
|
2043
|
+
"SeraDataEarlyWarningResource",
|
2044
|
+
"AsyncSeraDataEarlyWarningResource",
|
2045
|
+
"SeraDataEarlyWarningResourceWithRawResponse",
|
2046
|
+
"AsyncSeraDataEarlyWarningResourceWithRawResponse",
|
2047
|
+
"SeraDataEarlyWarningResourceWithStreamingResponse",
|
2048
|
+
"AsyncSeraDataEarlyWarningResourceWithStreamingResponse",
|
2049
|
+
"SeraDataNavigationResource",
|
2050
|
+
"AsyncSeraDataNavigationResource",
|
2051
|
+
"SeraDataNavigationResourceWithRawResponse",
|
2052
|
+
"AsyncSeraDataNavigationResourceWithRawResponse",
|
2053
|
+
"SeraDataNavigationResourceWithStreamingResponse",
|
2054
|
+
"AsyncSeraDataNavigationResourceWithStreamingResponse",
|
2055
|
+
"SeradataOpticalPayloadResource",
|
2056
|
+
"AsyncSeradataOpticalPayloadResource",
|
2057
|
+
"SeradataOpticalPayloadResourceWithRawResponse",
|
2058
|
+
"AsyncSeradataOpticalPayloadResourceWithRawResponse",
|
2059
|
+
"SeradataOpticalPayloadResourceWithStreamingResponse",
|
2060
|
+
"AsyncSeradataOpticalPayloadResourceWithStreamingResponse",
|
2061
|
+
"SeradataRadarPayloadResource",
|
2062
|
+
"AsyncSeradataRadarPayloadResource",
|
2063
|
+
"SeradataRadarPayloadResourceWithRawResponse",
|
2064
|
+
"AsyncSeradataRadarPayloadResourceWithRawResponse",
|
2065
|
+
"SeradataRadarPayloadResourceWithStreamingResponse",
|
2066
|
+
"AsyncSeradataRadarPayloadResourceWithStreamingResponse",
|
2067
|
+
"SeradataSigintPayloadResource",
|
2068
|
+
"AsyncSeradataSigintPayloadResource",
|
2069
|
+
"SeradataSigintPayloadResourceWithRawResponse",
|
2070
|
+
"AsyncSeradataSigintPayloadResourceWithRawResponse",
|
2071
|
+
"SeradataSigintPayloadResourceWithStreamingResponse",
|
2072
|
+
"AsyncSeradataSigintPayloadResourceWithStreamingResponse",
|
2073
|
+
"SeradataSpacecraftDetailsResource",
|
2074
|
+
"AsyncSeradataSpacecraftDetailsResource",
|
2075
|
+
"SeradataSpacecraftDetailsResourceWithRawResponse",
|
2076
|
+
"AsyncSeradataSpacecraftDetailsResourceWithRawResponse",
|
2077
|
+
"SeradataSpacecraftDetailsResourceWithStreamingResponse",
|
2078
|
+
"AsyncSeradataSpacecraftDetailsResourceWithStreamingResponse",
|
2277
2079
|
"SgiResource",
|
2278
2080
|
"AsyncSgiResource",
|
2279
2081
|
"SgiResourceWithRawResponse",
|
@@ -2292,72 +2094,72 @@ __all__ = [
|
|
2292
2094
|
"AsyncSiteResourceWithRawResponse",
|
2293
2095
|
"SiteResourceWithStreamingResponse",
|
2294
2096
|
"AsyncSiteResourceWithStreamingResponse",
|
2295
|
-
"
|
2296
|
-
"
|
2297
|
-
"
|
2298
|
-
"
|
2299
|
-
"
|
2300
|
-
"
|
2301
|
-
"
|
2302
|
-
"
|
2303
|
-
"
|
2304
|
-
"
|
2305
|
-
"
|
2306
|
-
"
|
2307
|
-
"
|
2308
|
-
"
|
2309
|
-
"
|
2310
|
-
"
|
2311
|
-
"
|
2312
|
-
"
|
2313
|
-
"
|
2314
|
-
"
|
2315
|
-
"
|
2316
|
-
"
|
2317
|
-
"
|
2318
|
-
"
|
2319
|
-
"
|
2320
|
-
"
|
2321
|
-
"
|
2322
|
-
"
|
2323
|
-
"
|
2324
|
-
"
|
2325
|
-
"
|
2326
|
-
"
|
2327
|
-
"
|
2328
|
-
"
|
2329
|
-
"
|
2330
|
-
"
|
2331
|
-
"
|
2332
|
-
"
|
2333
|
-
"
|
2334
|
-
"
|
2335
|
-
"
|
2336
|
-
"
|
2337
|
-
"
|
2338
|
-
"
|
2339
|
-
"
|
2340
|
-
"
|
2341
|
-
"
|
2342
|
-
"
|
2097
|
+
"SiteRemarkResource",
|
2098
|
+
"AsyncSiteRemarkResource",
|
2099
|
+
"SiteRemarkResourceWithRawResponse",
|
2100
|
+
"AsyncSiteRemarkResourceWithRawResponse",
|
2101
|
+
"SiteRemarkResourceWithStreamingResponse",
|
2102
|
+
"AsyncSiteRemarkResourceWithStreamingResponse",
|
2103
|
+
"SiteStatusResource",
|
2104
|
+
"AsyncSiteStatusResource",
|
2105
|
+
"SiteStatusResourceWithRawResponse",
|
2106
|
+
"AsyncSiteStatusResourceWithRawResponse",
|
2107
|
+
"SiteStatusResourceWithStreamingResponse",
|
2108
|
+
"AsyncSiteStatusResourceWithStreamingResponse",
|
2109
|
+
"SkyImageryResource",
|
2110
|
+
"AsyncSkyImageryResource",
|
2111
|
+
"SkyImageryResourceWithRawResponse",
|
2112
|
+
"AsyncSkyImageryResourceWithRawResponse",
|
2113
|
+
"SkyImageryResourceWithStreamingResponse",
|
2114
|
+
"AsyncSkyImageryResourceWithStreamingResponse",
|
2115
|
+
"SoiObservationSetResource",
|
2116
|
+
"AsyncSoiObservationSetResource",
|
2117
|
+
"SoiObservationSetResourceWithRawResponse",
|
2118
|
+
"AsyncSoiObservationSetResourceWithRawResponse",
|
2119
|
+
"SoiObservationSetResourceWithStreamingResponse",
|
2120
|
+
"AsyncSoiObservationSetResourceWithStreamingResponse",
|
2121
|
+
"SolarArrayResource",
|
2122
|
+
"AsyncSolarArrayResource",
|
2123
|
+
"SolarArrayResourceWithRawResponse",
|
2124
|
+
"AsyncSolarArrayResourceWithRawResponse",
|
2125
|
+
"SolarArrayResourceWithStreamingResponse",
|
2126
|
+
"AsyncSolarArrayResourceWithStreamingResponse",
|
2127
|
+
"SolarArrayDetailsResource",
|
2128
|
+
"AsyncSolarArrayDetailsResource",
|
2129
|
+
"SolarArrayDetailsResourceWithRawResponse",
|
2130
|
+
"AsyncSolarArrayDetailsResourceWithRawResponse",
|
2131
|
+
"SolarArrayDetailsResourceWithStreamingResponse",
|
2132
|
+
"AsyncSolarArrayDetailsResourceWithStreamingResponse",
|
2133
|
+
"SortiePprResource",
|
2134
|
+
"AsyncSortiePprResource",
|
2135
|
+
"SortiePprResourceWithRawResponse",
|
2136
|
+
"AsyncSortiePprResourceWithRawResponse",
|
2137
|
+
"SortiePprResourceWithStreamingResponse",
|
2138
|
+
"AsyncSortiePprResourceWithStreamingResponse",
|
2139
|
+
"SpaceEnvObservationResource",
|
2140
|
+
"AsyncSpaceEnvObservationResource",
|
2141
|
+
"SpaceEnvObservationResourceWithRawResponse",
|
2142
|
+
"AsyncSpaceEnvObservationResourceWithRawResponse",
|
2143
|
+
"SpaceEnvObservationResourceWithStreamingResponse",
|
2144
|
+
"AsyncSpaceEnvObservationResourceWithStreamingResponse",
|
2343
2145
|
"StageResource",
|
2344
2146
|
"AsyncStageResource",
|
2345
2147
|
"StageResourceWithRawResponse",
|
2346
2148
|
"AsyncStageResourceWithRawResponse",
|
2347
2149
|
"StageResourceWithStreamingResponse",
|
2348
2150
|
"AsyncStageResourceWithStreamingResponse",
|
2349
|
-
"
|
2350
|
-
"
|
2351
|
-
"
|
2352
|
-
"
|
2353
|
-
"
|
2354
|
-
"
|
2355
|
-
"
|
2356
|
-
"
|
2357
|
-
"
|
2358
|
-
"
|
2359
|
-
"
|
2360
|
-
"
|
2151
|
+
"StarCatalogResource",
|
2152
|
+
"AsyncStarCatalogResource",
|
2153
|
+
"StarCatalogResourceWithRawResponse",
|
2154
|
+
"AsyncStarCatalogResourceWithRawResponse",
|
2155
|
+
"StarCatalogResourceWithStreamingResponse",
|
2156
|
+
"AsyncStarCatalogResourceWithStreamingResponse",
|
2157
|
+
"StateVectorResource",
|
2158
|
+
"AsyncStateVectorResource",
|
2159
|
+
"StateVectorResourceWithRawResponse",
|
2160
|
+
"AsyncStateVectorResourceWithRawResponse",
|
2161
|
+
"StateVectorResourceWithStreamingResponse",
|
2162
|
+
"AsyncStateVectorResourceWithStreamingResponse",
|
2361
2163
|
"StatusResource",
|
2362
2164
|
"AsyncStatusResource",
|
2363
2165
|
"StatusResourceWithRawResponse",
|
@@ -2382,24 +2184,24 @@ __all__ = [
|
|
2382
2184
|
"AsyncSurfaceResourceWithRawResponse",
|
2383
2185
|
"SurfaceResourceWithStreamingResponse",
|
2384
2186
|
"AsyncSurfaceResourceWithStreamingResponse",
|
2385
|
-
"
|
2386
|
-
"
|
2387
|
-
"
|
2388
|
-
"
|
2389
|
-
"
|
2390
|
-
"
|
2187
|
+
"SurfaceObstructionResource",
|
2188
|
+
"AsyncSurfaceObstructionResource",
|
2189
|
+
"SurfaceObstructionResourceWithRawResponse",
|
2190
|
+
"AsyncSurfaceObstructionResourceWithRawResponse",
|
2191
|
+
"SurfaceObstructionResourceWithStreamingResponse",
|
2192
|
+
"AsyncSurfaceObstructionResourceWithStreamingResponse",
|
2391
2193
|
"SwirResource",
|
2392
2194
|
"AsyncSwirResource",
|
2393
2195
|
"SwirResourceWithRawResponse",
|
2394
2196
|
"AsyncSwirResourceWithRawResponse",
|
2395
2197
|
"SwirResourceWithStreamingResponse",
|
2396
2198
|
"AsyncSwirResourceWithStreamingResponse",
|
2397
|
-
"
|
2398
|
-
"
|
2399
|
-
"
|
2400
|
-
"
|
2401
|
-
"
|
2402
|
-
"
|
2199
|
+
"TaiUtcResource",
|
2200
|
+
"AsyncTaiUtcResource",
|
2201
|
+
"TaiUtcResourceWithRawResponse",
|
2202
|
+
"AsyncTaiUtcResourceWithRawResponse",
|
2203
|
+
"TaiUtcResourceWithStreamingResponse",
|
2204
|
+
"AsyncTaiUtcResourceWithStreamingResponse",
|
2403
2205
|
"TdoaFdoaResource",
|
2404
2206
|
"AsyncTdoaFdoaResource",
|
2405
2207
|
"TdoaFdoaResourceWithRawResponse",
|
@@ -2412,18 +2214,18 @@ __all__ = [
|
|
2412
2214
|
"AsyncTrackResourceWithRawResponse",
|
2413
2215
|
"TrackResourceWithStreamingResponse",
|
2414
2216
|
"AsyncTrackResourceWithStreamingResponse",
|
2415
|
-
"
|
2416
|
-
"
|
2417
|
-
"
|
2418
|
-
"
|
2419
|
-
"
|
2420
|
-
"
|
2421
|
-
"
|
2422
|
-
"
|
2423
|
-
"
|
2424
|
-
"
|
2425
|
-
"
|
2426
|
-
"
|
2217
|
+
"TrackDetailsResource",
|
2218
|
+
"AsyncTrackDetailsResource",
|
2219
|
+
"TrackDetailsResourceWithRawResponse",
|
2220
|
+
"AsyncTrackDetailsResourceWithRawResponse",
|
2221
|
+
"TrackDetailsResourceWithStreamingResponse",
|
2222
|
+
"AsyncTrackDetailsResourceWithStreamingResponse",
|
2223
|
+
"TrackRouteResource",
|
2224
|
+
"AsyncTrackRouteResource",
|
2225
|
+
"TrackRouteResourceWithRawResponse",
|
2226
|
+
"AsyncTrackRouteResourceWithRawResponse",
|
2227
|
+
"TrackRouteResourceWithStreamingResponse",
|
2228
|
+
"AsyncTrackRouteResourceWithStreamingResponse",
|
2427
2229
|
"TransponderResource",
|
2428
2230
|
"AsyncTransponderResource",
|
2429
2231
|
"TransponderResourceWithRawResponse",
|
@@ -2442,24 +2244,18 @@ __all__ = [
|
|
2442
2244
|
"AsyncVideoResourceWithRawResponse",
|
2443
2245
|
"VideoResourceWithStreamingResponse",
|
2444
2246
|
"AsyncVideoResourceWithStreamingResponse",
|
2445
|
-
"
|
2446
|
-
"
|
2447
|
-
"
|
2448
|
-
"
|
2449
|
-
"
|
2450
|
-
"
|
2451
|
-
"
|
2452
|
-
"
|
2453
|
-
"
|
2454
|
-
"
|
2455
|
-
"
|
2456
|
-
"
|
2457
|
-
"UdlResource",
|
2458
|
-
"AsyncUdlResource",
|
2459
|
-
"UdlResourceWithRawResponse",
|
2460
|
-
"AsyncUdlResourceWithRawResponse",
|
2461
|
-
"UdlResourceWithStreamingResponse",
|
2462
|
-
"AsyncUdlResourceWithStreamingResponse",
|
2247
|
+
"WeatherDataResource",
|
2248
|
+
"AsyncWeatherDataResource",
|
2249
|
+
"WeatherDataResourceWithRawResponse",
|
2250
|
+
"AsyncWeatherDataResourceWithRawResponse",
|
2251
|
+
"WeatherDataResourceWithStreamingResponse",
|
2252
|
+
"AsyncWeatherDataResourceWithStreamingResponse",
|
2253
|
+
"WeatherReportResource",
|
2254
|
+
"AsyncWeatherReportResource",
|
2255
|
+
"WeatherReportResourceWithRawResponse",
|
2256
|
+
"AsyncWeatherReportResourceWithRawResponse",
|
2257
|
+
"WeatherReportResourceWithStreamingResponse",
|
2258
|
+
"AsyncWeatherReportResourceWithStreamingResponse",
|
2463
2259
|
"GnssObservationsResource",
|
2464
2260
|
"AsyncGnssObservationsResource",
|
2465
2261
|
"GnssObservationsResourceWithRawResponse",
|
@@ -2478,12 +2274,6 @@ __all__ = [
|
|
2478
2274
|
"AsyncIonoObservationResourceWithRawResponse",
|
2479
2275
|
"IonoObservationResourceWithStreamingResponse",
|
2480
2276
|
"AsyncIonoObservationResourceWithStreamingResponse",
|
2481
|
-
"LaunchEventResource",
|
2482
|
-
"AsyncLaunchEventResource",
|
2483
|
-
"LaunchEventResourceWithRawResponse",
|
2484
|
-
"AsyncLaunchEventResourceWithRawResponse",
|
2485
|
-
"LaunchEventResourceWithStreamingResponse",
|
2486
|
-
"AsyncLaunchEventResourceWithStreamingResponse",
|
2487
2277
|
"ReportAndActivityResource",
|
2488
2278
|
"AsyncReportAndActivityResource",
|
2489
2279
|
"ReportAndActivityResourceWithRawResponse",
|