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