From ffcf1a3c95eaa130f587d01105293433584ee663 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Misbach?= Date: Fri, 13 Sep 2024 17:31:20 +0200 Subject: [PATCH] [interfaces/astm-utm-protocol] Target interuss/astm-utm-protocol repo as submodule and regen apis files --- .gitmodules | 3 ++- interfaces/astm-utm/Protocol | 2 +- .../example/api/scd/interface.gen.go | 6 +++--- .../example/api/scd/types.gen.go | 16 ++++++++++++---- pkg/api/auxv1/interface.gen.go | 10 ++++++---- pkg/api/ridv1/interface.gen.go | 2 +- pkg/api/ridv2/interface.gen.go | 2 +- pkg/api/scdv1/interface.gen.go | 4 ++-- pkg/api/scdv1/types.gen.go | 16 ++++++++++++---- pkg/scd/models/constraints.go | 2 +- pkg/scd/models/operational_intents.go | 2 +- 11 files changed, 42 insertions(+), 23 deletions(-) diff --git a/.gitmodules b/.gitmodules index 1a330297b..222489384 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,7 @@ [submodule "interfaces/astm-utm/Protocol"] path = interfaces/astm-utm/Protocol - url = https://github.com/astm-utm/Protocol + url = https://github.com/Orbitalize/Protocol + # TODO: update url to https://github.com/interuss/astm-utm-protocol once interuss/astm-utm-protocol#3 is merged [submodule "interfaces/rid/v1"] path = interfaces/rid/v1 url = https://github.com/uastech/standards diff --git a/interfaces/astm-utm/Protocol b/interfaces/astm-utm/Protocol index cb7cf962d..439cb871d 160000 --- a/interfaces/astm-utm/Protocol +++ b/interfaces/astm-utm/Protocol @@ -1 +1 @@ -Subproject commit cb7cf962d3a0c01b5ab12502f5f54789624977bf +Subproject commit 439cb871dd52c60a3f0e2e0d7aa75e5f090ce760 diff --git a/interfaces/openapi-to-go-server/example/api/scd/interface.gen.go b/interfaces/openapi-to-go-server/example/api/scd/interface.gen.go index 42d904285..2831ca562 100644 --- a/interfaces/openapi-to-go-server/example/api/scd/interface.gen.go +++ b/interfaces/openapi-to-go-server/example/api/scd/interface.gen.go @@ -7,11 +7,11 @@ import ( ) var ( + UtmConstraintProcessingScope = api.RequiredScope("utm.constraint_processing") + UtmStrategicCoordinationScope = api.RequiredScope("utm.strategic_coordination") UtmAvailabilityArbitrationScope = api.RequiredScope("utm.availability_arbitration") - UtmConformanceMonitoringSaScope = api.RequiredScope("utm.conformance_monitoring_sa") UtmConstraintManagementScope = api.RequiredScope("utm.constraint_management") - UtmStrategicCoordinationScope = api.RequiredScope("utm.strategic_coordination") - UtmConstraintProcessingScope = api.RequiredScope("utm.constraint_processing") + UtmConformanceMonitoringSaScope = api.RequiredScope("utm.conformance_monitoring_sa") QueryOperationalIntentReferencesSecurity = []api.AuthorizationOption{ { "Authority": {UtmStrategicCoordinationScope}, diff --git a/interfaces/openapi-to-go-server/example/api/scd/types.gen.go b/interfaces/openapi-to-go-server/example/api/scd/types.gen.go index e14363ae6..2c1813f3f 100644 --- a/interfaces/openapi-to-go-server/example/api/scd/types.gen.go +++ b/interfaces/openapi-to-go-server/example/api/scd/types.gen.go @@ -4,12 +4,18 @@ package scd // String whose format matches a version-4 UUID according to RFC 4122. type UUIDv4Format string +// String whose format matches a version-7 UUID according to RFC 9562. +type UUIDv7Format string + // Identifier for an Entity communicated through the DSS. Formatted as a UUIDv4. type EntityID UUIDv4Format // A token associated with a particular UTM Entity+version created by the DSS upon creation or modification of an Entity reference and provided to the client creating or modifying the Entity reference. The EntityOVN is stored privately by the DSS and then compared against entries in a Key provided to mutate the airspace. The EntityOVN is also provided by the client whenever that client transmits the full information of the Entity (either via GET, or via a subscription notification). type EntityOVN string +// Numeric version of this entity which increments upon each change in the entity, regardless of whether any field of the entity changes. A USS with the details of this entity when it was at a particular version does not need to retrieve the details again until the version changes. +type EntityVersion int32 + // Identifier for a subscription communicated through the DSS. Formatted as a UUIDv4. type SubscriptionID UUIDv4Format @@ -228,8 +234,7 @@ type OperationalIntentReference struct { UssAvailability UssAvailabilityState `json:"uss_availability"` - // Numeric version of this operational intent which increments upon each change in the operational intent, regardless of whether any field of the operational intent reference changes. A USS with the details of this operational intent when it was at a particular version does not need to retrieve the details again until the version changes. - Version int32 `json:"version"` + Version EntityVersion `json:"version"` State OperationalIntentState `json:"state"` @@ -269,6 +274,10 @@ type PutOperationalIntentReferenceParameters struct { // If an existing subscription is not specified in `subscription_id`, and the operational intent is in the Activated, Nonconforming, or Contingent state, then this field must be populated. When this field is populated, an implicit subscription will be created and associated with this operational intent, and will generally be deleted automatically upon the deletion of this operational intent. NewSubscription *ImplicitSubscriptionParameters `json:"new_subscription,omitempty"` + + // This optional field not part of the original F3548 standard API allows a USS to request a specific OVN when creating or updating an operational intent. When creating an operational intent, this enables a USS to immediately publish the operational intent details with the expected OVN. When updating an operational intent, this enables a USS to immediately make available this new version of the operational intent details if specifically requested by the remote USS. The USS must still wait for the DSS receipt to actually publish the new operational intent details. This allows USSs to obtain correct operational intent details even if the DSS takes a long time to respond and/or the USS processing it. + // The requested suffix must be a UUIDv7 string containing a timestamp of the current time. If the suffix is invalid, and notably if the time is too far in the past or the future, the request will be rejected. If the suffix is valid, the DSS will set the OVN of the operational intent to be `{entityid}_{requested_ovn_suffix}`. If no suffix is set, the DSS will proceed as specified by the standard. + RequestedOvnSuffix *UUIDv7Format `json:"requested_ovn_suffix,omitempty"` } // Information necessary to create a subscription to serve a single operational intent's notification needs. @@ -313,8 +322,7 @@ type ConstraintReference struct { UssAvailability UssAvailabilityState `json:"uss_availability"` - // Numeric version of this constraint which increments upon each change in the constraint, regardless of whether any field of the constraint reference changes. A USS with the details of this constraint when it was at a particular version does not need to retrieve the details again until the version changes. - Version int32 `json:"version"` + Version EntityVersion `json:"version"` // Opaque version number of this constraint. Populated only when the ConstraintReference is managed by the USS retrieving or providing it. Not populated when the ConstraintReference is not managed by the USS retrieving or providing it (instead, the USS must obtain the OVN from the details retrieved from the managing USS). Ovn *EntityOVN `json:"ovn,omitempty"` diff --git a/pkg/api/auxv1/interface.gen.go b/pkg/api/auxv1/interface.gen.go index 12c2d1098..e20497ab8 100644 --- a/pkg/api/auxv1/interface.gen.go +++ b/pkg/api/auxv1/interface.gen.go @@ -7,13 +7,15 @@ import ( ) var ( - GetVersionSecurity = []api.AuthorizationOption{} - ValidateOauthSecurity = []api.AuthorizationOption{ + DssWriteIdentificationServiceAreasScope = api.RequiredScope("dss.write.identification_service_areas") + DssReadIdentificationServiceAreasScope = api.RequiredScope("dss.read.identification_service_areas") + GetVersionSecurity = []api.AuthorizationOption{} + ValidateOauthSecurity = []api.AuthorizationOption{ { - "Auth": {"dss.read.identification_service_areas"}, + "Auth": {DssReadIdentificationServiceAreasScope}, }, { - "Auth": {"dss.write.identification_service_areas"}, + "Auth": {DssWriteIdentificationServiceAreasScope}, }, } ) diff --git a/pkg/api/ridv1/interface.gen.go b/pkg/api/ridv1/interface.gen.go index 5f6f4326e..e0807ffb6 100644 --- a/pkg/api/ridv1/interface.gen.go +++ b/pkg/api/ridv1/interface.gen.go @@ -7,8 +7,8 @@ import ( ) var ( - DssWriteIdentificationServiceAreasScope = api.RequiredScope("dss.write.identification_service_areas") DssReadIdentificationServiceAreasScope = api.RequiredScope("dss.read.identification_service_areas") + DssWriteIdentificationServiceAreasScope = api.RequiredScope("dss.write.identification_service_areas") SearchIdentificationServiceAreasSecurity = []api.AuthorizationOption{ { "AuthFromAuthorizationAuthority": {DssReadIdentificationServiceAreasScope}, diff --git a/pkg/api/ridv2/interface.gen.go b/pkg/api/ridv2/interface.gen.go index d8a524f20..406d8460f 100644 --- a/pkg/api/ridv2/interface.gen.go +++ b/pkg/api/ridv2/interface.gen.go @@ -7,8 +7,8 @@ import ( ) var ( - RidServiceProviderScope = api.RequiredScope("rid.service_provider") RidDisplayProviderScope = api.RequiredScope("rid.display_provider") + RidServiceProviderScope = api.RequiredScope("rid.service_provider") SearchIdentificationServiceAreasSecurity = []api.AuthorizationOption{ { "Authority": {RidDisplayProviderScope}, diff --git a/pkg/api/scdv1/interface.gen.go b/pkg/api/scdv1/interface.gen.go index e03e50029..6a99ce028 100644 --- a/pkg/api/scdv1/interface.gen.go +++ b/pkg/api/scdv1/interface.gen.go @@ -7,11 +7,11 @@ import ( ) var ( - UtmConstraintManagementScope = api.RequiredScope("utm.constraint_management") UtmConformanceMonitoringSaScope = api.RequiredScope("utm.conformance_monitoring_sa") UtmStrategicCoordinationScope = api.RequiredScope("utm.strategic_coordination") - UtmConstraintProcessingScope = api.RequiredScope("utm.constraint_processing") + UtmConstraintManagementScope = api.RequiredScope("utm.constraint_management") UtmAvailabilityArbitrationScope = api.RequiredScope("utm.availability_arbitration") + UtmConstraintProcessingScope = api.RequiredScope("utm.constraint_processing") QueryOperationalIntentReferencesSecurity = []api.AuthorizationOption{ { "Authority": {UtmStrategicCoordinationScope}, diff --git a/pkg/api/scdv1/types.gen.go b/pkg/api/scdv1/types.gen.go index 048263a8e..b14deb25b 100644 --- a/pkg/api/scdv1/types.gen.go +++ b/pkg/api/scdv1/types.gen.go @@ -4,12 +4,18 @@ package scdv1 // String whose format matches a version-4 UUID according to RFC 4122. type UUIDv4Format string +// String whose format matches a version-7 UUID according to RFC 9562. +type UUIDv7Format string + // Identifier for an Entity communicated through the DSS. Formatted as a UUIDv4. type EntityID UUIDv4Format // A token associated with a particular UTM Entity+version created by the DSS upon creation or modification of an Entity reference and provided to the client creating or modifying the Entity reference. The EntityOVN is stored privately by the DSS and then compared against entries in a Key provided to mutate the airspace. The EntityOVN is also provided by the client whenever that client transmits the full information of the Entity (either via GET, or via a subscription notification). type EntityOVN string +// Numeric version of this entity which increments upon each change in the entity, regardless of whether any field of the entity changes. A USS with the details of this entity when it was at a particular version does not need to retrieve the details again until the version changes. +type EntityVersion int32 + // Identifier for a subscription communicated through the DSS. Formatted as a UUIDv4. type SubscriptionID UUIDv4Format @@ -228,8 +234,7 @@ type OperationalIntentReference struct { UssAvailability UssAvailabilityState `json:"uss_availability"` - // Numeric version of this operational intent which increments upon each change in the operational intent, regardless of whether any field of the operational intent reference changes. A USS with the details of this operational intent when it was at a particular version does not need to retrieve the details again until the version changes. - Version int32 `json:"version"` + Version EntityVersion `json:"version"` State OperationalIntentState `json:"state"` @@ -269,6 +274,10 @@ type PutOperationalIntentReferenceParameters struct { // If an existing subscription is not specified in `subscription_id`, and the operational intent is in the Activated, Nonconforming, or Contingent state, then this field must be populated. When this field is populated, an implicit subscription will be created and associated with this operational intent, and will generally be deleted automatically upon the deletion of this operational intent. NewSubscription *ImplicitSubscriptionParameters `json:"new_subscription,omitempty"` + + // This optional field not part of the original F3548 standard API allows a USS to request a specific OVN when creating or updating an operational intent. When creating an operational intent, this enables a USS to immediately publish the operational intent details with the expected OVN. When updating an operational intent, this enables a USS to immediately make available this new version of the operational intent details if specifically requested by the remote USS. The USS must still wait for the DSS receipt to actually publish the new operational intent details. This allows USSs to obtain correct operational intent details even if the DSS takes a long time to respond and/or the USS processing it. + // The requested suffix must be a UUIDv7 string containing a timestamp of the current time. If the suffix is invalid, and notably if the time is too far in the past or the future, the request will be rejected. If the suffix is valid, the DSS will set the OVN of the operational intent to be `{entityid}_{requested_ovn_suffix}`. If no suffix is set, the DSS will proceed as specified by the standard. + RequestedOvnSuffix *UUIDv7Format `json:"requested_ovn_suffix,omitempty"` } // Information necessary to create a subscription to serve a single operational intent's notification needs. @@ -313,8 +322,7 @@ type ConstraintReference struct { UssAvailability UssAvailabilityState `json:"uss_availability"` - // Numeric version of this constraint which increments upon each change in the constraint, regardless of whether any field of the constraint reference changes. A USS with the details of this constraint when it was at a particular version does not need to retrieve the details again until the version changes. - Version int32 `json:"version"` + Version EntityVersion `json:"version"` // Opaque version number of this constraint. Populated only when the ConstraintReference is managed by the USS retrieving or providing it. Not populated when the ConstraintReference is not managed by the USS retrieving or providing it (instead, the USS must obtain the OVN from the details retrieved from the managing USS). Ovn *EntityOVN `json:"ovn,omitempty"` diff --git a/pkg/scd/models/constraints.go b/pkg/scd/models/constraints.go index 7f9ae7ede..4dae5e852 100644 --- a/pkg/scd/models/constraints.go +++ b/pkg/scd/models/constraints.go @@ -32,7 +32,7 @@ func (c *Constraint) ToRest() *restapi.ConstraintReference { Id: restapi.EntityID(c.ID.String()), Ovn: &ovn, Manager: c.Manager.String(), - Version: int32(c.Version), + Version: restapi.EntityVersion(c.Version), UssBaseUrl: restapi.ConstraintUssBaseURL(c.USSBaseURL), UssAvailability: UssAvailabilityStateUnknown.ToRest(), } diff --git a/pkg/scd/models/operational_intents.go b/pkg/scd/models/operational_intents.go index 9cf5c3025..019e2b7d4 100644 --- a/pkg/scd/models/operational_intents.go +++ b/pkg/scd/models/operational_intents.go @@ -103,7 +103,7 @@ func (o *OperationalIntent) ToRest() *restapi.OperationalIntentReference { Id: restapi.EntityID(o.ID.String()), Ovn: &ovn, Manager: o.Manager.String(), - Version: int32(o.Version), + Version: restapi.EntityVersion(o.Version), UssBaseUrl: restapi.OperationalIntentUssBaseURL(o.USSBaseURL), SubscriptionId: subID, State: o.State.ToRest(),