udl-sdk 0.1.0a17__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.0a17.dist-info → udl_sdk-0.1.0a18.dist-info}/METADATA +1 -1
  2. {udl_sdk-0.1.0a17.dist-info → udl_sdk-0.1.0a18.dist-info}/RECORD +136 -129
  3. unifieddatalibrary/_client.py +27 -61
  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.0a17.dist-info → udl_sdk-0.1.0a18.dist-info}/WHEEL +0 -0
  129. {udl_sdk-0.1.0a17.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
@@ -0,0 +1,45 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, Required, Annotated, TypedDict
6
+
7
+ from ..._utils import PropertyInfo
8
+
9
+ __all__ = ["AntennaIngest"]
10
+
11
+
12
+ class AntennaIngest(TypedDict, total=False):
13
+ data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
14
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
15
+
16
+ EXERCISE: Data pertaining to a government or military exercise. The data
17
+ may include both real and simulated data.
18
+
19
+ REAL: Data collected or produced that pertains to real-world objects,
20
+ events, and analysis.
21
+
22
+ SIMULATED: Synthetic data generated by a model to mimic real-world
23
+ datasets.
24
+
25
+ TEST: Specific datasets used to evaluate compliance with specifications and
26
+ requirements, and for validating technical, functional, and performance
27
+ characteristics.
28
+ """
29
+
30
+ name: Required[str]
31
+ """Antenna name."""
32
+
33
+ source: Required[str]
34
+ """Source of the data."""
35
+
36
+ id: str
37
+ """Unique identifier of the record, auto-generated by the system."""
38
+
39
+ origin: str
40
+ """
41
+ Originating system or organization which produced the data, if different from
42
+ the source. The origin may be different than the source if the source was a
43
+ mediating system which forwarded the data on behalf of the origin system. If
44
+ null, the source may be assumed to be the origin.
45
+ """
@@ -0,0 +1,45 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, Required, Annotated, TypedDict
6
+
7
+ from ..._utils import PropertyInfo
8
+
9
+ __all__ = ["BatteryIngest"]
10
+
11
+
12
+ class BatteryIngest(TypedDict, total=False):
13
+ data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
14
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
15
+
16
+ EXERCISE: Data pertaining to a government or military exercise. The data
17
+ may include both real and simulated data.
18
+
19
+ REAL: Data collected or produced that pertains to real-world objects,
20
+ events, and analysis.
21
+
22
+ SIMULATED: Synthetic data generated by a model to mimic real-world
23
+ datasets.
24
+
25
+ TEST: Specific datasets used to evaluate compliance with specifications and
26
+ requirements, and for validating technical, functional, and performance
27
+ characteristics.
28
+ """
29
+
30
+ name: Required[str]
31
+ """Battery name."""
32
+
33
+ source: Required[str]
34
+ """Source of the data."""
35
+
36
+ id: str
37
+ """Unique identifier of the record, auto-generated by the system."""
38
+
39
+ origin: str
40
+ """
41
+ Originating system or organization which produced the data, if different from
42
+ the source. The origin may be different than the source if the source was a
43
+ mediating system which forwarded the data on behalf of the origin system. If
44
+ null, the source may be assumed to be the origin.
45
+ """
@@ -0,0 +1,48 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, Required, Annotated, TypedDict
6
+
7
+ from ..._utils import PropertyInfo
8
+
9
+ __all__ = ["EngineIngest"]
10
+
11
+
12
+ class EngineIngest(TypedDict, total=False):
13
+ classification_marking: Required[Annotated[str, PropertyInfo(alias="classificationMarking")]]
14
+ """Classification marking of the data in IC/CAPCO Portion-marked format."""
15
+
16
+ data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
17
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
18
+
19
+ EXERCISE: Data pertaining to a government or military exercise. The data
20
+ may include both real and simulated data.
21
+
22
+ REAL: Data collected or produced that pertains to real-world objects,
23
+ events, and analysis.
24
+
25
+ SIMULATED: Synthetic data generated by a model to mimic real-world
26
+ datasets.
27
+
28
+ TEST: Specific datasets used to evaluate compliance with specifications and
29
+ requirements, and for validating technical, functional, and performance
30
+ characteristics.
31
+ """
32
+
33
+ name: Required[str]
34
+ """Engine name/variant."""
35
+
36
+ source: Required[str]
37
+ """Source of the data."""
38
+
39
+ id: str
40
+ """Unique identifier of the record, auto-generated by the system."""
41
+
42
+ origin: str
43
+ """
44
+ Originating system or organization which produced the data, if different from
45
+ the source. The origin may be different than the source if the source was a
46
+ mediating system which forwarded the data on behalf of the origin system. If
47
+ null, the source may be assumed to be the origin.
48
+ """
@@ -0,0 +1,45 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, Required, Annotated, TypedDict
6
+
7
+ from ..._utils import PropertyInfo
8
+
9
+ __all__ = ["SolarArrayIngest"]
10
+
11
+
12
+ class SolarArrayIngest(TypedDict, total=False):
13
+ data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
14
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
15
+
16
+ EXERCISE: Data pertaining to a government or military exercise. The data
17
+ may include both real and simulated data.
18
+
19
+ REAL: Data collected or produced that pertains to real-world objects,
20
+ events, and analysis.
21
+
22
+ SIMULATED: Synthetic data generated by a model to mimic real-world
23
+ datasets.
24
+
25
+ TEST: Specific datasets used to evaluate compliance with specifications and
26
+ requirements, and for validating technical, functional, and performance
27
+ characteristics.
28
+ """
29
+
30
+ name: Required[str]
31
+ """Solar Array name."""
32
+
33
+ source: Required[str]
34
+ """Source of the data."""
35
+
36
+ id: str
37
+ """Unique identifier of the record, auto-generated by the system."""
38
+
39
+ origin: str
40
+ """
41
+ Originating system or organization which produced the data, if different from
42
+ the source. The origin may be different than the source if the source was a
43
+ mediating system which forwarded the data on behalf of the origin system. If
44
+ null, the source may be assumed to be the origin.
45
+ """
@@ -0,0 +1,57 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, Required, Annotated, TypedDict
6
+
7
+ from ..._utils import PropertyInfo
8
+
9
+ __all__ = ["SubStatusIngest"]
10
+
11
+
12
+ class SubStatusIngest(TypedDict, total=False):
13
+ classification_marking: Required[Annotated[str, PropertyInfo(alias="classificationMarking")]]
14
+ """Classification marking of the data in IC/CAPCO Portion-marked format."""
15
+
16
+ data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
17
+ """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
18
+
19
+ EXERCISE: Data pertaining to a government or military exercise. The data
20
+ may include both real and simulated data.
21
+
22
+ REAL: Data collected or produced that pertains to real-world objects,
23
+ events, and analysis.
24
+
25
+ SIMULATED: Synthetic data generated by a model to mimic real-world
26
+ datasets.
27
+
28
+ TEST: Specific datasets used to evaluate compliance with specifications and
29
+ requirements, and for validating technical, functional, and performance
30
+ characteristics.
31
+ """
32
+
33
+ notes: Required[str]
34
+ """Descriptions and/or comments associated with the sub-status."""
35
+
36
+ source: Required[str]
37
+ """Source of the data."""
38
+
39
+ status: Required[Literal["FMC", "NMC", "PMC", "UNK"]]
40
+ """Status of the sub-system/capability, e.g. FMC, NMC, PMC, UNK."""
41
+
42
+ status_id: Required[Annotated[str, PropertyInfo(alias="statusId")]]
43
+ """Id of the parent status."""
44
+
45
+ type: Required[Literal["mwCap", "ssCap", "mdCap"]]
46
+ """Parent entity's sub-system or capability status: mwCap, mdCap, ssCap, etc."""
47
+
48
+ id: str
49
+ """Unique identifier of the record, auto-generated by the system."""
50
+
51
+ origin: str
52
+ """
53
+ Originating system or organization which produced the data, if different from
54
+ the source. The origin may be different than the source if the source was a
55
+ mediating system which forwarded the data on behalf of the origin system. If
56
+ null, the source may be assumed to be the origin.
57
+ """
@@ -7,8 +7,9 @@ from datetime import datetime
7
7
  from typing_extensions import Literal, Required, Annotated, TypedDict
8
8
 
9
9
  from .._utils import PropertyInfo
10
+ from .shared_params.sub_status_ingest import SubStatusIngest
10
11
 
11
- __all__ = ["StatusCreateParams", "SubStatusCollection"]
12
+ __all__ = ["StatusCreateParams"]
12
13
 
13
14
 
14
15
  class StatusCreateParams(TypedDict, total=False):
@@ -73,55 +74,7 @@ class StatusCreateParams(TypedDict, total=False):
73
74
  UNKNOWN, DEAD, ACTIVE, RF ACTIVE, STANDBY).
74
75
  """
75
76
 
76
- sub_status_collection: Annotated[Iterable[SubStatusCollection], PropertyInfo(alias="subStatusCollection")]
77
+ sub_status_collection: Annotated[Iterable[SubStatusIngest], PropertyInfo(alias="subStatusCollection")]
77
78
 
78
79
  sys_cap: Annotated[Literal["FMC", "NMC", "PMC", "UNK"], PropertyInfo(alias="sysCap")]
79
80
  """System capability of the entity, if applicable (e.g. FMC, NMC, PMC, UNK)."""
80
-
81
-
82
- class SubStatusCollection(TypedDict, total=False):
83
- classification_marking: Required[Annotated[str, PropertyInfo(alias="classificationMarking")]]
84
- """Classification marking of the data in IC/CAPCO Portion-marked format."""
85
-
86
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
87
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
88
-
89
- EXERCISE: Data pertaining to a government or military exercise. The data
90
- may include both real and simulated data.
91
-
92
- REAL: Data collected or produced that pertains to real-world objects,
93
- events, and analysis.
94
-
95
- SIMULATED: Synthetic data generated by a model to mimic real-world
96
- datasets.
97
-
98
- TEST: Specific datasets used to evaluate compliance with specifications and
99
- requirements, and for validating technical, functional, and performance
100
- characteristics.
101
- """
102
-
103
- notes: Required[str]
104
- """Descriptions and/or comments associated with the sub-status."""
105
-
106
- source: Required[str]
107
- """Source of the data."""
108
-
109
- status: Required[Literal["FMC", "NMC", "PMC", "UNK"]]
110
- """Status of the sub-system/capability, e.g. FMC, NMC, PMC, UNK."""
111
-
112
- status_id: Required[Annotated[str, PropertyInfo(alias="statusId")]]
113
- """Id of the parent status."""
114
-
115
- type: Required[Literal["mwCap", "ssCap", "mdCap"]]
116
- """Parent entity's sub-system or capability status: mwCap, mdCap, ssCap, etc."""
117
-
118
- id: str
119
- """Unique identifier of the record, auto-generated by the system."""
120
-
121
- origin: str
122
- """
123
- Originating system or organization which produced the data, if different from
124
- the source. The origin may be different than the source if the source was a
125
- mediating system which forwarded the data on behalf of the origin system. If
126
- null, the source may be assumed to be the origin.
127
- """
@@ -7,8 +7,9 @@ from datetime import datetime
7
7
  from typing_extensions import Literal, Required, Annotated, TypedDict
8
8
 
9
9
  from .._utils import PropertyInfo
10
+ from .shared_params.sub_status_ingest import SubStatusIngest
10
11
 
11
- __all__ = ["StatusUpdateParams", "SubStatusCollection"]
12
+ __all__ = ["StatusUpdateParams"]
12
13
 
13
14
 
14
15
  class StatusUpdateParams(TypedDict, total=False):
@@ -73,55 +74,7 @@ class StatusUpdateParams(TypedDict, total=False):
73
74
  UNKNOWN, DEAD, ACTIVE, RF ACTIVE, STANDBY).
74
75
  """
75
76
 
76
- sub_status_collection: Annotated[Iterable[SubStatusCollection], PropertyInfo(alias="subStatusCollection")]
77
+ sub_status_collection: Annotated[Iterable[SubStatusIngest], PropertyInfo(alias="subStatusCollection")]
77
78
 
78
79
  sys_cap: Annotated[Literal["FMC", "NMC", "PMC", "UNK"], PropertyInfo(alias="sysCap")]
79
80
  """System capability of the entity, if applicable (e.g. FMC, NMC, PMC, UNK)."""
80
-
81
-
82
- class SubStatusCollection(TypedDict, total=False):
83
- classification_marking: Required[Annotated[str, PropertyInfo(alias="classificationMarking")]]
84
- """Classification marking of the data in IC/CAPCO Portion-marked format."""
85
-
86
- data_mode: Required[Annotated[Literal["REAL", "TEST", "SIMULATED", "EXERCISE"], PropertyInfo(alias="dataMode")]]
87
- """Indicator of whether the data is EXERCISE, REAL, SIMULATED, or TEST data:
88
-
89
- EXERCISE: Data pertaining to a government or military exercise. The data
90
- may include both real and simulated data.
91
-
92
- REAL: Data collected or produced that pertains to real-world objects,
93
- events, and analysis.
94
-
95
- SIMULATED: Synthetic data generated by a model to mimic real-world
96
- datasets.
97
-
98
- TEST: Specific datasets used to evaluate compliance with specifications and
99
- requirements, and for validating technical, functional, and performance
100
- characteristics.
101
- """
102
-
103
- notes: Required[str]
104
- """Descriptions and/or comments associated with the sub-status."""
105
-
106
- source: Required[str]
107
- """Source of the data."""
108
-
109
- status: Required[Literal["FMC", "NMC", "PMC", "UNK"]]
110
- """Status of the sub-system/capability, e.g. FMC, NMC, PMC, UNK."""
111
-
112
- status_id: Required[Annotated[str, PropertyInfo(alias="statusId")]]
113
- """Id of the parent status."""
114
-
115
- type: Required[Literal["mwCap", "ssCap", "mdCap"]]
116
- """Parent entity's sub-system or capability status: mwCap, mdCap, ssCap, etc."""
117
-
118
- id: str
119
- """Unique identifier of the record, auto-generated by the system."""
120
-
121
- origin: str
122
- """
123
- Originating system or organization which produced the data, if different from
124
- the source. The origin may be different than the source if the source was a
125
- mediating system which forwarded the data on behalf of the origin system. If
126
- null, the source may be assumed to be the origin.
127
- """
@@ -8,9 +8,17 @@ from .dataowner_count_params import DataownerCountParams as DataownerCountParams
8
8
  from .data_type_list_response import DataTypeListResponse as DataTypeListResponse
9
9
  from .dataowner_count_response import DataownerCountResponse as DataownerCountResponse
10
10
  from .dataowner_retrieve_params import DataownerRetrieveParams as DataownerRetrieveParams
11
- from .dataowner_type_list_params import DataownerTypeListParams as DataownerTypeListParams
12
11
  from .dataowner_retrieve_response import DataownerRetrieveResponse as DataownerRetrieveResponse
13
- from .dataowner_type_list_response import DataownerTypeListResponse as DataownerTypeListResponse
14
- from .query_help_retrieve_response import QueryHelpRetrieveResponse as QueryHelpRetrieveResponse
15
- from .provider_metadata_retrieve_params import ProviderMetadataRetrieveParams as ProviderMetadataRetrieveParams
16
- from .provider_metadata_retrieve_response import ProviderMetadataRetrieveResponse as ProviderMetadataRetrieveResponse
12
+ from .dataowner_query_help_response import DataownerQueryHelpResponse as DataownerQueryHelpResponse
13
+ from .dataowner_retrieve_data_owner_types_params import (
14
+ DataownerRetrieveDataOwnerTypesParams as DataownerRetrieveDataOwnerTypesParams,
15
+ )
16
+ from .dataowner_retrieve_provider_metadata_params import (
17
+ DataownerRetrieveProviderMetadataParams as DataownerRetrieveProviderMetadataParams,
18
+ )
19
+ from .dataowner_retrieve_data_owner_types_response import (
20
+ DataownerRetrieveDataOwnerTypesResponse as DataownerRetrieveDataOwnerTypesResponse,
21
+ )
22
+ from .dataowner_retrieve_provider_metadata_response import (
23
+ DataownerRetrieveProviderMetadataResponse as DataownerRetrieveProviderMetadataResponse,
24
+ )
@@ -7,10 +7,10 @@ from pydantic import Field as FieldInfo
7
7
  from ..._models import BaseModel
8
8
  from ..shared.param_descriptor import ParamDescriptor
9
9
 
10
- __all__ = ["QueryHelpRetrieveResponse"]
10
+ __all__ = ["DataownerQueryHelpResponse"]
11
11
 
12
12
 
13
- class QueryHelpRetrieveResponse(BaseModel):
13
+ class DataownerQueryHelpResponse(BaseModel):
14
14
  aodr_supported: Optional[bool] = FieldInfo(alias="aodrSupported", default=None)
15
15
 
16
16
  classification_marking: Optional[str] = FieldInfo(alias="classificationMarking", default=None)
@@ -6,10 +6,10 @@ from typing_extensions import Annotated, TypedDict
6
6
 
7
7
  from ..._utils import PropertyInfo
8
8
 
9
- __all__ = ["DataownerTypeListParams"]
9
+ __all__ = ["DataownerRetrieveDataOwnerTypesParams"]
10
10
 
11
11
 
12
- class DataownerTypeListParams(TypedDict, total=False):
12
+ class DataownerRetrieveDataOwnerTypesParams(TypedDict, total=False):
13
13
  first_result: Annotated[int, PropertyInfo(alias="firstResult")]
14
14
 
15
15
  max_results: Annotated[int, PropertyInfo(alias="maxResults")]
@@ -0,0 +1,8 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+ from typing_extensions import TypeAlias
5
+
6
+ __all__ = ["DataownerRetrieveDataOwnerTypesResponse"]
7
+
8
+ DataownerRetrieveDataOwnerTypesResponse: TypeAlias = List[str]
@@ -6,10 +6,10 @@ from typing_extensions import Annotated, TypedDict
6
6
 
7
7
  from ..._utils import PropertyInfo
8
8
 
9
- __all__ = ["ProviderMetadataRetrieveParams"]
9
+ __all__ = ["DataownerRetrieveProviderMetadataParams"]
10
10
 
11
11
 
12
- class ProviderMetadataRetrieveParams(TypedDict, total=False):
12
+ class DataownerRetrieveProviderMetadataParams(TypedDict, total=False):
13
13
  first_result: Annotated[int, PropertyInfo(alias="firstResult")]
14
14
 
15
15
  max_results: Annotated[int, PropertyInfo(alias="maxResults")]
@@ -5,6 +5,6 @@ from typing_extensions import TypeAlias
5
5
 
6
6
  from .dataowner_abridged import DataownerAbridged
7
7
 
8
- __all__ = ["ProviderMetadataRetrieveResponse"]
8
+ __all__ = ["DataownerRetrieveProviderMetadataResponse"]
9
9
 
10
- ProviderMetadataRetrieveResponse: TypeAlias = List[DataownerAbridged]
10
+ DataownerRetrieveProviderMetadataResponse: TypeAlias = List[DataownerAbridged]