Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This clause describes the procedure for sending notifications related to VNF package management

1.VnfPackage Onboarding Notification

When the vnf package performs the Onboarding operation successfully, Etsicatalog will filter all Subscriptions records:

...

If there is some matching subscription records,  Etsicatalog will post notifications requests.

1.1 Flow of VnfPackage Onboarding Notification

PlantUML Macro
aligncenter
@startuml
SOL003_Adapter -> ETSICatalog: Post PkgmSubscriptionRequest\n(callbackUri=/URI-is-provided-by-the-client\nfilter.notificationTypes=VnfPackageOnboardingNotification\nfilters.vnfProductsFromProviders/vnfdId/vnfPkgId=...)
note over ETSICatalog: test notification endpoint
ETSICatalog->SOL003_Adapter: Get /URI-is-provided-by-the-client
ETSICatalog<-SOL003_Adapter: 204 No Content
note over ETSICatalog:  Creates a new subscription
ETSICatalog->SOL003_Adapter: 201 Created
alt
SOL003_Adapter -> ETSICatalog: Put /vnf_packages/(vnfPkgId)/package_content
else
SOL003_Adapter -> ETSICatalog: Put /vnf_packages/(vnfPkgId)/package_content/upload_from_uri
end
ETSICatalog->SOL003_Adapter: 202 Accepted
note over ETSICatalog: Uploading of VNF package content
note over ETSICatalog: Filter Subscriptions
alt  Filted by Subscriptions.filters.vnfProductsFromProviders/vnfdId/vnfPkgId
ETSICatalog->SOL003_Adapter: Post /URI-is-provided-by-the-client
ETSICatalog<-SOL003_Adapter: 204 No Content
end
@enduml

1.2 Subscribe API example:


Code Block
languagebash
{
    "filters": {
        "notificationTypes": [
            "VnfPackageOnboardingNotification"
        ],
        "vnfdId": [
            "00342b18-a5c7-11e8-998c-bf1755941f12"
        ]
    },
    "callbackUri": "http://www.vnf1.com/notification",
    "authentication": {
        "authType": [
            "BASIC"
        ],
        "paramsBasic": {
            "userName": "string",
            "password": "string"
        }
    }
}

1.2 Notification API example:



VnfPackage Change Notification

When the vnf package performs the Deleting or Patching operation successfully, Etsicatalog will filter all Subscriptions records:

...