windmill-api 1.684.1

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
Documentation
# \ConfigApi

All URIs are relative to */api*

Method | HTTP request | Description
------------- | ------------- | -------------
[**delete_config**]ConfigApi.md#delete_config | **DELETE** /configs/update/{name} | Delete Config
[**get_config**]ConfigApi.md#get_config | **GET** /configs/get/{name} | get config
[**list_all_dedicated_with_deps**]ConfigApi.md#list_all_dedicated_with_deps | **GET** /configs/list_all_dedicated_with_deps | list all dedicated scripts with their dependencies
[**list_all_workspace_dependencies**]ConfigApi.md#list_all_workspace_dependencies | **GET** /configs/list_all_workspace_dependencies | list all workspace dependencies
[**list_autoscaling_events**]ConfigApi.md#list_autoscaling_events | **GET** /configs/list_autoscaling_events/{worker_group} | List autoscaling events
[**list_available_python_versions**]ConfigApi.md#list_available_python_versions | **GET** /configs/list_available_python_versions | Get currently available python versions provided by UV.
[**list_configs**]ConfigApi.md#list_configs | **GET** /configs/list | list configs
[**list_worker_groups**]ConfigApi.md#list_worker_groups | **GET** /configs/list_worker_groups | list worker groups
[**native_kubernetes_autoscaling_healthcheck**]ConfigApi.md#native_kubernetes_autoscaling_healthcheck | **GET** /configs/native_kubernetes_autoscaling_healthcheck | Check Kubernetes autoscaling health for a worker group
[**update_config**]ConfigApi.md#update_config | **POST** /configs/update/{name} | Update config



## delete_config

> String delete_config(name)
Delete Config

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**name** | **String** |  | [required] |

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: text/plain

[[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)


## get_config

> models::Configs get_config(name)
get config

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**name** | **String** |  | [required] |

### Return type

[**models::Configs**](Configs.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[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)


## list_all_dedicated_with_deps

> Vec<models::ListAllDedicatedWithDeps200ResponseInner> list_all_dedicated_with_deps()
list all dedicated scripts with their dependencies

### Parameters

This endpoint does not need any parameter.

### Return type

[**Vec<models::ListAllDedicatedWithDeps200ResponseInner>**](listAllDedicatedWithDeps_200_response_inner.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[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)


## list_all_workspace_dependencies

> Vec<models::ListAllWorkspaceDependencies200ResponseInner> list_all_workspace_dependencies()
list all workspace dependencies

### Parameters

This endpoint does not need any parameter.

### Return type

[**Vec<models::ListAllWorkspaceDependencies200ResponseInner>**](listAllWorkspaceDependencies_200_response_inner.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[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)


## list_autoscaling_events

> Vec<models::AutoscalingEvent> list_autoscaling_events(worker_group, page, per_page)
List autoscaling events

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**worker_group** | **String** |  | [required] |
**page** | Option<**i32**> | which page to return (start at 1, default 1) |  |
**per_page** | Option<**i32**> | number of items to return for a given page (default 30, max 100) |  |

### Return type

[**Vec<models::AutoscalingEvent>**](AutoscalingEvent.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[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)


## list_available_python_versions

> Vec<String> list_available_python_versions()
Get currently available python versions provided by UV.

### Parameters

This endpoint does not need any parameter.

### Return type

**Vec<String>**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[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)


## list_configs

> Vec<models::Config> list_configs()
list configs

### Parameters

This endpoint does not need any parameter.

### Return type

[**Vec<models::Config>**](Config.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[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)


## list_worker_groups

> Vec<models::ListWorkerGroups200ResponseInner> list_worker_groups()
list worker groups

### Parameters

This endpoint does not need any parameter.

### Return type

[**Vec<models::ListWorkerGroups200ResponseInner>**](listWorkerGroups_200_response_inner.md)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[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)


## native_kubernetes_autoscaling_healthcheck

> native_kubernetes_autoscaling_healthcheck()
Check Kubernetes autoscaling health for a worker group

### Parameters

This endpoint does not need any parameter.

### Return type

 (empty response body)

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: text/plain

[[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)


## update_config

> String update_config(name, body)
Update config

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**name** | **String** |  | [required] |
**body** | Option<**serde_json::Value**> | worker group | [required] |

### Return type

**String**

### Authorization

[cookieAuth](../README.md#cookieAuth), [bearerAuth](../README.md#bearerAuth)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: text/plain

[[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)