Skip to content

Commit 5441875

Browse files
Added missing tags api
1 parent 4960884 commit 5441875

1 file changed

Lines changed: 41 additions & 41 deletions

File tree

src/conductor/client/orkes/api/tags_api.py

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def add_task_tag(self, body, task_name, **kwargs): # noqa: E501
4141
>>> result = thread.get()
4242
4343
:param async_req bool
44-
:param TagObject body: (required)
45-
:param str task_name: (required)
44+
:param Tag body: (required)
45+
:param object task_name: (required)
4646
:return: object
4747
If the method is called asynchronously,
4848
returns the request thread.
@@ -63,8 +63,8 @@ def add_task_tag_with_http_info(self, body, task_name, **kwargs): # noqa: E501
6363
>>> result = thread.get()
6464
6565
:param async_req bool
66-
:param TagObject body: (required)
67-
:param str task_name: (required)
66+
:param Tag body: (required)
67+
:param object task_name: (required)
6868
:return: object
6969
If the method is called asynchronously,
7070
returns the request thread.
@@ -146,8 +146,8 @@ def add_workflow_tag(self, body, name, **kwargs): # noqa: E501
146146
>>> result = thread.get()
147147
148148
:param async_req bool
149-
:param TagObject body: (required)
150-
:param str name: (required)
149+
:param Tag body: (required)
150+
:param object name: (required)
151151
:return: object
152152
If the method is called asynchronously,
153153
returns the request thread.
@@ -168,8 +168,8 @@ def add_workflow_tag_with_http_info(self, body, name, **kwargs): # noqa: E501
168168
>>> result = thread.get()
169169
170170
:param async_req bool
171-
:param TagObject body: (required)
172-
:param str name: (required)
171+
:param Tag body: (required)
172+
:param object name: (required)
173173
:return: object
174174
If the method is called asynchronously,
175175
returns the request thread.
@@ -251,8 +251,8 @@ def delete_task_tag(self, body, task_name, **kwargs): # noqa: E501
251251
>>> result = thread.get()
252252
253253
:param async_req bool
254-
:param TagString body: (required)
255-
:param str task_name: (required)
254+
:param Tag body: (required)
255+
:param object task_name: (required)
256256
:return: object
257257
If the method is called asynchronously,
258258
returns the request thread.
@@ -273,8 +273,8 @@ def delete_task_tag_with_http_info(self, body, task_name, **kwargs): # noqa: E5
273273
>>> result = thread.get()
274274
275275
:param async_req bool
276-
:param TagString body: (required)
277-
:param str task_name: (required)
276+
:param Tag body: (required)
277+
:param object task_name: (required)
278278
:return: object
279279
If the method is called asynchronously,
280280
returns the request thread.
@@ -356,8 +356,8 @@ def delete_workflow_tag(self, body, name, **kwargs): # noqa: E501
356356
>>> result = thread.get()
357357
358358
:param async_req bool
359-
:param TagObject body: (required)
360-
:param str name: (required)
359+
:param Tag body: (required)
360+
:param object name: (required)
361361
:return: object
362362
If the method is called asynchronously,
363363
returns the request thread.
@@ -378,8 +378,8 @@ def delete_workflow_tag_with_http_info(self, body, name, **kwargs): # noqa: E50
378378
>>> result = thread.get()
379379
380380
:param async_req bool
381-
:param TagObject body: (required)
382-
:param str name: (required)
381+
:param Tag body: (required)
382+
:param object name: (required)
383383
:return: object
384384
If the method is called asynchronously,
385385
returns the request thread.
@@ -461,7 +461,7 @@ def get_tags1(self, **kwargs): # noqa: E501
461461
>>> result = thread.get()
462462
463463
:param async_req bool
464-
:return: list[TagObject]
464+
:return: object
465465
If the method is called asynchronously,
466466
returns the request thread.
467467
"""
@@ -481,7 +481,7 @@ def get_tags1_with_http_info(self, **kwargs): # noqa: E501
481481
>>> result = thread.get()
482482
483483
:param async_req bool
484-
:return: list[TagObject]
484+
:return: object
485485
If the method is called asynchronously,
486486
returns the request thread.
487487
"""
@@ -529,7 +529,7 @@ def get_tags1_with_http_info(self, **kwargs): # noqa: E501
529529
body=body_params,
530530
post_params=form_params,
531531
files=local_var_files,
532-
response_type='list[TagObject]', # noqa: E501
532+
response_type='object', # noqa: E501
533533
auth_settings=auth_settings,
534534
async_req=params.get('async_req'),
535535
_return_http_data_only=params.get('_return_http_data_only'),
@@ -546,8 +546,8 @@ def get_task_tags(self, task_name, **kwargs): # noqa: E501
546546
>>> result = thread.get()
547547
548548
:param async_req bool
549-
:param str task_name: (required)
550-
:return: list[TagObject]
549+
:param object task_name: (required)
550+
:return: object
551551
If the method is called asynchronously,
552552
returns the request thread.
553553
"""
@@ -567,8 +567,8 @@ def get_task_tags_with_http_info(self, task_name, **kwargs): # noqa: E501
567567
>>> result = thread.get()
568568
569569
:param async_req bool
570-
:param str task_name: (required)
571-
:return: list[TagObject]
570+
:param object task_name: (required)
571+
:return: object
572572
If the method is called asynchronously,
573573
returns the request thread.
574574
"""
@@ -622,7 +622,7 @@ def get_task_tags_with_http_info(self, task_name, **kwargs): # noqa: E501
622622
body=body_params,
623623
post_params=form_params,
624624
files=local_var_files,
625-
response_type='list[TagObject]', # noqa: E501
625+
response_type='object', # noqa: E501
626626
auth_settings=auth_settings,
627627
async_req=params.get('async_req'),
628628
_return_http_data_only=params.get('_return_http_data_only'),
@@ -639,8 +639,8 @@ def get_workflow_tags(self, name, **kwargs): # noqa: E501
639639
>>> result = thread.get()
640640
641641
:param async_req bool
642-
:param str name: (required)
643-
:return: list[TagObject]
642+
:param object name: (required)
643+
:return: object
644644
If the method is called asynchronously,
645645
returns the request thread.
646646
"""
@@ -660,8 +660,8 @@ def get_workflow_tags_with_http_info(self, name, **kwargs): # noqa: E501
660660
>>> result = thread.get()
661661
662662
:param async_req bool
663-
:param str name: (required)
664-
:return: list[TagObject]
663+
:param object name: (required)
664+
:return: object
665665
If the method is called asynchronously,
666666
returns the request thread.
667667
"""
@@ -715,7 +715,7 @@ def get_workflow_tags_with_http_info(self, name, **kwargs): # noqa: E501
715715
body=body_params,
716716
post_params=form_params,
717717
files=local_var_files,
718-
response_type='list[TagObject]', # noqa: E501
718+
response_type='object', # noqa: E501
719719
auth_settings=auth_settings,
720720
async_req=params.get('async_req'),
721721
_return_http_data_only=params.get('_return_http_data_only'),
@@ -724,16 +724,16 @@ def get_workflow_tags_with_http_info(self, name, **kwargs): # noqa: E501
724724
collection_formats=collection_formats)
725725

726726
def set_task_tags(self, body, task_name, **kwargs): # noqa: E501
727-
"""Adds the tag to the task # noqa: E501
727+
"""Sets (replaces existing) the tags to the task # noqa: E501
728728
729729
This method makes a synchronous HTTP request by default. To make an
730730
asynchronous HTTP request, please pass async_req=True
731731
>>> thread = api.set_task_tags(body, task_name, async_req=True)
732732
>>> result = thread.get()
733733
734734
:param async_req bool
735-
:param list[TagObject] body: (required)
736-
:param str task_name: (required)
735+
:param object body: (required)
736+
:param object task_name: (required)
737737
:return: object
738738
If the method is called asynchronously,
739739
returns the request thread.
@@ -746,16 +746,16 @@ def set_task_tags(self, body, task_name, **kwargs): # noqa: E501
746746
return data
747747

748748
def set_task_tags_with_http_info(self, body, task_name, **kwargs): # noqa: E501
749-
"""Adds the tag to the task # noqa: E501
749+
"""Sets (replaces existing) the tags to the task # noqa: E501
750750
751751
This method makes a synchronous HTTP request by default. To make an
752752
asynchronous HTTP request, please pass async_req=True
753753
>>> thread = api.set_task_tags_with_http_info(body, task_name, async_req=True)
754754
>>> result = thread.get()
755755
756756
:param async_req bool
757-
:param list[TagObject] body: (required)
758-
:param str task_name: (required)
757+
:param object body: (required)
758+
:param object task_name: (required)
759759
:return: object
760760
If the method is called asynchronously,
761761
returns the request thread.
@@ -829,16 +829,16 @@ def set_task_tags_with_http_info(self, body, task_name, **kwargs): # noqa: E501
829829
collection_formats=collection_formats)
830830

831831
def set_workflow_tags(self, body, name, **kwargs): # noqa: E501
832-
"""Set the tags of the workflow # noqa: E501
832+
"""Set (replaces all existing) the tags of the workflow # noqa: E501
833833
834834
This method makes a synchronous HTTP request by default. To make an
835835
asynchronous HTTP request, please pass async_req=True
836836
>>> thread = api.set_workflow_tags(body, name, async_req=True)
837837
>>> result = thread.get()
838838
839839
:param async_req bool
840-
:param list[TagObject] body: (required)
841-
:param str name: (required)
840+
:param object body: (required)
841+
:param object name: (required)
842842
:return: object
843843
If the method is called asynchronously,
844844
returns the request thread.
@@ -851,16 +851,16 @@ def set_workflow_tags(self, body, name, **kwargs): # noqa: E501
851851
return data
852852

853853
def set_workflow_tags_with_http_info(self, body, name, **kwargs): # noqa: E501
854-
"""Set the tags of the workflow # noqa: E501
854+
"""Set (replaces all existing) the tags of the workflow # noqa: E501
855855
856856
This method makes a synchronous HTTP request by default. To make an
857857
asynchronous HTTP request, please pass async_req=True
858858
>>> thread = api.set_workflow_tags_with_http_info(body, name, async_req=True)
859859
>>> result = thread.get()
860860
861861
:param async_req bool
862-
:param list[TagObject] body: (required)
863-
:param str name: (required)
862+
:param object body: (required)
863+
:param object name: (required)
864864
:return: object
865865
If the method is called asynchronously,
866866
returns the request thread.

0 commit comments

Comments
 (0)