blob: f44a306145d8cd06e42afa4d0d00e42c86dcb8ee (
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
|
tosca_definitions_version: tosca_simple_yaml_1_0_0
policy_types:
onap.policies.Test:
derived_from: tosca.policies.Root
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
matchableListString:
type: list
metadata:
matchable: true
entry_schema:
type: string
propertyOneMap:
type: map
entry_schema:
type: onap.datatype.level1
data_types:
onap.datatype.one:
derived_from: tosca.datatypes.Root
properties:
oneString:
type: string
oneStringMatchable:
type: string
metadata:
matachable: 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:
matachable: 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:
matachable: true
|