CONFspirator was written to just specifically for Adjutant and it allows us to do oslo.config style config management and definition with nested groups and for yaml. This is a major change that touches vast amounts of the code simply because of how much the config touches. Actions, Tasks, DelegateAPIs, and Notification Handlers now can define config in their own class and this will be added to the config. All the other config is located in `adjutant.config`, with everything now registed nicely on the config tree, and grouped in much saner ways. CONFspirator will also now allow Adjutant to be entirely configured via environment variables. We have removed `modify_dict_settings` because that is now entirely handled by CONFspirator's test utils. `NotificationEngine`s are now `NotificationHandler`s. `test_settings.py` is gone! And we now have better ways to define test settings and defaults. Project line length bumped to 88, and bugbear added to enforce that instead. Story: 2004488 Change-Id: I1d97d72d06b3a3a5df90355d3a4b4fe414381424
434 lines
10 KiB
PHP
434 lines
10 KiB
PHP
*************************************
|
|
OpenStack Style DelegateAPI Endpoints
|
|
*************************************
|
|
|
|
A response of 'task created' means that the task requires admin approval and
|
|
a response of 'created token' indicates that the task has been auto-approved
|
|
and awaits the submission of an emailed token.
|
|
|
|
List users
|
|
========================
|
|
.. rest_method:: GET /v1/openstack/users
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
List current and pending users in the current project.
|
|
|
|
Request Example
|
|
----------------
|
|
.. code-block:: bash
|
|
|
|
curl -H "X-Auth-Token: $NOS_TOKEN" http://0.0.0.0:5050/v1/openstack/users
|
|
|
|
Response Example
|
|
-----------------
|
|
.. code-block:: javascript
|
|
|
|
{
|
|
"users": [
|
|
{
|
|
"cohort": "Member",
|
|
"email": "demo@example.com",
|
|
"id": "",
|
|
"manageable": false,
|
|
"name": "demo",
|
|
"roles": [
|
|
"project_admin",
|
|
"_member_"
|
|
],
|
|
"status": "Active"
|
|
}
|
|
]
|
|
}
|
|
|
|
|
|
Invite User
|
|
============
|
|
.. rest_method:: POST /v1/openstack/users
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
An auto-approved task that will add a user to the project. If the user already
|
|
exists it will add them directly, otherwise it will create a user when the
|
|
invitee submits a token sent to them though email
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- roles: roles
|
|
- email: email
|
|
- username: username
|
|
|
|
Request Example
|
|
-----------------
|
|
.. code-block:: bash
|
|
|
|
curl -H "X-Auth-Token: $NOS_TOKEN" http://0.0.0.0:5050/v1/openstack/users \
|
|
-H 'Content-Type: application/json' \
|
|
-d '{"roles": ["member"], "email": "new@example.com"}'
|
|
|
|
Response Example
|
|
-----------------
|
|
.. code-block:: javascript
|
|
|
|
{
|
|
"notes": ["created token"]
|
|
}
|
|
|
|
User Details
|
|
=============
|
|
.. rest_method:: GET /v1/openstack/users/<user_id>
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
Get details on the given user including their roles on your project
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- user_id: user_id
|
|
|
|
Cancel User Invite
|
|
==================
|
|
.. rest_method:: DELETE /v1/openstack/users/<user_id>
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
Cancel a pending user invitation. Current users can be removed from your
|
|
project by removing all of their roles.
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- user_id: user_id
|
|
|
|
List User Roles
|
|
==================
|
|
.. rest_method:: GET /v1/openstack/users/<user_id>/roles
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
List all roles the user has on the current project
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- user_id: user_id
|
|
|
|
Add User Roles
|
|
==================
|
|
.. rest_method:: PUT /v1/openstack/users/<user_id>/roles
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
Add the specified roles to the user on the current project.
|
|
|
|
There is additional authentication in the forms of what roles can be edited
|
|
by the current user. If the target user has any role not editable by the
|
|
current user the user will not be able to edit any of their roles.
|
|
Editiable roles can be found at the ``List available roles`` endpoint.
|
|
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- user_id: user_id
|
|
- roles: roles
|
|
|
|
Request Example
|
|
-----------------
|
|
.. code-block:: bash
|
|
|
|
curl -H "X-Auth-Token: $NOS_TOKEN" -H 'Content-Type: application/json' \
|
|
-d '{"roles": ["project_mod"]}' -X PUT \
|
|
http://0.0.0.0:5050/v1/openstack/users/5123ca764f3d40d79e3589e91f1ccb8f/roles
|
|
|
|
Response Example
|
|
-----------------
|
|
.. code-block:: javascript
|
|
|
|
{
|
|
"notes": [
|
|
"Task completed successfully."
|
|
]
|
|
}
|
|
|
|
Remove User Roles
|
|
==================
|
|
.. rest_method:: DELETE /v1/openstack/users/<user_id>/roles
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
Remove the specified roles from the user on the current project.
|
|
|
|
A project moderator will not be able to change the roles of a project admin.
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- user_id: user_id
|
|
- roles: roles
|
|
|
|
Request Example
|
|
-----------------
|
|
.. code-block:: bash
|
|
|
|
curl -H "X-Auth-Token: $NOS_TOKEN" -H 'Content-Type: application/json' \
|
|
-d '{"roles": ["project_mod"]}' -X DELETE \
|
|
http://0.0.0.0:5050/v1/openstack/users/5123ca764f3d40d79e3589e91f1ccb8f/roles
|
|
|
|
Response Example
|
|
-----------------
|
|
.. code-block:: javascript
|
|
|
|
{
|
|
"notes": [
|
|
"Task completed successfully."
|
|
]
|
|
}
|
|
|
|
|
|
List Available Roles
|
|
=====================
|
|
.. rest_method:: GET /v1/openstack/roles
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
List the roles available for the current user to modify.
|
|
|
|
Request Example
|
|
----------------
|
|
.. code-block:: bash
|
|
|
|
curl -H "X-Auth-Token: $NOS_TOKEN" http://0.0.0.0:5050/v1/openstack/roles/
|
|
|
|
Response Example
|
|
-----------------
|
|
.. code-block:: javascript
|
|
|
|
{
|
|
"roles": [
|
|
{
|
|
"domain_id": null,
|
|
"id": "b81efc1e23a043d0976dc39b3e2727c3",
|
|
"links": {
|
|
"self": "http://identity/v3/roles/b81efc1e23a043d0976dc39b3e2727c3"
|
|
},
|
|
"name": "project_mod"
|
|
},
|
|
{
|
|
"domain_id": null,
|
|
"id": "9fe2ff9ee4384b1894a90878d3e92bab",
|
|
"links": {
|
|
"self": "http://identity/v3/roles/9fe2ff9ee4384b1894a90878d3e92bab"
|
|
},
|
|
"name": "member"
|
|
},
|
|
]
|
|
}
|
|
|
|
Password Reset
|
|
===================
|
|
.. rest_method:: POST /v1/openstack/users/password-reset
|
|
|
|
Authentication: Unauthenticated
|
|
|
|
Unauthenticated for forgotten password requests. If the email has an associated
|
|
user a token will be sent to them to use to reset their password with.
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- email: email_password
|
|
- username: username_password
|
|
|
|
Request Example
|
|
----------------
|
|
.. code-block:: bash
|
|
|
|
curl -d '{"email": "demo@example.org"}' http://0.0.0.0:5050/v1/openstack/users/password-reset
|
|
|
|
Response Example
|
|
-----------------
|
|
.. code-block:: javascript
|
|
|
|
{
|
|
"notes": ["If user with email exists, reset token will be issued."]
|
|
}
|
|
|
|
Update Email Address
|
|
=====================
|
|
.. rest_method:: POST /v1/openstack/email-update
|
|
|
|
Authentication: Authenticated
|
|
|
|
Submit a new email address for the current user. A submission token will be
|
|
sent to the new address, and a notification to the old email address. The
|
|
account address will not change until the token submission.
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- email: email
|
|
|
|
Sign Up
|
|
========
|
|
.. rest_method:: POST /v1/openstack/sign-up
|
|
|
|
Authentication: Unauthenticated
|
|
|
|
Account creation endpoint.
|
|
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- email: email
|
|
- username: username
|
|
- project_name: project_name
|
|
- setup_network: setup_network
|
|
- region: region
|
|
|
|
Request Example
|
|
----------------
|
|
.. code-block:: bash
|
|
|
|
curl -H 'X-Auth-Token: $OS_TOKEN' -H 'Content-Type: application/json' -d '{
|
|
"email": "example@example.com", "project_name": "example_project"}'
|
|
-X POST http://0.0.0.0:5050/v1/openstack/sign-up
|
|
|
|
Response Example
|
|
-----------------
|
|
.. code-block:: javascript
|
|
|
|
{
|
|
"notes": ["task created"]
|
|
}
|
|
|
|
|
|
Show Quota Details
|
|
========================
|
|
.. rest_method:: GET /v1/openstack/quota
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
List details of the quota for the current project.
|
|
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- region: region
|
|
|
|
Request Example
|
|
----------------
|
|
.. code-block:: bash
|
|
|
|
curl -H "X-Auth-Token: $NOS_TOKEN" http://0.0.0.0:5050/v1/openstack/quota
|
|
|
|
Response Example
|
|
-----------------
|
|
.. code-block:: javascript
|
|
|
|
{
|
|
"active_quota_tasks": [],
|
|
"quota_size_order": [
|
|
"small",
|
|
"medium",
|
|
"large"
|
|
],
|
|
"quota_sizes": {
|
|
"large": {
|
|
"cinder": {
|
|
"gigabytes": 50000,
|
|
"snapshots": 600,
|
|
"volumes": 200
|
|
},
|
|
"neutron": {
|
|
"floatingip": 50,
|
|
"network": 10,
|
|
"port": 500,
|
|
...
|
|
},
|
|
"nova": {
|
|
"cores": 200,
|
|
"fixed_ips": 0,
|
|
"floating_ips": 50,
|
|
"injected_file_content_bytes": 10240,
|
|
...
|
|
}
|
|
},
|
|
'small': { ... },
|
|
'medium': { ... }
|
|
},
|
|
"regions": [
|
|
{
|
|
"current_quota": {
|
|
"cinder": {
|
|
"backup_gigabytes": 1000,
|
|
"backups": 10,
|
|
"gigabytes": 1000,
|
|
...
|
|
},
|
|
"neutron": {
|
|
"floatingip": 50,
|
|
"network": 10,
|
|
"port": 50,
|
|
...
|
|
},
|
|
"nova": {
|
|
"cores": 20,
|
|
"fixed_ips": -1,
|
|
"floating_ips": 10,
|
|
"injected_file_content_bytes": 10240,
|
|
...
|
|
}
|
|
},
|
|
"current_quota_size": "custom",
|
|
"current_usage": {
|
|
"cinder": {
|
|
"gigabytes": 1,
|
|
"snapshots": 0,
|
|
"volumes": 1
|
|
},
|
|
"neutron": {
|
|
"floatingip": 0,
|
|
"network": 1,
|
|
"port": 2,
|
|
"router": 1
|
|
...
|
|
},
|
|
"nova": {
|
|
"cores": 0,
|
|
"floating_ips": 0,
|
|
...
|
|
}
|
|
},
|
|
"quota_change_options": [],
|
|
"region": "RegionOne"
|
|
}
|
|
]
|
|
}
|
|
|
|
|
|
|
|
Update Quota
|
|
========================
|
|
.. rest_method:: POST /v1/openstack/quota
|
|
|
|
Authentication: Project Moderator or Admin
|
|
|
|
Starts an update quota task. If regions are not specified it will update
|
|
the quota across all regions.
|
|
|
|
.. rest_parameters:: parameters.yaml
|
|
|
|
- regions: regions
|
|
- size: size
|
|
|
|
Request Example
|
|
----------------
|
|
.. code-block:: bash
|
|
|
|
curl -H "X-Auth-Token: $NOS_TOKEN" http://0.0.0.0:5050/v1/openstack/quotas
|
|
-d '{"region": "RegionOne", "size": "small"}' -H "Content-Type: application/json"
|
|
|
|
|
|
Response Example
|
|
-----------------
|
|
.. code-block:: javascript
|
|
|
|
{
|
|
"notes": ["Task processed. Awaiting Aprroval."]
|
|
}
|