summaryrefslogtreecommitdiffstats
path: root/docs/release-notes.rst
blob: 8c8b5e1335945214b1ecc57154008b8a213f578c (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
.. This work is licensed under a Creative Commons Attribution 4.0
   International License. http://creativecommons.org/licenses/by/4.0
   Copyright 2017 AT&T Intellectual Property.  All rights reserved.

.. _doc-release-notes:

Release Notes
=============


Version: x.y.z
--------------


:Release Date: 2017-11-20



**New Features**

Project release controlled documentation is now managed in gerrit and published
on readthedocs.

**Bug Fixes**
	  

**Other**

The developer wiki still contains some pages that are referenced from the
readthedocs documentation. The pages and links that remain to be migrated
are listed in Jira Issue DOC-179 and labeled on the wiki with "move-to-rtd".

===========

End of Release Notes
n335' href='#n335'>335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
{
    "swagger": "2.0",
    "info": {
        "description": "Api Documentation",
        "version": "1.0",
        "title": "Api Documentation",
        "termsOfService": "urn:tos",
        "contact": {},
        "license": {
            "name": "Apache 2.0",
            "url": "http://www.apache.org/licenses/LICENSE-2.0"
        }
    },
    "paths": {
        "/onap/participantsim/v2/elements": {
            "put": {
                "tags": [
                    "Clamp Control Loop Participant Simulator API"
                ],
                "summary": "Updates simulated control loop elements",
                "description": "Updates simulated control loop elements, returning the updated control loop definition IDs",
                "operationId": "updateUsingPUT",
                "consumes": [
                    "application/json"
                ],
                "produces": [
                    "application/json",
                    "application/yaml"
                ],
                "parameters": [
                    {
                        "in": "body",
                        "name": "body",
                        "description": "Body of a control loop element",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/ControlLoopElementReq",
                            "originalRef": "ControlLoopElementReq"
                        }
                    },
                    {
                        "name": "X-ONAP-RequestID",
                        "in": "header",
                        "description": "RequestID for http transaction",
                        "required": false,
                        "type": "string",
                        "format": "uuid"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "schema": {
                            "$ref": "#/definitions/TypedSimpleResponse«ControlLoopElement»",
                            "originalRef": "TypedSimpleResponse«ControlLoopElement»"
                        }
                    },
                    "201": {
                        "description": "Created"
                    },
                    "401": {
                        "description": "Authentication Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    },
                    "403": {
                        "description": "Authorization Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found"
                    },
                    "500": {
                        "description": "Internal Server Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    }
                },
                "security": [
                    {
                        "basicAuth": []
                    }
                ],
                "x-interface info": {
                    "api-version": "1.0.0",
                    "last-mod-release": "Dublin"
                }
            }
        },
        "/onap/participantsim/v2/elements/{name}/{version}": {
            "get": {
                "tags": [
                    "Clamp Control Loop Participant Simulator API"
                ],
                "summary": "Query details of the requested simulated control loop elements",
                "description": "Queries details of the requested simulated control loop elements, returning all control loop element details",
                "operationId": "elementsUsingGET",
                "produces": [
                    "application/json",
                    "application/yaml"
                ],
                "parameters": [
                    {
                        "name": "name",
                        "in": "path",
                        "description": "Control loop element name",
                        "required": true,
                        "type": "string"
                    },
                    {
                        "name": "version",
                        "in": "path",
                        "description": "Control loop element version",
                        "required": true,
                        "type": "string"
                    },
                    {
                        "name": "X-ONAP-RequestID",
                        "in": "header",
                        "description": "RequestID for http transaction",
                        "required": false,
                        "type": "string",
                        "format": "uuid"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "schema": {
                            "type": "object",
                            "additionalProperties": {
                                "$ref": "#/definitions/ControlLoopElementRes",
                                "originalRef": "ControlLoopElementRes"
                            }
                        }
                    },
                    "401": {
                        "description": "Authentication Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    },
                    "403": {
                        "description": "Authorization Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found"
                    },
                    "500": {
                        "description": "Internal Server Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    }
                },
                "security": [
                    {
                        "basicAuth": []
                    }
                ],
                "x-interface info": {
                    "api-version": "1.0.0",
                    "last-mod-release": "Dublin"
                }
            }
        },
        "/onap/participantsim/v2/participants": {
            "put": {
                "tags": [
                    "Clamp Control Loop Participant Simulator API"
                ],
                "summary": "Updates simulated participants",
                "description": "Updates simulated participants, returning the updated control loop definition IDs",
                "operationId": "updateUsingPUT_1",
                "consumes": [
                    "application/json"
                ],
                "produces": [
                    "application/json",
                    "application/yaml"
                ],
                "parameters": [
                    {
                        "in": "body",
                        "name": "body",
                        "description": "Body of a participant",
                        "required": true,
                        "schema": {
                            "$ref": "#/definitions/ParticipantReq",
                            "originalRef": "ParticipantReq"
                        }
                    },
                    {
                        "name": "X-ONAP-RequestID",
                        "in": "header",
                        "description": "RequestID for http transaction",
                        "required": false,
                        "type": "string",
                        "format": "uuid"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "schema": {
                            "$ref": "#/definitions/TypedSimpleResponse«Participant»",
                            "originalRef": "TypedSimpleResponse«Participant»"
                        }
                    },
                    "201": {
                        "description": "Created"
                    },
                    "401": {
                        "description": "Authentication Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    },
                    "403": {
                        "description": "Authorization Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found"
                    },
                    "500": {
                        "description": "Internal Server Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    }
                },
                "security": [
                    {
                        "basicAuth": []
                    }
                ],
                "x-interface info": {
                    "api-version": "1.0.0",
                    "last-mod-release": "Dublin"
                }
            }
        },
        "/onap/participantsim/v2/participants/{name}/{version}": {
            "get": {
                "tags": [
                    "Clamp Control Loop Participant Simulator API"
                ],
                "summary": "Query details of the requested simulated participants",
                "description": "Queries details of the requested simulated participants, returning all participant details",
                "operationId": "participantsUsingGET",
                "produces": [
                    "application/json",
                    "application/yaml"
                ],
                "parameters": [
                    {
                        "name": "name",
                        "in": "path",
                        "description": "Participant name",
                        "required": true,
                        "type": "string"
                    },
                    {
                        "name": "version",
                        "in": "path",
                        "description": "Participant version",
                        "required": true,
                        "type": "string"
                    },
                    {
                        "name": "X-ONAP-RequestID",
                        "in": "header",
                        "description": "RequestID for http transaction",
                        "required": false,
                        "type": "string",
                        "format": "uuid"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "schema": {
                            "type": "array",
                            "items": {
                                "$ref": "#/definitions/ParticipantRes",
                                "originalRef": "ParticipantRes"
                            }
                        }
                    },
                    "401": {
                        "description": "Authentication Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    },
                    "403": {
                        "description": "Authorization Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    },
                    "404": {
                        "description": "Not Found"
                    },
                    "500": {
                        "description": "Internal Server Error",
                        "headers": {
                            "X-LatestVersion": {
                                "type": "string"
                            },
                            "X-PatchVersion": {
                                "type": "string"
                            },
                            "X-MinorVersion": {
                                "type": "string"
                            },
                            "X-ONAP-RequestID": {
                                "type": "string",
                                "format": "uuid"
                            }
                        }
                    }
                },
                "security": [
                    {
                        "basicAuth": []
                    }
                ],
                "x-interface info": {
                    "api-version": "1.0.0",
                    "last-mod-release": "Dublin"
                }
            }
        }
    }
}