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
|
{
"definitions": {},
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://www.onap.org/policy/models/schemas/onap.policies.controlloop.Operational.schema.json",
"type": "object",
"title": "Root Schema for legacy onap.policies.controlloop.Operational policy type domain policies",
"required": [
"type",
"type_version",
"name",
"version",
"properties"
],
"properties": {
"type": {
"$id": "#/properties/type",
"type": "string",
"title": "Policy Type",
"default": "onap.policies.controlloop.Operational",
"examples": [
"onap.policies.controlloop.Operational"
],
"pattern": "^(.+)$"
},
"type_version": {
"$id": "#/properties/type_version",
"type": "string",
"title": "Policy Type Version",
"examples": [
"1.0.0"
],
"pattern": "^(.+)$"
},
"version": {
"$id": "#/properties/version",
"type": "string",
"title": "Version",
"examples": [
"1.0.0"
],
"pattern": "^(.+)$"
},
"name": {
"$id": "#/properties/name",
"type": "string",
"title": "Name",
"examples": [
"example"
],
"pattern": "^(.+)$"
},
"metadata": {
"$id": "#/properties/metadata",
"type": "object",
"title": "Metadata",
"required": [],
"properties": {
"policy-id": {
"$id": "#/properties/metadata/properties/policy-id",
"type": "string",
"title": "Policy Name",
"examples": [
"example"
],
"pattern": "^(.+)$"
}
}
},
"properties": {
"$id": "#/properties/properties",
"type": "object",
"title": "Properties",
"required": [
"content"
],
"properties": {
"content": {
"$id": "#/properties/properties/properties/content",
"type": "string",
"title": "Legacy policy in yaml format",
"examples": [
"controlLoop%3A%0A%20%20version%3A%202.0.0%0A%20%20controlLoopName%3A%20ControlLoop-vCPEv2-48f0c2c3-a172-4192-9ae3-052274181b6e%0A%20%20trigger_policy%3A%20unique-policy-id-1-restart%0A%20%20timeout%3A%203600%0A%20%20abatement%3A%20true%0A%20%0Apolicies%3A%0A%20%20-%20id%3A%20unique-policy-id-1-restart%0A%20%20%20%20name%3A%20Restart%20the%20VM%0A%20%20%20%20description%3A%0A%20%20%20%20actor%3A%20APPC%0A%20%20%20%20recipe%3A%20Restart%0A%20%20%20%20target%3A%0A%20%20%20%20%20%20type%3A%20VM%0A%20%20%20%20retry%3A%203%0A%20%20%20%20timeout%3A%201200%0A%20%20%20%20success%3A%20final_success%0A%20%20%20%20failure%3A%20final_failure%0A%20%20%20%20failure_timeout%3A%20final_failure_timeout%0A%20%20%20%20failure_retries%3A%20final_failure_retries%0A%20%20%20%20failure_exception%3A%20final_failure_exception%0A%20%20%20%20failure_guard%3A%20final_failure_guard"
],
"pattern": "^(.+)$"
},
"controllerName": {
"$id": "#/properties/properties/properties/controllerName",
"type": "string",
"title": "Controller Name",
"examples": [
"usecases"
],
"pattern": "^(.+)$"
}
}
}
}
}
|