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