-
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-356: Add new fields to WorkflowOptions (#51)
* IWF-356: Add new fields to WorkflowOptions * IWF-356: Lint * IWF-356: Fix child_workflow_request_id * IWF-356: Add test * IWF-356: Add more testing * IWF-356: Change test
- Loading branch information
1 parent
eafcbcc
commit 504cc02
Showing
22 changed files
with
817 additions
and
67 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
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_v1_workflow_dataobjects_set.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.workflow_set_data_objects_request import WorkflowSetDataObjectsRequest | ||
from ...types import Response | ||
|
||
|
||
def _get_kwargs( | ||
*, | ||
client: Client, | ||
json_body: WorkflowSetDataObjectsRequest, | ||
) -> Dict[str, Any]: | ||
url = "{}/api/v1/workflow/dataobjects/set".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: WorkflowSetDataObjectsRequest, | ||
) -> Response[Union[Any, ErrorResponse]]: | ||
"""set workflow data objects aka data attributes | ||
Args: | ||
json_body (WorkflowSetDataObjectsRequest): | ||
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: WorkflowSetDataObjectsRequest, | ||
) -> Optional[Union[Any, ErrorResponse]]: | ||
"""set workflow data objects aka data attributes | ||
Args: | ||
json_body (WorkflowSetDataObjectsRequest): | ||
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: WorkflowSetDataObjectsRequest, | ||
) -> Response[Union[Any, ErrorResponse]]: | ||
"""set workflow data objects aka data attributes | ||
Args: | ||
json_body (WorkflowSetDataObjectsRequest): | ||
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: WorkflowSetDataObjectsRequest, | ||
) -> Optional[Union[Any, ErrorResponse]]: | ||
"""set workflow data objects aka data attributes | ||
Args: | ||
json_body (WorkflowSetDataObjectsRequest): | ||
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 |
Oops, something went wrong.