udl-sdk 0.1.0a16__py3-none-any.whl → 0.1.0a18__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.
Files changed (147) hide show
  1. {udl_sdk-0.1.0a16.dist-info → udl_sdk-0.1.0a18.dist-info}/METADATA +1 -1
  2. {udl_sdk-0.1.0a16.dist-info → udl_sdk-0.1.0a18.dist-info}/RECORD +136 -129
  3. unifieddatalibrary/_client.py +113 -82
  4. unifieddatalibrary/_version.py +1 -1
  5. unifieddatalibrary/resources/__init__.py +28 -84
  6. unifieddatalibrary/resources/air_operations/__init__.py +0 -14
  7. unifieddatalibrary/resources/air_operations/air_operations.py +0 -32
  8. unifieddatalibrary/resources/air_operations/aircraft_sorties.py +1507 -37
  9. unifieddatalibrary/resources/air_operations/crewpapers.py +4 -4
  10. unifieddatalibrary/resources/airload_plans.py +1311 -59
  11. unifieddatalibrary/resources/attitude_sets/attitude_sets.py +106 -0
  12. unifieddatalibrary/resources/conjunctions/conjunctions.py +4 -4
  13. unifieddatalibrary/resources/gnss_raw_if/gnss_raw_if.py +801 -0
  14. unifieddatalibrary/resources/iono_observations/__init__.py +33 -0
  15. unifieddatalibrary/resources/{iono_observation → iono_observations}/history.py +2 -2
  16. unifieddatalibrary/resources/{ion_oobservation.py → iono_observations/iono_observations.py} +123 -91
  17. unifieddatalibrary/resources/logistics_support/logistics_support.py +5 -4
  18. unifieddatalibrary/resources/onorbitantenna.py +5 -4
  19. unifieddatalibrary/resources/onorbitbattery.py +5 -4
  20. unifieddatalibrary/resources/onorbitsolararray.py +5 -4
  21. unifieddatalibrary/resources/onorbitthruster.py +5 -4
  22. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/__init__.py +13 -13
  23. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/poi/history.py +2 -2
  24. unifieddatalibrary/resources/{report_and_activity/report_and_activity.py → report_and_activities/report_and_activities.py} +35 -35
  25. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/udl_h3geo.py +1 -1
  26. unifieddatalibrary/resources/{report_and_activity → report_and_activities}/udl_sigact.py +1 -1
  27. unifieddatalibrary/resources/scs/paths.py +4 -4
  28. unifieddatalibrary/resources/scs/scs.py +4 -4
  29. unifieddatalibrary/resources/scs/v2.py +4 -4
  30. unifieddatalibrary/resources/status.py +5 -4
  31. unifieddatalibrary/resources/supporting_data/__init__.py +0 -42
  32. unifieddatalibrary/resources/supporting_data/dataowner.py +257 -1
  33. unifieddatalibrary/resources/supporting_data/supporting_data.py +0 -96
  34. unifieddatalibrary/resources/track_route/track_route.py +26 -23
  35. unifieddatalibrary/types/__init__.py +40 -30
  36. unifieddatalibrary/types/air_operations/__init__.py +12 -12
  37. unifieddatalibrary/types/air_operations/{aircraft_sortie_list_params.py → aircraft_sorty_count_params.py} +2 -2
  38. unifieddatalibrary/types/air_operations/aircraft_sorty_count_response.py +7 -0
  39. unifieddatalibrary/types/air_operations/{aircraft_sortie_create_bulk_params.py → aircraft_sorty_create_bulk_params.py} +2 -2
  40. unifieddatalibrary/types/air_operations/{aircraft_sortie_create_params.py → aircraft_sorty_create_params.py} +2 -2
  41. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_aodr_params.py → aircraft_sorty_history_aodr_params.py} +2 -2
  42. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_count_params.py → aircraft_sorty_history_count_params.py} +2 -2
  43. unifieddatalibrary/types/{ion_oobservation_count_response.py → air_operations/aircraft_sorty_history_count_response.py} +2 -2
  44. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_query_params.py → aircraft_sorty_history_query_params.py} +2 -2
  45. unifieddatalibrary/types/air_operations/{aircraft_sortie_history_query_response.py → aircraft_sorty_history_query_response.py} +2 -2
  46. unifieddatalibrary/types/air_operations/{aircraft_sortie_count_params.py → aircraft_sorty_list_params.py} +2 -2
  47. unifieddatalibrary/types/{air_load_plan_count_params.py → airload_plan_count_params.py} +2 -2
  48. unifieddatalibrary/types/{air_load_plan_count_response.py → airload_plan_count_response.py} +2 -2
  49. unifieddatalibrary/types/{air_load_plan_create_params.py → airload_plan_create_params.py} +2 -2
  50. unifieddatalibrary/types/{air_load_plan_list_params.py → airload_plan_list_params.py} +2 -2
  51. unifieddatalibrary/types/{air_load_plan_queryhelp_response.py → airload_plan_queryhelp_response.py} +2 -2
  52. unifieddatalibrary/types/{air_load_plan_retrieve_params.py → airload_plan_retrieve_params.py} +2 -2
  53. unifieddatalibrary/types/{air_load_plan_tuple_params.py → airload_plan_tuple_params.py} +2 -2
  54. unifieddatalibrary/types/{air_load_plan_tuple_response.py → airload_plan_tuple_response.py} +2 -2
  55. unifieddatalibrary/types/altitude_blocks_ingest_param.py +22 -0
  56. unifieddatalibrary/types/{attitudeset_retrieve_params.py → attitude_set_retrieve_params.py} +2 -2
  57. unifieddatalibrary/types/{gnss_rawif_count_params.py → gnss_raw_if_count_params.py} +2 -2
  58. unifieddatalibrary/types/{gnss_rawif_count_response.py → gnss_raw_if_count_response.py} +2 -2
  59. unifieddatalibrary/types/{gnss_rawif_file_get_params.py → gnss_raw_if_file_get_params.py} +2 -2
  60. unifieddatalibrary/types/{gnss_rawif_get_params.py → gnss_raw_if_get_params.py} +2 -2
  61. unifieddatalibrary/types/{gnss_rawif_get_response.py → gnss_raw_if_get_response.py} +2 -2
  62. unifieddatalibrary/types/{gnss_rawif_list_params.py → gnss_raw_if_list_params.py} +2 -2
  63. unifieddatalibrary/types/{gnss_rawif_list_response.py → gnss_raw_if_list_response.py} +2 -2
  64. unifieddatalibrary/types/{gnss_rawif_queryhelp_response.py → gnss_raw_if_queryhelp_response.py} +2 -2
  65. unifieddatalibrary/types/{gnss_rawif_tuple_params.py → gnss_raw_if_tuple_params.py} +2 -2
  66. unifieddatalibrary/types/{gnss_rawif_tuple_response.py → gnss_raw_if_tuple_response.py} +3 -3
  67. unifieddatalibrary/types/{gnss_rawif_upload_zip_params.py → gnss_raw_if_upload_zip_params.py} +2 -2
  68. unifieddatalibrary/types/{ion_oobservation_count_params.py → iono_observation_count_params.py} +2 -2
  69. unifieddatalibrary/types/{air_operations/aircraft_sortie_count_response.py → iono_observation_count_response.py} +2 -2
  70. unifieddatalibrary/types/{ion_oobservation_create_bulk_params.py → iono_observation_create_bulk_params.py} +2 -2
  71. unifieddatalibrary/types/{ion_oobservation_list_params.py → iono_observation_list_params.py} +2 -2
  72. unifieddatalibrary/types/{ion_oobservation_list_response.py → iono_observation_list_response.py} +2 -2
  73. unifieddatalibrary/types/{ion_oobservation_queryhelp_response.py → iono_observation_queryhelp_response.py} +2 -2
  74. unifieddatalibrary/types/{ion_oobservation_tuple_params.py → iono_observation_tuple_params.py} +2 -2
  75. unifieddatalibrary/types/{ion_oobservation_tuple_response.py → iono_observation_tuple_response.py} +82 -82
  76. unifieddatalibrary/types/{ion_oobservation_unvalidated_publish_params.py → iono_observation_unvalidated_publish_params.py} +2 -2
  77. unifieddatalibrary/types/logistics_remarks_ingest_param.py +25 -0
  78. unifieddatalibrary/types/logistics_support_create_bulk_params.py +4 -51
  79. unifieddatalibrary/types/logistics_support_create_params.py +4 -49
  80. unifieddatalibrary/types/logistics_support_unvalidated_publish_params.py +4 -51
  81. unifieddatalibrary/types/logistics_support_update_params.py +4 -49
  82. unifieddatalibrary/types/onorbitantenna_create_params.py +3 -38
  83. unifieddatalibrary/types/onorbitantenna_update_params.py +3 -38
  84. unifieddatalibrary/types/onorbitbattery_create_params.py +3 -38
  85. unifieddatalibrary/types/onorbitbattery_update_params.py +3 -38
  86. unifieddatalibrary/types/onorbitsolararray_create_params.py +3 -38
  87. unifieddatalibrary/types/onorbitsolararray_update_params.py +3 -38
  88. unifieddatalibrary/types/onorbitthruster_create_params.py +3 -41
  89. unifieddatalibrary/types/onorbitthruster_update_params.py +3 -41
  90. unifieddatalibrary/types/point_of_contact_ingest_param.py +41 -0
  91. unifieddatalibrary/types/route_points_ingest_param.py +82 -0
  92. unifieddatalibrary/types/shared/__init__.py +5 -0
  93. unifieddatalibrary/types/shared/antenna_ingest.py +62 -0
  94. unifieddatalibrary/types/shared/battery_ingest.py +62 -0
  95. unifieddatalibrary/types/shared/engine_ingest.py +65 -0
  96. unifieddatalibrary/types/shared/solar_array_ingest.py +62 -0
  97. unifieddatalibrary/types/shared/sub_status_ingest.py +74 -0
  98. unifieddatalibrary/types/shared_params/__init__.py +5 -0
  99. unifieddatalibrary/types/shared_params/antenna_ingest.py +45 -0
  100. unifieddatalibrary/types/shared_params/battery_ingest.py +45 -0
  101. unifieddatalibrary/types/shared_params/engine_ingest.py +48 -0
  102. unifieddatalibrary/types/shared_params/solar_array_ingest.py +45 -0
  103. unifieddatalibrary/types/shared_params/sub_status_ingest.py +57 -0
  104. unifieddatalibrary/types/status_create_params.py +3 -50
  105. unifieddatalibrary/types/status_update_params.py +3 -50
  106. unifieddatalibrary/types/supporting_data/__init__.py +13 -5
  107. unifieddatalibrary/types/supporting_data/{query_help_retrieve_response.py → dataowner_query_help_response.py} +2 -2
  108. unifieddatalibrary/types/supporting_data/{dataowner_type_list_params.py → dataowner_retrieve_data_owner_types_params.py} +2 -2
  109. unifieddatalibrary/types/supporting_data/dataowner_retrieve_data_owner_types_response.py +8 -0
  110. unifieddatalibrary/types/supporting_data/{provider_metadata_retrieve_params.py → dataowner_retrieve_provider_metadata_params.py} +2 -2
  111. unifieddatalibrary/types/supporting_data/{provider_metadata_retrieve_response.py → dataowner_retrieve_provider_metadata_response.py} +2 -2
  112. unifieddatalibrary/types/track_route_create_bulk_params.py +5 -267
  113. unifieddatalibrary/types/track_route_create_params.py +7 -122
  114. unifieddatalibrary/types/track_route_ingest_param.py +157 -0
  115. unifieddatalibrary/types/track_route_unvalidated_publish_params.py +7 -122
  116. unifieddatalibrary/types/track_route_update_params.py +7 -122
  117. unifieddatalibrary/resources/air_load_plans.py +0 -1341
  118. unifieddatalibrary/resources/air_operations/aircraft_sortie.py +0 -1557
  119. unifieddatalibrary/resources/attitudesets.py +0 -191
  120. unifieddatalibrary/resources/gnss_rawif.py +0 -871
  121. unifieddatalibrary/resources/iono_observation/__init__.py +0 -33
  122. unifieddatalibrary/resources/iono_observation/iono_observation.py +0 -102
  123. unifieddatalibrary/resources/supporting_data/dataowner_types.py +0 -186
  124. unifieddatalibrary/resources/supporting_data/provider_metadata.py +0 -179
  125. unifieddatalibrary/resources/supporting_data/query_help.py +0 -141
  126. unifieddatalibrary/types/air_operations/aircraft_sortie_history_count_response.py +0 -7
  127. unifieddatalibrary/types/supporting_data/dataowner_type_list_response.py +0 -7
  128. {udl_sdk-0.1.0a16.dist-info → udl_sdk-0.1.0a18.dist-info}/WHEEL +0 -0
  129. {udl_sdk-0.1.0a16.dist-info → udl_sdk-0.1.0a18.dist-info}/licenses/LICENSE +0 -0
  130. /unifieddatalibrary/resources/{report_and_activity → report_and_activities}/poi/__init__.py +0 -0
  131. /unifieddatalibrary/resources/{report_and_activity → report_and_activities}/poi/poi.py +0 -0
  132. /unifieddatalibrary/types/{iono_observation → iono_observations}/__init__.py +0 -0
  133. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_aodr_params.py +0 -0
  134. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_count_params.py +0 -0
  135. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_count_response.py +0 -0
  136. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_list_params.py +0 -0
  137. /unifieddatalibrary/types/{iono_observation → iono_observations}/history_list_response.py +0 -0
  138. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/__init__.py +0 -0
  139. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/__init__.py +0 -0
  140. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_aodr_params.py +0 -0
  141. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_count_params.py +0 -0
  142. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_count_response.py +0 -0
  143. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_list_params.py +0 -0
  144. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/poi/history_list_response.py +0 -0
  145. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/udl_h3geo_unvalidated_publish_params.py +0 -0
  146. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/udl_sigact_file_get_params.py +0 -0
  147. /unifieddatalibrary/types/{report_and_activity → report_and_activities}/udl_sigact_unvalidated_publish_params.py +0 -0
@@ -26,6 +26,7 @@ from ..pagination import SyncOffsetPage, AsyncOffsetPage
26
26
  from .._base_client import AsyncPaginator, make_request_options
27
27
  from ..types.shared.onorbit_battery_full import OnorbitBatteryFull
28
28
  from ..types.onorbitbattery_list_response import OnorbitbatteryListResponse
29
+ from ..types.shared_params.battery_ingest import BatteryIngest
29
30
 
30
31
  __all__ = ["OnorbitbatteryResource", "AsyncOnorbitbatteryResource"]
31
32
 
@@ -59,7 +60,7 @@ class OnorbitbatteryResource(SyncAPIResource):
59
60
  id_on_orbit: str,
60
61
  source: str,
61
62
  id: str | NotGiven = NOT_GIVEN,
62
- battery: onorbitbattery_create_params.Battery | NotGiven = NOT_GIVEN,
63
+ battery: BatteryIngest | NotGiven = NOT_GIVEN,
63
64
  origin: str | NotGiven = NOT_GIVEN,
64
65
  quantity: int | NotGiven = NOT_GIVEN,
65
66
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -153,7 +154,7 @@ class OnorbitbatteryResource(SyncAPIResource):
153
154
  id_on_orbit: str,
154
155
  source: str,
155
156
  body_id: str | NotGiven = NOT_GIVEN,
156
- battery: onorbitbattery_update_params.Battery | NotGiven = NOT_GIVEN,
157
+ battery: BatteryIngest | NotGiven = NOT_GIVEN,
157
158
  origin: str | NotGiven = NOT_GIVEN,
158
159
  quantity: int | NotGiven = NOT_GIVEN,
159
160
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -402,7 +403,7 @@ class AsyncOnorbitbatteryResource(AsyncAPIResource):
402
403
  id_on_orbit: str,
403
404
  source: str,
404
405
  id: str | NotGiven = NOT_GIVEN,
405
- battery: onorbitbattery_create_params.Battery | NotGiven = NOT_GIVEN,
406
+ battery: BatteryIngest | NotGiven = NOT_GIVEN,
406
407
  origin: str | NotGiven = NOT_GIVEN,
407
408
  quantity: int | NotGiven = NOT_GIVEN,
408
409
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -496,7 +497,7 @@ class AsyncOnorbitbatteryResource(AsyncAPIResource):
496
497
  id_on_orbit: str,
497
498
  source: str,
498
499
  body_id: str | NotGiven = NOT_GIVEN,
499
- battery: onorbitbattery_update_params.Battery | NotGiven = NOT_GIVEN,
500
+ battery: BatteryIngest | NotGiven = NOT_GIVEN,
500
501
  origin: str | NotGiven = NOT_GIVEN,
501
502
  quantity: int | NotGiven = NOT_GIVEN,
502
503
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -26,6 +26,7 @@ from ..pagination import SyncOffsetPage, AsyncOffsetPage
26
26
  from .._base_client import AsyncPaginator, make_request_options
27
27
  from ..types.onorbitsolararray_list_response import OnorbitsolararrayListResponse
28
28
  from ..types.shared.onorbit_solar_array_full import OnorbitSolarArrayFull
29
+ from ..types.shared_params.solar_array_ingest import SolarArrayIngest
29
30
 
30
31
  __all__ = ["OnorbitsolararrayResource", "AsyncOnorbitsolararrayResource"]
31
32
 
@@ -61,7 +62,7 @@ class OnorbitsolararrayResource(SyncAPIResource):
61
62
  id: str | NotGiven = NOT_GIVEN,
62
63
  origin: str | NotGiven = NOT_GIVEN,
63
64
  quantity: int | NotGiven = NOT_GIVEN,
64
- solar_array: onorbitsolararray_create_params.SolarArray | NotGiven = NOT_GIVEN,
65
+ solar_array: SolarArrayIngest | NotGiven = NOT_GIVEN,
65
66
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
66
67
  # The extra values given here take precedence over values defined on the client or passed to this method.
67
68
  extra_headers: Headers | None = None,
@@ -159,7 +160,7 @@ class OnorbitsolararrayResource(SyncAPIResource):
159
160
  body_id: str | NotGiven = NOT_GIVEN,
160
161
  origin: str | NotGiven = NOT_GIVEN,
161
162
  quantity: int | NotGiven = NOT_GIVEN,
162
- solar_array: onorbitsolararray_update_params.SolarArray | NotGiven = NOT_GIVEN,
163
+ solar_array: SolarArrayIngest | NotGiven = NOT_GIVEN,
163
164
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
164
165
  # The extra values given here take precedence over values defined on the client or passed to this method.
165
166
  extra_headers: Headers | None = None,
@@ -412,7 +413,7 @@ class AsyncOnorbitsolararrayResource(AsyncAPIResource):
412
413
  id: str | NotGiven = NOT_GIVEN,
413
414
  origin: str | NotGiven = NOT_GIVEN,
414
415
  quantity: int | NotGiven = NOT_GIVEN,
415
- solar_array: onorbitsolararray_create_params.SolarArray | NotGiven = NOT_GIVEN,
416
+ solar_array: SolarArrayIngest | NotGiven = NOT_GIVEN,
416
417
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
417
418
  # The extra values given here take precedence over values defined on the client or passed to this method.
418
419
  extra_headers: Headers | None = None,
@@ -510,7 +511,7 @@ class AsyncOnorbitsolararrayResource(AsyncAPIResource):
510
511
  body_id: str | NotGiven = NOT_GIVEN,
511
512
  origin: str | NotGiven = NOT_GIVEN,
512
513
  quantity: int | NotGiven = NOT_GIVEN,
513
- solar_array: onorbitsolararray_update_params.SolarArray | NotGiven = NOT_GIVEN,
514
+ solar_array: SolarArrayIngest | NotGiven = NOT_GIVEN,
514
515
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
515
516
  # The extra values given here take precedence over values defined on the client or passed to this method.
516
517
  extra_headers: Headers | None = None,
@@ -24,6 +24,7 @@ from .._response import (
24
24
  )
25
25
  from ..pagination import SyncOffsetPage, AsyncOffsetPage
26
26
  from .._base_client import AsyncPaginator, make_request_options
27
+ from ..types.shared_params.engine_ingest import EngineIngest
27
28
  from ..types.shared.onorbit_thruster_full import OnorbitThrusterFull
28
29
  from ..types.onorbitthruster_list_response import OnorbitthrusterListResponse
29
30
 
@@ -59,7 +60,7 @@ class OnorbitthrusterResource(SyncAPIResource):
59
60
  id_on_orbit: str,
60
61
  source: str,
61
62
  id: str | NotGiven = NOT_GIVEN,
62
- engine: onorbitthruster_create_params.Engine | NotGiven = NOT_GIVEN,
63
+ engine: EngineIngest | NotGiven = NOT_GIVEN,
63
64
  origin: str | NotGiven = NOT_GIVEN,
64
65
  quantity: int | NotGiven = NOT_GIVEN,
65
66
  type: str | NotGiven = NOT_GIVEN,
@@ -160,7 +161,7 @@ class OnorbitthrusterResource(SyncAPIResource):
160
161
  id_on_orbit: str,
161
162
  source: str,
162
163
  body_id: str | NotGiven = NOT_GIVEN,
163
- engine: onorbitthruster_update_params.Engine | NotGiven = NOT_GIVEN,
164
+ engine: EngineIngest | NotGiven = NOT_GIVEN,
164
165
  origin: str | NotGiven = NOT_GIVEN,
165
166
  quantity: int | NotGiven = NOT_GIVEN,
166
167
  type: str | NotGiven = NOT_GIVEN,
@@ -416,7 +417,7 @@ class AsyncOnorbitthrusterResource(AsyncAPIResource):
416
417
  id_on_orbit: str,
417
418
  source: str,
418
419
  id: str | NotGiven = NOT_GIVEN,
419
- engine: onorbitthruster_create_params.Engine | NotGiven = NOT_GIVEN,
420
+ engine: EngineIngest | NotGiven = NOT_GIVEN,
420
421
  origin: str | NotGiven = NOT_GIVEN,
421
422
  quantity: int | NotGiven = NOT_GIVEN,
422
423
  type: str | NotGiven = NOT_GIVEN,
@@ -517,7 +518,7 @@ class AsyncOnorbitthrusterResource(AsyncAPIResource):
517
518
  id_on_orbit: str,
518
519
  source: str,
519
520
  body_id: str | NotGiven = NOT_GIVEN,
520
- engine: onorbitthruster_update_params.Engine | NotGiven = NOT_GIVEN,
521
+ engine: EngineIngest | NotGiven = NOT_GIVEN,
521
522
  origin: str | NotGiven = NOT_GIVEN,
522
523
  quantity: int | NotGiven = NOT_GIVEN,
523
524
  type: str | NotGiven = NOT_GIVEN,
@@ -24,13 +24,13 @@ from .udl_sigact import (
24
24
  UdlSigactResourceWithStreamingResponse,
25
25
  AsyncUdlSigactResourceWithStreamingResponse,
26
26
  )
27
- from .report_and_activity import (
28
- ReportAndActivityResource,
29
- AsyncReportAndActivityResource,
30
- ReportAndActivityResourceWithRawResponse,
31
- AsyncReportAndActivityResourceWithRawResponse,
32
- ReportAndActivityResourceWithStreamingResponse,
33
- AsyncReportAndActivityResourceWithStreamingResponse,
27
+ from .report_and_activities import (
28
+ ReportAndActivitiesResource,
29
+ AsyncReportAndActivitiesResource,
30
+ ReportAndActivitiesResourceWithRawResponse,
31
+ AsyncReportAndActivitiesResourceWithRawResponse,
32
+ ReportAndActivitiesResourceWithStreamingResponse,
33
+ AsyncReportAndActivitiesResourceWithStreamingResponse,
34
34
  )
35
35
 
36
36
  __all__ = [
@@ -52,10 +52,10 @@ __all__ = [
52
52
  "AsyncUdlSigactResourceWithRawResponse",
53
53
  "UdlSigactResourceWithStreamingResponse",
54
54
  "AsyncUdlSigactResourceWithStreamingResponse",
55
- "ReportAndActivityResource",
56
- "AsyncReportAndActivityResource",
57
- "ReportAndActivityResourceWithRawResponse",
58
- "AsyncReportAndActivityResourceWithRawResponse",
59
- "ReportAndActivityResourceWithStreamingResponse",
60
- "AsyncReportAndActivityResourceWithStreamingResponse",
55
+ "ReportAndActivitiesResource",
56
+ "AsyncReportAndActivitiesResource",
57
+ "ReportAndActivitiesResourceWithRawResponse",
58
+ "AsyncReportAndActivitiesResourceWithRawResponse",
59
+ "ReportAndActivitiesResourceWithStreamingResponse",
60
+ "AsyncReportAndActivitiesResourceWithStreamingResponse",
61
61
  ]
@@ -19,8 +19,8 @@ from ...._response import (
19
19
  )
20
20
  from ....pagination import SyncOffsetPage, AsyncOffsetPage
21
21
  from ...._base_client import AsyncPaginator, make_request_options
22
- from ....types.report_and_activity.poi import history_aodr_params, history_list_params, history_count_params
23
- from ....types.report_and_activity.poi.history_list_response import HistoryListResponse
22
+ from ....types.report_and_activities.poi import history_aodr_params, history_list_params, history_count_params
23
+ from ....types.report_and_activities.poi.history_list_response import HistoryListResponse
24
24
 
25
25
  __all__ = ["HistoryResource", "AsyncHistoryResource"]
26
26
 
@@ -29,10 +29,10 @@ from .udl_sigact import (
29
29
  )
30
30
  from ..._resource import SyncAPIResource, AsyncAPIResource
31
31
 
32
- __all__ = ["ReportAndActivityResource", "AsyncReportAndActivityResource"]
32
+ __all__ = ["ReportAndActivitiesResource", "AsyncReportAndActivitiesResource"]
33
33
 
34
34
 
35
- class ReportAndActivityResource(SyncAPIResource):
35
+ class ReportAndActivitiesResource(SyncAPIResource):
36
36
  @cached_property
37
37
  def poi(self) -> PoiResource:
38
38
  return PoiResource(self._client)
@@ -46,26 +46,26 @@ class ReportAndActivityResource(SyncAPIResource):
46
46
  return UdlSigactResource(self._client)
47
47
 
48
48
  @cached_property
49
- def with_raw_response(self) -> ReportAndActivityResourceWithRawResponse:
49
+ def with_raw_response(self) -> ReportAndActivitiesResourceWithRawResponse:
50
50
  """
51
51
  This property can be used as a prefix for any HTTP method call to return
52
52
  the raw response object instead of the parsed content.
53
53
 
54
54
  For more information, see https://www.github.com/Bluestaq/udl-python-sdk#accessing-raw-response-data-eg-headers
55
55
  """
56
- return ReportAndActivityResourceWithRawResponse(self)
56
+ return ReportAndActivitiesResourceWithRawResponse(self)
57
57
 
58
58
  @cached_property
59
- def with_streaming_response(self) -> ReportAndActivityResourceWithStreamingResponse:
59
+ def with_streaming_response(self) -> ReportAndActivitiesResourceWithStreamingResponse:
60
60
  """
61
61
  An alternative to `.with_raw_response` that doesn't eagerly read the response body.
62
62
 
63
63
  For more information, see https://www.github.com/Bluestaq/udl-python-sdk#with_streaming_response
64
64
  """
65
- return ReportAndActivityResourceWithStreamingResponse(self)
65
+ return ReportAndActivitiesResourceWithStreamingResponse(self)
66
66
 
67
67
 
68
- class AsyncReportAndActivityResource(AsyncAPIResource):
68
+ class AsyncReportAndActivitiesResource(AsyncAPIResource):
69
69
  @cached_property
70
70
  def poi(self) -> AsyncPoiResource:
71
71
  return AsyncPoiResource(self._client)
@@ -79,88 +79,88 @@ class AsyncReportAndActivityResource(AsyncAPIResource):
79
79
  return AsyncUdlSigactResource(self._client)
80
80
 
81
81
  @cached_property
82
- def with_raw_response(self) -> AsyncReportAndActivityResourceWithRawResponse:
82
+ def with_raw_response(self) -> AsyncReportAndActivitiesResourceWithRawResponse:
83
83
  """
84
84
  This property can be used as a prefix for any HTTP method call to return
85
85
  the raw response object instead of the parsed content.
86
86
 
87
87
  For more information, see https://www.github.com/Bluestaq/udl-python-sdk#accessing-raw-response-data-eg-headers
88
88
  """
89
- return AsyncReportAndActivityResourceWithRawResponse(self)
89
+ return AsyncReportAndActivitiesResourceWithRawResponse(self)
90
90
 
91
91
  @cached_property
92
- def with_streaming_response(self) -> AsyncReportAndActivityResourceWithStreamingResponse:
92
+ def with_streaming_response(self) -> AsyncReportAndActivitiesResourceWithStreamingResponse:
93
93
  """
94
94
  An alternative to `.with_raw_response` that doesn't eagerly read the response body.
95
95
 
96
96
  For more information, see https://www.github.com/Bluestaq/udl-python-sdk#with_streaming_response
97
97
  """
98
- return AsyncReportAndActivityResourceWithStreamingResponse(self)
98
+ return AsyncReportAndActivitiesResourceWithStreamingResponse(self)
99
99
 
100
100
 
101
- class ReportAndActivityResourceWithRawResponse:
102
- def __init__(self, report_and_activity: ReportAndActivityResource) -> None:
103
- self._report_and_activity = report_and_activity
101
+ class ReportAndActivitiesResourceWithRawResponse:
102
+ def __init__(self, report_and_activities: ReportAndActivitiesResource) -> None:
103
+ self._report_and_activities = report_and_activities
104
104
 
105
105
  @cached_property
106
106
  def poi(self) -> PoiResourceWithRawResponse:
107
- return PoiResourceWithRawResponse(self._report_and_activity.poi)
107
+ return PoiResourceWithRawResponse(self._report_and_activities.poi)
108
108
 
109
109
  @cached_property
110
110
  def udl_h3geo(self) -> UdlH3geoResourceWithRawResponse:
111
- return UdlH3geoResourceWithRawResponse(self._report_and_activity.udl_h3geo)
111
+ return UdlH3geoResourceWithRawResponse(self._report_and_activities.udl_h3geo)
112
112
 
113
113
  @cached_property
114
114
  def udl_sigact(self) -> UdlSigactResourceWithRawResponse:
115
- return UdlSigactResourceWithRawResponse(self._report_and_activity.udl_sigact)
115
+ return UdlSigactResourceWithRawResponse(self._report_and_activities.udl_sigact)
116
116
 
117
117
 
118
- class AsyncReportAndActivityResourceWithRawResponse:
119
- def __init__(self, report_and_activity: AsyncReportAndActivityResource) -> None:
120
- self._report_and_activity = report_and_activity
118
+ class AsyncReportAndActivitiesResourceWithRawResponse:
119
+ def __init__(self, report_and_activities: AsyncReportAndActivitiesResource) -> None:
120
+ self._report_and_activities = report_and_activities
121
121
 
122
122
  @cached_property
123
123
  def poi(self) -> AsyncPoiResourceWithRawResponse:
124
- return AsyncPoiResourceWithRawResponse(self._report_and_activity.poi)
124
+ return AsyncPoiResourceWithRawResponse(self._report_and_activities.poi)
125
125
 
126
126
  @cached_property
127
127
  def udl_h3geo(self) -> AsyncUdlH3geoResourceWithRawResponse:
128
- return AsyncUdlH3geoResourceWithRawResponse(self._report_and_activity.udl_h3geo)
128
+ return AsyncUdlH3geoResourceWithRawResponse(self._report_and_activities.udl_h3geo)
129
129
 
130
130
  @cached_property
131
131
  def udl_sigact(self) -> AsyncUdlSigactResourceWithRawResponse:
132
- return AsyncUdlSigactResourceWithRawResponse(self._report_and_activity.udl_sigact)
132
+ return AsyncUdlSigactResourceWithRawResponse(self._report_and_activities.udl_sigact)
133
133
 
134
134
 
135
- class ReportAndActivityResourceWithStreamingResponse:
136
- def __init__(self, report_and_activity: ReportAndActivityResource) -> None:
137
- self._report_and_activity = report_and_activity
135
+ class ReportAndActivitiesResourceWithStreamingResponse:
136
+ def __init__(self, report_and_activities: ReportAndActivitiesResource) -> None:
137
+ self._report_and_activities = report_and_activities
138
138
 
139
139
  @cached_property
140
140
  def poi(self) -> PoiResourceWithStreamingResponse:
141
- return PoiResourceWithStreamingResponse(self._report_and_activity.poi)
141
+ return PoiResourceWithStreamingResponse(self._report_and_activities.poi)
142
142
 
143
143
  @cached_property
144
144
  def udl_h3geo(self) -> UdlH3geoResourceWithStreamingResponse:
145
- return UdlH3geoResourceWithStreamingResponse(self._report_and_activity.udl_h3geo)
145
+ return UdlH3geoResourceWithStreamingResponse(self._report_and_activities.udl_h3geo)
146
146
 
147
147
  @cached_property
148
148
  def udl_sigact(self) -> UdlSigactResourceWithStreamingResponse:
149
- return UdlSigactResourceWithStreamingResponse(self._report_and_activity.udl_sigact)
149
+ return UdlSigactResourceWithStreamingResponse(self._report_and_activities.udl_sigact)
150
150
 
151
151
 
152
- class AsyncReportAndActivityResourceWithStreamingResponse:
153
- def __init__(self, report_and_activity: AsyncReportAndActivityResource) -> None:
154
- self._report_and_activity = report_and_activity
152
+ class AsyncReportAndActivitiesResourceWithStreamingResponse:
153
+ def __init__(self, report_and_activities: AsyncReportAndActivitiesResource) -> None:
154
+ self._report_and_activities = report_and_activities
155
155
 
156
156
  @cached_property
157
157
  def poi(self) -> AsyncPoiResourceWithStreamingResponse:
158
- return AsyncPoiResourceWithStreamingResponse(self._report_and_activity.poi)
158
+ return AsyncPoiResourceWithStreamingResponse(self._report_and_activities.poi)
159
159
 
160
160
  @cached_property
161
161
  def udl_h3geo(self) -> AsyncUdlH3geoResourceWithStreamingResponse:
162
- return AsyncUdlH3geoResourceWithStreamingResponse(self._report_and_activity.udl_h3geo)
162
+ return AsyncUdlH3geoResourceWithStreamingResponse(self._report_and_activities.udl_h3geo)
163
163
 
164
164
  @cached_property
165
165
  def udl_sigact(self) -> AsyncUdlSigactResourceWithStreamingResponse:
166
- return AsyncUdlSigactResourceWithStreamingResponse(self._report_and_activity.udl_sigact)
166
+ return AsyncUdlSigactResourceWithStreamingResponse(self._report_and_activities.udl_sigact)
@@ -19,7 +19,7 @@ from ..._response import (
19
19
  async_to_streamed_response_wrapper,
20
20
  )
21
21
  from ..._base_client import make_request_options
22
- from ...types.report_and_activity import udl_h3geo_unvalidated_publish_params
22
+ from ...types.report_and_activities import udl_h3geo_unvalidated_publish_params
23
23
 
24
24
  __all__ = ["UdlH3geoResource", "AsyncUdlH3geoResource"]
25
25
 
@@ -25,7 +25,7 @@ from ..._response import (
25
25
  async_to_custom_streamed_response_wrapper,
26
26
  )
27
27
  from ..._base_client import make_request_options
28
- from ...types.report_and_activity import udl_sigact_file_get_params, udl_sigact_unvalidated_publish_params
28
+ from ...types.report_and_activities import udl_sigact_file_get_params, udl_sigact_unvalidated_publish_params
29
29
 
30
30
  __all__ = ["UdlSigactResource", "AsyncUdlSigactResource"]
31
31
 
@@ -43,7 +43,7 @@ class PathsResource(SyncAPIResource):
43
43
 
44
44
  def create_with_file(
45
45
  self,
46
- params: FileContent,
46
+ file_content: FileContent,
47
47
  *,
48
48
  id: str,
49
49
  classification_marking: str,
@@ -91,7 +91,7 @@ class PathsResource(SyncAPIResource):
91
91
  extra_headers = {"Content-Type": "application/octet-stream", **(extra_headers or {})}
92
92
  return self._post(
93
93
  "/scs/path",
94
- body=read_file_content(params),
94
+ body=read_file_content(file_content),
95
95
  options=make_request_options(
96
96
  extra_headers=extra_headers,
97
97
  extra_query=extra_query,
@@ -136,7 +136,7 @@ class AsyncPathsResource(AsyncAPIResource):
136
136
 
137
137
  async def create_with_file(
138
138
  self,
139
- params: FileContent,
139
+ file_content: FileContent,
140
140
  *,
141
141
  id: str,
142
142
  classification_marking: str,
@@ -184,7 +184,7 @@ class AsyncPathsResource(AsyncAPIResource):
184
184
  extra_headers = {"Content-Type": "application/octet-stream", **(extra_headers or {})}
185
185
  return await self._post(
186
186
  "/scs/path",
187
- body=await async_read_file_content(params),
187
+ body=await async_read_file_content(file_content),
188
188
  options=make_request_options(
189
189
  extra_headers=extra_headers,
190
190
  extra_query=extra_query,
@@ -387,7 +387,7 @@ class ScsResource(SyncAPIResource):
387
387
 
388
388
  def file_upload(
389
389
  self,
390
- params: FileContent,
390
+ file_content: FileContent,
391
391
  *,
392
392
  classification_marking: str,
393
393
  file_name: str,
@@ -437,7 +437,7 @@ class ScsResource(SyncAPIResource):
437
437
  extra_headers = {"Content-Type": "application/octet-stream", **(extra_headers or {})}
438
438
  return self._post(
439
439
  "/scs/file",
440
- body=read_file_content(params),
440
+ body=read_file_content(file_content),
441
441
  options=make_request_options(
442
442
  extra_headers=extra_headers,
443
443
  extra_query=extra_query,
@@ -949,7 +949,7 @@ class AsyncScsResource(AsyncAPIResource):
949
949
 
950
950
  async def file_upload(
951
951
  self,
952
- params: FileContent,
952
+ file_content: FileContent,
953
953
  *,
954
954
  classification_marking: str,
955
955
  file_name: str,
@@ -999,7 +999,7 @@ class AsyncScsResource(AsyncAPIResource):
999
999
  extra_headers = {"Content-Type": "application/octet-stream", **(extra_headers or {})}
1000
1000
  return await self._post(
1001
1001
  "/scs/file",
1002
- body=await async_read_file_content(params),
1002
+ body=await async_read_file_content(file_content),
1003
1003
  options=make_request_options(
1004
1004
  extra_headers=extra_headers,
1005
1005
  extra_query=extra_query,
@@ -273,7 +273,7 @@ class V2Resource(SyncAPIResource):
273
273
 
274
274
  def file_upload(
275
275
  self,
276
- params: FileContent,
276
+ file_content: FileContent,
277
277
  *,
278
278
  classification_marking: str,
279
279
  path: str,
@@ -325,7 +325,7 @@ class V2Resource(SyncAPIResource):
325
325
  extra_headers["Content-Type"] = "application/octet-stream"
326
326
  return self._post(
327
327
  "/scs/v2/file",
328
- body=read_file_content(params),
328
+ body=read_file_content(file_content),
329
329
  options=make_request_options(
330
330
  extra_headers=extra_headers,
331
331
  extra_query=extra_query,
@@ -723,7 +723,7 @@ class AsyncV2Resource(AsyncAPIResource):
723
723
 
724
724
  async def file_upload(
725
725
  self,
726
- params: FileContent,
726
+ file_content: FileContent,
727
727
  *,
728
728
  classification_marking: str,
729
729
  path: str,
@@ -775,7 +775,7 @@ class AsyncV2Resource(AsyncAPIResource):
775
775
  extra_headers["Content-Type"] = "application/octet-stream"
776
776
  return await self._post(
777
777
  "/scs/v2/file",
778
- body=await async_read_file_content(params),
778
+ body=await async_read_file_content(file_content),
779
779
  options=make_request_options(
780
780
  extra_headers=extra_headers,
781
781
  extra_query=extra_query,
@@ -34,6 +34,7 @@ from ..types.shared.status_full import StatusFull
34
34
  from ..types.status_list_response import StatusListResponse
35
35
  from ..types.status_tuple_response import StatusTupleResponse
36
36
  from ..types.status_queryhelp_response import StatusQueryhelpResponse
37
+ from ..types.shared_params.sub_status_ingest import SubStatusIngest
37
38
  from ..types.status_get_by_entity_id_response import StatusGetByEntityIDResponse
38
39
  from ..types.status_get_by_entity_type_response import StatusGetByEntityTypeResponse
39
40
 
@@ -75,7 +76,7 @@ class StatusResource(SyncAPIResource):
75
76
  ops_cap: Literal["FMC", "NMC", "PMC", "UNK"] | NotGiven = NOT_GIVEN,
76
77
  origin: str | NotGiven = NOT_GIVEN,
77
78
  state: Literal["UNKNOWN", "DEAD", "ACTIVE", "RF ACTIVE", "STANDBY"] | NotGiven = NOT_GIVEN,
78
- sub_status_collection: Iterable[status_create_params.SubStatusCollection] | NotGiven = NOT_GIVEN,
79
+ sub_status_collection: Iterable[SubStatusIngest] | NotGiven = NOT_GIVEN,
79
80
  sys_cap: Literal["FMC", "NMC", "PMC", "UNK"] | NotGiven = NOT_GIVEN,
80
81
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
81
82
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -187,7 +188,7 @@ class StatusResource(SyncAPIResource):
187
188
  ops_cap: Literal["FMC", "NMC", "PMC", "UNK"] | NotGiven = NOT_GIVEN,
188
189
  origin: str | NotGiven = NOT_GIVEN,
189
190
  state: Literal["UNKNOWN", "DEAD", "ACTIVE", "RF ACTIVE", "STANDBY"] | NotGiven = NOT_GIVEN,
190
- sub_status_collection: Iterable[status_update_params.SubStatusCollection] | NotGiven = NOT_GIVEN,
191
+ sub_status_collection: Iterable[SubStatusIngest] | NotGiven = NOT_GIVEN,
191
192
  sys_cap: Literal["FMC", "NMC", "PMC", "UNK"] | NotGiven = NOT_GIVEN,
192
193
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
193
194
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -664,7 +665,7 @@ class AsyncStatusResource(AsyncAPIResource):
664
665
  ops_cap: Literal["FMC", "NMC", "PMC", "UNK"] | NotGiven = NOT_GIVEN,
665
666
  origin: str | NotGiven = NOT_GIVEN,
666
667
  state: Literal["UNKNOWN", "DEAD", "ACTIVE", "RF ACTIVE", "STANDBY"] | NotGiven = NOT_GIVEN,
667
- sub_status_collection: Iterable[status_create_params.SubStatusCollection] | NotGiven = NOT_GIVEN,
668
+ sub_status_collection: Iterable[SubStatusIngest] | NotGiven = NOT_GIVEN,
668
669
  sys_cap: Literal["FMC", "NMC", "PMC", "UNK"] | NotGiven = NOT_GIVEN,
669
670
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
670
671
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -776,7 +777,7 @@ class AsyncStatusResource(AsyncAPIResource):
776
777
  ops_cap: Literal["FMC", "NMC", "PMC", "UNK"] | NotGiven = NOT_GIVEN,
777
778
  origin: str | NotGiven = NOT_GIVEN,
778
779
  state: Literal["UNKNOWN", "DEAD", "ACTIVE", "RF ACTIVE", "STANDBY"] | NotGiven = NOT_GIVEN,
779
- sub_status_collection: Iterable[status_update_params.SubStatusCollection] | NotGiven = NOT_GIVEN,
780
+ sub_status_collection: Iterable[SubStatusIngest] | NotGiven = NOT_GIVEN,
780
781
  sys_cap: Literal["FMC", "NMC", "PMC", "UNK"] | NotGiven = NOT_GIVEN,
781
782
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
782
783
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -16,22 +16,6 @@ from .data_types import (
16
16
  DataTypesResourceWithStreamingResponse,
17
17
  AsyncDataTypesResourceWithStreamingResponse,
18
18
  )
19
- from .query_help import (
20
- QueryHelpResource,
21
- AsyncQueryHelpResource,
22
- QueryHelpResourceWithRawResponse,
23
- AsyncQueryHelpResourceWithRawResponse,
24
- QueryHelpResourceWithStreamingResponse,
25
- AsyncQueryHelpResourceWithStreamingResponse,
26
- )
27
- from .dataowner_types import (
28
- DataownerTypesResource,
29
- AsyncDataownerTypesResource,
30
- DataownerTypesResourceWithRawResponse,
31
- AsyncDataownerTypesResourceWithRawResponse,
32
- DataownerTypesResourceWithStreamingResponse,
33
- AsyncDataownerTypesResourceWithStreamingResponse,
34
- )
35
19
  from .supporting_data import (
36
20
  SupportingDataResource,
37
21
  AsyncSupportingDataResource,
@@ -40,14 +24,6 @@ from .supporting_data import (
40
24
  SupportingDataResourceWithStreamingResponse,
41
25
  AsyncSupportingDataResourceWithStreamingResponse,
42
26
  )
43
- from .provider_metadata import (
44
- ProviderMetadataResource,
45
- AsyncProviderMetadataResource,
46
- ProviderMetadataResourceWithRawResponse,
47
- AsyncProviderMetadataResourceWithRawResponse,
48
- ProviderMetadataResourceWithStreamingResponse,
49
- AsyncProviderMetadataResourceWithStreamingResponse,
50
- )
51
27
 
52
28
  __all__ = [
53
29
  "DataTypesResource",
@@ -62,24 +38,6 @@ __all__ = [
62
38
  "AsyncDataownerResourceWithRawResponse",
63
39
  "DataownerResourceWithStreamingResponse",
64
40
  "AsyncDataownerResourceWithStreamingResponse",
65
- "DataownerTypesResource",
66
- "AsyncDataownerTypesResource",
67
- "DataownerTypesResourceWithRawResponse",
68
- "AsyncDataownerTypesResourceWithRawResponse",
69
- "DataownerTypesResourceWithStreamingResponse",
70
- "AsyncDataownerTypesResourceWithStreamingResponse",
71
- "ProviderMetadataResource",
72
- "AsyncProviderMetadataResource",
73
- "ProviderMetadataResourceWithRawResponse",
74
- "AsyncProviderMetadataResourceWithRawResponse",
75
- "ProviderMetadataResourceWithStreamingResponse",
76
- "AsyncProviderMetadataResourceWithStreamingResponse",
77
- "QueryHelpResource",
78
- "AsyncQueryHelpResource",
79
- "QueryHelpResourceWithRawResponse",
80
- "AsyncQueryHelpResourceWithRawResponse",
81
- "QueryHelpResourceWithStreamingResponse",
82
- "AsyncQueryHelpResourceWithStreamingResponse",
83
41
  "SupportingDataResource",
84
42
  "AsyncSupportingDataResource",
85
43
  "SupportingDataResourceWithRawResponse",