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
|
{
"tosca_definitions_version": "tosca_simple_yaml_1_1_0",
"topology_template": {
"policies": [
{
"operational.modifycll": {
"type": "onap.policies.controlloop.operational.common.Drools",
"type_version": "1.0.0",
"version": "1.0.0",
"name": "operational.modifycll",
"metadata": {
"policy_id": "operational.modifycll"
},
"properties": {
"id": "ControlLoop-CCVPN-CLL-227e8b00-dbeb-4d03-8719-d0a658fb846c",
"timeout": 1200,
"abatement": false,
"trigger": "unique-policy-id-1-modify-cll",
"operations": [
{
"id": "unique-policy-id-1-modify-cll",
"description": "Modify resource allocation for a slice subnet instance",
"operation": {
"actor": "SO",
"operation": "ModifyCloudLeasedLine",
"target": {
"targetType": "VNF"
}
},
"timeout": 1200,
"retries": 0,
"success": "final_success",
"failure": "final_failure",
"failure_timeout": "final_failure_timeout",
"failure_retries": "final_failure_retires",
"failure_exception": "final_failure_exception",
"failure_guard": "final_failure_guard"
}
],
"controllerName": "usecases"
}
}
}
]
}
}
|