-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IWF-166: Regenerating api client from idl and fixing tests (#36)
* IWF-166: Regenerating api client from idl and fixing tests * IWF-166: Fixing lint warning
- Loading branch information
1 parent
6b47baf
commit 2c77770
Showing
22 changed files
with
460 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
170 changes: 170 additions & 0 deletions
170
iwf/iwf_api/api/default/post_api_v_1_workflow_trigger_continue_as_new.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
from http import HTTPStatus | ||
from typing import Any, Dict, Optional, Union, cast | ||
|
||
import httpx | ||
|
||
from ... import errors | ||
from ...client import Client | ||
from ...models.error_response import ErrorResponse | ||
from ...models.trigger_continue_as_new_request import TriggerContinueAsNewRequest | ||
from ...types import Response | ||
|
||
|
||
def _get_kwargs( | ||
*, | ||
client: Client, | ||
json_body: TriggerContinueAsNewRequest, | ||
) -> Dict[str, Any]: | ||
url = "{}/api/v1/workflow/triggerContinueAsNew".format(client.base_url) | ||
|
||
headers: Dict[str, str] = client.get_headers() | ||
cookies: Dict[str, Any] = client.get_cookies() | ||
|
||
json_json_body = json_body.to_dict() | ||
|
||
return { | ||
"method": "post", | ||
"url": url, | ||
"headers": headers, | ||
"cookies": cookies, | ||
"timeout": client.get_timeout(), | ||
"follow_redirects": client.follow_redirects, | ||
"json": json_json_body, | ||
} | ||
|
||
|
||
def _parse_response( | ||
*, client: Client, response: httpx.Response | ||
) -> Optional[Union[Any, ErrorResponse]]: | ||
if response.status_code == HTTPStatus.OK: | ||
response_200 = cast(Any, None) | ||
return response_200 | ||
if response.status_code == HTTPStatus.BAD_REQUEST: | ||
response_400 = ErrorResponse.from_dict(response.json()) | ||
|
||
return response_400 | ||
if client.raise_on_unexpected_status: | ||
raise errors.UnexpectedStatus(response.status_code, response.content) | ||
else: | ||
return None | ||
|
||
|
||
def _build_response( | ||
*, client: Client, response: httpx.Response | ||
) -> Response[Union[Any, ErrorResponse]]: | ||
return Response( | ||
status_code=HTTPStatus(response.status_code), | ||
content=response.content, | ||
headers=response.headers, | ||
parsed=_parse_response(client=client, response=response), | ||
) | ||
|
||
|
||
def sync_detailed( | ||
*, | ||
client: Client, | ||
json_body: TriggerContinueAsNewRequest, | ||
) -> Response[Union[Any, ErrorResponse]]: | ||
"""trigger ContinueAsNew for a workflow | ||
Args: | ||
json_body (TriggerContinueAsNewRequest): | ||
Raises: | ||
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. | ||
httpx.TimeoutException: If the request takes longer than Client.timeout. | ||
Returns: | ||
Response[Union[Any, ErrorResponse]] | ||
""" | ||
|
||
kwargs = _get_kwargs( | ||
client=client, | ||
json_body=json_body, | ||
) | ||
|
||
response = httpx.request( | ||
verify=client.verify_ssl, | ||
**kwargs, | ||
) | ||
|
||
return _build_response(client=client, response=response) | ||
|
||
|
||
def sync( | ||
*, | ||
client: Client, | ||
json_body: TriggerContinueAsNewRequest, | ||
) -> Optional[Union[Any, ErrorResponse]]: | ||
"""trigger ContinueAsNew for a workflow | ||
Args: | ||
json_body (TriggerContinueAsNewRequest): | ||
Raises: | ||
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. | ||
httpx.TimeoutException: If the request takes longer than Client.timeout. | ||
Returns: | ||
Union[Any, ErrorResponse] | ||
""" | ||
|
||
return sync_detailed( | ||
client=client, | ||
json_body=json_body, | ||
).parsed | ||
|
||
|
||
async def asyncio_detailed( | ||
*, | ||
client: Client, | ||
json_body: TriggerContinueAsNewRequest, | ||
) -> Response[Union[Any, ErrorResponse]]: | ||
"""trigger ContinueAsNew for a workflow | ||
Args: | ||
json_body (TriggerContinueAsNewRequest): | ||
Raises: | ||
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. | ||
httpx.TimeoutException: If the request takes longer than Client.timeout. | ||
Returns: | ||
Response[Union[Any, ErrorResponse]] | ||
""" | ||
|
||
kwargs = _get_kwargs( | ||
client=client, | ||
json_body=json_body, | ||
) | ||
|
||
async with httpx.AsyncClient(verify=client.verify_ssl) as _client: | ||
response = await _client.request(**kwargs) | ||
|
||
return _build_response(client=client, response=response) | ||
|
||
|
||
async def asyncio( | ||
*, | ||
client: Client, | ||
json_body: TriggerContinueAsNewRequest, | ||
) -> Optional[Union[Any, ErrorResponse]]: | ||
"""trigger ContinueAsNew for a workflow | ||
Args: | ||
json_body (TriggerContinueAsNewRequest): | ||
Raises: | ||
errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True. | ||
httpx.TimeoutException: If the request takes longer than Client.timeout. | ||
Returns: | ||
Union[Any, ErrorResponse] | ||
""" | ||
|
||
return ( | ||
await asyncio_detailed( | ||
client=client, | ||
json_body=json_body, | ||
) | ||
).parsed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.