Release version 1.13.7
[sdc.git] / catalog-be / src / main / resources / import / tosca / nfv-types / Cp / Cp.yml
1 tosca_definitions_version: tosca_simple_yaml_1_0_0
2 node_types:
3   tosca.nodes.nfv.Cp:
4     derived_from: tosca.nodes.Root
5     description:  Provides information regarding the purpose of the connection point
6     properties:
7       layer_protocols:
8         type: list
9         description: Identifies which protocol the connection point uses for connectivity purposes
10         required: true
11         entry_schema:
12           type: string
13           constraints:
14             - valid_values: [ ethernet, mpls, odu2, ipv4, ipv6, pseudo-wire ]
15       role: #Name in ETSI NFV IFA011 v0.7.3: cpRole
16         type: string
17         description: Identifies the role of the port in the context of the traffic flow patterns in the VNF or parent NS
18         required: false
19         constraints:
20           - valid_values: [ root, leaf ]
21       description:
22         type: string
23         description: Provides human-readable information on the purpose of the connection point
24         required: false
25       protocol:
26         type: list
27         description: Provides information on the addresses to be assigned to the connection point(s) instantiated from this Connection Point Descriptor
28         required: false
29         entry_schema:
30           type: tosca.datatypes.nfv.CpProtocolData
31       trunk_mode:
32         type: boolean
33         description: Provides information about whether the CP instantiated from this Cp is in Trunk mode (802.1Q or other), When operating in "trunk mode", the Cp is capable of carrying traffic for several VLANs. Absence of this property implies that trunkMode is not configured for the Cp i.e. It is equivalent to boolean value "false".
34         required: false
35       allowed_address_data: # #Introduced from Beijing release, align with resource IM, outside the scope of SOL001 v2.5.1
36         type: tosca.datatypes.nfv.AddressData   # In the IM, it is a array, but here it is not a array. TBD.
37         required: false