new frontend grants admin endpoint handlers; miscellaneous cleanup and organization for consistency (#992)

This commit is contained in:
Michael Quigley
2025-06-25 12:40:39 -04:00
parent 59e73e8d6b
commit ce37219bac
15 changed files with 452 additions and 13 deletions

View File

@@ -85,7 +85,7 @@ void (empty response body)
### HTTP request headers
- **Content-Type**: application/zrok.v1+json
- **Accept**: Not defined
- **Accept**: application/zrok.v1+json
### HTTP response details
@@ -93,6 +93,7 @@ void (empty response body)
|-------------|-------------|------------------|
**200** | ok | - |
**401** | unauthorized | - |
**404** | not found | - |
**500** | internal server error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
@@ -694,7 +695,7 @@ void (empty response body)
### HTTP request headers
- **Content-Type**: application/zrok.v1+json
- **Accept**: Not defined
- **Accept**: application/zrok.v1+json
### HTTP response details
@@ -702,6 +703,7 @@ void (empty response body)
|-------------|-------------|------------------|
**200** | ok | - |
**401** | unauthorized | - |
**404** | not found | - |
**500** | internal server error | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

View File

@@ -108,6 +108,7 @@ class AdminApi:
_response_types_map: Dict[str, Optional[str]] = {
'200': None,
'401': None,
'404': "str",
'500': None,
}
response_data = self.api_client.call_api(
@@ -176,6 +177,7 @@ class AdminApi:
_response_types_map: Dict[str, Optional[str]] = {
'200': None,
'401': None,
'404': "str",
'500': None,
}
response_data = self.api_client.call_api(
@@ -244,6 +246,7 @@ class AdminApi:
_response_types_map: Dict[str, Optional[str]] = {
'200': None,
'401': None,
'404': "str",
'500': None,
}
response_data = self.api_client.call_api(
@@ -285,6 +288,13 @@ class AdminApi:
_body_params = body
# set the HTTP header `Accept`
if 'Accept' not in _header_params:
_header_params['Accept'] = self.api_client.select_header_accept(
[
'application/zrok.v1+json'
]
)
# set the HTTP header `Content-Type`
if _content_type:
@@ -2311,6 +2321,7 @@ class AdminApi:
_response_types_map: Dict[str, Optional[str]] = {
'200': None,
'401': None,
'404': "str",
'500': None,
}
response_data = self.api_client.call_api(
@@ -2379,6 +2390,7 @@ class AdminApi:
_response_types_map: Dict[str, Optional[str]] = {
'200': None,
'401': None,
'404': "str",
'500': None,
}
response_data = self.api_client.call_api(
@@ -2447,6 +2459,7 @@ class AdminApi:
_response_types_map: Dict[str, Optional[str]] = {
'200': None,
'401': None,
'404': "str",
'500': None,
}
response_data = self.api_client.call_api(
@@ -2488,6 +2501,13 @@ class AdminApi:
_body_params = body
# set the HTTP header `Accept`
if 'Accept' not in _header_params:
_header_params['Accept'] = self.api_client.select_header_accept(
[
'application/zrok.v1+json'
]
)
# set the HTTP header `Content-Type`
if _content_type: