Versions Compared

Key

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

...

  • NS can include VNF, PNF and other nested NS along with the SAP if any.




  • Nested NS is represented as an abstract node which can have its implementation as another service template or it can be referenced from an existing NS.

Code Block
titleNetwork Service node (abstract)
linenumberstrue
collapsetrue
  

node_types:
  tosca.nodes.nfv.NS.NS1:
    derived_from: tosca.nodes.Root
    version: 1.0.0
    description: specific network service node.
    properties:
      id: 
        type: string
        description: network service descriptor identifier (NSD).
        required: true
      designer:
        type: string
        description: identifies the designer of NSD.
        required: true
      version:
        type: string
        description: identifies the version of NSD.
        required: true
      name:
        type: string
        description: name of the NSD.
        required: true
      invariantId:
        type: string
        description: version independent network service descriptor identifier (NSD).
        required: true
	   ...
    interfaces:
      Basic:
        type: tosca.interfaces.nfv.ns.lifecycle.Basic
        ...

    requirements: 
      - virtualLinkable1: tosca.capabilities.nfv.VirtualLinkable
      - virtualLinkable2: tosca.capabilities.nfv.VirtualLinkable
		

    


...