summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/resources/import/tosca/nfv-types/vnfVirtualLink/vnfVirtualLink.yml
blob: 2c92140158c3aeec4b6b892e7077356f3fa35faf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
tosca_definitions_version: tosca_simple_yaml_1_0_0
node_types:
  tosca.nodes.nfv.VnfVirtualLink:
      derived_from: tosca.nodes.Root
      description: Describes the information about an internal VNF VL
      properties:
        connectivity_type:
          type: tosca.datatypes.nfv.ConnectivityType
          description: Specifies the protocol exposed by the VL and the flow pattern supported by the VL
          required: true
        description:
          type: string
          description: Provides human-readable information on the purpose of the VL
          required: false
        test_access:
          type: list
          description: Test access facilities available on the VL
          required: false
          entry_schema:
            type: string
            constraints:
              - valid_values: [ passive_monitoring, active_loopback ]
        vl_profile:
          type: tosca.datatypes.nfv.VlProfile
          description: Defines additional data for the VL
          required: true
        monitoring_parameters:
          type: list
          description: Describes monitoring parameters applicable to the VL
          required: false
          entry_schema:
            type: tosca.datatypes.nfv.VirtualLinkMonitoringParameter
      capabilities:
        virtual_linkable:
          type: tosca.capabilities.nfv.VirtualLinkable