Skip to content

Commit

Permalink
horizon python updates for v2.1.204
Browse files Browse the repository at this point in the history
Signed-off-by: Concourse <[email protected]>
  • Loading branch information
Concourse committed Oct 3, 2024
1 parent e9a0b77 commit ad3ada0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ This code is automatically generated by the [OpenAPI Generator](https://openapi-

## Versions

- API version: 0.1.842
- SDK version: 2.1.203
- API version: 0.1.847
- SDK version: 2.1.204

## Requirements

Expand Down
4 changes: 2 additions & 2 deletions sdk/docs/RunsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async def main():
api_instance = api_client_factory.build(RunsApi)
filter = 'filter_example' # str | Expression to filter the result set. (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 results to this number. (optional) (default to 10)
limit = 100 # int | When paginating, limit the results to this number. (optional) (default to 100)
page_token = '' # str | The pagination token to use to continue listing integration runs; this value is returned from the previous call. If a pagination token is provided, the <i>sortBy</i> and <i>filter</i> fields must not have changed since the original request. (optional) (default to '')

try:
Expand All @@ -85,7 +85,7 @@ Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**filter** | **str**| Expression to filter the result set. | [optional]
**sort_by** | [**List[str]**](str.md)| A list of field names or properties to sort by, each suffixed by \&quot; ASC\&quot; or \&quot; DESC\&quot;. | [optional]
**limit** | **int**| When paginating, limit the results to this number. | [optional] [default to 10]
**limit** | **int**| When paginating, limit the results to this number. | [optional] [default to 100]
**page_token** | **str**| The pagination token to use to continue listing integration runs; this value is returned from the previous call. If a pagination token is provided, the &lt;i&gt;sortBy&lt;/i&gt; and &lt;i&gt;filter&lt;/i&gt; fields must not have changed since the original request. | [optional] [default to &#39;&#39;]

### Return type
Expand Down
8 changes: 4 additions & 4 deletions sdk/finbourne_horizon/api/logs_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ def __init__(self, api_client=None) -> None:
self.api_client = api_client

@overload
async def get_integration_log_results(self, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=100, ge=1)], Field(description="When paginating, limit the results to this number.")] = None, page_token : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing integration logs; this value is returned from the previous call. If a pagination token is provided, the <i>sortBy</i> and <i>filter</i> fields must not have changed since the original request. For more information, see https://support.lusid.com/knowledgebase/article/KA-01915.")] = None, **kwargs) -> IIntegrationLogResponse: # noqa: E501
async def get_integration_log_results(self, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the results to this number.")] = None, page_token : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing integration logs; this value is returned from the previous call. If a pagination token is provided, the <i>sortBy</i> and <i>filter</i> fields must not have changed since the original request. For more information, see https://support.lusid.com/knowledgebase/article/KA-01915.")] = None, **kwargs) -> IIntegrationLogResponse: # noqa: E501
...

@overload
def get_integration_log_results(self, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=100, ge=1)], Field(description="When paginating, limit the results to this number.")] = None, page_token : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing integration logs; this value is returned from the previous call. If a pagination token is provided, the <i>sortBy</i> and <i>filter</i> fields must not have changed since the original request. For more information, see https://support.lusid.com/knowledgebase/article/KA-01915.")] = None, async_req: Optional[bool]=True, **kwargs) -> IIntegrationLogResponse: # noqa: E501
def get_integration_log_results(self, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the results to this number.")] = None, page_token : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing integration logs; this value is returned from the previous call. If a pagination token is provided, the <i>sortBy</i> and <i>filter</i> fields must not have changed since the original request. For more information, see https://support.lusid.com/knowledgebase/article/KA-01915.")] = None, async_req: Optional[bool]=True, **kwargs) -> IIntegrationLogResponse: # noqa: E501
...

@validate_arguments
def get_integration_log_results(self, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=100, ge=1)], Field(description="When paginating, limit the results to this number.")] = None, page_token : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing integration logs; this value is returned from the previous call. If a pagination token is provided, the <i>sortBy</i> and <i>filter</i> fields must not have changed since the original request. For more information, see https://support.lusid.com/knowledgebase/article/KA-01915.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[IIntegrationLogResponse, Awaitable[IIntegrationLogResponse]]: # noqa: E501
def get_integration_log_results(self, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the results to this number.")] = None, page_token : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing integration logs; this value is returned from the previous call. If a pagination token is provided, the <i>sortBy</i> and <i>filter</i> fields must not have changed since the original request. For more information, see https://support.lusid.com/knowledgebase/article/KA-01915.")] = None, async_req: Optional[bool]=None, **kwargs) -> Union[IIntegrationLogResponse, Awaitable[IIntegrationLogResponse]]: # noqa: E501
"""[EXPERIMENTAL] GetIntegrationLogResults: Get integration log results # noqa: E501
Get integration log results # noqa: E501
Expand Down Expand Up @@ -93,7 +93,7 @@ def get_integration_log_results(self, filter : Annotated[Optional[constr(strict=
return self.get_integration_log_results_with_http_info(filter, sort_by, limit, page_token, **kwargs) # noqa: E501

@validate_arguments
def get_integration_log_results_with_http_info(self, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=100, ge=1)], Field(description="When paginating, limit the results to this number.")] = None, page_token : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing integration logs; this value is returned from the previous call. If a pagination token is provided, the <i>sortBy</i> and <i>filter</i> fields must not have changed since the original request. For more information, see https://support.lusid.com/knowledgebase/article/KA-01915.")] = None, **kwargs) -> ApiResponse: # noqa: E501
def get_integration_log_results_with_http_info(self, filter : Annotated[Optional[constr(strict=True, max_length=16384, min_length=0)], Field(description="Expression to filter the result set.")] = None, sort_by : Annotated[Optional[conlist(StrictStr)], Field(description="A list of field names or properties to sort by, each suffixed by \" ASC\" or \" DESC\".")] = None, limit : Annotated[Optional[conint(strict=True, le=5000, ge=1)], Field(description="When paginating, limit the results to this number.")] = None, page_token : Annotated[Optional[constr(strict=True, max_length=500, min_length=1)], Field(description="The pagination token to use to continue listing integration logs; this value is returned from the previous call. If a pagination token is provided, the <i>sortBy</i> and <i>filter</i> fields must not have changed since the original request. For more information, see https://support.lusid.com/knowledgebase/article/KA-01915.")] = None, **kwargs) -> ApiResponse: # noqa: E501
"""[EXPERIMENTAL] GetIntegrationLogResults: Get integration log results # noqa: E501
Get integration log results # noqa: E501
Expand Down
2 changes: 1 addition & 1 deletion sdk/finbourne_horizon/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def to_debug_report(self):
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 0.1.842\n"\
"Version of the API: 0.1.847\n"\
"SDK Package Version: {package_version}".\
format(env=sys.platform, pyversion=sys.version, package_version=package_version)

Expand Down
2 changes: 1 addition & 1 deletion sdk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "finbourne-horizon-sdk"
version = "2.1.203"
version = "2.1.204"
description = "FINBOURNE Horizon API"
authors = ["FINBOURNE Technology <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit ad3ada0

Please sign in to comment.