blob: 095defe130dd54ecf0ec80edf5d0d084b2dc9617 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
.. This work is a derivative of https://wiki.onap.org/display/DW/Modeling+Concepts
.. This work is licensed under a Creative Commons Attribution 4.0
.. International License. http://creativecommons.org/licenses/by/4.0
.. Copyright (C) 2020 Deutsche Telekom AG.
.. _tosca_meta:
Tosca Meta
----------
Tosca meta file captures the model entities that compose the cba package name, version, type and searchable tags.
.. list-table::
:widths: 20 15 15 50
:header-rows: 1
* - Attribute
- R/C/O
- Data Type
- Description
* - TOSCA-Meta-File-Version
- Required
- String
- The attribute that holds TOSCA-Meta-File-Version. Set to 1.0.0
* - CSAR-Version
- Required
- String
- The attribute that holds CSAR-version. Set to 1.0
* - Created-By
- Required
- String
- The user/s that created the CBA
* - Entry-Definitions
- Required
- String
- The attribute that holds the entry points file PATH to the main cba tosca definition file
or non tosca script file.
* - Template-Name
- Required
- String
- The attribute that holds the blueprint name
* - Template-Version
- Required
- String
- | The attribute that holds the blueprint version
| **X.Y.Z**
| X=Major version
| Y=Minor Version
| Z=Revision Version
| X=Ex. 1.0.0
* - Template-Type
- Required
- String
- | The attribute that holds the blueprint package types.
| Valid Options:
* "DEFAULT" – .JSON file consistent of tosca based cba package that describes the package intent.
* "KOTLIN_DSL" – .KT file consistent of tosca based cba package that describes the package intent
composed using Domain Specific Language (DSL).
* "GENERIC_SCRIPT" – Script file consistent of NONE tosca based cba package that describes the package intent
using DSL Language.
| If not specified in the tosca.meta file the default is "DEFAULT"
* - Template-Tags
- Required
- String
- The attribute that holds the blueprint package comma delimited list of Searchable attributes.
**Template Type Reference**
**Default Template Type**
https://git.onap.org/ccsdk/cds/tree/components/model-catalog/blueprint-model/test-blueprint/capability_cli/TOSCA-Metadata/TOSCA.meta
**KOTLIN_DSL Template Type**
https://git.onap.org/ccsdk/cds/tree/components/model-catalog/blueprint-model/test-blueprint/resource-audit/TOSCA-Metadata/TOSCA.meta
**GENERIC_SCRIPT Template Type**
https://git.onap.org/ccsdk/cds/tree/components/model-catalog/blueprint-model/test-blueprint/capability_python/TOSCA-Metadata/TOSCA.meta
|