Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added_support_for_user_resource #102

Merged
merged 7 commits into from
May 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ This release extends the planned support of the collections to OneView REST API
- PATCH /rest/tasks/{id}
- GET{Tree} /rest/tasks/{id}
- GET{AggregatedTree} /rest/tasks/{id}
2. Added support for user resource.

#### Bug fixes & Enhancements
- [#85] (https://github.com/HewlettPackard/oneview-ansible-collection/issues/85) Enhancement Request: SPP "name" too restrictive
Expand Down Expand Up @@ -101,6 +102,8 @@ This release extends the planned support of the collections to OneView REST API
- oneview_task_facts
- oneview_uplink_set
- oneview_uplink_set_facts
- oneview_user
- oneview_user_facts
- oneview_version_facts

## v6.0.0
Expand Down
17 changes: 17 additions & 0 deletions endpoints-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,23 @@
|<sub>/rest/uplink-sets/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|<sub>/rest/uplink-sets/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|<sub>/rest/uplink-sets/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| **Users** |
|<sub>/rest/users</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users</sub> | POST {multiple user} | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/role/{userName}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/validateLoginName/{userName}</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/validateUserName/{fullName}</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/administrator/resetPassword</sub> | PUT | :heavy_multiplication_x: | :heavy_multiplication_x: | :heavy_multiplication_x: | :heavy_multiplication_x: |
|<sub>/rest/users/changePassword</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/roles</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/roles/users/{role}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/{userName}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/{userName}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/{userName}/roles</sub> | POST | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
|<sub>/rest/users/{userName}/roles</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: |:white_check_mark: |
| **Version** |
|<sub>/rest/version</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |

Expand Down
2 changes: 2 additions & 0 deletions oneview-ansible-collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@
* [oneview_task_facts - Retrieve facts about the OneView Tasks.](https://github.com/HewlettPackard/oneview-ansible-collection/blob/master/roles/oneview_task_facts/README.md)
* [oneview_uplink_set - Manage OneView Uplink Set resources.](https://github.com/HewlettPackard/oneview-ansible-collection/blob/master/roles/oneview_uplink_set/README.md)
* [oneview_uplink_set_facts - Retrieve facts about one or more of the OneView Uplink Sets.](https://github.com/HewlettPackard/oneview-ansible-collection/blob/master/roles/oneview_uplink_set_facts/README.md)
* [oneview_user - Manage OneView User resources.](https://github.com/HewlettPackard/oneview-ansible-collection/blob/master/roles/oneview_user/README.md)
* [oneview_user_facts - Retrieve facts about one or more of the OneView User.](https://github.com/HewlettPackard/oneview-ansible-collection/blob/master/roles/oneview_user_facts/README.md)
* [oneview_version_facts - Returns the range of possible API versions supported by the appliance](https://github.com/HewlettPackard/oneview-ansible-collection/blob/master/roles/oneview_version_facts/README.md)
* [oneview_volume - Manage OneView Volume resources.](https://github.com/HewlettPackard/oneview-ansible-collection/blob/master/roles/oneview_volume/README.md)
* [oneview_volume_facts - Retrieve facts about the OneView Volumes.](https://github.com/HewlettPackard/oneview-ansible-collection/blob/master/roles/oneview_volume_facts/README.md)
2 changes: 2 additions & 0 deletions playbooks/automation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@
- hpe.oneview.oneview_task_facts
- hpe.oneview.oneview_uplink_set
- hpe.oneview.oneview_uplink_set_facts
- hpe.oneview.oneview_user
- hpe.oneview.oneview_user_facts
- hpe.oneview.image_streamer_plan_script
- hpe.oneview.image_streamer_plan_script_facts
- hpe.oneview.image_streamer_build_plan
Expand Down
Loading