Skip to content

Commit

Permalink
Updates for v2.1.34
Browse files Browse the repository at this point in the history
  • Loading branch information
Concourse committed May 23, 2024
1 parent 0a1285c commit b5b9695
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 24 deletions.
4 changes: 2 additions & 2 deletions sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FINBOURNE Technology

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 0.1.1048
- Package version: 2.1.33
- API version: 0.1.1050
- Package version: 2.1.34
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit [https://www.finbourne.com](https://www.finbourne.com)

Expand Down
Binary file not shown.
Binary file added sdk/dist/lusid_workflow_sdk-2.1.34.tar.gz
Binary file not shown.
6 changes: 4 additions & 2 deletions sdk/docs/TaskDefinitionsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **list_task_definitions**
> PagedResourceListOfTaskDefinition list_task_definitions(as_at=as_at, filter=filter, limit=limit, page=page)
> PagedResourceListOfTaskDefinition list_task_definitions(as_at=as_at, filter=filter, sort_by=sort_by, limit=limit, page=page)
[EXPERIMENTAL] ListTaskDefinitions: List Task Definitions

Expand Down Expand Up @@ -367,12 +367,13 @@ async with api_client_factory:
api_instance = api_client_factory.build(lusid_workflow.TaskDefinitionsApi)
as_at = '2013-10-20T19:20:30+01:00' # datetime | The asAt datetime at which to list the Task Definitions. Defaults to return the latest version of each Task Definition if not specified. (optional)
filter = 'filter_example' # str | Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. (optional)
sort_by = ['sort_by_example'] # List[str] | A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\" (optional)
limit = 10 # int | When paginating, limit the number of returned results to this many. (optional) (default to 10)
page = 'page_example' # str | The pagination token to use to continue listing task definitions from a previous call to list task definitions. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request. (optional)

try:
# [EXPERIMENTAL] ListTaskDefinitions: List Task Definitions
api_response = await api_instance.list_task_definitions(as_at=as_at, filter=filter, limit=limit, page=page)
api_response = await api_instance.list_task_definitions(as_at=as_at, filter=filter, sort_by=sort_by, limit=limit, page=page)
print("The response of TaskDefinitionsApi->list_task_definitions:\n")
pprint(api_response)
except Exception as e:
Expand All @@ -386,6 +387,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**as_at** | **datetime**| The asAt datetime at which to list the Task Definitions. Defaults to return the latest version of each Task Definition if not specified. | [optional]
**filter** | **str**| Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. | [optional]
**sort_by** | [**List[str]**](str.md)| A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\" | [optional]
**limit** | **int**| When paginating, limit the number of returned results to this many. | [optional] [default to 10]
**page** | **str**| The pagination token to use to continue listing task definitions from a previous call to list task definitions. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request. | [optional]

Expand Down
6 changes: 4 additions & 2 deletions sdk/docs/WorkersApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **list_workers**
> PagedResourceListOfWorker list_workers(as_at=as_at, filter=filter, limit=limit, page=page)
> PagedResourceListOfWorker list_workers(as_at=as_at, filter=filter, sort_by=sort_by, limit=limit, page=page)
[EXPERIMENTAL] ListWorkers: List Workers

Expand Down Expand Up @@ -469,12 +469,13 @@ async with api_client_factory:
api_instance = api_client_factory.build(lusid_workflow.WorkersApi)
as_at = '2013-10-20T19:20:30+01:00' # datetime | The asAt datetime at which to list the Workers. Defaults to return the latest version of each Worker if not specified. (optional)
filter = 'filter_example' # str | Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. (optional)
sort_by = ['sort_by_example'] # List[str] | A list of field names or properties to sort by, each optionally suffixed by \" ASC\" or \" DESC\" (optional)
limit = 10 # int | When paginating, limit the number of returned results to this many. (optional) (default to 10)
page = 'page_example' # str | The pagination token to use to continue listing workers from a previous call to list workers. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request. (optional)

try:
# [EXPERIMENTAL] ListWorkers: List Workers
api_response = await api_instance.list_workers(as_at=as_at, filter=filter, limit=limit, page=page)
api_response = await api_instance.list_workers(as_at=as_at, filter=filter, sort_by=sort_by, limit=limit, page=page)
print("The response of WorkersApi->list_workers:\n")
pprint(api_response)
except Exception as e:
Expand All @@ -488,6 +489,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**as_at** | **datetime**| The asAt datetime at which to list the Workers. Defaults to return the latest version of each Worker if not specified. | [optional]
**filter** | **str**| Expression to filter the result set. Read more about filtering results from LUSID here: https://support.lusid.com/filtering-results-from-lusid. | [optional]
**sort_by** | [**List[str]**](str.md)| A list of field names or properties to sort by, each optionally suffixed by \" ASC\" or \" DESC\" | [optional]
**limit** | **int**| When paginating, limit the number of returned results to this many. | [optional] [default to 10]
**page** | **str**| The pagination token to use to continue listing workers from a previous call to list workers. This value is returned from the previous call. If a pagination token is provided the sortBy, filter, effectiveAt, and asAt fields must not have changed since the original request. | [optional]

Expand Down
Loading

0 comments on commit b5b9695

Please sign in to comment.