Skip to content

Commit e40b405

Browse files
committed
re-generated models
1 parent 499eac0 commit e40b405

23 files changed

+441
-220
lines changed

packages/director-sdk/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Class | Method | HTTP request | Description
8787
- [InlineResponse201Data](docs/InlineResponse201Data.md)
8888
- [InlineResponse204](docs/InlineResponse204.md)
8989
- [InlineResponseDefault](docs/InlineResponseDefault.md)
90-
- [InlineResponseDefaultData](docs/InlineResponseDefaultData.md)
90+
- [InlineResponseDefaultError](docs/InlineResponseDefaultError.md)
9191
- [SimcoreNode](docs/SimcoreNode.md)
9292

9393

packages/director-sdk/python/docs/InlineResponse200.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**data** | [**InlineResponse200Data**](InlineResponse200Data.md) | | [optional]
7-
**status** | **int** | | [optional]
7+
**error** | **object** | | [optional]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

packages/director-sdk/python/docs/InlineResponse2001.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**data** | [**list[SimcoreNode]**](SimcoreNode.md) | | [optional]
7-
**status** | **int** | | [optional]
7+
**error** | **object** | | [optional]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

packages/director-sdk/python/docs/InlineResponse201.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**data** | [**InlineResponse201Data**](InlineResponse201Data.md) | | [optional]
7-
**status** | **int** | | [optional]
7+
**error** | **object** | | [optional]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

packages/director-sdk/python/docs/InlineResponse204.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**data** | **str** | | [optional] [default to 'null']
7-
**status** | **int** | | [optional] [default to 204]
6+
**data** | **object** | | [optional]
7+
**error** | **object** | | [optional]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

packages/director-sdk/python/docs/InlineResponseDefault.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**data** | [**InlineResponseDefaultData**](InlineResponseDefaultData.md) | | [optional]
7-
**status** | **int** | | [optional]
6+
**data** | **object** | | [optional]
7+
**error** | [**InlineResponseDefaultError**](InlineResponseDefaultError.md) | | [optional]
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# InlineResponseDefaultError
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**errors** | **list[object]** | | [optional]
7+
**message** | **str** | Error message | [optional]
8+
**status** | **int** | Error code | [optional]
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+

packages/director-sdk/python/simcore_director_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
from simcore_director_sdk.models.inline_response201_data import InlineResponse201Data
3333
from simcore_director_sdk.models.inline_response204 import InlineResponse204
3434
from simcore_director_sdk.models.inline_response_default import InlineResponseDefault
35-
from simcore_director_sdk.models.inline_response_default_data import InlineResponseDefaultData
35+
from simcore_director_sdk.models.inline_response_default_error import InlineResponseDefaultError
3636
from simcore_director_sdk.models.simcore_node import SimcoreNode

packages/director-sdk/python/simcore_director_sdk/models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
from simcore_director_sdk.models.inline_response201_data import InlineResponse201Data
2424
from simcore_director_sdk.models.inline_response204 import InlineResponse204
2525
from simcore_director_sdk.models.inline_response_default import InlineResponseDefault
26-
from simcore_director_sdk.models.inline_response_default_data import InlineResponseDefaultData
26+
from simcore_director_sdk.models.inline_response_default_error import InlineResponseDefaultError
2727
from simcore_director_sdk.models.simcore_node import SimcoreNode

packages/director-sdk/python/simcore_director_sdk/models/inline_response200.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,25 @@ class InlineResponse200(object):
3333
"""
3434
openapi_types = {
3535
'data': 'InlineResponse200Data',
36-
'status': 'int'
36+
'error': 'object'
3737
}
3838

3939
attribute_map = {
4040
'data': 'data',
41-
'status': 'status'
41+
'error': 'error'
4242
}
4343

44-
def __init__(self, data=None, status=None): # noqa: E501
44+
def __init__(self, data=None, error=None): # noqa: E501
4545
"""InlineResponse200 - a model defined in OpenAPI""" # noqa: E501
4646

4747
self._data = None
48-
self._status = None
48+
self._error = None
4949
self.discriminator = None
5050

5151
if data is not None:
5252
self.data = data
53-
if status is not None:
54-
self.status = status
53+
if error is not None:
54+
self.error = error
5555

5656
@property
5757
def data(self):
@@ -75,25 +75,25 @@ def data(self, data):
7575
self._data = data
7676

7777
@property
78-
def status(self):
79-
"""Gets the status of this InlineResponse200. # noqa: E501
78+
def error(self):
79+
"""Gets the error of this InlineResponse200. # noqa: E501
8080
8181
82-
:return: The status of this InlineResponse200. # noqa: E501
83-
:rtype: int
82+
:return: The error of this InlineResponse200. # noqa: E501
83+
:rtype: object
8484
"""
85-
return self._status
85+
return self._error
8686

87-
@status.setter
88-
def status(self, status):
89-
"""Sets the status of this InlineResponse200.
87+
@error.setter
88+
def error(self, error):
89+
"""Sets the error of this InlineResponse200.
9090
9191
92-
:param status: The status of this InlineResponse200. # noqa: E501
93-
:type: int
92+
:param error: The error of this InlineResponse200. # noqa: E501
93+
:type: object
9494
"""
9595

96-
self._status = status
96+
self._error = error
9797

9898
def to_dict(self):
9999
"""Returns the model properties as a dict"""

packages/director-sdk/python/simcore_director_sdk/models/inline_response2001.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,25 @@ class InlineResponse2001(object):
3333
"""
3434
openapi_types = {
3535
'data': 'list[SimcoreNode]',
36-
'status': 'int'
36+
'error': 'object'
3737
}
3838

3939
attribute_map = {
4040
'data': 'data',
41-
'status': 'status'
41+
'error': 'error'
4242
}
4343

44-
def __init__(self, data=None, status=None): # noqa: E501
44+
def __init__(self, data=None, error=None): # noqa: E501
4545
"""InlineResponse2001 - a model defined in OpenAPI""" # noqa: E501
4646

4747
self._data = None
48-
self._status = None
48+
self._error = None
4949
self.discriminator = None
5050

5151
if data is not None:
5252
self.data = data
53-
if status is not None:
54-
self.status = status
53+
if error is not None:
54+
self.error = error
5555

5656
@property
5757
def data(self):
@@ -75,25 +75,25 @@ def data(self, data):
7575
self._data = data
7676

7777
@property
78-
def status(self):
79-
"""Gets the status of this InlineResponse2001. # noqa: E501
78+
def error(self):
79+
"""Gets the error of this InlineResponse2001. # noqa: E501
8080
8181
82-
:return: The status of this InlineResponse2001. # noqa: E501
83-
:rtype: int
82+
:return: The error of this InlineResponse2001. # noqa: E501
83+
:rtype: object
8484
"""
85-
return self._status
85+
return self._error
8686

87-
@status.setter
88-
def status(self, status):
89-
"""Sets the status of this InlineResponse2001.
87+
@error.setter
88+
def error(self, error):
89+
"""Sets the error of this InlineResponse2001.
9090
9191
92-
:param status: The status of this InlineResponse2001. # noqa: E501
93-
:type: int
92+
:param error: The error of this InlineResponse2001. # noqa: E501
93+
:type: object
9494
"""
9595

96-
self._status = status
96+
self._error = error
9797

9898
def to_dict(self):
9999
"""Returns the model properties as a dict"""

packages/director-sdk/python/simcore_director_sdk/models/inline_response201.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,25 @@ class InlineResponse201(object):
3333
"""
3434
openapi_types = {
3535
'data': 'InlineResponse201Data',
36-
'status': 'int'
36+
'error': 'object'
3737
}
3838

3939
attribute_map = {
4040
'data': 'data',
41-
'status': 'status'
41+
'error': 'error'
4242
}
4343

44-
def __init__(self, data=None, status=None): # noqa: E501
44+
def __init__(self, data=None, error=None): # noqa: E501
4545
"""InlineResponse201 - a model defined in OpenAPI""" # noqa: E501
4646

4747
self._data = None
48-
self._status = None
48+
self._error = None
4949
self.discriminator = None
5050

5151
if data is not None:
5252
self.data = data
53-
if status is not None:
54-
self.status = status
53+
if error is not None:
54+
self.error = error
5555

5656
@property
5757
def data(self):
@@ -75,25 +75,25 @@ def data(self, data):
7575
self._data = data
7676

7777
@property
78-
def status(self):
79-
"""Gets the status of this InlineResponse201. # noqa: E501
78+
def error(self):
79+
"""Gets the error of this InlineResponse201. # noqa: E501
8080
8181
82-
:return: The status of this InlineResponse201. # noqa: E501
83-
:rtype: int
82+
:return: The error of this InlineResponse201. # noqa: E501
83+
:rtype: object
8484
"""
85-
return self._status
85+
return self._error
8686

87-
@status.setter
88-
def status(self, status):
89-
"""Sets the status of this InlineResponse201.
87+
@error.setter
88+
def error(self, error):
89+
"""Sets the error of this InlineResponse201.
9090
9191
92-
:param status: The status of this InlineResponse201. # noqa: E501
93-
:type: int
92+
:param error: The error of this InlineResponse201. # noqa: E501
93+
:type: object
9494
"""
9595

96-
self._status = status
96+
self._error = error
9797

9898
def to_dict(self):
9999
"""Returns the model properties as a dict"""

packages/director-sdk/python/simcore_director_sdk/models/inline_response204.py

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,34 +32,34 @@ class InlineResponse204(object):
3232
and the value is json key in definition.
3333
"""
3434
openapi_types = {
35-
'data': 'str',
36-
'status': 'int'
35+
'data': 'object',
36+
'error': 'object'
3737
}
3838

3939
attribute_map = {
4040
'data': 'data',
41-
'status': 'status'
41+
'error': 'error'
4242
}
4343

44-
def __init__(self, data='null', status=204): # noqa: E501
44+
def __init__(self, data=None, error=None): # noqa: E501
4545
"""InlineResponse204 - a model defined in OpenAPI""" # noqa: E501
4646

4747
self._data = None
48-
self._status = None
48+
self._error = None
4949
self.discriminator = None
5050

5151
if data is not None:
5252
self.data = data
53-
if status is not None:
54-
self.status = status
53+
if error is not None:
54+
self.error = error
5555

5656
@property
5757
def data(self):
5858
"""Gets the data of this InlineResponse204. # noqa: E501
5959
6060
6161
:return: The data of this InlineResponse204. # noqa: E501
62-
:rtype: str
62+
:rtype: object
6363
"""
6464
return self._data
6565

@@ -69,31 +69,31 @@ def data(self, data):
6969
7070
7171
:param data: The data of this InlineResponse204. # noqa: E501
72-
:type: str
72+
:type: object
7373
"""
7474

7575
self._data = data
7676

7777
@property
78-
def status(self):
79-
"""Gets the status of this InlineResponse204. # noqa: E501
78+
def error(self):
79+
"""Gets the error of this InlineResponse204. # noqa: E501
8080
8181
82-
:return: The status of this InlineResponse204. # noqa: E501
83-
:rtype: int
82+
:return: The error of this InlineResponse204. # noqa: E501
83+
:rtype: object
8484
"""
85-
return self._status
85+
return self._error
8686

87-
@status.setter
88-
def status(self, status):
89-
"""Sets the status of this InlineResponse204.
87+
@error.setter
88+
def error(self, error):
89+
"""Sets the error of this InlineResponse204.
9090
9191
92-
:param status: The status of this InlineResponse204. # noqa: E501
93-
:type: int
92+
:param error: The error of this InlineResponse204. # noqa: E501
93+
:type: object
9494
"""
9595

96-
self._status = status
96+
self._error = error
9797

9898
def to_dict(self):
9999
"""Returns the model properties as a dict"""

0 commit comments

Comments
 (0)