Bug 479440
| Summary: | API: satellite.listEntitlements missing key names in return arrays | ||
|---|---|---|---|
| Product: | [Community] Spacewalk | Reporter: | Brad Buckingham <bbuckingham> |
| Component: | API | Assignee: | Brad Buckingham <bbuckingham> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Red Hat Satellite QA List <satqe-list> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 0.4 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2009-01-22 16:31:33 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 456552 | ||
updated doc w/ commit: 4ac41f11a199947272cff97ab881da4f06abcb11 verified on spacewalk-java-0.4.14-1.el5 |
Description of problem: The API documentation for the satellite.listEntitlements is missing the key names for the system and channel array lists returned. How reproducible: always Steps to Reproduce: 1. go to https://<HOST>/rhn/apidoc/satellite/SatelliteHandler.jsp Actual results: observe satellite.listEntitlements lists 2 arrays for system and channel entitlements; however, they "key" to access them is not included in the array. E.g.Returns: * struct - channel/system entitlements o array + struct - system entitlement # string "label" # string "name" # int "used_slots" # int "free_slots" # int "total_slots" o array + struct - channel entitlement # string "label" # string "name" # int "used_slots" # int "free_slots" # int "total_slots" Expected results: The key is included in the array docs. E.g. Returns: * struct - channel/system entitlements o array "system" + struct - system entitlement # string "label" # string "name" # int "used_slots" # int "free_slots" # int "total_slots" o array "channel" + struct - channel entitlement # string "label" # string "name" # int "used_slots" # int "free_slots" # int "total_slots" Additional info: