Versions Compared

Key

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

...

Panel
titlenode types:
Code Block
titleonap.node.ServiceComponent.wan
collapsetrue
onap.node.ServiceComponent.wan:
        derived_from: onap.nodes.ServiceComponent
        properties:
            type:
                type: string
                description: component type
            paras:
                type: list
                entry_schema:
                    type: onap.datatype.wan.UserDefine   
        capabilities:
            component:
                type: onap.capabilities.wan.partOf
        requirements:
            - configuration: 
                node: onap.node.ServiceComponent.wan 
                capabilities: onap.capabilities.wan.partOf
                relationship: onap.relationships.wan.Contains    
Code Block
titleonap.node.wan.Resource
collapsetrue
onap.node.wan.Resource:
        derived_from: tosca.nodes.Root
        properties:
            uuid:
                type: string
            name:
                type: string
            version:
                type: string
            description:
                type: string    
            type:
                type: string
                description: component type
            paras:
                type: list
                entry_schema:
                    type: onap.datatype.wan.UserDefine   
        capabilities:
            component:
                type: onap.capabilities.wan.partOf            
        requirements:
            - configuration: 
                node: onap.node.wan.Component 
                capabilities: onap.capabilities.wan.partOf
                relationship: onap.relationships.wan.Contains    
Code Block
titleonap.node.wan.Resource.Node
collapsetrue
onap.node.wan.Resource.Node:
        derived_from: onap.node.wan.Resource
        description: Node resource, it could be site or ne or anything else which can be a host for endPoint
        properties:
            address:
                type: string
                description: ip, or mac, or geo address
            vendor:
                type: string
        capabilities:
            host: 
                type: onap.capabilities.wan.host
        requirements:
            parentNode:
                capabilities:  onap.capabilities.wan.host
                relationship: onap.relationships.wan.HostOn     
Code Block
titleonap.node.wan.FC
collapsetrue
onap.node.wan.FC:
        description: The ForwardingConstruct (FC) class models enabled constrained potential for forwarding between two or more interfaces at a particular specific layerProtocol. 
        derived_from: onap.node.ServiceComponent.wan
        properties: 
            topology:
                type: string
                constraints:
                    - valid_values: ['hub-spoke','fullmesh','p2p']    
            tenant:
                type: string
            creator:
                type:  string
                description:  creator 
        capabilities:
            dependable:
                type: onap.capabilities.wan.dependable
            virtual_linkable:
                type: tosca.capabilities.wan.VirtualLinkable
        requirements: 
            - endPoint:
                node: onap.node.wan.Resource.FCPointFCPort    
                capabilities: tosca.capabilities.Endpoint
                relationship: tosca.relationships.ConnectsTo
            - fcRoute:
                capabilities: onap.capabilities.wan.dependable
                relationship: onap.relationships.wan.DependsOn
Code Block
titleonap.node.wan.Resource.FCPoint
collapsetrue
onap.node.wan.Resource.FCPointFCPort:
        description: Fowarding Construct Point. The association of the FC to interfaces is made via FCPointsFCPorts. The FCPointFCPort class models the access to the FC function.  
        derived_from: onap.node.wan.Resource
        properties:
            interface:
                type: string
            address:
                type: string
                description: ip, or mac    
            hub-spoke-role:
                type: string
                description: role of the FC Point
                constraints:
                    - valid_values: ['hub','spoke']
                required: false
        capabilities:
            endPoint:
                type: tosca.capabilities.Endpoint
        requirements:
            node:
                capabilities:  onap.capabilities.wan.host
                relationship: onap.relationships.wan.HostOn
Code Block
titleonap.node.wan.Resource.XCPoint
collapsetrue
onap.node.wan.Resource.XCPoint:
        description: Exchange Connection Point. Interfaces involved in exchange in a node
        derived_from: onap.node.wan.Resource
        properties:
            hub-spoke-role:
                type: string
                description: role of the FC Point
                constraints:
                    - valid_values: ['hub','spoke']
                required: false    
            interface:
                type: string
        capabilities:
            endPoint:
                type: tosca.capabilities.Endpoint
        requirements:
            node:
                capabilities:  onap.capabilities.wan.host
                relationship: onap.relationships.wan.HostOn  
Code Block
titleonap.node.wan.Resource.XC
collapsetrue
onap.node.wan.Resource.XC:
        description: Exchange Connection. The exchange relationship within a node describes how the interfaces within the node are linked.
        derived_from: onap.node.wan.Resource
        properties:
        requirements: 
            - endPort:
                node: onap.node.wan.Resource.XcPoint    
                capabilities: tosca.capabilities.Endpoint
                relationship: tosca.relationships.ConnectsTo   
                description: all endPorts can access each other
            - ne:
                capabilities:  onap.capabilities.wan.host
                relationship: onap.relationships.wan.HostOn
Code Block
titleonap.node.wan.Resource.LinkConnection
collapsetrue
onap.node.wan.Resource.LinkConnection:
        description: The exchange relationship between nodes, describing how the interfaces between nodes are linked. The link can depend on the FC of the service layer
        derived_from: onap.node.wan.Resource
        properties:
          topology:
                type: string
                constraints:
                    - valid_values: ['hub-spoke','fullmesh','p2p']       
        requirements: 
            - fc:
                capabilities: onap.capabilities.wan.dependable
                relationship: onap.relationships.wan.DependsOn
            - endPoint:
                node: onap.node.wan.Resource.XcPoint    
                capabilities: tosca.capabilities.Endpoint
                relationship: tosca.relationships.ConnectsTo    
Code Block
titleonap.node.wan.Resource.FCRoute
collapsetrue
onap.node.wan.Resource.FCRoute:
        description: The routing relationships within FC are described, including routing between sub FC (interdomain links), and links between network elements and network elements.
        derived_from: onap.node.wan.Resource
        properties:
        capabilities:
            dependable:
                type: onap.capabilities.wan.dependable        
        requirements:
            - xc: 
                node: onap.node.wan.Resource.XC
                capabilities: onap.capabilities.wan.partOf
                relationship: onap.relationships.wan.Contains  
            - lc:
                node: onap.node.wan.Resource.LinkConnection
                capabilities: onap.capabilities.wan.partOf
                relationship: onap.relationships.wan.Contains  
            - subFc:
                capabilities: onap.capabilities.wan.dependable
                relationship: onap.relationships.wan.DependsOn