blob: 853ed35374ada98b8c787d4f54fcc2471a28eca6 [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.vRouter:
5 derived_from: tosca.nodes.Root
6 properties:
7 att-part-number:
8 type: string
9 vendor-name:
10 type: string
11 vendor-part-number:
12 type: string
13 vendor-model:
14 type: string
15 vendor-model-description:
16 type: string
17 vcpu-default:
18 type: integer
19 vcpu-min:
20 type: integer
21 vcpu-max:
22 type: integer
23 vmemory-default:
24 type: integer
25 vmemory-units:
26 type: string
27 default: "GB"
28 vmemory-min:
29 type: integer
30 vmemory-max:
31 type: integer
32 vdisk-default:
33 type: integer
34 vdisk-units:
35 type: string
36 default: "GB"
37 vdisk-min:
38 type: integer
39 vdisk-max:
40 type: integer
41 vnf-type:
42 type: string
43 software-version:
44 type: string
45 software-version-state:
46 type: integer
47 software-file-name:
48 type: string
49 vnf-feature:
50 type: string
51 management-v6-address:
52 type: string
53 nm-lan-v6-address:
54 type: string
55 nm-lan-v6-prefix-length:
56 type: string
57 management-v4-address:
58 type: string
59 nm-lan-v4-address:
60 type: string
61 nm-lan-v4-prefix-length:
62 type: string
63 routing-instance-name:
64 type: string
65 routing-instances:
66 type: map
67 entry_schema:
68 type: string
69 requirements:
70 - host:
71 capability: tosca.capabilities.Container
72 relationship: tosca.relationships.HostedOn
73 capabilities:
74 binding:
75 type: tosca.capabilities.network.Bindable
76 occurrences: [1,UNBOUNDED]
77