Title: Introduce Quota resource statement API by winterhazel · Pull Request #13236 · apache/cloudstack · GitHub
Open Graph Title: Introduce Quota resource statement API by winterhazel · Pull Request #13236 · apache/cloudstack
X Title: Introduce Quota resource statement API by winterhazel · Pull Request #13236 · apache/cloudstack
Description: Description This PR introduces the quotaResourceStatement API to the Quota plugin. This API allows viewing the Quota consumption associated with a specific resource. It will be used by the Quota UI rework in a separate PR. In addition, some adjustments were made in the quotaStatement API in order to allow including the consumption of subdomains in the resulting statement. Types of changes Breaking change (fix or feature that would cause existing functionality to change) New feature (non-breaking change which adds functionality) Bug fix (non-breaking change which fixes an issue) Enhancement (improves an existing feature and functionality) Cleanup (Code refactoring and cleanup, that may add test cases) Build/CI Test (unit or integration test code) Feature/Enhancement Scale or Bug Severity Feature/Enhancement Scale Major Minor How Has This Been Tested? I tested the API by fuzzing its parameters for root admin, domain admin, and user accounts. In the tests, I validated that the API returned the expected response while performing correct permission checking. Environment configuration My environment had two domains: ROOT and d1. MariaDB [cloud]> select uuid,name,path,parent from domain; +--------------------------------------+------+------+--------+ | uuid | name | path | parent | +--------------------------------------+------+------+--------+ | de3f3dfb-f84b-11f0-8ace-32e0826870ba | ROOT | / | NULL | | dc5064ad-d4a8-4bb3-ae18-a52e4810ac3d | d1 | /d1/ | 1 | +--------------------------------------+------+------+--------+ Each domain had a domain admin (dr for ROOT and d1 for d1) and a user account (ur for ROOT and u1 for d1). ROOT also had a project and the root admin. MariaDB [cloud]> select uuid,account_name,domain_id,role_id from account; +--------------------------------------+--------------------------+-----------+---------+ | uuid | account_name | domain_id | role_id | +--------------------------------------+--------------------------+-----------+---------+ | f684aae8-f84b-11f0-8ace-32e0826870ba | system | 1 | 1 | | f684da1a-f84b-11f0-8ace-32e0826870ba | admin | 1 | 1 | | 17dfdcce-fd02-46d0-85ae-7de91fda634c | baremetal-system-account | 1 | 4 | | aaba75a0-a575-41be-80e1-dbea14c10e51 | dr | 1 | 3 | | feaffae2-7ba4-45dc-b46f-20ae86192685 | d1 | 2 | 3 | | 2f49212d-d6d5-437b-800d-a7bb4a8def4b | u1 | 2 | 4 | | b029e8b8-e539-4d1a-906d-3d4f2fb36b82 | ur | 1 | 4 | | b14100c6-d9f6-450e-87a2-0833bb45e5f8 | PrjAcct-aa-1 | 1 | NULL | +--------------------------------------+--------------------------+-----------+---------+ Test 1 (user accounts) id: returns the statement scoped to the owning account when the caller has access to it, and an error when it does not. (u1) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 { "quotaresourcestatement": { "items": [ { "accountid": "2f49212d-d6d5-437b-800d-a7bb4a8def4b", "enddate": "2026-05-24T20:59:59-0300", "quotaconsumed": 2.46531524, "startdate": "2026-05-23T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 5.69112164, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (u1) 🐱 > quota resourcestatement id=e4e91818-cbb5-401a-bb42-35d976ea4e01 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 🙈 Error: (HTTP 531, error code 4365) Caller does not have permission to operate with provided resource. accountid: returns the statement scoped to the provided account if accessible, or an empty list otherwise. (u1) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 accountid=2f49212d-d6d5-437b-800d-a7bb4a8def4b (u1) { "quotaresourcestatement": { "items": [ { "accountid": "2f49212d-d6d5-437b-800d-a7bb4a8def4b", "enddate": "2026-05-24T20:59:59-0300", "quotaconsumed": 2.46531524, "startdate": "2026-05-23T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 5.69112164, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (u1) 🐱 > quota resourcestatement id=e4e91818-cbb5-401a-bb42-35d976ea4e01 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 accountid=2f49212d-d6d5-437b-800d-a7bb4a8def4b (u1) { "quotaresourcestatement": { "items": [], "totalquota": 0, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } projectid: returns the statement scoped to the provided project if accessible, or an exception otherwise. (u1) 🐱 > quota resourcestatement id=6d7b3c73-7f06-4f23-9210-3af5889790d1 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 projectid=c1ce41c4-7b01-4386-8264-479db5ace0bc 🙈 Error: (HTTP 432, error code 9999) The API [quotaResourceStatement] does not exist or is not available for this account/user in project [c1ce41c4-7b01-4386-8264-479db5ace0bc]. (ur) 🐱 > quota resourcestatement id=6d7b3c73-7f06-4f23-9210-3af5889790d1 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 projectid=c1ce41c4-7b01-4386-8264-479db5ace0bc { "quotaresourcestatement": { "items": [ { "accountid": "b14100c6-d9f6-450e-87a2-0833bb45e5f8", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42573923, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 22.20631686, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } isrecursive: ignored for user accounts. (ur) 🐱 > quota resourcestatement id=db0db635-df4d-42bb-9aca-19cc3d986ca0 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 isrecursive=true { "quotaresourcestatement": { "items": [ { "accountid": "b029e8b8-e539-4d1a-906d-3d4f2fb36b82", "enddate": "2026-05-24T20:59:59-0300", "quotaconsumed": 2.46247754, "startdate": "2026-05-23T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 18.9019186, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (ur) 🐱 > quota resourcestatement id=db0db635-df4d-42bb-9aca-19cc3d986ca0 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 isrecursive=false { "quotaresourcestatement": { "items": [ { "accountid": "b029e8b8-e539-4d1a-906d-3d4f2fb36b82", "enddate": "2026-05-24T20:59:59-0300", "quotaconsumed": 2.46247754, "startdate": "2026-05-23T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 18.9019186, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } Test 2 (domain admins) id: returns the statement scoped to the caller's domain. (d1) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 { "quotaresourcestatement": { "items": [ { "accountid": "2f49212d-d6d5-437b-800d-a7bb4a8def4b", "enddate": "2026-05-24T20:59:59-0300", "quotaconsumed": 2.46531524, "startdate": "2026-05-23T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 14.60737768, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (d1) 🐱 > quota resourcestatement id=db0db635-df4d-42bb-9aca-19cc3d986ca0 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 { "quotaresourcestatement": { "items": [ { "accountid": "2f49212d-d6d5-437b-800d-a7bb4a8def4b", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42775528, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 25.15400928, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (d1) 🐱 > quota resourcestatement id=6d7b3c73-7f06-4f23-9210-3af5889790d1 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 { "quotaresourcestatement": { "items": [], "totalquota": 0, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } accountid: returns the statement scoped to the provided account if accessible, or an exception otherwise. (d1) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 accountid=2f49212d-d6d5-437b-800d-a7bb4a8def4b { "quotaresourcestatement": { "items": [ { "accountid": "2f49212d-d6d5-437b-800d-a7bb4a8def4b", "enddate": "2026-05-24T20:59:59-0300", "quotaconsumed": 2.46531524, "startdate": "2026-05-23T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 11.44631141, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (d1) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 accountid=feaffae2-7ba4-45dc-b46f-20ae86192685 { "quotaresourcestatement": { "items": [ { "accountid": "feaffae2-7ba4-45dc-b46f-20ae86192685", "enddate": "2026-05-26T20:59:59-0300", "quotaconsumed": 3.16106627, "startdate": "2026-05-25T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" } ], "totalquota": 3.16106627, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (d1) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 accountid=f684da1a-f84b-11f0-8ace-32e0826870ba 🙈 Error: (HTTP 531, error code 4365) Caller does not have permission to operate with provided resource. projectid: returns the statement scoped to the provided project if accessible, or an exception otherwise. (d1) 🐱 > quota resourcestatement id=6d7b3c73-7f06-4f23-9210-3af5889790d1 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 projectid=c1ce41c4-7b01-4386-8264-479db5ace0bc 🙈 Error: (HTTP 531, error code 4365) Account Account [{"accountName":"d1","id":5,"uuid":"feaffae2-7ba4-45dc-b46f-20ae86192685"}] does not have permission to operate within domain id=de3f3dfb-f84b-11f0-8ace-32e0826870ba (dr) 🐱 > quota resourcestatement id=6d7b3c73-7f06-4f23-9210-3af5889790d1 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 projectid=c1ce41c4-7b01-4386-8264-479db5ace0bc { "quotaresourcestatement": { "items": [ { "accountid": "b14100c6-d9f6-450e-87a2-0833bb45e5f8", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42573923, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 39.76108809, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } isrecursive: allows domain admins to generate the statement including usage records of subdomains. (dr) 🐱 > quota resourcestatement id=e4e91818-cbb5-401a-bb42-35d976ea4e01 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 isrecursive=true { "quotaresourcestatement": { "items": [ { "accountid": "f684da1a-f84b-11f0-8ace-32e0826870ba", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42880073, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 52.70616739, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (dr) 🐱 > quota resourcestatement id=e4e91818-cbb5-401a-bb42-35d976ea4e01 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 isrecursive=false { "quotaresourcestatement": { "items": [ { "accountid": "f684da1a-f84b-11f0-8ace-32e0826870ba", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42880073, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 33.79573569, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } Test 3 (root admins) id: returns the statement of any resource without limiting. (admin) 🐱 > quota resourcestatement id=e4e91818-cbb5-401a-bb42-35d976ea4e01 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 { "quotaresourcestatement": { "items": [ { "accountid": "f684da1a-f84b-11f0-8ace-32e0826870ba", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42880073, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 39.76534465, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (admin) 🐱 > quota resourcestatement id=ab6b1ced-d36e-4436-aad2-e78e06005350 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 { "quotaresourcestatement": { "items": [ { "accountid": "feaffae2-7ba4-45dc-b46f-20ae86192685", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42801677, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 39.76291791, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (admin) 🐱 > quota resourcestatement id=db0db635-df4d-42bb-9aca-19cc3d986ca0 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 { "quotaresourcestatement": { "items": [ { "accountid": "2f49212d-d6d5-437b-800d-a7bb4a8def4b", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42775528, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 39.75638356, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (admin) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 { "quotaresourcestatement": { "items": [ { "accountid": "b029e8b8-e539-4d1a-906d-3d4f2fb36b82", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42670996, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 39.7583256, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } accountid: returns the statement scoped to the provided account. (admin) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 accountid=2f49212d-d6d5-437b-800d-a7bb4a8def4b { "quotaresourcestatement": { "items": [ { "accountid": "2f49212d-d6d5-437b-800d-a7bb4a8def4b", "enddate": "2026-05-24T20:59:59-0300", "quotaconsumed": 2.46531524, "startdate": "2026-05-23T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 11.44631141, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (admin) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 accountid=feaffae2-7ba4-45dc-b46f-20ae86192685 { "quotaresourcestatement": { "items": [ { "accountid": "feaffae2-7ba4-45dc-b46f-20ae86192685", "enddate": "2026-05-26T20:59:59-0300", "quotaconsumed": 3.16106627, "startdate": "2026-05-25T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" } ], "totalquota": 3.16106627, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (admin) 🐱 > quota resourcestatement id=53c791d2-ac8f-4acb-9246-3a2b9eb354ea startdate=2026-01-01 enddate=2027-01-01 usagetype=1 accountid=f684da1a-f84b-11f0-8ace-32e0826870ba { "quotaresourcestatement": { "items": [], "totalquota": 0, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } projectid: returns the statement scoped to the provided project. (admin) 🐱 > quota resourcestatement id=6d7b3c73-7f06-4f23-9210-3af5889790d1 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 projectid=c1ce41c4-7b01-4386-8264-479db5ace0bc { "quotaresourcestatement": { "items": [ { "accountid": "b14100c6-d9f6-450e-87a2-0833bb45e5f8", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42573923, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 39.76108809, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } isrecursive: allows admins to generate the statement including usage records of subdomains. (admin) 🐱 > quota resourcestatement id=e4e91818-cbb5-401a-bb42-35d976ea4e01 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 { "quotaresourcestatement": { "items": [ { "accountid": "f684da1a-f84b-11f0-8ace-32e0826870ba", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42880073, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 33.79573569, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (admin) 🐱 > quota resourcestatement id=e4e91818-cbb5-401a-bb42-35d976ea4e01 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 isrecursive=true { "quotaresourcestatement": { "items": [ { "accountid": "f684da1a-f84b-11f0-8ace-32e0826870ba", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42880073, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 52.70616739, "unit": "Compute*Month", "usagename": "RUNNING_VM" } } (admin) 🐱 > quota resourcestatement id=e4e91818-cbb5-401a-bb42-35d976ea4e01 startdate=2026-01-01 enddate=2027-01-01 usagetype=1 isrecursive=false { "quotaresourcestatement": { "items": [ { "accountid": "f684da1a-f84b-11f0-8ace-32e0826870ba", "enddate": "2026-05-21T20:59:59-0300", "quotaconsumed": 1.42880073, "startdate": "2026-05-20T21:00:00-0300", "tariffid": "2b9671f8-a0ec-4127-bcc8-69413375c3c6", "tariffname": "RUNNING_VM" }, ... ], "totalquota": 33.79573569, "unit": "Compute*Month", "usagename": "RUNNING_VM" } }
Open Graph Description: Description This PR introduces the quotaResourceStatement API to the Quota plugin. This API allows viewing the Quota consumption associated with a specific resource. It will be used by the Quota UI...
X Description: Description This PR introduces the quotaResourceStatement API to the Quota plugin. This API allows viewing the Quota consumption associated with a specific resource. It will be used by the Quota UI...
Opengraph URL: https://github.com/apache/cloudstack/pull/13236
X: @github
Domain: github.com
| route-pattern | /:user_id/:repository/pull/:id/files(.:format) |
| route-controller | pull_requests |
| route-action | files |
| fetch-nonce | v2:f8d968f8-e154-7669-ad08-f521e6330a69 |
| current-catalog-service-hash | ae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b |
| request-id | 914A:27F80E:AA40DF:E68ECA:6A4D7436 |
| html-safe-nonce | 67ffe582e943917c70c3dd10a3784b5139a0b8925608bb8d1249f61b34be1a25 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5MTRBOjI3RjgwRTpBQTQwREY6RTY4RUNBOjZBNEQ3NDM2IiwidmlzaXRvcl9pZCI6IjMxMTA0NjM3NjQ3Nzc3NTk3OTgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ== |
| visitor-hmac | 70af1d33bcecf48d001f818d04008678473188fe40f8fee6307b18b303232a9d |
| hovercard-subject-tag | pull_request:3743590343 |
| github-keyboard-shortcuts | repository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/apache/cloudstack/pull/13236/files |
| twitter:image | https://avatars.githubusercontent.com/u/25729641?s=400&v=4 |
| twitter:card | summary_large_image |
| og:image | https://avatars.githubusercontent.com/u/25729641?s=400&v=4 |
| og:image:alt | Description This PR introduces the quotaResourceStatement API to the Quota plugin. This API allows viewing the Quota consumption associated with a specific resource. It will be used by the Quota UI... |
| og:site_name | GitHub |
| og:type | object |
| hostname | github.com |
| expected-hostname | github.com |
| None | c78260c7b3f4ac4b0356c8208537f05406a3a2d46a9ec3f735b372dcc519c39e |
| turbo-cache-control | no-preview |
| diff-view | unified |
| go-import | github.com/apache/cloudstack git https://github.com/apache/cloudstack.git |
| octolytics-dimension-user_id | 47359 |
| octolytics-dimension-user_login | apache |
| octolytics-dimension-repository_id | 9759448 |
| octolytics-dimension-repository_nwo | apache/cloudstack |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 9759448 |
| octolytics-dimension-repository_network_root_nwo | apache/cloudstack |
| turbo-body-classes | logged-out env-production page-responsive full-width |
| disable-turbo | true |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 399fff412f48461d435721c009efc17ea44be72f |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width