An ability of a network to have traffic from and to a CP. 

A derivation of tosca.capabilities.network.Linkable.

Definition

capability_types:
  onap.capabilities.Linkable:
    derived_from: tosca.capabilities.network.Linkable
    properties:
      cp_roles:
        description: |
          a list of all CP roles available in the network that owns this capability,
          for example, "root", "leaf", etc.
        type: list
        entry_schema: string
        required: false
      protocols:
        description: | 
          a list of protocols supported by the network that owns this capability,
          for example, IPv4, IPv6, TCP, Ethernet, etc
        type: list
        entry_schema: string
        required: false
      bitrate:
        description: |
          the aggregate throughput of all CPs interconnected, in bits per sec
        type: integer
        constraints:
          - greater_or_equal: 0
        required: false
      link_role:
        description: | 
          describes the role that the link has which the connection point requires
          in order to connect
        type:  string
        required: false





  • No labels