OAPI: Regenerate code
This commit is contained in:
parent
8d339b1528
commit
1f562b3cbc
2
addon/flamenco/manager/api/shaman_api.py
generated
2
addon/flamenco/manager/api/shaman_api.py
generated
@ -444,7 +444,7 @@ class ShamanApi(object):
|
|||||||
|
|
||||||
Keyword Args:
|
Keyword Args:
|
||||||
x_shaman_can_defer_upload (bool): The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file. . [optional]
|
x_shaman_can_defer_upload (bool): The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file. . [optional]
|
||||||
x_shaman_original_filename (str): The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging. . [optional]
|
x_shaman_original_filename (str): The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging. MUST either be ASCII or encoded using RFC 2047 (aka MIME encoding). In the latter case the encoding MUST be UTF-8. . [optional]
|
||||||
_return_http_data_only (bool): response data without head status
|
_return_http_data_only (bool): response data without head status
|
||||||
code and headers. Default is True.
|
code and headers. Default is True.
|
||||||
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
||||||
|
4
addon/flamenco/manager/docs/ShamanApi.md
generated
4
addon/flamenco/manager/docs/ShamanApi.md
generated
@ -194,7 +194,7 @@ with flamenco.manager.ApiClient() as api_client:
|
|||||||
filesize = 1 # int | Size of the file in bytes.
|
filesize = 1 # int | Size of the file in bytes.
|
||||||
body = open('/path/to/file', 'rb') # file_type | Contents of the file
|
body = open('/path/to/file', 'rb') # file_type | Contents of the file
|
||||||
x_shaman_can_defer_upload = True # bool | The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file. (optional)
|
x_shaman_can_defer_upload = True # bool | The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file. (optional)
|
||||||
x_shaman_original_filename = "X-Shaman-Original-Filename_example" # str | The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging. (optional)
|
x_shaman_original_filename = "X-Shaman-Original-Filename_example" # str | The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging. MUST either be ASCII or encoded using RFC 2047 (aka MIME encoding). In the latter case the encoding MUST be UTF-8. (optional)
|
||||||
|
|
||||||
# example passing only required values which don't have defaults set
|
# example passing only required values which don't have defaults set
|
||||||
try:
|
try:
|
||||||
@ -221,7 +221,7 @@ Name | Type | Description | Notes
|
|||||||
**filesize** | **int**| Size of the file in bytes. |
|
**filesize** | **int**| Size of the file in bytes. |
|
||||||
**body** | **file_type**| Contents of the file |
|
**body** | **file_type**| Contents of the file |
|
||||||
**x_shaman_can_defer_upload** | **bool**| The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file. | [optional]
|
**x_shaman_can_defer_upload** | **bool**| The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file. | [optional]
|
||||||
**x_shaman_original_filename** | **str**| The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging. | [optional]
|
**x_shaman_original_filename** | **str**| The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging. MUST either be ASCII or encoded using RFC 2047 (aka MIME encoding). In the latter case the encoding MUST be UTF-8. | [optional]
|
||||||
|
|
||||||
### Return type
|
### Return type
|
||||||
|
|
||||||
|
284
addon/flamenco/manager_README.md
generated
284
addon/flamenco/manager_README.md
generated
@ -75,152 +75,152 @@ All URIs are relative to *http://localhost*
|
|||||||
|
|
||||||
Class | Method | HTTP request | Description
|
Class | Method | HTTP request | Description
|
||||||
------------ | ------------- | ------------- | -------------
|
------------ | ------------- | ------------- | -------------
|
||||||
*JobsApi* | [**delete_job**](flamenco\manager\docs/JobsApi.md#delete_job) | **DELETE** /api/v3/jobs/{job_id} | Request deletion this job, including its tasks and any log files. The actual deletion may happen in the background. No job files will be deleted (yet).
|
*JobsApi* | [**delete_job**](flamenco/manager/docs/JobsApi.md#delete_job) | **DELETE** /api/v3/jobs/{job_id} | Request deletion this job, including its tasks and any log files. The actual deletion may happen in the background. No job files will be deleted (yet).
|
||||||
*JobsApi* | [**delete_job_mass**](flamenco\manager\docs/JobsApi.md#delete_job_mass) | **DELETE** /api/v3/jobs/mass-delete | Mark jobs for deletion, based on certain criteria.
|
*JobsApi* | [**delete_job_mass**](flamenco/manager/docs/JobsApi.md#delete_job_mass) | **DELETE** /api/v3/jobs/mass-delete | Mark jobs for deletion, based on certain criteria.
|
||||||
*JobsApi* | [**delete_job_what_would_it_do**](flamenco\manager\docs/JobsApi.md#delete_job_what_would_it_do) | **GET** /api/v3/jobs/{job_id}/what-would-delete-do | Get info about what would be deleted when deleting this job. The job itself, its logs, and the last-rendered images will always be deleted. The job files are only deleted conditionally, and this operation can be used to figure that out.
|
*JobsApi* | [**delete_job_what_would_it_do**](flamenco/manager/docs/JobsApi.md#delete_job_what_would_it_do) | **GET** /api/v3/jobs/{job_id}/what-would-delete-do | Get info about what would be deleted when deleting this job. The job itself, its logs, and the last-rendered images will always be deleted. The job files are only deleted conditionally, and this operation can be used to figure that out.
|
||||||
*JobsApi* | [**fetch_global_last_rendered_info**](flamenco\manager\docs/JobsApi.md#fetch_global_last_rendered_info) | **GET** /api/v3/jobs/last-rendered | Get the URL that serves the last-rendered images.
|
*JobsApi* | [**fetch_global_last_rendered_info**](flamenco/manager/docs/JobsApi.md#fetch_global_last_rendered_info) | **GET** /api/v3/jobs/last-rendered | Get the URL that serves the last-rendered images.
|
||||||
*JobsApi* | [**fetch_job**](flamenco\manager\docs/JobsApi.md#fetch_job) | **GET** /api/v3/jobs/{job_id} | Fetch info about the job.
|
*JobsApi* | [**fetch_job**](flamenco/manager/docs/JobsApi.md#fetch_job) | **GET** /api/v3/jobs/{job_id} | Fetch info about the job.
|
||||||
*JobsApi* | [**fetch_job_blocklist**](flamenco\manager\docs/JobsApi.md#fetch_job_blocklist) | **GET** /api/v3/jobs/{job_id}/blocklist | Fetch the list of workers that are blocked from doing certain task types on this job.
|
*JobsApi* | [**fetch_job_blocklist**](flamenco/manager/docs/JobsApi.md#fetch_job_blocklist) | **GET** /api/v3/jobs/{job_id}/blocklist | Fetch the list of workers that are blocked from doing certain task types on this job.
|
||||||
*JobsApi* | [**fetch_job_last_rendered_info**](flamenco\manager\docs/JobsApi.md#fetch_job_last_rendered_info) | **GET** /api/v3/jobs/{job_id}/last-rendered | Get the URL that serves the last-rendered images of this job.
|
*JobsApi* | [**fetch_job_last_rendered_info**](flamenco/manager/docs/JobsApi.md#fetch_job_last_rendered_info) | **GET** /api/v3/jobs/{job_id}/last-rendered | Get the URL that serves the last-rendered images of this job.
|
||||||
*JobsApi* | [**fetch_job_tasks**](flamenco\manager\docs/JobsApi.md#fetch_job_tasks) | **GET** /api/v3/jobs/{job_id}/tasks | Fetch a summary of all tasks of the given job.
|
*JobsApi* | [**fetch_job_tasks**](flamenco/manager/docs/JobsApi.md#fetch_job_tasks) | **GET** /api/v3/jobs/{job_id}/tasks | Fetch a summary of all tasks of the given job.
|
||||||
*JobsApi* | [**fetch_jobs**](flamenco\manager\docs/JobsApi.md#fetch_jobs) | **GET** /api/v3/jobs | List all jobs in the database.
|
*JobsApi* | [**fetch_jobs**](flamenco/manager/docs/JobsApi.md#fetch_jobs) | **GET** /api/v3/jobs | List all jobs in the database.
|
||||||
*JobsApi* | [**fetch_task**](flamenco\manager\docs/JobsApi.md#fetch_task) | **GET** /api/v3/tasks/{task_id} | Fetch a single task.
|
*JobsApi* | [**fetch_task**](flamenco/manager/docs/JobsApi.md#fetch_task) | **GET** /api/v3/tasks/{task_id} | Fetch a single task.
|
||||||
*JobsApi* | [**fetch_task_log_info**](flamenco\manager\docs/JobsApi.md#fetch_task_log_info) | **GET** /api/v3/tasks/{task_id}/log | Get the URL of the task log, and some more info.
|
*JobsApi* | [**fetch_task_log_info**](flamenco/manager/docs/JobsApi.md#fetch_task_log_info) | **GET** /api/v3/tasks/{task_id}/log | Get the URL of the task log, and some more info.
|
||||||
*JobsApi* | [**fetch_task_log_tail**](flamenco\manager\docs/JobsApi.md#fetch_task_log_tail) | **GET** /api/v3/tasks/{task_id}/logtail | Fetch the last few lines of the task's log.
|
*JobsApi* | [**fetch_task_log_tail**](flamenco/manager/docs/JobsApi.md#fetch_task_log_tail) | **GET** /api/v3/tasks/{task_id}/logtail | Fetch the last few lines of the task's log.
|
||||||
*JobsApi* | [**get_job_type**](flamenco\manager\docs/JobsApi.md#get_job_type) | **GET** /api/v3/jobs/type/{typeName} | Get single job type and its parameters.
|
*JobsApi* | [**get_job_type**](flamenco/manager/docs/JobsApi.md#get_job_type) | **GET** /api/v3/jobs/type/{typeName} | Get single job type and its parameters.
|
||||||
*JobsApi* | [**get_job_types**](flamenco\manager\docs/JobsApi.md#get_job_types) | **GET** /api/v3/jobs/types | Get list of job types and their parameters.
|
*JobsApi* | [**get_job_types**](flamenco/manager/docs/JobsApi.md#get_job_types) | **GET** /api/v3/jobs/types | Get list of job types and their parameters.
|
||||||
*JobsApi* | [**remove_job_blocklist**](flamenco\manager\docs/JobsApi.md#remove_job_blocklist) | **DELETE** /api/v3/jobs/{job_id}/blocklist | Remove entries from a job blocklist.
|
*JobsApi* | [**remove_job_blocklist**](flamenco/manager/docs/JobsApi.md#remove_job_blocklist) | **DELETE** /api/v3/jobs/{job_id}/blocklist | Remove entries from a job blocklist.
|
||||||
*JobsApi* | [**set_job_priority**](flamenco\manager\docs/JobsApi.md#set_job_priority) | **POST** /api/v3/jobs/{job_id}/setpriority |
|
*JobsApi* | [**set_job_priority**](flamenco/manager/docs/JobsApi.md#set_job_priority) | **POST** /api/v3/jobs/{job_id}/setpriority |
|
||||||
*JobsApi* | [**set_job_status**](flamenco\manager\docs/JobsApi.md#set_job_status) | **POST** /api/v3/jobs/{job_id}/setstatus |
|
*JobsApi* | [**set_job_status**](flamenco/manager/docs/JobsApi.md#set_job_status) | **POST** /api/v3/jobs/{job_id}/setstatus |
|
||||||
*JobsApi* | [**set_task_status**](flamenco\manager\docs/JobsApi.md#set_task_status) | **POST** /api/v3/tasks/{task_id}/setstatus |
|
*JobsApi* | [**set_task_status**](flamenco/manager/docs/JobsApi.md#set_task_status) | **POST** /api/v3/tasks/{task_id}/setstatus |
|
||||||
*JobsApi* | [**submit_job**](flamenco\manager\docs/JobsApi.md#submit_job) | **POST** /api/v3/jobs | Submit a new job for Flamenco Manager to execute.
|
*JobsApi* | [**submit_job**](flamenco/manager/docs/JobsApi.md#submit_job) | **POST** /api/v3/jobs | Submit a new job for Flamenco Manager to execute.
|
||||||
*JobsApi* | [**submit_job_check**](flamenco\manager\docs/JobsApi.md#submit_job_check) | **POST** /api/v3/jobs/check | Submit a new job for Flamenco Manager to check.
|
*JobsApi* | [**submit_job_check**](flamenco/manager/docs/JobsApi.md#submit_job_check) | **POST** /api/v3/jobs/check | Submit a new job for Flamenco Manager to check.
|
||||||
*MetaApi* | [**check_blender_exe_path**](flamenco\manager\docs/MetaApi.md#check_blender_exe_path) | **POST** /api/v3/configuration/check/blender | Validate a CLI command for use as way to start Blender
|
*MetaApi* | [**check_blender_exe_path**](flamenco/manager/docs/MetaApi.md#check_blender_exe_path) | **POST** /api/v3/configuration/check/blender | Validate a CLI command for use as way to start Blender
|
||||||
*MetaApi* | [**check_shared_storage_path**](flamenco\manager\docs/MetaApi.md#check_shared_storage_path) | **POST** /api/v3/configuration/check/shared-storage | Validate a path for use as shared storage.
|
*MetaApi* | [**check_shared_storage_path**](flamenco/manager/docs/MetaApi.md#check_shared_storage_path) | **POST** /api/v3/configuration/check/shared-storage | Validate a path for use as shared storage.
|
||||||
*MetaApi* | [**find_blender_exe_path**](flamenco\manager\docs/MetaApi.md#find_blender_exe_path) | **GET** /api/v3/configuration/check/blender | Find one or more CLI commands for use as way to start Blender
|
*MetaApi* | [**find_blender_exe_path**](flamenco/manager/docs/MetaApi.md#find_blender_exe_path) | **GET** /api/v3/configuration/check/blender | Find one or more CLI commands for use as way to start Blender
|
||||||
*MetaApi* | [**get_configuration**](flamenco\manager\docs/MetaApi.md#get_configuration) | **GET** /api/v3/configuration | Get the configuration of this Manager.
|
*MetaApi* | [**get_configuration**](flamenco/manager/docs/MetaApi.md#get_configuration) | **GET** /api/v3/configuration | Get the configuration of this Manager.
|
||||||
*MetaApi* | [**get_configuration_file**](flamenco\manager\docs/MetaApi.md#get_configuration_file) | **GET** /api/v3/configuration/file | Retrieve the configuration of Flamenco Manager.
|
*MetaApi* | [**get_configuration_file**](flamenco/manager/docs/MetaApi.md#get_configuration_file) | **GET** /api/v3/configuration/file | Retrieve the configuration of Flamenco Manager.
|
||||||
*MetaApi* | [**get_farm_status**](flamenco\manager\docs/MetaApi.md#get_farm_status) | **GET** /api/v3/status | Get the status of this Flamenco farm.
|
*MetaApi* | [**get_farm_status**](flamenco/manager/docs/MetaApi.md#get_farm_status) | **GET** /api/v3/status | Get the status of this Flamenco farm.
|
||||||
*MetaApi* | [**get_shared_storage**](flamenco\manager\docs/MetaApi.md#get_shared_storage) | **GET** /api/v3/configuration/shared-storage/{audience}/{platform} | Get the shared storage location of this Manager, adjusted for the given audience and platform.
|
*MetaApi* | [**get_shared_storage**](flamenco/manager/docs/MetaApi.md#get_shared_storage) | **GET** /api/v3/configuration/shared-storage/{audience}/{platform} | Get the shared storage location of this Manager, adjusted for the given audience and platform.
|
||||||
*MetaApi* | [**get_variables**](flamenco\manager\docs/MetaApi.md#get_variables) | **GET** /api/v3/configuration/variables/{audience}/{platform} | Get the variables of this Manager. Used by the Blender add-on to recognise two-way variables, and for the web interface to do variable replacement based on the browser's platform.
|
*MetaApi* | [**get_variables**](flamenco/manager/docs/MetaApi.md#get_variables) | **GET** /api/v3/configuration/variables/{audience}/{platform} | Get the variables of this Manager. Used by the Blender add-on to recognise two-way variables, and for the web interface to do variable replacement based on the browser's platform.
|
||||||
*MetaApi* | [**get_version**](flamenco\manager\docs/MetaApi.md#get_version) | **GET** /api/v3/version | Get the Flamenco version of this Manager
|
*MetaApi* | [**get_version**](flamenco/manager/docs/MetaApi.md#get_version) | **GET** /api/v3/version | Get the Flamenco version of this Manager
|
||||||
*MetaApi* | [**save_setup_assistant_config**](flamenco\manager\docs/MetaApi.md#save_setup_assistant_config) | **POST** /api/v3/configuration/setup-assistant | Update the Manager's configuration, and restart it in fully functional mode.
|
*MetaApi* | [**save_setup_assistant_config**](flamenco/manager/docs/MetaApi.md#save_setup_assistant_config) | **POST** /api/v3/configuration/setup-assistant | Update the Manager's configuration, and restart it in fully functional mode.
|
||||||
*ShamanApi* | [**shaman_checkout**](flamenco\manager\docs/ShamanApi.md#shaman_checkout) | **POST** /api/v3/shaman/checkout/create | Create a directory, and symlink the required files into it. The files must all have been uploaded to Shaman before calling this endpoint.
|
*ShamanApi* | [**shaman_checkout**](flamenco/manager/docs/ShamanApi.md#shaman_checkout) | **POST** /api/v3/shaman/checkout/create | Create a directory, and symlink the required files into it. The files must all have been uploaded to Shaman before calling this endpoint.
|
||||||
*ShamanApi* | [**shaman_checkout_requirements**](flamenco\manager\docs/ShamanApi.md#shaman_checkout_requirements) | **POST** /api/v3/shaman/checkout/requirements | Checks a Shaman Requirements file, and reports which files are unknown.
|
*ShamanApi* | [**shaman_checkout_requirements**](flamenco/manager/docs/ShamanApi.md#shaman_checkout_requirements) | **POST** /api/v3/shaman/checkout/requirements | Checks a Shaman Requirements file, and reports which files are unknown.
|
||||||
*ShamanApi* | [**shaman_file_store**](flamenco\manager\docs/ShamanApi.md#shaman_file_store) | **POST** /api/v3/shaman/files/{checksum}/{filesize} | Store a new file on the Shaman server. Note that the Shaman server can forcibly close the HTTP connection when another client finishes uploading the exact same file, to prevent double uploads. The file's contents should be sent in the request body.
|
*ShamanApi* | [**shaman_file_store**](flamenco/manager/docs/ShamanApi.md#shaman_file_store) | **POST** /api/v3/shaman/files/{checksum}/{filesize} | Store a new file on the Shaman server. Note that the Shaman server can forcibly close the HTTP connection when another client finishes uploading the exact same file, to prevent double uploads. The file's contents should be sent in the request body.
|
||||||
*ShamanApi* | [**shaman_file_store_check**](flamenco\manager\docs/ShamanApi.md#shaman_file_store_check) | **GET** /api/v3/shaman/files/{checksum}/{filesize} | Check the status of a file on the Shaman server.
|
*ShamanApi* | [**shaman_file_store_check**](flamenco/manager/docs/ShamanApi.md#shaman_file_store_check) | **GET** /api/v3/shaman/files/{checksum}/{filesize} | Check the status of a file on the Shaman server.
|
||||||
*WorkerApi* | [**may_worker_run**](flamenco\manager\docs/WorkerApi.md#may_worker_run) | **GET** /api/v3/worker/task/{task_id}/may-i-run | The response indicates whether the worker is allowed to run / keep running the task. Optionally contains a queued worker status change.
|
*WorkerApi* | [**may_worker_run**](flamenco/manager/docs/WorkerApi.md#may_worker_run) | **GET** /api/v3/worker/task/{task_id}/may-i-run | The response indicates whether the worker is allowed to run / keep running the task. Optionally contains a queued worker status change.
|
||||||
*WorkerApi* | [**register_worker**](flamenco\manager\docs/WorkerApi.md#register_worker) | **POST** /api/v3/worker/register-worker | Register a new worker
|
*WorkerApi* | [**register_worker**](flamenco/manager/docs/WorkerApi.md#register_worker) | **POST** /api/v3/worker/register-worker | Register a new worker
|
||||||
*WorkerApi* | [**schedule_task**](flamenco\manager\docs/WorkerApi.md#schedule_task) | **POST** /api/v3/worker/task | Obtain a new task to execute
|
*WorkerApi* | [**schedule_task**](flamenco/manager/docs/WorkerApi.md#schedule_task) | **POST** /api/v3/worker/task | Obtain a new task to execute
|
||||||
*WorkerApi* | [**sign_off**](flamenco\manager\docs/WorkerApi.md#sign_off) | **POST** /api/v3/worker/sign-off | Mark the worker as offline
|
*WorkerApi* | [**sign_off**](flamenco/manager/docs/WorkerApi.md#sign_off) | **POST** /api/v3/worker/sign-off | Mark the worker as offline
|
||||||
*WorkerApi* | [**sign_on**](flamenco\manager\docs/WorkerApi.md#sign_on) | **POST** /api/v3/worker/sign-on | Authenticate & sign in the worker.
|
*WorkerApi* | [**sign_on**](flamenco/manager/docs/WorkerApi.md#sign_on) | **POST** /api/v3/worker/sign-on | Authenticate & sign in the worker.
|
||||||
*WorkerApi* | [**task_output_produced**](flamenco\manager\docs/WorkerApi.md#task_output_produced) | **POST** /api/v3/worker/task/{task_id}/output-produced | Store the most recently rendered frame here. Note that it is up to the Worker to ensure this is in a format that's digestable by the Manager. Currently only PNG and JPEG support is planned.
|
*WorkerApi* | [**task_output_produced**](flamenco/manager/docs/WorkerApi.md#task_output_produced) | **POST** /api/v3/worker/task/{task_id}/output-produced | Store the most recently rendered frame here. Note that it is up to the Worker to ensure this is in a format that's digestable by the Manager. Currently only PNG and JPEG support is planned.
|
||||||
*WorkerApi* | [**task_update**](flamenco\manager\docs/WorkerApi.md#task_update) | **POST** /api/v3/worker/task/{task_id} | Update the task, typically to indicate progress, completion, or failure.
|
*WorkerApi* | [**task_update**](flamenco/manager/docs/WorkerApi.md#task_update) | **POST** /api/v3/worker/task/{task_id} | Update the task, typically to indicate progress, completion, or failure.
|
||||||
*WorkerApi* | [**worker_state**](flamenco\manager\docs/WorkerApi.md#worker_state) | **GET** /api/v3/worker/state |
|
*WorkerApi* | [**worker_state**](flamenco/manager/docs/WorkerApi.md#worker_state) | **GET** /api/v3/worker/state |
|
||||||
*WorkerApi* | [**worker_state_changed**](flamenco\manager\docs/WorkerApi.md#worker_state_changed) | **POST** /api/v3/worker/state-changed | Worker changed state. This could be as acknowledgement of a Manager-requested state change, or in response to worker-local signals.
|
*WorkerApi* | [**worker_state_changed**](flamenco/manager/docs/WorkerApi.md#worker_state_changed) | **POST** /api/v3/worker/state-changed | Worker changed state. This could be as acknowledgement of a Manager-requested state change, or in response to worker-local signals.
|
||||||
*WorkerMgtApi* | [**create_worker_tag**](flamenco\manager\docs/WorkerMgtApi.md#create_worker_tag) | **POST** /api/v3/worker-mgt/tags | Create a new worker tag.
|
*WorkerMgtApi* | [**create_worker_tag**](flamenco/manager/docs/WorkerMgtApi.md#create_worker_tag) | **POST** /api/v3/worker-mgt/tags | Create a new worker tag.
|
||||||
*WorkerMgtApi* | [**delete_worker**](flamenco\manager\docs/WorkerMgtApi.md#delete_worker) | **DELETE** /api/v3/worker-mgt/workers/{worker_id} | Remove the given worker. It is recommended to only call this function when the worker is in `offline` state. If the worker is still running, stop it first. Any task still assigned to the worker will be requeued.
|
*WorkerMgtApi* | [**delete_worker**](flamenco/manager/docs/WorkerMgtApi.md#delete_worker) | **DELETE** /api/v3/worker-mgt/workers/{worker_id} | Remove the given worker. It is recommended to only call this function when the worker is in `offline` state. If the worker is still running, stop it first. Any task still assigned to the worker will be requeued.
|
||||||
*WorkerMgtApi* | [**delete_worker_tag**](flamenco\manager\docs/WorkerMgtApi.md#delete_worker_tag) | **DELETE** /api/v3/worker-mgt/tag/{tag_id} | Remove this worker tag. This unassigns all workers from the tag and removes it.
|
*WorkerMgtApi* | [**delete_worker_tag**](flamenco/manager/docs/WorkerMgtApi.md#delete_worker_tag) | **DELETE** /api/v3/worker-mgt/tag/{tag_id} | Remove this worker tag. This unassigns all workers from the tag and removes it.
|
||||||
*WorkerMgtApi* | [**fetch_worker**](flamenco\manager\docs/WorkerMgtApi.md#fetch_worker) | **GET** /api/v3/worker-mgt/workers/{worker_id} | Fetch info about the worker.
|
*WorkerMgtApi* | [**fetch_worker**](flamenco/manager/docs/WorkerMgtApi.md#fetch_worker) | **GET** /api/v3/worker-mgt/workers/{worker_id} | Fetch info about the worker.
|
||||||
*WorkerMgtApi* | [**fetch_worker_sleep_schedule**](flamenco\manager\docs/WorkerMgtApi.md#fetch_worker_sleep_schedule) | **GET** /api/v3/worker-mgt/workers/{worker_id}/sleep-schedule |
|
*WorkerMgtApi* | [**fetch_worker_sleep_schedule**](flamenco/manager/docs/WorkerMgtApi.md#fetch_worker_sleep_schedule) | **GET** /api/v3/worker-mgt/workers/{worker_id}/sleep-schedule |
|
||||||
*WorkerMgtApi* | [**fetch_worker_tag**](flamenco\manager\docs/WorkerMgtApi.md#fetch_worker_tag) | **GET** /api/v3/worker-mgt/tag/{tag_id} | Get a single worker tag.
|
*WorkerMgtApi* | [**fetch_worker_tag**](flamenco/manager/docs/WorkerMgtApi.md#fetch_worker_tag) | **GET** /api/v3/worker-mgt/tag/{tag_id} | Get a single worker tag.
|
||||||
*WorkerMgtApi* | [**fetch_worker_tags**](flamenco\manager\docs/WorkerMgtApi.md#fetch_worker_tags) | **GET** /api/v3/worker-mgt/tags | Get list of worker tags.
|
*WorkerMgtApi* | [**fetch_worker_tags**](flamenco/manager/docs/WorkerMgtApi.md#fetch_worker_tags) | **GET** /api/v3/worker-mgt/tags | Get list of worker tags.
|
||||||
*WorkerMgtApi* | [**fetch_workers**](flamenco\manager\docs/WorkerMgtApi.md#fetch_workers) | **GET** /api/v3/worker-mgt/workers | Get list of workers.
|
*WorkerMgtApi* | [**fetch_workers**](flamenco/manager/docs/WorkerMgtApi.md#fetch_workers) | **GET** /api/v3/worker-mgt/workers | Get list of workers.
|
||||||
*WorkerMgtApi* | [**request_worker_status_change**](flamenco\manager\docs/WorkerMgtApi.md#request_worker_status_change) | **POST** /api/v3/worker-mgt/workers/{worker_id}/setstatus |
|
*WorkerMgtApi* | [**request_worker_status_change**](flamenco/manager/docs/WorkerMgtApi.md#request_worker_status_change) | **POST** /api/v3/worker-mgt/workers/{worker_id}/setstatus |
|
||||||
*WorkerMgtApi* | [**set_worker_sleep_schedule**](flamenco\manager\docs/WorkerMgtApi.md#set_worker_sleep_schedule) | **POST** /api/v3/worker-mgt/workers/{worker_id}/sleep-schedule |
|
*WorkerMgtApi* | [**set_worker_sleep_schedule**](flamenco/manager/docs/WorkerMgtApi.md#set_worker_sleep_schedule) | **POST** /api/v3/worker-mgt/workers/{worker_id}/sleep-schedule |
|
||||||
*WorkerMgtApi* | [**set_worker_tags**](flamenco\manager\docs/WorkerMgtApi.md#set_worker_tags) | **POST** /api/v3/worker-mgt/workers/{worker_id}/settags |
|
*WorkerMgtApi* | [**set_worker_tags**](flamenco/manager/docs/WorkerMgtApi.md#set_worker_tags) | **POST** /api/v3/worker-mgt/workers/{worker_id}/settags |
|
||||||
*WorkerMgtApi* | [**update_worker_tag**](flamenco\manager\docs/WorkerMgtApi.md#update_worker_tag) | **PUT** /api/v3/worker-mgt/tag/{tag_id} | Update an existing worker tag.
|
*WorkerMgtApi* | [**update_worker_tag**](flamenco/manager/docs/WorkerMgtApi.md#update_worker_tag) | **PUT** /api/v3/worker-mgt/tag/{tag_id} | Update an existing worker tag.
|
||||||
|
|
||||||
|
|
||||||
## Documentation For Models
|
## Documentation For Models
|
||||||
|
|
||||||
- [AssignedTask](flamenco\manager\docs/AssignedTask.md)
|
- [AssignedTask](flamenco/manager/docs/AssignedTask.md)
|
||||||
- [AvailableJobSetting](flamenco\manager\docs/AvailableJobSetting.md)
|
- [AvailableJobSetting](flamenco/manager/docs/AvailableJobSetting.md)
|
||||||
- [AvailableJobSettingEvalInfo](flamenco\manager\docs/AvailableJobSettingEvalInfo.md)
|
- [AvailableJobSettingEvalInfo](flamenco/manager/docs/AvailableJobSettingEvalInfo.md)
|
||||||
- [AvailableJobSettingSubtype](flamenco\manager\docs/AvailableJobSettingSubtype.md)
|
- [AvailableJobSettingSubtype](flamenco/manager/docs/AvailableJobSettingSubtype.md)
|
||||||
- [AvailableJobSettingType](flamenco\manager\docs/AvailableJobSettingType.md)
|
- [AvailableJobSettingType](flamenco/manager/docs/AvailableJobSettingType.md)
|
||||||
- [AvailableJobSettingVisibility](flamenco\manager\docs/AvailableJobSettingVisibility.md)
|
- [AvailableJobSettingVisibility](flamenco/manager/docs/AvailableJobSettingVisibility.md)
|
||||||
- [AvailableJobType](flamenco\manager\docs/AvailableJobType.md)
|
- [AvailableJobType](flamenco/manager/docs/AvailableJobType.md)
|
||||||
- [AvailableJobTypes](flamenco\manager\docs/AvailableJobTypes.md)
|
- [AvailableJobTypes](flamenco/manager/docs/AvailableJobTypes.md)
|
||||||
- [BlenderPathCheckResult](flamenco\manager\docs/BlenderPathCheckResult.md)
|
- [BlenderPathCheckResult](flamenco/manager/docs/BlenderPathCheckResult.md)
|
||||||
- [BlenderPathFindResult](flamenco\manager\docs/BlenderPathFindResult.md)
|
- [BlenderPathFindResult](flamenco/manager/docs/BlenderPathFindResult.md)
|
||||||
- [BlenderPathSource](flamenco\manager\docs/BlenderPathSource.md)
|
- [BlenderPathSource](flamenco/manager/docs/BlenderPathSource.md)
|
||||||
- [Command](flamenco\manager\docs/Command.md)
|
- [Command](flamenco/manager/docs/Command.md)
|
||||||
- [Error](flamenco\manager\docs/Error.md)
|
- [Error](flamenco/manager/docs/Error.md)
|
||||||
- [EventFarmStatus](flamenco\manager\docs/EventFarmStatus.md)
|
- [EventFarmStatus](flamenco/manager/docs/EventFarmStatus.md)
|
||||||
- [EventJobUpdate](flamenco\manager\docs/EventJobUpdate.md)
|
- [EventJobUpdate](flamenco/manager/docs/EventJobUpdate.md)
|
||||||
- [EventLastRenderedUpdate](flamenco\manager\docs/EventLastRenderedUpdate.md)
|
- [EventLastRenderedUpdate](flamenco/manager/docs/EventLastRenderedUpdate.md)
|
||||||
- [EventLifeCycle](flamenco\manager\docs/EventLifeCycle.md)
|
- [EventLifeCycle](flamenco/manager/docs/EventLifeCycle.md)
|
||||||
- [EventTaskLogUpdate](flamenco\manager\docs/EventTaskLogUpdate.md)
|
- [EventTaskLogUpdate](flamenco/manager/docs/EventTaskLogUpdate.md)
|
||||||
- [EventTaskUpdate](flamenco\manager\docs/EventTaskUpdate.md)
|
- [EventTaskUpdate](flamenco/manager/docs/EventTaskUpdate.md)
|
||||||
- [EventWorkerTagUpdate](flamenco\manager\docs/EventWorkerTagUpdate.md)
|
- [EventWorkerTagUpdate](flamenco/manager/docs/EventWorkerTagUpdate.md)
|
||||||
- [EventWorkerUpdate](flamenco\manager\docs/EventWorkerUpdate.md)
|
- [EventWorkerUpdate](flamenco/manager/docs/EventWorkerUpdate.md)
|
||||||
- [FarmStatus](flamenco\manager\docs/FarmStatus.md)
|
- [FarmStatus](flamenco/manager/docs/FarmStatus.md)
|
||||||
- [FarmStatusReport](flamenco\manager\docs/FarmStatusReport.md)
|
- [FarmStatusReport](flamenco/manager/docs/FarmStatusReport.md)
|
||||||
- [FlamencoVersion](flamenco\manager\docs/FlamencoVersion.md)
|
- [FlamencoVersion](flamenco/manager/docs/FlamencoVersion.md)
|
||||||
- [Job](flamenco\manager\docs/Job.md)
|
- [Job](flamenco/manager/docs/Job.md)
|
||||||
- [JobAllOf](flamenco\manager\docs/JobAllOf.md)
|
- [JobAllOf](flamenco/manager/docs/JobAllOf.md)
|
||||||
- [JobBlocklist](flamenco\manager\docs/JobBlocklist.md)
|
- [JobBlocklist](flamenco/manager/docs/JobBlocklist.md)
|
||||||
- [JobBlocklistEntry](flamenco\manager\docs/JobBlocklistEntry.md)
|
- [JobBlocklistEntry](flamenco/manager/docs/JobBlocklistEntry.md)
|
||||||
- [JobDeletionInfo](flamenco\manager\docs/JobDeletionInfo.md)
|
- [JobDeletionInfo](flamenco/manager/docs/JobDeletionInfo.md)
|
||||||
- [JobLastRenderedImageInfo](flamenco\manager\docs/JobLastRenderedImageInfo.md)
|
- [JobLastRenderedImageInfo](flamenco/manager/docs/JobLastRenderedImageInfo.md)
|
||||||
- [JobMassDeletionSelection](flamenco\manager\docs/JobMassDeletionSelection.md)
|
- [JobMassDeletionSelection](flamenco/manager/docs/JobMassDeletionSelection.md)
|
||||||
- [JobMetadata](flamenco\manager\docs/JobMetadata.md)
|
- [JobMetadata](flamenco/manager/docs/JobMetadata.md)
|
||||||
- [JobPriorityChange](flamenco\manager\docs/JobPriorityChange.md)
|
- [JobPriorityChange](flamenco/manager/docs/JobPriorityChange.md)
|
||||||
- [JobSettings](flamenco\manager\docs/JobSettings.md)
|
- [JobSettings](flamenco/manager/docs/JobSettings.md)
|
||||||
- [JobStatus](flamenco\manager\docs/JobStatus.md)
|
- [JobStatus](flamenco/manager/docs/JobStatus.md)
|
||||||
- [JobStatusChange](flamenco\manager\docs/JobStatusChange.md)
|
- [JobStatusChange](flamenco/manager/docs/JobStatusChange.md)
|
||||||
- [JobStorageInfo](flamenco\manager\docs/JobStorageInfo.md)
|
- [JobStorageInfo](flamenco/manager/docs/JobStorageInfo.md)
|
||||||
- [JobTasksSummary](flamenco\manager\docs/JobTasksSummary.md)
|
- [JobTasksSummary](flamenco/manager/docs/JobTasksSummary.md)
|
||||||
- [JobsQuery](flamenco\manager\docs/JobsQuery.md)
|
- [JobsQuery](flamenco/manager/docs/JobsQuery.md)
|
||||||
- [JobsQueryResult](flamenco\manager\docs/JobsQueryResult.md)
|
- [JobsQueryResult](flamenco/manager/docs/JobsQueryResult.md)
|
||||||
- [LifeCycleEventType](flamenco\manager\docs/LifeCycleEventType.md)
|
- [LifeCycleEventType](flamenco/manager/docs/LifeCycleEventType.md)
|
||||||
- [ManagerConfiguration](flamenco\manager\docs/ManagerConfiguration.md)
|
- [ManagerConfiguration](flamenco/manager/docs/ManagerConfiguration.md)
|
||||||
- [ManagerVariable](flamenco\manager\docs/ManagerVariable.md)
|
- [ManagerVariable](flamenco/manager/docs/ManagerVariable.md)
|
||||||
- [ManagerVariableAudience](flamenco\manager\docs/ManagerVariableAudience.md)
|
- [ManagerVariableAudience](flamenco/manager/docs/ManagerVariableAudience.md)
|
||||||
- [ManagerVariables](flamenco\manager\docs/ManagerVariables.md)
|
- [ManagerVariables](flamenco/manager/docs/ManagerVariables.md)
|
||||||
- [MayKeepRunning](flamenco\manager\docs/MayKeepRunning.md)
|
- [MayKeepRunning](flamenco/manager/docs/MayKeepRunning.md)
|
||||||
- [PathCheckInput](flamenco\manager\docs/PathCheckInput.md)
|
- [PathCheckInput](flamenco/manager/docs/PathCheckInput.md)
|
||||||
- [PathCheckResult](flamenco\manager\docs/PathCheckResult.md)
|
- [PathCheckResult](flamenco/manager/docs/PathCheckResult.md)
|
||||||
- [RegisteredWorker](flamenco\manager\docs/RegisteredWorker.md)
|
- [RegisteredWorker](flamenco/manager/docs/RegisteredWorker.md)
|
||||||
- [SecurityError](flamenco\manager\docs/SecurityError.md)
|
- [SecurityError](flamenco/manager/docs/SecurityError.md)
|
||||||
- [SetupAssistantConfig](flamenco\manager\docs/SetupAssistantConfig.md)
|
- [SetupAssistantConfig](flamenco/manager/docs/SetupAssistantConfig.md)
|
||||||
- [ShamanCheckout](flamenco\manager\docs/ShamanCheckout.md)
|
- [ShamanCheckout](flamenco/manager/docs/ShamanCheckout.md)
|
||||||
- [ShamanCheckoutResult](flamenco\manager\docs/ShamanCheckoutResult.md)
|
- [ShamanCheckoutResult](flamenco/manager/docs/ShamanCheckoutResult.md)
|
||||||
- [ShamanFileSpec](flamenco\manager\docs/ShamanFileSpec.md)
|
- [ShamanFileSpec](flamenco/manager/docs/ShamanFileSpec.md)
|
||||||
- [ShamanFileSpecWithStatus](flamenco\manager\docs/ShamanFileSpecWithStatus.md)
|
- [ShamanFileSpecWithStatus](flamenco/manager/docs/ShamanFileSpecWithStatus.md)
|
||||||
- [ShamanFileStatus](flamenco\manager\docs/ShamanFileStatus.md)
|
- [ShamanFileStatus](flamenco/manager/docs/ShamanFileStatus.md)
|
||||||
- [ShamanRequirementsRequest](flamenco\manager\docs/ShamanRequirementsRequest.md)
|
- [ShamanRequirementsRequest](flamenco/manager/docs/ShamanRequirementsRequest.md)
|
||||||
- [ShamanRequirementsResponse](flamenco\manager\docs/ShamanRequirementsResponse.md)
|
- [ShamanRequirementsResponse](flamenco/manager/docs/ShamanRequirementsResponse.md)
|
||||||
- [ShamanSingleFileStatus](flamenco\manager\docs/ShamanSingleFileStatus.md)
|
- [ShamanSingleFileStatus](flamenco/manager/docs/ShamanSingleFileStatus.md)
|
||||||
- [SharedStorageLocation](flamenco\manager\docs/SharedStorageLocation.md)
|
- [SharedStorageLocation](flamenco/manager/docs/SharedStorageLocation.md)
|
||||||
- [SocketIOSubscription](flamenco\manager\docs/SocketIOSubscription.md)
|
- [SocketIOSubscription](flamenco/manager/docs/SocketIOSubscription.md)
|
||||||
- [SocketIOSubscriptionOperation](flamenco\manager\docs/SocketIOSubscriptionOperation.md)
|
- [SocketIOSubscriptionOperation](flamenco/manager/docs/SocketIOSubscriptionOperation.md)
|
||||||
- [SocketIOSubscriptionType](flamenco\manager\docs/SocketIOSubscriptionType.md)
|
- [SocketIOSubscriptionType](flamenco/manager/docs/SocketIOSubscriptionType.md)
|
||||||
- [SubmittedJob](flamenco\manager\docs/SubmittedJob.md)
|
- [SubmittedJob](flamenco/manager/docs/SubmittedJob.md)
|
||||||
- [Task](flamenco\manager\docs/Task.md)
|
- [Task](flamenco/manager/docs/Task.md)
|
||||||
- [TaskLogInfo](flamenco\manager\docs/TaskLogInfo.md)
|
- [TaskLogInfo](flamenco/manager/docs/TaskLogInfo.md)
|
||||||
- [TaskStatus](flamenco\manager\docs/TaskStatus.md)
|
- [TaskStatus](flamenco/manager/docs/TaskStatus.md)
|
||||||
- [TaskStatusChange](flamenco\manager\docs/TaskStatusChange.md)
|
- [TaskStatusChange](flamenco/manager/docs/TaskStatusChange.md)
|
||||||
- [TaskSummary](flamenco\manager\docs/TaskSummary.md)
|
- [TaskSummary](flamenco/manager/docs/TaskSummary.md)
|
||||||
- [TaskUpdate](flamenco\manager\docs/TaskUpdate.md)
|
- [TaskUpdate](flamenco/manager/docs/TaskUpdate.md)
|
||||||
- [TaskWorker](flamenco\manager\docs/TaskWorker.md)
|
- [TaskWorker](flamenco/manager/docs/TaskWorker.md)
|
||||||
- [Worker](flamenco\manager\docs/Worker.md)
|
- [Worker](flamenco/manager/docs/Worker.md)
|
||||||
- [WorkerAllOf](flamenco\manager\docs/WorkerAllOf.md)
|
- [WorkerAllOf](flamenco/manager/docs/WorkerAllOf.md)
|
||||||
- [WorkerList](flamenco\manager\docs/WorkerList.md)
|
- [WorkerList](flamenco/manager/docs/WorkerList.md)
|
||||||
- [WorkerRegistration](flamenco\manager\docs/WorkerRegistration.md)
|
- [WorkerRegistration](flamenco/manager/docs/WorkerRegistration.md)
|
||||||
- [WorkerSignOn](flamenco\manager\docs/WorkerSignOn.md)
|
- [WorkerSignOn](flamenco/manager/docs/WorkerSignOn.md)
|
||||||
- [WorkerSleepSchedule](flamenco\manager\docs/WorkerSleepSchedule.md)
|
- [WorkerSleepSchedule](flamenco/manager/docs/WorkerSleepSchedule.md)
|
||||||
- [WorkerStateChange](flamenco\manager\docs/WorkerStateChange.md)
|
- [WorkerStateChange](flamenco/manager/docs/WorkerStateChange.md)
|
||||||
- [WorkerStateChanged](flamenco\manager\docs/WorkerStateChanged.md)
|
- [WorkerStateChanged](flamenco/manager/docs/WorkerStateChanged.md)
|
||||||
- [WorkerStatus](flamenco\manager\docs/WorkerStatus.md)
|
- [WorkerStatus](flamenco/manager/docs/WorkerStatus.md)
|
||||||
- [WorkerStatusChangeRequest](flamenco\manager\docs/WorkerStatusChangeRequest.md)
|
- [WorkerStatusChangeRequest](flamenco/manager/docs/WorkerStatusChangeRequest.md)
|
||||||
- [WorkerSummary](flamenco\manager\docs/WorkerSummary.md)
|
- [WorkerSummary](flamenco/manager/docs/WorkerSummary.md)
|
||||||
- [WorkerTag](flamenco\manager\docs/WorkerTag.md)
|
- [WorkerTag](flamenco/manager/docs/WorkerTag.md)
|
||||||
- [WorkerTagChangeRequest](flamenco\manager\docs/WorkerTagChangeRequest.md)
|
- [WorkerTagChangeRequest](flamenco/manager/docs/WorkerTagChangeRequest.md)
|
||||||
- [WorkerTagList](flamenco\manager\docs/WorkerTagList.md)
|
- [WorkerTagList](flamenco/manager/docs/WorkerTagList.md)
|
||||||
- [WorkerTask](flamenco\manager\docs/WorkerTask.md)
|
- [WorkerTask](flamenco/manager/docs/WorkerTask.md)
|
||||||
- [WorkerTaskAllOf](flamenco\manager\docs/WorkerTaskAllOf.md)
|
- [WorkerTaskAllOf](flamenco/manager/docs/WorkerTaskAllOf.md)
|
||||||
|
|
||||||
|
|
||||||
## Documentation For Authorization
|
## Documentation For Authorization
|
||||||
|
85
pkg/api/openapi_spec.gen.go
generated
85
pkg/api/openapi_spec.gen.go
generated
@ -204,48 +204,49 @@ var swaggerSpec = []string{
|
|||||||
"3fwVCox2BUb36k5++GFn3qCkuuub6KupR2Z1u99m1roX8G+3fvE6HSK3NETeqUsUlvqqO1lGe5o2BMzg",
|
"3fwVCox2BUb36k5++GFn3qCkuuub6KupR2Z1u99m1roX8G+3fvE6HSK3NETeqUsUlvqqO1lGe5o2BMzg",
|
||||||
"vqwj3h4j/7mRcRgzqlii4kpLWp+D7SyfshkriW+U6vrRZDaZ8XxwsP/D+cAjVh3QBEoF+Pd0VQon0tfb",
|
"vqwj3h4j/7mRcRgzqlii4kpLWp+D7SyfshkriW+U6vrRZDaZ8XxwsP/D+cAjVh3QBEoF+Pd0VQon0tfb",
|
||||||
"U16Ow3g235m2c+AYAkUzJXEMJXMmBSMsUzBOXeM7tkzAFgDgglHMtrcg/H9GOM3oGRWj52afo3cwwCAC",
|
"U16Ow3g235m2c+AYAkUzJXEMJXMmBSMsUzBOXeM7tkzAFgDgglHMtrcg/H9GOM3oGRWj52afo3cwwCAC",
|
||||||
"w6APZgyGsuRzLmgGc5rxob0NFhHPZFh03Hfw5Tro6WQ78PKQalslz9WJEoRyeANaN805BgNv2tsbu7DR",
|
"w6APZgyGsuRzLmgGc5rxob0NFhHPZFh03Hfw5Tro6WQ78PKQalslz9WJEoRyeANaN81B8Hz97vSMMA6l",
|
||||||
"S7uwwcZYpW3kGZlopkdKl4zmTQrhNfUpF+Z+DzfnTD/DOVSr7fcN7IpODO2aFA/2f9j0ukXHBiJakoOB",
|
"3aaMPD19dnwM5R1EIiFIy8in5O3LZ+Rg/8Fj8h29pOT18esX+AIX8+/H5FhYHRJKXiauRLt7A+eYMvLu",
|
||||||
"lY+jI5T2c6MOYPzjlOkls8huwRlEA3mt3YaDzHzbcll26I4XnR0ug7LzMNKpBy+xyypef2vdDaxvjkU8",
|
"7OXoh23A+cbCYvTSwmKwMTxqGxFKJprpkdIlo3mTKHnjwJQLQ1KGm9O0n+EcqtVp/AamTCf5dq2YB/s/",
|
||||||
"FzQoZ2TKzId+/umqce9Qopj0XqEjYs5sYqv8AXVphIV+4TD2DRwIOIMNZO/nO6QZKNl4CPdzJsuET7MV",
|
"bHrd3oAG7lsqh7Gcj6MjlPZzo4FgyOWU6SWz98uCMwhA8oYCG4Ey853SZdkhdV5ad9cH9KuHkeZASDdc",
|
||||||
"STJpGx38dHZ2QhIpBEYQuwZCEooxWsJrK1Kqxnkxwj7QRBNFc2YlSS1dszGSysoIefiBgh6v+BZm4eFt",
|
"IvN6QuEufX1ZLa67OEU5I1NmPvTzT1eNq45CzKT31h4Rc2YTW1gQCFojEvULR85vYHrAjGzsfD+rI83Y",
|
||||||
"quvxRU6ATGW66mWlYbq3maLWLrpgaUiO3nHSF+D3kpb5ad2q5JYEo3qWtyB637w4VOg84KqO0JvRMt+Q",
|
"zMZDIAkzWSZ8mq1Ikkl7cX86OzshiRQCg5ZdzyIJRMLSelsEUzXOixH2gSaaKJozK7xq6fqbkVRWRq7E",
|
||||||
"v45Td0Zh7UEC+IF1du+j7Y9zvd6ADyXhtgpb9e127qaB1Zb1jzqesGyrmMk7aplvNn5aY/aMfLHm5Pds",
|
"DxS0lcW3MPEPb1NdAjByAmQq01Uv9w4zzM0UtULTBUtDWPW+mr6Ywpe0zE/r7ii3JIvVs7wFaf/m9ahC",
|
||||||
"V5H1p+/6VH0rSOD2sw4XoPOUw4eegLC2xAkfLqgiApqtkBXTdwudwgiOTpMvsMHJnGE4Pe59gwPRFplp",
|
"fwVXdVDgjJb5hpR5nLozCmsPEsAPDMJ7H21Lnuv1PgOoQrdVpKzv8HM3bbq2k0DU14WVYsVM3lFnQLPX",
|
||||||
"hW24IccbEE9D5+MtkO/MvHh3kE+zD3qvyCgXOxbtOWsD51vBqyCujCpNZmxpuxIFSIYd47eiXuEnfjzX",
|
"1BpLa+SLNSe/ZxuZrD991xrrW0ECt591uADNrhw+9MSgtYVc+HBBFRHQ34WsmL5b6BQGjXT6ioHZT+YM",
|
||||||
"6WgtVm0XVBE0LvqiWPX5Lbid9nHffFwFssBvILACu4L5RCZwY7DZjCXaqQXQ6RdHoIosWZa107rMt4za",
|
"I/hx7xt8lrauTStSxA053oB4Gpotb4F8Z+bFu4N8mn3Qe0VGudixTtBZGzjfCl4FoWxUaTJjS9sIKUAy",
|
||||||
"IhqLKqdCYQw5CPfggr/itFvYoy6Xbe4IFM93NwoDQuFi1fdqQrhQmtF2ElRQgry3WowvFn57UriVc91U",
|
"bFK/FfUKP/HjueZKa7FquziOoFfSF8Wqz2807nSs++ZDOZAFfgOxHNiIzOdOgeeEzWYs0U4tgObCOAJV",
|
||||||
"NxbCvcDcaAJeV1lZL4ejaqx8U2vsxuZM6NrmZPsEPFpPF9Fw8BhG+VzvaTo3JzHfLhunrvq8rSFD03md",
|
"ZMmyrJ1JZr5l1NbtWFQ5FQrD1kG4B6//FafdWiJ1hW5zR6Bev7tRGIMKF6u+VxPChdKMtvOugqrnvQVq",
|
||||||
"GHOXI9jDsv5QBh0uQyWwILRqtHT2Yf5md+gbMWMoyOmuj7EG84aQ9zVg/XyIHFTsjpPxYPMRFPZCf/ha",
|
"fH3y25PCrZzrprqxEO4F5kbf8bqwy3o5HFVj5ftoYwM4Z7XXNg3c5/zRerqIhoPHMMrnek/TuTmJ+XYJ",
|
||||||
"71634Xvzz8D2iioCU6zu1gTq5+eOG+Fp00BbALuhQdBgmu2I6a8Tlpa4O9nJtqoeFRjVACX4tkGWBqIN",
|
"QHWh6W0NGZrO61ycuxw0H3YSgMrrcBkqgTWoVaOLtM8sMLtDd4wZQ0EaeX2MNZg3RNmvAevnQ+SgSHic",
|
||||||
"7TahFYrNI6ZN3OwjZBtiBf2BqS9yzV715HvUzerVeE025jJ8rf+exYvfQhDEV78AuyH+F6R00Nm/DgVC",
|
"jAebj6CwF/rD13r3ug3fm38GtldUEZhiQbkmUD8/d9wIT5t52gLYDQ2CBtNsE05/nbCaxd1JiLaF/KjA",
|
||||||
"e7KLC4JGIMq7fIZEydpemtAss4bSSyGXEMb27t3x87tzCX0AjGDLXa8fSiJN1IvftqDj46YL9wVuW99V",
|
"QAqo+rcNsjQQbWi3Cd1XbOoybeJmHyHbEJ7oD0x9kWv2qifFpO6Pr8ZrEkCX4Wv99yxebxfiLr76BdgN",
|
||||||
"+wt4QdxaN901tRWMbDKJ+9SJug2HS6xCfhd4ex9t/4gdRK+tVEo/7O2nQ3dKSVvc8TzKxkLeTYnPaUtL",
|
"8b8gpTOXKYg+QnuyC0WC3iPKe5mGRMnaXprQLLOG0kshlxA59+7d8fO7cwl9zI1gy12vH0oiTdSL37ag",
|
||||||
"26vwWOPNT2Se+8bG4ANOIGQZHFC2/GttQFn6VjFckIltUzYB5Qo9qM2XMGTF9kgaGiZeEK7JjJdKj8lT",
|
"yeSmC/cFblvfVfsLeEHcWjfdNbUVjGz+ivvUiboNh0usKH8XeHsfbcuKHUSvrVRKP+ztZ2B3qldb3PE8",
|
||||||
"sUKLDL4WtiMJhnE+VyDrle8DdjO586vi1OcmBWs47rZp1Uvfm2wbeYWkTEMrfn/Ezq673c3fxqpkdf5u",
|
"yoZf3k2Jz2lLS9se8VjjzU9knvteyuB2TiBKGhxQtuJsbUBZ+u40XJCJ7Yw2AeUKnbbNlzBKxrZlGhom",
|
||||||
"w64vfXS3JUREm5DdBWPTHbED9SLgdtYgh9E7IaUTqHsNnQ15+ptAw07jsB4c7Mro5Pi5apgQar+16zNO",
|
"XhCuyYyXSo/JU7FCiwy+FnZACYZxbl4g65VvPXYzufOr4tTnJgVrOO62mdxL3w5tG3mFpExD939/xM6u",
|
||||||
"5OyfE0eDYusGUggNteCFt4D9ujt+ZowVIxV0Jt7E5ZqtjL8lltfc2Tb9PsCb3+jdvC6pm4VCnZCxL+8m",
|
"u93N38aqZHX+bo+wL310tyVERPue3QVj0x2xA/Ui4HbWIIfROyGlE6h7DZ0NefqbQMNOr7IeHOzK6OT4",
|
||||||
"Cm6gXF8VI26Nk25CBpej3T7FG1umfO/or2qXuiFtMgKcLJ1lrdFzN4LmLTcG9udj5Qj/Xie/4Yte3r69",
|
"uWqYEGq/tWttTuTsnxNHg/ruBlIIDbXghbeA/bo7fmaMFSMVNEPexOWa3ZO/JZbX3Nk2LUbAm99oF70u",
|
||||||
"838b9AxcZ32SxK3+i5pmHCRY2i+ud9wpdyfGzi2/YV7pKAodGa0+EsPy6i9VBKmMvjeSs9ka0YvPxZvZ",
|
"j5yFQp2QsS/vJgpuoFxfFSNujZNuQgaXFt4+xRtbpny76q9ql7ohbTICnCydZa3R5jeC5i03BrYEZOUI",
|
||||||
"bCsXzN2Dpe2iCSS20T/zb9CSs1WbMtB5qSJ1C/C1AH9GswyjPZ11RkuSWTecqy8J5ju9YKt7JSNzKEVj",
|
"/14nv+GLXt6+vfN/G7QpXGd9ksSt/ouaZhwkWNovrnfcKXcnxs4tv2Fe6SgKHRmtPhLD8uovVQSpjL43",
|
||||||
"hx/3norYcCjiVq+2naL/UudM05Rq+hWMrWFD/D/Eld4aDZ9WesGEhqwC18LOYIMLRe2zFnwyTmIgt5Yw",
|
"krPZGtGLz8Wb2WwrF8zdg6Vt3AkkttGy82/QBbRVDjPQeakiddfxtQB/RrMMoz2ddUZLklk3nCtpCeY7",
|
||||||
"g81hlgGn4vWBRzFW20TiqGAcnNrgayMHrNRpNz6Io1cgFZL0f3G3sWp3DHEZcq7xPSsx60SseoDQiwoj",
|
"vWCreyUjc6h+Y4cf956K2HAo4lavtp2i/1LnTNOUavoVjK1hD/4/xJXeGg2fVnrBhIZEBtc1z2CDC0Xt",
|
||||||
"fDPtJ2Gdw0oHt23z8RPFtJbaf6E8nu4sof6BKY+l6vbcnD0ZwhISb1xQhCaGbGQsxdqOmHhmKcqoGRPl",
|
"sxZ8Mk5iILeWMINNm5YBp+L1gUcxVtvc5ahgHJza4GsjB6zUaTc+iKNXIBWS9H9xt7FqdwxxSXmu1z4r",
|
||||||
"0AV8q1zUCU+WyrBylMmEZkDgaKY+N1W7Yo3dVDH3EgQHreGzVh63ceO3V1/XGt57w7qhXF3Qc6OPXP0i",
|
"MdFFrHqA0IsKI3wz7SdhncNKB7dt8/ETxbSW2n+hPJ7uLKH+gSmPper23Jw9GcISEm9cUIQmhmxkLMVy",
|
||||||
"XT1Vn9bqi4wFdo8H+4efsSsgolgvYp6w0rX/eM4ER9Jp6x/ETecYQmdZHk00v0JLLAP3qKuxlWVyib4K",
|
"kpjrZinKqBkT5dAFfKtc1DlWlsqwcpTJhGZA4GimPjdVu2KN3VQx9xIEB63hs1Yet3Hjt1fS1xree8O6",
|
||||||
"Cxa79ZLPF5oIubQBfIdflsG4i0QF5PShA89I4bA6zMyDjP+5hLbvNrMFL9yOl9a6B6kfP4DGptsEOOUU",
|
"oUJe0Oajj1z9Il0JV59J6+uaBXaPB/uHn7ERIaJYL2KesNJ1HHnOBEfSaUsuxE3nGEJnWR5NNL9CSywD",
|
||||||
"zjLejSUaQdd/XcyQaH/7FoJR7U76rqOVjbjAJbrAwBtZNexY3ejT2C2pczxUw2PnMMmV9VTS5sP5sevS",
|
"96gr65Vlcom+CgsWu/WSzxeaCLm0AXyHX5bBuItEBaQRogPPSOGwOkwGhCIDcwmd5m1mC164HS+tdQ9S",
|
||||||
"dF/aYPKJzKlh1FWXQ6JXBU8g9tC2yQGBuSjlvGRKDaGPjussIEsyozyrSraRwzi+ophIG446A243OlTf",
|
"P34AjU23CXDKKZxlvAFMNIKu/7qYIdH+9i0Eo9qd9F1HKxtxgUt0gYE3smrYsbrRp7FbUud4qIbHzmGS",
|
||||||
"ZiXbfFP2croa8VFZ9YeVvqYra0qpxDeRlPKarv7CWPEWPc7fmHqGgd9WjKmzvwOJOXC9BwyqrATZI5eM",
|
"qySqpM2H82PX1fC+tMHkE5lTw6irLodErwqeQOyh7cwDAnNRynnJlBpC6x7XzECWZEZ5VpVsI4dxfEUx",
|
||||||
"Fc4VXweAkzeFqx0FiYiUC0UoQVd7KJN6p0zM/96DyB2JHpS9YGWtNXFVR6WvR21Z6aLSo6KUaZWsE/QN",
|
"kTYcdQbcbnQo+M1Ktvmm7OV0NeKjsuoPK31NV9aUUolvIinlNV39hbHiLXqcvzH1DAO/rRhTJ5wHEnPg",
|
||||||
"sXwDL5+4d+8Ec4CaX3vvCzbfNRt7aL8txPxrJXIfbJnIDdKfTVHmYm6zsu/f/kV7xcRcL3zxoz+FLbtS",
|
"eg8YVFkJskcuGSucK74OACdvCleuChIRKReKUIKu9lAm9U6ZmP+9B5E7Ej0oe8HKWmviqo5KX4/astJF",
|
||||||
"nmIrbUNlKbEgGNlPMC/frvTw9ld6QleQrwv9wmhpGy09uP/wS7gRVFUUsjQH9ZqlnJKzVWE9ZoBiBDHK",
|
"pUdFKdMqWSfoG2L5Bl4+ce/eCeYAZcb23hdsvms29tB+W4j510rkPtgykRukP5uizMXcZmXfv/2L9oqJ",
|
||||||
"CZNTn25eN0gNo78eHDz5Mq3dXP0L5JRAOqTE1j4zc7FtoT3rltaLUmqdMVuO7w8leWCeuwF0LpUmJUsw",
|
"uV74ekt/CruEpTzF7t2GylJiQTCyn2Bevl3p4e2v9ISuIF8XWpTR0vZ2enD/4ZdwI6iqKGRpDuo1Szkl",
|
||||||
"+9+XDoT9ojwQZLtzAA42/DEf144QJhTW/sMcCpDe7SmbL+8pkvI5U1A8uH3G5JmvPgBxYie//Ahw/vnk",
|
"Z6vCeswAxQhilBMmpz7dvO7JGkZ/PTh48mW6ybmSG8gpgXRIid2EZuZi29p+1i2tF6XUOmO2AuAfSvLA",
|
||||||
"xY/EopIZtMioEPE4rXUCj15U+VRQnqm9omRXnC0dWeIlFkx01J4g9XdiEEC0vHLUvCqzwdFgbxAYodrE",
|
"PHcD6FwqTUqWYPa/r1YI+0V5IMh25wAc7DFkPq4dIUwoLDeIORQgvdtTNl/eUyTlc6agXnH7jMkzX30A",
|
||||||
"6rgZBNXpx+QwxbMDSFLpFhL5WU6dmRRktL9XrOQG/eqek8NWO4pxo4qmigz69OS42ZgvNJHJPK8EiptQ",
|
"4sROfvkR4PzzyYsfiUUlM2iRUSHicVrrBB69qPKpoDxTe0XJrjhbOrLES6zR6Kg9QervxCCAaHnlqHlV",
|
||||||
"oKS99HHbgRuZwGLDa78m8vTkeNjfuBj765ptmLtSysytqDMZOB0jpXKw/ICfBfhEXTvBQtA3C3wvp74i",
|
"ZoOjwd4gMEK1idVxMwiq0wLKYYpnB5Ck0q1d8rOcOjMpyGh/r1jJDfrVbS6HrQ4Y40bhThUZ9OnJcbMX",
|
||||||
"XDiHLXdw/dv1/wkAAP//uSDAIkARAQA=",
|
"YGgik3leCRQ3oSZKe+njtgM3MoHFhtd+TeTpyfGwv1cytvQ12zB3pZSZW1FnMnA6RqrzYPkBPwvwibp2",
|
||||||
|
"goWg70/4Xk59EbpwDlvu4Pq36/8TAAD//72Gs8WzEQEA",
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSwagger returns the content of the embedded swagger specification file
|
// GetSwagger returns the content of the embedded swagger specification file
|
||||||
|
2
pkg/api/openapi_types.gen.go
generated
2
pkg/api/openapi_types.gen.go
generated
@ -955,7 +955,7 @@ type ShamanFileStoreParams struct {
|
|||||||
// The client indicates that it can defer uploading this file. The "208" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file.
|
// The client indicates that it can defer uploading this file. The "208" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file.
|
||||||
XShamanCanDeferUpload *bool `json:"X-Shaman-Can-Defer-Upload,omitempty"`
|
XShamanCanDeferUpload *bool `json:"X-Shaman-Can-Defer-Upload,omitempty"`
|
||||||
|
|
||||||
// The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging.
|
// The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging. MUST either be ASCII or encoded using RFC 2047 (aka MIME encoding). In the latter case the encoding MUST be UTF-8.
|
||||||
XShamanOriginalFilename *string `json:"X-Shaman-Original-Filename,omitempty"`
|
XShamanOriginalFilename *string `json:"X-Shaman-Original-Filename,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
4
web/app/src/manager-api/manager/ShamanApi.js
generated
4
web/app/src/manager-api/manager/ShamanApi.js
generated
@ -137,7 +137,7 @@ export default class ShamanApi {
|
|||||||
* @param {File} body Contents of the file
|
* @param {File} body Contents of the file
|
||||||
* @param {Object} opts Optional parameters
|
* @param {Object} opts Optional parameters
|
||||||
* @param {Boolean} opts.xShamanCanDeferUpload The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file.
|
* @param {Boolean} opts.xShamanCanDeferUpload The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file.
|
||||||
* @param {String} opts.xShamanOriginalFilename The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging.
|
* @param {String} opts.xShamanOriginalFilename The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging. MUST either be ASCII or encoded using RFC 2047 (aka MIME encoding). In the latter case the encoding MUST be UTF-8.
|
||||||
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
|
||||||
*/
|
*/
|
||||||
shamanFileStoreWithHttpInfo(checksum, filesize, body, opts) {
|
shamanFileStoreWithHttpInfo(checksum, filesize, body, opts) {
|
||||||
@ -187,7 +187,7 @@ export default class ShamanApi {
|
|||||||
* @param {File} body Contents of the file
|
* @param {File} body Contents of the file
|
||||||
* @param {Object} opts Optional parameters
|
* @param {Object} opts Optional parameters
|
||||||
* @param {Boolean} opts.xShamanCanDeferUpload The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file.
|
* @param {Boolean} opts.xShamanCanDeferUpload The client indicates that it can defer uploading this file. The \"208\" response will not only be returned when the file is already fully known to the Shaman server, but also when someone else is currently uploading this file.
|
||||||
* @param {String} opts.xShamanOriginalFilename The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging.
|
* @param {String} opts.xShamanOriginalFilename The original filename. If sent along with the request, it will be included in the server logs, which can aid in debugging. MUST either be ASCII or encoded using RFC 2047 (aka MIME encoding). In the latter case the encoding MUST be UTF-8.
|
||||||
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
|
||||||
*/
|
*/
|
||||||
shamanFileStore(checksum, filesize, body, opts) {
|
shamanFileStore(checksum, filesize, body, opts) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user