aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/resources/tosca/tosca-with-datatypes.yaml
blob: 61d5dbcc884b0c3db5972a878755d0566fb8d79d (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
tosca_definitions_version: tosca_simple_yaml_1_0_0
policy_types:
    onap.policies.Monitoring:
        derived_from: tosca.policies.Root
        description: a base policy type for all policies that governs monitoring provisioning
    onap.policies.monitoring.example.app:
        derived_from: onap.policies.Monitoring
        version: 1.0.0
        properties:
            example_policy:
                type: map
                description: Properties with different types
                entry_schema:
                    type: onap.datatypes.monitoring.example_policy
data_types:
    onap.datatypes.monitoring.example2:
        derived_from: tosca.datatypes.Root
        properties:
            closedLoopControlName:
                type: string
    onap.datatypes.monitoring.example3:
        derived_from: tosca.datatypes.Root
        properties:
            name:
                type: onap.datatypes.monitoring.example4  
    onap.datatypes.monitoring.example4:
        derived_from: tosca.datatypes.Root
        properties:
            severity:
                type: string
                required: true  
    onap.datatypes.monitoring.example_policy:
        derived_from: tosca.datatypes.Root
        properties:
            cpus:
                type: list
                entry_schema:
                    type: onap.datatypes.monitoring.example2
            ports:
                type: map
                entry_schema:
                    type: string
            closedLoopEventStatus:
                type: map
                entry_schema:
                    type: integer
            direction:
                type: map
                entry_schema:
                    type: float
            memSize:
                type: onap.datatypes.monitoring.example3
                required: true
            thresholdValue:
                type: list
                entry_schema:
                    type: string
            version:
                type: list
                entry_schema:
                    type: onap.datatypes.monitoring.example2
            domain:
                type: onap.datatypes.monitoring.example2