Commit e8af76f5 authored by Gabriele Scivoletto's avatar Gabriele Scivoletto
Browse files

first draft of MEC021

parent afb34222
Loading
Loading
Loading
Loading
+232 −79

File changed.

Preview size limit exceeded, changes collapsed.

+5 −2
Original line number Diff line number Diff line
@@ -6,11 +6,14 @@ ${AMS_PORT} 3006
${response}                         {}
${TOKEN}                            Basic YWxhZGRpbjpvcGVuc2VzYW1l
${apiRoot}        
${apiName}        
${apiName}        amsi
${apiVersion}     v1

# Specific variables
${APP_MOBILITY_SERVICE_ID}          KtRGymNQ84dG3mQfRepa
${APP_MOBILITY_SERVICE_ID}          APP_MOBILITY_SERVICE_ID
${APP_MOBILITY_SERVICE_ID2}          APP_MOBILITY_SERVICE_ID2
${MALFORMED_APP_MOBILITY_SERVICE_ID}          MALFORMED_APP_MOBILITY_SERVICE_ID
${APP_MOBILITY_SERVICE_FILTER}        (eq,appMobilityServiceId,APP_MOBILITY_SERVICE)
${APP_INS_ID}                       5abe4782-2c70-4e47-9a4e-0ee3a1a0fd1f
${SUBSCRIPTION_TYPE}                MobilityProcedureSubscription
${SUBSCRIPTION_ID}                  e0deee2b-6e50-4f33-ab09-8bf0585025d3
+16 −0
Original line number Diff line number Diff line
{
    "callbackReference": "http://example.com/callback",
    "requestTestNotification": true,
    "websockNotifConfig": {
        "websocketUri": "ws://example.com/websocket",
        "requestWebsocketUri": true
    },
    "expiryDeadline": {
        "seconds": 1644691200,
        "nanoSeconds": 0
    },
    "filterCriteria": {
        "appInstanceId": "app-123"
    },
    "subscriptionType": "AdjacentAppInfoSubscription"
}
 No newline at end of file
+16 −0
Original line number Diff line number Diff line
{
    "callbackReference": "http://example.com/callback",
    "requestTestNotification": true,
    "websockNotifConfig": {
        "websocketUri": "ws://example.com/websocket",
        "requestWebsocketUri": true
    },
    "expiryDeadline": {
        "seconds": 1644691200,
        "nanoSeconds": 0
    },
    "filterCriteria": {
        "appInstanceId": "app-123"
    },
    "subscriptionType": "INVALID_SUBSCRIPTION_TYPE"
}
 No newline at end of file
+26 −0
Original line number Diff line number Diff line
{
    "serviceConsumerId": {
        "appInstanceId": "exampleAppInstanceId",
        "mepId": "exampleMepId"
    },
    "appMobilityServiceId": "exampleAppMobilityServiceId",
    "deviceInformation": [
        {
            "associateId": {
                "type": "UE_IPv4_ADDRESS",
                "value": "192.168.1.100"
            },
            "appMobilityServiceLevel": "APP_MOBILITY_NOT_ALLOWED",
            "contextTransferState": "NOT_TRANSFERRED"
        },
        {
            "associateId": {
                "type": "UE_IPV6_ADDRESS",
                "value": "2001:0db8:85a3:0000:0000:8a2e:0370:7334"
            },
            "appMobilityServiceLevel": "APP_MOBILITY_WITH_CONFIRMATION",
            "contextTransferState": "USER_CONTEXT_TRANSFER_COMPLETED"
        }
    ],
    "expiryTime": 3600
}
 No newline at end of file
Loading