Add ETSI SOL001 v2.5.1 model types to backend init
[sdc.git] / catalog-be / src / main / resources / import / tosca / models / init / etsi-SOL001-v2.5.1 / tosca / node-types / vduCompute / vduCompute.yml
1 tosca_definitions_version: tosca_simple_yaml_1_2
2 description: ETSI NFV SOL 001 Vdu Compute node type definitions version 2.5.1
3
4 node_types:
5   tosca.nodes.nfv.Vdu.Compute:
6     derived_from: tosca.nodes.Root
7     description: Describes the virtual compute part of a VDU which is a construct   supporting the description of the deployment and operational behavior of a VNFC
8     properties:
9       name:
10         type: string
11         description: Human readable name of the VDU
12         required: true
13       description:
14         type: string
15         description: Human readable description of the VDU
16         required: true
17       boot_order:
18         type: list # explicit index (boot index) not necessary, contrary to IFA011
19         description: References a node template name from which a valid boot device is created
20         required: false
21         entry_schema:
22           type: string
23       nfvi_constraints:
24         type: list
25         description: Describes constraints on the NFVI for the VNFC instance(s) created from this VDU
26         required: false
27         entry_schema:
28           type: string
29       monitoring_parameters:
30         type: list
31         description: Describes monitoring parameters applicable to a VNFC instantiated from this VDU
32         required: false
33         entry_schema:
34           type: tosca.datatypes.nfv.VnfcMonitoringParameter
35           #configurable_properties:
36           #type: tosca.datatypes.nfv.VnfcConfigurableProperties
37           #required: false
38           # derived types are expected to introduce
39           # configurable_properties with its type derived from
40           # tosca.datatypes.nfv.VnfcConfigurableProperties
41       vdu_profile:
42         type: tosca.datatypes.nfv.VduProfile
43         description: Defines additional instantiation data for the VDU.Compute node
44         required: true
45       sw_image_data:
46         type: tosca.datatypes.nfv.SwImageData
47         description: Defines information related to a SwImage artifact used by this Vdu.Compute node
48         required: false # property is required when the node template has an associated artifact of type tosca.artifacts.nfv.SwImage and not required otherwise
49       boot_data:
50         type: string
51         description: Contains a string or a URL to a file contained in the VNF package used to customize a virtualised compute resource at boot time. The bootData may contain variable parts that are replaced by deployment specific values before being sent to the VIM.
52         required: false
53     capabilities:
54       virtual_compute:
55         type: tosca.capabilities.nfv.VirtualCompute
56         occurrences: [ 1, 1 ]
57       virtual_binding:
58         type: tosca.capabilities.nfv.VirtualBindable
59         occurrences: [ 1, UNBOUNDED ]
60     requirements:
61       - virtual_storage:
62           capability: tosca.capabilities.nfv.VirtualStorage
63           relationship: tosca.relationships.nfv.AttachesTo
64           occurrences: [ 0, UNBOUNDED ]