Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[uss_qualifier/f3548] Add support for requested_ovn_suffix field #815

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions monitoring/uss_qualifier/resources/astm/f3548/v21/dss.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
ConstraintReference,
QueryConstraintReferenceParameters,
QueryConstraintReferencesResponse,
UUIDv7Format,
)
from uas_standards.astm.f3548.v21.constants import Scope

Expand Down Expand Up @@ -257,6 +258,7 @@ def put_op_intent(
subscription_id: Optional[str] = None,
force_query_scopes: Optional[Scope] = None,
force_no_implicit_subscription: bool = False,
requested_ovn_suffix: Optional[UUIDv7Format] = None,
) -> Tuple[OperationalIntentReference, List[SubscriberToNotify], Query,]:
"""
Create or update an operational intent.
Expand Down Expand Up @@ -313,6 +315,7 @@ def put_op_intent(
new_subscription=ImplicitSubscriptionParameters(uss_base_url=base_url)
if subscription_id is None and force_no_implicit_subscription is False
else None,
requested_ovn_suffix=requested_ovn_suffix,
)
query = query_and_describe(
self.client,
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ scipy==1.13.0
shapely==1.7.1
structlog==21.5.0 # deployment_manager
termcolor==1.1.0
uas_standards==3.1.0
uas_standards==3.2.2
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1621,9 +1621,9 @@ tzdata==2024.1 \
--hash=sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd \
--hash=sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252
# via pandas
uas-standards==3.1.0 \
--hash=sha256:2331b2199723230155533c72e7b23631cb41000d9da5073dccde37da65e9e8ff \
--hash=sha256:8a570b764493904022244dbab387e9b0142e45d2ac980bbe3a333a2e6fec9767
uas-standards==3.2.2 \
--hash=sha256:c9cee8f30e6f238570ad4aa83029d4c48d4e8ea38651907d0a51ceaea0ab3b38 \
--hash=sha256:de710dec3a8f6e7ee66ae3cc386416dce52e862efba519ba9de64fea76f9e048
# via -r requirements.in
urllib3==2.2.1 \
--hash=sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d \
Expand Down
Loading