blob: b420279cbc80328fbb8590decf53d1dde9bd2a08 [file] [log] [blame]
Pamela Dragosh5fc2fdb2019-05-17 09:42:27 -04001.. This work is licensed under a Creative Commons Attribution 4.0 International License.
Jim Hahnd5cc9482019-05-29 15:41:48 -04002.. http://creativecommons.org/licenses/by/4.0
Pamela Dragosh5fc2fdb2019-05-17 09:42:27 -04003
4.. _pap-label:
5
6Policy Administration Point (PAP) Architecture
liamfallon4d1d9832019-05-30 20:53:05 +00007##############################################
Jim Hahnd5cc9482019-05-29 15:41:48 -04008
liamfallon4d1d9832019-05-30 20:53:05 +00009.. contents::
10 :depth: 3
Jim Hahnd5cc9482019-05-29 15:41:48 -040011
liamfallon4d1d9832019-05-30 20:53:05 +000012The PAP keeps track of PDPs, supporting the deployment of PDP groups and the deployment of a *policy set* across those
13PDP groups. Policies are created using the Policy API, but are deployed via the PAP.
Jim Hahnd5cc9482019-05-29 15:41:48 -040014
liamfallon4d1d9832019-05-30 20:53:05 +000015A PAP is stateless in a RESTful sense, using the database (persistent storage) to track PDPs and the deployment of
16policies to those PDPs. In short, policy management on PDPs is the responsibility of PAPs; management of policy sets or
17policies by any other manner is not permitted.
18
19Because the PDP is the main unit of scalability in the Policy Framework, the framework is designed to allow PDPs in a
20PDP group to arbitrarily appear and disappear and for policy consistency across all PDPs in a PDP group to be easily
21maintained. The PAP is responsible for controlling the state across the PDPs in a PDP group. The PAP interacts with the
22Policy database and transfers policy sets to PDPs.
23
24There are a number of rules for PDP group and PDP state management:
25
261. Only one version of a PDP group may be ACTIVE at any time
27
282. If a PDP group with a certain version is ACTIVE and a later version of the same PDP group is activated, then the
29 system upgrades the PDP group
30
313. If a PDP group with a certain version is ACTIVE and an earlier version of the same PDP group is activated, then the
32 system downgrades the PDP group
33
344. There is no restriction on the number of PASSIVE versions of a PDP group that can exist in the system
Pamela Dragosh5fc2fdb2019-05-17 09:42:27 -040035
36
liamfallon4d1d9832019-05-30 20:53:05 +0000371 APIs
38======
39The APIs in the subchapters below are supported by the PAP.
40
411.1 REST API
42------------
43
44The purpose of this API is to support CRUD of PDP groups and subgroups and to support the deployment and life cycles of
45policies on PDP sub groups and PDPs. This API is provided by the *PolicyAdministration* component (PAP) of the Policy
46Framework, see the :ref:`ONAP Policy Framework Architecture <architecture-label>` page.
47
48PDP groups and subgroups may be prefedined in the system. Predefined groups and subgroups may be modified or deleted
49over this API. The policies running on predefined groups or subgroups as well as the instance counts and properties may
50also be modified.
51
52A PDP may be preconfigured with its PDP group, PDP subgroup, and policies. The PDP sends this information to the PAP
53when it starts. If the PDP group, subgroup, or any policy is unknown to the PAP, the PAP locks the PDP in state PASSIVE.
Pamela Dragosh5fc2fdb2019-05-17 09:42:27 -040054
Jim Hahnd5cc9482019-05-29 15:41:48 -040055PAP supports the operations listed in the following table, via its REST API:
56
57.. csv-table::
58 :header: "Operation", "Description"
59 :widths: 25,70
60
61 "Health check", "Queries the health of the PAP"
62 "Statistics", "Queries various statistics"
63 "PDP state change", "Changes the state of all PDPs in a PDP Group"
64 "PDP Group create/update", "Creates/updates PDP Groups"
65 "PDP Group delete", "Deletes a PDP Group"
66 "PDP Group query", "Queries all PDP Groups"
67 "Deploy policy", "Deploys one or more policies to the PDPs"
68 "Undeploy policy", "Undeploys a policy from the PDPs"
69
liamfallon4d1d9832019-05-30 20:53:05 +0000701.2 DMaaP API
71-------------
Jim Hahnd5cc9482019-05-29 15:41:48 -040072
73PAP interacts with the PDPs via the DMaaP Message Router. The messages listed
74in the following table are transmitted via DMaaP:
75
76.. csv-table::
77 :header: "Message", "Direction", "Description"
78 :widths: 25,10,70
79
80 "PDP status", "Incoming", "Registers a PDP with PAP; also sent as a periodic heart beat; also sent in response to requests from the PAP"
81 "PDP update", "Outgoing", "Assigns a PDP to a PDP Group and Subgroup; also deploys or undeploys policies from the PDP"
82 "PDP state change", "Outgoing", "Changes the state of a PDP or all PDPs within a PDP Group or Subgroup"
83
84
liamfallon4d1d9832019-05-30 20:53:05 +0000852 PAP REST API Swagger
86======================
Jim Hahnd5cc9482019-05-29 15:41:48 -040087
liamfallon4d1d9832019-05-30 20:53:05 +000088It is worth noting that we use basic authorization for access with user name and password set to *healthcheck* and
89*zb!XztG34*, respectively.
Jim Hahnd5cc9482019-05-29 15:41:48 -040090
liamfallon4d1d9832019-05-30 20:53:05 +000091For every call, the client is encouraged to insert a uuid-type *requestID* as parameter. It is helpful for tracking each
92http transaction and facilitates debugging. More importantly, it complies with Logging requirements v1.2. If the client
93does not provide the requestID in a call, one will be randomly generated and attached to the response header,
94*x-onap-requestid*.
Jim Hahnd5cc9482019-05-29 15:41:48 -040095
liamfallon4d1d9832019-05-30 20:53:05 +000096In accordance with `ONAP API Common Versioning Strategy Guidelines
97<https://wiki.onap.org/display/DW/ONAP+API+Common+Versioning+Strategy+%28CVS%29+Guidelines>`_, several custom headers
98are added in the response to each call:
Jim Hahnd5cc9482019-05-29 15:41:48 -040099
100.. csv-table::
101 :header: "Header", "Example value", "Description"
102 :widths: 25,10,70
103
104 "x-latestversion", "1.0.0", "latest version of the API"
105 "x-minorversion", "0", "MINOR version of the API"
106 "x-patchversion", "0", "PATCH version of the API"
107 "x-onap-requestid", "e1763e61-9eef-4911-b952-1be1edd9812b", "described above; used for logging purposes"
108
109
110.. swaggerv2doc:: swagger/health-check-pap.json
111
liamfallon4d1d9832019-05-30 20:53:05 +0000112This operation performs a health check on the PAP.
113
Jim Hahnd5cc9482019-05-29 15:41:48 -0400114.. swaggerv2doc:: swagger/statistics-pap.json
115
liamfallon4d1d9832019-05-30 20:53:05 +0000116This operation allows statistics for PDP groups, PDP subgroups, and individual PDPs to be retrieved.
117
118.. note::
119 While this API is supported, most of the statistics are not currently updated; that work has been deferred to a later
120 release.
Jim Hahnd5cc9482019-05-29 15:41:48 -0400121
122.. swaggerv2doc:: swagger/state-change-pap.json
123
liamfallon4d1d9832019-05-30 20:53:05 +0000124The state of PDP groups is managed by this operation. PDP groups can be in states PASSIVE, TEST, SAFE, or ACTIVE. For a full
125description of PDP group states, see the :ref:`ONAP Policy Framework Architecture <architecture-label>` page.
126
Jim Hahnd5cc9482019-05-29 15:41:48 -0400127.. swaggerv2doc:: swagger/group-pap.json
128
liamfallon4d1d9832019-05-30 20:53:05 +0000129This operation allows the PDP groups and subgroups to be created and updated. Many PDP groups can be created or updated
130in a single POST operation by specifying more than one PDP group in the POST operation body.
131
132.. note::
133 Due to current limitations, if a subgroup is to be deleted from a PDP Group, then the policies must be removed from
134 the subgroup in one request, and then the subgroup deleted in a subsequent request.
Jim Hahnd5cc9482019-05-29 15:41:48 -0400135
136.. swaggerv2doc:: swagger/group-delete-pap.json
137
liamfallon4d1d9832019-05-30 20:53:05 +0000138The API also allows PDP groups to be deleted. DELETE operations are only permitted on PDP groups in PASSIVE state.
139
Jim Hahnd5cc9482019-05-29 15:41:48 -0400140.. swaggerv2doc:: swagger/group-query-pap.json
141
liamfallon4d1d9832019-05-30 20:53:05 +0000142This operation allows the PDP groups and subgroups to be listed as well as the policies that are deployed on each PDP
143group and subgroup.
144
Jim Hahnd5cc9482019-05-29 15:41:48 -0400145.. swaggerv2doc:: swagger/policy-deploy-pap.json
146
liamfallon4d1d9832019-05-30 20:53:05 +0000147This operation allows policies to be deployed on PDP groups.
148
149.. note::
150 The policy version is optional. If left unspecified, then the latest version of the policy is deployed. On the other
151 hand, if it is specified, it may be an integer, or it may be a fully qualified version (e.g., "3.0.2").
Jim Hahnd5cc9482019-05-29 15:41:48 -0400152
153.. swaggerv2doc:: swagger/policy-undeploy-pap.json
154
liamfallon4d1d9832019-05-30 20:53:05 +0000155This operation allows policies to be undeployed from PDP groups.
Jim Hahnd5cc9482019-05-29 15:41:48 -0400156
liamfallon4d1d9832019-05-30 20:53:05 +0000157.. note::
158 If the policy version is specified, then it may be an integer, or it may be a fully qualified version (e.g., "3.0.2").
159 On the other hand, if left unspecified, then the latest deployed version will be undeployed.
160
161.. note::
162 Due to current limitations, a fully qualified policy version must always be specified.
163
1643 Future Features
165=================
166
1673.1 Order Health Check on PDPs
168==============================
169
170This operation will allow a PDP group health check to be ordered on PDP groups and on individual PDPs. The operation
171will return a HTTP status code of *202: Accepted* if the health check request has been accepted by the PAP. The PAP will
172then order execution of the health check on the PDPs.
173
174As health checks may be long lived operations, Health checks will be scheduled for execution by this operation. Users
175will check the result of a health check test by issuing a PDP Group Query operation and checking the *healthy* field of
176PDPs.
177
Pamela Dragosh5fc2fdb2019-05-17 09:42:27 -0400178
179End of Document