blob: ef3966b68f06efae2cf51abe7f10a07dda40ab8e [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001tosca_definitions_version: tosca_simple_yaml_1_0_0
2
3node_types:
4 org.openecomp.resource.vfc.uCPE:
5 derived_from: tosca.nodes.Root
6 properties:
7 att-ucpe-part-number:
8 type: string
9 vendor-name:
10 type: string
11 required: true
12 vendor-model:
13 type: string
14 required: true
15 total-vcpu:
16 type: integer
17 description: number of vCPUs
18 total-memory:
19 type: integer
20 description: GB
21 total-disk:
22 type: integer
23 description: GB
24 base-system-image-file-name:
25 type: string
26 linux-host-vendor:
27 type: string
28 linux-host-os-version:
29 type: version
30 base-system-software:
31 type: string
32 jdm-vcpu:
33 type: integer
34 jdm-memory:
35 type: integer
36 description: GB
37 jdm-disk:
38 type: integer
39 description: GB
40 jdm-version:
41 type: string
42 jcp-vcpu:
43 type: integer
44 jcp-memory:
45 type: integer
46 description: GB
47 jcp-disk:
48 type: integer
49 description: GB
50 jcp-version:
51 type: version
52 capabilities:
53 vnf_hosting:
54 type: tosca.capabilities.Container
55 description: Provides hosting capability for VNFs
56 WAN_connectivity:
57 type: tosca.capabilities.network.Bindable
58 valid_source_types: [org.openecomp.cp.Wan]
59 description: external WAN1 n/w interface
60 occurrences: [1,2]
61 LAN_connectivity:
62 type: tosca.capabilities.network.Bindable
63 valid_source_types: [org.openecomp.cp.Lan]
64 description: external LAN n/w interface
65 occurrences: [1,8]