REST API
Authentication
Waldur uses token-based authentication for REST.
In order to authenticate your requests first obtain token from any of
the supported token backends. Then use the token in all the subsequent
requests putting it into Authorization
header:
1 2 3 4 |
|
Also token can be put as request GET parameter, with key x-auth-token
:
1 2 3 |
|
API version
In order to retrieve current version of the Waldur authenticated user should send a GET request to /api/version/.
Valid request example (token is user specific):
1 2 3 4 5 |
|
Valid response example:
1 2 3 4 5 6 7 8 |
|
Pagination
Every Waldur REST request supports pagination. Links to the next, previous, first and last pages are included in the Link header. X-Result-Count contains a count of all entries in the response set.
By default page size is set to 10. Page size can be modified by passing ?page_size=N query parameter. The maximum page size is 100.
Example of the header output for user listing:
1 2 3 4 5 6 7 8 9 10 |
|
Common operations
If you are integrating a python-based application, you might find useful a python wrapper for typical operations.
Almost all operations require authentication. Authentication process is a two-step:
- Generation of authentication token using Authentication API.
- Passing that token in the Authorization header along with all other REST API calls.
Please note that all of the responses to the listing are paginated, by default up to 10 elements are returned.
You can request more by passing page_size=<number>
argument, number up to 200 will be respected. Information
about the whole set is contained in the response headers. Check example of a "get_all" function
to see how a full traversal can be done.
Project management
Customer lookup
Waldur implements a multi-tenant model to allow different organizations to allocate shared resources simultaneously and independently from each other. Each such organizaton is a customer of Waldur and is able to create its own projects. Project allows us to create new allocations as well as connect users with the project.
Hence, to create a project, one needs first to have a reference to the customer. The reference is a stable one and can be cached by a REST API client.
Examples:
Project creation
In order to create a new project in an organization, user needs to provide the following fields:
customer
- URL of the project's organizationname
- project's namedescription
- description of a project descriptionend_date
- optional date when the project and all allocations it contains will be scheduled for termination.backend_id
- optional identifier, which is intended to be unique in the resource allocator's project list. Can be used for connecting Waldur projects with the client's project registry.oecd_fos_2007_code
- optional OECD Field of Science code. A code is represented by a string with two numbers separated by dot for a corresponding field of science. For example"1.1"
is code for Mathematics. More information can be found here.
Please note that the project becomes active at the moment of creation!
Examples:
Project update
It is possible to update an existing project using its URL link. Name, description and backend_id can be updated.
Examples:
Project lookup
User can list projects and filter them using the following query parameters:
name
- project's name (uses 'contains' logic for lookup)name_exact
- project's exact namedescription
- project's description (uses 'contains' logic for lookup)backend_id
- project's exact backend ID
In case API user has access to more than one customer, extra filter by customer properties can be added:
customer
- exact filter by customer UUIDcustomer_name
- filter by partial match of the full name of a customerabbreviation
- filter by partial match of the abbreviation of a customer
Examples:
Project membership management
Creating a membership for a user means creating a permission link. While multiple roles of a user per project are allowed, we recommed for clarity to have one active project role per user in a project.
The list of fields for creation are:
user
- a user's UUID, looked up from a previous step.role
- a role of the user. Both role UUID and name are supported. By default the system roles 'PROJECT.MEMBER', 'PROJECT.ADMIN' and 'PROJECT.MANAGER' are supported. TODO: add reference to Puhuri terminology.expiration_time
- an optional field, if provided, it should contain date or ISO 8601 datetime.
To remove the permission, REST API client needs to send a HTTP request using the same payload as for permission creation,
but to delete_user
endpoint .
It is also possible to list available project permissions along with a role
filter.
Examples:
- API call for allocating members to a project
- API call for removing members from a project
- API call to listing project permissions
Resource allocation management
Creating and managing resource allocations in Waldur follows ordering logic.
All operations on resources, which lead to changes in allocations - e.g. creation, modification of allocated limits or termination - are wrapped in an order.
Listing offerings
To create a new Allocation, one must first choose a specific Offering from available. Offering corresponds to a specific part of a shared resource that Resource Allocator can allocate. Offerings can be visible to multiple allocators, however in the first iteration we plan to limit allocators with access to only their owned shares.
User can fetch offerings and filter them by the following fields:
name
- offering's namename_exact
- offering's exact namecustomer
- organization's URLcustomer_uuid
- organization's UUID
Generally Offering has a stable UUID, which can be used in Waldur client configuration. Offering defines inputs that are required to provision an instance of the offering, available accounting plans (at least one should be present) as well as attributes that can or should be provided with each request.
Each Offering contains one or more plans, you will need to provide a reference (URL) to the plan when creating an allocation.
API examples:
Orders and resources
To create a new allocation, an order must be created with requested attributes: project as well as details about the allocations.
Order might require additional approvals - in this case upon creation its status will be pending-consumer
or pending-provider
, which
can transition to REJECTED
if order is rejected.
Otherwise it will be switched to EXECUTING
, ending either in DONE
if all is good or ERRED
, if error happens during the processing.
Resource UUID is available as a marketplace_resource_uuid
field of the creation order.
In addition, accepting_terms_of_service
flag must be provided as a lightweight confirmation that allocator is
aware and agreeing with Terms of services of a specific Offering.
Example of the order payload sent with POST
to https://puhuri-core-beta.neic.no/api/marketplace-orders/
:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Change resource limits
Send POST
request to https://puhuri-core-beta.neic.no/api/marketplace-resources/<UUID_OF_A_RESOURCE>/update_limits/
providing
the new values of limits, for example:
1 2 3 4 5 6 7 |
|
Resource termination
Send POST
request to https://puhuri-core-beta.neic.no/api/marketplace-resources/<UUID_OF_A_RESOURCE>/terminate/
.
API examples:
- Creation of a resource allocation
- Modification of a resource allocation
- Termination of a resource allocation
Example integrations:
- Lookup of available offerings in Waldur.
- Creation of a resource in Waldur.
- Changing allocated limits in Waldur.
- Deletion of a resource allocation in Waldur.
Reporting
Getting usage data of a specific resource allocation
To get reported usage for resources, send GET
request to https://puhuri-core-beta.neic.no/api/marketplace-component-usages/
. If you want to get usage data of a specific resource, please add a filter, e.g. https://puhuri-core-beta.neic.no/api/marketplace-component-usages/?resource_uuid=<UUID_OF_A_RESOURCE>
. Note that responses are paginated.
Additional filters that can be used:
date_before
- date of the returned usage records should be before or equal to provided, format YYYY-MM-DD, e.g. 2021-03-01.date_after
- date of the returned usage records should be later or equal to provided, format YYYY-MM-DD, e.g. 2021-03-01.offering_uuid
- return usage records only for a specified offering.type
- type of the usage record to return, e.g. 'cpu_k_hours'.
Response will contain a list of usage records with a separate record for each component per month, for example:
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 |
|