udl-sdk 0.1.0a10__py3-none-any.whl → 0.1.0a12__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.0a10.dist-info → udl_sdk-0.1.0a12.dist-info}/METADATA +40 -46
- {udl_sdk-0.1.0a10.dist-info → udl_sdk-0.1.0a12.dist-info}/RECORD +421 -271
- unifieddatalibrary/__init__.py +2 -1
- unifieddatalibrary/_base_client.py +72 -4
- unifieddatalibrary/_client.py +6 -2
- unifieddatalibrary/_models.py +10 -5
- unifieddatalibrary/_types.py +2 -0
- unifieddatalibrary/_utils/_transform.py +2 -2
- unifieddatalibrary/_utils/_utils.py +1 -1
- unifieddatalibrary/_version.py +1 -1
- unifieddatalibrary/lib/common.py +0 -1
- unifieddatalibrary/lib/model_based_query.py +6 -2
- unifieddatalibrary/lib/query_field_names.py +6 -4
- unifieddatalibrary/lib/util.py +2 -1
- unifieddatalibrary/pagination.py +129 -15
- unifieddatalibrary/resources/air_events.py +5 -6
- unifieddatalibrary/resources/air_load_plans.py +5 -6
- unifieddatalibrary/resources/air_operations/air_tasking_orders.py +5 -6
- unifieddatalibrary/resources/air_transport_missions/air_transport_missions.py +5 -6
- unifieddatalibrary/resources/aircraft.py +5 -6
- unifieddatalibrary/resources/aircraft_sorties.py +5 -6
- unifieddatalibrary/resources/aircraft_status_remarks.py +5 -6
- unifieddatalibrary/resources/aircraft_statuses/aircraft_statuses.py +5 -6
- unifieddatalibrary/resources/airfield_slot_consumptions.py +5 -6
- unifieddatalibrary/resources/airfield_slots.py +5 -6
- unifieddatalibrary/resources/airfield_status/airfield_status.py +5 -6
- unifieddatalibrary/resources/airfields.py +5 -6
- unifieddatalibrary/resources/airspace_control_orders.py +5 -6
- unifieddatalibrary/resources/ais/ais.py +5 -6
- unifieddatalibrary/resources/analytic_imagery.py +5 -6
- unifieddatalibrary/resources/antennas.py +5 -6
- unifieddatalibrary/resources/attitude_data.py +6 -7
- unifieddatalibrary/resources/attitude_sets/attitude_sets.py +5 -6
- unifieddatalibrary/resources/aviation_risk_management.py +5 -6
- unifieddatalibrary/resources/batteries.py +5 -6
- unifieddatalibrary/resources/beam.py +5 -6
- unifieddatalibrary/resources/beam_contours.py +5 -6
- unifieddatalibrary/resources/buses.py +5 -6
- unifieddatalibrary/resources/channels.py +5 -6
- unifieddatalibrary/resources/collect_requests/collect_requests.py +5 -6
- unifieddatalibrary/resources/collect_responses/collect_responses.py +5 -6
- unifieddatalibrary/resources/comm.py +5 -6
- unifieddatalibrary/resources/conjunctions/conjunctions.py +5 -6
- unifieddatalibrary/resources/countries.py +5 -6
- unifieddatalibrary/resources/crew.py +5 -6
- unifieddatalibrary/resources/diff_of_arrival/diff_of_arrival.py +5 -6
- unifieddatalibrary/resources/diplomatic_clearance/country.py +21 -22
- unifieddatalibrary/resources/diplomatic_clearance/diplomatic_clearance.py +5 -6
- unifieddatalibrary/resources/drift_history.py +6 -7
- unifieddatalibrary/resources/dropzone.py +5 -6
- unifieddatalibrary/resources/effect_requests/effect_requests.py +5 -6
- unifieddatalibrary/resources/effect_responses/effect_responses.py +5 -6
- unifieddatalibrary/resources/elsets/elsets.py +10 -12
- unifieddatalibrary/resources/emitter_geolocation.py +5 -6
- unifieddatalibrary/resources/engines.py +5 -6
- unifieddatalibrary/resources/entities.py +13 -10
- unifieddatalibrary/resources/eop/eop.py +5 -6
- unifieddatalibrary/resources/ephemeris/ephemeris.py +7 -8
- unifieddatalibrary/resources/ephemeris_sets/ephemeris_sets.py +7 -8
- unifieddatalibrary/resources/equipment.py +5 -6
- unifieddatalibrary/resources/equipment_remarks.py +5 -6
- unifieddatalibrary/resources/evac/evac.py +5 -6
- unifieddatalibrary/resources/event_evolution/event_evolution.py +5 -6
- unifieddatalibrary/resources/feature_assessment/feature_assessment.py +5 -6
- unifieddatalibrary/resources/flightplan.py +5 -6
- unifieddatalibrary/resources/geo_status/geo_status.py +5 -6
- unifieddatalibrary/resources/global_atmospheric_model/global_atmospheric_model.py +7 -8
- unifieddatalibrary/resources/gnss_observationset/gnss_observationset.py +5 -6
- unifieddatalibrary/resources/gnss_rawif.py +5 -6
- unifieddatalibrary/resources/ground_imagery/ground_imagery.py +5 -6
- unifieddatalibrary/resources/h3_geo/h3_geo.py +5 -6
- unifieddatalibrary/resources/h3_geo_hex_cell.py +6 -7
- unifieddatalibrary/resources/hazard/hazard.py +5 -6
- unifieddatalibrary/resources/ion_oobservation.py +5 -6
- unifieddatalibrary/resources/ir.py +5 -6
- unifieddatalibrary/resources/isr_collections/isr_collections.py +5 -6
- unifieddatalibrary/resources/item.py +5 -6
- unifieddatalibrary/resources/item_trackings/item_trackings.py +5 -6
- unifieddatalibrary/resources/launch_detection.py +5 -6
- unifieddatalibrary/resources/launch_event/launch_event.py +5 -6
- unifieddatalibrary/resources/launch_site.py +5 -6
- unifieddatalibrary/resources/launch_vehicle.py +5 -6
- unifieddatalibrary/resources/link_status/datalink.py +5 -6
- unifieddatalibrary/resources/link_status/link_status.py +5 -6
- unifieddatalibrary/resources/location.py +5 -6
- unifieddatalibrary/resources/logistics_support/logistics_support.py +5 -6
- unifieddatalibrary/resources/maneuvers/maneuvers.py +5 -6
- unifieddatalibrary/resources/manifold.py +5 -6
- unifieddatalibrary/resources/manifoldelset.py +5 -6
- unifieddatalibrary/resources/missile_tracks/missile_tracks.py +5 -6
- unifieddatalibrary/resources/mission_assignment/mission_assignment.py +5 -6
- unifieddatalibrary/resources/mti/mti.py +5 -6
- unifieddatalibrary/resources/navigation.py +5 -6
- unifieddatalibrary/resources/navigational_obstruction.py +5 -6
- unifieddatalibrary/resources/notification/notification.py +5 -6
- unifieddatalibrary/resources/object_of_interest.py +5 -6
- unifieddatalibrary/resources/observations/ecpsdr.py +5 -6
- unifieddatalibrary/resources/observations/eo_observations/eo_observations.py +5 -6
- unifieddatalibrary/resources/observations/monoradar/monoradar.py +5 -6
- unifieddatalibrary/resources/observations/passive_radar_observation/passive_radar_observation.py +5 -6
- unifieddatalibrary/resources/observations/radarobservation/radarobservation.py +5 -6
- unifieddatalibrary/resources/observations/rf_observation/rf_observation.py +5 -6
- unifieddatalibrary/resources/onboardnavigation/onboardnavigation.py +5 -6
- unifieddatalibrary/resources/onorbit/onorbit.py +5 -6
- unifieddatalibrary/resources/onorbitevent.py +5 -6
- unifieddatalibrary/resources/onorbitlist.py +5 -6
- unifieddatalibrary/resources/onorbitthrusterstatus/onorbitthrusterstatus.py +5 -6
- unifieddatalibrary/resources/operatingunit.py +5 -6
- unifieddatalibrary/resources/operatingunitremark.py +5 -6
- unifieddatalibrary/resources/orbitdetermination/orbitdetermination.py +5 -6
- unifieddatalibrary/resources/orbittrack/orbittrack.py +5 -6
- unifieddatalibrary/resources/organization.py +5 -6
- unifieddatalibrary/resources/personnelrecovery/personnelrecovery.py +5 -6
- unifieddatalibrary/resources/poi.py +5 -6
- unifieddatalibrary/resources/port.py +5 -6
- unifieddatalibrary/resources/rf_band.py +5 -6
- unifieddatalibrary/resources/rf_band_type.py +5 -6
- unifieddatalibrary/resources/rf_emitter.py +5 -6
- unifieddatalibrary/resources/rf_emitter_details.py +5 -6
- unifieddatalibrary/resources/route_stats.py +5 -6
- unifieddatalibrary/resources/sar_observation/sar_observation.py +5 -6
- unifieddatalibrary/resources/scientific.py +5 -6
- unifieddatalibrary/resources/scs/folders.py +8 -0
- unifieddatalibrary/resources/scs/paths.py +16 -0
- unifieddatalibrary/resources/scs/scs.py +16 -0
- unifieddatalibrary/resources/scs/v2.py +64 -4
- unifieddatalibrary/resources/secure_messaging.py +10 -6
- unifieddatalibrary/resources/sensor/calibration/calibration.py +117 -112
- unifieddatalibrary/resources/sensor/sensor.py +5 -6
- unifieddatalibrary/resources/sensor_maintenance/sensor_maintenance.py +5 -6
- unifieddatalibrary/resources/sensor_observation_type.py +6 -7
- unifieddatalibrary/resources/sensor_plan/sensor_plan.py +5 -6
- unifieddatalibrary/resources/sensor_type.py +6 -7
- unifieddatalibrary/resources/sera_data_comm_details.py +5 -6
- unifieddatalibrary/resources/sera_data_early_warning.py +5 -6
- unifieddatalibrary/resources/sera_data_navigation.py +5 -6
- unifieddatalibrary/resources/seradata_optical_payload.py +5 -6
- unifieddatalibrary/resources/seradata_radar_payload.py +5 -6
- unifieddatalibrary/resources/seradata_sigint_payload.py +5 -6
- unifieddatalibrary/resources/seradata_spacecraft_details.py +5 -6
- unifieddatalibrary/resources/sgi/sgi.py +5 -6
- unifieddatalibrary/resources/sigact/sigact.py +5 -6
- unifieddatalibrary/resources/site/operations.py +5 -6
- unifieddatalibrary/resources/site/site.py +5 -6
- unifieddatalibrary/resources/site_remark.py +5 -6
- unifieddatalibrary/resources/site_status/site_status.py +5 -6
- unifieddatalibrary/resources/sky_imagery/sky_imagery.py +5 -6
- unifieddatalibrary/resources/soi_observation_set/soi_observation_set.py +5 -6
- unifieddatalibrary/resources/solar_array.py +5 -6
- unifieddatalibrary/resources/sortie_ppr/sortie_ppr.py +5 -6
- unifieddatalibrary/resources/space_env_observation/space_env_observation.py +5 -6
- unifieddatalibrary/resources/stage.py +5 -6
- unifieddatalibrary/resources/star_catalog/star_catalog.py +5 -6
- unifieddatalibrary/resources/state_vector/state_vector.py +7 -8
- unifieddatalibrary/resources/status.py +5 -6
- unifieddatalibrary/resources/substatus.py +5 -6
- unifieddatalibrary/resources/supporting_data/query_help.py +6 -7
- unifieddatalibrary/resources/surface.py +5 -6
- unifieddatalibrary/resources/surface_obstruction.py +5 -6
- unifieddatalibrary/resources/swir/swir.py +5 -6
- unifieddatalibrary/resources/tai_utc/tai_utc.py +5 -6
- unifieddatalibrary/resources/track/track.py +5 -6
- unifieddatalibrary/resources/track_details/track_details.py +5 -6
- unifieddatalibrary/resources/track_route/track_route.py +5 -6
- unifieddatalibrary/resources/transponder.py +5 -6
- unifieddatalibrary/resources/vessel.py +5 -6
- unifieddatalibrary/resources/video/video.py +5 -6
- unifieddatalibrary/resources/weather_data/weather_data.py +5 -6
- unifieddatalibrary/resources/weather_report/weather_report.py +5 -6
- unifieddatalibrary/types/__init__.py +200 -0
- unifieddatalibrary/types/ai_queryhelp_response.py +63 -0
- unifieddatalibrary/types/air_event_queryhelp_response.py +63 -0
- unifieddatalibrary/types/air_load_plan_queryhelp_response.py +63 -0
- unifieddatalibrary/types/air_operations/__init__.py +1 -0
- unifieddatalibrary/types/air_operations/air_tasking_order_query_help_response.py +63 -0
- unifieddatalibrary/types/air_operations/diplomatic_clearance_unvalidated_publish_params.py +4 -4
- unifieddatalibrary/types/air_operations/diplomaticclearance_abridged.py +4 -4
- unifieddatalibrary/types/air_operations/diplomaticclearance_full.py +4 -4
- unifieddatalibrary/types/air_transport_mission_queryhelp_response.py +63 -0
- unifieddatalibrary/types/aircraft_queryhelp_response.py +63 -0
- unifieddatalibrary/types/aircraft_sorty_queryhelp_response.py +63 -0
- unifieddatalibrary/types/aircraft_status_queryhelp_response.py +63 -0
- unifieddatalibrary/types/aircraft_status_remark_queryhelp_response.py +63 -0
- unifieddatalibrary/types/airfield_queryhelp_response.py +63 -0
- unifieddatalibrary/types/airfield_slot_consumption_queryhelp_response.py +63 -0
- unifieddatalibrary/types/airfield_slot_queryhelp_response.py +63 -0
- unifieddatalibrary/types/airfield_status_queryhelp_response.py +63 -0
- unifieddatalibrary/types/airspace_control_order_query_help_response.py +63 -0
- unifieddatalibrary/types/analytic_imagery_full.py +272 -1
- unifieddatalibrary/types/analytic_imagery_history_response.py +2 -2
- unifieddatalibrary/types/analytic_imagery_queryhelp_response.py +63 -0
- unifieddatalibrary/types/analytic_imagery_tuple_response.py +2 -2
- unifieddatalibrary/types/antenna_queryhelp_response.py +63 -0
- unifieddatalibrary/types/attitude_data_query_help_response.py +63 -0
- unifieddatalibrary/types/attitude_set_query_help_response.py +63 -0
- unifieddatalibrary/types/aviation_risk_management_query_help_response.py +63 -0
- unifieddatalibrary/types/battery_queryhelp_response.py +63 -0
- unifieddatalibrary/types/beam_contour_query_help_response.py +63 -0
- unifieddatalibrary/types/beam_query_help_response.py +63 -0
- unifieddatalibrary/types/bus_query_help_response.py +63 -0
- unifieddatalibrary/types/channel_queryhelp_response.py +63 -0
- unifieddatalibrary/types/collect_request_abridged.py +3 -1
- unifieddatalibrary/types/collect_request_create_bulk_params.py +3 -1
- unifieddatalibrary/types/collect_request_create_params.py +3 -1
- unifieddatalibrary/types/collect_request_query_help_response.py +63 -0
- unifieddatalibrary/types/collect_request_unvalidated_publish_params.py +3 -1
- unifieddatalibrary/types/collect_response_query_help_response.py +63 -0
- unifieddatalibrary/types/comm_queryhelp_response.py +63 -0
- unifieddatalibrary/types/conjunction_abridged.py +6 -2
- unifieddatalibrary/types/conjunction_create_bulk_params.py +6 -2
- unifieddatalibrary/types/conjunction_create_udl_params.py +6 -2
- unifieddatalibrary/types/conjunction_full.py +6 -2
- unifieddatalibrary/types/conjunction_queryhelp_response.py +63 -0
- unifieddatalibrary/types/conjunction_unvalidated_publish_params.py +6 -2
- unifieddatalibrary/types/country_queryhelp_response.py +63 -0
- unifieddatalibrary/types/crew_queryhelp_response.py +63 -0
- unifieddatalibrary/types/diff_of_arrival_queryhelp_response.py +63 -0
- unifieddatalibrary/types/diplomatic_clearance/__init__.py +1 -0
- unifieddatalibrary/types/diplomatic_clearance/country_create_bulk_params.py +4 -4
- unifieddatalibrary/types/diplomatic_clearance/country_create_params.py +4 -4
- unifieddatalibrary/types/diplomatic_clearance/country_list_response.py +4 -4
- unifieddatalibrary/types/diplomatic_clearance/country_query_help_response.py +63 -0
- unifieddatalibrary/types/diplomatic_clearance/country_retrieve_response.py +4 -4
- unifieddatalibrary/types/diplomatic_clearance/country_tuple_response.py +4 -4
- unifieddatalibrary/types/diplomatic_clearance/country_unvalidated_publish_params.py +4 -4
- unifieddatalibrary/types/diplomatic_clearance/country_update_params.py +4 -4
- unifieddatalibrary/types/diplomatic_clearance_create_bulk_params.py +4 -4
- unifieddatalibrary/types/diplomatic_clearance_create_params.py +4 -4
- unifieddatalibrary/types/diplomatic_clearance_queryhelp_response.py +63 -0
- unifieddatalibrary/types/diplomatic_clearance_update_params.py +4 -4
- unifieddatalibrary/types/drift_history_queryhelp_response.py +63 -0
- unifieddatalibrary/types/dropzone_query_help_response.py +63 -0
- unifieddatalibrary/types/effect_request_query_help_response.py +63 -0
- unifieddatalibrary/types/effect_response_query_help_response.py +63 -0
- unifieddatalibrary/types/elset_query_current_elset_help_response.py +63 -0
- unifieddatalibrary/types/elset_queryhelp_response.py +63 -0
- unifieddatalibrary/types/emitter_geolocation_query_help_response.py +63 -0
- unifieddatalibrary/types/engine_queryhelp_response.py +63 -0
- unifieddatalibrary/types/entity_abridged.py +13 -2
- unifieddatalibrary/types/entity_create_params.py +2 -1
- unifieddatalibrary/types/entity_full.py +13 -2
- unifieddatalibrary/types/entity_get_all_types_response.py +4 -3875
- unifieddatalibrary/types/entity_ingest_param.py +2 -1
- unifieddatalibrary/types/entity_query_help_response.py +63 -0
- unifieddatalibrary/types/entity_update_params.py +2 -1
- unifieddatalibrary/types/eop_queryhelp_response.py +63 -0
- unifieddatalibrary/types/ephemeris_queryhelp_response.py +63 -0
- unifieddatalibrary/types/ephemeris_set.py +3 -1
- unifieddatalibrary/types/ephemeris_set_abridged.py +3 -1
- unifieddatalibrary/types/ephemeris_set_create_params.py +3 -1
- unifieddatalibrary/types/ephemeris_set_queryhelp_response.py +63 -0
- unifieddatalibrary/types/ephemeris_unvalidated_publish_params.py +3 -1
- unifieddatalibrary/types/equipment_query_help_response.py +63 -0
- unifieddatalibrary/types/equipment_remark_query_help_response.py +63 -0
- unifieddatalibrary/types/evac_query_help_response.py +63 -0
- unifieddatalibrary/types/event_evolution_queryhelp_response.py +63 -0
- unifieddatalibrary/types/feature_assessment_query_help_response.py +63 -0
- unifieddatalibrary/types/flightplan_queryhelp_response.py +63 -0
- unifieddatalibrary/types/geo_status_queryhelp_response.py +63 -0
- unifieddatalibrary/types/global_atmospheric_model_query_help_response.py +63 -0
- unifieddatalibrary/types/gnss_observationset_queryhelp_response.py +63 -0
- unifieddatalibrary/types/gnss_rawif_queryhelp_response.py +63 -0
- unifieddatalibrary/types/ground_imagery_queryhelp_response.py +63 -0
- unifieddatalibrary/types/h3_geo_hex_cell_queryhelp_response.py +63 -0
- unifieddatalibrary/types/h3_geo_queryhelp_response.py +63 -0
- unifieddatalibrary/types/hazard_queryhelp_response.py +63 -0
- unifieddatalibrary/types/ion_oobservation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/ir_queryhelp_response.py +63 -0
- unifieddatalibrary/types/isr_collection_queryhelp_response.py +63 -0
- unifieddatalibrary/types/item_queryhelp_response.py +63 -0
- unifieddatalibrary/types/item_tracking_queryhelp_response.py +63 -0
- unifieddatalibrary/types/launch_detection_queryhelp_response.py +63 -0
- unifieddatalibrary/types/launch_event_queryhelp_response.py +63 -0
- unifieddatalibrary/types/launch_site_queryhelp_response.py +63 -0
- unifieddatalibrary/types/launch_vehicle_queryhelp_response.py +63 -0
- unifieddatalibrary/types/link_status/__init__.py +1 -0
- unifieddatalibrary/types/link_status/datalink_queryhelp_response.py +63 -0
- unifieddatalibrary/types/link_status_queryhelp_response.py +63 -0
- unifieddatalibrary/types/location_queryhelp_response.py +63 -0
- unifieddatalibrary/types/logistics_support_queryhelp_response.py +63 -0
- unifieddatalibrary/types/maneuver_create_bulk_params.py +6 -2
- unifieddatalibrary/types/maneuver_create_params.py +6 -2
- unifieddatalibrary/types/maneuver_get_response.py +6 -2
- unifieddatalibrary/types/maneuver_list_response.py +6 -2
- unifieddatalibrary/types/maneuver_queryhelp_response.py +63 -0
- unifieddatalibrary/types/maneuver_tuple_response.py +6 -2
- unifieddatalibrary/types/maneuver_unvalidated_publish_params.py +6 -2
- unifieddatalibrary/types/maneuvers/history_list_response.py +6 -2
- unifieddatalibrary/types/manifold_queryhelp_response.py +63 -0
- unifieddatalibrary/types/manifoldelset_queryhelp_response.py +63 -0
- unifieddatalibrary/types/missile_track_create_bulk_params.py +6 -4
- unifieddatalibrary/types/missile_track_list_response.py +6 -4
- unifieddatalibrary/types/missile_track_queryhelp_response.py +63 -0
- unifieddatalibrary/types/missile_track_tuple_response.py +6 -4
- unifieddatalibrary/types/missile_track_unvalidated_publish_params.py +6 -4
- unifieddatalibrary/types/missile_tracks/history_query_response.py +6 -4
- unifieddatalibrary/types/mission_assignment_queryhelp_response.py +63 -0
- unifieddatalibrary/types/mti_queryhelp_response.py +63 -0
- unifieddatalibrary/types/navigation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/navigational_obstruction_queryhelp_response.py +63 -0
- unifieddatalibrary/types/notification_queryhelp_response.py +63 -0
- unifieddatalibrary/types/object_of_interest_queryhelp_response.py +63 -0
- unifieddatalibrary/types/observations/__init__.py +8 -0
- unifieddatalibrary/types/observations/ecpsdr_query_help_response.py +63 -0
- unifieddatalibrary/types/observations/eo_observation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/observations/monoradar_queryhelp_response.py +63 -0
- unifieddatalibrary/types/observations/passive_radar_observation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/observations/radarobservation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/observations/rf_observation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/onboardnavigation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/onorbit_queryhelp_response.py +63 -0
- unifieddatalibrary/types/onorbitevent_queryhelp_response.py +63 -0
- unifieddatalibrary/types/onorbitlist_queryhelp_response.py +63 -0
- unifieddatalibrary/types/onorbitthrusterstatus_queryhelp_response.py +63 -0
- unifieddatalibrary/types/operatingunit_queryhelp_response.py +63 -0
- unifieddatalibrary/types/operatingunitremark_queryhelp_response.py +63 -0
- unifieddatalibrary/types/orbitdetermination/history_list_response.py +3 -1
- unifieddatalibrary/types/orbitdetermination_create_bulk_params.py +3 -1
- unifieddatalibrary/types/orbitdetermination_create_params.py +3 -1
- unifieddatalibrary/types/orbitdetermination_get_response.py +3 -1
- unifieddatalibrary/types/orbitdetermination_list_response.py +3 -1
- unifieddatalibrary/types/orbitdetermination_queryhelp_response.py +63 -0
- unifieddatalibrary/types/orbitdetermination_tuple_response.py +3 -1
- unifieddatalibrary/types/orbitdetermination_unvalidated_publish_params.py +3 -1
- unifieddatalibrary/types/orbittrack_queryhelp_response.py +63 -0
- unifieddatalibrary/types/organization_queryhelp_response.py +63 -0
- unifieddatalibrary/types/personnelrecovery_queryhelp_response.py +63 -0
- unifieddatalibrary/types/poi_queryhelp_response.py +63 -0
- unifieddatalibrary/types/port_queryhelp_response.py +63 -0
- unifieddatalibrary/types/rf_band_queryhelp_response.py +63 -0
- unifieddatalibrary/types/rf_band_type_queryhelp_response.py +63 -0
- unifieddatalibrary/types/rf_emitter_detail_queryhelp_response.py +63 -0
- unifieddatalibrary/types/rf_emitter_queryhelp_response.py +63 -0
- unifieddatalibrary/types/route_stat_query_help_response.py +63 -0
- unifieddatalibrary/types/sar_observation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sc_file_upload_params.py +6 -0
- unifieddatalibrary/types/scientific_queryhelp_response.py +63 -0
- unifieddatalibrary/types/scs/folder_create_params.py +3 -0
- unifieddatalibrary/types/scs/folder_update_params.py +2 -0
- unifieddatalibrary/types/scs/path_create_params.py +6 -0
- unifieddatalibrary/types/scs/scs_entity.py +2 -0
- unifieddatalibrary/types/scs/v2_file_upload_params.py +6 -0
- unifieddatalibrary/types/scs/v2_folder_create_params.py +5 -0
- unifieddatalibrary/types/scs/v2_update_params.py +5 -0
- unifieddatalibrary/types/sensor/__init__.py +1 -0
- unifieddatalibrary/types/sensor/calibration/history_query_response.py +64 -53
- unifieddatalibrary/types/sensor/calibration_create_bulk_params.py +64 -53
- unifieddatalibrary/types/sensor/calibration_create_params.py +64 -53
- unifieddatalibrary/types/sensor/calibration_query_help_response.py +63 -0
- unifieddatalibrary/types/sensor/calibration_query_response.py +64 -53
- unifieddatalibrary/types/sensor/calibration_retrieve_response.py +64 -53
- unifieddatalibrary/types/sensor/calibration_tuple_response.py +64 -53
- unifieddatalibrary/types/sensor/calibration_unvalidated_publish_params.py +64 -53
- unifieddatalibrary/types/sensor_create_params.py +349 -4
- unifieddatalibrary/types/sensor_get_response.py +362 -5
- unifieddatalibrary/types/sensor_list_response.py +362 -5
- unifieddatalibrary/types/sensor_maintenance_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sensor_observation_type_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sensor_plan/history_retrieve_response.py +3 -1
- unifieddatalibrary/types/sensor_plan_create_params.py +3 -1
- unifieddatalibrary/types/sensor_plan_get_response.py +3 -1
- unifieddatalibrary/types/sensor_plan_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sensor_plan_tuple_response.py +3 -1
- unifieddatalibrary/types/sensor_plan_unvalidated_publish_params.py +3 -1
- unifieddatalibrary/types/sensor_plan_update_params.py +3 -1
- unifieddatalibrary/types/sensor_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sensor_tuple_response.py +362 -5
- unifieddatalibrary/types/sensor_type_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sensor_update_params.py +349 -4
- unifieddatalibrary/types/sera_data_comm_detail_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sera_data_early_warning_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sera_data_navigation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/seradata_optical_payload_queryhelp_response.py +63 -0
- unifieddatalibrary/types/seradata_radar_payload_queryhelp_response.py +63 -0
- unifieddatalibrary/types/seradata_sigint_payload_queryhelp_response.py +63 -0
- unifieddatalibrary/types/seradata_spacecraft_detail_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sgi_queryhelp_response.py +63 -0
- unifieddatalibrary/types/shared/collect_request_full.py +3 -1
- unifieddatalibrary/types/shared/file_data.py +2 -0
- unifieddatalibrary/types/shared/onorbit_full.py +13 -2
- unifieddatalibrary/types/shared_params/file_data.py +2 -0
- unifieddatalibrary/types/sigact_queryhelp_response.py +63 -0
- unifieddatalibrary/types/site/__init__.py +1 -0
- unifieddatalibrary/types/site/operation_query_help_response.py +63 -0
- unifieddatalibrary/types/site_queryhelp_response.py +63 -0
- unifieddatalibrary/types/site_remark_queryhelp_response.py +63 -0
- unifieddatalibrary/types/site_status_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sky_imagery_queryhelp_response.py +63 -0
- unifieddatalibrary/types/soi_observation_set_queryhelp_response.py +63 -0
- unifieddatalibrary/types/solar_array_queryhelp_response.py +63 -0
- unifieddatalibrary/types/sortie_ppr_queryhelp_response.py +63 -0
- unifieddatalibrary/types/space_env_observation_queryhelp_response.py +63 -0
- unifieddatalibrary/types/stage_queryhelp_response.py +63 -0
- unifieddatalibrary/types/star_catalog_queryhelp_response.py +63 -0
- unifieddatalibrary/types/state_vector_abridged.py +3 -1
- unifieddatalibrary/types/state_vector_create_params.py +3 -1
- unifieddatalibrary/types/state_vector_full.py +3 -1
- unifieddatalibrary/types/state_vector_ingest_param.py +3 -1
- unifieddatalibrary/types/state_vector_queryhelp_response.py +63 -0
- unifieddatalibrary/types/status_queryhelp_response.py +63 -0
- unifieddatalibrary/types/substatus_queryhelp_response.py +63 -0
- unifieddatalibrary/types/supporting_data/__init__.py +1 -0
- unifieddatalibrary/types/supporting_data/query_help_retrieve_response.py +63 -0
- unifieddatalibrary/types/surface_obstruction_queryhelp_response.py +63 -0
- unifieddatalibrary/types/surface_queryhelp_response.py +63 -0
- unifieddatalibrary/types/swir_queryhelp_response.py +63 -0
- unifieddatalibrary/types/tai_utc_queryhelp_response.py +63 -0
- unifieddatalibrary/types/track/track_full.py +26 -0
- unifieddatalibrary/types/track_create_bulk_params.py +26 -0
- unifieddatalibrary/types/track_detail_queryhelp_response.py +63 -0
- unifieddatalibrary/types/track_list_response.py +26 -0
- unifieddatalibrary/types/track_queryhelp_response.py +63 -0
- unifieddatalibrary/types/track_route_queryhelp_response.py +63 -0
- unifieddatalibrary/types/track_unvalidated_publish_params.py +26 -0
- unifieddatalibrary/types/transponder_queryhelp_response.py +63 -0
- unifieddatalibrary/types/vessel_queryhelp_response.py +63 -0
- unifieddatalibrary/types/video_queryhelp_response.py +63 -0
- unifieddatalibrary/types/weather_data_queryhelp_response.py +63 -0
- unifieddatalibrary/types/weather_report_queryhelp_response.py +63 -0
- {udl_sdk-0.1.0a10.dist-info → udl_sdk-0.1.0a12.dist-info}/WHEEL +0 -0
- {udl_sdk-0.1.0a10.dist-info → udl_sdk-0.1.0a12.dist-info}/licenses/LICENSE +0 -0
@@ -40,6 +40,7 @@ from .antenna_details import (
|
|
40
40
|
from ...types.shared.onorbit_full import OnorbitFull
|
41
41
|
from ...types.onorbit_list_response import OnorbitListResponse
|
42
42
|
from ...types.onorbit_tuple_response import OnorbitTupleResponse
|
43
|
+
from ...types.onorbit_queryhelp_response import OnorbitQueryhelpResponse
|
43
44
|
from ...types.onorbit_get_signature_response import OnorbitGetSignatureResponse
|
44
45
|
|
45
46
|
__all__ = ["OnorbitResource", "AsyncOnorbitResource"]
|
@@ -612,18 +613,17 @@ class OnorbitResource(SyncAPIResource):
|
|
612
613
|
extra_query: Query | None = None,
|
613
614
|
extra_body: Body | None = None,
|
614
615
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
615
|
-
) ->
|
616
|
+
) -> OnorbitQueryhelpResponse:
|
616
617
|
"""
|
617
618
|
Service operation to provide detailed information on available dynamic query
|
618
619
|
parameters for a particular data type.
|
619
620
|
"""
|
620
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
621
621
|
return self._get(
|
622
622
|
"/udl/onorbit/queryhelp",
|
623
623
|
options=make_request_options(
|
624
624
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
625
625
|
),
|
626
|
-
cast_to=
|
626
|
+
cast_to=OnorbitQueryhelpResponse,
|
627
627
|
)
|
628
628
|
|
629
629
|
def tuple(
|
@@ -1250,18 +1250,17 @@ class AsyncOnorbitResource(AsyncAPIResource):
|
|
1250
1250
|
extra_query: Query | None = None,
|
1251
1251
|
extra_body: Body | None = None,
|
1252
1252
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1253
|
-
) ->
|
1253
|
+
) -> OnorbitQueryhelpResponse:
|
1254
1254
|
"""
|
1255
1255
|
Service operation to provide detailed information on available dynamic query
|
1256
1256
|
parameters for a particular data type.
|
1257
1257
|
"""
|
1258
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1259
1258
|
return await self._get(
|
1260
1259
|
"/udl/onorbit/queryhelp",
|
1261
1260
|
options=make_request_options(
|
1262
1261
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1263
1262
|
),
|
1264
|
-
cast_to=
|
1263
|
+
cast_to=OnorbitQueryhelpResponse,
|
1265
1264
|
)
|
1266
1265
|
|
1267
1266
|
async def tuple(
|
@@ -31,6 +31,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
31
31
|
from ..types.onorbitevent_get_response import OnorbiteventGetResponse
|
32
32
|
from ..types.onorbitevent_list_response import OnorbiteventListResponse
|
33
33
|
from ..types.onorbitevent_tuple_response import OnorbiteventTupleResponse
|
34
|
+
from ..types.onorbitevent_queryhelp_response import OnorbiteventQueryhelpResponse
|
34
35
|
|
35
36
|
__all__ = ["OnorbiteventResource", "AsyncOnorbiteventResource"]
|
36
37
|
|
@@ -783,18 +784,17 @@ class OnorbiteventResource(SyncAPIResource):
|
|
783
784
|
extra_query: Query | None = None,
|
784
785
|
extra_body: Body | None = None,
|
785
786
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
786
|
-
) ->
|
787
|
+
) -> OnorbiteventQueryhelpResponse:
|
787
788
|
"""
|
788
789
|
Service operation to provide detailed information on available dynamic query
|
789
790
|
parameters for a particular data type.
|
790
791
|
"""
|
791
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
792
792
|
return self._get(
|
793
793
|
"/udl/onorbitevent/queryhelp",
|
794
794
|
options=make_request_options(
|
795
795
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
796
796
|
),
|
797
|
-
cast_to=
|
797
|
+
cast_to=OnorbiteventQueryhelpResponse,
|
798
798
|
)
|
799
799
|
|
800
800
|
def tuple(
|
@@ -1602,18 +1602,17 @@ class AsyncOnorbiteventResource(AsyncAPIResource):
|
|
1602
1602
|
extra_query: Query | None = None,
|
1603
1603
|
extra_body: Body | None = None,
|
1604
1604
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1605
|
-
) ->
|
1605
|
+
) -> OnorbiteventQueryhelpResponse:
|
1606
1606
|
"""
|
1607
1607
|
Service operation to provide detailed information on available dynamic query
|
1608
1608
|
parameters for a particular data type.
|
1609
1609
|
"""
|
1610
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1611
1610
|
return await self._get(
|
1612
1611
|
"/udl/onorbitevent/queryhelp",
|
1613
1612
|
options=make_request_options(
|
1614
1613
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1615
1614
|
),
|
1616
|
-
cast_to=
|
1615
|
+
cast_to=OnorbiteventQueryhelpResponse,
|
1617
1616
|
)
|
1618
1617
|
|
1619
1618
|
async def tuple(
|
@@ -30,6 +30,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
30
30
|
from ..types.onorbitlist_get_response import OnorbitlistGetResponse
|
31
31
|
from ..types.onorbitlist_list_response import OnorbitlistListResponse
|
32
32
|
from ..types.onorbitlist_tuple_response import OnorbitlistTupleResponse
|
33
|
+
from ..types.onorbitlist_queryhelp_response import OnorbitlistQueryhelpResponse
|
33
34
|
|
34
35
|
__all__ = ["OnorbitlistResource", "AsyncOnorbitlistResource"]
|
35
36
|
|
@@ -418,18 +419,17 @@ class OnorbitlistResource(SyncAPIResource):
|
|
418
419
|
extra_query: Query | None = None,
|
419
420
|
extra_body: Body | None = None,
|
420
421
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
421
|
-
) ->
|
422
|
+
) -> OnorbitlistQueryhelpResponse:
|
422
423
|
"""
|
423
424
|
Service operation to provide detailed information on available dynamic query
|
424
425
|
parameters for a particular data type.
|
425
426
|
"""
|
426
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
427
427
|
return self._get(
|
428
428
|
"/udl/onorbitlist/queryhelp",
|
429
429
|
options=make_request_options(
|
430
430
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
431
431
|
),
|
432
|
-
cast_to=
|
432
|
+
cast_to=OnorbitlistQueryhelpResponse,
|
433
433
|
)
|
434
434
|
|
435
435
|
def tuple(
|
@@ -873,18 +873,17 @@ class AsyncOnorbitlistResource(AsyncAPIResource):
|
|
873
873
|
extra_query: Query | None = None,
|
874
874
|
extra_body: Body | None = None,
|
875
875
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
876
|
-
) ->
|
876
|
+
) -> OnorbitlistQueryhelpResponse:
|
877
877
|
"""
|
878
878
|
Service operation to provide detailed information on available dynamic query
|
879
879
|
parameters for a particular data type.
|
880
880
|
"""
|
881
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
882
881
|
return await self._get(
|
883
882
|
"/udl/onorbitlist/queryhelp",
|
884
883
|
options=make_request_options(
|
885
884
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
886
885
|
),
|
887
|
-
cast_to=
|
886
|
+
cast_to=OnorbitlistQueryhelpResponse,
|
888
887
|
)
|
889
888
|
|
890
889
|
async def tuple(
|
@@ -38,6 +38,7 @@ from ...pagination import SyncOffsetPage, AsyncOffsetPage
|
|
38
38
|
from ..._base_client import AsyncPaginator, make_request_options
|
39
39
|
from ...types.onorbitthrusterstatus_list_response import OnorbitthrusterstatusListResponse
|
40
40
|
from ...types.onorbitthrusterstatus_tuple_response import OnorbitthrusterstatusTupleResponse
|
41
|
+
from ...types.onorbitthrusterstatus_queryhelp_response import OnorbitthrusterstatusQueryhelpResponse
|
41
42
|
from ...types.onorbitthrusterstatus.onorbitthrusterstatus_full import OnorbitthrusterstatusFull
|
42
43
|
|
43
44
|
__all__ = ["OnorbitthrusterstatusResource", "AsyncOnorbitthrusterstatusResource"]
|
@@ -462,18 +463,17 @@ class OnorbitthrusterstatusResource(SyncAPIResource):
|
|
462
463
|
extra_query: Query | None = None,
|
463
464
|
extra_body: Body | None = None,
|
464
465
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
465
|
-
) ->
|
466
|
+
) -> OnorbitthrusterstatusQueryhelpResponse:
|
466
467
|
"""
|
467
468
|
Service operation to provide detailed information on available dynamic query
|
468
469
|
parameters for a particular data type.
|
469
470
|
"""
|
470
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
471
471
|
return self._get(
|
472
472
|
"/udl/onorbitthrusterstatus/queryhelp",
|
473
473
|
options=make_request_options(
|
474
474
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
475
475
|
),
|
476
|
-
cast_to=
|
476
|
+
cast_to=OnorbitthrusterstatusQueryhelpResponse,
|
477
477
|
)
|
478
478
|
|
479
479
|
def tuple(
|
@@ -966,18 +966,17 @@ class AsyncOnorbitthrusterstatusResource(AsyncAPIResource):
|
|
966
966
|
extra_query: Query | None = None,
|
967
967
|
extra_body: Body | None = None,
|
968
968
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
969
|
-
) ->
|
969
|
+
) -> OnorbitthrusterstatusQueryhelpResponse:
|
970
970
|
"""
|
971
971
|
Service operation to provide detailed information on available dynamic query
|
972
972
|
parameters for a particular data type.
|
973
973
|
"""
|
974
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
975
974
|
return await self._get(
|
976
975
|
"/udl/onorbitthrusterstatus/queryhelp",
|
977
976
|
options=make_request_options(
|
978
977
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
979
978
|
),
|
980
|
-
cast_to=
|
979
|
+
cast_to=OnorbitthrusterstatusQueryhelpResponse,
|
981
980
|
)
|
982
981
|
|
983
982
|
async def tuple(
|
@@ -31,6 +31,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
31
31
|
from ..types.operatingunit_get_response import OperatingunitGetResponse
|
32
32
|
from ..types.operatingunit_list_response import OperatingunitListResponse
|
33
33
|
from ..types.operatingunit_tuple_response import OperatingunitTupleResponse
|
34
|
+
from ..types.operatingunit_queryhelp_response import OperatingunitQueryhelpResponse
|
34
35
|
|
35
36
|
__all__ = ["OperatingunitResource", "AsyncOperatingunitResource"]
|
36
37
|
|
@@ -1167,18 +1168,17 @@ class OperatingunitResource(SyncAPIResource):
|
|
1167
1168
|
extra_query: Query | None = None,
|
1168
1169
|
extra_body: Body | None = None,
|
1169
1170
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1170
|
-
) ->
|
1171
|
+
) -> OperatingunitQueryhelpResponse:
|
1171
1172
|
"""
|
1172
1173
|
Service operation to provide detailed information on available dynamic query
|
1173
1174
|
parameters for a particular data type.
|
1174
1175
|
"""
|
1175
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1176
1176
|
return self._get(
|
1177
1177
|
"/udl/operatingunit/queryhelp",
|
1178
1178
|
options=make_request_options(
|
1179
1179
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1180
1180
|
),
|
1181
|
-
cast_to=
|
1181
|
+
cast_to=OperatingunitQueryhelpResponse,
|
1182
1182
|
)
|
1183
1183
|
|
1184
1184
|
def tuple(
|
@@ -2370,18 +2370,17 @@ class AsyncOperatingunitResource(AsyncAPIResource):
|
|
2370
2370
|
extra_query: Query | None = None,
|
2371
2371
|
extra_body: Body | None = None,
|
2372
2372
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
2373
|
-
) ->
|
2373
|
+
) -> OperatingunitQueryhelpResponse:
|
2374
2374
|
"""
|
2375
2375
|
Service operation to provide detailed information on available dynamic query
|
2376
2376
|
parameters for a particular data type.
|
2377
2377
|
"""
|
2378
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
2379
2378
|
return await self._get(
|
2380
2379
|
"/udl/operatingunit/queryhelp",
|
2381
2380
|
options=make_request_options(
|
2382
2381
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
2383
2382
|
),
|
2384
|
-
cast_to=
|
2383
|
+
cast_to=OperatingunitQueryhelpResponse,
|
2385
2384
|
)
|
2386
2385
|
|
2387
2386
|
async def tuple(
|
@@ -30,6 +30,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
30
30
|
from ..types.operatingunitremark_get_response import OperatingunitremarkGetResponse
|
31
31
|
from ..types.operatingunitremark_list_response import OperatingunitremarkListResponse
|
32
32
|
from ..types.operatingunitremark_tuple_response import OperatingunitremarkTupleResponse
|
33
|
+
from ..types.operatingunitremark_queryhelp_response import OperatingunitremarkQueryhelpResponse
|
33
34
|
|
34
35
|
__all__ = ["OperatingunitremarkResource", "AsyncOperatingunitremarkResource"]
|
35
36
|
|
@@ -339,18 +340,17 @@ class OperatingunitremarkResource(SyncAPIResource):
|
|
339
340
|
extra_query: Query | None = None,
|
340
341
|
extra_body: Body | None = None,
|
341
342
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
342
|
-
) ->
|
343
|
+
) -> OperatingunitremarkQueryhelpResponse:
|
343
344
|
"""
|
344
345
|
Service operation to provide detailed information on available dynamic query
|
345
346
|
parameters for a particular data type.
|
346
347
|
"""
|
347
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
348
348
|
return self._get(
|
349
349
|
"/udl/operatingunitremark/queryhelp",
|
350
350
|
options=make_request_options(
|
351
351
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
352
352
|
),
|
353
|
-
cast_to=
|
353
|
+
cast_to=OperatingunitremarkQueryhelpResponse,
|
354
354
|
)
|
355
355
|
|
356
356
|
def tuple(
|
@@ -715,18 +715,17 @@ class AsyncOperatingunitremarkResource(AsyncAPIResource):
|
|
715
715
|
extra_query: Query | None = None,
|
716
716
|
extra_body: Body | None = None,
|
717
717
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
718
|
-
) ->
|
718
|
+
) -> OperatingunitremarkQueryhelpResponse:
|
719
719
|
"""
|
720
720
|
Service operation to provide detailed information on available dynamic query
|
721
721
|
parameters for a particular data type.
|
722
722
|
"""
|
723
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
724
723
|
return await self._get(
|
725
724
|
"/udl/operatingunitremark/queryhelp",
|
726
725
|
options=make_request_options(
|
727
726
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
728
727
|
),
|
729
|
-
cast_to=
|
728
|
+
cast_to=OperatingunitremarkQueryhelpResponse,
|
730
729
|
)
|
731
730
|
|
732
731
|
async def tuple(
|
@@ -40,6 +40,7 @@ from ..._base_client import AsyncPaginator, make_request_options
|
|
40
40
|
from ...types.orbitdetermination_get_response import OrbitdeterminationGetResponse
|
41
41
|
from ...types.orbitdetermination_list_response import OrbitdeterminationListResponse
|
42
42
|
from ...types.orbitdetermination_tuple_response import OrbitdeterminationTupleResponse
|
43
|
+
from ...types.orbitdetermination_queryhelp_response import OrbitdeterminationQueryhelpResponse
|
43
44
|
|
44
45
|
__all__ = ["OrbitdeterminationResource", "AsyncOrbitdeterminationResource"]
|
45
46
|
|
@@ -544,18 +545,17 @@ class OrbitdeterminationResource(SyncAPIResource):
|
|
544
545
|
extra_query: Query | None = None,
|
545
546
|
extra_body: Body | None = None,
|
546
547
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
547
|
-
) ->
|
548
|
+
) -> OrbitdeterminationQueryhelpResponse:
|
548
549
|
"""
|
549
550
|
Service operation to provide detailed information on available dynamic query
|
550
551
|
parameters for a particular data type.
|
551
552
|
"""
|
552
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
553
553
|
return self._get(
|
554
554
|
"/udl/orbitdetermination/queryhelp",
|
555
555
|
options=make_request_options(
|
556
556
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
557
557
|
),
|
558
|
-
cast_to=
|
558
|
+
cast_to=OrbitdeterminationQueryhelpResponse,
|
559
559
|
)
|
560
560
|
|
561
561
|
def tuple(
|
@@ -1165,18 +1165,17 @@ class AsyncOrbitdeterminationResource(AsyncAPIResource):
|
|
1165
1165
|
extra_query: Query | None = None,
|
1166
1166
|
extra_body: Body | None = None,
|
1167
1167
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1168
|
-
) ->
|
1168
|
+
) -> OrbitdeterminationQueryhelpResponse:
|
1169
1169
|
"""
|
1170
1170
|
Service operation to provide detailed information on available dynamic query
|
1171
1171
|
parameters for a particular data type.
|
1172
1172
|
"""
|
1173
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1174
1173
|
return await self._get(
|
1175
1174
|
"/udl/orbitdetermination/queryhelp",
|
1176
1175
|
options=make_request_options(
|
1177
1176
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1178
1177
|
),
|
1179
|
-
cast_to=
|
1178
|
+
cast_to=OrbitdeterminationQueryhelpResponse,
|
1180
1179
|
)
|
1181
1180
|
|
1182
1181
|
async def tuple(
|
@@ -36,6 +36,7 @@ from ...pagination import SyncOffsetPage, AsyncOffsetPage
|
|
36
36
|
from ..._base_client import AsyncPaginator, make_request_options
|
37
37
|
from ...types.orbittrack_list_response import OrbittrackListResponse
|
38
38
|
from ...types.orbittrack_tuple_response import OrbittrackTupleResponse
|
39
|
+
from ...types.orbittrack_queryhelp_response import OrbittrackQueryhelpResponse
|
39
40
|
|
40
41
|
__all__ = ["OrbittrackResource", "AsyncOrbittrackResource"]
|
41
42
|
|
@@ -213,18 +214,17 @@ class OrbittrackResource(SyncAPIResource):
|
|
213
214
|
extra_query: Query | None = None,
|
214
215
|
extra_body: Body | None = None,
|
215
216
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
216
|
-
) ->
|
217
|
+
) -> OrbittrackQueryhelpResponse:
|
217
218
|
"""
|
218
219
|
Service operation to provide detailed information on available dynamic query
|
219
220
|
parameters for a particular data type.
|
220
221
|
"""
|
221
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
222
222
|
return self._get(
|
223
223
|
"/udl/orbittrack/queryhelp",
|
224
224
|
options=make_request_options(
|
225
225
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
226
226
|
),
|
227
|
-
cast_to=
|
227
|
+
cast_to=OrbittrackQueryhelpResponse,
|
228
228
|
)
|
229
229
|
|
230
230
|
def tuple(
|
@@ -498,18 +498,17 @@ class AsyncOrbittrackResource(AsyncAPIResource):
|
|
498
498
|
extra_query: Query | None = None,
|
499
499
|
extra_body: Body | None = None,
|
500
500
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
501
|
-
) ->
|
501
|
+
) -> OrbittrackQueryhelpResponse:
|
502
502
|
"""
|
503
503
|
Service operation to provide detailed information on available dynamic query
|
504
504
|
parameters for a particular data type.
|
505
505
|
"""
|
506
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
507
506
|
return await self._get(
|
508
507
|
"/udl/orbittrack/queryhelp",
|
509
508
|
options=make_request_options(
|
510
509
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
511
510
|
),
|
512
|
-
cast_to=
|
511
|
+
cast_to=OrbittrackQueryhelpResponse,
|
513
512
|
)
|
514
513
|
|
515
514
|
async def tuple(
|
@@ -31,6 +31,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
31
31
|
from ..types.organization_full import OrganizationFull
|
32
32
|
from ..types.organization_list_response import OrganizationListResponse
|
33
33
|
from ..types.organization_tuple_response import OrganizationTupleResponse
|
34
|
+
from ..types.organization_queryhelp_response import OrganizationQueryhelpResponse
|
34
35
|
from ..types.organization_get_organization_types_response import OrganizationGetOrganizationTypesResponse
|
35
36
|
from ..types.organization_get_organization_categories_response import OrganizationGetOrganizationCategoriesResponse
|
36
37
|
|
@@ -564,18 +565,17 @@ class OrganizationResource(SyncAPIResource):
|
|
564
565
|
extra_query: Query | None = None,
|
565
566
|
extra_body: Body | None = None,
|
566
567
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
567
|
-
) ->
|
568
|
+
) -> OrganizationQueryhelpResponse:
|
568
569
|
"""
|
569
570
|
Service operation to provide detailed information on available dynamic query
|
570
571
|
parameters for a particular data type.
|
571
572
|
"""
|
572
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
573
573
|
return self._get(
|
574
574
|
"/udl/organization/queryhelp",
|
575
575
|
options=make_request_options(
|
576
576
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
577
577
|
),
|
578
|
-
cast_to=
|
578
|
+
cast_to=OrganizationQueryhelpResponse,
|
579
579
|
)
|
580
580
|
|
581
581
|
def tuple(
|
@@ -1162,18 +1162,17 @@ class AsyncOrganizationResource(AsyncAPIResource):
|
|
1162
1162
|
extra_query: Query | None = None,
|
1163
1163
|
extra_body: Body | None = None,
|
1164
1164
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1165
|
-
) ->
|
1165
|
+
) -> OrganizationQueryhelpResponse:
|
1166
1166
|
"""
|
1167
1167
|
Service operation to provide detailed information on available dynamic query
|
1168
1168
|
parameters for a particular data type.
|
1169
1169
|
"""
|
1170
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1171
1170
|
return await self._get(
|
1172
1171
|
"/udl/organization/queryhelp",
|
1173
1172
|
options=make_request_options(
|
1174
1173
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1175
1174
|
),
|
1176
|
-
cast_to=
|
1175
|
+
cast_to=OrganizationQueryhelpResponse,
|
1177
1176
|
)
|
1178
1177
|
|
1179
1178
|
async def tuple(
|
@@ -40,6 +40,7 @@ from ..._base_client import AsyncPaginator, make_request_options
|
|
40
40
|
from ...types.personnel_recovery_full_l import PersonnelRecoveryFullL
|
41
41
|
from ...types.personnelrecovery_list_response import PersonnelrecoveryListResponse
|
42
42
|
from ...types.personnelrecovery_tuple_response import PersonnelrecoveryTupleResponse
|
43
|
+
from ...types.personnelrecovery_queryhelp_response import PersonnelrecoveryQueryhelpResponse
|
43
44
|
|
44
45
|
__all__ = ["PersonnelrecoveryResource", "AsyncPersonnelrecoveryResource"]
|
45
46
|
|
@@ -540,18 +541,17 @@ class PersonnelrecoveryResource(SyncAPIResource):
|
|
540
541
|
extra_query: Query | None = None,
|
541
542
|
extra_body: Body | None = None,
|
542
543
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
543
|
-
) ->
|
544
|
+
) -> PersonnelrecoveryQueryhelpResponse:
|
544
545
|
"""
|
545
546
|
Service operation to provide detailed information on available dynamic query
|
546
547
|
parameters for a particular data type.
|
547
548
|
"""
|
548
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
549
549
|
return self._get(
|
550
550
|
"/udl/personnelrecovery/queryhelp",
|
551
551
|
options=make_request_options(
|
552
552
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
553
553
|
),
|
554
|
-
cast_to=
|
554
|
+
cast_to=PersonnelrecoveryQueryhelpResponse,
|
555
555
|
)
|
556
556
|
|
557
557
|
def tuple(
|
@@ -1112,18 +1112,17 @@ class AsyncPersonnelrecoveryResource(AsyncAPIResource):
|
|
1112
1112
|
extra_query: Query | None = None,
|
1113
1113
|
extra_body: Body | None = None,
|
1114
1114
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1115
|
-
) ->
|
1115
|
+
) -> PersonnelrecoveryQueryhelpResponse:
|
1116
1116
|
"""
|
1117
1117
|
Service operation to provide detailed information on available dynamic query
|
1118
1118
|
parameters for a particular data type.
|
1119
1119
|
"""
|
1120
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1121
1120
|
return await self._get(
|
1122
1121
|
"/udl/personnelrecovery/queryhelp",
|
1123
1122
|
options=make_request_options(
|
1124
1123
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1125
1124
|
),
|
1126
|
-
cast_to=
|
1125
|
+
cast_to=PersonnelrecoveryQueryhelpResponse,
|
1127
1126
|
)
|
1128
1127
|
|
1129
1128
|
async def tuple(
|
@@ -32,6 +32,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
32
32
|
from ..types.poi_get_response import PoiGetResponse
|
33
33
|
from ..types.poi_list_response import PoiListResponse
|
34
34
|
from ..types.poi_tuple_response import PoiTupleResponse
|
35
|
+
from ..types.poi_queryhelp_response import PoiQueryhelpResponse
|
35
36
|
|
36
37
|
__all__ = ["PoiResource", "AsyncPoiResource"]
|
37
38
|
|
@@ -538,18 +539,17 @@ class PoiResource(SyncAPIResource):
|
|
538
539
|
extra_query: Query | None = None,
|
539
540
|
extra_body: Body | None = None,
|
540
541
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
541
|
-
) ->
|
542
|
+
) -> PoiQueryhelpResponse:
|
542
543
|
"""
|
543
544
|
Service operation to provide detailed information on available dynamic query
|
544
545
|
parameters for a particular data type.
|
545
546
|
"""
|
546
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
547
547
|
return self._get(
|
548
548
|
"/udl/poi/queryhelp",
|
549
549
|
options=make_request_options(
|
550
550
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
551
551
|
),
|
552
|
-
cast_to=
|
552
|
+
cast_to=PoiQueryhelpResponse,
|
553
553
|
)
|
554
554
|
|
555
555
|
def tuple(
|
@@ -1151,18 +1151,17 @@ class AsyncPoiResource(AsyncAPIResource):
|
|
1151
1151
|
extra_query: Query | None = None,
|
1152
1152
|
extra_body: Body | None = None,
|
1153
1153
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1154
|
-
) ->
|
1154
|
+
) -> PoiQueryhelpResponse:
|
1155
1155
|
"""
|
1156
1156
|
Service operation to provide detailed information on available dynamic query
|
1157
1157
|
parameters for a particular data type.
|
1158
1158
|
"""
|
1159
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1160
1159
|
return await self._get(
|
1161
1160
|
"/udl/poi/queryhelp",
|
1162
1161
|
options=make_request_options(
|
1163
1162
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1164
1163
|
),
|
1165
|
-
cast_to=
|
1164
|
+
cast_to=PoiQueryhelpResponse,
|
1166
1165
|
)
|
1167
1166
|
|
1168
1167
|
async def tuple(
|
@@ -31,6 +31,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
31
31
|
from ..types.port_get_response import PortGetResponse
|
32
32
|
from ..types.port_list_response import PortListResponse
|
33
33
|
from ..types.port_tuple_response import PortTupleResponse
|
34
|
+
from ..types.port_queryhelp_response import PortQueryhelpResponse
|
34
35
|
|
35
36
|
__all__ = ["PortResource", "AsyncPortResource"]
|
36
37
|
|
@@ -573,18 +574,17 @@ class PortResource(SyncAPIResource):
|
|
573
574
|
extra_query: Query | None = None,
|
574
575
|
extra_body: Body | None = None,
|
575
576
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
576
|
-
) ->
|
577
|
+
) -> PortQueryhelpResponse:
|
577
578
|
"""
|
578
579
|
Service operation to provide detailed information on available dynamic query
|
579
580
|
parameters for a particular data type.
|
580
581
|
"""
|
581
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
582
582
|
return self._get(
|
583
583
|
"/udl/port/queryhelp",
|
584
584
|
options=make_request_options(
|
585
585
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
586
586
|
),
|
587
|
-
cast_to=
|
587
|
+
cast_to=PortQueryhelpResponse,
|
588
588
|
)
|
589
589
|
|
590
590
|
def tuple(
|
@@ -1182,18 +1182,17 @@ class AsyncPortResource(AsyncAPIResource):
|
|
1182
1182
|
extra_query: Query | None = None,
|
1183
1183
|
extra_body: Body | None = None,
|
1184
1184
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1185
|
-
) ->
|
1185
|
+
) -> PortQueryhelpResponse:
|
1186
1186
|
"""
|
1187
1187
|
Service operation to provide detailed information on available dynamic query
|
1188
1188
|
parameters for a particular data type.
|
1189
1189
|
"""
|
1190
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1191
1190
|
return await self._get(
|
1192
1191
|
"/udl/port/queryhelp",
|
1193
1192
|
options=make_request_options(
|
1194
1193
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1195
1194
|
),
|
1196
|
-
cast_to=
|
1195
|
+
cast_to=PortQueryhelpResponse,
|
1197
1196
|
)
|
1198
1197
|
|
1199
1198
|
async def tuple(
|
@@ -29,6 +29,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
29
29
|
from ..types.rf_band_get_response import RfBandGetResponse
|
30
30
|
from ..types.rf_band_list_response import RfBandListResponse
|
31
31
|
from ..types.rf_band_tuple_response import RfBandTupleResponse
|
32
|
+
from ..types.rf_band_queryhelp_response import RfBandQueryhelpResponse
|
32
33
|
|
33
34
|
__all__ = ["RfBandResource", "AsyncRfBandResource"]
|
34
35
|
|
@@ -554,18 +555,17 @@ class RfBandResource(SyncAPIResource):
|
|
554
555
|
extra_query: Query | None = None,
|
555
556
|
extra_body: Body | None = None,
|
556
557
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
557
|
-
) ->
|
558
|
+
) -> RfBandQueryhelpResponse:
|
558
559
|
"""
|
559
560
|
Service operation to provide detailed information on available dynamic query
|
560
561
|
parameters for a particular data type.
|
561
562
|
"""
|
562
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
563
563
|
return self._get(
|
564
564
|
"/udl/rfband/queryhelp",
|
565
565
|
options=make_request_options(
|
566
566
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
567
567
|
),
|
568
|
-
cast_to=
|
568
|
+
cast_to=RfBandQueryhelpResponse,
|
569
569
|
)
|
570
570
|
|
571
571
|
def tuple(
|
@@ -1146,18 +1146,17 @@ class AsyncRfBandResource(AsyncAPIResource):
|
|
1146
1146
|
extra_query: Query | None = None,
|
1147
1147
|
extra_body: Body | None = None,
|
1148
1148
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1149
|
-
) ->
|
1149
|
+
) -> RfBandQueryhelpResponse:
|
1150
1150
|
"""
|
1151
1151
|
Service operation to provide detailed information on available dynamic query
|
1152
1152
|
parameters for a particular data type.
|
1153
1153
|
"""
|
1154
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1155
1154
|
return await self._get(
|
1156
1155
|
"/udl/rfband/queryhelp",
|
1157
1156
|
options=make_request_options(
|
1158
1157
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1159
1158
|
),
|
1160
|
-
cast_to=
|
1159
|
+
cast_to=RfBandQueryhelpResponse,
|
1161
1160
|
)
|
1162
1161
|
|
1163
1162
|
async def tuple(
|