TM Forum Community

 View Only
  • 1.  TMF Network Function API

    TM Forum Member
    Posted Aug 30, 2024 10:16

    Is anyone aware of the TMF API version that supports Network Functions with real example?


    #OpenDigitalArchitecture
    #General

    ------------------------------
    Sanjay Vyas
    Verizon Communications
    ------------------------------


  • 2.  RE: TMF Network Function API

    Posted 25 days ago

    Hi Sanjay,

    Can you try this, it will work

    Request:

    POST /nfvo/v1/nf-instances
    Content-Type: application/json
    Authorization: Bearer {access_token}

    {
        "nfInstanceId": "12345",
        "nfInstanceName": "MyNFVFunction",
        "vnfdId": "67890",
        "flavourId": "flavour1",
        "vnfConfigurableData": {
            "cpu": "4",
            "memory": "8GB"
        }
    }

    Response:

    HTTP/1.1 201 Created
    Content-Type: application/json

    {
        "nfInstanceId": "12345",
        "nfInstanceName": "MyNFVFunction",
        "nfInstanceStatus": "INSTANTIATED",
        "vnfdId": "67890",
        "flavourId": "flavour1"
    }

    I hope this will help you......



    ------------------------------
    Ricky James
    TO BE VERIFIED
    ------------------------------



  • 3.  RE: TMF Network Function API

    TM Forum Member
    Posted 24 days ago

    @Sanjay Vyas originally asked about TM Forum Open APIs to support Network Functions.

    @Ricky James provided an example of using some API which looks similar to ETSI's SOL005 (Os-Ma-nfvo).

    The literally correct answer to the original question would be TM Forum's TMF664 Resource Function Activation Management API. There are two use cases illustrated, with example JSON, for a vCDN Network Function (NF) and a flow Network Service (NS).



    ------------------------------
    Vance Shipley
    SigScale
    ------------------------------