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
@@ -29,6 +29,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
29
29
|
from ..types.rf_band_type_get_response import RfBandTypeGetResponse
|
30
30
|
from ..types.rf_band_type_list_response import RfBandTypeListResponse
|
31
31
|
from ..types.rf_band_type_tuple_response import RfBandTypeTupleResponse
|
32
|
+
from ..types.rf_band_type_queryhelp_response import RfBandTypeQueryhelpResponse
|
32
33
|
|
33
34
|
__all__ = ["RfBandTypeResource", "AsyncRfBandTypeResource"]
|
34
35
|
|
@@ -414,18 +415,17 @@ class RfBandTypeResource(SyncAPIResource):
|
|
414
415
|
extra_query: Query | None = None,
|
415
416
|
extra_body: Body | None = None,
|
416
417
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
417
|
-
) ->
|
418
|
+
) -> RfBandTypeQueryhelpResponse:
|
418
419
|
"""
|
419
420
|
Service operation to provide detailed information on available dynamic query
|
420
421
|
parameters for a particular data type.
|
421
422
|
"""
|
422
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
423
423
|
return self._get(
|
424
424
|
"/udl/rfbandtype/queryhelp",
|
425
425
|
options=make_request_options(
|
426
426
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
427
427
|
),
|
428
|
-
cast_to=
|
428
|
+
cast_to=RfBandTypeQueryhelpResponse,
|
429
429
|
)
|
430
430
|
|
431
431
|
def tuple(
|
@@ -866,18 +866,17 @@ class AsyncRfBandTypeResource(AsyncAPIResource):
|
|
866
866
|
extra_query: Query | None = None,
|
867
867
|
extra_body: Body | None = None,
|
868
868
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
869
|
-
) ->
|
869
|
+
) -> RfBandTypeQueryhelpResponse:
|
870
870
|
"""
|
871
871
|
Service operation to provide detailed information on available dynamic query
|
872
872
|
parameters for a particular data type.
|
873
873
|
"""
|
874
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
875
874
|
return await self._get(
|
876
875
|
"/udl/rfbandtype/queryhelp",
|
877
876
|
options=make_request_options(
|
878
877
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
879
878
|
),
|
880
|
-
cast_to=
|
879
|
+
cast_to=RfBandTypeQueryhelpResponse,
|
881
880
|
)
|
882
881
|
|
883
882
|
async def tuple(
|
@@ -30,6 +30,7 @@ from ..types.entity_ingest_param import EntityIngestParam
|
|
30
30
|
from ..types.rf_emitter_get_response import RfEmitterGetResponse
|
31
31
|
from ..types.rf_emitter_list_response import RfEmitterListResponse
|
32
32
|
from ..types.rf_emitter_tuple_response import RfEmitterTupleResponse
|
33
|
+
from ..types.rf_emitter_queryhelp_response import RfEmitterQueryhelpResponse
|
33
34
|
|
34
35
|
__all__ = ["RfEmitterResource", "AsyncRfEmitterResource"]
|
35
36
|
|
@@ -427,18 +428,17 @@ class RfEmitterResource(SyncAPIResource):
|
|
427
428
|
extra_query: Query | None = None,
|
428
429
|
extra_body: Body | None = None,
|
429
430
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
430
|
-
) ->
|
431
|
+
) -> RfEmitterQueryhelpResponse:
|
431
432
|
"""
|
432
433
|
Service operation to provide detailed information on available dynamic query
|
433
434
|
parameters for a particular data type.
|
434
435
|
"""
|
435
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
436
436
|
return self._get(
|
437
437
|
"/udl/rfemitter/queryhelp",
|
438
438
|
options=make_request_options(
|
439
439
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
440
440
|
),
|
441
|
-
cast_to=
|
441
|
+
cast_to=RfEmitterQueryhelpResponse,
|
442
442
|
)
|
443
443
|
|
444
444
|
def tuple(
|
@@ -891,18 +891,17 @@ class AsyncRfEmitterResource(AsyncAPIResource):
|
|
891
891
|
extra_query: Query | None = None,
|
892
892
|
extra_body: Body | None = None,
|
893
893
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
894
|
-
) ->
|
894
|
+
) -> RfEmitterQueryhelpResponse:
|
895
895
|
"""
|
896
896
|
Service operation to provide detailed information on available dynamic query
|
897
897
|
parameters for a particular data type.
|
898
898
|
"""
|
899
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
900
899
|
return await self._get(
|
901
900
|
"/udl/rfemitter/queryhelp",
|
902
901
|
options=make_request_options(
|
903
902
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
904
903
|
),
|
905
|
-
cast_to=
|
904
|
+
cast_to=RfEmitterQueryhelpResponse,
|
906
905
|
)
|
907
906
|
|
908
907
|
async def tuple(
|
@@ -30,6 +30,7 @@ from .._base_client import AsyncPaginator, make_request_options
|
|
30
30
|
from ..types.rf_emitter_detail_get_response import RfEmitterDetailGetResponse
|
31
31
|
from ..types.rf_emitter_detail_list_response import RfEmitterDetailListResponse
|
32
32
|
from ..types.rf_emitter_detail_tuple_response import RfEmitterDetailTupleResponse
|
33
|
+
from ..types.rf_emitter_detail_queryhelp_response import RfEmitterDetailQueryhelpResponse
|
33
34
|
|
34
35
|
__all__ = ["RfEmitterDetailsResource", "AsyncRfEmitterDetailsResource"]
|
35
36
|
|
@@ -619,18 +620,17 @@ class RfEmitterDetailsResource(SyncAPIResource):
|
|
619
620
|
extra_query: Query | None = None,
|
620
621
|
extra_body: Body | None = None,
|
621
622
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
622
|
-
) ->
|
623
|
+
) -> RfEmitterDetailQueryhelpResponse:
|
623
624
|
"""
|
624
625
|
Service operation to provide detailed information on available dynamic query
|
625
626
|
parameters for a particular data type.
|
626
627
|
"""
|
627
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
628
628
|
return self._get(
|
629
629
|
"/udl/rfemitterdetails/queryhelp",
|
630
630
|
options=make_request_options(
|
631
631
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
632
632
|
),
|
633
|
-
cast_to=
|
633
|
+
cast_to=RfEmitterDetailQueryhelpResponse,
|
634
634
|
)
|
635
635
|
|
636
636
|
def tuple(
|
@@ -1275,18 +1275,17 @@ class AsyncRfEmitterDetailsResource(AsyncAPIResource):
|
|
1275
1275
|
extra_query: Query | None = None,
|
1276
1276
|
extra_body: Body | None = None,
|
1277
1277
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1278
|
-
) ->
|
1278
|
+
) -> RfEmitterDetailQueryhelpResponse:
|
1279
1279
|
"""
|
1280
1280
|
Service operation to provide detailed information on available dynamic query
|
1281
1281
|
parameters for a particular data type.
|
1282
1282
|
"""
|
1283
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1284
1283
|
return await self._get(
|
1285
1284
|
"/udl/rfemitterdetails/queryhelp",
|
1286
1285
|
options=make_request_options(
|
1287
1286
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1288
1287
|
),
|
1289
|
-
cast_to=
|
1288
|
+
cast_to=RfEmitterDetailQueryhelpResponse,
|
1290
1289
|
)
|
1291
1290
|
|
1292
1291
|
async def tuple(
|
@@ -32,6 +32,7 @@ from .._base_client import make_request_options
|
|
32
32
|
from ..types.route_stat_query_response import RouteStatQueryResponse
|
33
33
|
from ..types.route_stat_tuple_response import RouteStatTupleResponse
|
34
34
|
from ..types.route_stat_retrieve_response import RouteStatRetrieveResponse
|
35
|
+
from ..types.route_stat_query_help_response import RouteStatQueryHelpResponse
|
35
36
|
|
36
37
|
__all__ = ["RouteStatsResource", "AsyncRouteStatsResource"]
|
37
38
|
|
@@ -655,18 +656,17 @@ class RouteStatsResource(SyncAPIResource):
|
|
655
656
|
extra_query: Query | None = None,
|
656
657
|
extra_body: Body | None = None,
|
657
658
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
658
|
-
) ->
|
659
|
+
) -> RouteStatQueryHelpResponse:
|
659
660
|
"""
|
660
661
|
Service operation to provide detailed information on available dynamic query
|
661
662
|
parameters for a particular data type.
|
662
663
|
"""
|
663
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
664
664
|
return self._get(
|
665
665
|
"/udl/routestats/queryhelp",
|
666
666
|
options=make_request_options(
|
667
667
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
668
668
|
),
|
669
|
-
cast_to=
|
669
|
+
cast_to=RouteStatQueryHelpResponse,
|
670
670
|
)
|
671
671
|
|
672
672
|
def tuple(
|
@@ -1381,18 +1381,17 @@ class AsyncRouteStatsResource(AsyncAPIResource):
|
|
1381
1381
|
extra_query: Query | None = None,
|
1382
1382
|
extra_body: Body | None = None,
|
1383
1383
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1384
|
-
) ->
|
1384
|
+
) -> RouteStatQueryHelpResponse:
|
1385
1385
|
"""
|
1386
1386
|
Service operation to provide detailed information on available dynamic query
|
1387
1387
|
parameters for a particular data type.
|
1388
1388
|
"""
|
1389
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1390
1389
|
return await self._get(
|
1391
1390
|
"/udl/routestats/queryhelp",
|
1392
1391
|
options=make_request_options(
|
1393
1392
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1394
1393
|
),
|
1395
|
-
cast_to=
|
1394
|
+
cast_to=RouteStatQueryHelpResponse,
|
1396
1395
|
)
|
1397
1396
|
|
1398
1397
|
async def tuple(
|
@@ -40,6 +40,7 @@ from ..._base_client import AsyncPaginator, make_request_options
|
|
40
40
|
from ...types.sar_observation_get_response import SarObservationGetResponse
|
41
41
|
from ...types.sar_observation_list_response import SarObservationListResponse
|
42
42
|
from ...types.sar_observation_tuple_response import SarObservationTupleResponse
|
43
|
+
from ...types.sar_observation_queryhelp_response import SarObservationQueryhelpResponse
|
43
44
|
|
44
45
|
__all__ = ["SarObservationResource", "AsyncSarObservationResource"]
|
45
46
|
|
@@ -638,18 +639,17 @@ class SarObservationResource(SyncAPIResource):
|
|
638
639
|
extra_query: Query | None = None,
|
639
640
|
extra_body: Body | None = None,
|
640
641
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
641
|
-
) ->
|
642
|
+
) -> SarObservationQueryhelpResponse:
|
642
643
|
"""
|
643
644
|
Service operation to provide detailed information on available dynamic query
|
644
645
|
parameters for a particular data type.
|
645
646
|
"""
|
646
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
647
647
|
return self._get(
|
648
648
|
"/udl/sarobservation/queryhelp",
|
649
649
|
options=make_request_options(
|
650
650
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
651
651
|
),
|
652
|
-
cast_to=
|
652
|
+
cast_to=SarObservationQueryhelpResponse,
|
653
653
|
)
|
654
654
|
|
655
655
|
def tuple(
|
@@ -1344,18 +1344,17 @@ class AsyncSarObservationResource(AsyncAPIResource):
|
|
1344
1344
|
extra_query: Query | None = None,
|
1345
1345
|
extra_body: Body | None = None,
|
1346
1346
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1347
|
-
) ->
|
1347
|
+
) -> SarObservationQueryhelpResponse:
|
1348
1348
|
"""
|
1349
1349
|
Service operation to provide detailed information on available dynamic query
|
1350
1350
|
parameters for a particular data type.
|
1351
1351
|
"""
|
1352
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
1353
1352
|
return await self._get(
|
1354
1353
|
"/udl/sarobservation/queryhelp",
|
1355
1354
|
options=make_request_options(
|
1356
1355
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
1357
1356
|
),
|
1358
|
-
cast_to=
|
1357
|
+
cast_to=SarObservationQueryhelpResponse,
|
1359
1358
|
)
|
1360
1359
|
|
1361
1360
|
async def tuple(
|
@@ -30,6 +30,7 @@ from ..types.entity_ingest_param import EntityIngestParam
|
|
30
30
|
from ..types.scientific_get_response import ScientificGetResponse
|
31
31
|
from ..types.scientific_list_response import ScientificListResponse
|
32
32
|
from ..types.scientific_tuple_response import ScientificTupleResponse
|
33
|
+
from ..types.scientific_queryhelp_response import ScientificQueryhelpResponse
|
33
34
|
|
34
35
|
__all__ = ["ScientificResource", "AsyncScientificResource"]
|
35
36
|
|
@@ -467,18 +468,17 @@ class ScientificResource(SyncAPIResource):
|
|
467
468
|
extra_query: Query | None = None,
|
468
469
|
extra_body: Body | None = None,
|
469
470
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
470
|
-
) ->
|
471
|
+
) -> ScientificQueryhelpResponse:
|
471
472
|
"""
|
472
473
|
Service operation to provide detailed information on available dynamic query
|
473
474
|
parameters for a particular data type.
|
474
475
|
"""
|
475
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
476
476
|
return self._get(
|
477
477
|
"/udl/scientific/queryhelp",
|
478
478
|
options=make_request_options(
|
479
479
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
480
480
|
),
|
481
|
-
cast_to=
|
481
|
+
cast_to=ScientificQueryhelpResponse,
|
482
482
|
)
|
483
483
|
|
484
484
|
def tuple(
|
@@ -971,18 +971,17 @@ class AsyncScientificResource(AsyncAPIResource):
|
|
971
971
|
extra_query: Query | None = None,
|
972
972
|
extra_body: Body | None = None,
|
973
973
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
974
|
-
) ->
|
974
|
+
) -> ScientificQueryhelpResponse:
|
975
975
|
"""
|
976
976
|
Service operation to provide detailed information on available dynamic query
|
977
977
|
parameters for a particular data type.
|
978
978
|
"""
|
979
|
-
extra_headers = {"Accept": "*/*", **(extra_headers or {})}
|
980
979
|
return await self._get(
|
981
980
|
"/udl/scientific/queryhelp",
|
982
981
|
options=make_request_options(
|
983
982
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
984
983
|
),
|
985
|
-
cast_to=
|
984
|
+
cast_to=ScientificQueryhelpResponse,
|
986
985
|
)
|
987
986
|
|
988
987
|
async def tuple(
|
@@ -50,6 +50,7 @@ class FoldersResource(SyncAPIResource):
|
|
50
50
|
classification_marking: str,
|
51
51
|
description: str | NotGiven = NOT_GIVEN,
|
52
52
|
read: str | NotGiven = NOT_GIVEN,
|
53
|
+
send_notification: bool | NotGiven = NOT_GIVEN,
|
53
54
|
tags: str | NotGiven = NOT_GIVEN,
|
54
55
|
write: str | NotGiven = NOT_GIVEN,
|
55
56
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
@@ -74,6 +75,8 @@ class FoldersResource(SyncAPIResource):
|
|
74
75
|
|
75
76
|
read: Comma separated list of user ids who can read contents of the folder.
|
76
77
|
|
78
|
+
send_notification: Whether or not to send a notification that this folder was created.
|
79
|
+
|
77
80
|
tags: Comma separated list of tags to add to the folder.
|
78
81
|
|
79
82
|
write: Comma separated list of user ids who can write to the folder.
|
@@ -99,6 +102,7 @@ class FoldersResource(SyncAPIResource):
|
|
99
102
|
"classification_marking": classification_marking,
|
100
103
|
"description": description,
|
101
104
|
"read": read,
|
105
|
+
"send_notification": send_notification,
|
102
106
|
"tags": tags,
|
103
107
|
"write": write,
|
104
108
|
},
|
@@ -233,6 +237,7 @@ class AsyncFoldersResource(AsyncAPIResource):
|
|
233
237
|
classification_marking: str,
|
234
238
|
description: str | NotGiven = NOT_GIVEN,
|
235
239
|
read: str | NotGiven = NOT_GIVEN,
|
240
|
+
send_notification: bool | NotGiven = NOT_GIVEN,
|
236
241
|
tags: str | NotGiven = NOT_GIVEN,
|
237
242
|
write: str | NotGiven = NOT_GIVEN,
|
238
243
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
@@ -257,6 +262,8 @@ class AsyncFoldersResource(AsyncAPIResource):
|
|
257
262
|
|
258
263
|
read: Comma separated list of user ids who can read contents of the folder.
|
259
264
|
|
265
|
+
send_notification: Whether or not to send a notification that this folder was created.
|
266
|
+
|
260
267
|
tags: Comma separated list of tags to add to the folder.
|
261
268
|
|
262
269
|
write: Comma separated list of user ids who can write to the folder.
|
@@ -282,6 +289,7 @@ class AsyncFoldersResource(AsyncAPIResource):
|
|
282
289
|
"classification_marking": classification_marking,
|
283
290
|
"description": description,
|
284
291
|
"read": read,
|
292
|
+
"send_notification": send_notification,
|
285
293
|
"tags": tags,
|
286
294
|
"write": write,
|
287
295
|
},
|
@@ -46,8 +46,10 @@ class PathsResource(SyncAPIResource):
|
|
46
46
|
id: str,
|
47
47
|
classification_marking: str,
|
48
48
|
body: FileTypes,
|
49
|
+
delete_after: str | NotGiven = NOT_GIVEN,
|
49
50
|
description: str | NotGiven = NOT_GIVEN,
|
50
51
|
overwrite: bool | NotGiven = NOT_GIVEN,
|
52
|
+
send_notification: bool | NotGiven = NOT_GIVEN,
|
51
53
|
tags: str | NotGiven = NOT_GIVEN,
|
52
54
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
53
55
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
@@ -67,10 +69,14 @@ class PathsResource(SyncAPIResource):
|
|
67
69
|
|
68
70
|
classification_marking: Classification (ex. U//FOUO)
|
69
71
|
|
72
|
+
delete_after: Length of time after which to automatically delete the file.
|
73
|
+
|
70
74
|
description: Description
|
71
75
|
|
72
76
|
overwrite: Whether or not to overwrite a file with the same name and path, if one exists.
|
73
77
|
|
78
|
+
send_notification: Whether or not to send a notification that this file was uploaded.
|
79
|
+
|
74
80
|
tags: Tags
|
75
81
|
|
76
82
|
extra_headers: Send extra headers
|
@@ -93,8 +99,10 @@ class PathsResource(SyncAPIResource):
|
|
93
99
|
{
|
94
100
|
"id": id,
|
95
101
|
"classification_marking": classification_marking,
|
102
|
+
"delete_after": delete_after,
|
96
103
|
"description": description,
|
97
104
|
"overwrite": overwrite,
|
105
|
+
"send_notification": send_notification,
|
98
106
|
"tags": tags,
|
99
107
|
},
|
100
108
|
path_create_params.PathCreateParams,
|
@@ -130,8 +138,10 @@ class AsyncPathsResource(AsyncAPIResource):
|
|
130
138
|
id: str,
|
131
139
|
classification_marking: str,
|
132
140
|
body: FileTypes,
|
141
|
+
delete_after: str | NotGiven = NOT_GIVEN,
|
133
142
|
description: str | NotGiven = NOT_GIVEN,
|
134
143
|
overwrite: bool | NotGiven = NOT_GIVEN,
|
144
|
+
send_notification: bool | NotGiven = NOT_GIVEN,
|
135
145
|
tags: str | NotGiven = NOT_GIVEN,
|
136
146
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
137
147
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
@@ -151,10 +161,14 @@ class AsyncPathsResource(AsyncAPIResource):
|
|
151
161
|
|
152
162
|
classification_marking: Classification (ex. U//FOUO)
|
153
163
|
|
164
|
+
delete_after: Length of time after which to automatically delete the file.
|
165
|
+
|
154
166
|
description: Description
|
155
167
|
|
156
168
|
overwrite: Whether or not to overwrite a file with the same name and path, if one exists.
|
157
169
|
|
170
|
+
send_notification: Whether or not to send a notification that this file was uploaded.
|
171
|
+
|
158
172
|
tags: Tags
|
159
173
|
|
160
174
|
extra_headers: Send extra headers
|
@@ -177,8 +191,10 @@ class AsyncPathsResource(AsyncAPIResource):
|
|
177
191
|
{
|
178
192
|
"id": id,
|
179
193
|
"classification_marking": classification_marking,
|
194
|
+
"delete_after": delete_after,
|
180
195
|
"description": description,
|
181
196
|
"overwrite": overwrite,
|
197
|
+
"send_notification": send_notification,
|
182
198
|
"tags": tags,
|
183
199
|
},
|
184
200
|
path_create_params.PathCreateParams,
|
@@ -391,8 +391,10 @@ class ScsResource(SyncAPIResource):
|
|
391
391
|
file_name: str,
|
392
392
|
path: str,
|
393
393
|
body: FileTypes,
|
394
|
+
delete_after: str | NotGiven = NOT_GIVEN,
|
394
395
|
description: str | NotGiven = NOT_GIVEN,
|
395
396
|
overwrite: bool | NotGiven = NOT_GIVEN,
|
397
|
+
send_notification: bool | NotGiven = NOT_GIVEN,
|
396
398
|
tags: str | NotGiven = NOT_GIVEN,
|
397
399
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
398
400
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
@@ -413,10 +415,14 @@ class ScsResource(SyncAPIResource):
|
|
413
415
|
|
414
416
|
path: The base path to upload file (ex. images)
|
415
417
|
|
418
|
+
delete_after: Length of time after which to automatically delete the file.
|
419
|
+
|
416
420
|
description: Description
|
417
421
|
|
418
422
|
overwrite: Whether or not to overwrite a file with the same name and path, if one exists.
|
419
423
|
|
424
|
+
send_notification: Whether or not to send a notification that this file was uploaded.
|
425
|
+
|
420
426
|
tags: Tags
|
421
427
|
|
422
428
|
extra_headers: Send extra headers
|
@@ -440,8 +446,10 @@ class ScsResource(SyncAPIResource):
|
|
440
446
|
"classification_marking": classification_marking,
|
441
447
|
"file_name": file_name,
|
442
448
|
"path": path,
|
449
|
+
"delete_after": delete_after,
|
443
450
|
"description": description,
|
444
451
|
"overwrite": overwrite,
|
452
|
+
"send_notification": send_notification,
|
445
453
|
"tags": tags,
|
446
454
|
},
|
447
455
|
sc_file_upload_params.ScFileUploadParams,
|
@@ -944,8 +952,10 @@ class AsyncScsResource(AsyncAPIResource):
|
|
944
952
|
file_name: str,
|
945
953
|
path: str,
|
946
954
|
body: FileTypes,
|
955
|
+
delete_after: str | NotGiven = NOT_GIVEN,
|
947
956
|
description: str | NotGiven = NOT_GIVEN,
|
948
957
|
overwrite: bool | NotGiven = NOT_GIVEN,
|
958
|
+
send_notification: bool | NotGiven = NOT_GIVEN,
|
949
959
|
tags: str | NotGiven = NOT_GIVEN,
|
950
960
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
951
961
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
@@ -966,10 +976,14 @@ class AsyncScsResource(AsyncAPIResource):
|
|
966
976
|
|
967
977
|
path: The base path to upload file (ex. images)
|
968
978
|
|
979
|
+
delete_after: Length of time after which to automatically delete the file.
|
980
|
+
|
969
981
|
description: Description
|
970
982
|
|
971
983
|
overwrite: Whether or not to overwrite a file with the same name and path, if one exists.
|
972
984
|
|
985
|
+
send_notification: Whether or not to send a notification that this file was uploaded.
|
986
|
+
|
973
987
|
tags: Tags
|
974
988
|
|
975
989
|
extra_headers: Send extra headers
|
@@ -993,8 +1007,10 @@ class AsyncScsResource(AsyncAPIResource):
|
|
993
1007
|
"classification_marking": classification_marking,
|
994
1008
|
"file_name": file_name,
|
995
1009
|
"path": path,
|
1010
|
+
"delete_after": delete_after,
|
996
1011
|
"description": description,
|
997
1012
|
"overwrite": overwrite,
|
1013
|
+
"send_notification": send_notification,
|
998
1014
|
"tags": tags,
|
999
1015
|
},
|
1000
1016
|
sc_file_upload_params.ScFileUploadParams,
|