blob: 7179c310316ffb5b023d5b57217b9078779d0531 (
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
tosca_definitions_version: tosca_simple_yaml_1_0_0
policy_types:
onap.policies.Base:
derived_from: tosca.policies.Root
version: 1.0.0
properties:
baseNoMatch:
type: string
baseMatch:
type: string
metadata:
matchable: true
onap.policies.base.Middle:
derived_from: onap.policies.Base
version: 1.0.0
properties:
middleNoMatch:
type: string
middleMatch:
type: string
metadata:
matchable: true
onap.policies.base.middle.Test:
derived_from: onap.policies.base.Middle
type_version: 1.0.0
version: 1.0.0
properties:
nonmatachableString:
type: string
matchableString:
type: string
metadata:
matchable: true
nonmatachableInteger:
type: integer
metadata:
matchable: false
matachableInteger:
type: integer
metadata:
matchable: true
nonmatachableFloat:
type: float
matchableFloat:
type: float
metadata:
matchable: true
nonmatachableBoolean:
type: boolean
matachableBoolean:
type: boolean
metadata:
matchable: true
nonmatchableListInteger:
type: list
entry_schema:
type: integer
matchableListString:
type: list
metadata:
matchable: true
entry_schema:
type: string
propertyOneMap:
type: map
entry_schema:
type: onap.datatype.one
data_types:
onap.datatype.one:
derived_from: tosca.datatypes.Root
properties:
oneString:
type: string
oneStringMatchable:
type: string
metadata:
matchable: true
propertyTwoList:
type: list
entry_schema:
type: onap.datatype.two
onap.datatype.two:
derived_from: tosca.datatypes.Root
properties:
twoString:
type: string
twoStringMatchable:
type: string
metadata:
matchable: true
propertyThreeMap:
type: map
entry_schema:
type: onap.datatype.three
onap.datatype.three:
derived_from: tosca.datatypes.Root
properties:
threeString:
type: string
threeStringMatchable:
type: string
metadata:
matchable: true
|