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
|
{
"tosca_definitions_version": "tosca_simple_yaml_1_0_0",
"policy_types": {
"onap.policies.Optimization": {
"derived_from": "tosca.policies.Root",
"version": "1.0.0",
"description": "The base policy type for all policies that govern optimization",
"properties": {
"scope": {
"description": "Scope for the policy - could be for a specific release.",
"type": "list",
"metadata": {
"matchable": true
},
"required": true
},
"services": {
"description": "One or more services that the policy applies to.",
"type": "list",
"metadata": {
"matchable": true
},
"required": true,
"entry_schema": {
"type": "string"
}
},
"resources": {
"description": "One or more VNF resources that the policy applies to.",
"type": "list",
"metadata": {
"matchable": true
},
"required": true,
"entry_schema": {
"type": "string"
}
},
"geography": {
"description": "One or more geographic regions",
"type": "list",
"metadata": {
"matchable": true
},
"required": true,
"entry_schema": {
"type": "string",
"constraints": [
{
"valid_values": [
"US",
"International"
]
}
]
}
},
"identity": {
"description": "Used internally for identification",
"type": "string",
"required": true
}
}
}
}
}
|