Sync branch magefile with main #104308
115
addon/flamenco/manager/api/meta_api.py
generated
115
addon/flamenco/manager/api/meta_api.py
generated
@ -24,6 +24,7 @@ from flamenco.manager.model_utils import ( # noqa: F401
|
|||||||
from flamenco.manager.model.blender_path_check_result import BlenderPathCheckResult
|
from flamenco.manager.model.blender_path_check_result import BlenderPathCheckResult
|
||||||
from flamenco.manager.model.blender_path_find_result import BlenderPathFindResult
|
from flamenco.manager.model.blender_path_find_result import BlenderPathFindResult
|
||||||
from flamenco.manager.model.error import Error
|
from flamenco.manager.model.error import Error
|
||||||
|
from flamenco.manager.model.farm_status_report import FarmStatusReport
|
||||||
from flamenco.manager.model.flamenco_version import FlamencoVersion
|
from flamenco.manager.model.flamenco_version import FlamencoVersion
|
||||||
from flamenco.manager.model.manager_configuration import ManagerConfiguration
|
from flamenco.manager.model.manager_configuration import ManagerConfiguration
|
||||||
from flamenco.manager.model.manager_variable_audience import ManagerVariableAudience
|
from flamenco.manager.model.manager_variable_audience import ManagerVariableAudience
|
||||||
@ -268,6 +269,48 @@ class MetaApi(object):
|
|||||||
},
|
},
|
||||||
api_client=api_client
|
api_client=api_client
|
||||||
)
|
)
|
||||||
|
self.get_farm_status_endpoint = _Endpoint(
|
||||||
|
settings={
|
||||||
|
'response_type': (FarmStatusReport,),
|
||||||
|
'auth': [],
|
||||||
|
'endpoint_path': '/api/v3/status',
|
||||||
|
'operation_id': 'get_farm_status',
|
||||||
|
'http_method': 'GET',
|
||||||
|
'servers': None,
|
||||||
|
},
|
||||||
|
params_map={
|
||||||
|
'all': [
|
||||||
|
],
|
||||||
|
'required': [],
|
||||||
|
'nullable': [
|
||||||
|
],
|
||||||
|
'enum': [
|
||||||
|
],
|
||||||
|
'validation': [
|
||||||
|
]
|
||||||
|
},
|
||||||
|
root_map={
|
||||||
|
'validations': {
|
||||||
|
},
|
||||||
|
'allowed_values': {
|
||||||
|
},
|
||||||
|
'openapi_types': {
|
||||||
|
},
|
||||||
|
'attribute_map': {
|
||||||
|
},
|
||||||
|
'location_map': {
|
||||||
|
},
|
||||||
|
'collection_format_map': {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
headers_map={
|
||||||
|
'accept': [
|
||||||
|
'application/json'
|
||||||
|
],
|
||||||
|
'content_type': [],
|
||||||
|
},
|
||||||
|
api_client=api_client
|
||||||
|
)
|
||||||
self.get_shared_storage_endpoint = _Endpoint(
|
self.get_shared_storage_endpoint = _Endpoint(
|
||||||
settings={
|
settings={
|
||||||
'response_type': (SharedStorageLocation,),
|
'response_type': (SharedStorageLocation,),
|
||||||
@ -831,6 +874,78 @@ class MetaApi(object):
|
|||||||
kwargs['_host_index'] = kwargs.get('_host_index')
|
kwargs['_host_index'] = kwargs.get('_host_index')
|
||||||
return self.get_configuration_file_endpoint.call_with_http_info(**kwargs)
|
return self.get_configuration_file_endpoint.call_with_http_info(**kwargs)
|
||||||
|
|
||||||
|
def get_farm_status(
|
||||||
|
self,
|
||||||
|
**kwargs
|
||||||
|
):
|
||||||
|
"""Get the status of this Flamenco farm. # noqa: E501
|
||||||
|
|
||||||
|
This method makes a synchronous HTTP request by default. To make an
|
||||||
|
asynchronous HTTP request, please pass async_req=True
|
||||||
|
|
||||||
|
>>> thread = api.get_farm_status(async_req=True)
|
||||||
|
>>> result = thread.get()
|
||||||
|
|
||||||
|
|
||||||
|
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:
|
||||||
|
FarmStatusReport
|
||||||
|
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')
|
||||||
|
return self.get_farm_status_endpoint.call_with_http_info(**kwargs)
|
||||||
|
|
||||||
def get_shared_storage(
|
def get_shared_storage(
|
||||||
self,
|
self,
|
||||||
audience,
|
audience,
|
||||||
|
11
addon/flamenco/manager/docs/FarmStatus.md
generated
Normal file
11
addon/flamenco/manager/docs/FarmStatus.md
generated
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# FarmStatus
|
||||||
|
|
||||||
|
|
||||||
|
## Properties
|
||||||
|
Name | Type | Description | Notes
|
||||||
|
------------ | ------------- | ------------- | -------------
|
||||||
|
**value** | **str** | | must be one of ["active", "idle", "waiting", "asleep", "inoperative", "unknown", "starting", ]
|
||||||
|
|
||||||
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
|
12
addon/flamenco/manager/docs/FarmStatusReport.md
generated
Normal file
12
addon/flamenco/manager/docs/FarmStatusReport.md
generated
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# FarmStatusReport
|
||||||
|
|
||||||
|
|
||||||
|
## Properties
|
||||||
|
Name | Type | Description | Notes
|
||||||
|
------------ | ------------- | ------------- | -------------
|
||||||
|
**status** | [**FarmStatus**](FarmStatus.md) | |
|
||||||
|
**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)
|
||||||
|
|
||||||
|
|
62
addon/flamenco/manager/docs/MetaApi.md
generated
62
addon/flamenco/manager/docs/MetaApi.md
generated
@ -9,6 +9,7 @@ Method | HTTP request | Description
|
|||||||
[**find_blender_exe_path**](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
|
[**find_blender_exe_path**](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
|
||||||
[**get_configuration**](MetaApi.md#get_configuration) | **GET** /api/v3/configuration | Get the configuration of this Manager.
|
[**get_configuration**](MetaApi.md#get_configuration) | **GET** /api/v3/configuration | Get the configuration of this Manager.
|
||||||
[**get_configuration_file**](MetaApi.md#get_configuration_file) | **GET** /api/v3/configuration/file | Retrieve the configuration of Flamenco Manager.
|
[**get_configuration_file**](MetaApi.md#get_configuration_file) | **GET** /api/v3/configuration/file | Retrieve the configuration of Flamenco Manager.
|
||||||
|
[**get_farm_status**](MetaApi.md#get_farm_status) | **GET** /api/v3/status | Get the status of this Flamenco farm.
|
||||||
[**get_shared_storage**](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.
|
[**get_shared_storage**](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.
|
||||||
[**get_variables**](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.
|
[**get_variables**](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.
|
||||||
[**get_version**](MetaApi.md#get_version) | **GET** /api/v3/version | Get the Flamenco version of this Manager
|
[**get_version**](MetaApi.md#get_version) | **GET** /api/v3/version | Get the Flamenco version of this Manager
|
||||||
@ -341,6 +342,67 @@ 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)
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||||
|
|
||||||
|
# **get_farm_status**
|
||||||
|
> FarmStatusReport get_farm_status()
|
||||||
|
|
||||||
|
Get the status of this Flamenco farm.
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
|
||||||
|
```python
|
||||||
|
import time
|
||||||
|
import flamenco.manager
|
||||||
|
from flamenco.manager.api import meta_api
|
||||||
|
from flamenco.manager.model.farm_status_report import FarmStatusReport
|
||||||
|
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 = meta_api.MetaApi(api_client)
|
||||||
|
|
||||||
|
# example, this endpoint has no required or optional parameters
|
||||||
|
try:
|
||||||
|
# Get the status of this Flamenco farm.
|
||||||
|
api_response = api_instance.get_farm_status()
|
||||||
|
pprint(api_response)
|
||||||
|
except flamenco.manager.ApiException as e:
|
||||||
|
print("Exception when calling MetaApi->get_farm_status: %s\n" % e)
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
### Parameters
|
||||||
|
This endpoint does not need any parameter.
|
||||||
|
|
||||||
|
### Return type
|
||||||
|
|
||||||
|
[**FarmStatusReport**](FarmStatusReport.md)
|
||||||
|
|
||||||
|
### Authorization
|
||||||
|
|
||||||
|
No authorization required
|
||||||
|
|
||||||
|
### HTTP request headers
|
||||||
|
|
||||||
|
- **Content-Type**: Not defined
|
||||||
|
- **Accept**: application/json
|
||||||
|
|
||||||
|
|
||||||
|
### HTTP response details
|
||||||
|
|
||||||
|
| Status code | Description | Response headers |
|
||||||
|
|-------------|-------------|------------------|
|
||||||
|
**200** | normal response | - |
|
||||||
|
|
||||||
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
||||||
|
|
||||||
# **get_shared_storage**
|
# **get_shared_storage**
|
||||||
> SharedStorageLocation get_shared_storage(audience, platform)
|
> SharedStorageLocation get_shared_storage(audience, platform)
|
||||||
|
|
||||||
|
287
addon/flamenco/manager/model/farm_status.py
generated
Normal file
287
addon/flamenco/manager/model/farm_status.py
generated
Normal file
@ -0,0 +1,287 @@
|
|||||||
|
"""
|
||||||
|
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 FarmStatus(ModelSimple):
|
||||||
|
"""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.
|
||||||
|
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 = {
|
||||||
|
('value',): {
|
||||||
|
'ACTIVE': "active",
|
||||||
|
'IDLE': "idle",
|
||||||
|
'WAITING': "waiting",
|
||||||
|
'ASLEEP': "asleep",
|
||||||
|
'INOPERATIVE': "inoperative",
|
||||||
|
'UNKNOWN': "unknown",
|
||||||
|
'STARTING': "starting",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
validations = {
|
||||||
|
}
|
||||||
|
|
||||||
|
additional_properties_type = None
|
||||||
|
|
||||||
|
_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 {
|
||||||
|
'value': (str,),
|
||||||
|
}
|
||||||
|
|
||||||
|
@cached_property
|
||||||
|
def discriminator():
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
attribute_map = {}
|
||||||
|
|
||||||
|
read_only_vars = set()
|
||||||
|
|
||||||
|
_composed_schemas = None
|
||||||
|
|
||||||
|
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, *args, **kwargs):
|
||||||
|
"""FarmStatus - a model defined in OpenAPI
|
||||||
|
|
||||||
|
Note that value can be passed either in args or in kwargs, but not in both.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
args[0] (str):, must be one of ["active", "idle", "waiting", "asleep", "inoperative", "unknown", "starting", ] # noqa: E501
|
||||||
|
|
||||||
|
Keyword Args:
|
||||||
|
value (str):, must be one of ["active", "idle", "waiting", "asleep", "inoperative", "unknown", "starting", ] # noqa: E501
|
||||||
|
_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,)
|
||||||
|
"""
|
||||||
|
# required up here when default value is not given
|
||||||
|
_path_to_item = kwargs.pop('_path_to_item', ())
|
||||||
|
|
||||||
|
if 'value' in kwargs:
|
||||||
|
value = kwargs.pop('value')
|
||||||
|
elif args:
|
||||||
|
args = list(args)
|
||||||
|
value = args.pop(0)
|
||||||
|
else:
|
||||||
|
raise ApiTypeError(
|
||||||
|
"value is required, but not passed in args or kwargs and doesn't have default",
|
||||||
|
path_to_item=_path_to_item,
|
||||||
|
valid_classes=(self.__class__,),
|
||||||
|
)
|
||||||
|
|
||||||
|
_check_type = kwargs.pop('_check_type', True)
|
||||||
|
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
||||||
|
_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.value = value
|
||||||
|
if kwargs:
|
||||||
|
raise ApiTypeError(
|
||||||
|
"Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % (
|
||||||
|
kwargs,
|
||||||
|
self.__class__.__name__,
|
||||||
|
),
|
||||||
|
path_to_item=_path_to_item,
|
||||||
|
valid_classes=(self.__class__,),
|
||||||
|
)
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
@convert_js_args_to_python_args
|
||||||
|
def _from_openapi_data(cls, *args, **kwargs):
|
||||||
|
"""FarmStatus - a model defined in OpenAPI
|
||||||
|
|
||||||
|
Note that value can be passed either in args or in kwargs, but not in both.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
args[0] (str):, must be one of ["active", "idle", "waiting", "asleep", "inoperative", "unknown", "starting", ] # noqa: E501
|
||||||
|
|
||||||
|
Keyword Args:
|
||||||
|
value (str):, must be one of ["active", "idle", "waiting", "asleep", "inoperative", "unknown", "starting", ] # noqa: E501
|
||||||
|
_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,)
|
||||||
|
"""
|
||||||
|
# required up here when default value is not given
|
||||||
|
_path_to_item = kwargs.pop('_path_to_item', ())
|
||||||
|
|
||||||
|
self = super(OpenApiModel, cls).__new__(cls)
|
||||||
|
|
||||||
|
if 'value' in kwargs:
|
||||||
|
value = kwargs.pop('value')
|
||||||
|
elif args:
|
||||||
|
args = list(args)
|
||||||
|
value = args.pop(0)
|
||||||
|
else:
|
||||||
|
raise ApiTypeError(
|
||||||
|
"value is required, but not passed in args or kwargs and doesn't have default",
|
||||||
|
path_to_item=_path_to_item,
|
||||||
|
valid_classes=(self.__class__,),
|
||||||
|
)
|
||||||
|
|
||||||
|
_check_type = kwargs.pop('_check_type', True)
|
||||||
|
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
||||||
|
_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.value = value
|
||||||
|
if kwargs:
|
||||||
|
raise ApiTypeError(
|
||||||
|
"Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % (
|
||||||
|
kwargs,
|
||||||
|
self.__class__.__name__,
|
||||||
|
),
|
||||||
|
path_to_item=_path_to_item,
|
||||||
|
valid_classes=(self.__class__,),
|
||||||
|
)
|
||||||
|
|
||||||
|
return self
|
267
addon/flamenco/manager/model/farm_status_report.py
generated
Normal file
267
addon/flamenco/manager/model/farm_status_report.py
generated
Normal file
@ -0,0 +1,267 @@
|
|||||||
|
"""
|
||||||
|
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
|
||||||
|
|
||||||
|
|
||||||
|
def lazy_import():
|
||||||
|
from flamenco.manager.model.farm_status import FarmStatus
|
||||||
|
globals()['FarmStatus'] = FarmStatus
|
||||||
|
|
||||||
|
|
||||||
|
class FarmStatusReport(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
|
||||||
|
"""
|
||||||
|
lazy_import()
|
||||||
|
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.
|
||||||
|
"""
|
||||||
|
lazy_import()
|
||||||
|
return {
|
||||||
|
'status': (FarmStatus,), # noqa: E501
|
||||||
|
}
|
||||||
|
|
||||||
|
@cached_property
|
||||||
|
def discriminator():
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
attribute_map = {
|
||||||
|
'status': 'status', # noqa: E501
|
||||||
|
}
|
||||||
|
|
||||||
|
read_only_vars = {
|
||||||
|
}
|
||||||
|
|
||||||
|
_composed_schemas = {}
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
@convert_js_args_to_python_args
|
||||||
|
def _from_openapi_data(cls, status, *args, **kwargs): # noqa: E501
|
||||||
|
"""FarmStatusReport - a model defined in OpenAPI
|
||||||
|
|
||||||
|
Args:
|
||||||
|
status (FarmStatus):
|
||||||
|
|
||||||
|
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.status = status
|
||||||
|
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, status, *args, **kwargs): # noqa: E501
|
||||||
|
"""FarmStatusReport - a model defined in OpenAPI
|
||||||
|
|
||||||
|
Args:
|
||||||
|
status (FarmStatus):
|
||||||
|
|
||||||
|
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.status = status
|
||||||
|
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.")
|
2
addon/flamenco/manager/models/__init__.py
generated
2
addon/flamenco/manager/models/__init__.py
generated
@ -29,6 +29,8 @@ from flamenco.manager.model.event_task_log_update import EventTaskLogUpdate
|
|||||||
from flamenco.manager.model.event_task_update import EventTaskUpdate
|
from flamenco.manager.model.event_task_update import EventTaskUpdate
|
||||||
from flamenco.manager.model.event_worker_tag_update import EventWorkerTagUpdate
|
from flamenco.manager.model.event_worker_tag_update import EventWorkerTagUpdate
|
||||||
from flamenco.manager.model.event_worker_update import EventWorkerUpdate
|
from flamenco.manager.model.event_worker_update import EventWorkerUpdate
|
||||||
|
from flamenco.manager.model.farm_status import FarmStatus
|
||||||
|
from flamenco.manager.model.farm_status_report import FarmStatusReport
|
||||||
from flamenco.manager.model.flamenco_version import FlamencoVersion
|
from flamenco.manager.model.flamenco_version import FlamencoVersion
|
||||||
from flamenco.manager.model.job import Job
|
from flamenco.manager.model.job import Job
|
||||||
from flamenco.manager.model.job_all_of import JobAllOf
|
from flamenco.manager.model.job_all_of import JobAllOf
|
||||||
|
279
addon/flamenco/manager_README.md
generated
279
addon/flamenco/manager_README.md
generated
@ -76,148 +76,151 @@ 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_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* | [**query_jobs**](flamenco/manager/docs/JobsApi.md#query_jobs) | **POST** /api/v3/jobs/query | Fetch list of jobs.
|
*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* | [**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_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_farm_status**](flamenco\manager\docs/MetaApi.md#get_farm_status) | **GET** /api/v3/status | Get the status of this Flamenco farm.
|
||||||
*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_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_version**](flamenco/manager/docs/MetaApi.md#get_version) | **GET** /api/v3/version | Get the Flamenco version of this Manager
|
*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* | [**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* | [**get_version**](flamenco\manager\docs/MetaApi.md#get_version) | **GET** /api/v3/version | Get the Flamenco version of this Manager
|
||||||
*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.
|
*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_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**](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_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_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_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**](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.
|
||||||
*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.
|
*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* | [**register_worker**](flamenco/manager/docs/WorkerApi.md#register_worker) | **POST** /api/v3/worker/register-worker | Register a new worker
|
*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* | [**schedule_task**](flamenco/manager/docs/WorkerApi.md#schedule_task) | **POST** /api/v3/worker/task | Obtain a new task to execute
|
*WorkerApi* | [**register_worker**](flamenco\manager\docs/WorkerApi.md#register_worker) | **POST** /api/v3/worker/register-worker | Register a new worker
|
||||||
*WorkerApi* | [**sign_off**](flamenco/manager/docs/WorkerApi.md#sign_off) | **POST** /api/v3/worker/sign-off | Mark the worker as offline
|
*WorkerApi* | [**schedule_task**](flamenco\manager\docs/WorkerApi.md#schedule_task) | **POST** /api/v3/worker/task | Obtain a new task to execute
|
||||||
*WorkerApi* | [**sign_on**](flamenco/manager/docs/WorkerApi.md#sign_on) | **POST** /api/v3/worker/sign-on | Authenticate & sign in the worker.
|
*WorkerApi* | [**sign_off**](flamenco\manager\docs/WorkerApi.md#sign_off) | **POST** /api/v3/worker/sign-off | Mark the worker as offline
|
||||||
*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* | [**sign_on**](flamenco\manager\docs/WorkerApi.md#sign_on) | **POST** /api/v3/worker/sign-on | Authenticate & sign in the worker.
|
||||||
*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_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* | [**worker_state**](flamenco/manager/docs/WorkerApi.md#worker_state) | **GET** /api/v3/worker/state |
|
*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_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**](flamenco\manager\docs/WorkerApi.md#worker_state) | **GET** /api/v3/worker/state |
|
||||||
*WorkerMgtApi* | [**create_worker_tag**](flamenco/manager/docs/WorkerMgtApi.md#create_worker_tag) | **POST** /api/v3/worker-mgt/tags | Create a new worker tag.
|
*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* | [**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_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**](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* | [**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_sleep_schedule**](flamenco/manager/docs/WorkerMgtApi.md#fetch_worker_sleep_schedule) | **GET** /api/v3/worker-mgt/workers/{worker_id}/sleep-schedule |
|
*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_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_sleep_schedule**](flamenco\manager\docs/WorkerMgtApi.md#fetch_worker_sleep_schedule) | **GET** /api/v3/worker-mgt/workers/{worker_id}/sleep-schedule |
|
||||||
*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_tag**](flamenco\manager\docs/WorkerMgtApi.md#fetch_worker_tag) | **GET** /api/v3/worker-mgt/tag/{tag_id} | Get a single worker tag.
|
||||||
*WorkerMgtApi* | [**fetch_workers**](flamenco/manager/docs/WorkerMgtApi.md#fetch_workers) | **GET** /api/v3/worker-mgt/workers | Get list of workers.
|
*WorkerMgtApi* | [**fetch_worker_tags**](flamenco\manager\docs/WorkerMgtApi.md#fetch_worker_tags) | **GET** /api/v3/worker-mgt/tags | Get list of worker tags.
|
||||||
*WorkerMgtApi* | [**request_worker_status_change**](flamenco/manager/docs/WorkerMgtApi.md#request_worker_status_change) | **POST** /api/v3/worker-mgt/workers/{worker_id}/setstatus |
|
*WorkerMgtApi* | [**fetch_workers**](flamenco\manager\docs/WorkerMgtApi.md#fetch_workers) | **GET** /api/v3/worker-mgt/workers | Get list of workers.
|
||||||
*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* | [**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_tags**](flamenco/manager/docs/WorkerMgtApi.md#set_worker_tags) | **POST** /api/v3/worker-mgt/workers/{worker_id}/settags |
|
*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* | [**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* | [**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.
|
||||||
|
|
||||||
|
|
||||||
## 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)
|
||||||
- [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)
|
||||||
- [FlamencoVersion](flamenco/manager/docs/FlamencoVersion.md)
|
- [FarmStatus](flamenco\manager\docs/FarmStatus.md)
|
||||||
- [Job](flamenco/manager/docs/Job.md)
|
- [FarmStatusReport](flamenco\manager\docs/FarmStatusReport.md)
|
||||||
- [JobAllOf](flamenco/manager/docs/JobAllOf.md)
|
- [FlamencoVersion](flamenco\manager\docs/FlamencoVersion.md)
|
||||||
- [JobBlocklist](flamenco/manager/docs/JobBlocklist.md)
|
- [Job](flamenco\manager\docs/Job.md)
|
||||||
- [JobBlocklistEntry](flamenco/manager/docs/JobBlocklistEntry.md)
|
- [JobAllOf](flamenco\manager\docs/JobAllOf.md)
|
||||||
- [JobDeletionInfo](flamenco/manager/docs/JobDeletionInfo.md)
|
- [JobBlocklist](flamenco\manager\docs/JobBlocklist.md)
|
||||||
- [JobLastRenderedImageInfo](flamenco/manager/docs/JobLastRenderedImageInfo.md)
|
- [JobBlocklistEntry](flamenco\manager\docs/JobBlocklistEntry.md)
|
||||||
- [JobMassDeletionSelection](flamenco/manager/docs/JobMassDeletionSelection.md)
|
- [JobDeletionInfo](flamenco\manager\docs/JobDeletionInfo.md)
|
||||||
- [JobMetadata](flamenco/manager/docs/JobMetadata.md)
|
- [JobLastRenderedImageInfo](flamenco\manager\docs/JobLastRenderedImageInfo.md)
|
||||||
- [JobPriorityChange](flamenco/manager/docs/JobPriorityChange.md)
|
- [JobMassDeletionSelection](flamenco\manager\docs/JobMassDeletionSelection.md)
|
||||||
- [JobSettings](flamenco/manager/docs/JobSettings.md)
|
- [JobMetadata](flamenco\manager\docs/JobMetadata.md)
|
||||||
- [JobStatus](flamenco/manager/docs/JobStatus.md)
|
- [JobPriorityChange](flamenco\manager\docs/JobPriorityChange.md)
|
||||||
- [JobStatusChange](flamenco/manager/docs/JobStatusChange.md)
|
- [JobSettings](flamenco\manager\docs/JobSettings.md)
|
||||||
- [JobStorageInfo](flamenco/manager/docs/JobStorageInfo.md)
|
- [JobStatus](flamenco\manager\docs/JobStatus.md)
|
||||||
- [JobTasksSummary](flamenco/manager/docs/JobTasksSummary.md)
|
- [JobStatusChange](flamenco\manager\docs/JobStatusChange.md)
|
||||||
- [JobsQuery](flamenco/manager/docs/JobsQuery.md)
|
- [JobStorageInfo](flamenco\manager\docs/JobStorageInfo.md)
|
||||||
- [JobsQueryResult](flamenco/manager/docs/JobsQueryResult.md)
|
- [JobTasksSummary](flamenco\manager\docs/JobTasksSummary.md)
|
||||||
- [LifeCycleEventType](flamenco/manager/docs/LifeCycleEventType.md)
|
- [JobsQuery](flamenco\manager\docs/JobsQuery.md)
|
||||||
- [ManagerConfiguration](flamenco/manager/docs/ManagerConfiguration.md)
|
- [JobsQueryResult](flamenco\manager\docs/JobsQueryResult.md)
|
||||||
- [ManagerVariable](flamenco/manager/docs/ManagerVariable.md)
|
- [LifeCycleEventType](flamenco\manager\docs/LifeCycleEventType.md)
|
||||||
- [ManagerVariableAudience](flamenco/manager/docs/ManagerVariableAudience.md)
|
- [ManagerConfiguration](flamenco\manager\docs/ManagerConfiguration.md)
|
||||||
- [ManagerVariables](flamenco/manager/docs/ManagerVariables.md)
|
- [ManagerVariable](flamenco\manager\docs/ManagerVariable.md)
|
||||||
- [MayKeepRunning](flamenco/manager/docs/MayKeepRunning.md)
|
- [ManagerVariableAudience](flamenco\manager\docs/ManagerVariableAudience.md)
|
||||||
- [PathCheckInput](flamenco/manager/docs/PathCheckInput.md)
|
- [ManagerVariables](flamenco\manager\docs/ManagerVariables.md)
|
||||||
- [PathCheckResult](flamenco/manager/docs/PathCheckResult.md)
|
- [MayKeepRunning](flamenco\manager\docs/MayKeepRunning.md)
|
||||||
- [RegisteredWorker](flamenco/manager/docs/RegisteredWorker.md)
|
- [PathCheckInput](flamenco\manager\docs/PathCheckInput.md)
|
||||||
- [SecurityError](flamenco/manager/docs/SecurityError.md)
|
- [PathCheckResult](flamenco\manager\docs/PathCheckResult.md)
|
||||||
- [SetupAssistantConfig](flamenco/manager/docs/SetupAssistantConfig.md)
|
- [RegisteredWorker](flamenco\manager\docs/RegisteredWorker.md)
|
||||||
- [ShamanCheckout](flamenco/manager/docs/ShamanCheckout.md)
|
- [SecurityError](flamenco\manager\docs/SecurityError.md)
|
||||||
- [ShamanCheckoutResult](flamenco/manager/docs/ShamanCheckoutResult.md)
|
- [SetupAssistantConfig](flamenco\manager\docs/SetupAssistantConfig.md)
|
||||||
- [ShamanFileSpec](flamenco/manager/docs/ShamanFileSpec.md)
|
- [ShamanCheckout](flamenco\manager\docs/ShamanCheckout.md)
|
||||||
- [ShamanFileSpecWithStatus](flamenco/manager/docs/ShamanFileSpecWithStatus.md)
|
- [ShamanCheckoutResult](flamenco\manager\docs/ShamanCheckoutResult.md)
|
||||||
- [ShamanFileStatus](flamenco/manager/docs/ShamanFileStatus.md)
|
- [ShamanFileSpec](flamenco\manager\docs/ShamanFileSpec.md)
|
||||||
- [ShamanRequirementsRequest](flamenco/manager/docs/ShamanRequirementsRequest.md)
|
- [ShamanFileSpecWithStatus](flamenco\manager\docs/ShamanFileSpecWithStatus.md)
|
||||||
- [ShamanRequirementsResponse](flamenco/manager/docs/ShamanRequirementsResponse.md)
|
- [ShamanFileStatus](flamenco\manager\docs/ShamanFileStatus.md)
|
||||||
- [ShamanSingleFileStatus](flamenco/manager/docs/ShamanSingleFileStatus.md)
|
- [ShamanRequirementsRequest](flamenco\manager\docs/ShamanRequirementsRequest.md)
|
||||||
- [SharedStorageLocation](flamenco/manager/docs/SharedStorageLocation.md)
|
- [ShamanRequirementsResponse](flamenco\manager\docs/ShamanRequirementsResponse.md)
|
||||||
- [SocketIOSubscription](flamenco/manager/docs/SocketIOSubscription.md)
|
- [ShamanSingleFileStatus](flamenco\manager\docs/ShamanSingleFileStatus.md)
|
||||||
- [SocketIOSubscriptionOperation](flamenco/manager/docs/SocketIOSubscriptionOperation.md)
|
- [SharedStorageLocation](flamenco\manager\docs/SharedStorageLocation.md)
|
||||||
- [SocketIOSubscriptionType](flamenco/manager/docs/SocketIOSubscriptionType.md)
|
- [SocketIOSubscription](flamenco\manager\docs/SocketIOSubscription.md)
|
||||||
- [SubmittedJob](flamenco/manager/docs/SubmittedJob.md)
|
- [SocketIOSubscriptionOperation](flamenco\manager\docs/SocketIOSubscriptionOperation.md)
|
||||||
- [Task](flamenco/manager/docs/Task.md)
|
- [SocketIOSubscriptionType](flamenco\manager\docs/SocketIOSubscriptionType.md)
|
||||||
- [TaskLogInfo](flamenco/manager/docs/TaskLogInfo.md)
|
- [SubmittedJob](flamenco\manager\docs/SubmittedJob.md)
|
||||||
- [TaskStatus](flamenco/manager/docs/TaskStatus.md)
|
- [Task](flamenco\manager\docs/Task.md)
|
||||||
- [TaskStatusChange](flamenco/manager/docs/TaskStatusChange.md)
|
- [TaskLogInfo](flamenco\manager\docs/TaskLogInfo.md)
|
||||||
- [TaskSummary](flamenco/manager/docs/TaskSummary.md)
|
- [TaskStatus](flamenco\manager\docs/TaskStatus.md)
|
||||||
- [TaskUpdate](flamenco/manager/docs/TaskUpdate.md)
|
- [TaskStatusChange](flamenco\manager\docs/TaskStatusChange.md)
|
||||||
- [TaskWorker](flamenco/manager/docs/TaskWorker.md)
|
- [TaskSummary](flamenco\manager\docs/TaskSummary.md)
|
||||||
- [Worker](flamenco/manager/docs/Worker.md)
|
- [TaskUpdate](flamenco\manager\docs/TaskUpdate.md)
|
||||||
- [WorkerAllOf](flamenco/manager/docs/WorkerAllOf.md)
|
- [TaskWorker](flamenco\manager\docs/TaskWorker.md)
|
||||||
- [WorkerList](flamenco/manager/docs/WorkerList.md)
|
- [Worker](flamenco\manager\docs/Worker.md)
|
||||||
- [WorkerRegistration](flamenco/manager/docs/WorkerRegistration.md)
|
- [WorkerAllOf](flamenco\manager\docs/WorkerAllOf.md)
|
||||||
- [WorkerSignOn](flamenco/manager/docs/WorkerSignOn.md)
|
- [WorkerList](flamenco\manager\docs/WorkerList.md)
|
||||||
- [WorkerSleepSchedule](flamenco/manager/docs/WorkerSleepSchedule.md)
|
- [WorkerRegistration](flamenco\manager\docs/WorkerRegistration.md)
|
||||||
- [WorkerStateChange](flamenco/manager/docs/WorkerStateChange.md)
|
- [WorkerSignOn](flamenco\manager\docs/WorkerSignOn.md)
|
||||||
- [WorkerStateChanged](flamenco/manager/docs/WorkerStateChanged.md)
|
- [WorkerSleepSchedule](flamenco\manager\docs/WorkerSleepSchedule.md)
|
||||||
- [WorkerStatus](flamenco/manager/docs/WorkerStatus.md)
|
- [WorkerStateChange](flamenco\manager\docs/WorkerStateChange.md)
|
||||||
- [WorkerStatusChangeRequest](flamenco/manager/docs/WorkerStatusChangeRequest.md)
|
- [WorkerStateChanged](flamenco\manager\docs/WorkerStateChanged.md)
|
||||||
- [WorkerSummary](flamenco/manager/docs/WorkerSummary.md)
|
- [WorkerStatus](flamenco\manager\docs/WorkerStatus.md)
|
||||||
- [WorkerTag](flamenco/manager/docs/WorkerTag.md)
|
- [WorkerStatusChangeRequest](flamenco\manager\docs/WorkerStatusChangeRequest.md)
|
||||||
- [WorkerTagChangeRequest](flamenco/manager/docs/WorkerTagChangeRequest.md)
|
- [WorkerSummary](flamenco\manager\docs/WorkerSummary.md)
|
||||||
- [WorkerTagList](flamenco/manager/docs/WorkerTagList.md)
|
- [WorkerTag](flamenco\manager\docs/WorkerTag.md)
|
||||||
- [WorkerTask](flamenco/manager/docs/WorkerTask.md)
|
- [WorkerTagChangeRequest](flamenco\manager\docs/WorkerTagChangeRequest.md)
|
||||||
- [WorkerTaskAllOf](flamenco/manager/docs/WorkerTaskAllOf.md)
|
- [WorkerTagList](flamenco\manager\docs/WorkerTagList.md)
|
||||||
|
- [WorkerTask](flamenco\manager\docs/WorkerTask.md)
|
||||||
|
- [WorkerTaskAllOf](flamenco\manager\docs/WorkerTaskAllOf.md)
|
||||||
|
|
||||||
|
|
||||||
## Documentation For Authorization
|
## Documentation For Authorization
|
||||||
|
20
internal/worker/mocks/client.gen.go
generated
20
internal/worker/mocks/client.gen.go
generated
@ -596,6 +596,26 @@ func (mr *MockFlamencoClientMockRecorder) GetConfigurationWithResponse(arg0 inte
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetConfigurationWithResponse", reflect.TypeOf((*MockFlamencoClient)(nil).GetConfigurationWithResponse), varargs...)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetConfigurationWithResponse", reflect.TypeOf((*MockFlamencoClient)(nil).GetConfigurationWithResponse), varargs...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetFarmStatusWithResponse mocks base method.
|
||||||
|
func (m *MockFlamencoClient) GetFarmStatusWithResponse(arg0 context.Context, arg1 ...api.RequestEditorFn) (*api.GetFarmStatusResponse, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
varargs := []interface{}{arg0}
|
||||||
|
for _, a := range arg1 {
|
||||||
|
varargs = append(varargs, a)
|
||||||
|
}
|
||||||
|
ret := m.ctrl.Call(m, "GetFarmStatusWithResponse", varargs...)
|
||||||
|
ret0, _ := ret[0].(*api.GetFarmStatusResponse)
|
||||||
|
ret1, _ := ret[1].(error)
|
||||||
|
return ret0, ret1
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetFarmStatusWithResponse indicates an expected call of GetFarmStatusWithResponse.
|
||||||
|
func (mr *MockFlamencoClientMockRecorder) GetFarmStatusWithResponse(arg0 interface{}, arg1 ...interface{}) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
varargs := append([]interface{}{arg0}, arg1...)
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetFarmStatusWithResponse", reflect.TypeOf((*MockFlamencoClient)(nil).GetFarmStatusWithResponse), varargs...)
|
||||||
|
}
|
||||||
|
|
||||||
// GetJobTypeWithResponse mocks base method.
|
// GetJobTypeWithResponse mocks base method.
|
||||||
func (m *MockFlamencoClient) GetJobTypeWithResponse(arg0 context.Context, arg1 string, arg2 ...api.RequestEditorFn) (*api.GetJobTypeResponse, error) {
|
func (m *MockFlamencoClient) GetJobTypeWithResponse(arg0 context.Context, arg1 string, arg2 ...api.RequestEditorFn) (*api.GetJobTypeResponse, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
|
102
pkg/api/openapi_client.gen.go
generated
102
pkg/api/openapi_client.gen.go
generated
@ -200,6 +200,9 @@ type ClientInterface interface {
|
|||||||
// ShamanFileStore request with any body
|
// ShamanFileStore request with any body
|
||||||
ShamanFileStoreWithBody(ctx context.Context, checksum string, filesize int, params *ShamanFileStoreParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
|
ShamanFileStoreWithBody(ctx context.Context, checksum string, filesize int, params *ShamanFileStoreParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error)
|
||||||
|
|
||||||
|
// GetFarmStatus request
|
||||||
|
GetFarmStatus(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error)
|
||||||
|
|
||||||
// FetchTask request
|
// FetchTask request
|
||||||
FetchTask(ctx context.Context, taskId string, reqEditors ...RequestEditorFn) (*http.Response, error)
|
FetchTask(ctx context.Context, taskId string, reqEditors ...RequestEditorFn) (*http.Response, error)
|
||||||
|
|
||||||
@ -779,6 +782,18 @@ func (c *Client) ShamanFileStoreWithBody(ctx context.Context, checksum string, f
|
|||||||
return c.Client.Do(req)
|
return c.Client.Do(req)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Client) GetFarmStatus(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) {
|
||||||
|
req, err := NewGetFarmStatusRequest(c.Server)
|
||||||
|
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) FetchTask(ctx context.Context, taskId string, reqEditors ...RequestEditorFn) (*http.Response, error) {
|
func (c *Client) FetchTask(ctx context.Context, taskId string, reqEditors ...RequestEditorFn) (*http.Response, error) {
|
||||||
req, err := NewFetchTaskRequest(c.Server, taskId)
|
req, err := NewFetchTaskRequest(c.Server, taskId)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -2273,6 +2288,33 @@ func NewShamanFileStoreRequestWithBody(server string, checksum string, filesize
|
|||||||
return req, nil
|
return req, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewGetFarmStatusRequest generates requests for GetFarmStatus
|
||||||
|
func NewGetFarmStatusRequest(server string) (*http.Request, error) {
|
||||||
|
var err error
|
||||||
|
|
||||||
|
serverURL, err := url.Parse(server)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
operationPath := fmt.Sprintf("/api/v3/status")
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
// NewFetchTaskRequest generates requests for FetchTask
|
// NewFetchTaskRequest generates requests for FetchTask
|
||||||
func NewFetchTaskRequest(server string, taskId string) (*http.Request, error) {
|
func NewFetchTaskRequest(server string, taskId string) (*http.Request, error) {
|
||||||
var err error
|
var err error
|
||||||
@ -3370,6 +3412,9 @@ type ClientWithResponsesInterface interface {
|
|||||||
// ShamanFileStore request with any body
|
// ShamanFileStore request with any body
|
||||||
ShamanFileStoreWithBodyWithResponse(ctx context.Context, checksum string, filesize int, params *ShamanFileStoreParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ShamanFileStoreResponse, error)
|
ShamanFileStoreWithBodyWithResponse(ctx context.Context, checksum string, filesize int, params *ShamanFileStoreParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*ShamanFileStoreResponse, error)
|
||||||
|
|
||||||
|
// GetFarmStatus request
|
||||||
|
GetFarmStatusWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetFarmStatusResponse, error)
|
||||||
|
|
||||||
// FetchTask request
|
// FetchTask request
|
||||||
FetchTaskWithResponse(ctx context.Context, taskId string, reqEditors ...RequestEditorFn) (*FetchTaskResponse, error)
|
FetchTaskWithResponse(ctx context.Context, taskId string, reqEditors ...RequestEditorFn) (*FetchTaskResponse, error)
|
||||||
|
|
||||||
@ -4103,6 +4148,28 @@ func (r ShamanFileStoreResponse) StatusCode() int {
|
|||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type GetFarmStatusResponse struct {
|
||||||
|
Body []byte
|
||||||
|
HTTPResponse *http.Response
|
||||||
|
JSON200 *FarmStatusReport
|
||||||
|
}
|
||||||
|
|
||||||
|
// Status returns HTTPResponse.Status
|
||||||
|
func (r GetFarmStatusResponse) Status() string {
|
||||||
|
if r.HTTPResponse != nil {
|
||||||
|
return r.HTTPResponse.Status
|
||||||
|
}
|
||||||
|
return http.StatusText(0)
|
||||||
|
}
|
||||||
|
|
||||||
|
// StatusCode returns HTTPResponse.StatusCode
|
||||||
|
func (r GetFarmStatusResponse) StatusCode() int {
|
||||||
|
if r.HTTPResponse != nil {
|
||||||
|
return r.HTTPResponse.StatusCode
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
type FetchTaskResponse struct {
|
type FetchTaskResponse struct {
|
||||||
Body []byte
|
Body []byte
|
||||||
HTTPResponse *http.Response
|
HTTPResponse *http.Response
|
||||||
@ -5037,6 +5104,15 @@ func (c *ClientWithResponses) ShamanFileStoreWithBodyWithResponse(ctx context.Co
|
|||||||
return ParseShamanFileStoreResponse(rsp)
|
return ParseShamanFileStoreResponse(rsp)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetFarmStatusWithResponse request returning *GetFarmStatusResponse
|
||||||
|
func (c *ClientWithResponses) GetFarmStatusWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetFarmStatusResponse, error) {
|
||||||
|
rsp, err := c.GetFarmStatus(ctx, reqEditors...)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return ParseGetFarmStatusResponse(rsp)
|
||||||
|
}
|
||||||
|
|
||||||
// FetchTaskWithResponse request returning *FetchTaskResponse
|
// FetchTaskWithResponse request returning *FetchTaskResponse
|
||||||
func (c *ClientWithResponses) FetchTaskWithResponse(ctx context.Context, taskId string, reqEditors ...RequestEditorFn) (*FetchTaskResponse, error) {
|
func (c *ClientWithResponses) FetchTaskWithResponse(ctx context.Context, taskId string, reqEditors ...RequestEditorFn) (*FetchTaskResponse, error) {
|
||||||
rsp, err := c.FetchTask(ctx, taskId, reqEditors...)
|
rsp, err := c.FetchTask(ctx, taskId, reqEditors...)
|
||||||
@ -6193,6 +6269,32 @@ func ParseShamanFileStoreResponse(rsp *http.Response) (*ShamanFileStoreResponse,
|
|||||||
return response, nil
|
return response, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ParseGetFarmStatusResponse parses an HTTP response from a GetFarmStatusWithResponse call
|
||||||
|
func ParseGetFarmStatusResponse(rsp *http.Response) (*GetFarmStatusResponse, error) {
|
||||||
|
bodyBytes, err := ioutil.ReadAll(rsp.Body)
|
||||||
|
defer func() { _ = rsp.Body.Close() }()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
response := &GetFarmStatusResponse{
|
||||||
|
Body: bodyBytes,
|
||||||
|
HTTPResponse: rsp,
|
||||||
|
}
|
||||||
|
|
||||||
|
switch {
|
||||||
|
case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 200:
|
||||||
|
var dest FarmStatusReport
|
||||||
|
if err := json.Unmarshal(bodyBytes, &dest); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
response.JSON200 = &dest
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return response, nil
|
||||||
|
}
|
||||||
|
|
||||||
// ParseFetchTaskResponse parses an HTTP response from a FetchTaskWithResponse call
|
// ParseFetchTaskResponse parses an HTTP response from a FetchTaskWithResponse call
|
||||||
func ParseFetchTaskResponse(rsp *http.Response) (*FetchTaskResponse, error) {
|
func ParseFetchTaskResponse(rsp *http.Response) (*FetchTaskResponse, error) {
|
||||||
bodyBytes, err := ioutil.ReadAll(rsp.Body)
|
bodyBytes, err := ioutil.ReadAll(rsp.Body)
|
||||||
|
13
pkg/api/openapi_server.gen.go
generated
13
pkg/api/openapi_server.gen.go
generated
@ -98,6 +98,9 @@ type ServerInterface interface {
|
|||||||
// The file's contents should be sent in the request body.
|
// The file's contents should be sent in the request body.
|
||||||
// (POST /api/v3/shaman/files/{checksum}/{filesize})
|
// (POST /api/v3/shaman/files/{checksum}/{filesize})
|
||||||
ShamanFileStore(ctx echo.Context, checksum string, filesize int, params ShamanFileStoreParams) error
|
ShamanFileStore(ctx echo.Context, checksum string, filesize int, params ShamanFileStoreParams) error
|
||||||
|
// Get the status of this Flamenco farm.
|
||||||
|
// (GET /api/v3/status)
|
||||||
|
GetFarmStatus(ctx echo.Context) error
|
||||||
// Fetch a single task.
|
// Fetch a single task.
|
||||||
// (GET /api/v3/tasks/{task_id})
|
// (GET /api/v3/tasks/{task_id})
|
||||||
FetchTask(ctx echo.Context, taskId string) error
|
FetchTask(ctx echo.Context, taskId string) error
|
||||||
@ -600,6 +603,15 @@ func (w *ServerInterfaceWrapper) ShamanFileStore(ctx echo.Context) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetFarmStatus converts echo context to params.
|
||||||
|
func (w *ServerInterfaceWrapper) GetFarmStatus(ctx echo.Context) error {
|
||||||
|
var err error
|
||||||
|
|
||||||
|
// Invoke the callback with all the unmarshalled arguments
|
||||||
|
err = w.Handler.GetFarmStatus(ctx)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
// FetchTask converts echo context to params.
|
// FetchTask converts echo context to params.
|
||||||
func (w *ServerInterfaceWrapper) FetchTask(ctx echo.Context) error {
|
func (w *ServerInterfaceWrapper) FetchTask(ctx echo.Context) error {
|
||||||
var err error
|
var err error
|
||||||
@ -1018,6 +1030,7 @@ func RegisterHandlersWithBaseURL(router EchoRouter, si ServerInterface, baseURL
|
|||||||
router.POST(baseURL+"/api/v3/shaman/checkout/requirements", wrapper.ShamanCheckoutRequirements)
|
router.POST(baseURL+"/api/v3/shaman/checkout/requirements", wrapper.ShamanCheckoutRequirements)
|
||||||
router.GET(baseURL+"/api/v3/shaman/files/:checksum/:filesize", wrapper.ShamanFileStoreCheck)
|
router.GET(baseURL+"/api/v3/shaman/files/:checksum/:filesize", wrapper.ShamanFileStoreCheck)
|
||||||
router.POST(baseURL+"/api/v3/shaman/files/:checksum/:filesize", wrapper.ShamanFileStore)
|
router.POST(baseURL+"/api/v3/shaman/files/:checksum/:filesize", wrapper.ShamanFileStore)
|
||||||
|
router.GET(baseURL+"/api/v3/status", wrapper.GetFarmStatus)
|
||||||
router.GET(baseURL+"/api/v3/tasks/:task_id", wrapper.FetchTask)
|
router.GET(baseURL+"/api/v3/tasks/:task_id", wrapper.FetchTask)
|
||||||
router.GET(baseURL+"/api/v3/tasks/:task_id/log", wrapper.FetchTaskLogInfo)
|
router.GET(baseURL+"/api/v3/tasks/:task_id/log", wrapper.FetchTaskLogInfo)
|
||||||
router.GET(baseURL+"/api/v3/tasks/:task_id/logtail", wrapper.FetchTaskLogTail)
|
router.GET(baseURL+"/api/v3/tasks/:task_id/logtail", wrapper.FetchTaskLogTail)
|
||||||
|
353
pkg/api/openapi_spec.gen.go
generated
353
pkg/api/openapi_spec.gen.go
generated
@ -68,182 +68,183 @@ var swaggerSpec = []string{
|
|||||||
"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",
|
||||||
"/xMAAP//yoC45FYOAQA=",
|
"q9udDlvtKMaNKpoqMujTk+Nmf8jQRCbzvBIobkKBkvbSx20HbmQCiw2v/ZrI05PjYX93ZmxmZbZh7kop",
|
||||||
|
"M7eizmTgdIyUysHyA34W4BN17QQLQd+z8r2c+opw4Ry23MGn3z79nwAAAP//QSglLJ4QAQA=",
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetSwagger returns the content of the embedded swagger specification file
|
// GetSwagger returns the content of the embedded swagger specification file
|
||||||
|
25
pkg/api/openapi_types.gen.go
generated
25
pkg/api/openapi_types.gen.go
generated
@ -55,6 +55,23 @@ const (
|
|||||||
BlenderPathSourcePathEnvvar BlenderPathSource = "path_envvar"
|
BlenderPathSourcePathEnvvar BlenderPathSource = "path_envvar"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Defines values for FarmStatus.
|
||||||
|
const (
|
||||||
|
FarmStatusActive FarmStatus = "active"
|
||||||
|
|
||||||
|
FarmStatusAsleep FarmStatus = "asleep"
|
||||||
|
|
||||||
|
FarmStatusIdle FarmStatus = "idle"
|
||||||
|
|
||||||
|
FarmStatusInoperative FarmStatus = "inoperative"
|
||||||
|
|
||||||
|
FarmStatusStarting FarmStatus = "starting"
|
||||||
|
|
||||||
|
FarmStatusUnknown FarmStatus = "unknown"
|
||||||
|
|
||||||
|
FarmStatusWaiting FarmStatus = "waiting"
|
||||||
|
)
|
||||||
|
|
||||||
// Defines values for JobStatus.
|
// Defines values for JobStatus.
|
||||||
const (
|
const (
|
||||||
JobStatusActive JobStatus = "active"
|
JobStatusActive JobStatus = "active"
|
||||||
@ -373,6 +390,14 @@ type EventWorkerUpdate struct {
|
|||||||
Version string `json:"version"`
|
Version string `json:"version"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// FarmStatus defines model for FarmStatus.
|
||||||
|
type FarmStatus string
|
||||||
|
|
||||||
|
// FarmStatusReport defines model for FarmStatusReport.
|
||||||
|
type FarmStatusReport struct {
|
||||||
|
Status FarmStatus `json:"status"`
|
||||||
|
}
|
||||||
|
|
||||||
// FlamencoVersion defines model for FlamencoVersion.
|
// FlamencoVersion defines model for FlamencoVersion.
|
||||||
type FlamencoVersion struct {
|
type FlamencoVersion struct {
|
||||||
Git string `json:"git"`
|
Git string `json:"git"`
|
||||||
|
14
web/app/src/manager-api/index.js
generated
14
web/app/src/manager-api/index.js
generated
@ -32,6 +32,8 @@ import EventTaskLogUpdate from './model/EventTaskLogUpdate';
|
|||||||
import EventTaskUpdate from './model/EventTaskUpdate';
|
import EventTaskUpdate from './model/EventTaskUpdate';
|
||||||
import EventWorkerTagUpdate from './model/EventWorkerTagUpdate';
|
import EventWorkerTagUpdate from './model/EventWorkerTagUpdate';
|
||||||
import EventWorkerUpdate from './model/EventWorkerUpdate';
|
import EventWorkerUpdate from './model/EventWorkerUpdate';
|
||||||
|
import FarmStatus from './model/FarmStatus';
|
||||||
|
import FarmStatusReport from './model/FarmStatusReport';
|
||||||
import FlamencoVersion from './model/FlamencoVersion';
|
import FlamencoVersion from './model/FlamencoVersion';
|
||||||
import Job from './model/Job';
|
import Job from './model/Job';
|
||||||
import JobAllOf from './model/JobAllOf';
|
import JobAllOf from './model/JobAllOf';
|
||||||
@ -251,6 +253,18 @@ export {
|
|||||||
*/
|
*/
|
||||||
EventWorkerUpdate,
|
EventWorkerUpdate,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The FarmStatus model constructor.
|
||||||
|
* @property {module:model/FarmStatus}
|
||||||
|
*/
|
||||||
|
FarmStatus,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The FarmStatusReport model constructor.
|
||||||
|
* @property {module:model/FarmStatusReport}
|
||||||
|
*/
|
||||||
|
FarmStatusReport,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The FlamencoVersion model constructor.
|
* The FlamencoVersion model constructor.
|
||||||
* @property {module:model/FlamencoVersion}
|
* @property {module:model/FlamencoVersion}
|
||||||
|
40
web/app/src/manager-api/manager/MetaApi.js
generated
40
web/app/src/manager-api/manager/MetaApi.js
generated
@ -15,6 +15,7 @@
|
|||||||
import ApiClient from "../ApiClient";
|
import ApiClient from "../ApiClient";
|
||||||
import BlenderPathCheckResult from '../model/BlenderPathCheckResult';
|
import BlenderPathCheckResult from '../model/BlenderPathCheckResult';
|
||||||
import Error from '../model/Error';
|
import Error from '../model/Error';
|
||||||
|
import FarmStatusReport from '../model/FarmStatusReport';
|
||||||
import FlamencoVersion from '../model/FlamencoVersion';
|
import FlamencoVersion from '../model/FlamencoVersion';
|
||||||
import ManagerConfiguration from '../model/ManagerConfiguration';
|
import ManagerConfiguration from '../model/ManagerConfiguration';
|
||||||
import ManagerVariable from '../model/ManagerVariable';
|
import ManagerVariable from '../model/ManagerVariable';
|
||||||
@ -249,6 +250,45 @@ export default class MetaApi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the status of this Flamenco farm.
|
||||||
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/FarmStatusReport} and HTTP response
|
||||||
|
*/
|
||||||
|
getFarmStatusWithHttpInfo() {
|
||||||
|
let postBody = null;
|
||||||
|
|
||||||
|
let pathParams = {
|
||||||
|
};
|
||||||
|
let queryParams = {
|
||||||
|
};
|
||||||
|
let headerParams = {
|
||||||
|
};
|
||||||
|
let formParams = {
|
||||||
|
};
|
||||||
|
|
||||||
|
let authNames = [];
|
||||||
|
let contentTypes = [];
|
||||||
|
let accepts = ['application/json'];
|
||||||
|
let returnType = FarmStatusReport;
|
||||||
|
return this.apiClient.callApi(
|
||||||
|
'/api/v3/status', 'GET',
|
||||||
|
pathParams, queryParams, headerParams, formParams, postBody,
|
||||||
|
authNames, contentTypes, accepts, returnType, null
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the status of this Flamenco farm.
|
||||||
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/FarmStatusReport}
|
||||||
|
*/
|
||||||
|
getFarmStatus() {
|
||||||
|
return this.getFarmStatusWithHttpInfo()
|
||||||
|
.then(function(response_and_data) {
|
||||||
|
return response_and_data.data;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the shared storage location of this Manager, adjusted for the given audience and platform.
|
* Get the shared storage location of this Manager, adjusted for the given audience and platform.
|
||||||
* @param {module:model/ManagerVariableAudience} audience
|
* @param {module:model/ManagerVariableAudience} audience
|
||||||
|
81
web/app/src/manager-api/model/FarmStatus.js
generated
Normal file
81
web/app/src/manager-api/model/FarmStatus.js
generated
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
/**
|
||||||
|
* 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';
|
||||||
|
/**
|
||||||
|
* Enum class FarmStatus.
|
||||||
|
* @enum {}
|
||||||
|
* @readonly
|
||||||
|
*/
|
||||||
|
export default class FarmStatus {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* value: "active"
|
||||||
|
* @const
|
||||||
|
*/
|
||||||
|
"active" = "active";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* value: "idle"
|
||||||
|
* @const
|
||||||
|
*/
|
||||||
|
"idle" = "idle";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* value: "waiting"
|
||||||
|
* @const
|
||||||
|
*/
|
||||||
|
"waiting" = "waiting";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* value: "asleep"
|
||||||
|
* @const
|
||||||
|
*/
|
||||||
|
"asleep" = "asleep";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* value: "inoperative"
|
||||||
|
* @const
|
||||||
|
*/
|
||||||
|
"inoperative" = "inoperative";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* value: "unknown"
|
||||||
|
* @const
|
||||||
|
*/
|
||||||
|
"unknown" = "unknown";
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* value: "starting"
|
||||||
|
* @const
|
||||||
|
*/
|
||||||
|
"starting" = "starting";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a <code>FarmStatus</code> enum value from a Javascript object name.
|
||||||
|
* @param {Object} data The plain JavaScript object containing the name of the enum value.
|
||||||
|
* @return {module:model/FarmStatus} The enum <code>FarmStatus</code> value.
|
||||||
|
*/
|
||||||
|
static constructFromObject(object) {
|
||||||
|
return object;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
74
web/app/src/manager-api/model/FarmStatusReport.js
generated
Normal file
74
web/app/src/manager-api/model/FarmStatusReport.js
generated
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
/**
|
||||||
|
* 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';
|
||||||
|
import FarmStatus from './FarmStatus';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The FarmStatusReport model module.
|
||||||
|
* @module model/FarmStatusReport
|
||||||
|
* @version 0.0.0
|
||||||
|
*/
|
||||||
|
class FarmStatusReport {
|
||||||
|
/**
|
||||||
|
* Constructs a new <code>FarmStatusReport</code>.
|
||||||
|
* @alias module:model/FarmStatusReport
|
||||||
|
* @param status {module:model/FarmStatus}
|
||||||
|
*/
|
||||||
|
constructor(status) {
|
||||||
|
|
||||||
|
FarmStatusReport.initialize(this, status);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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, status) {
|
||||||
|
obj['status'] = status;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a <code>FarmStatusReport</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/FarmStatusReport} obj Optional instance to populate.
|
||||||
|
* @return {module:model/FarmStatusReport} The populated <code>FarmStatusReport</code> instance.
|
||||||
|
*/
|
||||||
|
static constructFromObject(data, obj) {
|
||||||
|
if (data) {
|
||||||
|
obj = obj || new FarmStatusReport();
|
||||||
|
|
||||||
|
if (data.hasOwnProperty('status')) {
|
||||||
|
obj['status'] = FarmStatus.constructFromObject(data['status']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @member {module:model/FarmStatus} status
|
||||||
|
*/
|
||||||
|
FarmStatusReport.prototype['status'] = undefined;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
export default FarmStatusReport;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user