udl-sdk 0.1.0a1__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.0a1.dist-info/METADATA +462 -0
- udl_sdk-0.1.0a1.dist-info/RECORD +2289 -0
- udl_sdk-0.1.0a1.dist-info/WHEEL +4 -0
- udl_sdk-0.1.0a1.dist-info/licenses/LICENSE +201 -0
- unifieddatalibrary/__init__.py +94 -0
- unifieddatalibrary/_base_client.py +2007 -0
- unifieddatalibrary/_client.py +2379 -0
- unifieddatalibrary/_compat.py +219 -0
- unifieddatalibrary/_constants.py +14 -0
- unifieddatalibrary/_exceptions.py +108 -0
- unifieddatalibrary/_files.py +123 -0
- unifieddatalibrary/_models.py +803 -0
- unifieddatalibrary/_qs.py +150 -0
- unifieddatalibrary/_resource.py +43 -0
- unifieddatalibrary/_response.py +832 -0
- unifieddatalibrary/_streaming.py +333 -0
- unifieddatalibrary/_types.py +217 -0
- unifieddatalibrary/_utils/__init__.py +57 -0
- unifieddatalibrary/_utils/_logs.py +25 -0
- unifieddatalibrary/_utils/_proxy.py +62 -0
- unifieddatalibrary/_utils/_reflection.py +42 -0
- unifieddatalibrary/_utils/_streams.py +12 -0
- unifieddatalibrary/_utils/_sync.py +86 -0
- unifieddatalibrary/_utils/_transform.py +451 -0
- unifieddatalibrary/_utils/_typing.py +151 -0
- unifieddatalibrary/_utils/_utils.py +414 -0
- unifieddatalibrary/_version.py +4 -0
- unifieddatalibrary/lib/.keep +4 -0
- unifieddatalibrary/lib/common.py +3 -0
- unifieddatalibrary/lib/model_based_query.py +112 -0
- unifieddatalibrary/lib/query_field_names.py +142 -0
- unifieddatalibrary/lib/util.py +17 -0
- unifieddatalibrary/pagination.py +78 -0
- unifieddatalibrary/py.typed +0 -0
- unifieddatalibrary/resources/__init__.py +2511 -0
- unifieddatalibrary/resources/air_events.py +1722 -0
- unifieddatalibrary/resources/air_load_plans.py +1279 -0
- unifieddatalibrary/resources/air_operations/__init__.py +103 -0
- unifieddatalibrary/resources/air_operations/air_operations.py +262 -0
- unifieddatalibrary/resources/air_operations/air_tasking_orders.py +175 -0
- unifieddatalibrary/resources/air_operations/aircraft_sortie.py +1501 -0
- unifieddatalibrary/resources/air_operations/aircraft_sorties.py +175 -0
- unifieddatalibrary/resources/air_operations/airspace_control_orders.py +175 -0
- unifieddatalibrary/resources/air_operations/crewpapers.py +317 -0
- unifieddatalibrary/resources/air_operations/diplomatic_clearance.py +175 -0
- unifieddatalibrary/resources/air_tasking_orders.py +677 -0
- unifieddatalibrary/resources/air_transport_missions/__init__.py +33 -0
- unifieddatalibrary/resources/air_transport_missions/air_transport_missions.py +1566 -0
- unifieddatalibrary/resources/air_transport_missions/history.py +461 -0
- unifieddatalibrary/resources/aircraft.py +1083 -0
- unifieddatalibrary/resources/aircraft_sorties.py +1103 -0
- unifieddatalibrary/resources/aircraft_status_remarks.py +696 -0
- unifieddatalibrary/resources/aircraft_statuses/__init__.py +33 -0
- unifieddatalibrary/resources/aircraft_statuses/aircraft_statuses.py +1732 -0
- unifieddatalibrary/resources/aircraft_statuses/history.py +250 -0
- unifieddatalibrary/resources/aircraftstatusremark.py +413 -0
- unifieddatalibrary/resources/airfield_slots.py +424 -0
- unifieddatalibrary/resources/airfield_status.py +861 -0
- unifieddatalibrary/resources/airfields.py +1425 -0
- unifieddatalibrary/resources/airfieldslotconsumptions.py +1476 -0
- unifieddatalibrary/resources/airfieldslots.py +767 -0
- unifieddatalibrary/resources/airfieldstatus/__init__.py +33 -0
- unifieddatalibrary/resources/airfieldstatus/airfieldstatus.py +798 -0
- unifieddatalibrary/resources/airfieldstatus/history.py +250 -0
- unifieddatalibrary/resources/airloadplans.py +901 -0
- unifieddatalibrary/resources/airspace_control_orders.py +942 -0
- unifieddatalibrary/resources/airtaskingorders.py +145 -0
- unifieddatalibrary/resources/ais/__init__.py +33 -0
- unifieddatalibrary/resources/ais/ais.py +692 -0
- unifieddatalibrary/resources/ais/history.py +363 -0
- unifieddatalibrary/resources/ais_objects.py +175 -0
- unifieddatalibrary/resources/analytic_imagery.py +1168 -0
- unifieddatalibrary/resources/antennas.py +876 -0
- unifieddatalibrary/resources/attitude_data.py +272 -0
- unifieddatalibrary/resources/attitude_sets/__init__.py +33 -0
- unifieddatalibrary/resources/attitude_sets/attitude_sets.py +1407 -0
- unifieddatalibrary/resources/attitude_sets/history.py +473 -0
- unifieddatalibrary/resources/attitudesets.py +165 -0
- unifieddatalibrary/resources/aviationriskmanagement.py +1277 -0
- unifieddatalibrary/resources/batteries.py +876 -0
- unifieddatalibrary/resources/batterydetails.py +800 -0
- unifieddatalibrary/resources/beam.py +912 -0
- unifieddatalibrary/resources/beam_contours.py +1314 -0
- unifieddatalibrary/resources/buses.py +1722 -0
- unifieddatalibrary/resources/channels.py +1114 -0
- unifieddatalibrary/resources/collect_requests/__init__.py +33 -0
- unifieddatalibrary/resources/collect_requests/collect_requests.py +1767 -0
- unifieddatalibrary/resources/collect_requests/history.py +461 -0
- unifieddatalibrary/resources/collect_responses/__init__.py +47 -0
- unifieddatalibrary/resources/collect_responses/collect_responses.py +1093 -0
- unifieddatalibrary/resources/collect_responses/history/__init__.py +33 -0
- unifieddatalibrary/resources/collect_responses/history/aodr.py +246 -0
- unifieddatalibrary/resources/collect_responses/history/history.py +339 -0
- unifieddatalibrary/resources/collect_responses/tuple.py +219 -0
- unifieddatalibrary/resources/comm.py +947 -0
- unifieddatalibrary/resources/conjunctions/__init__.py +33 -0
- unifieddatalibrary/resources/conjunctions/conjunctions.py +1812 -0
- unifieddatalibrary/resources/conjunctions/history.py +340 -0
- unifieddatalibrary/resources/cots.py +310 -0
- unifieddatalibrary/resources/countries.py +924 -0
- unifieddatalibrary/resources/crew.py +1887 -0
- unifieddatalibrary/resources/diffofarrival/__init__.py +33 -0
- unifieddatalibrary/resources/diffofarrival/diffofarrival.py +474 -0
- unifieddatalibrary/resources/diffofarrival/history.py +190 -0
- unifieddatalibrary/resources/diplomatic_clearance/__init__.py +47 -0
- unifieddatalibrary/resources/diplomatic_clearance/country.py +1616 -0
- unifieddatalibrary/resources/diplomatic_clearance/diplomatic_clearance.py +1301 -0
- unifieddatalibrary/resources/diplomatic_clearance/history.py +463 -0
- unifieddatalibrary/resources/drift_history.py +464 -0
- unifieddatalibrary/resources/dropzone.py +1540 -0
- unifieddatalibrary/resources/ecpsdr.py +175 -0
- unifieddatalibrary/resources/effect_requests/__init__.py +33 -0
- unifieddatalibrary/resources/effect_requests/effect_requests.py +1071 -0
- unifieddatalibrary/resources/effect_requests/history.py +461 -0
- unifieddatalibrary/resources/effect_responses/__init__.py +33 -0
- unifieddatalibrary/resources/effect_responses/effect_responses.py +1083 -0
- unifieddatalibrary/resources/effect_responses/history.py +461 -0
- unifieddatalibrary/resources/elsets/__init__.py +47 -0
- unifieddatalibrary/resources/elsets/current.py +265 -0
- unifieddatalibrary/resources/elsets/elsets.py +1588 -0
- unifieddatalibrary/resources/elsets/history.py +461 -0
- unifieddatalibrary/resources/emittergeolocation.py +1339 -0
- unifieddatalibrary/resources/engine_details.py +893 -0
- unifieddatalibrary/resources/enginedetails.py +145 -0
- unifieddatalibrary/resources/engines.py +908 -0
- unifieddatalibrary/resources/entities.py +1193 -0
- unifieddatalibrary/resources/eo_observations/__init__.py +33 -0
- unifieddatalibrary/resources/eo_observations/eo_observations.py +1602 -0
- unifieddatalibrary/resources/eo_observations/history.py +467 -0
- unifieddatalibrary/resources/eoobservations.py +360 -0
- unifieddatalibrary/resources/eop/__init__.py +33 -0
- unifieddatalibrary/resources/eop/eop.py +1662 -0
- unifieddatalibrary/resources/eop/history.py +461 -0
- unifieddatalibrary/resources/ephemeris/__init__.py +47 -0
- unifieddatalibrary/resources/ephemeris/attitude_data/__init__.py +33 -0
- unifieddatalibrary/resources/ephemeris/attitude_data/attitude_data.py +310 -0
- unifieddatalibrary/resources/ephemeris/attitude_data/history.py +452 -0
- unifieddatalibrary/resources/ephemeris/ephemeris.py +1259 -0
- unifieddatalibrary/resources/ephemeris/history.py +464 -0
- unifieddatalibrary/resources/ephemeris_sets/__init__.py +33 -0
- unifieddatalibrary/resources/ephemeris_sets/ephemeris_sets.py +1267 -0
- unifieddatalibrary/resources/ephemeris_sets/history.py +513 -0
- unifieddatalibrary/resources/equipment.py +2459 -0
- unifieddatalibrary/resources/equipmentremarks.py +767 -0
- unifieddatalibrary/resources/evac/__init__.py +47 -0
- unifieddatalibrary/resources/evac/evac.py +1107 -0
- unifieddatalibrary/resources/evac/history.py +303 -0
- unifieddatalibrary/resources/evac/tuple.py +217 -0
- unifieddatalibrary/resources/event_evolution/__init__.py +33 -0
- unifieddatalibrary/resources/event_evolution/event_evolution.py +1263 -0
- unifieddatalibrary/resources/event_evolution/history.py +519 -0
- unifieddatalibrary/resources/featureassessment/__init__.py +33 -0
- unifieddatalibrary/resources/featureassessment/featureassessment.py +1321 -0
- unifieddatalibrary/resources/featureassessment/history.py +462 -0
- unifieddatalibrary/resources/flightplan.py +2589 -0
- unifieddatalibrary/resources/geostatus.py +970 -0
- unifieddatalibrary/resources/globalatmosphericmodel/__init__.py +33 -0
- unifieddatalibrary/resources/globalatmosphericmodel/globalatmosphericmodel.py +1045 -0
- unifieddatalibrary/resources/globalatmosphericmodel/history.py +461 -0
- unifieddatalibrary/resources/gnss_observations/__init__.py +33 -0
- unifieddatalibrary/resources/gnss_observations/gnss_observations.py +102 -0
- unifieddatalibrary/resources/gnss_observations/history.py +192 -0
- unifieddatalibrary/resources/gnss_raw_if/__init__.py +33 -0
- unifieddatalibrary/resources/gnss_raw_if/gnss_raw_if.py +102 -0
- unifieddatalibrary/resources/gnss_raw_if/history.py +461 -0
- unifieddatalibrary/resources/gnssobservationset.py +656 -0
- unifieddatalibrary/resources/gnssrawif.py +784 -0
- unifieddatalibrary/resources/ground_imagery/__init__.py +33 -0
- unifieddatalibrary/resources/ground_imagery/ground_imagery.py +404 -0
- unifieddatalibrary/resources/ground_imagery/history.py +303 -0
- unifieddatalibrary/resources/groundimagery.py +1007 -0
- unifieddatalibrary/resources/h3geo/__init__.py +33 -0
- unifieddatalibrary/resources/h3geo/h3geo.py +832 -0
- unifieddatalibrary/resources/h3geo/history.py +461 -0
- unifieddatalibrary/resources/h3geohexcell.py +465 -0
- unifieddatalibrary/resources/hazard/__init__.py +33 -0
- unifieddatalibrary/resources/hazard/hazard.py +1212 -0
- unifieddatalibrary/resources/hazard/history.py +463 -0
- unifieddatalibrary/resources/iono_observation/__init__.py +33 -0
- unifieddatalibrary/resources/iono_observation/history.py +457 -0
- unifieddatalibrary/resources/iono_observation/iono_observation.py +102 -0
- unifieddatalibrary/resources/ionoobservation.py +650 -0
- unifieddatalibrary/resources/ir.py +951 -0
- unifieddatalibrary/resources/isr_collections/__init__.py +33 -0
- unifieddatalibrary/resources/isr_collections/history.py +461 -0
- unifieddatalibrary/resources/isr_collections/isr_collections.py +682 -0
- unifieddatalibrary/resources/item.py +1757 -0
- unifieddatalibrary/resources/item_trackings/__init__.py +33 -0
- unifieddatalibrary/resources/item_trackings/history.py +307 -0
- unifieddatalibrary/resources/item_trackings/item_trackings.py +1042 -0
- unifieddatalibrary/resources/launch_event/__init__.py +33 -0
- unifieddatalibrary/resources/launch_event/history.py +463 -0
- unifieddatalibrary/resources/launch_event/launch_event.py +207 -0
- unifieddatalibrary/resources/launchdetection.py +1190 -0
- unifieddatalibrary/resources/launchevent.py +989 -0
- unifieddatalibrary/resources/launchsite.py +956 -0
- unifieddatalibrary/resources/launchsitedetails.py +886 -0
- unifieddatalibrary/resources/launchvehicle.py +910 -0
- unifieddatalibrary/resources/launchvehicledetails.py +1434 -0
- unifieddatalibrary/resources/link_status/__init__.py +47 -0
- unifieddatalibrary/resources/link_status/datalink.py +1343 -0
- unifieddatalibrary/resources/link_status/history.py +549 -0
- unifieddatalibrary/resources/link_status/link_status.py +1067 -0
- unifieddatalibrary/resources/location.py +998 -0
- unifieddatalibrary/resources/logisticssupport/__init__.py +33 -0
- unifieddatalibrary/resources/logisticssupport/history.py +394 -0
- unifieddatalibrary/resources/logisticssupport/logisticssupport.py +1418 -0
- unifieddatalibrary/resources/maneuvers/__init__.py +33 -0
- unifieddatalibrary/resources/maneuvers/history.py +469 -0
- unifieddatalibrary/resources/maneuvers/maneuvers.py +1857 -0
- unifieddatalibrary/resources/manifold.py +1066 -0
- unifieddatalibrary/resources/manifoldelset.py +1435 -0
- unifieddatalibrary/resources/missile_tracks/__init__.py +33 -0
- unifieddatalibrary/resources/missile_tracks/history.py +461 -0
- unifieddatalibrary/resources/missile_tracks/missile_tracks.py +678 -0
- unifieddatalibrary/resources/missionassignment/__init__.py +33 -0
- unifieddatalibrary/resources/missionassignment/history.py +461 -0
- unifieddatalibrary/resources/missionassignment/missionassignment.py +2029 -0
- unifieddatalibrary/resources/monoradar.py +561 -0
- unifieddatalibrary/resources/mti.py +642 -0
- unifieddatalibrary/resources/navigation.py +959 -0
- unifieddatalibrary/resources/navigationalobstruction.py +2331 -0
- unifieddatalibrary/resources/notification.py +962 -0
- unifieddatalibrary/resources/objectofinterest.py +1590 -0
- unifieddatalibrary/resources/observations/__init__.py +89 -0
- unifieddatalibrary/resources/observations/ecpsdr.py +1202 -0
- unifieddatalibrary/resources/observations/monoradar/__init__.py +33 -0
- unifieddatalibrary/resources/observations/monoradar/history.py +461 -0
- unifieddatalibrary/resources/observations/monoradar/monoradar.py +207 -0
- unifieddatalibrary/resources/observations/observations.py +230 -0
- unifieddatalibrary/resources/observations/radarobservation/__init__.py +33 -0
- unifieddatalibrary/resources/observations/radarobservation/history.py +461 -0
- unifieddatalibrary/resources/observations/radarobservation/radarobservation.py +102 -0
- unifieddatalibrary/resources/observations/rfobservation/__init__.py +33 -0
- unifieddatalibrary/resources/observations/rfobservation/history.py +363 -0
- unifieddatalibrary/resources/observations/rfobservation/rfobservation.py +102 -0
- unifieddatalibrary/resources/observations/swir.py +175 -0
- unifieddatalibrary/resources/onboardnavigation.py +654 -0
- unifieddatalibrary/resources/onorbit/__init__.py +33 -0
- unifieddatalibrary/resources/onorbit/antenna_details.py +958 -0
- unifieddatalibrary/resources/onorbit/onorbit.py +1326 -0
- unifieddatalibrary/resources/onorbitantenna.py +721 -0
- unifieddatalibrary/resources/onorbitbattery.py +729 -0
- unifieddatalibrary/resources/onorbitdetails.py +1371 -0
- unifieddatalibrary/resources/onorbitevent.py +1662 -0
- unifieddatalibrary/resources/onorbitlist.py +933 -0
- unifieddatalibrary/resources/onorbitsolararray.py +745 -0
- unifieddatalibrary/resources/onorbitthruster.py +757 -0
- unifieddatalibrary/resources/onorbitthrusterstatus/__init__.py +33 -0
- unifieddatalibrary/resources/onorbitthrusterstatus/history.py +218 -0
- unifieddatalibrary/resources/onorbitthrusterstatus/onorbitthrusterstatus.py +1138 -0
- unifieddatalibrary/resources/operatingunit.py +2430 -0
- unifieddatalibrary/resources/operatingunitremark.py +769 -0
- unifieddatalibrary/resources/orbitdetermination/__init__.py +33 -0
- unifieddatalibrary/resources/orbitdetermination/history.py +525 -0
- unifieddatalibrary/resources/orbitdetermination/orbitdetermination.py +1373 -0
- unifieddatalibrary/resources/orbittrack/__init__.py +33 -0
- unifieddatalibrary/resources/orbittrack/history.py +461 -0
- unifieddatalibrary/resources/orbittrack/orbittrack.py +678 -0
- unifieddatalibrary/resources/organization.py +1152 -0
- unifieddatalibrary/resources/organizationdetails.py +1349 -0
- unifieddatalibrary/resources/passiveradarobservation/__init__.py +33 -0
- unifieddatalibrary/resources/passiveradarobservation/history.py +461 -0
- unifieddatalibrary/resources/passiveradarobservation/passiveradarobservation.py +1455 -0
- unifieddatalibrary/resources/personnelrecovery/__init__.py +33 -0
- unifieddatalibrary/resources/personnelrecovery/history.py +307 -0
- unifieddatalibrary/resources/personnelrecovery/personnelrecovery.py +1263 -0
- unifieddatalibrary/resources/poi.py +1313 -0
- unifieddatalibrary/resources/port.py +1239 -0
- unifieddatalibrary/resources/radarobservation.py +1467 -0
- unifieddatalibrary/resources/report_and_activity/__init__.py +61 -0
- unifieddatalibrary/resources/report_and_activity/poi/__init__.py +33 -0
- unifieddatalibrary/resources/report_and_activity/poi/history.py +455 -0
- unifieddatalibrary/resources/report_and_activity/poi/poi.py +102 -0
- unifieddatalibrary/resources/report_and_activity/report_and_activity.py +166 -0
- unifieddatalibrary/resources/report_and_activity/udl_h3geo.py +337 -0
- unifieddatalibrary/resources/report_and_activity/udl_sigact.py +269 -0
- unifieddatalibrary/resources/rfband.py +1204 -0
- unifieddatalibrary/resources/rfbandtype.py +924 -0
- unifieddatalibrary/resources/rfemitter.py +953 -0
- unifieddatalibrary/resources/rfemitterdetails.py +1339 -0
- unifieddatalibrary/resources/rfobservation/__init__.py +33 -0
- unifieddatalibrary/resources/rfobservation/history.py +190 -0
- unifieddatalibrary/resources/rfobservation/rfobservation.py +1753 -0
- unifieddatalibrary/resources/routestats.py +1506 -0
- unifieddatalibrary/resources/sarobservation/__init__.py +33 -0
- unifieddatalibrary/resources/sarobservation/history.py +463 -0
- unifieddatalibrary/resources/sarobservation/sarobservation.py +1531 -0
- unifieddatalibrary/resources/scientific.py +1033 -0
- unifieddatalibrary/resources/scs/__init__.py +131 -0
- unifieddatalibrary/resources/scs/classification_markings.py +135 -0
- unifieddatalibrary/resources/scs/file.py +382 -0
- unifieddatalibrary/resources/scs/file_metadata.py +135 -0
- unifieddatalibrary/resources/scs/folders.py +434 -0
- unifieddatalibrary/resources/scs/groups.py +135 -0
- unifieddatalibrary/resources/scs/paths.py +227 -0
- unifieddatalibrary/resources/scs/range_parameters.py +135 -0
- unifieddatalibrary/resources/scs/scs.py +1502 -0
- unifieddatalibrary/resources/scs/v2.py +960 -0
- unifieddatalibrary/resources/scs_views.py +172 -0
- unifieddatalibrary/resources/secure_messaging.py +380 -0
- unifieddatalibrary/resources/sensor/__init__.py +33 -0
- unifieddatalibrary/resources/sensor/calibration/__init__.py +33 -0
- unifieddatalibrary/resources/sensor/calibration/calibration.py +1381 -0
- unifieddatalibrary/resources/sensor/calibration/history.py +461 -0
- unifieddatalibrary/resources/sensor/sensor.py +1153 -0
- unifieddatalibrary/resources/sensormaintenance/__init__.py +33 -0
- unifieddatalibrary/resources/sensormaintenance/history.py +501 -0
- unifieddatalibrary/resources/sensormaintenance/sensormaintenance.py +1596 -0
- unifieddatalibrary/resources/sensorobservationtype.py +266 -0
- unifieddatalibrary/resources/sensorplan/__init__.py +33 -0
- unifieddatalibrary/resources/sensorplan/history.py +461 -0
- unifieddatalibrary/resources/sensorplan/sensorplan.py +1281 -0
- unifieddatalibrary/resources/sensortype.py +280 -0
- unifieddatalibrary/resources/seradatacommdetails.py +1356 -0
- unifieddatalibrary/resources/seradataearlywarning.py +1108 -0
- unifieddatalibrary/resources/seradatanavigation.py +1092 -0
- unifieddatalibrary/resources/seradataopticalpayload.py +1182 -0
- unifieddatalibrary/resources/seradataradarpayload.py +1280 -0
- unifieddatalibrary/resources/seradatasigintpayload.py +1094 -0
- unifieddatalibrary/resources/seradataspacecraftdetails.py +2292 -0
- unifieddatalibrary/resources/sgi/__init__.py +33 -0
- unifieddatalibrary/resources/sgi/history.py +525 -0
- unifieddatalibrary/resources/sgi/sgi.py +2475 -0
- unifieddatalibrary/resources/sigact/__init__.py +33 -0
- unifieddatalibrary/resources/sigact/history.py +305 -0
- unifieddatalibrary/resources/sigact/sigact.py +724 -0
- unifieddatalibrary/resources/site/__init__.py +33 -0
- unifieddatalibrary/resources/site/operations.py +1404 -0
- unifieddatalibrary/resources/site/site.py +2703 -0
- unifieddatalibrary/resources/siteremark.py +674 -0
- unifieddatalibrary/resources/sitestatus/__init__.py +33 -0
- unifieddatalibrary/resources/sitestatus/history.py +250 -0
- unifieddatalibrary/resources/sitestatus/sitestatus.py +1698 -0
- unifieddatalibrary/resources/skyimagery/__init__.py +33 -0
- unifieddatalibrary/resources/skyimagery/history.py +463 -0
- unifieddatalibrary/resources/skyimagery/skyimagery.py +822 -0
- unifieddatalibrary/resources/soiobservationset/__init__.py +33 -0
- unifieddatalibrary/resources/soiobservationset/history.py +461 -0
- unifieddatalibrary/resources/soiobservationset/soiobservationset.py +1569 -0
- unifieddatalibrary/resources/solararray.py +876 -0
- unifieddatalibrary/resources/solararraydetails.py +888 -0
- unifieddatalibrary/resources/sortieppr/__init__.py +33 -0
- unifieddatalibrary/resources/sortieppr/history.py +458 -0
- unifieddatalibrary/resources/sortieppr/sortieppr.py +1348 -0
- unifieddatalibrary/resources/spaceenvobservation/__init__.py +33 -0
- unifieddatalibrary/resources/spaceenvobservation/history.py +461 -0
- unifieddatalibrary/resources/spaceenvobservation/spaceenvobservation.py +686 -0
- unifieddatalibrary/resources/stage.py +1423 -0
- unifieddatalibrary/resources/starcatalog/__init__.py +33 -0
- unifieddatalibrary/resources/starcatalog/history.py +257 -0
- unifieddatalibrary/resources/starcatalog/starcatalog.py +1911 -0
- unifieddatalibrary/resources/statevector/__init__.py +47 -0
- unifieddatalibrary/resources/statevector/current.py +273 -0
- unifieddatalibrary/resources/statevector/history.py +461 -0
- unifieddatalibrary/resources/statevector/statevector.py +2072 -0
- unifieddatalibrary/resources/status.py +1180 -0
- unifieddatalibrary/resources/substatus.py +942 -0
- unifieddatalibrary/resources/supporting_data/__init__.py +89 -0
- unifieddatalibrary/resources/supporting_data/data_types.py +135 -0
- unifieddatalibrary/resources/supporting_data/dataowner.py +197 -0
- unifieddatalibrary/resources/supporting_data/dataowner_types.py +135 -0
- unifieddatalibrary/resources/supporting_data/provider_metadata.py +133 -0
- unifieddatalibrary/resources/supporting_data/query_help.py +142 -0
- unifieddatalibrary/resources/supporting_data/supporting_data.py +230 -0
- unifieddatalibrary/resources/surface.py +2372 -0
- unifieddatalibrary/resources/surfaceobstruction.py +1092 -0
- unifieddatalibrary/resources/swir/__init__.py +33 -0
- unifieddatalibrary/resources/swir/history.py +455 -0
- unifieddatalibrary/resources/swir/swir.py +942 -0
- unifieddatalibrary/resources/taiutc/__init__.py +33 -0
- unifieddatalibrary/resources/taiutc/history.py +463 -0
- unifieddatalibrary/resources/taiutc/taiutc.py +1086 -0
- unifieddatalibrary/resources/tdoa_fdoa/__init__.py +33 -0
- unifieddatalibrary/resources/tdoa_fdoa/diffofarrival/__init__.py +33 -0
- unifieddatalibrary/resources/tdoa_fdoa/diffofarrival/diffofarrival.py +905 -0
- unifieddatalibrary/resources/tdoa_fdoa/diffofarrival/history.py +363 -0
- unifieddatalibrary/resources/tdoa_fdoa/tdoa_fdoa.py +102 -0
- unifieddatalibrary/resources/track/__init__.py +33 -0
- unifieddatalibrary/resources/track/history.py +461 -0
- unifieddatalibrary/resources/track/track.py +678 -0
- unifieddatalibrary/resources/trackdetails/__init__.py +33 -0
- unifieddatalibrary/resources/trackdetails/history.py +461 -0
- unifieddatalibrary/resources/trackdetails/trackdetails.py +593 -0
- unifieddatalibrary/resources/trackroute/__init__.py +33 -0
- unifieddatalibrary/resources/trackroute/history.py +463 -0
- unifieddatalibrary/resources/trackroute/trackroute.py +1986 -0
- unifieddatalibrary/resources/transponder.py +1068 -0
- unifieddatalibrary/resources/udl/__init__.py +103 -0
- unifieddatalibrary/resources/udl/geostatus/__init__.py +33 -0
- unifieddatalibrary/resources/udl/geostatus/geostatus.py +102 -0
- unifieddatalibrary/resources/udl/geostatus/history.py +461 -0
- unifieddatalibrary/resources/udl/gnssobservationset/__init__.py +33 -0
- unifieddatalibrary/resources/udl/gnssobservationset/gnssobservationset.py +102 -0
- unifieddatalibrary/resources/udl/gnssobservationset/history.py +367 -0
- unifieddatalibrary/resources/udl/mti/__init__.py +33 -0
- unifieddatalibrary/resources/udl/mti/history.py +455 -0
- unifieddatalibrary/resources/udl/mti/mti.py +102 -0
- unifieddatalibrary/resources/udl/notification/__init__.py +33 -0
- unifieddatalibrary/resources/udl/notification/history.py +455 -0
- unifieddatalibrary/resources/udl/notification/notification.py +102 -0
- unifieddatalibrary/resources/udl/onboardnavigation/__init__.py +33 -0
- unifieddatalibrary/resources/udl/onboardnavigation/history.py +461 -0
- unifieddatalibrary/resources/udl/onboardnavigation/onboardnavigation.py +102 -0
- unifieddatalibrary/resources/udl/onorbitthrusterstatus/__init__.py +33 -0
- unifieddatalibrary/resources/udl/onorbitthrusterstatus/history.py +227 -0
- unifieddatalibrary/resources/udl/onorbitthrusterstatus/onorbitthrusterstatus.py +102 -0
- unifieddatalibrary/resources/udl/udl.py +262 -0
- unifieddatalibrary/resources/vessel.py +1382 -0
- unifieddatalibrary/resources/video/__init__.py +33 -0
- unifieddatalibrary/resources/video/history.py +250 -0
- unifieddatalibrary/resources/video/video.py +1007 -0
- unifieddatalibrary/resources/weatherdata/__init__.py +33 -0
- unifieddatalibrary/resources/weatherdata/history.py +461 -0
- unifieddatalibrary/resources/weatherdata/weatherdata.py +1253 -0
- unifieddatalibrary/resources/weatherreport/__init__.py +33 -0
- unifieddatalibrary/resources/weatherreport/history.py +461 -0
- unifieddatalibrary/resources/weatherreport/weatherreport.py +1686 -0
- unifieddatalibrary/types/__init__.py +1502 -0
- unifieddatalibrary/types/ai_count_params.py +19 -0
- unifieddatalibrary/types/ai_count_response.py +7 -0
- unifieddatalibrary/types/ai_create_bulk_params.py +272 -0
- unifieddatalibrary/types/ai_history_count_params.py +19 -0
- unifieddatalibrary/types/ai_history_count_response.py +7 -0
- unifieddatalibrary/types/ai_list_params.py +19 -0
- unifieddatalibrary/types/ai_list_response.py +10 -0
- unifieddatalibrary/types/ai_tuple_params.py +27 -0
- unifieddatalibrary/types/ai_tuple_response.py +10 -0
- unifieddatalibrary/types/air_event_count_response.py +7 -0
- unifieddatalibrary/types/air_event_create_bulk_params.py +413 -0
- unifieddatalibrary/types/air_event_create_params.py +409 -0
- unifieddatalibrary/types/air_event_get_response.py +440 -0
- unifieddatalibrary/types/air_event_list_response.py +449 -0
- unifieddatalibrary/types/air_event_tuple_params.py +17 -0
- unifieddatalibrary/types/air_event_tuple_response.py +449 -0
- unifieddatalibrary/types/air_event_unvalidated_publish_params.py +413 -0
- unifieddatalibrary/types/air_event_update_params.py +409 -0
- unifieddatalibrary/types/air_load_plan_count_params.py +19 -0
- unifieddatalibrary/types/air_load_plan_count_response.py +7 -0
- unifieddatalibrary/types/air_load_plan_create_params.py +607 -0
- unifieddatalibrary/types/air_load_plan_list_params.py +19 -0
- unifieddatalibrary/types/air_load_plan_list_response.py +10 -0
- unifieddatalibrary/types/air_load_plan_tuple_params.py +27 -0
- unifieddatalibrary/types/air_load_plan_tuple_response.py +10 -0
- unifieddatalibrary/types/air_operations/__init__.py +37 -0
- unifieddatalibrary/types/air_operations/air_tasking_order_unvalidated_publish_params.py +383 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_count_params.py +19 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_count_response.py +7 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_create_bulk_params.py +313 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_create_params.py +309 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_history_aodr_params.py +47 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_history_count_params.py +19 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_history_count_response.py +7 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_history_query_params.py +27 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_history_query_response.py +10 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_list_params.py +19 -0
- unifieddatalibrary/types/air_operations/aircraft_sortie_list_response.py +10 -0
- unifieddatalibrary/types/air_operations/aircraft_sorty_unvalidated_publish_params.py +313 -0
- unifieddatalibrary/types/air_operations/aircraftsortie_abridged.py +353 -0
- unifieddatalibrary/types/air_operations/aircraftsortie_full.py +369 -0
- unifieddatalibrary/types/air_operations/airspace_control_order_unvalidated_publish_params.py +475 -0
- unifieddatalibrary/types/air_operations/crewpaper_unpublish_params.py +12 -0
- unifieddatalibrary/types/air_operations/crewpaper_upload_pdf_params.py +28 -0
- unifieddatalibrary/types/air_operations/diplomatic_clearance_unvalidated_publish_params.py +239 -0
- unifieddatalibrary/types/air_operations/diplomaticclearance_abridged.py +261 -0
- unifieddatalibrary/types/air_operations/diplomaticclearance_full.py +261 -0
- unifieddatalibrary/types/air_tasking_order_count_response.py +7 -0
- unifieddatalibrary/types/air_tasking_order_create_params.py +378 -0
- unifieddatalibrary/types/air_tasking_order_full.py +402 -0
- unifieddatalibrary/types/air_tasking_order_tuple_params.py +17 -0
- unifieddatalibrary/types/air_tasking_order_tuple_response.py +10 -0
- unifieddatalibrary/types/air_transport_mission_abridged.py +409 -0
- unifieddatalibrary/types/air_transport_mission_count_params.py +19 -0
- unifieddatalibrary/types/air_transport_mission_count_response.py +7 -0
- unifieddatalibrary/types/air_transport_mission_create_params.py +378 -0
- unifieddatalibrary/types/air_transport_mission_list_params.py +19 -0
- unifieddatalibrary/types/air_transport_mission_list_response.py +10 -0
- unifieddatalibrary/types/air_transport_mission_tuple_params.py +27 -0
- unifieddatalibrary/types/air_transport_mission_tuple_response.py +10 -0
- unifieddatalibrary/types/air_transport_mission_update_params.py +378 -0
- unifieddatalibrary/types/air_transport_missions/__init__.py +9 -0
- unifieddatalibrary/types/air_transport_missions/history_aodr_params.py +47 -0
- unifieddatalibrary/types/air_transport_missions/history_count_params.py +19 -0
- unifieddatalibrary/types/air_transport_missions/history_count_response.py +7 -0
- unifieddatalibrary/types/air_transport_missions/history_list_params.py +27 -0
- unifieddatalibrary/types/air_transport_missions/history_list_response.py +10 -0
- unifieddatalibrary/types/aircraft_abridged.py +126 -0
- unifieddatalibrary/types/aircraft_count_response.py +7 -0
- unifieddatalibrary/types/aircraft_create_params.py +110 -0
- unifieddatalibrary/types/aircraft_full.py +143 -0
- unifieddatalibrary/types/aircraft_list_response.py +10 -0
- unifieddatalibrary/types/aircraft_sorty_tuple_params.py +27 -0
- unifieddatalibrary/types/aircraft_sorty_tuple_response.py +10 -0
- unifieddatalibrary/types/aircraft_sorty_update_params.py +309 -0
- unifieddatalibrary/types/aircraft_status_count_response.py +7 -0
- unifieddatalibrary/types/aircraft_status_create_params.py +260 -0
- unifieddatalibrary/types/aircraft_status_list_response.py +10 -0
- unifieddatalibrary/types/aircraft_status_remark_count_response.py +7 -0
- unifieddatalibrary/types/aircraft_status_remark_create_params.py +83 -0
- unifieddatalibrary/types/aircraft_status_remark_list_response.py +10 -0
- unifieddatalibrary/types/aircraft_status_remark_tuple_params.py +17 -0
- unifieddatalibrary/types/aircraft_status_remark_tuple_response.py +10 -0
- unifieddatalibrary/types/aircraft_status_tuple_params.py +17 -0
- unifieddatalibrary/types/aircraft_status_tuple_response.py +10 -0
- unifieddatalibrary/types/aircraft_status_update_params.py +260 -0
- unifieddatalibrary/types/aircraft_statuses/__init__.py +7 -0
- unifieddatalibrary/types/aircraft_statuses/history_count_response.py +7 -0
- unifieddatalibrary/types/aircraft_statuses/history_list_params.py +17 -0
- unifieddatalibrary/types/aircraft_statuses/history_list_response.py +10 -0
- unifieddatalibrary/types/aircraft_tuple_query_params.py +17 -0
- unifieddatalibrary/types/aircraft_tuple_query_response.py +10 -0
- unifieddatalibrary/types/aircraft_update_params.py +110 -0
- unifieddatalibrary/types/aircraftstatus_abridged.py +284 -0
- unifieddatalibrary/types/aircraftstatusremark_abridged.py +105 -0
- unifieddatalibrary/types/aircraftstatusremark_full.py +114 -0
- unifieddatalibrary/types/aircraftstatusremark_update_params.py +83 -0
- unifieddatalibrary/types/airfield_abridged.py +221 -0
- unifieddatalibrary/types/airfield_count_response.py +7 -0
- unifieddatalibrary/types/airfield_create_params.py +198 -0
- unifieddatalibrary/types/airfield_full.py +230 -0
- unifieddatalibrary/types/airfield_list_response.py +10 -0
- unifieddatalibrary/types/airfield_slot_create_params.py +98 -0
- unifieddatalibrary/types/airfield_slot_list_response.py +10 -0
- unifieddatalibrary/types/airfield_status_tuple_params.py +17 -0
- unifieddatalibrary/types/airfield_status_tuple_response.py +10 -0
- unifieddatalibrary/types/airfield_status_update_params.py +221 -0
- unifieddatalibrary/types/airfield_tuple_params.py +17 -0
- unifieddatalibrary/types/airfield_tuple_response.py +10 -0
- unifieddatalibrary/types/airfield_update_params.py +198 -0
- unifieddatalibrary/types/airfieldslot_abridged.py +124 -0
- unifieddatalibrary/types/airfieldslot_count_response.py +7 -0
- unifieddatalibrary/types/airfieldslot_full.py +133 -0
- unifieddatalibrary/types/airfieldslot_tuple_params.py +17 -0
- unifieddatalibrary/types/airfieldslot_tuple_response.py +10 -0
- unifieddatalibrary/types/airfieldslot_update_params.py +98 -0
- unifieddatalibrary/types/airfieldslotconsumption_abridged.py +193 -0
- unifieddatalibrary/types/airfieldslotconsumption_count_params.py +19 -0
- unifieddatalibrary/types/airfieldslotconsumption_count_response.py +7 -0
- unifieddatalibrary/types/airfieldslotconsumption_create_params.py +171 -0
- unifieddatalibrary/types/airfieldslotconsumption_full.py +202 -0
- unifieddatalibrary/types/airfieldslotconsumption_list_params.py +19 -0
- unifieddatalibrary/types/airfieldslotconsumption_list_response.py +10 -0
- unifieddatalibrary/types/airfieldslotconsumption_tuple_params.py +27 -0
- unifieddatalibrary/types/airfieldslotconsumption_tuple_response.py +10 -0
- unifieddatalibrary/types/airfieldslotconsumption_update_params.py +171 -0
- unifieddatalibrary/types/airfieldstatus/__init__.py +7 -0
- unifieddatalibrary/types/airfieldstatus/history_count_response.py +7 -0
- unifieddatalibrary/types/airfieldstatus/history_list_params.py +17 -0
- unifieddatalibrary/types/airfieldstatus/history_list_response.py +10 -0
- unifieddatalibrary/types/airfieldstatus_abridged.py +243 -0
- unifieddatalibrary/types/airfieldstatus_count_response.py +7 -0
- unifieddatalibrary/types/airfieldstatus_create_params.py +221 -0
- unifieddatalibrary/types/airfieldstatus_full.py +252 -0
- unifieddatalibrary/types/airfieldstatus_list_response.py +10 -0
- unifieddatalibrary/types/airloadplan_abridged.py +640 -0
- unifieddatalibrary/types/airloadplan_full.py +640 -0
- unifieddatalibrary/types/airloadplan_update_params.py +607 -0
- unifieddatalibrary/types/airspace_control_order_count_response.py +7 -0
- unifieddatalibrary/types/airspace_control_order_create_bulk_params.py +475 -0
- unifieddatalibrary/types/airspace_control_order_create_params.py +470 -0
- unifieddatalibrary/types/airspace_control_order_list_response.py +10 -0
- unifieddatalibrary/types/airspace_control_order_tuple_params.py +17 -0
- unifieddatalibrary/types/airspace_control_order_tuple_response.py +10 -0
- unifieddatalibrary/types/airspacecontrolorder_abridged.py +496 -0
- unifieddatalibrary/types/airspacecontrolorder_full.py +496 -0
- unifieddatalibrary/types/airtaskingorder_abridged.py +402 -0
- unifieddatalibrary/types/airtaskingorder_list_response.py +10 -0
- unifieddatalibrary/types/ais/__init__.py +7 -0
- unifieddatalibrary/types/ais/history_aodr_params.py +47 -0
- unifieddatalibrary/types/ais/history_list_params.py +27 -0
- unifieddatalibrary/types/ais/history_list_response.py +10 -0
- unifieddatalibrary/types/ais_abridged.py +290 -0
- unifieddatalibrary/types/ais_object_unvalidated_publish_params.py +272 -0
- unifieddatalibrary/types/analytic_imagery_abridged.py +244 -0
- unifieddatalibrary/types/analytic_imagery_count_params.py +19 -0
- unifieddatalibrary/types/analytic_imagery_count_response.py +7 -0
- unifieddatalibrary/types/analytic_imagery_full.py +250 -0
- unifieddatalibrary/types/analytic_imagery_history_aodr_params.py +47 -0
- unifieddatalibrary/types/analytic_imagery_history_count_params.py +19 -0
- unifieddatalibrary/types/analytic_imagery_history_count_response.py +7 -0
- unifieddatalibrary/types/analytic_imagery_history_params.py +27 -0
- unifieddatalibrary/types/analytic_imagery_history_response.py +10 -0
- unifieddatalibrary/types/analytic_imagery_list_params.py +19 -0
- unifieddatalibrary/types/analytic_imagery_list_response.py +10 -0
- unifieddatalibrary/types/analytic_imagery_tuple_params.py +27 -0
- unifieddatalibrary/types/analytic_imagery_tuple_response.py +10 -0
- unifieddatalibrary/types/analytic_imagery_unvalidated_publish_params.py +14 -0
- unifieddatalibrary/types/antenna_abridged.py +62 -0
- unifieddatalibrary/types/antenna_count_response.py +7 -0
- unifieddatalibrary/types/antenna_create_params.py +45 -0
- unifieddatalibrary/types/antenna_full.py +79 -0
- unifieddatalibrary/types/antenna_list_response.py +10 -0
- unifieddatalibrary/types/antenna_tuple_params.py +17 -0
- unifieddatalibrary/types/antenna_tuple_response.py +10 -0
- unifieddatalibrary/types/antenna_update_params.py +45 -0
- unifieddatalibrary/types/attitude_data_tuple_params.py +22 -0
- unifieddatalibrary/types/attitude_data_tuple_response.py +10 -0
- unifieddatalibrary/types/attitude_set_count_params.py +21 -0
- unifieddatalibrary/types/attitude_set_count_response.py +7 -0
- unifieddatalibrary/types/attitude_set_create_params.py +322 -0
- unifieddatalibrary/types/attitude_set_list_params.py +21 -0
- unifieddatalibrary/types/attitude_set_list_response.py +10 -0
- unifieddatalibrary/types/attitude_set_tuple_params.py +29 -0
- unifieddatalibrary/types/attitude_set_tuple_response.py +10 -0
- unifieddatalibrary/types/attitude_set_unvalidated_publish_params.py +322 -0
- unifieddatalibrary/types/attitude_sets/__init__.py +9 -0
- unifieddatalibrary/types/attitude_sets/history_aodr_params.py +49 -0
- unifieddatalibrary/types/attitude_sets/history_count_params.py +21 -0
- unifieddatalibrary/types/attitude_sets/history_count_response.py +7 -0
- unifieddatalibrary/types/attitude_sets/history_list_params.py +29 -0
- unifieddatalibrary/types/attitude_sets/history_list_response.py +10 -0
- unifieddatalibrary/types/attitudedata_full.py +177 -0
- unifieddatalibrary/types/attitudeset_abridged.py +183 -0
- unifieddatalibrary/types/aviationriskmanagement_count_params.py +17 -0
- unifieddatalibrary/types/aviationriskmanagement_count_response.py +7 -0
- unifieddatalibrary/types/aviationriskmanagement_create_bulk_params.py +249 -0
- unifieddatalibrary/types/aviationriskmanagement_create_params.py +242 -0
- unifieddatalibrary/types/aviationriskmanagement_query_params.py +17 -0
- unifieddatalibrary/types/aviationriskmanagement_query_response.py +281 -0
- unifieddatalibrary/types/aviationriskmanagement_retrieve_response.py +269 -0
- unifieddatalibrary/types/aviationriskmanagement_tuple_params.py +25 -0
- unifieddatalibrary/types/aviationriskmanagement_tuple_response.py +281 -0
- unifieddatalibrary/types/aviationriskmanagement_unvalidated_publish_params.py +249 -0
- unifieddatalibrary/types/aviationriskmanagement_update_params.py +242 -0
- unifieddatalibrary/types/battery_abridged.py +62 -0
- unifieddatalibrary/types/battery_count_response.py +7 -0
- unifieddatalibrary/types/battery_create_params.py +45 -0
- unifieddatalibrary/types/battery_full.py +79 -0
- unifieddatalibrary/types/battery_list_response.py +10 -0
- unifieddatalibrary/types/battery_tuple_params.py +17 -0
- unifieddatalibrary/types/battery_tuple_response.py +10 -0
- unifieddatalibrary/types/battery_update_params.py +45 -0
- unifieddatalibrary/types/batterydetail_create_params.py +76 -0
- unifieddatalibrary/types/batterydetail_list_response.py +10 -0
- unifieddatalibrary/types/batterydetail_update_params.py +76 -0
- unifieddatalibrary/types/batterydetails_abridged.py +83 -0
- unifieddatalibrary/types/batterydetails_full.py +110 -0
- unifieddatalibrary/types/beam_abridged.py +71 -0
- unifieddatalibrary/types/beam_contour_count_params.py +14 -0
- unifieddatalibrary/types/beam_contour_count_response.py +7 -0
- unifieddatalibrary/types/beam_contour_create_bulk_params.py +114 -0
- unifieddatalibrary/types/beam_contour_create_params.py +109 -0
- unifieddatalibrary/types/beam_contour_list_params.py +14 -0
- unifieddatalibrary/types/beam_contour_list_response.py +10 -0
- unifieddatalibrary/types/beam_contour_tuple_params.py +22 -0
- unifieddatalibrary/types/beam_contour_tuple_response.py +10 -0
- unifieddatalibrary/types/beam_contour_update_params.py +109 -0
- unifieddatalibrary/types/beam_count_response.py +7 -0
- unifieddatalibrary/types/beam_create_params.py +54 -0
- unifieddatalibrary/types/beam_full.py +87 -0
- unifieddatalibrary/types/beam_list_response.py +10 -0
- unifieddatalibrary/types/beam_tuple_params.py +17 -0
- unifieddatalibrary/types/beam_tuple_response.py +10 -0
- unifieddatalibrary/types/beam_update_params.py +54 -0
- unifieddatalibrary/types/beamcontour_abridged.py +116 -0
- unifieddatalibrary/types/beamcontour_full.py +141 -0
- unifieddatalibrary/types/bus_abridged.py +228 -0
- unifieddatalibrary/types/bus_count_response.py +7 -0
- unifieddatalibrary/types/bus_create_params.py +225 -0
- unifieddatalibrary/types/bus_full.py +252 -0
- unifieddatalibrary/types/bus_list_response.py +10 -0
- unifieddatalibrary/types/bus_tuple_params.py +17 -0
- unifieddatalibrary/types/bus_tuple_response.py +10 -0
- unifieddatalibrary/types/bus_update_params.py +225 -0
- unifieddatalibrary/types/channel_abridged.py +107 -0
- unifieddatalibrary/types/channel_count_response.py +7 -0
- unifieddatalibrary/types/channel_create_params.py +90 -0
- unifieddatalibrary/types/channel_full.py +116 -0
- unifieddatalibrary/types/channel_list_response.py +10 -0
- unifieddatalibrary/types/channel_tuple_params.py +17 -0
- unifieddatalibrary/types/channel_tuple_response.py +10 -0
- unifieddatalibrary/types/channel_update_params.py +90 -0
- unifieddatalibrary/types/collect_request_abridged.py +1366 -0
- unifieddatalibrary/types/collect_request_count_params.py +19 -0
- unifieddatalibrary/types/collect_request_count_response.py +7 -0
- unifieddatalibrary/types/collect_request_create_bulk_params.py +1360 -0
- unifieddatalibrary/types/collect_request_create_params.py +1356 -0
- unifieddatalibrary/types/collect_request_list_params.py +19 -0
- unifieddatalibrary/types/collect_request_list_response.py +10 -0
- unifieddatalibrary/types/collect_request_tuple_params.py +27 -0
- unifieddatalibrary/types/collect_request_tuple_response.py +10 -0
- unifieddatalibrary/types/collect_request_unvalidated_publish_params.py +1360 -0
- unifieddatalibrary/types/collect_requests/__init__.py +9 -0
- unifieddatalibrary/types/collect_requests/history_aodr_params.py +47 -0
- unifieddatalibrary/types/collect_requests/history_count_params.py +19 -0
- unifieddatalibrary/types/collect_requests/history_count_response.py +7 -0
- unifieddatalibrary/types/collect_requests/history_list_params.py +27 -0
- unifieddatalibrary/types/collect_requests/history_list_response.py +10 -0
- unifieddatalibrary/types/collect_response_abridged.py +183 -0
- unifieddatalibrary/types/collect_response_count_params.py +19 -0
- unifieddatalibrary/types/collect_response_count_response.py +7 -0
- unifieddatalibrary/types/collect_response_create_bulk_params.py +178 -0
- unifieddatalibrary/types/collect_response_create_params.py +174 -0
- unifieddatalibrary/types/collect_response_list_params.py +19 -0
- unifieddatalibrary/types/collect_response_list_response.py +10 -0
- unifieddatalibrary/types/collect_response_unvalidated_publish_params.py +178 -0
- unifieddatalibrary/types/collect_responses/__init__.py +10 -0
- unifieddatalibrary/types/collect_responses/history/__init__.py +5 -0
- unifieddatalibrary/types/collect_responses/history/aodr_list_params.py +47 -0
- unifieddatalibrary/types/collect_responses/history_count_params.py +19 -0
- unifieddatalibrary/types/collect_responses/history_count_response.py +7 -0
- unifieddatalibrary/types/collect_responses/history_list_params.py +27 -0
- unifieddatalibrary/types/collect_responses/history_list_response.py +10 -0
- unifieddatalibrary/types/collect_responses/tuple_list_params.py +27 -0
- unifieddatalibrary/types/collect_responses/tuple_list_response.py +10 -0
- unifieddatalibrary/types/comm_abridged.py +71 -0
- unifieddatalibrary/types/comm_count_response.py +7 -0
- unifieddatalibrary/types/comm_create_params.py +62 -0
- unifieddatalibrary/types/comm_full.py +198 -0
- unifieddatalibrary/types/comm_list_response.py +10 -0
- unifieddatalibrary/types/comm_tuple_params.py +17 -0
- unifieddatalibrary/types/comm_tuple_response.py +10 -0
- unifieddatalibrary/types/comm_update_params.py +54 -0
- unifieddatalibrary/types/conjunction_abridged.py +1564 -0
- unifieddatalibrary/types/conjunction_count_params.py +16 -0
- unifieddatalibrary/types/conjunction_count_response.py +7 -0
- unifieddatalibrary/types/conjunction_create_bulk_params.py +1569 -0
- unifieddatalibrary/types/conjunction_create_udl_params.py +1568 -0
- unifieddatalibrary/types/conjunction_full.py +1672 -0
- unifieddatalibrary/types/conjunction_get_history_params.py +24 -0
- unifieddatalibrary/types/conjunction_get_history_response.py +10 -0
- unifieddatalibrary/types/conjunction_list_params.py +16 -0
- unifieddatalibrary/types/conjunction_list_response.py +10 -0
- unifieddatalibrary/types/conjunction_tuple_params.py +24 -0
- unifieddatalibrary/types/conjunction_tuple_response.py +10 -0
- unifieddatalibrary/types/conjunction_unvalidated_publish_params.py +1569 -0
- unifieddatalibrary/types/conjunction_upload_conjunction_data_message_params.py +35 -0
- unifieddatalibrary/types/conjunctions/__init__.py +7 -0
- unifieddatalibrary/types/conjunctions/history_aodr_params.py +44 -0
- unifieddatalibrary/types/conjunctions/history_count_params.py +16 -0
- unifieddatalibrary/types/conjunctions/history_count_response.py +7 -0
- unifieddatalibrary/types/cot_create_params.py +95 -0
- unifieddatalibrary/types/country_abridged.py +77 -0
- unifieddatalibrary/types/country_count_response.py +7 -0
- unifieddatalibrary/types/country_create_params.py +60 -0
- unifieddatalibrary/types/country_full.py +86 -0
- unifieddatalibrary/types/country_list_response.py +10 -0
- unifieddatalibrary/types/country_tuple_params.py +17 -0
- unifieddatalibrary/types/country_tuple_response.py +10 -0
- unifieddatalibrary/types/country_update_params.py +60 -0
- unifieddatalibrary/types/crew_abridged.py +641 -0
- unifieddatalibrary/types/crew_count_response.py +7 -0
- unifieddatalibrary/types/crew_create_params.py +616 -0
- unifieddatalibrary/types/crew_full.py +641 -0
- unifieddatalibrary/types/crew_list_response.py +10 -0
- unifieddatalibrary/types/crew_tuple_params.py +17 -0
- unifieddatalibrary/types/crew_tuple_response.py +10 -0
- unifieddatalibrary/types/crew_unvalidated_publish_params.py +620 -0
- unifieddatalibrary/types/crew_update_params.py +616 -0
- unifieddatalibrary/types/diffofarrival/__init__.py +6 -0
- unifieddatalibrary/types/diffofarrival/history_count_params.py +19 -0
- unifieddatalibrary/types/diffofarrival/history_count_response.py +7 -0
- unifieddatalibrary/types/diffofarrival_tuple_params.py +27 -0
- unifieddatalibrary/types/diffofarrival_tuple_response.py +10 -0
- unifieddatalibrary/types/diffofarrival_unvalidated_publish_params.py +222 -0
- unifieddatalibrary/types/diplomatic_clearance/__init__.py +18 -0
- unifieddatalibrary/types/diplomatic_clearance/country_count_response.py +7 -0
- unifieddatalibrary/types/diplomatic_clearance/country_create_bulk_params.py +541 -0
- unifieddatalibrary/types/diplomatic_clearance/country_create_params.py +536 -0
- unifieddatalibrary/types/diplomatic_clearance/country_list_response.py +568 -0
- unifieddatalibrary/types/diplomatic_clearance/country_retrieve_response.py +564 -0
- unifieddatalibrary/types/diplomatic_clearance/country_tuple_params.py +17 -0
- unifieddatalibrary/types/diplomatic_clearance/country_tuple_response.py +568 -0
- unifieddatalibrary/types/diplomatic_clearance/country_unvalidated_publish_params.py +541 -0
- unifieddatalibrary/types/diplomatic_clearance/country_update_params.py +536 -0
- unifieddatalibrary/types/diplomatic_clearance/history_aodr_params.py +47 -0
- unifieddatalibrary/types/diplomatic_clearance/history_count_params.py +19 -0
- unifieddatalibrary/types/diplomatic_clearance/history_count_response.py +7 -0
- unifieddatalibrary/types/diplomatic_clearance/history_list_params.py +27 -0
- unifieddatalibrary/types/diplomatic_clearance/history_list_response.py +10 -0
- unifieddatalibrary/types/diplomatic_clearance_count_params.py +19 -0
- unifieddatalibrary/types/diplomatic_clearance_count_response.py +7 -0
- unifieddatalibrary/types/diplomatic_clearance_create_bulk_params.py +239 -0
- unifieddatalibrary/types/diplomatic_clearance_create_params.py +230 -0
- unifieddatalibrary/types/diplomatic_clearance_list_params.py +19 -0
- unifieddatalibrary/types/diplomatic_clearance_list_response.py +10 -0
- unifieddatalibrary/types/diplomatic_clearance_tuple_params.py +27 -0
- unifieddatalibrary/types/diplomatic_clearance_tuple_response.py +10 -0
- unifieddatalibrary/types/diplomatic_clearance_update_params.py +230 -0
- unifieddatalibrary/types/drift_history_count_response.py +7 -0
- unifieddatalibrary/types/drift_history_list_response.py +10 -0
- unifieddatalibrary/types/drift_history_tuple_params.py +17 -0
- unifieddatalibrary/types/drift_history_tuple_response.py +10 -0
- unifieddatalibrary/types/dropzone_count_response.py +7 -0
- unifieddatalibrary/types/dropzone_create_bulk_params.py +170 -0
- unifieddatalibrary/types/dropzone_create_params.py +166 -0
- unifieddatalibrary/types/dropzone_query_response.py +189 -0
- unifieddatalibrary/types/dropzone_retrieve_response.py +195 -0
- unifieddatalibrary/types/dropzone_tuple_params.py +17 -0
- unifieddatalibrary/types/dropzone_tuple_response.py +198 -0
- unifieddatalibrary/types/dropzone_unvalidated_publish_params.py +170 -0
- unifieddatalibrary/types/dropzone_update_params.py +166 -0
- unifieddatalibrary/types/ecpsdr_unvalidated_publish_params.py +253 -0
- unifieddatalibrary/types/effect_request_count_params.py +19 -0
- unifieddatalibrary/types/effect_request_count_response.py +7 -0
- unifieddatalibrary/types/effect_request_create_bulk_params.py +119 -0
- unifieddatalibrary/types/effect_request_create_params.py +115 -0
- unifieddatalibrary/types/effect_request_list_params.py +19 -0
- unifieddatalibrary/types/effect_request_list_response.py +133 -0
- unifieddatalibrary/types/effect_request_retrieve_response.py +130 -0
- unifieddatalibrary/types/effect_request_tuple_params.py +27 -0
- unifieddatalibrary/types/effect_request_tuple_response.py +133 -0
- unifieddatalibrary/types/effect_request_unvalidated_publish_params.py +119 -0
- unifieddatalibrary/types/effect_requests/__init__.py +9 -0
- unifieddatalibrary/types/effect_requests/history_aodr_params.py +47 -0
- unifieddatalibrary/types/effect_requests/history_count_params.py +19 -0
- unifieddatalibrary/types/effect_requests/history_count_response.py +7 -0
- unifieddatalibrary/types/effect_requests/history_list_params.py +27 -0
- unifieddatalibrary/types/effect_requests/history_list_response.py +133 -0
- unifieddatalibrary/types/effect_response_count_params.py +19 -0
- unifieddatalibrary/types/effect_response_count_response.py +7 -0
- unifieddatalibrary/types/effect_response_create_bulk_params.py +235 -0
- unifieddatalibrary/types/effect_response_create_params.py +231 -0
- unifieddatalibrary/types/effect_response_list_params.py +19 -0
- unifieddatalibrary/types/effect_response_list_response.py +259 -0
- unifieddatalibrary/types/effect_response_retrieve_response.py +246 -0
- unifieddatalibrary/types/effect_response_tuple_params.py +27 -0
- unifieddatalibrary/types/effect_response_tuple_response.py +259 -0
- unifieddatalibrary/types/effect_response_unvalidated_publish_params.py +241 -0
- unifieddatalibrary/types/effect_responses/__init__.py +9 -0
- unifieddatalibrary/types/effect_responses/history_aodr_params.py +47 -0
- unifieddatalibrary/types/effect_responses/history_count_params.py +19 -0
- unifieddatalibrary/types/effect_responses/history_count_response.py +7 -0
- unifieddatalibrary/types/effect_responses/history_list_params.py +27 -0
- unifieddatalibrary/types/effect_responses/history_list_response.py +257 -0
- unifieddatalibrary/types/elset.py +318 -0
- unifieddatalibrary/types/elset_abridged.py +265 -0
- unifieddatalibrary/types/elset_count_params.py +19 -0
- unifieddatalibrary/types/elset_count_response.py +7 -0
- unifieddatalibrary/types/elset_create_bulk_from_tle_params.py +49 -0
- unifieddatalibrary/types/elset_create_bulk_params.py +21 -0
- unifieddatalibrary/types/elset_create_params.py +259 -0
- unifieddatalibrary/types/elset_ingest_param.py +259 -0
- unifieddatalibrary/types/elset_list_params.py +19 -0
- unifieddatalibrary/types/elset_list_response.py +10 -0
- unifieddatalibrary/types/elset_tuple_params.py +27 -0
- unifieddatalibrary/types/elset_tuple_response.py +10 -0
- unifieddatalibrary/types/elset_unvalidated_publish_params.py +14 -0
- unifieddatalibrary/types/elsets/__init__.py +12 -0
- unifieddatalibrary/types/elsets/current_list_response.py +10 -0
- unifieddatalibrary/types/elsets/current_tuple_params.py +17 -0
- unifieddatalibrary/types/elsets/current_tuple_response.py +10 -0
- unifieddatalibrary/types/elsets/history_aodr_params.py +47 -0
- unifieddatalibrary/types/elsets/history_count_params.py +19 -0
- unifieddatalibrary/types/elsets/history_count_response.py +7 -0
- unifieddatalibrary/types/elsets/history_list_params.py +27 -0
- unifieddatalibrary/types/elsets/history_list_response.py +10 -0
- unifieddatalibrary/types/emittergeolocation_count_params.py +19 -0
- unifieddatalibrary/types/emittergeolocation_count_response.py +7 -0
- unifieddatalibrary/types/emittergeolocation_create_bulk_params.py +236 -0
- unifieddatalibrary/types/emittergeolocation_create_params.py +232 -0
- unifieddatalibrary/types/emittergeolocation_query_params.py +19 -0
- unifieddatalibrary/types/emittergeolocation_query_response.py +260 -0
- unifieddatalibrary/types/emittergeolocation_retrieve_response.py +267 -0
- unifieddatalibrary/types/emittergeolocation_tuple_params.py +27 -0
- unifieddatalibrary/types/emittergeolocation_tuple_response.py +270 -0
- unifieddatalibrary/types/emittergeolocation_unvalidated_publish_params.py +236 -0
- unifieddatalibrary/types/engine.py +82 -0
- unifieddatalibrary/types/engine_abridged.py +65 -0
- unifieddatalibrary/types/engine_count_response.py +7 -0
- unifieddatalibrary/types/engine_create_params.py +48 -0
- unifieddatalibrary/types/engine_detail_create_params.py +109 -0
- unifieddatalibrary/types/engine_detail_update_params.py +109 -0
- unifieddatalibrary/types/engine_details_abridged.py +116 -0
- unifieddatalibrary/types/engine_details_full.py +134 -0
- unifieddatalibrary/types/engine_list_response.py +10 -0
- unifieddatalibrary/types/engine_tuple_params.py +17 -0
- unifieddatalibrary/types/engine_tuple_response.py +10 -0
- unifieddatalibrary/types/engine_update_params.py +48 -0
- unifieddatalibrary/types/enginedetail_list_response.py +10 -0
- unifieddatalibrary/types/entity_abridged.py +326 -0
- unifieddatalibrary/types/entity_count_response.py +7 -0
- unifieddatalibrary/types/entity_create_params.py +231 -0
- unifieddatalibrary/types/entity_full.py +1794 -0
- unifieddatalibrary/types/entity_get_all_types_response.py +3879 -0
- unifieddatalibrary/types/entity_ingest_param.py +231 -0
- unifieddatalibrary/types/entity_list_response.py +10 -0
- unifieddatalibrary/types/entity_tuple_params.py +17 -0
- unifieddatalibrary/types/entity_tuple_response.py +10 -0
- unifieddatalibrary/types/entity_update_params.py +231 -0
- unifieddatalibrary/types/eo_observation_abridged.py +540 -0
- unifieddatalibrary/types/eo_observation_count_params.py +20 -0
- unifieddatalibrary/types/eo_observation_count_response.py +7 -0
- unifieddatalibrary/types/eo_observation_create_bulk_params.py +990 -0
- unifieddatalibrary/types/eo_observation_create_params.py +983 -0
- unifieddatalibrary/types/eo_observation_list_params.py +20 -0
- unifieddatalibrary/types/eo_observation_list_response.py +10 -0
- unifieddatalibrary/types/eo_observation_unvalidated_publish_params.py +987 -0
- unifieddatalibrary/types/eo_observations/__init__.py +10 -0
- unifieddatalibrary/types/eo_observations/eo_observation_full.py +1029 -0
- unifieddatalibrary/types/eo_observations/history_aodr_params.py +48 -0
- unifieddatalibrary/types/eo_observations/history_count_params.py +20 -0
- unifieddatalibrary/types/eo_observations/history_count_response.py +7 -0
- unifieddatalibrary/types/eo_observations/history_list_params.py +28 -0
- unifieddatalibrary/types/eo_observations/history_list_response.py +10 -0
- unifieddatalibrary/types/eoobservation_tuple_params.py +28 -0
- unifieddatalibrary/types/eoobservation_tuple_response.py +10 -0
- unifieddatalibrary/types/eop/__init__.py +9 -0
- unifieddatalibrary/types/eop/history_aodr_params.py +47 -0
- unifieddatalibrary/types/eop/history_count_params.py +19 -0
- unifieddatalibrary/types/eop/history_count_response.py +7 -0
- unifieddatalibrary/types/eop/history_list_params.py +27 -0
- unifieddatalibrary/types/eop/history_list_response.py +10 -0
- unifieddatalibrary/types/eop_abridged.py +243 -0
- unifieddatalibrary/types/eop_count_params.py +19 -0
- unifieddatalibrary/types/eop_count_response.py +7 -0
- unifieddatalibrary/types/eop_create_params.py +228 -0
- unifieddatalibrary/types/eop_list_params.py +19 -0
- unifieddatalibrary/types/eop_list_response.py +10 -0
- unifieddatalibrary/types/eop_list_tuple_params.py +27 -0
- unifieddatalibrary/types/eop_list_tuple_response.py +10 -0
- unifieddatalibrary/types/eop_update_params.py +228 -0
- unifieddatalibrary/types/ephemeris/__init__.py +14 -0
- unifieddatalibrary/types/ephemeris/attitude_data/__init__.py +9 -0
- unifieddatalibrary/types/ephemeris/attitude_data/history_aodr_params.py +42 -0
- unifieddatalibrary/types/ephemeris/attitude_data/history_count_params.py +14 -0
- unifieddatalibrary/types/ephemeris/attitude_data/history_count_response.py +7 -0
- unifieddatalibrary/types/ephemeris/attitude_data/history_retrieve_params.py +22 -0
- unifieddatalibrary/types/ephemeris/attitude_data/history_retrieve_response.py +10 -0
- unifieddatalibrary/types/ephemeris/attitude_data_abridged.py +177 -0
- unifieddatalibrary/types/ephemeris/attitude_data_count_params.py +14 -0
- unifieddatalibrary/types/ephemeris/attitude_data_count_response.py +7 -0
- unifieddatalibrary/types/ephemeris/attitude_data_list_params.py +14 -0
- unifieddatalibrary/types/ephemeris/attitude_data_list_response.py +10 -0
- unifieddatalibrary/types/ephemeris/history_aodr_params.py +46 -0
- unifieddatalibrary/types/ephemeris/history_count_params.py +18 -0
- unifieddatalibrary/types/ephemeris/history_count_response.py +7 -0
- unifieddatalibrary/types/ephemeris/history_list_params.py +26 -0
- unifieddatalibrary/types/ephemeris/history_list_response.py +10 -0
- unifieddatalibrary/types/ephemeris_abridged.py +161 -0
- unifieddatalibrary/types/ephemeris_count_params.py +18 -0
- unifieddatalibrary/types/ephemeris_count_response.py +7 -0
- unifieddatalibrary/types/ephemeris_file_upload_params.py +51 -0
- unifieddatalibrary/types/ephemeris_list_params.py +18 -0
- unifieddatalibrary/types/ephemeris_list_response.py +10 -0
- unifieddatalibrary/types/ephemeris_set.py +240 -0
- unifieddatalibrary/types/ephemeris_set_abridged.py +206 -0
- unifieddatalibrary/types/ephemeris_set_count_params.py +27 -0
- unifieddatalibrary/types/ephemeris_set_count_response.py +7 -0
- unifieddatalibrary/types/ephemeris_set_create_params.py +351 -0
- unifieddatalibrary/types/ephemeris_set_list_params.py +27 -0
- unifieddatalibrary/types/ephemeris_set_list_response.py +10 -0
- unifieddatalibrary/types/ephemeris_set_tuple_params.py +35 -0
- unifieddatalibrary/types/ephemeris_set_tuple_response.py +10 -0
- unifieddatalibrary/types/ephemeris_sets/__init__.py +9 -0
- unifieddatalibrary/types/ephemeris_sets/history_aodr_params.py +55 -0
- unifieddatalibrary/types/ephemeris_sets/history_count_params.py +27 -0
- unifieddatalibrary/types/ephemeris_sets/history_count_response.py +7 -0
- unifieddatalibrary/types/ephemeris_sets/history_list_params.py +35 -0
- unifieddatalibrary/types/ephemeris_sets/history_list_response.py +10 -0
- unifieddatalibrary/types/ephemeris_tuple_params.py +26 -0
- unifieddatalibrary/types/ephemeris_tuple_response.py +10 -0
- unifieddatalibrary/types/ephemeris_unvalidated_publish_params.py +351 -0
- unifieddatalibrary/types/equipment_abridged.py +467 -0
- unifieddatalibrary/types/equipment_count_response.py +7 -0
- unifieddatalibrary/types/equipment_create_bulk_params.py +462 -0
- unifieddatalibrary/types/equipment_create_params.py +458 -0
- unifieddatalibrary/types/equipment_full.py +483 -0
- unifieddatalibrary/types/equipment_list_response.py +10 -0
- unifieddatalibrary/types/equipment_remark_abridged.py +78 -0
- unifieddatalibrary/types/equipment_remark_full.py +87 -0
- unifieddatalibrary/types/equipment_tuple_params.py +17 -0
- unifieddatalibrary/types/equipment_tuple_response.py +10 -0
- unifieddatalibrary/types/equipment_update_params.py +458 -0
- unifieddatalibrary/types/equipmentremark_count_response.py +7 -0
- unifieddatalibrary/types/equipmentremark_create_bulk_params.py +72 -0
- unifieddatalibrary/types/equipmentremark_create_params.py +67 -0
- unifieddatalibrary/types/equipmentremark_list_response.py +10 -0
- unifieddatalibrary/types/equipmentremark_tuple_params.py +17 -0
- unifieddatalibrary/types/equipmentremark_tuple_response.py +10 -0
- unifieddatalibrary/types/evac/__init__.py +10 -0
- unifieddatalibrary/types/evac/history_count_params.py +16 -0
- unifieddatalibrary/types/evac/history_count_response.py +7 -0
- unifieddatalibrary/types/evac/history_list_params.py +24 -0
- unifieddatalibrary/types/evac/history_list_response.py +10 -0
- unifieddatalibrary/types/evac/tuple_list_params.py +24 -0
- unifieddatalibrary/types/evac/tuple_list_response.py +10 -0
- unifieddatalibrary/types/evac_abridged.py +589 -0
- unifieddatalibrary/types/evac_count_params.py +16 -0
- unifieddatalibrary/types/evac_count_response.py +7 -0
- unifieddatalibrary/types/evac_create_bulk_params.py +579 -0
- unifieddatalibrary/types/evac_create_params.py +574 -0
- unifieddatalibrary/types/evac_list_params.py +16 -0
- unifieddatalibrary/types/evac_list_response.py +10 -0
- unifieddatalibrary/types/evac_unvalidated_publish_params.py +579 -0
- unifieddatalibrary/types/event_evolution/__init__.py +9 -0
- unifieddatalibrary/types/event_evolution/history_aodr_params.py +56 -0
- unifieddatalibrary/types/event_evolution/history_count_params.py +28 -0
- unifieddatalibrary/types/event_evolution/history_count_response.py +7 -0
- unifieddatalibrary/types/event_evolution/history_list_params.py +36 -0
- unifieddatalibrary/types/event_evolution/history_list_response.py +10 -0
- unifieddatalibrary/types/event_evolution_count_params.py +28 -0
- unifieddatalibrary/types/event_evolution_count_response.py +7 -0
- unifieddatalibrary/types/event_evolution_create_bulk_params.py +196 -0
- unifieddatalibrary/types/event_evolution_create_params.py +192 -0
- unifieddatalibrary/types/event_evolution_list_params.py +28 -0
- unifieddatalibrary/types/event_evolution_list_response.py +204 -0
- unifieddatalibrary/types/event_evolution_tuple_params.py +36 -0
- unifieddatalibrary/types/event_evolution_tuple_response.py +10 -0
- unifieddatalibrary/types/event_evolution_unvalidated_publish_params.py +196 -0
- unifieddatalibrary/types/featureassessment/__init__.py +9 -0
- unifieddatalibrary/types/featureassessment/history_count_params.py +17 -0
- unifieddatalibrary/types/featureassessment/history_count_response.py +7 -0
- unifieddatalibrary/types/featureassessment/history_query_params.py +25 -0
- unifieddatalibrary/types/featureassessment/history_query_response.py +280 -0
- unifieddatalibrary/types/featureassessment/history_write_aodr_params.py +45 -0
- unifieddatalibrary/types/featureassessment_count_params.py +17 -0
- unifieddatalibrary/types/featureassessment_count_response.py +7 -0
- unifieddatalibrary/types/featureassessment_create_bulk_params.py +259 -0
- unifieddatalibrary/types/featureassessment_create_params.py +255 -0
- unifieddatalibrary/types/featureassessment_query_params.py +17 -0
- unifieddatalibrary/types/featureassessment_query_response.py +265 -0
- unifieddatalibrary/types/featureassessment_retrieve_response.py +277 -0
- unifieddatalibrary/types/featureassessment_tuple_params.py +25 -0
- unifieddatalibrary/types/featureassessment_tuple_response.py +280 -0
- unifieddatalibrary/types/featureassessment_unvalidated_publish_params.py +259 -0
- unifieddatalibrary/types/flight_plan_abridged.py +923 -0
- unifieddatalibrary/types/flightplan_count_response.py +7 -0
- unifieddatalibrary/types/flightplan_create_params.py +888 -0
- unifieddatalibrary/types/flightplan_list_response.py +10 -0
- unifieddatalibrary/types/flightplan_tuple_params.py +17 -0
- unifieddatalibrary/types/flightplan_tuple_response.py +10 -0
- unifieddatalibrary/types/flightplan_unvalidated_publish_params.py +895 -0
- unifieddatalibrary/types/flightplan_update_params.py +888 -0
- unifieddatalibrary/types/geostatus_count_params.py +19 -0
- unifieddatalibrary/types/geostatus_count_response.py +7 -0
- unifieddatalibrary/types/geostatus_create_bulk_params.py +124 -0
- unifieddatalibrary/types/geostatus_create_params.py +119 -0
- unifieddatalibrary/types/geostatus_list_params.py +19 -0
- unifieddatalibrary/types/geostatus_list_response.py +142 -0
- unifieddatalibrary/types/geostatus_tuple_params.py +27 -0
- unifieddatalibrary/types/geostatus_tuple_response.py +10 -0
- unifieddatalibrary/types/globalatmosphericmodel/__init__.py +9 -0
- unifieddatalibrary/types/globalatmosphericmodel/history_count_params.py +19 -0
- unifieddatalibrary/types/globalatmosphericmodel/history_count_response.py +7 -0
- unifieddatalibrary/types/globalatmosphericmodel/history_query_params.py +27 -0
- unifieddatalibrary/types/globalatmosphericmodel/history_query_response.py +158 -0
- unifieddatalibrary/types/globalatmosphericmodel/history_write_aodr_params.py +47 -0
- unifieddatalibrary/types/globalatmosphericmodel_count_params.py +19 -0
- unifieddatalibrary/types/globalatmosphericmodel_count_response.py +7 -0
- unifieddatalibrary/types/globalatmosphericmodel_query_params.py +19 -0
- unifieddatalibrary/types/globalatmosphericmodel_query_response.py +158 -0
- unifieddatalibrary/types/globalatmosphericmodel_retrieve_response.py +155 -0
- unifieddatalibrary/types/globalatmosphericmodel_tuple_params.py +27 -0
- unifieddatalibrary/types/globalatmosphericmodel_tuple_response.py +158 -0
- unifieddatalibrary/types/globalatmosphericmodel_unvalidated_publish_params.py +126 -0
- unifieddatalibrary/types/gnss_observations/__init__.py +6 -0
- unifieddatalibrary/types/gnss_observations/history_count_params.py +20 -0
- unifieddatalibrary/types/gnss_observations/history_count_response.py +7 -0
- unifieddatalibrary/types/gnss_raw_if/__init__.py +9 -0
- unifieddatalibrary/types/gnss_raw_if/history_aodr_params.py +47 -0
- unifieddatalibrary/types/gnss_raw_if/history_count_params.py +19 -0
- unifieddatalibrary/types/gnss_raw_if/history_count_response.py +7 -0
- unifieddatalibrary/types/gnss_raw_if/history_query_params.py +27 -0
- unifieddatalibrary/types/gnss_raw_if/history_query_response.py +10 -0
- unifieddatalibrary/types/gnssobservationset_count_params.py +20 -0
- unifieddatalibrary/types/gnssobservationset_count_response.py +7 -0
- unifieddatalibrary/types/gnssobservationset_create_bulk_params.py +273 -0
- unifieddatalibrary/types/gnssobservationset_list_params.py +20 -0
- unifieddatalibrary/types/gnssobservationset_list_response.py +296 -0
- unifieddatalibrary/types/gnssobservationset_tuple_params.py +28 -0
- unifieddatalibrary/types/gnssobservationset_tuple_response.py +10 -0
- unifieddatalibrary/types/gnssobservationset_unvalidated_publish_params.py +273 -0
- unifieddatalibrary/types/gnssrawif_count_params.py +19 -0
- unifieddatalibrary/types/gnssrawif_count_response.py +7 -0
- unifieddatalibrary/types/gnssrawif_list_params.py +19 -0
- unifieddatalibrary/types/gnssrawif_list_response.py +281 -0
- unifieddatalibrary/types/gnssrawif_tuple_params.py +27 -0
- unifieddatalibrary/types/gnssrawif_tuple_response.py +10 -0
- unifieddatalibrary/types/gnssrawif_upload_zip_params.py +14 -0
- unifieddatalibrary/types/ground_imagery/__init__.py +8 -0
- unifieddatalibrary/types/ground_imagery/history_count_params.py +16 -0
- unifieddatalibrary/types/ground_imagery/history_count_response.py +7 -0
- unifieddatalibrary/types/ground_imagery/history_query_params.py +24 -0
- unifieddatalibrary/types/ground_imagery/history_query_response.py +10 -0
- unifieddatalibrary/types/ground_imagery_history_aodr_params.py +44 -0
- unifieddatalibrary/types/ground_imagery_upload_zip_params.py +14 -0
- unifieddatalibrary/types/groundimagery_count_params.py +16 -0
- unifieddatalibrary/types/groundimagery_count_response.py +7 -0
- unifieddatalibrary/types/groundimagery_create_params.py +143 -0
- unifieddatalibrary/types/groundimagery_list_params.py +16 -0
- unifieddatalibrary/types/groundimagery_list_response.py +147 -0
- unifieddatalibrary/types/groundimagery_tuple_params.py +24 -0
- unifieddatalibrary/types/groundimagery_tuple_response.py +10 -0
- unifieddatalibrary/types/h3geo/__init__.py +9 -0
- unifieddatalibrary/types/h3geo/history_ador_params.py +47 -0
- unifieddatalibrary/types/h3geo/history_count_params.py +19 -0
- unifieddatalibrary/types/h3geo/history_count_response.py +7 -0
- unifieddatalibrary/types/h3geo/history_query_params.py +27 -0
- unifieddatalibrary/types/h3geo/history_query_response.py +99 -0
- unifieddatalibrary/types/h3geo_count_params.py +19 -0
- unifieddatalibrary/types/h3geo_count_response.py +7 -0
- unifieddatalibrary/types/h3geo_create_params.py +197 -0
- unifieddatalibrary/types/h3geo_get_response.py +241 -0
- unifieddatalibrary/types/h3geo_list_params.py +19 -0
- unifieddatalibrary/types/h3geo_list_response.py +99 -0
- unifieddatalibrary/types/h3geo_tuple_params.py +27 -0
- unifieddatalibrary/types/h3geo_tuple_response.py +244 -0
- unifieddatalibrary/types/h3geohexcell_count_params.py +14 -0
- unifieddatalibrary/types/h3geohexcell_count_response.py +7 -0
- unifieddatalibrary/types/h3geohexcell_list_params.py +14 -0
- unifieddatalibrary/types/h3geohexcell_list_response.py +144 -0
- unifieddatalibrary/types/h3geohexcell_tuple_params.py +22 -0
- unifieddatalibrary/types/h3geohexcell_tuple_response.py +144 -0
- unifieddatalibrary/types/hazard/__init__.py +9 -0
- unifieddatalibrary/types/hazard/history_aodr_params.py +47 -0
- unifieddatalibrary/types/hazard/history_count_params.py +19 -0
- unifieddatalibrary/types/hazard/history_count_response.py +7 -0
- unifieddatalibrary/types/hazard/history_query_params.py +27 -0
- unifieddatalibrary/types/hazard/history_query_response.py +10 -0
- unifieddatalibrary/types/hazard_count_params.py +19 -0
- unifieddatalibrary/types/hazard_count_response.py +7 -0
- unifieddatalibrary/types/hazard_create_bulk_params.py +255 -0
- unifieddatalibrary/types/hazard_create_params.py +251 -0
- unifieddatalibrary/types/hazard_list_params.py +19 -0
- unifieddatalibrary/types/hazard_list_response.py +269 -0
- unifieddatalibrary/types/hazard_tuple_params.py +27 -0
- unifieddatalibrary/types/hazard_tuple_response.py +10 -0
- unifieddatalibrary/types/iono_observation/__init__.py +9 -0
- unifieddatalibrary/types/iono_observation/history_aodr_params.py +44 -0
- unifieddatalibrary/types/iono_observation/history_count_params.py +16 -0
- unifieddatalibrary/types/iono_observation/history_count_response.py +7 -0
- unifieddatalibrary/types/iono_observation/history_list_params.py +24 -0
- unifieddatalibrary/types/iono_observation/history_list_response.py +10 -0
- unifieddatalibrary/types/ionoobservation_count_params.py +16 -0
- unifieddatalibrary/types/ionoobservation_count_response.py +7 -0
- unifieddatalibrary/types/ionoobservation_create_bulk_params.py +979 -0
- unifieddatalibrary/types/ionoobservation_list_params.py +16 -0
- unifieddatalibrary/types/ionoobservation_list_response.py +1012 -0
- unifieddatalibrary/types/ionoobservation_tuple_params.py +24 -0
- unifieddatalibrary/types/ionoobservation_tuple_response.py +10 -0
- unifieddatalibrary/types/ionoobservation_unvalidated_publish_params.py +979 -0
- unifieddatalibrary/types/ir_count_response.py +7 -0
- unifieddatalibrary/types/ir_create_params.py +62 -0
- unifieddatalibrary/types/ir_get_response.py +88 -0
- unifieddatalibrary/types/ir_list_response.py +74 -0
- unifieddatalibrary/types/ir_tuple_params.py +17 -0
- unifieddatalibrary/types/ir_tuple_response.py +91 -0
- unifieddatalibrary/types/ir_update_params.py +62 -0
- unifieddatalibrary/types/isr_collection_count_params.py +19 -0
- unifieddatalibrary/types/isr_collection_count_response.py +7 -0
- unifieddatalibrary/types/isr_collection_create_bulk_params.py +591 -0
- unifieddatalibrary/types/isr_collection_list_params.py +19 -0
- unifieddatalibrary/types/isr_collection_list_response.py +614 -0
- unifieddatalibrary/types/isr_collection_tuple_params.py +27 -0
- unifieddatalibrary/types/isr_collection_tuple_response.py +10 -0
- unifieddatalibrary/types/isr_collection_unvalidated_publish_params.py +591 -0
- unifieddatalibrary/types/isr_collections/__init__.py +9 -0
- unifieddatalibrary/types/isr_collections/history_aodr_params.py +47 -0
- unifieddatalibrary/types/isr_collections/history_count_params.py +19 -0
- unifieddatalibrary/types/isr_collections/history_count_response.py +7 -0
- unifieddatalibrary/types/isr_collections/history_list_params.py +27 -0
- unifieddatalibrary/types/isr_collections/history_list_response.py +10 -0
- unifieddatalibrary/types/item_count_response.py +7 -0
- unifieddatalibrary/types/item_create_params.py +249 -0
- unifieddatalibrary/types/item_get_response.py +280 -0
- unifieddatalibrary/types/item_list_response.py +274 -0
- unifieddatalibrary/types/item_tracking_count_params.py +19 -0
- unifieddatalibrary/types/item_tracking_count_response.py +7 -0
- unifieddatalibrary/types/item_tracking_create_params.py +108 -0
- unifieddatalibrary/types/item_tracking_list_params.py +19 -0
- unifieddatalibrary/types/item_tracking_list_response.py +133 -0
- unifieddatalibrary/types/item_tracking_tuple_params.py +27 -0
- unifieddatalibrary/types/item_tracking_tuple_response.py +10 -0
- unifieddatalibrary/types/item_tracking_unvalidated_publish_params.py +112 -0
- unifieddatalibrary/types/item_trackings/__init__.py +8 -0
- unifieddatalibrary/types/item_trackings/history_count_params.py +19 -0
- unifieddatalibrary/types/item_trackings/history_count_response.py +7 -0
- unifieddatalibrary/types/item_trackings/history_list_params.py +27 -0
- unifieddatalibrary/types/item_trackings/history_list_response.py +10 -0
- unifieddatalibrary/types/item_tuple_params.py +17 -0
- unifieddatalibrary/types/item_tuple_response.py +283 -0
- unifieddatalibrary/types/item_unvalidated_publish_params.py +253 -0
- unifieddatalibrary/types/item_update_params.py +249 -0
- unifieddatalibrary/types/launch_event/__init__.py +9 -0
- unifieddatalibrary/types/launch_event/history_aodr_params.py +47 -0
- unifieddatalibrary/types/launch_event/history_count_params.py +19 -0
- unifieddatalibrary/types/launch_event/history_count_response.py +7 -0
- unifieddatalibrary/types/launch_event/history_list_params.py +27 -0
- unifieddatalibrary/types/launch_event/history_list_response.py +108 -0
- unifieddatalibrary/types/launch_event_unvalidated_publish_params.py +87 -0
- unifieddatalibrary/types/launchdetection_count_response.py +7 -0
- unifieddatalibrary/types/launchdetection_create_params.py +116 -0
- unifieddatalibrary/types/launchdetection_get_response.py +140 -0
- unifieddatalibrary/types/launchdetection_list_response.py +134 -0
- unifieddatalibrary/types/launchdetection_tuple_params.py +17 -0
- unifieddatalibrary/types/launchdetection_tuple_response.py +143 -0
- unifieddatalibrary/types/launchdetection_update_params.py +116 -0
- unifieddatalibrary/types/launchevent_count_params.py +19 -0
- unifieddatalibrary/types/launchevent_count_response.py +7 -0
- unifieddatalibrary/types/launchevent_create_bulk_params.py +87 -0
- unifieddatalibrary/types/launchevent_create_params.py +83 -0
- unifieddatalibrary/types/launchevent_get_response.py +105 -0
- unifieddatalibrary/types/launchevent_list_params.py +19 -0
- unifieddatalibrary/types/launchevent_list_response.py +104 -0
- unifieddatalibrary/types/launchevent_tuple_params.py +27 -0
- unifieddatalibrary/types/launchevent_tuple_response.py +108 -0
- unifieddatalibrary/types/launchevent_unvalidated_publish_params.py +87 -0
- unifieddatalibrary/types/launchsite_count_response.py +7 -0
- unifieddatalibrary/types/launchsite_create_params.py +60 -0
- unifieddatalibrary/types/launchsite_get_response.py +195 -0
- unifieddatalibrary/types/launchsite_list_response.py +80 -0
- unifieddatalibrary/types/launchsite_tuple_params.py +17 -0
- unifieddatalibrary/types/launchsite_tuple_response.py +200 -0
- unifieddatalibrary/types/launchsite_update_params.py +60 -0
- unifieddatalibrary/types/launchsitedetail_create_params.py +79 -0
- unifieddatalibrary/types/launchsitedetail_find_by_source_params.py +12 -0
- unifieddatalibrary/types/launchsitedetail_find_by_source_response.py +180 -0
- unifieddatalibrary/types/launchsitedetail_get_response.py +113 -0
- unifieddatalibrary/types/launchsitedetail_list_response.py +180 -0
- unifieddatalibrary/types/launchsitedetail_update_params.py +79 -0
- unifieddatalibrary/types/launchvehicle_count_response.py +7 -0
- unifieddatalibrary/types/launchvehicle_create_params.py +51 -0
- unifieddatalibrary/types/launchvehicle_get_response.py +490 -0
- unifieddatalibrary/types/launchvehicle_list_response.py +71 -0
- unifieddatalibrary/types/launchvehicle_tuple_params.py +17 -0
- unifieddatalibrary/types/launchvehicle_tuple_response.py +500 -0
- unifieddatalibrary/types/launchvehicle_update_params.py +51 -0
- unifieddatalibrary/types/launchvehicledetail_create_params.py +197 -0
- unifieddatalibrary/types/launchvehicledetail_get_response.py +239 -0
- unifieddatalibrary/types/launchvehicledetail_list_response.py +215 -0
- unifieddatalibrary/types/launchvehicledetail_update_params.py +197 -0
- unifieddatalibrary/types/link_status/__init__.py +18 -0
- unifieddatalibrary/types/link_status/datalink_count_params.py +19 -0
- unifieddatalibrary/types/link_status/datalink_count_response.py +7 -0
- unifieddatalibrary/types/link_status/datalink_create_params.py +592 -0
- unifieddatalibrary/types/link_status/datalink_ingest_param.py +592 -0
- unifieddatalibrary/types/link_status/datalink_list_params.py +19 -0
- unifieddatalibrary/types/link_status/datalink_list_response.py +636 -0
- unifieddatalibrary/types/link_status/datalink_tuple_params.py +27 -0
- unifieddatalibrary/types/link_status/datalink_tuple_response.py +636 -0
- unifieddatalibrary/types/link_status/datalink_unvalidated_publish_params.py +14 -0
- unifieddatalibrary/types/link_status/history_aodr_params.py +62 -0
- unifieddatalibrary/types/link_status/history_count_params.py +34 -0
- unifieddatalibrary/types/link_status/history_count_response.py +7 -0
- unifieddatalibrary/types/link_status/history_list_params.py +42 -0
- unifieddatalibrary/types/link_status/history_list_response.py +10 -0
- unifieddatalibrary/types/link_status_count_params.py +34 -0
- unifieddatalibrary/types/link_status_count_response.py +7 -0
- unifieddatalibrary/types/link_status_create_params.py +137 -0
- unifieddatalibrary/types/link_status_list_params.py +34 -0
- unifieddatalibrary/types/link_status_list_response.py +169 -0
- unifieddatalibrary/types/link_status_tuple_params.py +42 -0
- unifieddatalibrary/types/link_status_tuple_response.py +10 -0
- unifieddatalibrary/types/location_count_response.py +7 -0
- unifieddatalibrary/types/location_create_params.py +73 -0
- unifieddatalibrary/types/location_full.py +99 -0
- unifieddatalibrary/types/location_ingest_param.py +73 -0
- unifieddatalibrary/types/location_list_response.py +93 -0
- unifieddatalibrary/types/location_tuple_params.py +17 -0
- unifieddatalibrary/types/location_tuple_response.py +10 -0
- unifieddatalibrary/types/location_update_params.py +73 -0
- unifieddatalibrary/types/logistics_remarks_full.py +24 -0
- unifieddatalibrary/types/logisticssupport/__init__.py +8 -0
- unifieddatalibrary/types/logisticssupport/history_aodr_params.py +39 -0
- unifieddatalibrary/types/logisticssupport/history_count_response.py +7 -0
- unifieddatalibrary/types/logisticssupport/history_list_params.py +17 -0
- unifieddatalibrary/types/logisticssupport/history_list_response.py +614 -0
- unifieddatalibrary/types/logisticssupport_count_response.py +7 -0
- unifieddatalibrary/types/logisticssupport_create_bulk_params.py +637 -0
- unifieddatalibrary/types/logisticssupport_create_params.py +630 -0
- unifieddatalibrary/types/logisticssupport_get_response.py +608 -0
- unifieddatalibrary/types/logisticssupport_list_response.py +662 -0
- unifieddatalibrary/types/logisticssupport_tuple_params.py +17 -0
- unifieddatalibrary/types/logisticssupport_tuple_response.py +614 -0
- unifieddatalibrary/types/logisticssupport_unvalidated_publish_params.py +637 -0
- unifieddatalibrary/types/logisticssupport_update_params.py +630 -0
- unifieddatalibrary/types/maneuver_count_params.py +20 -0
- unifieddatalibrary/types/maneuver_count_response.py +7 -0
- unifieddatalibrary/types/maneuver_create_bulk_params.py +2238 -0
- unifieddatalibrary/types/maneuver_create_params.py +2227 -0
- unifieddatalibrary/types/maneuver_list_params.py +20 -0
- unifieddatalibrary/types/maneuver_list_response.py +2238 -0
- unifieddatalibrary/types/maneuver_tuple_params.py +28 -0
- unifieddatalibrary/types/maneuver_tuple_response.py +10 -0
- unifieddatalibrary/types/maneuver_unvalidated_publish_params.py +2238 -0
- unifieddatalibrary/types/maneuvers/__init__.py +9 -0
- unifieddatalibrary/types/maneuvers/history_aodr_params.py +48 -0
- unifieddatalibrary/types/maneuvers/history_count_params.py +20 -0
- unifieddatalibrary/types/maneuvers/history_count_response.py +7 -0
- unifieddatalibrary/types/maneuvers/history_list_params.py +28 -0
- unifieddatalibrary/types/maneuvers/history_list_response.py +10 -0
- unifieddatalibrary/types/manifold_count_response.py +7 -0
- unifieddatalibrary/types/manifold_create_bulk_params.py +72 -0
- unifieddatalibrary/types/manifold_create_params.py +67 -0
- unifieddatalibrary/types/manifold_get_response.py +96 -0
- unifieddatalibrary/types/manifold_list_response.py +87 -0
- unifieddatalibrary/types/manifold_tuple_params.py +17 -0
- unifieddatalibrary/types/manifold_tuple_response.py +99 -0
- unifieddatalibrary/types/manifold_update_params.py +67 -0
- unifieddatalibrary/types/manifoldelset_count_params.py +19 -0
- unifieddatalibrary/types/manifoldelset_count_response.py +7 -0
- unifieddatalibrary/types/manifoldelset_create_bulk_params.py +146 -0
- unifieddatalibrary/types/manifoldelset_create_params.py +142 -0
- unifieddatalibrary/types/manifoldelset_get_response.py +181 -0
- unifieddatalibrary/types/manifoldelset_list_params.py +19 -0
- unifieddatalibrary/types/manifoldelset_list_response.py +172 -0
- unifieddatalibrary/types/manifoldelset_tuple_params.py +27 -0
- unifieddatalibrary/types/manifoldelset_tuple_response.py +184 -0
- unifieddatalibrary/types/manifoldelset_update_params.py +142 -0
- unifieddatalibrary/types/missile_track_count_params.py +19 -0
- unifieddatalibrary/types/missile_track_count_response.py +7 -0
- unifieddatalibrary/types/missile_track_create_bulk_params.py +588 -0
- unifieddatalibrary/types/missile_track_list_params.py +19 -0
- unifieddatalibrary/types/missile_track_list_response.py +598 -0
- unifieddatalibrary/types/missile_track_tuple_params.py +27 -0
- unifieddatalibrary/types/missile_track_tuple_response.py +10 -0
- unifieddatalibrary/types/missile_track_unvalidated_publish_params.py +588 -0
- unifieddatalibrary/types/missile_tracks/__init__.py +9 -0
- unifieddatalibrary/types/missile_tracks/history_aodr_params.py +47 -0
- unifieddatalibrary/types/missile_tracks/history_count_params.py +19 -0
- unifieddatalibrary/types/missile_tracks/history_count_response.py +7 -0
- unifieddatalibrary/types/missile_tracks/history_query_params.py +27 -0
- unifieddatalibrary/types/missile_tracks/history_query_response.py +10 -0
- unifieddatalibrary/types/missionassignment/__init__.py +9 -0
- unifieddatalibrary/types/missionassignment/history_aodr_params.py +47 -0
- unifieddatalibrary/types/missionassignment/history_count_params.py +19 -0
- unifieddatalibrary/types/missionassignment/history_count_response.py +7 -0
- unifieddatalibrary/types/missionassignment/history_query_params.py +27 -0
- unifieddatalibrary/types/missionassignment/history_query_response.py +10 -0
- unifieddatalibrary/types/missionassignment_count_params.py +19 -0
- unifieddatalibrary/types/missionassignment_count_response.py +7 -0
- unifieddatalibrary/types/missionassignment_create_bulk_params.py +231 -0
- unifieddatalibrary/types/missionassignment_create_params.py +227 -0
- unifieddatalibrary/types/missionassignment_list_params.py +19 -0
- unifieddatalibrary/types/missionassignment_list_response.py +245 -0
- unifieddatalibrary/types/missionassignment_tuple_params.py +27 -0
- unifieddatalibrary/types/missionassignment_tuple_response.py +10 -0
- unifieddatalibrary/types/missionassignment_update_params.py +227 -0
- unifieddatalibrary/types/monoradar_count_params.py +19 -0
- unifieddatalibrary/types/monoradar_count_response.py +7 -0
- unifieddatalibrary/types/monoradar_create_bulk_params.py +285 -0
- unifieddatalibrary/types/monoradar_list_params.py +19 -0
- unifieddatalibrary/types/monoradar_list_response.py +296 -0
- unifieddatalibrary/types/monoradar_tuple_params.py +27 -0
- unifieddatalibrary/types/monoradar_tuple_response.py +10 -0
- unifieddatalibrary/types/mti_count_params.py +16 -0
- unifieddatalibrary/types/mti_count_response.py +7 -0
- unifieddatalibrary/types/mti_create_bulk_params.py +911 -0
- unifieddatalibrary/types/mti_list_params.py +16 -0
- unifieddatalibrary/types/mti_list_response.py +919 -0
- unifieddatalibrary/types/mti_tuple_params.py +24 -0
- unifieddatalibrary/types/mti_tuple_response.py +10 -0
- unifieddatalibrary/types/mti_unvalidated_publish_params.py +911 -0
- unifieddatalibrary/types/navigation_count_response.py +7 -0
- unifieddatalibrary/types/navigation_create_params.py +62 -0
- unifieddatalibrary/types/navigation_get_response.py +88 -0
- unifieddatalibrary/types/navigation_list_response.py +74 -0
- unifieddatalibrary/types/navigation_tuple_params.py +17 -0
- unifieddatalibrary/types/navigation_tuple_response.py +91 -0
- unifieddatalibrary/types/navigation_update_params.py +62 -0
- unifieddatalibrary/types/navigationalobstruction_count_params.py +25 -0
- unifieddatalibrary/types/navigationalobstruction_count_response.py +7 -0
- unifieddatalibrary/types/navigationalobstruction_create_bulk_params.py +387 -0
- unifieddatalibrary/types/navigationalobstruction_create_params.py +383 -0
- unifieddatalibrary/types/navigationalobstruction_get_response.py +421 -0
- unifieddatalibrary/types/navigationalobstruction_list_params.py +25 -0
- unifieddatalibrary/types/navigationalobstruction_list_response.py +415 -0
- unifieddatalibrary/types/navigationalobstruction_tuple_params.py +33 -0
- unifieddatalibrary/types/navigationalobstruction_tuple_response.py +424 -0
- unifieddatalibrary/types/navigationalobstruction_update_params.py +383 -0
- unifieddatalibrary/types/notification_count_params.py +16 -0
- unifieddatalibrary/types/notification_count_response.py +7 -0
- unifieddatalibrary/types/notification_create_params.py +64 -0
- unifieddatalibrary/types/notification_create_raw_params.py +51 -0
- unifieddatalibrary/types/notification_list_params.py +16 -0
- unifieddatalibrary/types/notification_list_response.py +87 -0
- unifieddatalibrary/types/notification_tuple_params.py +24 -0
- unifieddatalibrary/types/notification_tuple_response.py +10 -0
- unifieddatalibrary/types/objectofinterest_count_response.py +7 -0
- unifieddatalibrary/types/objectofinterest_create_params.py +234 -0
- unifieddatalibrary/types/objectofinterest_get_response.py +346 -0
- unifieddatalibrary/types/objectofinterest_list_response.py +242 -0
- unifieddatalibrary/types/objectofinterest_tuple_params.py +17 -0
- unifieddatalibrary/types/objectofinterest_tuple_response.py +353 -0
- unifieddatalibrary/types/objectofinterest_update_params.py +234 -0
- unifieddatalibrary/types/observations/__init__.py +16 -0
- unifieddatalibrary/types/observations/ecpsdr.py +280 -0
- unifieddatalibrary/types/observations/ecpsdr_abridged.py +267 -0
- unifieddatalibrary/types/observations/ecpsdr_count_params.py +19 -0
- unifieddatalibrary/types/observations/ecpsdr_count_response.py +7 -0
- unifieddatalibrary/types/observations/ecpsdr_create_bulk_params.py +253 -0
- unifieddatalibrary/types/observations/ecpsdr_create_params.py +249 -0
- unifieddatalibrary/types/observations/ecpsdr_list_params.py +19 -0
- unifieddatalibrary/types/observations/ecpsdr_list_response.py +10 -0
- unifieddatalibrary/types/observations/ecpsdr_tuple_params.py +27 -0
- unifieddatalibrary/types/observations/ecpsdr_tuple_response.py +10 -0
- unifieddatalibrary/types/observations/monoradar/__init__.py +9 -0
- unifieddatalibrary/types/observations/monoradar/history_aodr_params.py +47 -0
- unifieddatalibrary/types/observations/monoradar/history_count_params.py +19 -0
- unifieddatalibrary/types/observations/monoradar/history_count_response.py +7 -0
- unifieddatalibrary/types/observations/monoradar/history_query_params.py +27 -0
- unifieddatalibrary/types/observations/monoradar/history_query_response.py +10 -0
- unifieddatalibrary/types/observations/monoradar_unvalidated_publish_params.py +285 -0
- unifieddatalibrary/types/observations/radarobservation/__init__.py +9 -0
- unifieddatalibrary/types/observations/radarobservation/history_aodr_params.py +47 -0
- unifieddatalibrary/types/observations/radarobservation/history_count_params.py +19 -0
- unifieddatalibrary/types/observations/radarobservation/history_count_response.py +7 -0
- unifieddatalibrary/types/observations/radarobservation/history_list_params.py +27 -0
- unifieddatalibrary/types/observations/radarobservation/history_list_response.py +10 -0
- unifieddatalibrary/types/observations/rfobservation/__init__.py +7 -0
- unifieddatalibrary/types/observations/rfobservation/history_aodr_params.py +47 -0
- unifieddatalibrary/types/observations/rfobservation/history_list_params.py +27 -0
- unifieddatalibrary/types/observations/rfobservation/history_list_response.py +10 -0
- unifieddatalibrary/types/observations/swir_unvalidated_publish_params.py +108 -0
- unifieddatalibrary/types/onboardnavigation_count_params.py +19 -0
- unifieddatalibrary/types/onboardnavigation_count_response.py +7 -0
- unifieddatalibrary/types/onboardnavigation_create_bulk_params.py +125 -0
- unifieddatalibrary/types/onboardnavigation_list_params.py +19 -0
- unifieddatalibrary/types/onboardnavigation_list_response.py +142 -0
- unifieddatalibrary/types/onboardnavigation_tuple_params.py +27 -0
- unifieddatalibrary/types/onboardnavigation_tuple_response.py +10 -0
- unifieddatalibrary/types/onboardnavigation_unvalidated_publish_params.py +125 -0
- unifieddatalibrary/types/onorbit/__init__.py +9 -0
- unifieddatalibrary/types/onorbit/antenna_detail_create_params.py +112 -0
- unifieddatalibrary/types/onorbit/antenna_detail_list_response.py +10 -0
- unifieddatalibrary/types/onorbit/antenna_detail_update_params.py +112 -0
- unifieddatalibrary/types/onorbit/antenna_details_abridged.py +119 -0
- unifieddatalibrary/types/onorbit/antenna_details_full.py +146 -0
- unifieddatalibrary/types/onorbit_count_response.py +7 -0
- unifieddatalibrary/types/onorbit_create_params.py +125 -0
- unifieddatalibrary/types/onorbit_get_signature_params.py +14 -0
- unifieddatalibrary/types/onorbit_get_signature_response.py +750 -0
- unifieddatalibrary/types/onorbit_list_response.py +145 -0
- unifieddatalibrary/types/onorbit_tuple_params.py +17 -0
- unifieddatalibrary/types/onorbit_tuple_response.py +10 -0
- unifieddatalibrary/types/onorbit_update_params.py +125 -0
- unifieddatalibrary/types/onorbitantenna_create_params.py +94 -0
- unifieddatalibrary/types/onorbitantenna_get_response.py +85 -0
- unifieddatalibrary/types/onorbitantenna_list_response.py +79 -0
- unifieddatalibrary/types/onorbitantenna_update_params.py +94 -0
- unifieddatalibrary/types/onorbitbattery_create_params.py +93 -0
- unifieddatalibrary/types/onorbitbattery_get_response.py +84 -0
- unifieddatalibrary/types/onorbitbattery_list_response.py +78 -0
- unifieddatalibrary/types/onorbitbattery_update_params.py +93 -0
- unifieddatalibrary/types/onorbitdetail_create_params.py +208 -0
- unifieddatalibrary/types/onorbitdetail_get_response.py +232 -0
- unifieddatalibrary/types/onorbitdetail_list_response.py +226 -0
- unifieddatalibrary/types/onorbitdetail_update_params.py +208 -0
- unifieddatalibrary/types/onorbitevent_count_response.py +7 -0
- unifieddatalibrary/types/onorbitevent_create_params.py +209 -0
- unifieddatalibrary/types/onorbitevent_get_response.py +237 -0
- unifieddatalibrary/types/onorbitevent_list_response.py +227 -0
- unifieddatalibrary/types/onorbitevent_tuple_params.py +17 -0
- unifieddatalibrary/types/onorbitevent_tuple_response.py +240 -0
- unifieddatalibrary/types/onorbitevent_update_params.py +209 -0
- unifieddatalibrary/types/onorbitlist_count_response.py +7 -0
- unifieddatalibrary/types/onorbitlist_create_params.py +55 -0
- unifieddatalibrary/types/onorbitlist_get_response.py +74 -0
- unifieddatalibrary/types/onorbitlist_list_response.py +68 -0
- unifieddatalibrary/types/onorbitlist_tuple_params.py +17 -0
- unifieddatalibrary/types/onorbitlist_tuple_response.py +77 -0
- unifieddatalibrary/types/onorbitlist_update_params.py +55 -0
- unifieddatalibrary/types/onorbitsolararray_create_params.py +100 -0
- unifieddatalibrary/types/onorbitsolararray_get_response.py +158 -0
- unifieddatalibrary/types/onorbitsolararray_list_response.py +139 -0
- unifieddatalibrary/types/onorbitsolararray_update_params.py +100 -0
- unifieddatalibrary/types/onorbitthruster_create_params.py +108 -0
- unifieddatalibrary/types/onorbitthruster_get_response.py +96 -0
- unifieddatalibrary/types/onorbitthruster_list_response.py +90 -0
- unifieddatalibrary/types/onorbitthruster_update_params.py +108 -0
- unifieddatalibrary/types/onorbitthrusterstatus/__init__.py +6 -0
- unifieddatalibrary/types/onorbitthrusterstatus/history_count_params.py +29 -0
- unifieddatalibrary/types/onorbitthrusterstatus/history_count_response.py +7 -0
- unifieddatalibrary/types/onorbitthrusterstatus_count_params.py +29 -0
- unifieddatalibrary/types/onorbitthrusterstatus_count_response.py +7 -0
- unifieddatalibrary/types/onorbitthrusterstatus_create_bulk_params.py +111 -0
- unifieddatalibrary/types/onorbitthrusterstatus_create_params.py +107 -0
- unifieddatalibrary/types/onorbitthrusterstatus_list_params.py +29 -0
- unifieddatalibrary/types/onorbitthrusterstatus_list_response.py +125 -0
- unifieddatalibrary/types/onorbitthrusterstatus_tuple_params.py +37 -0
- unifieddatalibrary/types/onorbitthrusterstatus_tuple_response.py +10 -0
- unifieddatalibrary/types/operatingunit_count_response.py +7 -0
- unifieddatalibrary/types/operatingunit_create_params.py +469 -0
- unifieddatalibrary/types/operatingunit_get_response.py +585 -0
- unifieddatalibrary/types/operatingunit_list_response.py +481 -0
- unifieddatalibrary/types/operatingunit_tuple_params.py +17 -0
- unifieddatalibrary/types/operatingunit_tuple_response.py +594 -0
- unifieddatalibrary/types/operatingunit_update_params.py +469 -0
- unifieddatalibrary/types/operatingunitremark_count_response.py +7 -0
- unifieddatalibrary/types/operatingunitremark_create_bulk_params.py +72 -0
- unifieddatalibrary/types/operatingunitremark_create_params.py +67 -0
- unifieddatalibrary/types/operatingunitremark_get_response.py +87 -0
- unifieddatalibrary/types/operatingunitremark_list_response.py +81 -0
- unifieddatalibrary/types/operatingunitremark_tuple_params.py +17 -0
- unifieddatalibrary/types/operatingunitremark_tuple_response.py +90 -0
- unifieddatalibrary/types/orbitdetermination/__init__.py +9 -0
- unifieddatalibrary/types/orbitdetermination/history_aodr_params.py +57 -0
- unifieddatalibrary/types/orbitdetermination/history_count_params.py +29 -0
- unifieddatalibrary/types/orbitdetermination/history_count_response.py +7 -0
- unifieddatalibrary/types/orbitdetermination/history_list_params.py +37 -0
- unifieddatalibrary/types/orbitdetermination/history_list_response.py +10 -0
- unifieddatalibrary/types/orbitdetermination_count_params.py +29 -0
- unifieddatalibrary/types/orbitdetermination_count_response.py +7 -0
- unifieddatalibrary/types/orbitdetermination_create_bulk_params.py +1110 -0
- unifieddatalibrary/types/orbitdetermination_create_params.py +1106 -0
- unifieddatalibrary/types/orbitdetermination_list_params.py +29 -0
- unifieddatalibrary/types/orbitdetermination_list_response.py +1149 -0
- unifieddatalibrary/types/orbitdetermination_tuple_params.py +37 -0
- unifieddatalibrary/types/orbitdetermination_tuple_response.py +10 -0
- unifieddatalibrary/types/orbitdetermination_unvalidated_publish_params.py +1110 -0
- unifieddatalibrary/types/orbittrack/__init__.py +9 -0
- unifieddatalibrary/types/orbittrack/history_aodr_params.py +47 -0
- unifieddatalibrary/types/orbittrack/history_count_params.py +19 -0
- unifieddatalibrary/types/orbittrack/history_count_response.py +7 -0
- unifieddatalibrary/types/orbittrack/history_list_params.py +27 -0
- unifieddatalibrary/types/orbittrack/history_list_response.py +10 -0
- unifieddatalibrary/types/orbittrack_count_params.py +19 -0
- unifieddatalibrary/types/orbittrack_count_response.py +7 -0
- unifieddatalibrary/types/orbittrack_create_bulk_params.py +343 -0
- unifieddatalibrary/types/orbittrack_list_params.py +19 -0
- unifieddatalibrary/types/orbittrack_list_response.py +352 -0
- unifieddatalibrary/types/orbittrack_tuple_params.py +27 -0
- unifieddatalibrary/types/orbittrack_tuple_response.py +10 -0
- unifieddatalibrary/types/orbittrack_unvalidated_publish_params.py +343 -0
- unifieddatalibrary/types/organization_count_response.py +7 -0
- unifieddatalibrary/types/organization_create_params.py +87 -0
- unifieddatalibrary/types/organization_details_full.py +202 -0
- unifieddatalibrary/types/organization_full.py +121 -0
- unifieddatalibrary/types/organization_get_organization_categories_response.py +8 -0
- unifieddatalibrary/types/organization_get_organization_types_response.py +8 -0
- unifieddatalibrary/types/organization_list_response.py +107 -0
- unifieddatalibrary/types/organization_tuple_params.py +17 -0
- unifieddatalibrary/types/organization_tuple_response.py +10 -0
- unifieddatalibrary/types/organization_update_params.py +87 -0
- unifieddatalibrary/types/organizationdetail_create_params.py +180 -0
- unifieddatalibrary/types/organizationdetail_find_by_source_params.py +15 -0
- unifieddatalibrary/types/organizationdetail_find_by_source_response.py +187 -0
- unifieddatalibrary/types/organizationdetail_list_params.py +12 -0
- unifieddatalibrary/types/organizationdetail_list_response.py +187 -0
- unifieddatalibrary/types/organizationdetail_update_params.py +180 -0
- unifieddatalibrary/types/passiveradarobservation/__init__.py +9 -0
- unifieddatalibrary/types/passiveradarobservation/history_aodr_params.py +47 -0
- unifieddatalibrary/types/passiveradarobservation/history_count_params.py +19 -0
- unifieddatalibrary/types/passiveradarobservation/history_count_response.py +7 -0
- unifieddatalibrary/types/passiveradarobservation/history_list_params.py +27 -0
- unifieddatalibrary/types/passiveradarobservation/history_list_response.py +10 -0
- unifieddatalibrary/types/passiveradarobservation_count_params.py +19 -0
- unifieddatalibrary/types/passiveradarobservation_count_response.py +7 -0
- unifieddatalibrary/types/passiveradarobservation_create_bulk_params.py +303 -0
- unifieddatalibrary/types/passiveradarobservation_create_params.py +299 -0
- unifieddatalibrary/types/passiveradarobservation_file_create_params.py +303 -0
- unifieddatalibrary/types/passiveradarobservation_list_params.py +19 -0
- unifieddatalibrary/types/passiveradarobservation_list_response.py +329 -0
- unifieddatalibrary/types/passiveradarobservation_tuple_params.py +27 -0
- unifieddatalibrary/types/passiveradarobservation_tuple_response.py +10 -0
- unifieddatalibrary/types/personnel_recovery_full_l.py +354 -0
- unifieddatalibrary/types/personnelrecovery/__init__.py +8 -0
- unifieddatalibrary/types/personnelrecovery/history_count_params.py +19 -0
- unifieddatalibrary/types/personnelrecovery/history_count_response.py +7 -0
- unifieddatalibrary/types/personnelrecovery/history_list_params.py +27 -0
- unifieddatalibrary/types/personnelrecovery/history_list_response.py +10 -0
- unifieddatalibrary/types/personnelrecovery_count_params.py +19 -0
- unifieddatalibrary/types/personnelrecovery_count_response.py +7 -0
- unifieddatalibrary/types/personnelrecovery_create_bulk_params.py +344 -0
- unifieddatalibrary/types/personnelrecovery_create_params.py +339 -0
- unifieddatalibrary/types/personnelrecovery_file_create_params.py +344 -0
- unifieddatalibrary/types/personnelrecovery_list_params.py +19 -0
- unifieddatalibrary/types/personnelrecovery_list_response.py +368 -0
- unifieddatalibrary/types/personnelrecovery_tuple_params.py +27 -0
- unifieddatalibrary/types/personnelrecovery_tuple_response.py +10 -0
- unifieddatalibrary/types/poi_count_params.py +16 -0
- unifieddatalibrary/types/poi_count_response.py +7 -0
- unifieddatalibrary/types/poi_create_bulk_params.py +266 -0
- unifieddatalibrary/types/poi_create_params.py +262 -0
- unifieddatalibrary/types/poi_list_params.py +16 -0
- unifieddatalibrary/types/poi_list_response.py +251 -0
- unifieddatalibrary/types/poi_tuple_params.py +24 -0
- unifieddatalibrary/types/poi_tuple_response.py +10 -0
- unifieddatalibrary/types/poi_unvalidated_publish_params.py +266 -0
- unifieddatalibrary/types/port_count_response.py +7 -0
- unifieddatalibrary/types/port_create_bulk_params.py +143 -0
- unifieddatalibrary/types/port_create_params.py +138 -0
- unifieddatalibrary/types/port_get_response.py +171 -0
- unifieddatalibrary/types/port_list_response.py +158 -0
- unifieddatalibrary/types/port_tuple_params.py +17 -0
- unifieddatalibrary/types/port_tuple_response.py +174 -0
- unifieddatalibrary/types/port_update_params.py +138 -0
- unifieddatalibrary/types/radarobservation_count_params.py +19 -0
- unifieddatalibrary/types/radarobservation_count_response.py +7 -0
- unifieddatalibrary/types/radarobservation_create_bulk_params.py +330 -0
- unifieddatalibrary/types/radarobservation_create_params.py +326 -0
- unifieddatalibrary/types/radarobservation_list_params.py +19 -0
- unifieddatalibrary/types/radarobservation_list_response.py +351 -0
- unifieddatalibrary/types/radarobservation_tuple_params.py +27 -0
- unifieddatalibrary/types/radarobservation_tuple_response.py +10 -0
- unifieddatalibrary/types/radarobservation_unvalidated_publish_params.py +330 -0
- unifieddatalibrary/types/report_and_activity/__init__.py +8 -0
- unifieddatalibrary/types/report_and_activity/poi/__init__.py +9 -0
- unifieddatalibrary/types/report_and_activity/poi/history_aodr_params.py +44 -0
- unifieddatalibrary/types/report_and_activity/poi/history_count_params.py +16 -0
- unifieddatalibrary/types/report_and_activity/poi/history_count_response.py +7 -0
- unifieddatalibrary/types/report_and_activity/poi/history_list_params.py +24 -0
- unifieddatalibrary/types/report_and_activity/poi/history_list_response.py +10 -0
- unifieddatalibrary/types/report_and_activity/udl_h3geo_unvalidated_publish_params.py +197 -0
- unifieddatalibrary/types/report_and_activity/udl_sigact_unvalidated_publish_params.py +430 -0
- unifieddatalibrary/types/rfband_count_response.py +7 -0
- unifieddatalibrary/types/rfband_create_params.py +124 -0
- unifieddatalibrary/types/rfband_get_response.py +150 -0
- unifieddatalibrary/types/rfband_list_response.py +144 -0
- unifieddatalibrary/types/rfband_tuple_params.py +17 -0
- unifieddatalibrary/types/rfband_tuple_response.py +153 -0
- unifieddatalibrary/types/rfband_update_params.py +124 -0
- unifieddatalibrary/types/rfbandtype_count_response.py +7 -0
- unifieddatalibrary/types/rfbandtype_create_params.py +54 -0
- unifieddatalibrary/types/rfbandtype_get_response.py +74 -0
- unifieddatalibrary/types/rfbandtype_list_response.py +68 -0
- unifieddatalibrary/types/rfbandtype_tuple_params.py +17 -0
- unifieddatalibrary/types/rfbandtype_tuple_response.py +77 -0
- unifieddatalibrary/types/rfbandtype_update_params.py +54 -0
- unifieddatalibrary/types/rfemitter_count_response.py +7 -0
- unifieddatalibrary/types/rfemitter_create_params.py +62 -0
- unifieddatalibrary/types/rfemitter_get_response.py +262 -0
- unifieddatalibrary/types/rfemitter_list_response.py +74 -0
- unifieddatalibrary/types/rfemitter_tuple_params.py +17 -0
- unifieddatalibrary/types/rfemitter_tuple_response.py +267 -0
- unifieddatalibrary/types/rfemitter_update_params.py +62 -0
- unifieddatalibrary/types/rfemitterdetail_count_response.py +7 -0
- unifieddatalibrary/types/rfemitterdetail_create_params.py +141 -0
- unifieddatalibrary/types/rfemitterdetail_get_response.py +182 -0
- unifieddatalibrary/types/rfemitterdetail_list_response.py +160 -0
- unifieddatalibrary/types/rfemitterdetail_tuple_params.py +17 -0
- unifieddatalibrary/types/rfemitterdetail_tuple_response.py +185 -0
- unifieddatalibrary/types/rfemitterdetail_update_params.py +141 -0
- unifieddatalibrary/types/rfobservation/__init__.py +6 -0
- unifieddatalibrary/types/rfobservation/history_count_params.py +19 -0
- unifieddatalibrary/types/rfobservation/history_count_response.py +7 -0
- unifieddatalibrary/types/rfobservation_count_params.py +19 -0
- unifieddatalibrary/types/rfobservation_count_response.py +7 -0
- unifieddatalibrary/types/rfobservation_create_bulk_params.py +430 -0
- unifieddatalibrary/types/rfobservation_create_params.py +426 -0
- unifieddatalibrary/types/rfobservation_list_params.py +19 -0
- unifieddatalibrary/types/rfobservation_list_response.py +382 -0
- unifieddatalibrary/types/rfobservation_tuple_params.py +27 -0
- unifieddatalibrary/types/rfobservation_tuple_response.py +395 -0
- unifieddatalibrary/types/rfobservation_unvalidated_publish_params.py +430 -0
- unifieddatalibrary/types/routestat_count_response.py +7 -0
- unifieddatalibrary/types/routestat_create_bulk_params.py +168 -0
- unifieddatalibrary/types/routestat_create_params.py +164 -0
- unifieddatalibrary/types/routestat_query_response.py +189 -0
- unifieddatalibrary/types/routestat_retrieve_response.py +195 -0
- unifieddatalibrary/types/routestat_tuple_params.py +17 -0
- unifieddatalibrary/types/routestat_tuple_response.py +198 -0
- unifieddatalibrary/types/routestat_unvalidated_publish_params.py +168 -0
- unifieddatalibrary/types/routestat_update_params.py +164 -0
- unifieddatalibrary/types/sarobservation/__init__.py +9 -0
- unifieddatalibrary/types/sarobservation/history_aodr_params.py +47 -0
- unifieddatalibrary/types/sarobservation/history_count_params.py +19 -0
- unifieddatalibrary/types/sarobservation/history_count_response.py +7 -0
- unifieddatalibrary/types/sarobservation/history_retrieve_params.py +27 -0
- unifieddatalibrary/types/sarobservation/history_retrieve_response.py +10 -0
- unifieddatalibrary/types/sarobservation_count_params.py +19 -0
- unifieddatalibrary/types/sarobservation_count_response.py +7 -0
- unifieddatalibrary/types/sarobservation_create_bulk_params.py +349 -0
- unifieddatalibrary/types/sarobservation_create_params.py +345 -0
- unifieddatalibrary/types/sarobservation_list_params.py +19 -0
- unifieddatalibrary/types/sarobservation_list_response.py +361 -0
- unifieddatalibrary/types/sarobservation_tuple_params.py +27 -0
- unifieddatalibrary/types/sarobservation_tuple_response.py +10 -0
- unifieddatalibrary/types/sarobservation_unvalidated_publish_params.py +349 -0
- unifieddatalibrary/types/sc_aggregate_doc_type_response.py +8 -0
- unifieddatalibrary/types/sc_allowable_file_extensions_response.py +8 -0
- unifieddatalibrary/types/sc_allowable_file_mimes_response.py +8 -0
- unifieddatalibrary/types/sc_copy_params.py +17 -0
- unifieddatalibrary/types/sc_copy_response.py +7 -0
- unifieddatalibrary/types/sc_delete_params.py +12 -0
- unifieddatalibrary/types/sc_download_params.py +12 -0
- unifieddatalibrary/types/sc_file_download_params.py +12 -0
- unifieddatalibrary/types/sc_file_upload_params.py +32 -0
- unifieddatalibrary/types/sc_file_upload_response.py +7 -0
- unifieddatalibrary/types/sc_move_params.py +17 -0
- unifieddatalibrary/types/sc_move_response.py +7 -0
- unifieddatalibrary/types/sc_rename_params.py +17 -0
- unifieddatalibrary/types/sc_search_params.py +31 -0
- unifieddatalibrary/types/sc_search_response.py +10 -0
- unifieddatalibrary/types/sc_update_tags_params.py +15 -0
- unifieddatalibrary/types/scientific_count_response.py +7 -0
- unifieddatalibrary/types/scientific_create_params.py +77 -0
- unifieddatalibrary/types/scientific_get_response.py +103 -0
- unifieddatalibrary/types/scientific_list_response.py +89 -0
- unifieddatalibrary/types/scientific_tuple_params.py +17 -0
- unifieddatalibrary/types/scientific_tuple_response.py +106 -0
- unifieddatalibrary/types/scientific_update_params.py +77 -0
- unifieddatalibrary/types/scs/__init__.py +27 -0
- unifieddatalibrary/types/scs/attachment.py +25 -0
- unifieddatalibrary/types/scs/classification_marking_list_response.py +8 -0
- unifieddatalibrary/types/scs/file_list_params.py +18 -0
- unifieddatalibrary/types/scs/file_metadata_list_response.py +8 -0
- unifieddatalibrary/types/scs/file_retrieve_params.py +12 -0
- unifieddatalibrary/types/scs/file_update_params.py +15 -0
- unifieddatalibrary/types/scs/folder_create_params.py +29 -0
- unifieddatalibrary/types/scs/folder_create_response.py +7 -0
- unifieddatalibrary/types/scs/folder_retrieve_params.py +12 -0
- unifieddatalibrary/types/scs/folder_update_params.py +86 -0
- unifieddatalibrary/types/scs/group_list_response.py +8 -0
- unifieddatalibrary/types/scs/path_create_params.py +29 -0
- unifieddatalibrary/types/scs/path_create_response.py +7 -0
- unifieddatalibrary/types/scs/range_parameter_list_response.py +8 -0
- unifieddatalibrary/types/scs/scs_entity.py +64 -0
- unifieddatalibrary/types/scs/v2_copy_params.py +17 -0
- unifieddatalibrary/types/scs/v2_delete_params.py +12 -0
- unifieddatalibrary/types/scs/v2_file_upload_params.py +39 -0
- unifieddatalibrary/types/scs/v2_folder_create_params.py +45 -0
- unifieddatalibrary/types/scs/v2_list_params.py +12 -0
- unifieddatalibrary/types/scs/v2_list_response.py +10 -0
- unifieddatalibrary/types/scs/v2_move_params.py +20 -0
- unifieddatalibrary/types/scs/v2_update_params.py +41 -0
- unifieddatalibrary/types/secure_messaging_list_topics_response.py +10 -0
- unifieddatalibrary/types/sensor/__init__.py +16 -0
- unifieddatalibrary/types/sensor/calibration/__init__.py +9 -0
- unifieddatalibrary/types/sensor/calibration/history_count_params.py +19 -0
- unifieddatalibrary/types/sensor/calibration/history_count_response.py +7 -0
- unifieddatalibrary/types/sensor/calibration/history_query_params.py +27 -0
- unifieddatalibrary/types/sensor/calibration/history_query_response.py +303 -0
- unifieddatalibrary/types/sensor/calibration/history_write_aodr_params.py +47 -0
- unifieddatalibrary/types/sensor/calibration_count_params.py +19 -0
- unifieddatalibrary/types/sensor/calibration_count_response.py +7 -0
- unifieddatalibrary/types/sensor/calibration_create_bulk_params.py +282 -0
- unifieddatalibrary/types/sensor/calibration_create_params.py +278 -0
- unifieddatalibrary/types/sensor/calibration_query_params.py +19 -0
- unifieddatalibrary/types/sensor/calibration_query_response.py +303 -0
- unifieddatalibrary/types/sensor/calibration_retrieve_response.py +300 -0
- unifieddatalibrary/types/sensor/calibration_tuple_params.py +27 -0
- unifieddatalibrary/types/sensor/calibration_tuple_response.py +303 -0
- unifieddatalibrary/types/sensor/calibration_unvalidated_publish_params.py +282 -0
- unifieddatalibrary/types/sensor_count_response.py +7 -0
- unifieddatalibrary/types/sensor_create_params.py +854 -0
- unifieddatalibrary/types/sensor_get_response.py +2597 -0
- unifieddatalibrary/types/sensor_list_response.py +1054 -0
- unifieddatalibrary/types/sensor_tuple_params.py +17 -0
- unifieddatalibrary/types/sensor_tuple_response.py +2613 -0
- unifieddatalibrary/types/sensor_update_params.py +854 -0
- unifieddatalibrary/types/sensormaintenance/__init__.py +9 -0
- unifieddatalibrary/types/sensormaintenance/history_aodr_params.py +53 -0
- unifieddatalibrary/types/sensormaintenance/history_count_params.py +25 -0
- unifieddatalibrary/types/sensormaintenance/history_count_response.py +7 -0
- unifieddatalibrary/types/sensormaintenance/history_retrieve_params.py +33 -0
- unifieddatalibrary/types/sensormaintenance/history_retrieve_response.py +10 -0
- unifieddatalibrary/types/sensormaintenance_count_params.py +25 -0
- unifieddatalibrary/types/sensormaintenance_count_response.py +7 -0
- unifieddatalibrary/types/sensormaintenance_create_bulk_params.py +136 -0
- unifieddatalibrary/types/sensormaintenance_create_params.py +126 -0
- unifieddatalibrary/types/sensormaintenance_current_response.py +10 -0
- unifieddatalibrary/types/sensormaintenance_list_params.py +25 -0
- unifieddatalibrary/types/sensormaintenance_list_response.py +147 -0
- unifieddatalibrary/types/sensormaintenance_tuple_params.py +33 -0
- unifieddatalibrary/types/sensormaintenance_tuple_response.py +10 -0
- unifieddatalibrary/types/sensormaintenance_update_params.py +126 -0
- unifieddatalibrary/types/sensorobservationtype_get_response.py +63 -0
- unifieddatalibrary/types/sensorobservationtype_list_response.py +37 -0
- unifieddatalibrary/types/sensorplan/__init__.py +9 -0
- unifieddatalibrary/types/sensorplan/history_aodr_params.py +47 -0
- unifieddatalibrary/types/sensorplan/history_count_params.py +19 -0
- unifieddatalibrary/types/sensorplan/history_count_response.py +7 -0
- unifieddatalibrary/types/sensorplan/history_retrieve_params.py +27 -0
- unifieddatalibrary/types/sensorplan/history_retrieve_response.py +10 -0
- unifieddatalibrary/types/sensorplan_count_params.py +19 -0
- unifieddatalibrary/types/sensorplan_count_response.py +7 -0
- unifieddatalibrary/types/sensorplan_create_params.py +1458 -0
- unifieddatalibrary/types/sensorplan_list_params.py +19 -0
- unifieddatalibrary/types/sensorplan_list_response.py +115 -0
- unifieddatalibrary/types/sensorplan_tuple_params.py +27 -0
- unifieddatalibrary/types/sensorplan_tuple_response.py +10 -0
- unifieddatalibrary/types/sensorplan_unvalidated_publish_params.py +1468 -0
- unifieddatalibrary/types/sensorplan_update_params.py +1458 -0
- unifieddatalibrary/types/sensortype_get_response.py +63 -0
- unifieddatalibrary/types/sensortype_list_response.py +37 -0
- unifieddatalibrary/types/seradatacommdetail_count_response.py +7 -0
- unifieddatalibrary/types/seradatacommdetail_create_params.py +140 -0
- unifieddatalibrary/types/seradatacommdetail_get_response.py +168 -0
- unifieddatalibrary/types/seradatacommdetail_list_response.py +162 -0
- unifieddatalibrary/types/seradatacommdetail_tuple_params.py +17 -0
- unifieddatalibrary/types/seradatacommdetail_tuple_response.py +171 -0
- unifieddatalibrary/types/seradatacommdetail_update_params.py +140 -0
- unifieddatalibrary/types/seradataearlywarning_count_response.py +7 -0
- unifieddatalibrary/types/seradataearlywarning_create_params.py +87 -0
- unifieddatalibrary/types/seradataearlywarning_get_response.py +115 -0
- unifieddatalibrary/types/seradataearlywarning_list_response.py +109 -0
- unifieddatalibrary/types/seradataearlywarning_tuple_params.py +17 -0
- unifieddatalibrary/types/seradataearlywarning_tuple_response.py +118 -0
- unifieddatalibrary/types/seradataearlywarning_update_params.py +87 -0
- unifieddatalibrary/types/seradatanavigation_count_response.py +7 -0
- unifieddatalibrary/types/seradatanavigation_create_params.py +84 -0
- unifieddatalibrary/types/seradatanavigation_get_response.py +110 -0
- unifieddatalibrary/types/seradatanavigation_list_response.py +104 -0
- unifieddatalibrary/types/seradatanavigation_tuple_params.py +17 -0
- unifieddatalibrary/types/seradatanavigation_tuple_response.py +113 -0
- unifieddatalibrary/types/seradatanavigation_update_params.py +84 -0
- unifieddatalibrary/types/seradataopticalpayload_count_response.py +7 -0
- unifieddatalibrary/types/seradataopticalpayload_create_params.py +105 -0
- unifieddatalibrary/types/seradataopticalpayload_get_response.py +131 -0
- unifieddatalibrary/types/seradataopticalpayload_list_response.py +125 -0
- unifieddatalibrary/types/seradataopticalpayload_tuple_params.py +17 -0
- unifieddatalibrary/types/seradataopticalpayload_tuple_response.py +134 -0
- unifieddatalibrary/types/seradataopticalpayload_update_params.py +105 -0
- unifieddatalibrary/types/seradataradarpayload_count_response.py +7 -0
- unifieddatalibrary/types/seradataradarpayload_create_params.py +126 -0
- unifieddatalibrary/types/seradataradarpayload_get_response.py +152 -0
- unifieddatalibrary/types/seradataradarpayload_list_response.py +146 -0
- unifieddatalibrary/types/seradataradarpayload_tuple_params.py +17 -0
- unifieddatalibrary/types/seradataradarpayload_tuple_response.py +155 -0
- unifieddatalibrary/types/seradataradarpayload_update_params.py +126 -0
- unifieddatalibrary/types/seradatasigintpayload_count_response.py +7 -0
- unifieddatalibrary/types/seradatasigintpayload_create_params.py +84 -0
- unifieddatalibrary/types/seradatasigintpayload_get_response.py +110 -0
- unifieddatalibrary/types/seradatasigintpayload_list_response.py +104 -0
- unifieddatalibrary/types/seradatasigintpayload_tuple_params.py +17 -0
- unifieddatalibrary/types/seradatasigintpayload_tuple_response.py +113 -0
- unifieddatalibrary/types/seradatasigintpayload_update_params.py +84 -0
- unifieddatalibrary/types/seradataspacecraftdetail_count_response.py +7 -0
- unifieddatalibrary/types/seradataspacecraftdetail_create_params.py +322 -0
- unifieddatalibrary/types/seradataspacecraftdetail_get_response.py +1982 -0
- unifieddatalibrary/types/seradataspacecraftdetail_list_response.py +344 -0
- unifieddatalibrary/types/seradataspacecraftdetail_tuple_params.py +17 -0
- unifieddatalibrary/types/seradataspacecraftdetail_tuple_response.py +2000 -0
- unifieddatalibrary/types/seradataspacecraftdetail_update_params.py +322 -0
- unifieddatalibrary/types/sgi/__init__.py +9 -0
- unifieddatalibrary/types/sgi/history_aodr_params.py +57 -0
- unifieddatalibrary/types/sgi/history_count_params.py +29 -0
- unifieddatalibrary/types/sgi/history_count_response.py +7 -0
- unifieddatalibrary/types/sgi/history_list_params.py +37 -0
- unifieddatalibrary/types/sgi/history_list_response.py +10 -0
- unifieddatalibrary/types/sgi_count_params.py +29 -0
- unifieddatalibrary/types/sgi_count_response.py +7 -0
- unifieddatalibrary/types/sgi_create_bulk_params.py +365 -0
- unifieddatalibrary/types/sgi_create_params.py +361 -0
- unifieddatalibrary/types/sgi_get_data_by_effective_as_of_date_params.py +29 -0
- unifieddatalibrary/types/sgi_list_params.py +29 -0
- unifieddatalibrary/types/sgi_list_response.py +351 -0
- unifieddatalibrary/types/sgi_tuple_params.py +37 -0
- unifieddatalibrary/types/sgi_tuple_response.py +10 -0
- unifieddatalibrary/types/sgi_unvalidated_publish_params.py +365 -0
- unifieddatalibrary/types/sgi_update_params.py +361 -0
- unifieddatalibrary/types/shared/__init__.py +17 -0
- unifieddatalibrary/types/shared/air_transport_mission_full.py +417 -0
- unifieddatalibrary/types/shared/aircraftstatus_full.py +293 -0
- unifieddatalibrary/types/shared/ais_full.py +290 -0
- unifieddatalibrary/types/shared/attitudeset_full.py +200 -0
- unifieddatalibrary/types/shared/collect_request_full.py +1491 -0
- unifieddatalibrary/types/shared/collect_response_full.py +196 -0
- unifieddatalibrary/types/shared/drift_history.py +65 -0
- unifieddatalibrary/types/shared/drifthistory_abridged.py +65 -0
- unifieddatalibrary/types/shared/eop_full.py +252 -0
- unifieddatalibrary/types/shared/ephemeris_full.py +161 -0
- unifieddatalibrary/types/shared/evac_full.py +619 -0
- unifieddatalibrary/types/shared/event_evolution_full.py +207 -0
- unifieddatalibrary/types/shared/file_data.py +86 -0
- unifieddatalibrary/types/shared/flight_plan_full.py +923 -0
- unifieddatalibrary/types/shared/onorbit.py +1799 -0
- unifieddatalibrary/types/shared_params/__init__.py +3 -0
- unifieddatalibrary/types/shared_params/file_data.py +86 -0
- unifieddatalibrary/types/sigact/__init__.py +8 -0
- unifieddatalibrary/types/sigact/history_count_params.py +16 -0
- unifieddatalibrary/types/sigact/history_count_response.py +7 -0
- unifieddatalibrary/types/sigact/history_list_params.py +24 -0
- unifieddatalibrary/types/sigact/history_list_response.py +10 -0
- unifieddatalibrary/types/sigact_count_params.py +16 -0
- unifieddatalibrary/types/sigact_count_response.py +7 -0
- unifieddatalibrary/types/sigact_create_bulk_params.py +430 -0
- unifieddatalibrary/types/sigact_list_params.py +16 -0
- unifieddatalibrary/types/sigact_list_response.py +448 -0
- unifieddatalibrary/types/sigact_tuple_params.py +24 -0
- unifieddatalibrary/types/sigact_tuple_response.py +10 -0
- unifieddatalibrary/types/sigact_upload_zip_params.py +14 -0
- unifieddatalibrary/types/site/__init__.py +15 -0
- unifieddatalibrary/types/site/operation_count_params.py +14 -0
- unifieddatalibrary/types/site/operation_count_response.py +7 -0
- unifieddatalibrary/types/site/operation_create_bulk_params.py +347 -0
- unifieddatalibrary/types/site/operation_create_params.py +342 -0
- unifieddatalibrary/types/site/operation_list_params.py +14 -0
- unifieddatalibrary/types/site/operation_list_response.py +382 -0
- unifieddatalibrary/types/site/operation_retrieve_response.py +370 -0
- unifieddatalibrary/types/site/operation_tuple_params.py +22 -0
- unifieddatalibrary/types/site/operation_tuple_response.py +382 -0
- unifieddatalibrary/types/site/operation_unvalidated_publish_params.py +347 -0
- unifieddatalibrary/types/site/operation_update_params.py +342 -0
- unifieddatalibrary/types/site_count_response.py +7 -0
- unifieddatalibrary/types/site_create_params.py +547 -0
- unifieddatalibrary/types/site_get_response.py +1017 -0
- unifieddatalibrary/types/site_list_response.py +557 -0
- unifieddatalibrary/types/site_tuple_params.py +17 -0
- unifieddatalibrary/types/site_tuple_response.py +1027 -0
- unifieddatalibrary/types/site_update_params.py +547 -0
- unifieddatalibrary/types/siteremark_count_response.py +7 -0
- unifieddatalibrary/types/siteremark_create_params.py +67 -0
- unifieddatalibrary/types/siteremark_get_response.py +84 -0
- unifieddatalibrary/types/siteremark_list_response.py +87 -0
- unifieddatalibrary/types/siteremark_tuple_params.py +17 -0
- unifieddatalibrary/types/siteremark_tuple_response.py +87 -0
- unifieddatalibrary/types/sitestatus/__init__.py +7 -0
- unifieddatalibrary/types/sitestatus/history_count_response.py +7 -0
- unifieddatalibrary/types/sitestatus/history_list_params.py +17 -0
- unifieddatalibrary/types/sitestatus/history_list_response.py +10 -0
- unifieddatalibrary/types/sitestatus_count_response.py +7 -0
- unifieddatalibrary/types/sitestatus_create_params.py +251 -0
- unifieddatalibrary/types/sitestatus_list_response.py +269 -0
- unifieddatalibrary/types/sitestatus_tuple_params.py +17 -0
- unifieddatalibrary/types/sitestatus_tuple_response.py +10 -0
- unifieddatalibrary/types/sitestatus_update_params.py +251 -0
- unifieddatalibrary/types/skyimagery/__init__.py +9 -0
- unifieddatalibrary/types/skyimagery/history_aodr_params.py +47 -0
- unifieddatalibrary/types/skyimagery/history_count_params.py +19 -0
- unifieddatalibrary/types/skyimagery/history_count_response.py +7 -0
- unifieddatalibrary/types/skyimagery/history_list_params.py +27 -0
- unifieddatalibrary/types/skyimagery/history_list_response.py +10 -0
- unifieddatalibrary/types/skyimagery_count_params.py +19 -0
- unifieddatalibrary/types/skyimagery_count_response.py +7 -0
- unifieddatalibrary/types/skyimagery_list_params.py +19 -0
- unifieddatalibrary/types/skyimagery_list_response.py +255 -0
- unifieddatalibrary/types/skyimagery_tuple_params.py +27 -0
- unifieddatalibrary/types/skyimagery_tuple_response.py +10 -0
- unifieddatalibrary/types/skyimagery_upload_zip_params.py +14 -0
- unifieddatalibrary/types/soiobservationset/__init__.py +10 -0
- unifieddatalibrary/types/soiobservationset/history_aodr_params.py +47 -0
- unifieddatalibrary/types/soiobservationset/history_count_params.py +19 -0
- unifieddatalibrary/types/soiobservationset/history_count_response.py +7 -0
- unifieddatalibrary/types/soiobservationset/history_list_params.py +27 -0
- unifieddatalibrary/types/soiobservationset/history_list_response.py +10 -0
- unifieddatalibrary/types/soiobservationset/soi_observation_set_full.py +849 -0
- unifieddatalibrary/types/soiobservationset_count_params.py +19 -0
- unifieddatalibrary/types/soiobservationset_count_response.py +7 -0
- unifieddatalibrary/types/soiobservationset_create_bulk_params.py +832 -0
- unifieddatalibrary/types/soiobservationset_create_params.py +822 -0
- unifieddatalibrary/types/soiobservationset_list_params.py +19 -0
- unifieddatalibrary/types/soiobservationset_list_response.py +479 -0
- unifieddatalibrary/types/soiobservationset_tuple_params.py +27 -0
- unifieddatalibrary/types/soiobservationset_tuple_response.py +10 -0
- unifieddatalibrary/types/soiobservationset_unvalidated_publish_params.py +832 -0
- unifieddatalibrary/types/solar_array_details_full.py +113 -0
- unifieddatalibrary/types/solararray_count_response.py +7 -0
- unifieddatalibrary/types/solararray_create_params.py +45 -0
- unifieddatalibrary/types/solararray_get_response.py +79 -0
- unifieddatalibrary/types/solararray_list_response.py +65 -0
- unifieddatalibrary/types/solararray_tuple_params.py +17 -0
- unifieddatalibrary/types/solararray_tuple_response.py +82 -0
- unifieddatalibrary/types/solararray_update_params.py +45 -0
- unifieddatalibrary/types/solararraydetail_create_params.py +79 -0
- unifieddatalibrary/types/solararraydetail_list_params.py +30 -0
- unifieddatalibrary/types/solararraydetail_list_response.py +89 -0
- unifieddatalibrary/types/solararraydetail_update_params.py +79 -0
- unifieddatalibrary/types/sortieppr/__init__.py +10 -0
- unifieddatalibrary/types/sortieppr/history_aodr_params.py +45 -0
- unifieddatalibrary/types/sortieppr/history_count_params.py +17 -0
- unifieddatalibrary/types/sortieppr/history_count_response.py +7 -0
- unifieddatalibrary/types/sortieppr/history_list_params.py +25 -0
- unifieddatalibrary/types/sortieppr/history_list_response.py +10 -0
- unifieddatalibrary/types/sortieppr/sortie_ppr_full.py +121 -0
- unifieddatalibrary/types/sortieppr_count_params.py +17 -0
- unifieddatalibrary/types/sortieppr_count_response.py +7 -0
- unifieddatalibrary/types/sortieppr_create_bulk_params.py +94 -0
- unifieddatalibrary/types/sortieppr_create_params.py +90 -0
- unifieddatalibrary/types/sortieppr_list_params.py +17 -0
- unifieddatalibrary/types/sortieppr_list_response.py +115 -0
- unifieddatalibrary/types/sortieppr_tuple_params.py +25 -0
- unifieddatalibrary/types/sortieppr_tuple_response.py +10 -0
- unifieddatalibrary/types/sortieppr_unvalidated_publish_params.py +94 -0
- unifieddatalibrary/types/sortieppr_update_params.py +90 -0
- unifieddatalibrary/types/spaceenvobservation/__init__.py +10 -0
- unifieddatalibrary/types/spaceenvobservation/history_aodr_params.py +47 -0
- unifieddatalibrary/types/spaceenvobservation/history_count_params.py +19 -0
- unifieddatalibrary/types/spaceenvobservation/history_count_response.py +7 -0
- unifieddatalibrary/types/spaceenvobservation/history_list_params.py +27 -0
- unifieddatalibrary/types/spaceenvobservation/history_list_response.py +10 -0
- unifieddatalibrary/types/spaceenvobservation/space_env_observation_full.py +303 -0
- unifieddatalibrary/types/spaceenvobservation_count_params.py +19 -0
- unifieddatalibrary/types/spaceenvobservation_count_response.py +7 -0
- unifieddatalibrary/types/spaceenvobservation_create_bulk_params.py +286 -0
- unifieddatalibrary/types/spaceenvobservation_list_params.py +19 -0
- unifieddatalibrary/types/spaceenvobservation_list_response.py +310 -0
- unifieddatalibrary/types/spaceenvobservation_tuple_params.py +27 -0
- unifieddatalibrary/types/spaceenvobservation_tuple_response.py +10 -0
- unifieddatalibrary/types/spaceenvobservation_unvalidated_publish_params.py +286 -0
- unifieddatalibrary/types/stage_count_response.py +7 -0
- unifieddatalibrary/types/stage_create_params.py +151 -0
- unifieddatalibrary/types/stage_get_response.py +183 -0
- unifieddatalibrary/types/stage_list_response.py +161 -0
- unifieddatalibrary/types/stage_tuple_params.py +17 -0
- unifieddatalibrary/types/stage_tuple_response.py +186 -0
- unifieddatalibrary/types/stage_update_params.py +151 -0
- unifieddatalibrary/types/starcatalog/__init__.py +5 -0
- unifieddatalibrary/types/starcatalog/history_aodr_params.py +53 -0
- unifieddatalibrary/types/starcatalog_count_params.py +23 -0
- unifieddatalibrary/types/starcatalog_count_response.py +7 -0
- unifieddatalibrary/types/starcatalog_create_bulk_params.py +216 -0
- unifieddatalibrary/types/starcatalog_create_params.py +211 -0
- unifieddatalibrary/types/starcatalog_get_response.py +232 -0
- unifieddatalibrary/types/starcatalog_list_params.py +23 -0
- unifieddatalibrary/types/starcatalog_list_response.py +235 -0
- unifieddatalibrary/types/starcatalog_tuple_params.py +31 -0
- unifieddatalibrary/types/starcatalog_tuple_response.py +235 -0
- unifieddatalibrary/types/starcatalog_unvalidated_publish_params.py +216 -0
- unifieddatalibrary/types/starcatalog_update_params.py +211 -0
- unifieddatalibrary/types/state_vector_abridged.py +613 -0
- unifieddatalibrary/types/state_vector_full.py +663 -0
- unifieddatalibrary/types/state_vector_ingest_param.py +618 -0
- unifieddatalibrary/types/statevector/__init__.py +12 -0
- unifieddatalibrary/types/statevector/current_list_response.py +10 -0
- unifieddatalibrary/types/statevector/current_tuple_params.py +17 -0
- unifieddatalibrary/types/statevector/current_tuple_response.py +10 -0
- unifieddatalibrary/types/statevector/history_aodr_params.py +47 -0
- unifieddatalibrary/types/statevector/history_count_params.py +19 -0
- unifieddatalibrary/types/statevector/history_count_response.py +7 -0
- unifieddatalibrary/types/statevector/history_list_params.py +27 -0
- unifieddatalibrary/types/statevector/history_list_response.py +10 -0
- unifieddatalibrary/types/statevector_count_params.py +19 -0
- unifieddatalibrary/types/statevector_count_response.py +7 -0
- unifieddatalibrary/types/statevector_create_bulk_params.py +14 -0
- unifieddatalibrary/types/statevector_create_params.py +618 -0
- unifieddatalibrary/types/statevector_list_params.py +19 -0
- unifieddatalibrary/types/statevector_list_response.py +10 -0
- unifieddatalibrary/types/statevector_tuple_params.py +27 -0
- unifieddatalibrary/types/statevector_tuple_response.py +10 -0
- unifieddatalibrary/types/statevector_unvalidated_publish_params.py +14 -0
- unifieddatalibrary/types/status_count_response.py +7 -0
- unifieddatalibrary/types/status_create_params.py +127 -0
- unifieddatalibrary/types/status_get_by_entity_id_response.py +184 -0
- unifieddatalibrary/types/status_get_by_entity_type_response.py +184 -0
- unifieddatalibrary/types/status_get_response.py +175 -0
- unifieddatalibrary/types/status_list_response.py +162 -0
- unifieddatalibrary/types/status_tuple_params.py +17 -0
- unifieddatalibrary/types/status_tuple_response.py +180 -0
- unifieddatalibrary/types/status_update_params.py +127 -0
- unifieddatalibrary/types/substatus_count_response.py +7 -0
- unifieddatalibrary/types/substatus_create_params.py +57 -0
- unifieddatalibrary/types/substatus_get_response.py +83 -0
- unifieddatalibrary/types/substatus_list_response.py +77 -0
- unifieddatalibrary/types/substatus_tuple_params.py +17 -0
- unifieddatalibrary/types/substatus_tuple_response.py +86 -0
- unifieddatalibrary/types/substatus_update_params.py +57 -0
- unifieddatalibrary/types/supporting_data/__init__.py +10 -0
- unifieddatalibrary/types/supporting_data/data_type_list_response.py +8 -0
- unifieddatalibrary/types/supporting_data/dataowner_abridged.py +60 -0
- unifieddatalibrary/types/supporting_data/dataowner_count_response.py +7 -0
- unifieddatalibrary/types/supporting_data/dataowner_retrieve_response.py +10 -0
- unifieddatalibrary/types/supporting_data/dataowner_type_list_response.py +8 -0
- unifieddatalibrary/types/supporting_data/provider_metadata_retrieve_response.py +10 -0
- unifieddatalibrary/types/surface_count_response.py +7 -0
- unifieddatalibrary/types/surface_create_params.py +471 -0
- unifieddatalibrary/types/surface_get_response.py +601 -0
- unifieddatalibrary/types/surface_list_response.py +491 -0
- unifieddatalibrary/types/surface_tuple_params.py +17 -0
- unifieddatalibrary/types/surface_tuple_response.py +606 -0
- unifieddatalibrary/types/surface_update_params.py +471 -0
- unifieddatalibrary/types/surfaceobstruction_count_response.py +7 -0
- unifieddatalibrary/types/surfaceobstruction_create_params.py +75 -0
- unifieddatalibrary/types/surfaceobstruction_get_response.py +107 -0
- unifieddatalibrary/types/surfaceobstruction_list_response.py +101 -0
- unifieddatalibrary/types/surfaceobstruction_tuple_params.py +17 -0
- unifieddatalibrary/types/surfaceobstruction_tuple_response.py +110 -0
- unifieddatalibrary/types/surfaceobstruction_unvalidated_publish_params.py +79 -0
- unifieddatalibrary/types/surfaceobstruction_update_params.py +75 -0
- unifieddatalibrary/types/swir/__init__.py +10 -0
- unifieddatalibrary/types/swir/history_aodr_params.py +44 -0
- unifieddatalibrary/types/swir/history_count_params.py +16 -0
- unifieddatalibrary/types/swir/history_count_response.py +7 -0
- unifieddatalibrary/types/swir/history_list_params.py +24 -0
- unifieddatalibrary/types/swir/history_list_response.py +10 -0
- unifieddatalibrary/types/swir/swir_full.py +126 -0
- unifieddatalibrary/types/swir_count_params.py +16 -0
- unifieddatalibrary/types/swir_count_response.py +7 -0
- unifieddatalibrary/types/swir_create_bulk_params.py +108 -0
- unifieddatalibrary/types/swir_create_params.py +104 -0
- unifieddatalibrary/types/swir_list_params.py +16 -0
- unifieddatalibrary/types/swir_list_response.py +101 -0
- unifieddatalibrary/types/swir_tuple_params.py +24 -0
- unifieddatalibrary/types/swir_tuple_response.py +10 -0
- unifieddatalibrary/types/taiutc/__init__.py +10 -0
- unifieddatalibrary/types/taiutc/history_aodr_params.py +47 -0
- unifieddatalibrary/types/taiutc/history_count_params.py +19 -0
- unifieddatalibrary/types/taiutc/history_count_response.py +7 -0
- unifieddatalibrary/types/taiutc/history_list_params.py +27 -0
- unifieddatalibrary/types/taiutc/history_list_response.py +10 -0
- unifieddatalibrary/types/taiutc/taiutc_full.py +90 -0
- unifieddatalibrary/types/taiutc_count_params.py +19 -0
- unifieddatalibrary/types/taiutc_count_response.py +7 -0
- unifieddatalibrary/types/taiutc_create_params.py +66 -0
- unifieddatalibrary/types/taiutc_list_params.py +19 -0
- unifieddatalibrary/types/taiutc_list_response.py +84 -0
- unifieddatalibrary/types/taiutc_tuple_params.py +27 -0
- unifieddatalibrary/types/taiutc_tuple_response.py +10 -0
- unifieddatalibrary/types/taiutc_update_params.py +66 -0
- unifieddatalibrary/types/tdoa_fdoa/__init__.py +12 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival/__init__.py +7 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival/history_aodr_params.py +47 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival/history_list_params.py +27 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival/history_list_response.py +10 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival_abridged.py +227 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival_count_params.py +19 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival_count_response.py +7 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival_create_bulk_params.py +222 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival_create_params.py +218 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival_full.py +247 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival_list_params.py +19 -0
- unifieddatalibrary/types/tdoa_fdoa/diffofarrival_list_response.py +10 -0
- unifieddatalibrary/types/topic_details.py +26 -0
- unifieddatalibrary/types/track/__init__.py +10 -0
- unifieddatalibrary/types/track/history_aodr_params.py +47 -0
- unifieddatalibrary/types/track/history_count_params.py +19 -0
- unifieddatalibrary/types/track/history_count_response.py +7 -0
- unifieddatalibrary/types/track/history_list_params.py +27 -0
- unifieddatalibrary/types/track/history_list_response.py +10 -0
- unifieddatalibrary/types/track/track_full.py +495 -0
- unifieddatalibrary/types/track_count_params.py +19 -0
- unifieddatalibrary/types/track_count_response.py +7 -0
- unifieddatalibrary/types/track_create_bulk_params.py +477 -0
- unifieddatalibrary/types/track_list_params.py +19 -0
- unifieddatalibrary/types/track_list_response.py +498 -0
- unifieddatalibrary/types/track_tuple_params.py +27 -0
- unifieddatalibrary/types/track_tuple_response.py +10 -0
- unifieddatalibrary/types/track_unvalidated_publish_params.py +477 -0
- unifieddatalibrary/types/trackdetail_count_params.py +19 -0
- unifieddatalibrary/types/trackdetail_count_response.py +7 -0
- unifieddatalibrary/types/trackdetail_create_bulk_params.py +1111 -0
- unifieddatalibrary/types/trackdetail_list_params.py +19 -0
- unifieddatalibrary/types/trackdetail_list_response.py +1121 -0
- unifieddatalibrary/types/trackdetail_tuple_params.py +27 -0
- unifieddatalibrary/types/trackdetail_tuple_response.py +10 -0
- unifieddatalibrary/types/trackdetails/__init__.py +10 -0
- unifieddatalibrary/types/trackdetails/history_aodr_params.py +47 -0
- unifieddatalibrary/types/trackdetails/history_count_params.py +19 -0
- unifieddatalibrary/types/trackdetails/history_count_response.py +7 -0
- unifieddatalibrary/types/trackdetails/history_list_params.py +27 -0
- unifieddatalibrary/types/trackdetails/history_list_response.py +10 -0
- unifieddatalibrary/types/trackdetails/track_details_full.py +1118 -0
- unifieddatalibrary/types/trackroute/__init__.py +10 -0
- unifieddatalibrary/types/trackroute/history_aodr_params.py +47 -0
- unifieddatalibrary/types/trackroute/history_count_params.py +19 -0
- unifieddatalibrary/types/trackroute/history_count_response.py +7 -0
- unifieddatalibrary/types/trackroute/history_list_params.py +27 -0
- unifieddatalibrary/types/trackroute/history_list_response.py +10 -0
- unifieddatalibrary/types/trackroute/track_route_full.py +303 -0
- unifieddatalibrary/types/trackroute_count_params.py +19 -0
- unifieddatalibrary/types/trackroute_count_response.py +7 -0
- unifieddatalibrary/types/trackroute_create_bulk_params.py +276 -0
- unifieddatalibrary/types/trackroute_create_params.py +272 -0
- unifieddatalibrary/types/trackroute_list_params.py +19 -0
- unifieddatalibrary/types/trackroute_list_response.py +314 -0
- unifieddatalibrary/types/trackroute_tuple_params.py +27 -0
- unifieddatalibrary/types/trackroute_tuple_response.py +10 -0
- unifieddatalibrary/types/trackroute_unvalidated_publish_params.py +272 -0
- unifieddatalibrary/types/trackroute_update_params.py +272 -0
- unifieddatalibrary/types/transponder_count_response.py +7 -0
- unifieddatalibrary/types/transponder_create_params.py +88 -0
- unifieddatalibrary/types/transponder_get_response.py +118 -0
- unifieddatalibrary/types/transponder_list_response.py +108 -0
- unifieddatalibrary/types/transponder_tuple_params.py +17 -0
- unifieddatalibrary/types/transponder_tuple_response.py +121 -0
- unifieddatalibrary/types/transponder_update_params.py +88 -0
- unifieddatalibrary/types/udl/__init__.py +3 -0
- unifieddatalibrary/types/udl/geostatus/__init__.py +10 -0
- unifieddatalibrary/types/udl/geostatus/geo_status_full.py +152 -0
- unifieddatalibrary/types/udl/geostatus/history_aodr_params.py +47 -0
- unifieddatalibrary/types/udl/geostatus/history_count_params.py +19 -0
- unifieddatalibrary/types/udl/geostatus/history_count_response.py +7 -0
- unifieddatalibrary/types/udl/geostatus/history_list_params.py +27 -0
- unifieddatalibrary/types/udl/geostatus/history_list_response.py +10 -0
- unifieddatalibrary/types/udl/gnssobservationset/__init__.py +8 -0
- unifieddatalibrary/types/udl/gnssobservationset/gnss_observation_set_full.py +287 -0
- unifieddatalibrary/types/udl/gnssobservationset/history_aodr_params.py +48 -0
- unifieddatalibrary/types/udl/gnssobservationset/history_list_params.py +28 -0
- unifieddatalibrary/types/udl/gnssobservationset/history_list_response.py +10 -0
- unifieddatalibrary/types/udl/gnssrawif/__init__.py +5 -0
- unifieddatalibrary/types/udl/gnssrawif/gnss_raw_if_full.py +278 -0
- unifieddatalibrary/types/udl/groundimagery/__init__.py +5 -0
- unifieddatalibrary/types/udl/groundimagery/ground_imagery_full.py +177 -0
- unifieddatalibrary/types/udl/hazard/__init__.py +5 -0
- unifieddatalibrary/types/udl/hazard/hazard_full.py +266 -0
- unifieddatalibrary/types/udl/ionoobservation/__init__.py +5 -0
- unifieddatalibrary/types/udl/ionoobservation/iono_observation_full.py +1000 -0
- unifieddatalibrary/types/udl/isrcollection/__init__.py +5 -0
- unifieddatalibrary/types/udl/isrcollection/isr_collection_full.py +606 -0
- unifieddatalibrary/types/udl/itemtracking/__init__.py +5 -0
- unifieddatalibrary/types/udl/itemtracking/item_tracking_full.py +130 -0
- unifieddatalibrary/types/udl/linkstatus/__init__.py +5 -0
- unifieddatalibrary/types/udl/linkstatus/link_status_full.py +166 -0
- unifieddatalibrary/types/udl/maneuver/__init__.py +5 -0
- unifieddatalibrary/types/udl/maneuver/maneuver_full.py +2445 -0
- unifieddatalibrary/types/udl/missiletrack/__init__.py +5 -0
- unifieddatalibrary/types/udl/missiletrack/missile_track_full.py +595 -0
- unifieddatalibrary/types/udl/missionassignment/__init__.py +5 -0
- unifieddatalibrary/types/udl/missionassignment/mission_assignment_full.py +251 -0
- unifieddatalibrary/types/udl/monoradar/__init__.py +5 -0
- unifieddatalibrary/types/udl/monoradar/mono_radar_full.py +293 -0
- unifieddatalibrary/types/udl/mti/__init__.py +10 -0
- unifieddatalibrary/types/udl/mti/history_aodr_params.py +44 -0
- unifieddatalibrary/types/udl/mti/history_count_params.py +16 -0
- unifieddatalibrary/types/udl/mti/history_count_response.py +7 -0
- unifieddatalibrary/types/udl/mti/history_list_params.py +24 -0
- unifieddatalibrary/types/udl/mti/history_list_response.py +10 -0
- unifieddatalibrary/types/udl/mti/mti_full.py +921 -0
- unifieddatalibrary/types/udl/notification/__init__.py +10 -0
- unifieddatalibrary/types/udl/notification/history_aodr_params.py +44 -0
- unifieddatalibrary/types/udl/notification/history_count_params.py +16 -0
- unifieddatalibrary/types/udl/notification/history_count_response.py +7 -0
- unifieddatalibrary/types/udl/notification/history_list_params.py +24 -0
- unifieddatalibrary/types/udl/notification/history_list_response.py +10 -0
- unifieddatalibrary/types/udl/notification/notification_full.py +84 -0
- unifieddatalibrary/types/udl/onboardnavigation/__init__.py +10 -0
- unifieddatalibrary/types/udl/onboardnavigation/history_aodr_params.py +47 -0
- unifieddatalibrary/types/udl/onboardnavigation/history_count_params.py +19 -0
- unifieddatalibrary/types/udl/onboardnavigation/history_count_response.py +7 -0
- unifieddatalibrary/types/udl/onboardnavigation/history_list_params.py +27 -0
- unifieddatalibrary/types/udl/onboardnavigation/history_list_response.py +10 -0
- unifieddatalibrary/types/udl/onboardnavigation/onboardnavigation_full.py +143 -0
- unifieddatalibrary/types/udl/onorbitthrusterstatus/__init__.py +7 -0
- unifieddatalibrary/types/udl/onorbitthrusterstatus/history_list_params.py +37 -0
- unifieddatalibrary/types/udl/onorbitthrusterstatus/history_list_response.py +10 -0
- unifieddatalibrary/types/udl/onorbitthrusterstatus/onorbitthrusterstatus_full.py +122 -0
- unifieddatalibrary/types/udl/orbitdetermination/__init__.py +5 -0
- unifieddatalibrary/types/udl/orbitdetermination/orbitdetermination_full.py +1236 -0
- unifieddatalibrary/types/udl/orbittrack/__init__.py +5 -0
- unifieddatalibrary/types/udl/orbittrack/orbittrack_full.py +353 -0
- unifieddatalibrary/types/udl/passiveradarobservation/__init__.py +5 -0
- unifieddatalibrary/types/udl/passiveradarobservation/passiveradarobservation_full.py +339 -0
- unifieddatalibrary/types/udl/poi/__init__.py +5 -0
- unifieddatalibrary/types/udl/poi/poi_full.py +281 -0
- unifieddatalibrary/types/udl/radarobservation/__init__.py +5 -0
- unifieddatalibrary/types/udl/radarobservation/radarobservation_full.py +361 -0
- unifieddatalibrary/types/udl/rfobservation/__init__.py +5 -0
- unifieddatalibrary/types/udl/rfobservation/rfobservationdetails_full.py +455 -0
- unifieddatalibrary/types/udl/sarobservation/__init__.py +5 -0
- unifieddatalibrary/types/udl/sarobservation/sarobservation_full.py +377 -0
- unifieddatalibrary/types/udl/sensormaintenance/__init__.py +5 -0
- unifieddatalibrary/types/udl/sensormaintenance/sensormaintenance_full.py +153 -0
- unifieddatalibrary/types/udl/sensorplan/__init__.py +5 -0
- unifieddatalibrary/types/udl/sensorplan/sensorplan_full.py +1613 -0
- unifieddatalibrary/types/udl/sgi/__init__.py +5 -0
- unifieddatalibrary/types/udl/sgi/sgi_full.py +385 -0
- unifieddatalibrary/types/udl/sigact/__init__.py +5 -0
- unifieddatalibrary/types/udl/sigact/sigact_full.py +444 -0
- unifieddatalibrary/types/udl/sitestatus/__init__.py +5 -0
- unifieddatalibrary/types/udl/sitestatus/sitestatus_full.py +275 -0
- unifieddatalibrary/types/udl/skyimagery/__init__.py +5 -0
- unifieddatalibrary/types/udl/skyimagery/skyimagery_full.py +260 -0
- unifieddatalibrary/types/vessel_count_response.py +7 -0
- unifieddatalibrary/types/vessel_create_bulk_params.py +175 -0
- unifieddatalibrary/types/vessel_create_params.py +171 -0
- unifieddatalibrary/types/vessel_get_response.py +202 -0
- unifieddatalibrary/types/vessel_list_response.py +181 -0
- unifieddatalibrary/types/vessel_tuple_params.py +17 -0
- unifieddatalibrary/types/vessel_tuple_response.py +205 -0
- unifieddatalibrary/types/vessel_update_params.py +171 -0
- unifieddatalibrary/types/video/__init__.py +8 -0
- unifieddatalibrary/types/video/history_count_response.py +7 -0
- unifieddatalibrary/types/video/history_list_params.py +17 -0
- unifieddatalibrary/types/video/history_list_response.py +10 -0
- unifieddatalibrary/types/video/video_streams_full.py +83 -0
- unifieddatalibrary/types/video_count_response.py +7 -0
- unifieddatalibrary/types/video_create_params.py +53 -0
- unifieddatalibrary/types/video_get_player_streaming_info_params.py +17 -0
- unifieddatalibrary/types/video_get_player_streaming_info_response.py +74 -0
- unifieddatalibrary/types/video_get_publisher_streaming_info_params.py +17 -0
- unifieddatalibrary/types/video_get_publisher_streaming_info_response.py +74 -0
- unifieddatalibrary/types/video_get_stream_file_params.py +17 -0
- unifieddatalibrary/types/video_get_stream_file_response.py +74 -0
- unifieddatalibrary/types/video_list_response.py +77 -0
- unifieddatalibrary/types/video_tuple_params.py +17 -0
- unifieddatalibrary/types/video_tuple_response.py +10 -0
- unifieddatalibrary/types/weatherdata/__init__.py +10 -0
- unifieddatalibrary/types/weatherdata/history_aodr_params.py +47 -0
- unifieddatalibrary/types/weatherdata/history_count_params.py +19 -0
- unifieddatalibrary/types/weatherdata/history_count_response.py +7 -0
- unifieddatalibrary/types/weatherdata/history_list_params.py +27 -0
- unifieddatalibrary/types/weatherdata/history_list_response.py +10 -0
- unifieddatalibrary/types/weatherdata/weather_data_full.py +236 -0
- unifieddatalibrary/types/weatherdata_count_params.py +19 -0
- unifieddatalibrary/types/weatherdata_count_response.py +7 -0
- unifieddatalibrary/types/weatherdata_create_bulk_params.py +228 -0
- unifieddatalibrary/types/weatherdata_create_params.py +224 -0
- unifieddatalibrary/types/weatherdata_list_params.py +19 -0
- unifieddatalibrary/types/weatherdata_list_response.py +239 -0
- unifieddatalibrary/types/weatherdata_tuple_params.py +27 -0
- unifieddatalibrary/types/weatherdata_tuple_response.py +10 -0
- unifieddatalibrary/types/weatherdata_unvalidated_publish_params.py +228 -0
- unifieddatalibrary/types/weatherreport/__init__.py +10 -0
- unifieddatalibrary/types/weatherreport/history_aodr_params.py +47 -0
- unifieddatalibrary/types/weatherreport/history_count_params.py +19 -0
- unifieddatalibrary/types/weatherreport/history_count_response.py +7 -0
- unifieddatalibrary/types/weatherreport/history_list_params.py +27 -0
- unifieddatalibrary/types/weatherreport/history_list_response.py +10 -0
- unifieddatalibrary/types/weatherreport/weather_report_full.py +505 -0
- unifieddatalibrary/types/weatherreport_count_params.py +19 -0
- unifieddatalibrary/types/weatherreport_count_response.py +7 -0
- unifieddatalibrary/types/weatherreport_create_params.py +493 -0
- unifieddatalibrary/types/weatherreport_list_params.py +19 -0
- unifieddatalibrary/types/weatherreport_list_response.py +502 -0
- unifieddatalibrary/types/weatherreport_tuple_params.py +27 -0
- unifieddatalibrary/types/weatherreport_tuple_response.py +10 -0
- unifieddatalibrary/types/weatherreport_unvalidated_publish_params.py +497 -0
@@ -0,0 +1,2007 @@
|
|
1
|
+
from __future__ import annotations
|
2
|
+
|
3
|
+
import sys
|
4
|
+
import json
|
5
|
+
import time
|
6
|
+
import uuid
|
7
|
+
import email
|
8
|
+
import asyncio
|
9
|
+
import inspect
|
10
|
+
import logging
|
11
|
+
import platform
|
12
|
+
import email.utils
|
13
|
+
from types import TracebackType
|
14
|
+
from random import random
|
15
|
+
from typing import (
|
16
|
+
TYPE_CHECKING,
|
17
|
+
Any,
|
18
|
+
Dict,
|
19
|
+
Type,
|
20
|
+
Union,
|
21
|
+
Generic,
|
22
|
+
Mapping,
|
23
|
+
TypeVar,
|
24
|
+
Iterable,
|
25
|
+
Iterator,
|
26
|
+
Optional,
|
27
|
+
Generator,
|
28
|
+
AsyncIterator,
|
29
|
+
cast,
|
30
|
+
overload,
|
31
|
+
)
|
32
|
+
from typing_extensions import Literal, override, get_origin
|
33
|
+
|
34
|
+
import anyio
|
35
|
+
import httpx
|
36
|
+
import distro
|
37
|
+
import pydantic
|
38
|
+
from httpx import URL
|
39
|
+
from pydantic import PrivateAttr
|
40
|
+
|
41
|
+
from . import _exceptions
|
42
|
+
from ._qs import Querystring
|
43
|
+
from ._files import to_httpx_files, async_to_httpx_files
|
44
|
+
from ._types import (
|
45
|
+
NOT_GIVEN,
|
46
|
+
Body,
|
47
|
+
Omit,
|
48
|
+
Query,
|
49
|
+
Headers,
|
50
|
+
Timeout,
|
51
|
+
NotGiven,
|
52
|
+
ResponseT,
|
53
|
+
AnyMapping,
|
54
|
+
PostParser,
|
55
|
+
RequestFiles,
|
56
|
+
HttpxSendArgs,
|
57
|
+
RequestOptions,
|
58
|
+
HttpxRequestFiles,
|
59
|
+
ModelBuilderProtocol,
|
60
|
+
)
|
61
|
+
from ._utils import is_dict, is_list, asyncify, is_given, lru_cache, is_mapping
|
62
|
+
from ._compat import PYDANTIC_V2, model_copy, model_dump
|
63
|
+
from ._models import GenericModel, FinalRequestOptions, validate_type, construct_type
|
64
|
+
from ._response import (
|
65
|
+
APIResponse,
|
66
|
+
BaseAPIResponse,
|
67
|
+
AsyncAPIResponse,
|
68
|
+
extract_response_type,
|
69
|
+
)
|
70
|
+
from ._constants import (
|
71
|
+
DEFAULT_TIMEOUT,
|
72
|
+
MAX_RETRY_DELAY,
|
73
|
+
DEFAULT_MAX_RETRIES,
|
74
|
+
INITIAL_RETRY_DELAY,
|
75
|
+
RAW_RESPONSE_HEADER,
|
76
|
+
OVERRIDE_CAST_TO_HEADER,
|
77
|
+
DEFAULT_CONNECTION_LIMITS,
|
78
|
+
)
|
79
|
+
from ._streaming import Stream, SSEDecoder, AsyncStream, SSEBytesDecoder
|
80
|
+
from ._exceptions import (
|
81
|
+
APIStatusError,
|
82
|
+
APITimeoutError,
|
83
|
+
APIConnectionError,
|
84
|
+
APIResponseValidationError,
|
85
|
+
)
|
86
|
+
|
87
|
+
log: logging.Logger = logging.getLogger(__name__)
|
88
|
+
|
89
|
+
# TODO: make base page type vars covariant
|
90
|
+
SyncPageT = TypeVar("SyncPageT", bound="BaseSyncPage[Any]")
|
91
|
+
AsyncPageT = TypeVar("AsyncPageT", bound="BaseAsyncPage[Any]")
|
92
|
+
|
93
|
+
|
94
|
+
_T = TypeVar("_T")
|
95
|
+
_T_co = TypeVar("_T_co", covariant=True)
|
96
|
+
|
97
|
+
_StreamT = TypeVar("_StreamT", bound=Stream[Any])
|
98
|
+
_AsyncStreamT = TypeVar("_AsyncStreamT", bound=AsyncStream[Any])
|
99
|
+
|
100
|
+
if TYPE_CHECKING:
|
101
|
+
from httpx._config import (
|
102
|
+
DEFAULT_TIMEOUT_CONFIG, # pyright: ignore[reportPrivateImportUsage]
|
103
|
+
)
|
104
|
+
|
105
|
+
HTTPX_DEFAULT_TIMEOUT = DEFAULT_TIMEOUT_CONFIG
|
106
|
+
else:
|
107
|
+
try:
|
108
|
+
from httpx._config import DEFAULT_TIMEOUT_CONFIG as HTTPX_DEFAULT_TIMEOUT
|
109
|
+
except ImportError:
|
110
|
+
# taken from https://github.com/encode/httpx/blob/3ba5fe0d7ac70222590e759c31442b1cab263791/httpx/_config.py#L366
|
111
|
+
HTTPX_DEFAULT_TIMEOUT = Timeout(5.0)
|
112
|
+
|
113
|
+
|
114
|
+
class PageInfo:
|
115
|
+
"""Stores the necessary information to build the request to retrieve the next page.
|
116
|
+
|
117
|
+
Either `url` or `params` must be set.
|
118
|
+
"""
|
119
|
+
|
120
|
+
url: URL | NotGiven
|
121
|
+
params: Query | NotGiven
|
122
|
+
json: Body | NotGiven
|
123
|
+
|
124
|
+
@overload
|
125
|
+
def __init__(
|
126
|
+
self,
|
127
|
+
*,
|
128
|
+
url: URL,
|
129
|
+
) -> None: ...
|
130
|
+
|
131
|
+
@overload
|
132
|
+
def __init__(
|
133
|
+
self,
|
134
|
+
*,
|
135
|
+
params: Query,
|
136
|
+
) -> None: ...
|
137
|
+
|
138
|
+
@overload
|
139
|
+
def __init__(
|
140
|
+
self,
|
141
|
+
*,
|
142
|
+
json: Body,
|
143
|
+
) -> None: ...
|
144
|
+
|
145
|
+
def __init__(
|
146
|
+
self,
|
147
|
+
*,
|
148
|
+
url: URL | NotGiven = NOT_GIVEN,
|
149
|
+
json: Body | NotGiven = NOT_GIVEN,
|
150
|
+
params: Query | NotGiven = NOT_GIVEN,
|
151
|
+
) -> None:
|
152
|
+
self.url = url
|
153
|
+
self.json = json
|
154
|
+
self.params = params
|
155
|
+
|
156
|
+
@override
|
157
|
+
def __repr__(self) -> str:
|
158
|
+
if self.url:
|
159
|
+
return f"{self.__class__.__name__}(url={self.url})"
|
160
|
+
if self.json:
|
161
|
+
return f"{self.__class__.__name__}(json={self.json})"
|
162
|
+
return f"{self.__class__.__name__}(params={self.params})"
|
163
|
+
|
164
|
+
|
165
|
+
class BasePage(GenericModel, Generic[_T]):
|
166
|
+
"""
|
167
|
+
Defines the core interface for pagination.
|
168
|
+
|
169
|
+
Type Args:
|
170
|
+
ModelT: The pydantic model that represents an item in the response.
|
171
|
+
|
172
|
+
Methods:
|
173
|
+
has_next_page(): Check if there is another page available
|
174
|
+
next_page_info(): Get the necessary information to make a request for the next page
|
175
|
+
"""
|
176
|
+
|
177
|
+
_options: FinalRequestOptions = PrivateAttr()
|
178
|
+
_model: Type[_T] = PrivateAttr()
|
179
|
+
|
180
|
+
def has_next_page(self) -> bool:
|
181
|
+
items = self._get_page_items()
|
182
|
+
if not items:
|
183
|
+
return False
|
184
|
+
return self.next_page_info() is not None
|
185
|
+
|
186
|
+
def next_page_info(self) -> Optional[PageInfo]: ...
|
187
|
+
|
188
|
+
def _get_page_items(self) -> Iterable[_T]: # type: ignore[empty-body]
|
189
|
+
...
|
190
|
+
|
191
|
+
def _params_from_url(self, url: URL) -> httpx.QueryParams:
|
192
|
+
# TODO: do we have to preprocess params here?
|
193
|
+
return httpx.QueryParams(cast(Any, self._options.params)).merge(url.params)
|
194
|
+
|
195
|
+
def _info_to_options(self, info: PageInfo) -> FinalRequestOptions:
|
196
|
+
options = model_copy(self._options)
|
197
|
+
options._strip_raw_response_header()
|
198
|
+
|
199
|
+
if not isinstance(info.params, NotGiven):
|
200
|
+
options.params = {**options.params, **info.params}
|
201
|
+
return options
|
202
|
+
|
203
|
+
if not isinstance(info.url, NotGiven):
|
204
|
+
params = self._params_from_url(info.url)
|
205
|
+
url = info.url.copy_with(params=params)
|
206
|
+
options.params = dict(url.params)
|
207
|
+
options.url = str(url)
|
208
|
+
return options
|
209
|
+
|
210
|
+
if not isinstance(info.json, NotGiven):
|
211
|
+
if not is_mapping(info.json):
|
212
|
+
raise TypeError("Pagination is only supported with mappings")
|
213
|
+
|
214
|
+
if not options.json_data:
|
215
|
+
options.json_data = {**info.json}
|
216
|
+
else:
|
217
|
+
if not is_mapping(options.json_data):
|
218
|
+
raise TypeError("Pagination is only supported with mappings")
|
219
|
+
|
220
|
+
options.json_data = {**options.json_data, **info.json}
|
221
|
+
return options
|
222
|
+
|
223
|
+
raise ValueError("Unexpected PageInfo state")
|
224
|
+
|
225
|
+
|
226
|
+
class BaseSyncPage(BasePage[_T], Generic[_T]):
|
227
|
+
_client: SyncAPIClient = pydantic.PrivateAttr()
|
228
|
+
|
229
|
+
def _set_private_attributes(
|
230
|
+
self,
|
231
|
+
client: SyncAPIClient,
|
232
|
+
model: Type[_T],
|
233
|
+
options: FinalRequestOptions,
|
234
|
+
) -> None:
|
235
|
+
if PYDANTIC_V2 and getattr(self, "__pydantic_private__", None) is None:
|
236
|
+
self.__pydantic_private__ = {}
|
237
|
+
|
238
|
+
self._model = model
|
239
|
+
self._client = client
|
240
|
+
self._options = options
|
241
|
+
|
242
|
+
# Pydantic uses a custom `__iter__` method to support casting BaseModels
|
243
|
+
# to dictionaries. e.g. dict(model).
|
244
|
+
# As we want to support `for item in page`, this is inherently incompatible
|
245
|
+
# with the default pydantic behaviour. It is not possible to support both
|
246
|
+
# use cases at once. Fortunately, this is not a big deal as all other pydantic
|
247
|
+
# methods should continue to work as expected as there is an alternative method
|
248
|
+
# to cast a model to a dictionary, model.dict(), which is used internally
|
249
|
+
# by pydantic.
|
250
|
+
def __iter__(self) -> Iterator[_T]: # type: ignore
|
251
|
+
for page in self.iter_pages():
|
252
|
+
for item in page._get_page_items():
|
253
|
+
yield item
|
254
|
+
|
255
|
+
def iter_pages(self: SyncPageT) -> Iterator[SyncPageT]:
|
256
|
+
page = self
|
257
|
+
while True:
|
258
|
+
yield page
|
259
|
+
if page.has_next_page():
|
260
|
+
page = page.get_next_page()
|
261
|
+
else:
|
262
|
+
return
|
263
|
+
|
264
|
+
def get_next_page(self: SyncPageT) -> SyncPageT:
|
265
|
+
info = self.next_page_info()
|
266
|
+
if not info:
|
267
|
+
raise RuntimeError(
|
268
|
+
"No next page expected; please check `.has_next_page()` before calling `.get_next_page()`."
|
269
|
+
)
|
270
|
+
|
271
|
+
options = self._info_to_options(info)
|
272
|
+
return self._client._request_api_list(self._model, page=self.__class__, options=options)
|
273
|
+
|
274
|
+
|
275
|
+
class AsyncPaginator(Generic[_T, AsyncPageT]):
|
276
|
+
def __init__(
|
277
|
+
self,
|
278
|
+
client: AsyncAPIClient,
|
279
|
+
options: FinalRequestOptions,
|
280
|
+
page_cls: Type[AsyncPageT],
|
281
|
+
model: Type[_T],
|
282
|
+
) -> None:
|
283
|
+
self._model = model
|
284
|
+
self._client = client
|
285
|
+
self._options = options
|
286
|
+
self._page_cls = page_cls
|
287
|
+
|
288
|
+
def __await__(self) -> Generator[Any, None, AsyncPageT]:
|
289
|
+
return self._get_page().__await__()
|
290
|
+
|
291
|
+
async def _get_page(self) -> AsyncPageT:
|
292
|
+
def _parser(resp: AsyncPageT) -> AsyncPageT:
|
293
|
+
resp._set_private_attributes(
|
294
|
+
model=self._model,
|
295
|
+
options=self._options,
|
296
|
+
client=self._client,
|
297
|
+
)
|
298
|
+
return resp
|
299
|
+
|
300
|
+
self._options.post_parser = _parser
|
301
|
+
|
302
|
+
return await self._client.request(self._page_cls, self._options)
|
303
|
+
|
304
|
+
async def __aiter__(self) -> AsyncIterator[_T]:
|
305
|
+
# https://github.com/microsoft/pyright/issues/3464
|
306
|
+
page = cast(
|
307
|
+
AsyncPageT,
|
308
|
+
await self, # type: ignore
|
309
|
+
)
|
310
|
+
async for item in page:
|
311
|
+
yield item
|
312
|
+
|
313
|
+
|
314
|
+
class BaseAsyncPage(BasePage[_T], Generic[_T]):
|
315
|
+
_client: AsyncAPIClient = pydantic.PrivateAttr()
|
316
|
+
|
317
|
+
def _set_private_attributes(
|
318
|
+
self,
|
319
|
+
model: Type[_T],
|
320
|
+
client: AsyncAPIClient,
|
321
|
+
options: FinalRequestOptions,
|
322
|
+
) -> None:
|
323
|
+
if PYDANTIC_V2 and getattr(self, "__pydantic_private__", None) is None:
|
324
|
+
self.__pydantic_private__ = {}
|
325
|
+
|
326
|
+
self._model = model
|
327
|
+
self._client = client
|
328
|
+
self._options = options
|
329
|
+
|
330
|
+
async def __aiter__(self) -> AsyncIterator[_T]:
|
331
|
+
async for page in self.iter_pages():
|
332
|
+
for item in page._get_page_items():
|
333
|
+
yield item
|
334
|
+
|
335
|
+
async def iter_pages(self: AsyncPageT) -> AsyncIterator[AsyncPageT]:
|
336
|
+
page = self
|
337
|
+
while True:
|
338
|
+
yield page
|
339
|
+
if page.has_next_page():
|
340
|
+
page = await page.get_next_page()
|
341
|
+
else:
|
342
|
+
return
|
343
|
+
|
344
|
+
async def get_next_page(self: AsyncPageT) -> AsyncPageT:
|
345
|
+
info = self.next_page_info()
|
346
|
+
if not info:
|
347
|
+
raise RuntimeError(
|
348
|
+
"No next page expected; please check `.has_next_page()` before calling `.get_next_page()`."
|
349
|
+
)
|
350
|
+
|
351
|
+
options = self._info_to_options(info)
|
352
|
+
return await self._client._request_api_list(self._model, page=self.__class__, options=options)
|
353
|
+
|
354
|
+
|
355
|
+
_HttpxClientT = TypeVar("_HttpxClientT", bound=Union[httpx.Client, httpx.AsyncClient])
|
356
|
+
_DefaultStreamT = TypeVar("_DefaultStreamT", bound=Union[Stream[Any], AsyncStream[Any]])
|
357
|
+
|
358
|
+
|
359
|
+
class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
|
360
|
+
_client: _HttpxClientT
|
361
|
+
_version: str
|
362
|
+
_base_url: URL
|
363
|
+
max_retries: int
|
364
|
+
timeout: Union[float, Timeout, None]
|
365
|
+
_strict_response_validation: bool
|
366
|
+
_idempotency_header: str | None
|
367
|
+
_default_stream_cls: type[_DefaultStreamT] | None = None
|
368
|
+
|
369
|
+
def __init__(
|
370
|
+
self,
|
371
|
+
*,
|
372
|
+
version: str,
|
373
|
+
base_url: str | URL,
|
374
|
+
_strict_response_validation: bool,
|
375
|
+
max_retries: int = DEFAULT_MAX_RETRIES,
|
376
|
+
timeout: float | Timeout | None = DEFAULT_TIMEOUT,
|
377
|
+
custom_headers: Mapping[str, str] | None = None,
|
378
|
+
custom_query: Mapping[str, object] | None = None,
|
379
|
+
) -> None:
|
380
|
+
self._version = version
|
381
|
+
self._base_url = self._enforce_trailing_slash(URL(base_url))
|
382
|
+
self.max_retries = max_retries
|
383
|
+
self.timeout = timeout
|
384
|
+
self._custom_headers = custom_headers or {}
|
385
|
+
self._custom_query = custom_query or {}
|
386
|
+
self._strict_response_validation = _strict_response_validation
|
387
|
+
self._idempotency_header = None
|
388
|
+
self._platform: Platform | None = None
|
389
|
+
|
390
|
+
if max_retries is None: # pyright: ignore[reportUnnecessaryComparison]
|
391
|
+
raise TypeError(
|
392
|
+
"max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `unifieddatalibrary.DEFAULT_MAX_RETRIES`"
|
393
|
+
)
|
394
|
+
|
395
|
+
def _enforce_trailing_slash(self, url: URL) -> URL:
|
396
|
+
if url.raw_path.endswith(b"/"):
|
397
|
+
return url
|
398
|
+
return url.copy_with(raw_path=url.raw_path + b"/")
|
399
|
+
|
400
|
+
def _make_status_error_from_response(
|
401
|
+
self,
|
402
|
+
response: httpx.Response,
|
403
|
+
) -> APIStatusError:
|
404
|
+
if response.is_closed and not response.is_stream_consumed:
|
405
|
+
# We can't read the response body as it has been closed
|
406
|
+
# before it was read. This can happen if an event hook
|
407
|
+
# raises a status error.
|
408
|
+
body = None
|
409
|
+
err_msg = f"Error code: {response.status_code}"
|
410
|
+
else:
|
411
|
+
err_text = response.text.strip()
|
412
|
+
body = err_text
|
413
|
+
|
414
|
+
try:
|
415
|
+
body = json.loads(err_text)
|
416
|
+
err_msg = f"Error code: {response.status_code} - {body}"
|
417
|
+
except Exception:
|
418
|
+
err_msg = err_text or f"Error code: {response.status_code}"
|
419
|
+
|
420
|
+
return self._make_status_error(err_msg, body=body, response=response)
|
421
|
+
|
422
|
+
def _make_status_error(
|
423
|
+
self,
|
424
|
+
err_msg: str,
|
425
|
+
*,
|
426
|
+
body: object,
|
427
|
+
response: httpx.Response,
|
428
|
+
) -> _exceptions.APIStatusError:
|
429
|
+
raise NotImplementedError()
|
430
|
+
|
431
|
+
def _build_headers(self, options: FinalRequestOptions, *, retries_taken: int = 0) -> httpx.Headers:
|
432
|
+
custom_headers = options.headers or {}
|
433
|
+
headers_dict = _merge_mappings(self.default_headers, custom_headers)
|
434
|
+
self._validate_headers(headers_dict, custom_headers)
|
435
|
+
|
436
|
+
# headers are case-insensitive while dictionaries are not.
|
437
|
+
headers = httpx.Headers(headers_dict)
|
438
|
+
|
439
|
+
idempotency_header = self._idempotency_header
|
440
|
+
if idempotency_header and options.method.lower() != "get" and idempotency_header not in headers:
|
441
|
+
options.idempotency_key = options.idempotency_key or self._idempotency_key()
|
442
|
+
headers[idempotency_header] = options.idempotency_key
|
443
|
+
|
444
|
+
# Don't set these headers if they were already set or removed by the caller. We check
|
445
|
+
# `custom_headers`, which can contain `Omit()`, instead of `headers` to account for the removal case.
|
446
|
+
lower_custom_headers = [header.lower() for header in custom_headers]
|
447
|
+
if "x-stainless-retry-count" not in lower_custom_headers:
|
448
|
+
headers["x-stainless-retry-count"] = str(retries_taken)
|
449
|
+
if "x-stainless-read-timeout" not in lower_custom_headers:
|
450
|
+
timeout = self.timeout if isinstance(options.timeout, NotGiven) else options.timeout
|
451
|
+
if isinstance(timeout, Timeout):
|
452
|
+
timeout = timeout.read
|
453
|
+
if timeout is not None:
|
454
|
+
headers["x-stainless-read-timeout"] = str(timeout)
|
455
|
+
|
456
|
+
return headers
|
457
|
+
|
458
|
+
def _prepare_url(self, url: str) -> URL:
|
459
|
+
"""
|
460
|
+
Merge a URL argument together with any 'base_url' on the client,
|
461
|
+
to create the URL used for the outgoing request.
|
462
|
+
"""
|
463
|
+
# Copied from httpx's `_merge_url` method.
|
464
|
+
merge_url = URL(url)
|
465
|
+
if merge_url.is_relative_url:
|
466
|
+
merge_raw_path = self.base_url.raw_path + merge_url.raw_path.lstrip(b"/")
|
467
|
+
return self.base_url.copy_with(raw_path=merge_raw_path)
|
468
|
+
|
469
|
+
return merge_url
|
470
|
+
|
471
|
+
def _make_sse_decoder(self) -> SSEDecoder | SSEBytesDecoder:
|
472
|
+
return SSEDecoder()
|
473
|
+
|
474
|
+
def _build_request(
|
475
|
+
self,
|
476
|
+
options: FinalRequestOptions,
|
477
|
+
*,
|
478
|
+
retries_taken: int = 0,
|
479
|
+
) -> httpx.Request:
|
480
|
+
if log.isEnabledFor(logging.DEBUG):
|
481
|
+
log.debug("Request options: %s", model_dump(options, exclude_unset=True))
|
482
|
+
|
483
|
+
kwargs: dict[str, Any] = {}
|
484
|
+
|
485
|
+
json_data = options.json_data
|
486
|
+
if options.extra_json is not None:
|
487
|
+
if json_data is None:
|
488
|
+
json_data = cast(Body, options.extra_json)
|
489
|
+
elif is_mapping(json_data):
|
490
|
+
json_data = _merge_mappings(json_data, options.extra_json)
|
491
|
+
else:
|
492
|
+
raise RuntimeError(f"Unexpected JSON data type, {type(json_data)}, cannot merge with `extra_body`")
|
493
|
+
|
494
|
+
headers = self._build_headers(options, retries_taken=retries_taken)
|
495
|
+
params = _merge_mappings(self.default_query, options.params)
|
496
|
+
content_type = headers.get("Content-Type")
|
497
|
+
files = options.files
|
498
|
+
|
499
|
+
# If the given Content-Type header is multipart/form-data then it
|
500
|
+
# has to be removed so that httpx can generate the header with
|
501
|
+
# additional information for us as it has to be in this form
|
502
|
+
# for the server to be able to correctly parse the request:
|
503
|
+
# multipart/form-data; boundary=---abc--
|
504
|
+
if content_type is not None and content_type.startswith("multipart/form-data"):
|
505
|
+
if "boundary" not in content_type:
|
506
|
+
# only remove the header if the boundary hasn't been explicitly set
|
507
|
+
# as the caller doesn't want httpx to come up with their own boundary
|
508
|
+
headers.pop("Content-Type")
|
509
|
+
|
510
|
+
# As we are now sending multipart/form-data instead of application/json
|
511
|
+
# we need to tell httpx to use it, https://www.python-httpx.org/advanced/clients/#multipart-file-encoding
|
512
|
+
if json_data:
|
513
|
+
if not is_dict(json_data):
|
514
|
+
raise TypeError(
|
515
|
+
f"Expected query input to be a dictionary for multipart requests but got {type(json_data)} instead."
|
516
|
+
)
|
517
|
+
kwargs["data"] = self._serialize_multipartform(json_data)
|
518
|
+
|
519
|
+
# httpx determines whether or not to send a "multipart/form-data"
|
520
|
+
# request based on the truthiness of the "files" argument.
|
521
|
+
# This gets around that issue by generating a dict value that
|
522
|
+
# evaluates to true.
|
523
|
+
#
|
524
|
+
# https://github.com/encode/httpx/discussions/2399#discussioncomment-3814186
|
525
|
+
if not files:
|
526
|
+
files = cast(HttpxRequestFiles, ForceMultipartDict())
|
527
|
+
|
528
|
+
prepared_url = self._prepare_url(options.url)
|
529
|
+
if "_" in prepared_url.host:
|
530
|
+
# work around https://github.com/encode/httpx/discussions/2880
|
531
|
+
kwargs["extensions"] = {"sni_hostname": prepared_url.host.replace("_", "-")}
|
532
|
+
|
533
|
+
# TODO: report this error to httpx
|
534
|
+
return self._client.build_request( # pyright: ignore[reportUnknownMemberType]
|
535
|
+
headers=headers,
|
536
|
+
timeout=self.timeout if isinstance(options.timeout, NotGiven) else options.timeout,
|
537
|
+
method=options.method,
|
538
|
+
url=prepared_url,
|
539
|
+
# the `Query` type that we use is incompatible with qs'
|
540
|
+
# `Params` type as it needs to be typed as `Mapping[str, object]`
|
541
|
+
# so that passing a `TypedDict` doesn't cause an error.
|
542
|
+
# https://github.com/microsoft/pyright/issues/3526#event-6715453066
|
543
|
+
params=self.qs.stringify(cast(Mapping[str, Any], params)) if params else None,
|
544
|
+
json=json_data if is_given(json_data) else None,
|
545
|
+
files=files,
|
546
|
+
**kwargs,
|
547
|
+
)
|
548
|
+
|
549
|
+
def _serialize_multipartform(self, data: Mapping[object, object]) -> dict[str, object]:
|
550
|
+
items = self.qs.stringify_items(
|
551
|
+
# TODO: type ignore is required as stringify_items is well typed but we can't be
|
552
|
+
# well typed without heavy validation.
|
553
|
+
data, # type: ignore
|
554
|
+
array_format="brackets",
|
555
|
+
)
|
556
|
+
serialized: dict[str, object] = {}
|
557
|
+
for key, value in items:
|
558
|
+
existing = serialized.get(key)
|
559
|
+
|
560
|
+
if not existing:
|
561
|
+
serialized[key] = value
|
562
|
+
continue
|
563
|
+
|
564
|
+
# If a value has already been set for this key then that
|
565
|
+
# means we're sending data like `array[]=[1, 2, 3]` and we
|
566
|
+
# need to tell httpx that we want to send multiple values with
|
567
|
+
# the same key which is done by using a list or a tuple.
|
568
|
+
#
|
569
|
+
# Note: 2d arrays should never result in the same key at both
|
570
|
+
# levels so it's safe to assume that if the value is a list,
|
571
|
+
# it was because we changed it to be a list.
|
572
|
+
if is_list(existing):
|
573
|
+
existing.append(value)
|
574
|
+
else:
|
575
|
+
serialized[key] = [existing, value]
|
576
|
+
|
577
|
+
return serialized
|
578
|
+
|
579
|
+
def _maybe_override_cast_to(self, cast_to: type[ResponseT], options: FinalRequestOptions) -> type[ResponseT]:
|
580
|
+
if not is_given(options.headers):
|
581
|
+
return cast_to
|
582
|
+
|
583
|
+
# make a copy of the headers so we don't mutate user-input
|
584
|
+
headers = dict(options.headers)
|
585
|
+
|
586
|
+
# we internally support defining a temporary header to override the
|
587
|
+
# default `cast_to` type for use with `.with_raw_response` and `.with_streaming_response`
|
588
|
+
# see _response.py for implementation details
|
589
|
+
override_cast_to = headers.pop(OVERRIDE_CAST_TO_HEADER, NOT_GIVEN)
|
590
|
+
if is_given(override_cast_to):
|
591
|
+
options.headers = headers
|
592
|
+
return cast(Type[ResponseT], override_cast_to)
|
593
|
+
|
594
|
+
return cast_to
|
595
|
+
|
596
|
+
def _should_stream_response_body(self, request: httpx.Request) -> bool:
|
597
|
+
return request.headers.get(RAW_RESPONSE_HEADER) == "stream" # type: ignore[no-any-return]
|
598
|
+
|
599
|
+
def _process_response_data(
|
600
|
+
self,
|
601
|
+
*,
|
602
|
+
data: object,
|
603
|
+
cast_to: type[ResponseT],
|
604
|
+
response: httpx.Response,
|
605
|
+
) -> ResponseT:
|
606
|
+
if data is None:
|
607
|
+
return cast(ResponseT, None)
|
608
|
+
|
609
|
+
if cast_to is object:
|
610
|
+
return cast(ResponseT, data)
|
611
|
+
|
612
|
+
try:
|
613
|
+
if inspect.isclass(cast_to) and issubclass(cast_to, ModelBuilderProtocol):
|
614
|
+
return cast(ResponseT, cast_to.build(response=response, data=data))
|
615
|
+
|
616
|
+
if self._strict_response_validation:
|
617
|
+
return cast(ResponseT, validate_type(type_=cast_to, value=data))
|
618
|
+
|
619
|
+
return cast(ResponseT, construct_type(type_=cast_to, value=data))
|
620
|
+
except pydantic.ValidationError as err:
|
621
|
+
raise APIResponseValidationError(response=response, body=data) from err
|
622
|
+
|
623
|
+
@property
|
624
|
+
def qs(self) -> Querystring:
|
625
|
+
return Querystring()
|
626
|
+
|
627
|
+
@property
|
628
|
+
def custom_auth(self) -> httpx.Auth | None:
|
629
|
+
return None
|
630
|
+
|
631
|
+
@property
|
632
|
+
def auth_headers(self) -> dict[str, str]:
|
633
|
+
return {}
|
634
|
+
|
635
|
+
@property
|
636
|
+
def default_headers(self) -> dict[str, str | Omit]:
|
637
|
+
return {
|
638
|
+
"Accept": "application/json",
|
639
|
+
"Content-Type": "application/json",
|
640
|
+
"User-Agent": self.user_agent,
|
641
|
+
**self.platform_headers(),
|
642
|
+
**self.auth_headers,
|
643
|
+
**self._custom_headers,
|
644
|
+
}
|
645
|
+
|
646
|
+
@property
|
647
|
+
def default_query(self) -> dict[str, object]:
|
648
|
+
return {
|
649
|
+
**self._custom_query,
|
650
|
+
}
|
651
|
+
|
652
|
+
def _validate_headers(
|
653
|
+
self,
|
654
|
+
headers: Headers, # noqa: ARG002
|
655
|
+
custom_headers: Headers, # noqa: ARG002
|
656
|
+
) -> None:
|
657
|
+
"""Validate the given default headers and custom headers.
|
658
|
+
|
659
|
+
Does nothing by default.
|
660
|
+
"""
|
661
|
+
return
|
662
|
+
|
663
|
+
@property
|
664
|
+
def user_agent(self) -> str:
|
665
|
+
return f"{self.__class__.__name__}/Python {self._version}"
|
666
|
+
|
667
|
+
@property
|
668
|
+
def base_url(self) -> URL:
|
669
|
+
return self._base_url
|
670
|
+
|
671
|
+
@base_url.setter
|
672
|
+
def base_url(self, url: URL | str) -> None:
|
673
|
+
self._base_url = self._enforce_trailing_slash(url if isinstance(url, URL) else URL(url))
|
674
|
+
|
675
|
+
def platform_headers(self) -> Dict[str, str]:
|
676
|
+
# the actual implementation is in a separate `lru_cache` decorated
|
677
|
+
# function because adding `lru_cache` to methods will leak memory
|
678
|
+
# https://github.com/python/cpython/issues/88476
|
679
|
+
return platform_headers(self._version, platform=self._platform)
|
680
|
+
|
681
|
+
def _parse_retry_after_header(self, response_headers: Optional[httpx.Headers] = None) -> float | None:
|
682
|
+
"""Returns a float of the number of seconds (not milliseconds) to wait after retrying, or None if unspecified.
|
683
|
+
|
684
|
+
About the Retry-After header: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After
|
685
|
+
See also https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After#syntax
|
686
|
+
"""
|
687
|
+
if response_headers is None:
|
688
|
+
return None
|
689
|
+
|
690
|
+
# First, try the non-standard `retry-after-ms` header for milliseconds,
|
691
|
+
# which is more precise than integer-seconds `retry-after`
|
692
|
+
try:
|
693
|
+
retry_ms_header = response_headers.get("retry-after-ms", None)
|
694
|
+
return float(retry_ms_header) / 1000
|
695
|
+
except (TypeError, ValueError):
|
696
|
+
pass
|
697
|
+
|
698
|
+
# Next, try parsing `retry-after` header as seconds (allowing nonstandard floats).
|
699
|
+
retry_header = response_headers.get("retry-after")
|
700
|
+
try:
|
701
|
+
# note: the spec indicates that this should only ever be an integer
|
702
|
+
# but if someone sends a float there's no reason for us to not respect it
|
703
|
+
return float(retry_header)
|
704
|
+
except (TypeError, ValueError):
|
705
|
+
pass
|
706
|
+
|
707
|
+
# Last, try parsing `retry-after` as a date.
|
708
|
+
retry_date_tuple = email.utils.parsedate_tz(retry_header)
|
709
|
+
if retry_date_tuple is None:
|
710
|
+
return None
|
711
|
+
|
712
|
+
retry_date = email.utils.mktime_tz(retry_date_tuple)
|
713
|
+
return float(retry_date - time.time())
|
714
|
+
|
715
|
+
def _calculate_retry_timeout(
|
716
|
+
self,
|
717
|
+
remaining_retries: int,
|
718
|
+
options: FinalRequestOptions,
|
719
|
+
response_headers: Optional[httpx.Headers] = None,
|
720
|
+
) -> float:
|
721
|
+
max_retries = options.get_max_retries(self.max_retries)
|
722
|
+
|
723
|
+
# If the API asks us to wait a certain amount of time (and it's a reasonable amount), just do what it says.
|
724
|
+
retry_after = self._parse_retry_after_header(response_headers)
|
725
|
+
if retry_after is not None and 0 < retry_after <= 60:
|
726
|
+
return retry_after
|
727
|
+
|
728
|
+
# Also cap retry count to 1000 to avoid any potential overflows with `pow`
|
729
|
+
nb_retries = min(max_retries - remaining_retries, 1000)
|
730
|
+
|
731
|
+
# Apply exponential backoff, but not more than the max.
|
732
|
+
sleep_seconds = min(INITIAL_RETRY_DELAY * pow(2.0, nb_retries), MAX_RETRY_DELAY)
|
733
|
+
|
734
|
+
# Apply some jitter, plus-or-minus half a second.
|
735
|
+
jitter = 1 - 0.25 * random()
|
736
|
+
timeout = sleep_seconds * jitter
|
737
|
+
return timeout if timeout >= 0 else 0
|
738
|
+
|
739
|
+
def _should_retry(self, response: httpx.Response) -> bool:
|
740
|
+
# Note: this is not a standard header
|
741
|
+
should_retry_header = response.headers.get("x-should-retry")
|
742
|
+
|
743
|
+
# If the server explicitly says whether or not to retry, obey.
|
744
|
+
if should_retry_header == "true":
|
745
|
+
log.debug("Retrying as header `x-should-retry` is set to `true`")
|
746
|
+
return True
|
747
|
+
if should_retry_header == "false":
|
748
|
+
log.debug("Not retrying as header `x-should-retry` is set to `false`")
|
749
|
+
return False
|
750
|
+
|
751
|
+
# Retry on request timeouts.
|
752
|
+
if response.status_code == 408:
|
753
|
+
log.debug("Retrying due to status code %i", response.status_code)
|
754
|
+
return True
|
755
|
+
|
756
|
+
# Retry on lock timeouts.
|
757
|
+
if response.status_code == 409:
|
758
|
+
log.debug("Retrying due to status code %i", response.status_code)
|
759
|
+
return True
|
760
|
+
|
761
|
+
# Retry on rate limits.
|
762
|
+
if response.status_code == 429:
|
763
|
+
log.debug("Retrying due to status code %i", response.status_code)
|
764
|
+
return True
|
765
|
+
|
766
|
+
# Retry internal errors.
|
767
|
+
if response.status_code >= 500:
|
768
|
+
log.debug("Retrying due to status code %i", response.status_code)
|
769
|
+
return True
|
770
|
+
|
771
|
+
log.debug("Not retrying")
|
772
|
+
return False
|
773
|
+
|
774
|
+
def _idempotency_key(self) -> str:
|
775
|
+
return f"stainless-python-retry-{uuid.uuid4()}"
|
776
|
+
|
777
|
+
|
778
|
+
class _DefaultHttpxClient(httpx.Client):
|
779
|
+
def __init__(self, **kwargs: Any) -> None:
|
780
|
+
kwargs.setdefault("timeout", DEFAULT_TIMEOUT)
|
781
|
+
kwargs.setdefault("limits", DEFAULT_CONNECTION_LIMITS)
|
782
|
+
kwargs.setdefault("follow_redirects", True)
|
783
|
+
super().__init__(**kwargs)
|
784
|
+
|
785
|
+
|
786
|
+
if TYPE_CHECKING:
|
787
|
+
DefaultHttpxClient = httpx.Client
|
788
|
+
"""An alias to `httpx.Client` that provides the same defaults that this SDK
|
789
|
+
uses internally.
|
790
|
+
|
791
|
+
This is useful because overriding the `http_client` with your own instance of
|
792
|
+
`httpx.Client` will result in httpx's defaults being used, not ours.
|
793
|
+
"""
|
794
|
+
else:
|
795
|
+
DefaultHttpxClient = _DefaultHttpxClient
|
796
|
+
|
797
|
+
|
798
|
+
class SyncHttpxClientWrapper(DefaultHttpxClient):
|
799
|
+
def __del__(self) -> None:
|
800
|
+
if self.is_closed:
|
801
|
+
return
|
802
|
+
|
803
|
+
try:
|
804
|
+
self.close()
|
805
|
+
except Exception:
|
806
|
+
pass
|
807
|
+
|
808
|
+
|
809
|
+
class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
|
810
|
+
_client: httpx.Client
|
811
|
+
_default_stream_cls: type[Stream[Any]] | None = None
|
812
|
+
|
813
|
+
def __init__(
|
814
|
+
self,
|
815
|
+
*,
|
816
|
+
version: str,
|
817
|
+
base_url: str | URL,
|
818
|
+
max_retries: int = DEFAULT_MAX_RETRIES,
|
819
|
+
timeout: float | Timeout | None | NotGiven = NOT_GIVEN,
|
820
|
+
http_client: httpx.Client | None = None,
|
821
|
+
custom_headers: Mapping[str, str] | None = None,
|
822
|
+
custom_query: Mapping[str, object] | None = None,
|
823
|
+
_strict_response_validation: bool,
|
824
|
+
) -> None:
|
825
|
+
if not is_given(timeout):
|
826
|
+
# if the user passed in a custom http client with a non-default
|
827
|
+
# timeout set then we use that timeout.
|
828
|
+
#
|
829
|
+
# note: there is an edge case here where the user passes in a client
|
830
|
+
# where they've explicitly set the timeout to match the default timeout
|
831
|
+
# as this check is structural, meaning that we'll think they didn't
|
832
|
+
# pass in a timeout and will ignore it
|
833
|
+
if http_client and http_client.timeout != HTTPX_DEFAULT_TIMEOUT:
|
834
|
+
timeout = http_client.timeout
|
835
|
+
else:
|
836
|
+
timeout = DEFAULT_TIMEOUT
|
837
|
+
|
838
|
+
if http_client is not None and not isinstance(http_client, httpx.Client): # pyright: ignore[reportUnnecessaryIsInstance]
|
839
|
+
raise TypeError(
|
840
|
+
f"Invalid `http_client` argument; Expected an instance of `httpx.Client` but got {type(http_client)}"
|
841
|
+
)
|
842
|
+
|
843
|
+
super().__init__(
|
844
|
+
version=version,
|
845
|
+
# cast to a valid type because mypy doesn't understand our type narrowing
|
846
|
+
timeout=cast(Timeout, timeout),
|
847
|
+
base_url=base_url,
|
848
|
+
max_retries=max_retries,
|
849
|
+
custom_query=custom_query,
|
850
|
+
custom_headers=custom_headers,
|
851
|
+
_strict_response_validation=_strict_response_validation,
|
852
|
+
)
|
853
|
+
self._client = http_client or SyncHttpxClientWrapper(
|
854
|
+
base_url=base_url,
|
855
|
+
# cast to a valid type because mypy doesn't understand our type narrowing
|
856
|
+
timeout=cast(Timeout, timeout),
|
857
|
+
)
|
858
|
+
|
859
|
+
def is_closed(self) -> bool:
|
860
|
+
return self._client.is_closed
|
861
|
+
|
862
|
+
def close(self) -> None:
|
863
|
+
"""Close the underlying HTTPX client.
|
864
|
+
|
865
|
+
The client will *not* be usable after this.
|
866
|
+
"""
|
867
|
+
# If an error is thrown while constructing a client, self._client
|
868
|
+
# may not be present
|
869
|
+
if hasattr(self, "_client"):
|
870
|
+
self._client.close()
|
871
|
+
|
872
|
+
def __enter__(self: _T) -> _T:
|
873
|
+
return self
|
874
|
+
|
875
|
+
def __exit__(
|
876
|
+
self,
|
877
|
+
exc_type: type[BaseException] | None,
|
878
|
+
exc: BaseException | None,
|
879
|
+
exc_tb: TracebackType | None,
|
880
|
+
) -> None:
|
881
|
+
self.close()
|
882
|
+
|
883
|
+
def _prepare_options(
|
884
|
+
self,
|
885
|
+
options: FinalRequestOptions, # noqa: ARG002
|
886
|
+
) -> FinalRequestOptions:
|
887
|
+
"""Hook for mutating the given options"""
|
888
|
+
return options
|
889
|
+
|
890
|
+
def _prepare_request(
|
891
|
+
self,
|
892
|
+
request: httpx.Request, # noqa: ARG002
|
893
|
+
) -> None:
|
894
|
+
"""This method is used as a callback for mutating the `Request` object
|
895
|
+
after it has been constructed.
|
896
|
+
This is useful for cases where you want to add certain headers based off of
|
897
|
+
the request properties, e.g. `url`, `method` etc.
|
898
|
+
"""
|
899
|
+
return None
|
900
|
+
|
901
|
+
@overload
|
902
|
+
def request(
|
903
|
+
self,
|
904
|
+
cast_to: Type[ResponseT],
|
905
|
+
options: FinalRequestOptions,
|
906
|
+
remaining_retries: Optional[int] = None,
|
907
|
+
*,
|
908
|
+
stream: Literal[True],
|
909
|
+
stream_cls: Type[_StreamT],
|
910
|
+
) -> _StreamT: ...
|
911
|
+
|
912
|
+
@overload
|
913
|
+
def request(
|
914
|
+
self,
|
915
|
+
cast_to: Type[ResponseT],
|
916
|
+
options: FinalRequestOptions,
|
917
|
+
remaining_retries: Optional[int] = None,
|
918
|
+
*,
|
919
|
+
stream: Literal[False] = False,
|
920
|
+
) -> ResponseT: ...
|
921
|
+
|
922
|
+
@overload
|
923
|
+
def request(
|
924
|
+
self,
|
925
|
+
cast_to: Type[ResponseT],
|
926
|
+
options: FinalRequestOptions,
|
927
|
+
remaining_retries: Optional[int] = None,
|
928
|
+
*,
|
929
|
+
stream: bool = False,
|
930
|
+
stream_cls: Type[_StreamT] | None = None,
|
931
|
+
) -> ResponseT | _StreamT: ...
|
932
|
+
|
933
|
+
def request(
|
934
|
+
self,
|
935
|
+
cast_to: Type[ResponseT],
|
936
|
+
options: FinalRequestOptions,
|
937
|
+
remaining_retries: Optional[int] = None,
|
938
|
+
*,
|
939
|
+
stream: bool = False,
|
940
|
+
stream_cls: type[_StreamT] | None = None,
|
941
|
+
) -> ResponseT | _StreamT:
|
942
|
+
if remaining_retries is not None:
|
943
|
+
retries_taken = options.get_max_retries(self.max_retries) - remaining_retries
|
944
|
+
else:
|
945
|
+
retries_taken = 0
|
946
|
+
|
947
|
+
return self._request(
|
948
|
+
cast_to=cast_to,
|
949
|
+
options=options,
|
950
|
+
stream=stream,
|
951
|
+
stream_cls=stream_cls,
|
952
|
+
retries_taken=retries_taken,
|
953
|
+
)
|
954
|
+
|
955
|
+
def _request(
|
956
|
+
self,
|
957
|
+
*,
|
958
|
+
cast_to: Type[ResponseT],
|
959
|
+
options: FinalRequestOptions,
|
960
|
+
retries_taken: int,
|
961
|
+
stream: bool,
|
962
|
+
stream_cls: type[_StreamT] | None,
|
963
|
+
) -> ResponseT | _StreamT:
|
964
|
+
# create a copy of the options we were given so that if the
|
965
|
+
# options are mutated later & we then retry, the retries are
|
966
|
+
# given the original options
|
967
|
+
input_options = model_copy(options)
|
968
|
+
|
969
|
+
cast_to = self._maybe_override_cast_to(cast_to, options)
|
970
|
+
options = self._prepare_options(options)
|
971
|
+
|
972
|
+
remaining_retries = options.get_max_retries(self.max_retries) - retries_taken
|
973
|
+
request = self._build_request(options, retries_taken=retries_taken)
|
974
|
+
self._prepare_request(request)
|
975
|
+
|
976
|
+
if options.idempotency_key:
|
977
|
+
# ensure the idempotency key is reused between requests
|
978
|
+
input_options.idempotency_key = options.idempotency_key
|
979
|
+
|
980
|
+
kwargs: HttpxSendArgs = {}
|
981
|
+
if self.custom_auth is not None:
|
982
|
+
kwargs["auth"] = self.custom_auth
|
983
|
+
|
984
|
+
log.debug("Sending HTTP Request: %s %s", request.method, request.url)
|
985
|
+
|
986
|
+
try:
|
987
|
+
response = self._client.send(
|
988
|
+
request,
|
989
|
+
stream=stream or self._should_stream_response_body(request=request),
|
990
|
+
**kwargs,
|
991
|
+
)
|
992
|
+
except httpx.TimeoutException as err:
|
993
|
+
log.debug("Encountered httpx.TimeoutException", exc_info=True)
|
994
|
+
|
995
|
+
if remaining_retries > 0:
|
996
|
+
return self._retry_request(
|
997
|
+
input_options,
|
998
|
+
cast_to,
|
999
|
+
retries_taken=retries_taken,
|
1000
|
+
stream=stream,
|
1001
|
+
stream_cls=stream_cls,
|
1002
|
+
response_headers=None,
|
1003
|
+
)
|
1004
|
+
|
1005
|
+
log.debug("Raising timeout error")
|
1006
|
+
raise APITimeoutError(request=request) from err
|
1007
|
+
except Exception as err:
|
1008
|
+
log.debug("Encountered Exception", exc_info=True)
|
1009
|
+
|
1010
|
+
if remaining_retries > 0:
|
1011
|
+
return self._retry_request(
|
1012
|
+
input_options,
|
1013
|
+
cast_to,
|
1014
|
+
retries_taken=retries_taken,
|
1015
|
+
stream=stream,
|
1016
|
+
stream_cls=stream_cls,
|
1017
|
+
response_headers=None,
|
1018
|
+
)
|
1019
|
+
|
1020
|
+
log.debug("Raising connection error")
|
1021
|
+
raise APIConnectionError(request=request) from err
|
1022
|
+
|
1023
|
+
log.debug(
|
1024
|
+
'HTTP Response: %s %s "%i %s" %s',
|
1025
|
+
request.method,
|
1026
|
+
request.url,
|
1027
|
+
response.status_code,
|
1028
|
+
response.reason_phrase,
|
1029
|
+
response.headers,
|
1030
|
+
)
|
1031
|
+
|
1032
|
+
try:
|
1033
|
+
response.raise_for_status()
|
1034
|
+
except httpx.HTTPStatusError as err: # thrown on 4xx and 5xx status code
|
1035
|
+
log.debug("Encountered httpx.HTTPStatusError", exc_info=True)
|
1036
|
+
|
1037
|
+
if remaining_retries > 0 and self._should_retry(err.response):
|
1038
|
+
err.response.close()
|
1039
|
+
return self._retry_request(
|
1040
|
+
input_options,
|
1041
|
+
cast_to,
|
1042
|
+
retries_taken=retries_taken,
|
1043
|
+
response_headers=err.response.headers,
|
1044
|
+
stream=stream,
|
1045
|
+
stream_cls=stream_cls,
|
1046
|
+
)
|
1047
|
+
|
1048
|
+
# If the response is streamed then we need to explicitly read the response
|
1049
|
+
# to completion before attempting to access the response text.
|
1050
|
+
if not err.response.is_closed:
|
1051
|
+
err.response.read()
|
1052
|
+
|
1053
|
+
log.debug("Re-raising status error")
|
1054
|
+
raise self._make_status_error_from_response(err.response) from None
|
1055
|
+
|
1056
|
+
return self._process_response(
|
1057
|
+
cast_to=cast_to,
|
1058
|
+
options=options,
|
1059
|
+
response=response,
|
1060
|
+
stream=stream,
|
1061
|
+
stream_cls=stream_cls,
|
1062
|
+
retries_taken=retries_taken,
|
1063
|
+
)
|
1064
|
+
|
1065
|
+
def _retry_request(
|
1066
|
+
self,
|
1067
|
+
options: FinalRequestOptions,
|
1068
|
+
cast_to: Type[ResponseT],
|
1069
|
+
*,
|
1070
|
+
retries_taken: int,
|
1071
|
+
response_headers: httpx.Headers | None,
|
1072
|
+
stream: bool,
|
1073
|
+
stream_cls: type[_StreamT] | None,
|
1074
|
+
) -> ResponseT | _StreamT:
|
1075
|
+
remaining_retries = options.get_max_retries(self.max_retries) - retries_taken
|
1076
|
+
if remaining_retries == 1:
|
1077
|
+
log.debug("1 retry left")
|
1078
|
+
else:
|
1079
|
+
log.debug("%i retries left", remaining_retries)
|
1080
|
+
|
1081
|
+
timeout = self._calculate_retry_timeout(remaining_retries, options, response_headers)
|
1082
|
+
log.info("Retrying request to %s in %f seconds", options.url, timeout)
|
1083
|
+
|
1084
|
+
# In a synchronous context we are blocking the entire thread. Up to the library user to run the client in a
|
1085
|
+
# different thread if necessary.
|
1086
|
+
time.sleep(timeout)
|
1087
|
+
|
1088
|
+
return self._request(
|
1089
|
+
options=options,
|
1090
|
+
cast_to=cast_to,
|
1091
|
+
retries_taken=retries_taken + 1,
|
1092
|
+
stream=stream,
|
1093
|
+
stream_cls=stream_cls,
|
1094
|
+
)
|
1095
|
+
|
1096
|
+
def _process_response(
|
1097
|
+
self,
|
1098
|
+
*,
|
1099
|
+
cast_to: Type[ResponseT],
|
1100
|
+
options: FinalRequestOptions,
|
1101
|
+
response: httpx.Response,
|
1102
|
+
stream: bool,
|
1103
|
+
stream_cls: type[Stream[Any]] | type[AsyncStream[Any]] | None,
|
1104
|
+
retries_taken: int = 0,
|
1105
|
+
) -> ResponseT:
|
1106
|
+
origin = get_origin(cast_to) or cast_to
|
1107
|
+
|
1108
|
+
if inspect.isclass(origin) and issubclass(origin, BaseAPIResponse):
|
1109
|
+
if not issubclass(origin, APIResponse):
|
1110
|
+
raise TypeError(f"API Response types must subclass {APIResponse}; Received {origin}")
|
1111
|
+
|
1112
|
+
response_cls = cast("type[BaseAPIResponse[Any]]", cast_to)
|
1113
|
+
return cast(
|
1114
|
+
ResponseT,
|
1115
|
+
response_cls(
|
1116
|
+
raw=response,
|
1117
|
+
client=self,
|
1118
|
+
cast_to=extract_response_type(response_cls),
|
1119
|
+
stream=stream,
|
1120
|
+
stream_cls=stream_cls,
|
1121
|
+
options=options,
|
1122
|
+
retries_taken=retries_taken,
|
1123
|
+
),
|
1124
|
+
)
|
1125
|
+
|
1126
|
+
if cast_to == httpx.Response:
|
1127
|
+
return cast(ResponseT, response)
|
1128
|
+
|
1129
|
+
api_response = APIResponse(
|
1130
|
+
raw=response,
|
1131
|
+
client=self,
|
1132
|
+
cast_to=cast("type[ResponseT]", cast_to), # pyright: ignore[reportUnnecessaryCast]
|
1133
|
+
stream=stream,
|
1134
|
+
stream_cls=stream_cls,
|
1135
|
+
options=options,
|
1136
|
+
retries_taken=retries_taken,
|
1137
|
+
)
|
1138
|
+
if bool(response.request.headers.get(RAW_RESPONSE_HEADER)):
|
1139
|
+
return cast(ResponseT, api_response)
|
1140
|
+
|
1141
|
+
return api_response.parse()
|
1142
|
+
|
1143
|
+
def _request_api_list(
|
1144
|
+
self,
|
1145
|
+
model: Type[object],
|
1146
|
+
page: Type[SyncPageT],
|
1147
|
+
options: FinalRequestOptions,
|
1148
|
+
) -> SyncPageT:
|
1149
|
+
def _parser(resp: SyncPageT) -> SyncPageT:
|
1150
|
+
resp._set_private_attributes(
|
1151
|
+
client=self,
|
1152
|
+
model=model,
|
1153
|
+
options=options,
|
1154
|
+
)
|
1155
|
+
return resp
|
1156
|
+
|
1157
|
+
options.post_parser = _parser
|
1158
|
+
|
1159
|
+
return self.request(page, options, stream=False)
|
1160
|
+
|
1161
|
+
@overload
|
1162
|
+
def get(
|
1163
|
+
self,
|
1164
|
+
path: str,
|
1165
|
+
*,
|
1166
|
+
cast_to: Type[ResponseT],
|
1167
|
+
options: RequestOptions = {},
|
1168
|
+
stream: Literal[False] = False,
|
1169
|
+
) -> ResponseT: ...
|
1170
|
+
|
1171
|
+
@overload
|
1172
|
+
def get(
|
1173
|
+
self,
|
1174
|
+
path: str,
|
1175
|
+
*,
|
1176
|
+
cast_to: Type[ResponseT],
|
1177
|
+
options: RequestOptions = {},
|
1178
|
+
stream: Literal[True],
|
1179
|
+
stream_cls: type[_StreamT],
|
1180
|
+
) -> _StreamT: ...
|
1181
|
+
|
1182
|
+
@overload
|
1183
|
+
def get(
|
1184
|
+
self,
|
1185
|
+
path: str,
|
1186
|
+
*,
|
1187
|
+
cast_to: Type[ResponseT],
|
1188
|
+
options: RequestOptions = {},
|
1189
|
+
stream: bool,
|
1190
|
+
stream_cls: type[_StreamT] | None = None,
|
1191
|
+
) -> ResponseT | _StreamT: ...
|
1192
|
+
|
1193
|
+
def get(
|
1194
|
+
self,
|
1195
|
+
path: str,
|
1196
|
+
*,
|
1197
|
+
cast_to: Type[ResponseT],
|
1198
|
+
options: RequestOptions = {},
|
1199
|
+
stream: bool = False,
|
1200
|
+
stream_cls: type[_StreamT] | None = None,
|
1201
|
+
) -> ResponseT | _StreamT:
|
1202
|
+
opts = FinalRequestOptions.construct(method="get", url=path, **options)
|
1203
|
+
# cast is required because mypy complains about returning Any even though
|
1204
|
+
# it understands the type variables
|
1205
|
+
return cast(ResponseT, self.request(cast_to, opts, stream=stream, stream_cls=stream_cls))
|
1206
|
+
|
1207
|
+
@overload
|
1208
|
+
def post(
|
1209
|
+
self,
|
1210
|
+
path: str,
|
1211
|
+
*,
|
1212
|
+
cast_to: Type[ResponseT],
|
1213
|
+
body: Body | None = None,
|
1214
|
+
options: RequestOptions = {},
|
1215
|
+
files: RequestFiles | None = None,
|
1216
|
+
stream: Literal[False] = False,
|
1217
|
+
) -> ResponseT: ...
|
1218
|
+
|
1219
|
+
@overload
|
1220
|
+
def post(
|
1221
|
+
self,
|
1222
|
+
path: str,
|
1223
|
+
*,
|
1224
|
+
cast_to: Type[ResponseT],
|
1225
|
+
body: Body | None = None,
|
1226
|
+
options: RequestOptions = {},
|
1227
|
+
files: RequestFiles | None = None,
|
1228
|
+
stream: Literal[True],
|
1229
|
+
stream_cls: type[_StreamT],
|
1230
|
+
) -> _StreamT: ...
|
1231
|
+
|
1232
|
+
@overload
|
1233
|
+
def post(
|
1234
|
+
self,
|
1235
|
+
path: str,
|
1236
|
+
*,
|
1237
|
+
cast_to: Type[ResponseT],
|
1238
|
+
body: Body | None = None,
|
1239
|
+
options: RequestOptions = {},
|
1240
|
+
files: RequestFiles | None = None,
|
1241
|
+
stream: bool,
|
1242
|
+
stream_cls: type[_StreamT] | None = None,
|
1243
|
+
) -> ResponseT | _StreamT: ...
|
1244
|
+
|
1245
|
+
def post(
|
1246
|
+
self,
|
1247
|
+
path: str,
|
1248
|
+
*,
|
1249
|
+
cast_to: Type[ResponseT],
|
1250
|
+
body: Body | None = None,
|
1251
|
+
options: RequestOptions = {},
|
1252
|
+
files: RequestFiles | None = None,
|
1253
|
+
stream: bool = False,
|
1254
|
+
stream_cls: type[_StreamT] | None = None,
|
1255
|
+
) -> ResponseT | _StreamT:
|
1256
|
+
opts = FinalRequestOptions.construct(
|
1257
|
+
method="post", url=path, json_data=body, files=to_httpx_files(files), **options
|
1258
|
+
)
|
1259
|
+
return cast(ResponseT, self.request(cast_to, opts, stream=stream, stream_cls=stream_cls))
|
1260
|
+
|
1261
|
+
def patch(
|
1262
|
+
self,
|
1263
|
+
path: str,
|
1264
|
+
*,
|
1265
|
+
cast_to: Type[ResponseT],
|
1266
|
+
body: Body | None = None,
|
1267
|
+
options: RequestOptions = {},
|
1268
|
+
) -> ResponseT:
|
1269
|
+
opts = FinalRequestOptions.construct(method="patch", url=path, json_data=body, **options)
|
1270
|
+
return self.request(cast_to, opts)
|
1271
|
+
|
1272
|
+
def put(
|
1273
|
+
self,
|
1274
|
+
path: str,
|
1275
|
+
*,
|
1276
|
+
cast_to: Type[ResponseT],
|
1277
|
+
body: Body | None = None,
|
1278
|
+
files: RequestFiles | None = None,
|
1279
|
+
options: RequestOptions = {},
|
1280
|
+
) -> ResponseT:
|
1281
|
+
opts = FinalRequestOptions.construct(
|
1282
|
+
method="put", url=path, json_data=body, files=to_httpx_files(files), **options
|
1283
|
+
)
|
1284
|
+
return self.request(cast_to, opts)
|
1285
|
+
|
1286
|
+
def delete(
|
1287
|
+
self,
|
1288
|
+
path: str,
|
1289
|
+
*,
|
1290
|
+
cast_to: Type[ResponseT],
|
1291
|
+
body: Body | None = None,
|
1292
|
+
options: RequestOptions = {},
|
1293
|
+
) -> ResponseT:
|
1294
|
+
opts = FinalRequestOptions.construct(method="delete", url=path, json_data=body, **options)
|
1295
|
+
return self.request(cast_to, opts)
|
1296
|
+
|
1297
|
+
def get_api_list(
|
1298
|
+
self,
|
1299
|
+
path: str,
|
1300
|
+
*,
|
1301
|
+
model: Type[object],
|
1302
|
+
page: Type[SyncPageT],
|
1303
|
+
body: Body | None = None,
|
1304
|
+
options: RequestOptions = {},
|
1305
|
+
method: str = "get",
|
1306
|
+
) -> SyncPageT:
|
1307
|
+
opts = FinalRequestOptions.construct(method=method, url=path, json_data=body, **options)
|
1308
|
+
return self._request_api_list(model, page, opts)
|
1309
|
+
|
1310
|
+
|
1311
|
+
class _DefaultAsyncHttpxClient(httpx.AsyncClient):
|
1312
|
+
def __init__(self, **kwargs: Any) -> None:
|
1313
|
+
kwargs.setdefault("timeout", DEFAULT_TIMEOUT)
|
1314
|
+
kwargs.setdefault("limits", DEFAULT_CONNECTION_LIMITS)
|
1315
|
+
kwargs.setdefault("follow_redirects", True)
|
1316
|
+
super().__init__(**kwargs)
|
1317
|
+
|
1318
|
+
|
1319
|
+
if TYPE_CHECKING:
|
1320
|
+
DefaultAsyncHttpxClient = httpx.AsyncClient
|
1321
|
+
"""An alias to `httpx.AsyncClient` that provides the same defaults that this SDK
|
1322
|
+
uses internally.
|
1323
|
+
|
1324
|
+
This is useful because overriding the `http_client` with your own instance of
|
1325
|
+
`httpx.AsyncClient` will result in httpx's defaults being used, not ours.
|
1326
|
+
"""
|
1327
|
+
else:
|
1328
|
+
DefaultAsyncHttpxClient = _DefaultAsyncHttpxClient
|
1329
|
+
|
1330
|
+
|
1331
|
+
class AsyncHttpxClientWrapper(DefaultAsyncHttpxClient):
|
1332
|
+
def __del__(self) -> None:
|
1333
|
+
if self.is_closed:
|
1334
|
+
return
|
1335
|
+
|
1336
|
+
try:
|
1337
|
+
# TODO(someday): support non asyncio runtimes here
|
1338
|
+
asyncio.get_running_loop().create_task(self.aclose())
|
1339
|
+
except Exception:
|
1340
|
+
pass
|
1341
|
+
|
1342
|
+
|
1343
|
+
class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
|
1344
|
+
_client: httpx.AsyncClient
|
1345
|
+
_default_stream_cls: type[AsyncStream[Any]] | None = None
|
1346
|
+
|
1347
|
+
def __init__(
|
1348
|
+
self,
|
1349
|
+
*,
|
1350
|
+
version: str,
|
1351
|
+
base_url: str | URL,
|
1352
|
+
_strict_response_validation: bool,
|
1353
|
+
max_retries: int = DEFAULT_MAX_RETRIES,
|
1354
|
+
timeout: float | Timeout | None | NotGiven = NOT_GIVEN,
|
1355
|
+
http_client: httpx.AsyncClient | None = None,
|
1356
|
+
custom_headers: Mapping[str, str] | None = None,
|
1357
|
+
custom_query: Mapping[str, object] | None = None,
|
1358
|
+
) -> None:
|
1359
|
+
if not is_given(timeout):
|
1360
|
+
# if the user passed in a custom http client with a non-default
|
1361
|
+
# timeout set then we use that timeout.
|
1362
|
+
#
|
1363
|
+
# note: there is an edge case here where the user passes in a client
|
1364
|
+
# where they've explicitly set the timeout to match the default timeout
|
1365
|
+
# as this check is structural, meaning that we'll think they didn't
|
1366
|
+
# pass in a timeout and will ignore it
|
1367
|
+
if http_client and http_client.timeout != HTTPX_DEFAULT_TIMEOUT:
|
1368
|
+
timeout = http_client.timeout
|
1369
|
+
else:
|
1370
|
+
timeout = DEFAULT_TIMEOUT
|
1371
|
+
|
1372
|
+
if http_client is not None and not isinstance(http_client, httpx.AsyncClient): # pyright: ignore[reportUnnecessaryIsInstance]
|
1373
|
+
raise TypeError(
|
1374
|
+
f"Invalid `http_client` argument; Expected an instance of `httpx.AsyncClient` but got {type(http_client)}"
|
1375
|
+
)
|
1376
|
+
|
1377
|
+
super().__init__(
|
1378
|
+
version=version,
|
1379
|
+
base_url=base_url,
|
1380
|
+
# cast to a valid type because mypy doesn't understand our type narrowing
|
1381
|
+
timeout=cast(Timeout, timeout),
|
1382
|
+
max_retries=max_retries,
|
1383
|
+
custom_query=custom_query,
|
1384
|
+
custom_headers=custom_headers,
|
1385
|
+
_strict_response_validation=_strict_response_validation,
|
1386
|
+
)
|
1387
|
+
self._client = http_client or AsyncHttpxClientWrapper(
|
1388
|
+
base_url=base_url,
|
1389
|
+
# cast to a valid type because mypy doesn't understand our type narrowing
|
1390
|
+
timeout=cast(Timeout, timeout),
|
1391
|
+
)
|
1392
|
+
|
1393
|
+
def is_closed(self) -> bool:
|
1394
|
+
return self._client.is_closed
|
1395
|
+
|
1396
|
+
async def close(self) -> None:
|
1397
|
+
"""Close the underlying HTTPX client.
|
1398
|
+
|
1399
|
+
The client will *not* be usable after this.
|
1400
|
+
"""
|
1401
|
+
await self._client.aclose()
|
1402
|
+
|
1403
|
+
async def __aenter__(self: _T) -> _T:
|
1404
|
+
return self
|
1405
|
+
|
1406
|
+
async def __aexit__(
|
1407
|
+
self,
|
1408
|
+
exc_type: type[BaseException] | None,
|
1409
|
+
exc: BaseException | None,
|
1410
|
+
exc_tb: TracebackType | None,
|
1411
|
+
) -> None:
|
1412
|
+
await self.close()
|
1413
|
+
|
1414
|
+
async def _prepare_options(
|
1415
|
+
self,
|
1416
|
+
options: FinalRequestOptions, # noqa: ARG002
|
1417
|
+
) -> FinalRequestOptions:
|
1418
|
+
"""Hook for mutating the given options"""
|
1419
|
+
return options
|
1420
|
+
|
1421
|
+
async def _prepare_request(
|
1422
|
+
self,
|
1423
|
+
request: httpx.Request, # noqa: ARG002
|
1424
|
+
) -> None:
|
1425
|
+
"""This method is used as a callback for mutating the `Request` object
|
1426
|
+
after it has been constructed.
|
1427
|
+
This is useful for cases where you want to add certain headers based off of
|
1428
|
+
the request properties, e.g. `url`, `method` etc.
|
1429
|
+
"""
|
1430
|
+
return None
|
1431
|
+
|
1432
|
+
@overload
|
1433
|
+
async def request(
|
1434
|
+
self,
|
1435
|
+
cast_to: Type[ResponseT],
|
1436
|
+
options: FinalRequestOptions,
|
1437
|
+
*,
|
1438
|
+
stream: Literal[False] = False,
|
1439
|
+
remaining_retries: Optional[int] = None,
|
1440
|
+
) -> ResponseT: ...
|
1441
|
+
|
1442
|
+
@overload
|
1443
|
+
async def request(
|
1444
|
+
self,
|
1445
|
+
cast_to: Type[ResponseT],
|
1446
|
+
options: FinalRequestOptions,
|
1447
|
+
*,
|
1448
|
+
stream: Literal[True],
|
1449
|
+
stream_cls: type[_AsyncStreamT],
|
1450
|
+
remaining_retries: Optional[int] = None,
|
1451
|
+
) -> _AsyncStreamT: ...
|
1452
|
+
|
1453
|
+
@overload
|
1454
|
+
async def request(
|
1455
|
+
self,
|
1456
|
+
cast_to: Type[ResponseT],
|
1457
|
+
options: FinalRequestOptions,
|
1458
|
+
*,
|
1459
|
+
stream: bool,
|
1460
|
+
stream_cls: type[_AsyncStreamT] | None = None,
|
1461
|
+
remaining_retries: Optional[int] = None,
|
1462
|
+
) -> ResponseT | _AsyncStreamT: ...
|
1463
|
+
|
1464
|
+
async def request(
|
1465
|
+
self,
|
1466
|
+
cast_to: Type[ResponseT],
|
1467
|
+
options: FinalRequestOptions,
|
1468
|
+
*,
|
1469
|
+
stream: bool = False,
|
1470
|
+
stream_cls: type[_AsyncStreamT] | None = None,
|
1471
|
+
remaining_retries: Optional[int] = None,
|
1472
|
+
) -> ResponseT | _AsyncStreamT:
|
1473
|
+
if remaining_retries is not None:
|
1474
|
+
retries_taken = options.get_max_retries(self.max_retries) - remaining_retries
|
1475
|
+
else:
|
1476
|
+
retries_taken = 0
|
1477
|
+
|
1478
|
+
return await self._request(
|
1479
|
+
cast_to=cast_to,
|
1480
|
+
options=options,
|
1481
|
+
stream=stream,
|
1482
|
+
stream_cls=stream_cls,
|
1483
|
+
retries_taken=retries_taken,
|
1484
|
+
)
|
1485
|
+
|
1486
|
+
async def _request(
|
1487
|
+
self,
|
1488
|
+
cast_to: Type[ResponseT],
|
1489
|
+
options: FinalRequestOptions,
|
1490
|
+
*,
|
1491
|
+
stream: bool,
|
1492
|
+
stream_cls: type[_AsyncStreamT] | None,
|
1493
|
+
retries_taken: int,
|
1494
|
+
) -> ResponseT | _AsyncStreamT:
|
1495
|
+
if self._platform is None:
|
1496
|
+
# `get_platform` can make blocking IO calls so we
|
1497
|
+
# execute it earlier while we are in an async context
|
1498
|
+
self._platform = await asyncify(get_platform)()
|
1499
|
+
|
1500
|
+
# create a copy of the options we were given so that if the
|
1501
|
+
# options are mutated later & we then retry, the retries are
|
1502
|
+
# given the original options
|
1503
|
+
input_options = model_copy(options)
|
1504
|
+
|
1505
|
+
cast_to = self._maybe_override_cast_to(cast_to, options)
|
1506
|
+
options = await self._prepare_options(options)
|
1507
|
+
|
1508
|
+
remaining_retries = options.get_max_retries(self.max_retries) - retries_taken
|
1509
|
+
request = self._build_request(options, retries_taken=retries_taken)
|
1510
|
+
await self._prepare_request(request)
|
1511
|
+
|
1512
|
+
if options.idempotency_key:
|
1513
|
+
# ensure the idempotency key is reused between requests
|
1514
|
+
input_options.idempotency_key = options.idempotency_key
|
1515
|
+
|
1516
|
+
kwargs: HttpxSendArgs = {}
|
1517
|
+
if self.custom_auth is not None:
|
1518
|
+
kwargs["auth"] = self.custom_auth
|
1519
|
+
|
1520
|
+
try:
|
1521
|
+
response = await self._client.send(
|
1522
|
+
request,
|
1523
|
+
stream=stream or self._should_stream_response_body(request=request),
|
1524
|
+
**kwargs,
|
1525
|
+
)
|
1526
|
+
except httpx.TimeoutException as err:
|
1527
|
+
log.debug("Encountered httpx.TimeoutException", exc_info=True)
|
1528
|
+
|
1529
|
+
if remaining_retries > 0:
|
1530
|
+
return await self._retry_request(
|
1531
|
+
input_options,
|
1532
|
+
cast_to,
|
1533
|
+
retries_taken=retries_taken,
|
1534
|
+
stream=stream,
|
1535
|
+
stream_cls=stream_cls,
|
1536
|
+
response_headers=None,
|
1537
|
+
)
|
1538
|
+
|
1539
|
+
log.debug("Raising timeout error")
|
1540
|
+
raise APITimeoutError(request=request) from err
|
1541
|
+
except Exception as err:
|
1542
|
+
log.debug("Encountered Exception", exc_info=True)
|
1543
|
+
|
1544
|
+
if remaining_retries > 0:
|
1545
|
+
return await self._retry_request(
|
1546
|
+
input_options,
|
1547
|
+
cast_to,
|
1548
|
+
retries_taken=retries_taken,
|
1549
|
+
stream=stream,
|
1550
|
+
stream_cls=stream_cls,
|
1551
|
+
response_headers=None,
|
1552
|
+
)
|
1553
|
+
|
1554
|
+
log.debug("Raising connection error")
|
1555
|
+
raise APIConnectionError(request=request) from err
|
1556
|
+
|
1557
|
+
log.debug(
|
1558
|
+
'HTTP Request: %s %s "%i %s"', request.method, request.url, response.status_code, response.reason_phrase
|
1559
|
+
)
|
1560
|
+
|
1561
|
+
try:
|
1562
|
+
response.raise_for_status()
|
1563
|
+
except httpx.HTTPStatusError as err: # thrown on 4xx and 5xx status code
|
1564
|
+
log.debug("Encountered httpx.HTTPStatusError", exc_info=True)
|
1565
|
+
|
1566
|
+
if remaining_retries > 0 and self._should_retry(err.response):
|
1567
|
+
await err.response.aclose()
|
1568
|
+
return await self._retry_request(
|
1569
|
+
input_options,
|
1570
|
+
cast_to,
|
1571
|
+
retries_taken=retries_taken,
|
1572
|
+
response_headers=err.response.headers,
|
1573
|
+
stream=stream,
|
1574
|
+
stream_cls=stream_cls,
|
1575
|
+
)
|
1576
|
+
|
1577
|
+
# If the response is streamed then we need to explicitly read the response
|
1578
|
+
# to completion before attempting to access the response text.
|
1579
|
+
if not err.response.is_closed:
|
1580
|
+
await err.response.aread()
|
1581
|
+
|
1582
|
+
log.debug("Re-raising status error")
|
1583
|
+
raise self._make_status_error_from_response(err.response) from None
|
1584
|
+
|
1585
|
+
return await self._process_response(
|
1586
|
+
cast_to=cast_to,
|
1587
|
+
options=options,
|
1588
|
+
response=response,
|
1589
|
+
stream=stream,
|
1590
|
+
stream_cls=stream_cls,
|
1591
|
+
retries_taken=retries_taken,
|
1592
|
+
)
|
1593
|
+
|
1594
|
+
async def _retry_request(
|
1595
|
+
self,
|
1596
|
+
options: FinalRequestOptions,
|
1597
|
+
cast_to: Type[ResponseT],
|
1598
|
+
*,
|
1599
|
+
retries_taken: int,
|
1600
|
+
response_headers: httpx.Headers | None,
|
1601
|
+
stream: bool,
|
1602
|
+
stream_cls: type[_AsyncStreamT] | None,
|
1603
|
+
) -> ResponseT | _AsyncStreamT:
|
1604
|
+
remaining_retries = options.get_max_retries(self.max_retries) - retries_taken
|
1605
|
+
if remaining_retries == 1:
|
1606
|
+
log.debug("1 retry left")
|
1607
|
+
else:
|
1608
|
+
log.debug("%i retries left", remaining_retries)
|
1609
|
+
|
1610
|
+
timeout = self._calculate_retry_timeout(remaining_retries, options, response_headers)
|
1611
|
+
log.info("Retrying request to %s in %f seconds", options.url, timeout)
|
1612
|
+
|
1613
|
+
await anyio.sleep(timeout)
|
1614
|
+
|
1615
|
+
return await self._request(
|
1616
|
+
options=options,
|
1617
|
+
cast_to=cast_to,
|
1618
|
+
retries_taken=retries_taken + 1,
|
1619
|
+
stream=stream,
|
1620
|
+
stream_cls=stream_cls,
|
1621
|
+
)
|
1622
|
+
|
1623
|
+
async def _process_response(
|
1624
|
+
self,
|
1625
|
+
*,
|
1626
|
+
cast_to: Type[ResponseT],
|
1627
|
+
options: FinalRequestOptions,
|
1628
|
+
response: httpx.Response,
|
1629
|
+
stream: bool,
|
1630
|
+
stream_cls: type[Stream[Any]] | type[AsyncStream[Any]] | None,
|
1631
|
+
retries_taken: int = 0,
|
1632
|
+
) -> ResponseT:
|
1633
|
+
origin = get_origin(cast_to) or cast_to
|
1634
|
+
|
1635
|
+
if inspect.isclass(origin) and issubclass(origin, BaseAPIResponse):
|
1636
|
+
if not issubclass(origin, AsyncAPIResponse):
|
1637
|
+
raise TypeError(f"API Response types must subclass {AsyncAPIResponse}; Received {origin}")
|
1638
|
+
|
1639
|
+
response_cls = cast("type[BaseAPIResponse[Any]]", cast_to)
|
1640
|
+
return cast(
|
1641
|
+
"ResponseT",
|
1642
|
+
response_cls(
|
1643
|
+
raw=response,
|
1644
|
+
client=self,
|
1645
|
+
cast_to=extract_response_type(response_cls),
|
1646
|
+
stream=stream,
|
1647
|
+
stream_cls=stream_cls,
|
1648
|
+
options=options,
|
1649
|
+
retries_taken=retries_taken,
|
1650
|
+
),
|
1651
|
+
)
|
1652
|
+
|
1653
|
+
if cast_to == httpx.Response:
|
1654
|
+
return cast(ResponseT, response)
|
1655
|
+
|
1656
|
+
api_response = AsyncAPIResponse(
|
1657
|
+
raw=response,
|
1658
|
+
client=self,
|
1659
|
+
cast_to=cast("type[ResponseT]", cast_to), # pyright: ignore[reportUnnecessaryCast]
|
1660
|
+
stream=stream,
|
1661
|
+
stream_cls=stream_cls,
|
1662
|
+
options=options,
|
1663
|
+
retries_taken=retries_taken,
|
1664
|
+
)
|
1665
|
+
if bool(response.request.headers.get(RAW_RESPONSE_HEADER)):
|
1666
|
+
return cast(ResponseT, api_response)
|
1667
|
+
|
1668
|
+
return await api_response.parse()
|
1669
|
+
|
1670
|
+
def _request_api_list(
|
1671
|
+
self,
|
1672
|
+
model: Type[_T],
|
1673
|
+
page: Type[AsyncPageT],
|
1674
|
+
options: FinalRequestOptions,
|
1675
|
+
) -> AsyncPaginator[_T, AsyncPageT]:
|
1676
|
+
return AsyncPaginator(client=self, options=options, page_cls=page, model=model)
|
1677
|
+
|
1678
|
+
@overload
|
1679
|
+
async def get(
|
1680
|
+
self,
|
1681
|
+
path: str,
|
1682
|
+
*,
|
1683
|
+
cast_to: Type[ResponseT],
|
1684
|
+
options: RequestOptions = {},
|
1685
|
+
stream: Literal[False] = False,
|
1686
|
+
) -> ResponseT: ...
|
1687
|
+
|
1688
|
+
@overload
|
1689
|
+
async def get(
|
1690
|
+
self,
|
1691
|
+
path: str,
|
1692
|
+
*,
|
1693
|
+
cast_to: Type[ResponseT],
|
1694
|
+
options: RequestOptions = {},
|
1695
|
+
stream: Literal[True],
|
1696
|
+
stream_cls: type[_AsyncStreamT],
|
1697
|
+
) -> _AsyncStreamT: ...
|
1698
|
+
|
1699
|
+
@overload
|
1700
|
+
async def get(
|
1701
|
+
self,
|
1702
|
+
path: str,
|
1703
|
+
*,
|
1704
|
+
cast_to: Type[ResponseT],
|
1705
|
+
options: RequestOptions = {},
|
1706
|
+
stream: bool,
|
1707
|
+
stream_cls: type[_AsyncStreamT] | None = None,
|
1708
|
+
) -> ResponseT | _AsyncStreamT: ...
|
1709
|
+
|
1710
|
+
async def get(
|
1711
|
+
self,
|
1712
|
+
path: str,
|
1713
|
+
*,
|
1714
|
+
cast_to: Type[ResponseT],
|
1715
|
+
options: RequestOptions = {},
|
1716
|
+
stream: bool = False,
|
1717
|
+
stream_cls: type[_AsyncStreamT] | None = None,
|
1718
|
+
) -> ResponseT | _AsyncStreamT:
|
1719
|
+
opts = FinalRequestOptions.construct(method="get", url=path, **options)
|
1720
|
+
return await self.request(cast_to, opts, stream=stream, stream_cls=stream_cls)
|
1721
|
+
|
1722
|
+
@overload
|
1723
|
+
async def post(
|
1724
|
+
self,
|
1725
|
+
path: str,
|
1726
|
+
*,
|
1727
|
+
cast_to: Type[ResponseT],
|
1728
|
+
body: Body | None = None,
|
1729
|
+
files: RequestFiles | None = None,
|
1730
|
+
options: RequestOptions = {},
|
1731
|
+
stream: Literal[False] = False,
|
1732
|
+
) -> ResponseT: ...
|
1733
|
+
|
1734
|
+
@overload
|
1735
|
+
async def post(
|
1736
|
+
self,
|
1737
|
+
path: str,
|
1738
|
+
*,
|
1739
|
+
cast_to: Type[ResponseT],
|
1740
|
+
body: Body | None = None,
|
1741
|
+
files: RequestFiles | None = None,
|
1742
|
+
options: RequestOptions = {},
|
1743
|
+
stream: Literal[True],
|
1744
|
+
stream_cls: type[_AsyncStreamT],
|
1745
|
+
) -> _AsyncStreamT: ...
|
1746
|
+
|
1747
|
+
@overload
|
1748
|
+
async def post(
|
1749
|
+
self,
|
1750
|
+
path: str,
|
1751
|
+
*,
|
1752
|
+
cast_to: Type[ResponseT],
|
1753
|
+
body: Body | None = None,
|
1754
|
+
files: RequestFiles | None = None,
|
1755
|
+
options: RequestOptions = {},
|
1756
|
+
stream: bool,
|
1757
|
+
stream_cls: type[_AsyncStreamT] | None = None,
|
1758
|
+
) -> ResponseT | _AsyncStreamT: ...
|
1759
|
+
|
1760
|
+
async def post(
|
1761
|
+
self,
|
1762
|
+
path: str,
|
1763
|
+
*,
|
1764
|
+
cast_to: Type[ResponseT],
|
1765
|
+
body: Body | None = None,
|
1766
|
+
files: RequestFiles | None = None,
|
1767
|
+
options: RequestOptions = {},
|
1768
|
+
stream: bool = False,
|
1769
|
+
stream_cls: type[_AsyncStreamT] | None = None,
|
1770
|
+
) -> ResponseT | _AsyncStreamT:
|
1771
|
+
opts = FinalRequestOptions.construct(
|
1772
|
+
method="post", url=path, json_data=body, files=await async_to_httpx_files(files), **options
|
1773
|
+
)
|
1774
|
+
return await self.request(cast_to, opts, stream=stream, stream_cls=stream_cls)
|
1775
|
+
|
1776
|
+
async def patch(
|
1777
|
+
self,
|
1778
|
+
path: str,
|
1779
|
+
*,
|
1780
|
+
cast_to: Type[ResponseT],
|
1781
|
+
body: Body | None = None,
|
1782
|
+
options: RequestOptions = {},
|
1783
|
+
) -> ResponseT:
|
1784
|
+
opts = FinalRequestOptions.construct(method="patch", url=path, json_data=body, **options)
|
1785
|
+
return await self.request(cast_to, opts)
|
1786
|
+
|
1787
|
+
async def put(
|
1788
|
+
self,
|
1789
|
+
path: str,
|
1790
|
+
*,
|
1791
|
+
cast_to: Type[ResponseT],
|
1792
|
+
body: Body | None = None,
|
1793
|
+
files: RequestFiles | None = None,
|
1794
|
+
options: RequestOptions = {},
|
1795
|
+
) -> ResponseT:
|
1796
|
+
opts = FinalRequestOptions.construct(
|
1797
|
+
method="put", url=path, json_data=body, files=await async_to_httpx_files(files), **options
|
1798
|
+
)
|
1799
|
+
return await self.request(cast_to, opts)
|
1800
|
+
|
1801
|
+
async def delete(
|
1802
|
+
self,
|
1803
|
+
path: str,
|
1804
|
+
*,
|
1805
|
+
cast_to: Type[ResponseT],
|
1806
|
+
body: Body | None = None,
|
1807
|
+
options: RequestOptions = {},
|
1808
|
+
) -> ResponseT:
|
1809
|
+
opts = FinalRequestOptions.construct(method="delete", url=path, json_data=body, **options)
|
1810
|
+
return await self.request(cast_to, opts)
|
1811
|
+
|
1812
|
+
def get_api_list(
|
1813
|
+
self,
|
1814
|
+
path: str,
|
1815
|
+
*,
|
1816
|
+
model: Type[_T],
|
1817
|
+
page: Type[AsyncPageT],
|
1818
|
+
body: Body | None = None,
|
1819
|
+
options: RequestOptions = {},
|
1820
|
+
method: str = "get",
|
1821
|
+
) -> AsyncPaginator[_T, AsyncPageT]:
|
1822
|
+
opts = FinalRequestOptions.construct(method=method, url=path, json_data=body, **options)
|
1823
|
+
return self._request_api_list(model, page, opts)
|
1824
|
+
|
1825
|
+
|
1826
|
+
def make_request_options(
|
1827
|
+
*,
|
1828
|
+
query: Query | None = None,
|
1829
|
+
extra_headers: Headers | None = None,
|
1830
|
+
extra_query: Query | None = None,
|
1831
|
+
extra_body: Body | None = None,
|
1832
|
+
idempotency_key: str | None = None,
|
1833
|
+
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
1834
|
+
post_parser: PostParser | NotGiven = NOT_GIVEN,
|
1835
|
+
) -> RequestOptions:
|
1836
|
+
"""Create a dict of type RequestOptions without keys of NotGiven values."""
|
1837
|
+
options: RequestOptions = {}
|
1838
|
+
if extra_headers is not None:
|
1839
|
+
options["headers"] = extra_headers
|
1840
|
+
|
1841
|
+
if extra_body is not None:
|
1842
|
+
options["extra_json"] = cast(AnyMapping, extra_body)
|
1843
|
+
|
1844
|
+
if query is not None:
|
1845
|
+
options["params"] = query
|
1846
|
+
|
1847
|
+
if extra_query is not None:
|
1848
|
+
options["params"] = {**options.get("params", {}), **extra_query}
|
1849
|
+
|
1850
|
+
if not isinstance(timeout, NotGiven):
|
1851
|
+
options["timeout"] = timeout
|
1852
|
+
|
1853
|
+
if idempotency_key is not None:
|
1854
|
+
options["idempotency_key"] = idempotency_key
|
1855
|
+
|
1856
|
+
if is_given(post_parser):
|
1857
|
+
# internal
|
1858
|
+
options["post_parser"] = post_parser # type: ignore
|
1859
|
+
|
1860
|
+
return options
|
1861
|
+
|
1862
|
+
|
1863
|
+
class ForceMultipartDict(Dict[str, None]):
|
1864
|
+
def __bool__(self) -> bool:
|
1865
|
+
return True
|
1866
|
+
|
1867
|
+
|
1868
|
+
class OtherPlatform:
|
1869
|
+
def __init__(self, name: str) -> None:
|
1870
|
+
self.name = name
|
1871
|
+
|
1872
|
+
@override
|
1873
|
+
def __str__(self) -> str:
|
1874
|
+
return f"Other:{self.name}"
|
1875
|
+
|
1876
|
+
|
1877
|
+
Platform = Union[
|
1878
|
+
OtherPlatform,
|
1879
|
+
Literal[
|
1880
|
+
"MacOS",
|
1881
|
+
"Linux",
|
1882
|
+
"Windows",
|
1883
|
+
"FreeBSD",
|
1884
|
+
"OpenBSD",
|
1885
|
+
"iOS",
|
1886
|
+
"Android",
|
1887
|
+
"Unknown",
|
1888
|
+
],
|
1889
|
+
]
|
1890
|
+
|
1891
|
+
|
1892
|
+
def get_platform() -> Platform:
|
1893
|
+
try:
|
1894
|
+
system = platform.system().lower()
|
1895
|
+
platform_name = platform.platform().lower()
|
1896
|
+
except Exception:
|
1897
|
+
return "Unknown"
|
1898
|
+
|
1899
|
+
if "iphone" in platform_name or "ipad" in platform_name:
|
1900
|
+
# Tested using Python3IDE on an iPhone 11 and Pythonista on an iPad 7
|
1901
|
+
# system is Darwin and platform_name is a string like:
|
1902
|
+
# - Darwin-21.6.0-iPhone12,1-64bit
|
1903
|
+
# - Darwin-21.6.0-iPad7,11-64bit
|
1904
|
+
return "iOS"
|
1905
|
+
|
1906
|
+
if system == "darwin":
|
1907
|
+
return "MacOS"
|
1908
|
+
|
1909
|
+
if system == "windows":
|
1910
|
+
return "Windows"
|
1911
|
+
|
1912
|
+
if "android" in platform_name:
|
1913
|
+
# Tested using Pydroid 3
|
1914
|
+
# system is Linux and platform_name is a string like 'Linux-5.10.81-android12-9-00001-geba40aecb3b7-ab8534902-aarch64-with-libc'
|
1915
|
+
return "Android"
|
1916
|
+
|
1917
|
+
if system == "linux":
|
1918
|
+
# https://distro.readthedocs.io/en/latest/#distro.id
|
1919
|
+
distro_id = distro.id()
|
1920
|
+
if distro_id == "freebsd":
|
1921
|
+
return "FreeBSD"
|
1922
|
+
|
1923
|
+
if distro_id == "openbsd":
|
1924
|
+
return "OpenBSD"
|
1925
|
+
|
1926
|
+
return "Linux"
|
1927
|
+
|
1928
|
+
if platform_name:
|
1929
|
+
return OtherPlatform(platform_name)
|
1930
|
+
|
1931
|
+
return "Unknown"
|
1932
|
+
|
1933
|
+
|
1934
|
+
@lru_cache(maxsize=None)
|
1935
|
+
def platform_headers(version: str, *, platform: Platform | None) -> Dict[str, str]:
|
1936
|
+
return {
|
1937
|
+
"X-Stainless-Lang": "python",
|
1938
|
+
"X-Stainless-Package-Version": version,
|
1939
|
+
"X-Stainless-OS": str(platform or get_platform()),
|
1940
|
+
"X-Stainless-Arch": str(get_architecture()),
|
1941
|
+
"X-Stainless-Runtime": get_python_runtime(),
|
1942
|
+
"X-Stainless-Runtime-Version": get_python_version(),
|
1943
|
+
}
|
1944
|
+
|
1945
|
+
|
1946
|
+
class OtherArch:
|
1947
|
+
def __init__(self, name: str) -> None:
|
1948
|
+
self.name = name
|
1949
|
+
|
1950
|
+
@override
|
1951
|
+
def __str__(self) -> str:
|
1952
|
+
return f"other:{self.name}"
|
1953
|
+
|
1954
|
+
|
1955
|
+
Arch = Union[OtherArch, Literal["x32", "x64", "arm", "arm64", "unknown"]]
|
1956
|
+
|
1957
|
+
|
1958
|
+
def get_python_runtime() -> str:
|
1959
|
+
try:
|
1960
|
+
return platform.python_implementation()
|
1961
|
+
except Exception:
|
1962
|
+
return "unknown"
|
1963
|
+
|
1964
|
+
|
1965
|
+
def get_python_version() -> str:
|
1966
|
+
try:
|
1967
|
+
return platform.python_version()
|
1968
|
+
except Exception:
|
1969
|
+
return "unknown"
|
1970
|
+
|
1971
|
+
|
1972
|
+
def get_architecture() -> Arch:
|
1973
|
+
try:
|
1974
|
+
machine = platform.machine().lower()
|
1975
|
+
except Exception:
|
1976
|
+
return "unknown"
|
1977
|
+
|
1978
|
+
if machine in ("arm64", "aarch64"):
|
1979
|
+
return "arm64"
|
1980
|
+
|
1981
|
+
# TODO: untested
|
1982
|
+
if machine == "arm":
|
1983
|
+
return "arm"
|
1984
|
+
|
1985
|
+
if machine == "x86_64":
|
1986
|
+
return "x64"
|
1987
|
+
|
1988
|
+
# TODO: untested
|
1989
|
+
if sys.maxsize <= 2**32:
|
1990
|
+
return "x32"
|
1991
|
+
|
1992
|
+
if machine:
|
1993
|
+
return OtherArch(machine)
|
1994
|
+
|
1995
|
+
return "unknown"
|
1996
|
+
|
1997
|
+
|
1998
|
+
def _merge_mappings(
|
1999
|
+
obj1: Mapping[_T_co, Union[_T, Omit]],
|
2000
|
+
obj2: Mapping[_T_co, Union[_T, Omit]],
|
2001
|
+
) -> Dict[_T_co, _T]:
|
2002
|
+
"""Merge two mappings of the same type, removing any values that are instances of `Omit`.
|
2003
|
+
|
2004
|
+
In cases with duplicate keys the second mapping takes precedence.
|
2005
|
+
"""
|
2006
|
+
merged = {**obj1, **obj2}
|
2007
|
+
return {key: value for key, value in merged.items() if not isinstance(value, Omit)}
|