OAPI: regenerate code

This commit is contained in:
Sybren A. Stüvel 2023-02-03 16:44:50 +01:00
parent 92ac1d99de
commit c21cc7d316
18 changed files with 1123 additions and 316 deletions

@ -26,6 +26,7 @@ from flamenco.manager.model.available_job_types import AvailableJobTypes
from flamenco.manager.model.error import Error
from flamenco.manager.model.job import Job
from flamenco.manager.model.job_blocklist import JobBlocklist
from flamenco.manager.model.job_deletion_info import JobDeletionInfo
from flamenco.manager.model.job_last_rendered_image_info import JobLastRenderedImageInfo
from flamenco.manager.model.job_priority_change import JobPriorityChange
from flamenco.manager.model.job_status_change import JobStatusChange
@ -98,6 +99,55 @@ class JobsApi(object):
},
api_client=api_client
)
self.delete_job_what_would_it_do_endpoint = _Endpoint(
settings={
'response_type': (JobDeletionInfo,),
'auth': [],
'endpoint_path': '/api/v3/jobs/{job_id}/what-would-delete-do',
'operation_id': 'delete_job_what_would_it_do',
'http_method': 'GET',
'servers': None,
},
params_map={
'all': [
'job_id',
],
'required': [
'job_id',
],
'nullable': [
],
'enum': [
],
'validation': [
]
},
root_map={
'validations': {
},
'allowed_values': {
},
'openapi_types': {
'job_id':
(str,),
},
'attribute_map': {
'job_id': 'job_id',
},
'location_map': {
'job_id': 'path',
},
'collection_format_map': {
}
},
headers_map={
'accept': [
'application/json'
],
'content_type': [],
},
api_client=api_client
)
self.fetch_global_last_rendered_info_endpoint = _Endpoint(
settings={
'response_type': (JobLastRenderedImageInfo,),
@ -1026,6 +1076,83 @@ class JobsApi(object):
job_id
return self.delete_job_endpoint.call_with_http_info(**kwargs)
def delete_job_what_would_it_do(
self,
job_id,
**kwargs
):
"""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. # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
>>> thread = api.delete_job_what_would_it_do(job_id, async_req=True)
>>> result = thread.get()
Args:
job_id (str):
Keyword Args:
_return_http_data_only (bool): response data without head status
code and headers. Default is True.
_preload_content (bool): if False, the urllib3.HTTPResponse object
will be returned without reading/decoding response data.
Default is True.
_request_timeout (int/float/tuple): timeout setting for this request. If
one number provided, it will be total request timeout. It can also
be a pair (tuple) of (connection, read) timeouts.
Default is None.
_check_input_type (bool): specifies if type checking
should be done one the data sent to the server.
Default is True.
_check_return_type (bool): specifies if type checking
should be done one the data received from the server.
Default is True.
_spec_property_naming (bool): True if the variable names in the input data
are serialized names, as specified in the OpenAPI document.
False if the variable names in the input data
are pythonic names, e.g. snake case (default)
_content_type (str/None): force body content-type.
Default is None and content-type will be predicted by allowed
content-types and body.
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
async_req (bool): execute request asynchronously
Returns:
JobDeletionInfo
If the method is called asynchronously, returns the request
thread.
"""
kwargs['async_req'] = kwargs.get(
'async_req', False
)
kwargs['_return_http_data_only'] = kwargs.get(
'_return_http_data_only', True
)
kwargs['_preload_content'] = kwargs.get(
'_preload_content', True
)
kwargs['_request_timeout'] = kwargs.get(
'_request_timeout', None
)
kwargs['_check_input_type'] = kwargs.get(
'_check_input_type', True
)
kwargs['_check_return_type'] = kwargs.get(
'_check_return_type', True
)
kwargs['_spec_property_naming'] = kwargs.get(
'_spec_property_naming', False
)
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['job_id'] = \
job_id
return self.delete_job_what_would_it_do_endpoint.call_with_http_info(**kwargs)
def fetch_global_last_rendered_info(
self,
**kwargs

@ -0,0 +1,13 @@
# JobDeletionInfo
Info about what will be deleted when this job is deleted.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**shaman_checkout** | **bool** | Whether the Shaman checkout directory will be removed along with the job. |
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

@ -5,6 +5,7 @@ All URIs are relative to *http://localhost*
Method | HTTP request | Description
------------- | ------------- | -------------
[**delete_job**](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).
[**delete_job_what_would_it_do**](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.
[**fetch_global_last_rendered_info**](JobsApi.md#fetch_global_last_rendered_info) | **GET** /api/v3/jobs/last-rendered | Get the URL that serves the last-rendered images.
[**fetch_job**](JobsApi.md#fetch_job) | **GET** /api/v3/jobs/{job_id} | Fetch info about the job.
[**fetch_job_blocklist**](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.
@ -89,6 +90,71 @@ No authorization required
[[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)
# **delete_job_what_would_it_do**
> JobDeletionInfo delete_job_what_would_it_do(job_id)
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.
### Example
```python
import time
import flamenco.manager
from flamenco.manager.api import jobs_api
from flamenco.manager.model.job_deletion_info import JobDeletionInfo
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = flamenco.manager.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with flamenco.manager.ApiClient() as api_client:
# Create an instance of the API class
api_instance = jobs_api.JobsApi(api_client)
job_id = "job_id_example" # str |
# example passing only required values which don't have defaults set
try:
# 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.
api_response = api_instance.delete_job_what_would_it_do(job_id)
pprint(api_response)
except flamenco.manager.ApiException as e:
print("Exception when calling JobsApi->delete_job_what_would_it_do: %s\n" % e)
```
### Parameters
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**job_id** | **str**| |
### Return type
[**JobDeletionInfo**](JobDeletionInfo.md)
### Authorization
No authorization required
### HTTP request headers
- **Content-Type**: Not defined
- **Accept**: application/json
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
**200** | Job deletion info | - |
[[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)
# **fetch_global_last_rendered_info**
> JobLastRenderedImageInfo fetch_global_last_rendered_info()

@ -13,6 +13,8 @@ Name | Type | Description | Notes
**priority** | **int** | | defaults to 50
**name** | **str** | Name of the job | [optional]
**previous_status** | [**JobStatus**](JobStatus.md) | | [optional]
**delete_requested_at** | **datetime** | If job deletion was requested, this is the timestamp at which that request was stored on Flamenco Manager. | [optional]
**was_deleted** | **bool** | When a job was just deleted, this is set to `true`. If this is specified, only the 'id' field is set, the rest will be empty. | [optional]
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

@ -0,0 +1,261 @@
"""
Flamenco manager
Render Farm manager API # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import re # noqa: F401
import sys # noqa: F401
from flamenco.manager.model_utils import ( # noqa: F401
ApiTypeError,
ModelComposed,
ModelNormal,
ModelSimple,
cached_property,
change_keys_js_to_python,
convert_js_args_to_python_args,
date,
datetime,
file_type,
none_type,
validate_get_composed_info,
OpenApiModel
)
from flamenco.manager.exceptions import ApiAttributeError
class JobDeletionInfo(ModelNormal):
"""NOTE: This class is auto generated by OpenAPI Generator.
Ref: https://openapi-generator.tech
Do not edit the class manually.
Attributes:
allowed_values (dict): The key is the tuple path to the attribute
and the for var_name this is (var_name,). The value is a dict
with a capitalized key describing the allowed value and an allowed
value. These dicts store the allowed enum values.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
discriminator_value_class_map (dict): A dict to go from the discriminator
variable value to the discriminator class name.
validations (dict): The key is the tuple path to the attribute
and the for var_name this is (var_name,). The value is a dict
that stores validations for max_length, min_length, max_items,
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
inclusive_minimum, and regex.
additional_properties_type (tuple): A tuple of classes accepted
as additional properties values.
"""
allowed_values = {
}
validations = {
}
@cached_property
def additional_properties_type():
"""
This must be a method because a model may have properties that are
of type self, this must run after the class is loaded
"""
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
_nullable = False
@cached_property
def openapi_types():
"""
This must be a method because a model may have properties that are
of type self, this must run after the class is loaded
Returns
openapi_types (dict): The key is attribute name
and the value is attribute type.
"""
return {
'shaman_checkout': (bool,), # noqa: E501
}
@cached_property
def discriminator():
return None
attribute_map = {
'shaman_checkout': 'shaman_checkout', # noqa: E501
}
read_only_vars = {
}
_composed_schemas = {}
@classmethod
@convert_js_args_to_python_args
def _from_openapi_data(cls, shaman_checkout, *args, **kwargs): # noqa: E501
"""JobDeletionInfo - a model defined in OpenAPI
Args:
shaman_checkout (bool): Whether the Shaman checkout directory will be removed along with the job.
Keyword Args:
_check_type (bool): if True, values for parameters in openapi_types
will be type checked and a TypeError will be
raised if the wrong type is input.
Defaults to True
_path_to_item (tuple/list): This is a list of keys or values to
drill down to the model in received_data
when deserializing a response
_spec_property_naming (bool): True if the variable names in the input data
are serialized names, as specified in the OpenAPI document.
False if the variable names in the input data
are pythonic names, e.g. snake case (default)
_configuration (Configuration): the instance to use when
deserializing a file_type parameter.
If passed, type conversion is attempted
If omitted no type conversion is done.
_visited_composed_classes (tuple): This stores a tuple of
classes that we have traveled through so that
if we see that class again we will not use its
discriminator again.
When traveling through a discriminator, the
composed schema that is
is traveled through is added to this set.
For example if Animal has a discriminator
petType and we pass in "Dog", and the class Dog
allOf includes Animal, we move through Animal
once using the discriminator, and pick Dog.
Then in Dog, we will make an instance of the
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
"""
_check_type = kwargs.pop('_check_type', True)
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
_path_to_item = kwargs.pop('_path_to_item', ())
_configuration = kwargs.pop('_configuration', None)
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
self = super(OpenApiModel, cls).__new__(cls)
if args:
raise ApiTypeError(
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
args,
self.__class__.__name__,
),
path_to_item=_path_to_item,
valid_classes=(self.__class__,),
)
self._data_store = {}
self._check_type = _check_type
self._spec_property_naming = _spec_property_naming
self._path_to_item = _path_to_item
self._configuration = _configuration
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
self.shaman_checkout = shaman_checkout
for var_name, var_value in kwargs.items():
if var_name not in self.attribute_map and \
self._configuration is not None and \
self._configuration.discard_unknown_keys and \
self.additional_properties_type is None:
# discard variable.
continue
setattr(self, var_name, var_value)
return self
required_properties = set([
'_data_store',
'_check_type',
'_spec_property_naming',
'_path_to_item',
'_configuration',
'_visited_composed_classes',
])
@convert_js_args_to_python_args
def __init__(self, shaman_checkout, *args, **kwargs): # noqa: E501
"""JobDeletionInfo - a model defined in OpenAPI
Args:
shaman_checkout (bool): Whether the Shaman checkout directory will be removed along with the job.
Keyword Args:
_check_type (bool): if True, values for parameters in openapi_types
will be type checked and a TypeError will be
raised if the wrong type is input.
Defaults to True
_path_to_item (tuple/list): This is a list of keys or values to
drill down to the model in received_data
when deserializing a response
_spec_property_naming (bool): True if the variable names in the input data
are serialized names, as specified in the OpenAPI document.
False if the variable names in the input data
are pythonic names, e.g. snake case (default)
_configuration (Configuration): the instance to use when
deserializing a file_type parameter.
If passed, type conversion is attempted
If omitted no type conversion is done.
_visited_composed_classes (tuple): This stores a tuple of
classes that we have traveled through so that
if we see that class again we will not use its
discriminator again.
When traveling through a discriminator, the
composed schema that is
is traveled through is added to this set.
For example if Animal has a discriminator
petType and we pass in "Dog", and the class Dog
allOf includes Animal, we move through Animal
once using the discriminator, and pick Dog.
Then in Dog, we will make an instance of the
Animal class but this time we won't travel
through its discriminator because we passed in
_visited_composed_classes = (Animal,)
"""
_check_type = kwargs.pop('_check_type', True)
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
_path_to_item = kwargs.pop('_path_to_item', ())
_configuration = kwargs.pop('_configuration', None)
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
if args:
raise ApiTypeError(
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
args,
self.__class__.__name__,
),
path_to_item=_path_to_item,
valid_classes=(self.__class__,),
)
self._data_store = {}
self._check_type = _check_type
self._spec_property_naming = _spec_property_naming
self._path_to_item = _path_to_item
self._configuration = _configuration
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
self.shaman_checkout = shaman_checkout
for var_name, var_value in kwargs.items():
if var_name not in self.attribute_map and \
self._configuration is not None and \
self._configuration.discard_unknown_keys and \
self.additional_properties_type is None:
# discard variable.
continue
setattr(self, var_name, var_value)
if var_name in self.read_only_vars:
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
f"class with read only attributes.")

@ -95,6 +95,8 @@ class SocketIOJobUpdate(ModelNormal):
'refresh_tasks': (bool,), # noqa: E501
'name': (str,), # noqa: E501
'previous_status': (JobStatus,), # noqa: E501
'delete_requested_at': (datetime,), # noqa: E501
'was_deleted': (bool,), # noqa: E501
}
@cached_property
@ -111,6 +113,8 @@ class SocketIOJobUpdate(ModelNormal):
'refresh_tasks': 'refresh_tasks', # noqa: E501
'name': 'name', # noqa: E501
'previous_status': 'previous_status', # noqa: E501
'delete_requested_at': 'delete_requested_at', # noqa: E501
'was_deleted': 'was_deleted', # noqa: E501
}
read_only_vars = {
@ -164,6 +168,8 @@ class SocketIOJobUpdate(ModelNormal):
_visited_composed_classes = (Animal,)
name (str): Name of the job. [optional] # noqa: E501
previous_status (JobStatus): [optional] # noqa: E501
delete_requested_at (datetime): If job deletion was requested, this is the timestamp at which that request was stored on Flamenco Manager. . [optional] # noqa: E501
was_deleted (bool): When a job was just deleted, this is set to `true`. If this is specified, only the 'id' field is set, the rest will be empty. . [optional] # noqa: E501
"""
priority = kwargs.get('priority', 50)
@ -262,6 +268,8 @@ class SocketIOJobUpdate(ModelNormal):
_visited_composed_classes = (Animal,)
name (str): Name of the job. [optional] # noqa: E501
previous_status (JobStatus): [optional] # noqa: E501
delete_requested_at (datetime): If job deletion was requested, this is the timestamp at which that request was stored on Flamenco Manager. . [optional] # noqa: E501
was_deleted (bool): When a job was just deleted, this is set to `true`. If this is specified, only the 'id' field is set, the rest will be empty. . [optional] # noqa: E501
"""
priority = kwargs.get('priority', 50)

@ -26,6 +26,7 @@ from flamenco.manager.model.job import Job
from flamenco.manager.model.job_all_of import JobAllOf
from flamenco.manager.model.job_blocklist import JobBlocklist
from flamenco.manager.model.job_blocklist_entry import JobBlocklistEntry
from flamenco.manager.model.job_deletion_info import JobDeletionInfo
from flamenco.manager.model.job_last_rendered_image_info import JobLastRenderedImageInfo
from flamenco.manager.model.job_metadata import JobMetadata
from flamenco.manager.model.job_priority_change import JobPriorityChange

@ -37,6 +37,7 @@ from flamenco.manager.model.available_job_types import AvailableJobTypes
from flamenco.manager.model.error import Error
from flamenco.manager.model.job import Job
from flamenco.manager.model.job_blocklist import JobBlocklist
from flamenco.manager.model.job_deletion_info import JobDeletionInfo
from flamenco.manager.model.job_last_rendered_image_info import JobLastRenderedImageInfo
from flamenco.manager.model.job_priority_change import JobPriorityChange
from flamenco.manager.model.job_status_change import JobStatusChange
@ -74,131 +75,133 @@ All URIs are relative to *http://localhost*
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* | [**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_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_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_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_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_types**](flamenco\manager\docs/JobsApi.md#get_job_types) | **GET** /api/v3/jobs/types | Get list of job types and their parameters.
*JobsApi* | [**query_jobs**](flamenco\manager\docs/JobsApi.md#query_jobs) | **POST** /api/v3/jobs/query | Fetch list of jobs.
*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_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* | [**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.
*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* | [**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_file**](flamenco\manager\docs/MetaApi.md#get_configuration_file) | **GET** /api/v3/configuration/file | Retrieve the configuration of Flamenco Manager.
*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_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.
*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_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.
*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* | [**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_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_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_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* | [**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* | [**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_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* | [**set_worker_sleep_schedule**](flamenco\manager\docs/WorkerMgtApi.md#set_worker_sleep_schedule) | **POST** /api/v3/worker-mgt/workers/{worker_id}/sleep-schedule |
*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_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_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_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_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_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_types**](flamenco/manager/docs/JobsApi.md#get_job_types) | **GET** /api/v3/jobs/types | Get list of job types and their parameters.
*JobsApi* | [**query_jobs**](flamenco/manager/docs/JobsApi.md#query_jobs) | **POST** /api/v3/jobs/query | Fetch list of jobs.
*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_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* | [**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.
*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* | [**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_file**](flamenco/manager/docs/MetaApi.md#get_configuration_file) | **GET** /api/v3/configuration/file | Retrieve the configuration of Flamenco Manager.
*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_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.
*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_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.
*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* | [**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_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_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_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* | [**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* | [**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_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* | [**set_worker_sleep_schedule**](flamenco/manager/docs/WorkerMgtApi.md#set_worker_sleep_schedule) | **POST** /api/v3/worker-mgt/workers/{worker_id}/sleep-schedule |
## Documentation For Models
- [AssignedTask](flamenco\manager\docs/AssignedTask.md)
- [AvailableJobSetting](flamenco\manager\docs/AvailableJobSetting.md)
- [AvailableJobSettingSubtype](flamenco\manager\docs/AvailableJobSettingSubtype.md)
- [AvailableJobSettingType](flamenco\manager\docs/AvailableJobSettingType.md)
- [AvailableJobSettingVisibility](flamenco\manager\docs/AvailableJobSettingVisibility.md)
- [AvailableJobType](flamenco\manager\docs/AvailableJobType.md)
- [AvailableJobTypes](flamenco\manager\docs/AvailableJobTypes.md)
- [BlenderPathCheckResult](flamenco\manager\docs/BlenderPathCheckResult.md)
- [BlenderPathFindResult](flamenco\manager\docs/BlenderPathFindResult.md)
- [BlenderPathSource](flamenco\manager\docs/BlenderPathSource.md)
- [Command](flamenco\manager\docs/Command.md)
- [Error](flamenco\manager\docs/Error.md)
- [FlamencoVersion](flamenco\manager\docs/FlamencoVersion.md)
- [Job](flamenco\manager\docs/Job.md)
- [JobAllOf](flamenco\manager\docs/JobAllOf.md)
- [JobBlocklist](flamenco\manager\docs/JobBlocklist.md)
- [JobBlocklistEntry](flamenco\manager\docs/JobBlocklistEntry.md)
- [JobLastRenderedImageInfo](flamenco\manager\docs/JobLastRenderedImageInfo.md)
- [JobMetadata](flamenco\manager\docs/JobMetadata.md)
- [JobPriorityChange](flamenco\manager\docs/JobPriorityChange.md)
- [JobSettings](flamenco\manager\docs/JobSettings.md)
- [JobStatus](flamenco\manager\docs/JobStatus.md)
- [JobStatusChange](flamenco\manager\docs/JobStatusChange.md)
- [JobStorageInfo](flamenco\manager\docs/JobStorageInfo.md)
- [JobTasksSummary](flamenco\manager\docs/JobTasksSummary.md)
- [JobsQuery](flamenco\manager\docs/JobsQuery.md)
- [JobsQueryResult](flamenco\manager\docs/JobsQueryResult.md)
- [ManagerConfiguration](flamenco\manager\docs/ManagerConfiguration.md)
- [ManagerVariable](flamenco\manager\docs/ManagerVariable.md)
- [ManagerVariableAudience](flamenco\manager\docs/ManagerVariableAudience.md)
- [ManagerVariables](flamenco\manager\docs/ManagerVariables.md)
- [MayKeepRunning](flamenco\manager\docs/MayKeepRunning.md)
- [PathCheckInput](flamenco\manager\docs/PathCheckInput.md)
- [PathCheckResult](flamenco\manager\docs/PathCheckResult.md)
- [RegisteredWorker](flamenco\manager\docs/RegisteredWorker.md)
- [SecurityError](flamenco\manager\docs/SecurityError.md)
- [SetupAssistantConfig](flamenco\manager\docs/SetupAssistantConfig.md)
- [ShamanCheckout](flamenco\manager\docs/ShamanCheckout.md)
- [ShamanCheckoutResult](flamenco\manager\docs/ShamanCheckoutResult.md)
- [ShamanFileSpec](flamenco\manager\docs/ShamanFileSpec.md)
- [ShamanFileSpecWithStatus](flamenco\manager\docs/ShamanFileSpecWithStatus.md)
- [ShamanFileStatus](flamenco\manager\docs/ShamanFileStatus.md)
- [ShamanRequirementsRequest](flamenco\manager\docs/ShamanRequirementsRequest.md)
- [ShamanRequirementsResponse](flamenco\manager\docs/ShamanRequirementsResponse.md)
- [ShamanSingleFileStatus](flamenco\manager\docs/ShamanSingleFileStatus.md)
- [SharedStorageLocation](flamenco\manager\docs/SharedStorageLocation.md)
- [SocketIOJobUpdate](flamenco\manager\docs/SocketIOJobUpdate.md)
- [SocketIOLastRenderedUpdate](flamenco\manager\docs/SocketIOLastRenderedUpdate.md)
- [SocketIOSubscription](flamenco\manager\docs/SocketIOSubscription.md)
- [SocketIOSubscriptionOperation](flamenco\manager\docs/SocketIOSubscriptionOperation.md)
- [SocketIOSubscriptionType](flamenco\manager\docs/SocketIOSubscriptionType.md)
- [SocketIOTaskLogUpdate](flamenco\manager\docs/SocketIOTaskLogUpdate.md)
- [SocketIOTaskUpdate](flamenco\manager\docs/SocketIOTaskUpdate.md)
- [SocketIOWorkerUpdate](flamenco\manager\docs/SocketIOWorkerUpdate.md)
- [SubmittedJob](flamenco\manager\docs/SubmittedJob.md)
- [Task](flamenco\manager\docs/Task.md)
- [TaskLogInfo](flamenco\manager\docs/TaskLogInfo.md)
- [TaskStatus](flamenco\manager\docs/TaskStatus.md)
- [TaskStatusChange](flamenco\manager\docs/TaskStatusChange.md)
- [TaskSummary](flamenco\manager\docs/TaskSummary.md)
- [TaskUpdate](flamenco\manager\docs/TaskUpdate.md)
- [TaskWorker](flamenco\manager\docs/TaskWorker.md)
- [Worker](flamenco\manager\docs/Worker.md)
- [WorkerAllOf](flamenco\manager\docs/WorkerAllOf.md)
- [WorkerList](flamenco\manager\docs/WorkerList.md)
- [WorkerRegistration](flamenco\manager\docs/WorkerRegistration.md)
- [WorkerSignOn](flamenco\manager\docs/WorkerSignOn.md)
- [WorkerSleepSchedule](flamenco\manager\docs/WorkerSleepSchedule.md)
- [WorkerStateChange](flamenco\manager\docs/WorkerStateChange.md)
- [WorkerStateChanged](flamenco\manager\docs/WorkerStateChanged.md)
- [WorkerStatus](flamenco\manager\docs/WorkerStatus.md)
- [WorkerStatusChangeRequest](flamenco\manager\docs/WorkerStatusChangeRequest.md)
- [WorkerSummary](flamenco\manager\docs/WorkerSummary.md)
- [WorkerTask](flamenco\manager\docs/WorkerTask.md)
- [WorkerTaskAllOf](flamenco\manager\docs/WorkerTaskAllOf.md)
- [AssignedTask](flamenco/manager/docs/AssignedTask.md)
- [AvailableJobSetting](flamenco/manager/docs/AvailableJobSetting.md)
- [AvailableJobSettingSubtype](flamenco/manager/docs/AvailableJobSettingSubtype.md)
- [AvailableJobSettingType](flamenco/manager/docs/AvailableJobSettingType.md)
- [AvailableJobSettingVisibility](flamenco/manager/docs/AvailableJobSettingVisibility.md)
- [AvailableJobType](flamenco/manager/docs/AvailableJobType.md)
- [AvailableJobTypes](flamenco/manager/docs/AvailableJobTypes.md)
- [BlenderPathCheckResult](flamenco/manager/docs/BlenderPathCheckResult.md)
- [BlenderPathFindResult](flamenco/manager/docs/BlenderPathFindResult.md)
- [BlenderPathSource](flamenco/manager/docs/BlenderPathSource.md)
- [Command](flamenco/manager/docs/Command.md)
- [Error](flamenco/manager/docs/Error.md)
- [FlamencoVersion](flamenco/manager/docs/FlamencoVersion.md)
- [Job](flamenco/manager/docs/Job.md)
- [JobAllOf](flamenco/manager/docs/JobAllOf.md)
- [JobBlocklist](flamenco/manager/docs/JobBlocklist.md)
- [JobBlocklistEntry](flamenco/manager/docs/JobBlocklistEntry.md)
- [JobDeletionInfo](flamenco/manager/docs/JobDeletionInfo.md)
- [JobLastRenderedImageInfo](flamenco/manager/docs/JobLastRenderedImageInfo.md)
- [JobMetadata](flamenco/manager/docs/JobMetadata.md)
- [JobPriorityChange](flamenco/manager/docs/JobPriorityChange.md)
- [JobSettings](flamenco/manager/docs/JobSettings.md)
- [JobStatus](flamenco/manager/docs/JobStatus.md)
- [JobStatusChange](flamenco/manager/docs/JobStatusChange.md)
- [JobStorageInfo](flamenco/manager/docs/JobStorageInfo.md)
- [JobTasksSummary](flamenco/manager/docs/JobTasksSummary.md)
- [JobsQuery](flamenco/manager/docs/JobsQuery.md)
- [JobsQueryResult](flamenco/manager/docs/JobsQueryResult.md)
- [ManagerConfiguration](flamenco/manager/docs/ManagerConfiguration.md)
- [ManagerVariable](flamenco/manager/docs/ManagerVariable.md)
- [ManagerVariableAudience](flamenco/manager/docs/ManagerVariableAudience.md)
- [ManagerVariables](flamenco/manager/docs/ManagerVariables.md)
- [MayKeepRunning](flamenco/manager/docs/MayKeepRunning.md)
- [PathCheckInput](flamenco/manager/docs/PathCheckInput.md)
- [PathCheckResult](flamenco/manager/docs/PathCheckResult.md)
- [RegisteredWorker](flamenco/manager/docs/RegisteredWorker.md)
- [SecurityError](flamenco/manager/docs/SecurityError.md)
- [SetupAssistantConfig](flamenco/manager/docs/SetupAssistantConfig.md)
- [ShamanCheckout](flamenco/manager/docs/ShamanCheckout.md)
- [ShamanCheckoutResult](flamenco/manager/docs/ShamanCheckoutResult.md)
- [ShamanFileSpec](flamenco/manager/docs/ShamanFileSpec.md)
- [ShamanFileSpecWithStatus](flamenco/manager/docs/ShamanFileSpecWithStatus.md)
- [ShamanFileStatus](flamenco/manager/docs/ShamanFileStatus.md)
- [ShamanRequirementsRequest](flamenco/manager/docs/ShamanRequirementsRequest.md)
- [ShamanRequirementsResponse](flamenco/manager/docs/ShamanRequirementsResponse.md)
- [ShamanSingleFileStatus](flamenco/manager/docs/ShamanSingleFileStatus.md)
- [SharedStorageLocation](flamenco/manager/docs/SharedStorageLocation.md)
- [SocketIOJobUpdate](flamenco/manager/docs/SocketIOJobUpdate.md)
- [SocketIOLastRenderedUpdate](flamenco/manager/docs/SocketIOLastRenderedUpdate.md)
- [SocketIOSubscription](flamenco/manager/docs/SocketIOSubscription.md)
- [SocketIOSubscriptionOperation](flamenco/manager/docs/SocketIOSubscriptionOperation.md)
- [SocketIOSubscriptionType](flamenco/manager/docs/SocketIOSubscriptionType.md)
- [SocketIOTaskLogUpdate](flamenco/manager/docs/SocketIOTaskLogUpdate.md)
- [SocketIOTaskUpdate](flamenco/manager/docs/SocketIOTaskUpdate.md)
- [SocketIOWorkerUpdate](flamenco/manager/docs/SocketIOWorkerUpdate.md)
- [SubmittedJob](flamenco/manager/docs/SubmittedJob.md)
- [Task](flamenco/manager/docs/Task.md)
- [TaskLogInfo](flamenco/manager/docs/TaskLogInfo.md)
- [TaskStatus](flamenco/manager/docs/TaskStatus.md)
- [TaskStatusChange](flamenco/manager/docs/TaskStatusChange.md)
- [TaskSummary](flamenco/manager/docs/TaskSummary.md)
- [TaskUpdate](flamenco/manager/docs/TaskUpdate.md)
- [TaskWorker](flamenco/manager/docs/TaskWorker.md)
- [Worker](flamenco/manager/docs/Worker.md)
- [WorkerAllOf](flamenco/manager/docs/WorkerAllOf.md)
- [WorkerList](flamenco/manager/docs/WorkerList.md)
- [WorkerRegistration](flamenco/manager/docs/WorkerRegistration.md)
- [WorkerSignOn](flamenco/manager/docs/WorkerSignOn.md)
- [WorkerSleepSchedule](flamenco/manager/docs/WorkerSleepSchedule.md)
- [WorkerStateChange](flamenco/manager/docs/WorkerStateChange.md)
- [WorkerStateChanged](flamenco/manager/docs/WorkerStateChanged.md)
- [WorkerStatus](flamenco/manager/docs/WorkerStatus.md)
- [WorkerStatusChangeRequest](flamenco/manager/docs/WorkerStatusChangeRequest.md)
- [WorkerSummary](flamenco/manager/docs/WorkerSummary.md)
- [WorkerTask](flamenco/manager/docs/WorkerTask.md)
- [WorkerTaskAllOf](flamenco/manager/docs/WorkerTaskAllOf.md)
## Documentation For Authorization

@ -1270,3 +1270,17 @@ func (mr *MockJobDeleterMockRecorder) QueueJobDeletion(arg0, arg1 interface{}) *
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "QueueJobDeletion", reflect.TypeOf((*MockJobDeleter)(nil).QueueJobDeletion), arg0, arg1)
}
// WhatWouldBeDeleted mocks base method.
func (m *MockJobDeleter) WhatWouldBeDeleted(arg0 *persistence.Job) api.JobDeletionInfo {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "WhatWouldBeDeleted", arg0)
ret0, _ := ret[0].(api.JobDeletionInfo)
return ret0
}
// WhatWouldBeDeleted indicates an expected call of WhatWouldBeDeleted.
func (mr *MockJobDeleterMockRecorder) WhatWouldBeDeleted(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "WhatWouldBeDeleted", reflect.TypeOf((*MockJobDeleter)(nil).WhatWouldBeDeleted), arg0)
}

@ -116,6 +116,26 @@ func (mr *MockFlamencoClientMockRecorder) CheckSharedStoragePathWithResponse(arg
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CheckSharedStoragePathWithResponse", reflect.TypeOf((*MockFlamencoClient)(nil).CheckSharedStoragePathWithResponse), varargs...)
}
// DeleteJobWhatWouldItDoWithResponse mocks base method.
func (m *MockFlamencoClient) DeleteJobWhatWouldItDoWithResponse(arg0 context.Context, arg1 string, arg2 ...api.RequestEditorFn) (*api.DeleteJobWhatWouldItDoResponse, error) {
m.ctrl.T.Helper()
varargs := []interface{}{arg0, arg1}
for _, a := range arg2 {
varargs = append(varargs, a)
}
ret := m.ctrl.Call(m, "DeleteJobWhatWouldItDoWithResponse", varargs...)
ret0, _ := ret[0].(*api.DeleteJobWhatWouldItDoResponse)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// DeleteJobWhatWouldItDoWithResponse indicates an expected call of DeleteJobWhatWouldItDoWithResponse.
func (mr *MockFlamencoClientMockRecorder) DeleteJobWhatWouldItDoWithResponse(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
varargs := append([]interface{}{arg0, arg1}, arg2...)
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteJobWhatWouldItDoWithResponse", reflect.TypeOf((*MockFlamencoClient)(nil).DeleteJobWhatWouldItDoWithResponse), varargs...)
}
// DeleteJobWithResponse mocks base method.
func (m *MockFlamencoClient) DeleteJobWithResponse(arg0 context.Context, arg1 string, arg2 ...api.RequestEditorFn) (*api.DeleteJobResponse, error) {
m.ctrl.T.Helper()

@ -176,6 +176,9 @@ type ClientInterface interface {
// FetchJobTasks request
FetchJobTasks(ctx context.Context, jobId string, reqEditors ...RequestEditorFn) (*http.Response, error)
// DeleteJobWhatWouldItDo request
DeleteJobWhatWouldItDo(ctx context.Context, jobId string, reqEditors ...RequestEditorFn) (*http.Response, error)
// ShamanCheckout request with any body
ShamanCheckoutWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
@ -639,6 +642,18 @@ func (c *Client) FetchJobTasks(ctx context.Context, jobId string, reqEditors ...
return c.Client.Do(req)
}
func (c *Client) DeleteJobWhatWouldItDo(ctx context.Context, jobId string, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewDeleteJobWhatWouldItDoRequest(c.Server, jobId)
if err != nil {
return nil, err
}
req = req.WithContext(ctx)
if err := c.applyEditors(ctx, req, reqEditors); err != nil {
return nil, err
}
return c.Client.Do(req)
}
func (c *Client) ShamanCheckoutWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) {
req, err := NewShamanCheckoutRequestWithBody(c.Server, contentType, body)
if err != nil {
@ -1837,6 +1852,40 @@ func NewFetchJobTasksRequest(server string, jobId string) (*http.Request, error)
return req, nil
}
// NewDeleteJobWhatWouldItDoRequest generates requests for DeleteJobWhatWouldItDo
func NewDeleteJobWhatWouldItDoRequest(server string, jobId string) (*http.Request, error) {
var err error
var pathParam0 string
pathParam0, err = runtime.StyleParamWithLocation("simple", false, "job_id", runtime.ParamLocationPath, jobId)
if err != nil {
return nil, err
}
serverURL, err := url.Parse(server)
if err != nil {
return nil, err
}
operationPath := fmt.Sprintf("/api/v3/jobs/%s/what-would-delete-do", pathParam0)
if operationPath[0] == '/' {
operationPath = "." + operationPath
}
queryURL, err := serverURL.Parse(operationPath)
if err != nil {
return nil, err
}
req, err := http.NewRequest("GET", queryURL.String(), nil)
if err != nil {
return nil, err
}
return req, nil
}
// NewShamanCheckoutRequest calls the generic ShamanCheckout builder with application/json body
func NewShamanCheckoutRequest(server string, body ShamanCheckoutJSONRequestBody) (*http.Request, error) {
var bodyReader io.Reader
@ -2867,6 +2916,9 @@ type ClientWithResponsesInterface interface {
// FetchJobTasks request
FetchJobTasksWithResponse(ctx context.Context, jobId string, reqEditors ...RequestEditorFn) (*FetchJobTasksResponse, error)
// DeleteJobWhatWouldItDo request
DeleteJobWhatWouldItDoWithResponse(ctx context.Context, jobId string, reqEditors ...RequestEditorFn) (*DeleteJobWhatWouldItDoResponse, error)
// ShamanCheckout request with any body
ShamanCheckoutWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ShamanCheckoutResponse, error)
@ -3454,6 +3506,28 @@ func (r FetchJobTasksResponse) StatusCode() int {
return 0
}
type DeleteJobWhatWouldItDoResponse struct {
Body []byte
HTTPResponse *http.Response
JSON200 *JobDeletionInfo
}
// Status returns HTTPResponse.Status
func (r DeleteJobWhatWouldItDoResponse) Status() string {
if r.HTTPResponse != nil {
return r.HTTPResponse.Status
}
return http.StatusText(0)
}
// StatusCode returns HTTPResponse.StatusCode
func (r DeleteJobWhatWouldItDoResponse) StatusCode() int {
if r.HTTPResponse != nil {
return r.HTTPResponse.StatusCode
}
return 0
}
type ShamanCheckoutResponse struct {
Body []byte
HTTPResponse *http.Response
@ -4270,6 +4344,15 @@ func (c *ClientWithResponses) FetchJobTasksWithResponse(ctx context.Context, job
return ParseFetchJobTasksResponse(rsp)
}
// DeleteJobWhatWouldItDoWithResponse request returning *DeleteJobWhatWouldItDoResponse
func (c *ClientWithResponses) DeleteJobWhatWouldItDoWithResponse(ctx context.Context, jobId string, reqEditors ...RequestEditorFn) (*DeleteJobWhatWouldItDoResponse, error) {
rsp, err := c.DeleteJobWhatWouldItDo(ctx, jobId, reqEditors...)
if err != nil {
return nil, err
}
return ParseDeleteJobWhatWouldItDoResponse(rsp)
}
// ShamanCheckoutWithBodyWithResponse request with arbitrary body returning *ShamanCheckoutResponse
func (c *ClientWithResponses) ShamanCheckoutWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ShamanCheckoutResponse, error) {
rsp, err := c.ShamanCheckoutWithBody(ctx, contentType, body, reqEditors...)
@ -5202,6 +5285,32 @@ func ParseFetchJobTasksResponse(rsp *http.Response) (*FetchJobTasksResponse, err
return response, nil
}
// ParseDeleteJobWhatWouldItDoResponse parses an HTTP response from a DeleteJobWhatWouldItDoWithResponse call
func ParseDeleteJobWhatWouldItDoResponse(rsp *http.Response) (*DeleteJobWhatWouldItDoResponse, error) {
bodyBytes, err := ioutil.ReadAll(rsp.Body)
defer func() { _ = rsp.Body.Close() }()
if err != nil {
return nil, err
}
response := &DeleteJobWhatWouldItDoResponse{
Body: bodyBytes,
HTTPResponse: rsp,
}
switch {
case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 200:
var dest JobDeletionInfo
if err := json.Unmarshal(bodyBytes, &dest); err != nil {
return nil, err
}
response.JSON200 = &dest
}
return response, nil
}
// ParseShamanCheckoutResponse parses an HTTP response from a ShamanCheckoutWithResponse call
func ParseShamanCheckoutResponse(rsp *http.Response) (*ShamanCheckoutResponse, error) {
bodyBytes, err := ioutil.ReadAll(rsp.Body)

@ -79,6 +79,9 @@ type ServerInterface interface {
// Fetch a summary of all tasks of the given job.
// (GET /api/v3/jobs/{job_id}/tasks)
FetchJobTasks(ctx echo.Context, jobId string) error
// 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.
// (GET /api/v3/jobs/{job_id}/what-would-delete-do)
DeleteJobWhatWouldItDo(ctx echo.Context, jobId string) error
// Create a directory, and symlink the required files into it. The files must all have been uploaded to Shaman before calling this endpoint.
// (POST /api/v3/shaman/checkout/create)
ShamanCheckout(ctx echo.Context) error
@ -450,6 +453,22 @@ func (w *ServerInterfaceWrapper) FetchJobTasks(ctx echo.Context) error {
return err
}
// DeleteJobWhatWouldItDo converts echo context to params.
func (w *ServerInterfaceWrapper) DeleteJobWhatWouldItDo(ctx echo.Context) error {
var err error
// ------------- Path parameter "job_id" -------------
var jobId string
err = runtime.BindStyledParameterWithLocation("simple", false, "job_id", runtime.ParamLocationPath, ctx.Param("job_id"), &jobId)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid format for parameter job_id: %s", err))
}
// Invoke the callback with all the unmarshalled arguments
err = w.Handler.DeleteJobWhatWouldItDo(ctx, jobId)
return err
}
// ShamanCheckout converts echo context to params.
func (w *ServerInterfaceWrapper) ShamanCheckout(ctx echo.Context) error {
var err error
@ -881,6 +900,7 @@ func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL
router.POST(baseURL+"/api/v3/jobs/:job_id/setpriority", wrapper.SetJobPriority)
router.POST(baseURL+"/api/v3/jobs/:job_id/setstatus", wrapper.SetJobStatus)
router.GET(baseURL+"/api/v3/jobs/:job_id/tasks", wrapper.FetchJobTasks)
router.GET(baseURL+"/api/v3/jobs/:job_id/what-would-delete-do", wrapper.DeleteJobWhatWouldItDo)
router.POST(baseURL+"/api/v3/shaman/checkout/create", wrapper.ShamanCheckout)
router.POST(baseURL+"/api/v3/shaman/checkout/requirements", wrapper.ShamanCheckoutRequirements)
router.GET(baseURL+"/api/v3/shaman/files/:checksum/:filesize", wrapper.ShamanFileStoreCheck)

@ -18,201 +18,205 @@ import (
// Base64 encoded, gzipped, json marshaled Swagger object
var swaggerSpec = []string{
"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",
}
// GetSwagger returns the content of the embedded swagger specification file

@ -297,6 +297,12 @@ type JobBlocklistEntry struct {
WorkerName *string `json:"worker_name,omitempty"`
}
// Info about what will be deleted when this job is deleted.
type JobDeletionInfo struct {
// Whether the Shaman checkout directory will be removed along with the job.
ShamanCheckout bool `json:"shaman_checkout"`
}
// Enough information for a client to piece together different strings to form a host-relative URL to the last-rendered image. To construct the URL, concatenate "{base}/{one of the suffixes}".
type JobLastRenderedImageInfo struct {
Base string `json:"base"`
@ -515,6 +521,9 @@ type SharedStorageLocation struct {
// Subset of a Job, sent over SocketIO when a job changes. For new jobs, `previous_status` will be excluded.
type SocketIOJobUpdate struct {
// If job deletion was requested, this is the timestamp at which that request was stored on Flamenco Manager.
DeleteRequestedAt *time.Time `json:"delete_requested_at,omitempty"`
// UUID of the Job
Id string `json:"id"`
@ -530,6 +539,9 @@ type SocketIOJobUpdate struct {
// Timestamp of last update
Updated time.Time `json:"updated"`
// When a job was just deleted, this is set to `true`. If this is specified, only the 'id' field is set, the rest will be empty.
WasDeleted *bool `json:"was_deleted,omitempty"`
}
// Indicator that the last-rendered image of this job was updated.

@ -28,6 +28,7 @@ import FlamencoVersion from './model/FlamencoVersion';
import Job from './model/Job';
import JobAllOf from './model/JobAllOf';
import JobBlocklistEntry from './model/JobBlocklistEntry';
import JobDeletionInfo from './model/JobDeletionInfo';
import JobLastRenderedImageInfo from './model/JobLastRenderedImageInfo';
import JobPriorityChange from './model/JobPriorityChange';
import JobStatus from './model/JobStatus';
@ -218,6 +219,12 @@ export {
*/
JobBlocklistEntry,
/**
* The JobDeletionInfo model constructor.
* @property {module:model/JobDeletionInfo}
*/
JobDeletionInfo,
/**
* The JobLastRenderedImageInfo model constructor.
* @property {module:model/JobLastRenderedImageInfo}

@ -18,6 +18,7 @@ import AvailableJobTypes from '../model/AvailableJobTypes';
import Error from '../model/Error';
import Job from '../model/Job';
import JobBlocklistEntry from '../model/JobBlocklistEntry';
import JobDeletionInfo from '../model/JobDeletionInfo';
import JobLastRenderedImageInfo from '../model/JobLastRenderedImageInfo';
import JobPriorityChange from '../model/JobPriorityChange';
import JobStatusChange from '../model/JobStatusChange';
@ -95,6 +96,52 @@ export default class JobsApi {
}
/**
* 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.
* @param {String} jobId
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/JobDeletionInfo} and HTTP response
*/
deleteJobWhatWouldItDoWithHttpInfo(jobId) {
let postBody = null;
// verify the required parameter 'jobId' is set
if (jobId === undefined || jobId === null) {
throw new Error("Missing the required parameter 'jobId' when calling deleteJobWhatWouldItDo");
}
let pathParams = {
'job_id': jobId
};
let queryParams = {
};
let headerParams = {
};
let formParams = {
};
let authNames = [];
let contentTypes = [];
let accepts = ['application/json'];
let returnType = JobDeletionInfo;
return this.apiClient.callApi(
'/api/v3/jobs/{job_id}/what-would-delete-do', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType, null
);
}
/**
* 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.
* @param {String} jobId
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/JobDeletionInfo}
*/
deleteJobWhatWouldItDo(jobId) {
return this.deleteJobWhatWouldItDoWithHttpInfo(jobId)
.then(function(response_and_data) {
return response_and_data.data;
});
}
/**
* Get the URL that serves the last-rendered images.
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/JobLastRenderedImageInfo} and HTTP response

@ -0,0 +1,75 @@
/**
* Flamenco manager
* Render Farm manager API
*
* The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
import ApiClient from '../ApiClient';
/**
* The JobDeletionInfo model module.
* @module model/JobDeletionInfo
* @version 0.0.0
*/
class JobDeletionInfo {
/**
* Constructs a new <code>JobDeletionInfo</code>.
* Info about what will be deleted when this job is deleted.
* @alias module:model/JobDeletionInfo
* @param shamanCheckout {Boolean} Whether the Shaman checkout directory will be removed along with the job.
*/
constructor(shamanCheckout) {
JobDeletionInfo.initialize(this, shamanCheckout);
}
/**
* Initializes the fields of this object.
* This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins).
* Only for internal use.
*/
static initialize(obj, shamanCheckout) {
obj['shaman_checkout'] = shamanCheckout;
}
/**
* Constructs a <code>JobDeletionInfo</code> from a plain JavaScript object, optionally creating a new instance.
* Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
* @param {Object} data The plain JavaScript object bearing properties of interest.
* @param {module:model/JobDeletionInfo} obj Optional instance to populate.
* @return {module:model/JobDeletionInfo} The populated <code>JobDeletionInfo</code> instance.
*/
static constructFromObject(data, obj) {
if (data) {
obj = obj || new JobDeletionInfo();
if (data.hasOwnProperty('shaman_checkout')) {
obj['shaman_checkout'] = ApiClient.convertToType(data['shaman_checkout'], 'Boolean');
}
}
return obj;
}
}
/**
* Whether the Shaman checkout directory will be removed along with the job.
* @member {Boolean} shaman_checkout
*/
JobDeletionInfo.prototype['shaman_checkout'] = undefined;
export default JobDeletionInfo;

@ -85,6 +85,12 @@ class SocketIOJobUpdate {
if (data.hasOwnProperty('refresh_tasks')) {
obj['refresh_tasks'] = ApiClient.convertToType(data['refresh_tasks'], 'Boolean');
}
if (data.hasOwnProperty('delete_requested_at')) {
obj['delete_requested_at'] = ApiClient.convertToType(data['delete_requested_at'], 'Date');
}
if (data.hasOwnProperty('was_deleted')) {
obj['was_deleted'] = ApiClient.convertToType(data['was_deleted'], 'Boolean');
}
}
return obj;
}
@ -137,6 +143,18 @@ SocketIOJobUpdate.prototype['priority'] = 50;
*/
SocketIOJobUpdate.prototype['refresh_tasks'] = undefined;
/**
* If job deletion was requested, this is the timestamp at which that request was stored on Flamenco Manager.
* @member {Date} delete_requested_at
*/
SocketIOJobUpdate.prototype['delete_requested_at'] = undefined;
/**
* When a job was just deleted, this is set to `true`. If this is specified, only the 'id' field is set, the rest will be empty.
* @member {Boolean} was_deleted
*/
SocketIOJobUpdate.prototype['was_deleted'] = undefined;