summaryrefslogtreecommitdiffstats
path: root/INFO
blob: a78f5708f4b9aed8e56199a0456ac149bf13447e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Project: SDN Distributed Routing and VPN
Project Creation Date: September 1st, 2015
Project Category: Collaborative Development
Lifecycle State: Incubation
Primary Contact: Periyasamy Palanisamy (periyasamy.palanisamy@ericsson.com)
Project Lead: Periyasamy Palanisamy (periyasamy.palanisamy@ericsson.com)
Jira Project Name: SDN VPN
Jira Project Prefix: sdnvpn
Mailing list tag: [sdnvpn]
Repository: sdnvpn

Committers:
Tim Irnich (tim.irnich@ericsson.com)
Thomas Morin (thomas.morin@orange.com)
Prem Sankar (prem.sankar.g@ericsson.com)
Jose Lausuch (jose.lausuch@ericsson.com)
Nikolas Hermanns (nikolas.hermanns@ericsson.com)
Thomas Sounapoglou (soth@intracom-telecom.com)
Periyasamy Palanisamy (periyasamy.palanisamy@ericsson.com)

Link to TSC approval of the project: http://meetbot.opnfv.org/meetings/opnfv-meeting/2015/opnfv-meeting.2015-09-01-13.59.html
Link(s) to approval of additional committers: (Helpdesk #26575)
> 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 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0

ANNEX C: Supported APIS
=======================

Add Provider
------------

Register a new resource provider (e.g. OpenStack) into reservation system.

Request parameters

============================ =========== ==============================================
Name                         Type        Description
============================ =========== ==============================================
provider-type                Enumeration Name of the resource provider
endpoint                     URI         Targer URL end point for the resource provider
username                     String      User name
password                     String      Password
region                       String      Specified region for the provider
tenant.id                    String      Id of the tenant
tenant.name                  String      Name of the tenant
============================ =========== ==============================================

Response parameters

============================ =========== ==============================================
Name                         Type        Description
============================ =========== ==============================================
provider-id                  String      Id of the new resource provider
result                       Enumeration Result info
============================ =========== ==============================================

.. http:post:: /add-provider
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /add-provider HTTP/1.1
      Accept: application/json

      {
        "provider-type": "openstack",
        "endpoint": "http://10.0.2.15:5000/v2.0/tokens",
        "username": "promise_user",
        "password": "******",
        "tenant": {
           "name": "promise"
        }
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
        "provider-id": "f25ed9cb-de57-43d5-9b4a-a389a1397302",
        "result": "ok"
      }

Create Reservation
------------------

Make a request to the reservation system to reserve resources.

Request parameters

============================ =============== ==============================================
Name                         Type            Description
============================ =============== ==============================================
zone                         String          Id to an availability zone
start                        DateTime        Timestamp when the consumption of reserved
                                             resources can begin
end                          DateTime        Timestamp when the consumption of reserved
                                             resources should end
capacity.cores               int16           Amount of cores to be reserved
capacity.ram                 int32           Amount of RAM to be reserved
capacity.instances           int16           Amount of instances to be reserved
capacity.addresses           int32           Amount of public IP addresses to be reserved
elements                     ResourceElement List of pre-existing resource elements
                                             to be reserved
============================ =============== ==============================================

Response parameters

============================ =========== ==============================================
Name                         Type        Description
============================ =========== ==============================================
reservation-id               String      Id of the reservation
result                       Enumeration Result info
message                      String      Output message
============================ =========== ==============================================

.. http:post:: /create-reservation
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /create-reservation HTTP/1.1
      Accept: application/json

      {
         "capacity": {
            "cores": "5",
            "ram": "25600",
            "addresses": "3",
            "instances": "3"
         },
         "start": "2016-02-02T00:00:00Z",
         "end": "2016-02-03T00:00:00Z"
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
        "reservation-id": "269b2944-9efc-41e0-b067-6898221e8619",
        "result": "ok",
        "message": "reservation request accepted"
      }

Update Reservation
------------------

Update reservation details for an existing reservation.

Request parameters

============================ =============== ==============================================
Name                         Type            Description
============================ =============== ==============================================
reservation-id               String          Id of the reservation to be updated
zone                         String          Id to an availability zone
start                        DateTime        Updated timestamp when the consumption of
                                             reserved resources can begin
end                          DateTime        Updated timestamp when the consumption of
                                             reserved resources should end
capacity.cores               int16           Updated amount of cores to be reserved
capacity.ram                 int32           Updated amount of RAM to be reserved
capacity.instances           int16           Updated amount of instances to be reserved
capacity.addresses           int32           Updated amount of public IP addresses
                                             to be reserved
elements                     ResourceElement Updated list of pre-existing resource elements
                                             to be reserved
============================ =============== ==============================================

Response parameters

============================ =========== ==============================================
Name                         Type        Description
============================ =========== ==============================================
result                       Enumeration Result info
message                      String      Output message
============================ =========== ==============================================

.. http:post:: /update-reservation
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /update-reservation HTTP/1.1
      Accept: application/json

      {
         "reservation-id": "269b2944-9efv-41e0-b067-6898221e8619",
         "capacity": {
            "cores": "1",
            "ram": "5120",
            "addresses": "1",
            "instances": "1"
         }
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
        "result": "ok",
        "message": "reservation update successful"
      }

Cancel Reservation
------------------

Cancel the reservation.

Request parameters

============================ =============== ==============================================
Name                         Type            Description
============================ =============== ==============================================
reservation-id               String          Id of the reservation to be canceled
============================ =============== ==============================================

Response parameters

============================ =========== ==============================================
Name                         Type        Description
============================ =========== ==============================================
result                       Enumeration Result info
message                      String      Output message
============================ =========== ==============================================

.. http:post:: /cancel-reservation
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /cancel-reservation HTTP/1.1
      Accept: application/json

      {
        "reservation-id": "269b2944-9efv-41e0-b067-6898221e8619"
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
        "result": "ok",
        "message": "reservation canceled"
      }

Query Reservation
-----------------

Query the reservation system to return matching reservation(s).

Request parameters

============================ ================== ==============================================
Name                         Type               Description
============================ ================== ==============================================
zone                         String             Id to an availability zone
show-utilization             Boolean            Show capacity utilization
without                      ResourceCollection Excludes specified collection identifiers
                                                from the result
elements.some                ResourceElement    Query for ResourceCollection(s) that contain
                                                some or more of these element(s)
elements.every               ResourceElement    Query for ResourceCollection(s) that contain
                                                all of these element(s)
window.start                 DateTime           Matches entries that are within the specified
                                                start/end window
window.end                   DateTime
wndow.scope                  Enumeration        Matches entries that start {and/or} end
                                                within the time window
============================ ================== ==============================================

Response parameters

============================ =================== ================================
Name                         Type                Description
============================ =================== ================================
reservations                 ResourceReservation List of matching reservations
utilization                  CapacityUtilization Capacity utilization over time
============================ =================== ================================

.. http:post:: /query-reservation
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /query-reservation HTTP/1.1
      Accept: application/json

      {
         "show-utilization": false,
         "window": {
            "start": "2016-02-01T00:00:00Z",
            "end": "2016-02-04T00:00:00Z"
         }
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
        "reservations": [
          "269b2944-9efv-41e0-b067-6898221e8619"
        ],
        "utilization": []
      }

Create Instance
---------------

Create an instance of specified resource(s) utilizing capacity from the pool.

Request parameters

============================ =============== ==============================================
Name                         Type            Description
============================ =============== ==============================================
provider-id                  String          Id of the resource provider
reservation-id               String          Id of the resource reservation
name                         String          Name of the instance
image                        String          Id of the image
flavor                       String          Id of the flavor
networks                     Uuid            List of network uuids
============================ =============== ==============================================

Response parameters

============================ =========== ==============================================
Name                         Type        Description
============================ =========== ==============================================
instance-id                  String      Id of the instance
result                       Enumeration Result info
message                      String      Output message
============================ =========== ==============================================

.. http:post:: /create-instance
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /create-instance HTTP/1.1
      Accept: application/json

      {
        "provider-id": "f25ed9cb-de57-43d5-9b4a-a389a1397302",
        "name": "vm1",
        "image": "ddffc6f5-5c86-4126-b0fb-2c71678633f8",
        "flavor": "91bfdf57-863b-4b73-9d93-fc311894b902"
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
        "instance-id": "82572779-896b-493f-92f6-a63008868250",
        "result": "ok",
        "message": "created-instance request accepted"
      }

Destroy Instance
----------------

Destroy an instance of resource utilization and release it back to the pool.

Request parameters

============================ =============== ==============================================
Name                         Type            Description
============================ =============== ==============================================
instance-id                  String          Id of the instance to be destroyed
============================ =============== ==============================================

Response parameters

============================ =========== ==============================================
Name                         Type        Description
============================ =========== ==============================================
result                       Enumeration Result info
message                      String      Output message
============================ =========== ==============================================

.. http:post:: /destroy-instance
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /destroy-instance HTTP/1.1
      Accept: application/json

      {
         "instance-id": "82572779-896b-493f-92f6-a63008868250"
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
        "result": "ok",
        "message": "instance destroyed and resource released back to pool"
      }

Decrease Capacity
-----------------

Decrease total capacity for the reservation system for a given time window.

Request parameters

============================ =============== ==============================================
Name                         Type            Description
============================ =============== ==============================================
source                       String          Id of the resource container
start                        DateTime        Start/end defines the time window when total
                                             capacity is decreased
end                          DateTime
capacity.cores               int16           Decreased amount of cores
capacity.ram                 int32           Decreased amount of RAM
capacity.instances           int16           Decreased amount of instances
capacity.addresses           int32           Decreased amount of public IP addresses
============================ =============== ==============================================

Response parameters

============================ =========== ==============================================
Name                         Type        Description
============================ =========== ==============================================
pool-id                      String      Id of the resource pool
result                       Enumeration Result info
message                      String      Output message
============================ =========== ==============================================

.. http:post:: /decrease-capacity
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /decrease-capacity HTTP/1.1
      Accept: application/json

      {
         "source": "ResourcePool:4085f0da-8030-4252-a0ff-c6f93870eb5f",
         "capacity": {
            "cores": "3",
            "ram": "5120",
            "addresses": "1"
         }
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
         "pool-id": "c63b2a41-bcc6-42f6-8254-89d633e1bd0b",
         "result": "ok",
         "message": "capacity decrease successful"
      }

Increase Capacity
-----------------

Increase total capacity for the reservation system for a given time window.

Request parameters

============================ =============== ==============================================
Name                         Type            Description
============================ =============== ==============================================
source                       String          Id of the resource container
start                        DateTime        Start/end defines the time window when total
                                             capacity is increased
end                          DateTime
capacity.cores               int16           Increased amount of cores
capacity.ram                 int32           Increased amount of RAM
capacity.instances           int16           Increased amount of instances
capacity.addresses           int32           Increased amount of public IP addresses
============================ =============== ==============================================

Response parameters

============================ =========== ==============================================
Name                         Type        Description
============================ =========== ==============================================
pool-id                      String      Id of the resource pool
result                       Enumeration Result info
message                      String      Output message
============================ =========== ==============================================

.. http:post:: /increase-capacity
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /increase-capacity HTTP/1.1
      Accept: application/json

      {
         "source": "ResourceProvider:f6f13fe3-0126-4c6d-a84f-15f1ab685c4f",
         "capacity": {
             "cores": "20",
             "ram": "51200",
             "instances": "10",
             "addresses": "10"
         }
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 200 OK
      Content-Type: application/json

      {
         "pool-id": "279217a4-7461-4176-bf9d-66770574ca6a",
         "result": "ok",
         "message": "capacity increase successful"
      }

Query Capacity
--------------

Query for capacity information about a specified resource collection.

Request parameters

============================ ================== ==============================================
Name                         Type               Description
============================ ================== ==============================================
capacity                     Enumeration        Return total or reserved or available or
                                                usage capacity information
zone                         String             Id to an availability zone
show-utilization             Boolean            Show capacity utilization
without                      ResourceCollection Excludes specified collection identifiers
                                                from the result
elements.some                ResourceElement    Query for ResourceCollection(s) that contain
                                                some or more of these element(s)
elements.every               ResourceElement    Query for ResourceCollection(s) that contain
                                                all of these element(s)
window.start                 DateTime           Matches entries that are within the specified
                                                start/end window
window.end                   DateTime
window.scope                 Enumeration        Matches entries that start {and/or} end
                                                within the time window
============================ ================== ==============================================

Response parameters

============================ =================== ================================
Name                         Type                Description
============================ =================== ================================
collections                  ResourceCollection  List of matching collections
utilization                  CapacityUtilization Capacity utilization over time
============================ =================== ================================

.. http:post:: /query-capacity
   :noindex:

   **Example request**:

   .. sourcecode:: http

      POST /query-capacity HTTP/1.1
      Accept: application/json

      {
        "show-utilization": false
      }

   **Example response**:

   .. sourcecode:: http

      HTTP/1.1 201 CREATED
      Content-Type: application/json

      {
        "collections": [
          "ResourcePool:279217a4-7461-4176-bf9d-66770574ca6a"
        ],
        "utilization": []
      }