conductor-python 1.1.9__tar.gz → 1.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1436) hide show
  1. conductor_python-1.2.0/PKG-INFO +1000 -0
  2. conductor_python-1.2.0/README.md +964 -0
  3. conductor_python-1.2.0/pyproject.toml +191 -0
  4. conductor_python-1.2.0/src/conductor/__init__.py +1 -0
  5. conductor_python-1.2.0/src/conductor/asyncio_client/ASYNC_CLIENT_REGENERATION_GUIDE.md +434 -0
  6. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/__init__.py +3 -0
  7. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/admin_resource_api.py +4 -0
  8. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/application_resource_api.py +4 -0
  9. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/authorization_resource_api.py +4 -0
  10. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/environment_resource_api.py +4 -0
  11. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/event_execution_resource_api.py +4 -0
  12. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/event_resource_api.py +4 -0
  13. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/group_resource_api.py +4 -0
  14. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/health_check_resource_api.py +4 -0
  15. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/incoming_webhook_resource_api.py +4 -0
  16. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/integration_resource_api.py +4 -0
  17. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/limits_resource_api.py +4 -0
  18. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/metadata_resource_api.py +4 -0
  19. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/metrics_resource_api.py +4 -0
  20. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/metrics_token_resource_api.py +4 -0
  21. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/prompt_resource_api.py +4 -0
  22. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/queue_admin_resource_api.py +4 -0
  23. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/scheduler_resource_api.py +4 -0
  24. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/schema_resource_api.py +4 -0
  25. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/secret_resource_api.py +4 -0
  26. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/tags_api.py +4 -0
  27. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/task_resource_api.py +91 -0
  28. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/token_resource_api.py +4 -0
  29. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/user_resource_api.py +4 -0
  30. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/version_resource_api.py +4 -0
  31. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/webhooks_config_resource_api.py +4 -0
  32. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/workflow_bulk_resource_api.py +4 -0
  33. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api/workflow_resource_api.py +164 -0
  34. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api_client_adapter.py +188 -0
  35. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/__init__.py +564 -0
  36. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/action_adapter.py +73 -0
  37. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/any_adapter.py +79 -0
  38. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/authorization_request_adapter.py +48 -0
  39. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/bulk_response_adapter.py +35 -0
  40. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/byte_string_adapter.py +4 -0
  41. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/cache_config_adapter.py +4 -0
  42. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/conductor_user_adapter.py +50 -0
  43. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/connectivity_test_input_adapter.py +9 -0
  44. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/connectivity_test_result_adapter.py +4 -0
  45. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/correlation_ids_search_request_adapter.py +4 -0
  46. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/create_or_update_application_request_adapter.py +4 -0
  47. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/declaration_adapter.py +87 -0
  48. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/declaration_or_builder_adapter.py +87 -0
  49. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/descriptor_adapter.py +129 -0
  50. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/descriptor_proto_adapter.py +293 -0
  51. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/descriptor_proto_or_builder_adapter.py +280 -0
  52. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/edition_default_adapter.py +77 -0
  53. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/edition_default_or_builder_adapter.py +77 -0
  54. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_descriptor_adapter.py +84 -0
  55. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_descriptor_proto_adapter.py +155 -0
  56. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_descriptor_proto_or_builder_adapter.py +156 -0
  57. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_options_adapter.py +123 -0
  58. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_options_or_builder_adapter.py +121 -0
  59. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_reserved_range_adapter.py +69 -0
  60. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_reserved_range_or_builder_adapter.py +69 -0
  61. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_value_descriptor_adapter.py +69 -0
  62. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_value_descriptor_proto_adapter.py +97 -0
  63. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_value_descriptor_proto_or_builder_adapter.py +97 -0
  64. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_value_options_adapter.py +120 -0
  65. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/enum_value_options_or_builder_adapter.py +118 -0
  66. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/environment_variable_adapter.py +38 -0
  67. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/event_handler_adapter.py +53 -0
  68. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/event_log_adapter.py +4 -0
  69. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/extended_conductor_application_adapter.py +42 -0
  70. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/extended_event_execution_adapter.py +58 -0
  71. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/extended_secret_adapter.py +37 -0
  72. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/extended_task_def_adapter.py +89 -0
  73. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/extended_workflow_def_adapter.py +110 -0
  74. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/extension_range_adapter.py +91 -0
  75. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/extension_range_options_adapter.py +147 -0
  76. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/extension_range_options_or_builder_adapter.py +146 -0
  77. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/extension_range_or_builder_adapter.py +91 -0
  78. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/feature_set_adapter.py +75 -0
  79. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/feature_set_or_builder_adapter.py +73 -0
  80. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/field_descriptor_adapter.py +129 -0
  81. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/field_descriptor_proto_adapter.py +125 -0
  82. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/field_descriptor_proto_or_builder_adapter.py +125 -0
  83. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/field_options_adapter.py +158 -0
  84. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/field_options_or_builder_adapter.py +156 -0
  85. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/file_descriptor_adapter.py +132 -0
  86. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/file_descriptor_proto_adapter.py +254 -0
  87. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/file_options_adapter.py +191 -0
  88. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/file_options_or_builder_adapter.py +189 -0
  89. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/generate_token_request_adapter.py +4 -0
  90. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/granted_access_adapter.py +40 -0
  91. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/granted_access_response_adapter.py +44 -0
  92. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/group_adapter.py +44 -0
  93. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/handled_event_response_adapter.py +4 -0
  94. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/integration_adapter.py +85 -0
  95. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/integration_api_adapter.py +47 -0
  96. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/integration_api_update_adapter.py +9 -0
  97. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/integration_def_adapter.py +79 -0
  98. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/integration_def_form_field_adapter.py +160 -0
  99. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/integration_update_adapter.py +9 -0
  100. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/location_adapter.py +93 -0
  101. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/location_or_builder_adapter.py +94 -0
  102. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/message_adapter.py +69 -0
  103. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/message_lite_adapter.py +37 -0
  104. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/message_options_adapter.py +125 -0
  105. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/message_options_or_builder_adapter.py +123 -0
  106. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/message_template_adapter.py +46 -0
  107. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/method_descriptor_adapter.py +86 -0
  108. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/method_descriptor_proto_adapter.py +119 -0
  109. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/method_descriptor_proto_or_builder_adapter.py +117 -0
  110. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/method_options_adapter.py +120 -0
  111. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/method_options_or_builder_adapter.py +118 -0
  112. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/metrics_token_adapter.py +4 -0
  113. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/name_part_adapter.py +80 -0
  114. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/name_part_or_builder_adapter.py +80 -0
  115. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/oneof_descriptor_adapter.py +73 -0
  116. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/oneof_descriptor_proto_adapter.py +97 -0
  117. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/oneof_descriptor_proto_or_builder_adapter.py +97 -0
  118. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/oneof_options_adapter.py +118 -0
  119. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/oneof_options_or_builder_adapter.py +116 -0
  120. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/option_adapter.py +4 -0
  121. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/permission_adapter.py +4 -0
  122. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/poll_data_adapter.py +4 -0
  123. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/prompt_template_test_request_adapter.py +13 -0
  124. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/rate_limit_config_adapter.py +4 -0
  125. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/rerun_workflow_request_adapter.py +14 -0
  126. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/reserved_range_adapter.py +69 -0
  127. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/reserved_range_or_builder_adapter.py +69 -0
  128. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/role_adapter.py +39 -0
  129. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/save_schedule_request_adapter.py +51 -0
  130. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/schema_def_adapter.py +19 -0
  131. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/scrollable_search_result_workflow_summary_adapter.py +45 -0
  132. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/search_result_handled_event_response_adapter.py +42 -0
  133. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/search_result_task_summary_adapter.py +39 -0
  134. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/search_result_workflow_schedule_execution_model_adapter.py +46 -0
  135. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/service_descriptor_adapter.py +69 -0
  136. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/service_descriptor_proto_adapter.py +125 -0
  137. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/service_descriptor_proto_or_builder_adapter.py +125 -0
  138. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/service_options_adapter.py +119 -0
  139. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/service_options_or_builder_adapter.py +117 -0
  140. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/skip_task_request_adapter.py +12 -0
  141. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/source_code_info_adapter.py +93 -0
  142. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/source_code_info_or_builder_adapter.py +93 -0
  143. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/start_workflow_request_adapter.py +55 -0
  144. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/state_change_event_adapter.py +9 -0
  145. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/sub_workflow_params_adapter.py +35 -0
  146. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/subject_ref_adapter.py +17 -0
  147. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/tag_adapter.py +4 -0
  148. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/target_ref_adapter.py +10 -0
  149. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/task_adapter.py +99 -0
  150. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/task_def_adapter.py +81 -0
  151. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/task_details_adapter.py +9 -0
  152. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/task_exec_log_adapter.py +11 -0
  153. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/task_list_search_result_summary_adapter.py +4 -0
  154. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/task_mock_adapter.py +9 -0
  155. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/task_result_adapter.py +51 -0
  156. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/task_summary_adapter.py +75 -0
  157. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/terminate_workflow_adapter.py +4 -0
  158. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/uninterpreted_option_adapter.py +114 -0
  159. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/uninterpreted_option_or_builder_adapter.py +114 -0
  160. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/unknown_field_set_adapter.py +38 -0
  161. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/update_workflow_variables_adapter.py +9 -0
  162. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/upgrade_workflow_request_adapter.py +14 -0
  163. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/upsert_group_request_adapter.py +10 -0
  164. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/upsert_user_request_adapter.py +4 -0
  165. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/webhook_config_adapter.py +68 -0
  166. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/webhook_execution_history_adapter.py +4 -0
  167. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_adapter.py +99 -0
  168. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_def_adapter.py +132 -0
  169. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_run_adapter.py +70 -0
  170. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_schedule_adapter.py +61 -0
  171. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_schedule_execution_model_adapter.py +53 -0
  172. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_schedule_model_adapter.py +63 -0
  173. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_state_update_adapter.py +40 -0
  174. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_status_adapter.py +10 -0
  175. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_summary_adapter.py +4 -0
  176. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_task_adapter.py +152 -0
  177. conductor_python-1.2.0/src/conductor/asyncio_client/adapters/models/workflow_test_request_adapter.py +80 -0
  178. conductor_python-1.2.0/src/conductor/asyncio_client/ai/orchestrator.py +166 -0
  179. conductor_python-1.2.0/src/conductor/asyncio_client/automator/task_handler.py +259 -0
  180. conductor_python-1.2.0/src/conductor/asyncio_client/automator/task_runner.py +274 -0
  181. conductor_python-1.2.0/src/conductor/asyncio_client/configuration/__init__.py +3 -0
  182. conductor_python-1.2.0/src/conductor/asyncio_client/configuration/configuration.py +526 -0
  183. conductor_python-1.2.0/src/conductor/asyncio_client/event/event_client.py +36 -0
  184. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/__init__.py +31 -0
  185. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/admin_resource_api.py +1341 -0
  186. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/application_resource_api.py +4041 -0
  187. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/authorization_resource_api.py +854 -0
  188. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/environment_resource_api.py +1897 -0
  189. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/event_execution_resource_api.py +558 -0
  190. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/event_resource_api.py +4273 -0
  191. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/group_resource_api.py +2708 -0
  192. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/health_check_resource_api.py +280 -0
  193. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/incoming_webhook_resource_api.py +616 -0
  194. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/integration_resource_api.py +6879 -0
  195. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/limits_resource_api.py +280 -0
  196. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/metadata_resource_api.py +3172 -0
  197. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/metrics_resource_api.py +350 -0
  198. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/metrics_token_resource_api.py +280 -0
  199. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/prompt_resource_api.py +2461 -0
  200. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/queue_admin_resource_api.py +524 -0
  201. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/scheduler_resource_api.py +4055 -0
  202. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/schema_resource_api.py +1354 -0
  203. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/secret_resource_api.py +3134 -0
  204. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/tags_api.py +2516 -0
  205. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/task_resource_api.py +4335 -0
  206. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/token_resource_api.py +570 -0
  207. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/user_resource_api.py +1652 -0
  208. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/version_resource_api.py +280 -0
  209. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/webhooks_config_resource_api.py +2167 -0
  210. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/workflow_bulk_resource_api.py +1722 -0
  211. conductor_python-1.2.0/src/conductor/asyncio_client/http/api/workflow_resource_api.py +8425 -0
  212. conductor_python-1.2.0/src/conductor/asyncio_client/http/api_client.py +805 -0
  213. conductor_python-1.2.0/src/conductor/asyncio_client/http/api_response.py +21 -0
  214. conductor_python-1.2.0/src/conductor/asyncio_client/http/configuration.py +598 -0
  215. conductor_python-1.2.0/src/conductor/asyncio_client/http/exceptions.py +216 -0
  216. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/__init__.py +158 -0
  217. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/action.py +128 -0
  218. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/any.py +129 -0
  219. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/authorization_request.py +107 -0
  220. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/bulk_response.py +89 -0
  221. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/byte_string.py +89 -0
  222. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/cache_config.py +89 -0
  223. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/conductor_user.py +119 -0
  224. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/connectivity_test_input.py +89 -0
  225. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/connectivity_test_result.py +91 -0
  226. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/correlation_ids_search_request.py +89 -0
  227. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/create_or_update_application_request.py +87 -0
  228. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/declaration.py +137 -0
  229. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/declaration_or_builder.py +132 -0
  230. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/descriptor.py +175 -0
  231. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/descriptor_proto.py +290 -0
  232. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/descriptor_proto_or_builder.py +277 -0
  233. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/edition_default.py +136 -0
  234. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/edition_default_or_builder.py +131 -0
  235. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_descriptor.py +129 -0
  236. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_descriptor_proto.py +183 -0
  237. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_descriptor_proto_or_builder.py +179 -0
  238. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_options.py +158 -0
  239. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_options_or_builder.py +151 -0
  240. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_reserved_range.py +120 -0
  241. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_reserved_range_or_builder.py +115 -0
  242. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_value_descriptor.py +119 -0
  243. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_value_descriptor_proto.py +138 -0
  244. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_value_descriptor_proto_or_builder.py +133 -0
  245. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_value_options.py +156 -0
  246. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/enum_value_options_or_builder.py +149 -0
  247. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/environment_variable.py +99 -0
  248. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/event_handler.py +121 -0
  249. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/event_log.py +109 -0
  250. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/extended_conductor_application.py +107 -0
  251. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/extended_event_execution.py +135 -0
  252. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/extended_secret.py +97 -0
  253. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/extended_task_def.py +183 -0
  254. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/extended_workflow_def.py +177 -0
  255. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/extension_range.py +132 -0
  256. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/extension_range_options.py +186 -0
  257. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/extension_range_options_or_builder.py +179 -0
  258. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/extension_range_or_builder.py +127 -0
  259. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/feature_set.py +190 -0
  260. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/feature_set_or_builder.py +183 -0
  261. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/field_descriptor.py +212 -0
  262. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/field_descriptor_proto.py +194 -0
  263. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/field_descriptor_proto_or_builder.py +189 -0
  264. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/field_options.py +237 -0
  265. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/field_options_or_builder.py +230 -0
  266. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/file_descriptor.py +194 -0
  267. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/file_descriptor_proto.py +273 -0
  268. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/file_options.py +253 -0
  269. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/file_options_or_builder.py +246 -0
  270. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/generate_token_request.py +89 -0
  271. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/granted_access.py +106 -0
  272. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/granted_access_response.py +95 -0
  273. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/group.py +112 -0
  274. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/handled_event_response.py +95 -0
  275. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/integration.py +139 -0
  276. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/integration_api.py +115 -0
  277. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/integration_api_update.py +91 -0
  278. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/integration_def.py +121 -0
  279. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/integration_def_form_field.py +129 -0
  280. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/integration_update.py +105 -0
  281. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/location.py +142 -0
  282. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/location_or_builder.py +138 -0
  283. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/message.py +115 -0
  284. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/message_lite.py +98 -0
  285. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/message_options.py +162 -0
  286. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/message_options_or_builder.py +155 -0
  287. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/message_template.py +115 -0
  288. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/method_descriptor.py +132 -0
  289. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/method_descriptor_proto.py +154 -0
  290. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/method_descriptor_proto_or_builder.py +149 -0
  291. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/method_options.py +166 -0
  292. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/method_options_or_builder.py +159 -0
  293. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/metrics_token.py +87 -0
  294. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/name_part.py +126 -0
  295. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/name_part_or_builder.py +121 -0
  296. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/oneof_descriptor.py +121 -0
  297. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/oneof_descriptor_proto.py +136 -0
  298. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/oneof_descriptor_proto_or_builder.py +131 -0
  299. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/oneof_options.py +152 -0
  300. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/oneof_options_or_builder.py +145 -0
  301. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/option.py +89 -0
  302. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/permission.py +87 -0
  303. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/poll_data.py +93 -0
  304. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/prompt_template_test_request.py +99 -0
  305. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/rate_limit_config.py +89 -0
  306. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/rerun_workflow_request.py +95 -0
  307. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/reserved_range.py +120 -0
  308. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/reserved_range_or_builder.py +115 -0
  309. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/role.py +97 -0
  310. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/save_schedule_request.py +119 -0
  311. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/schema_def.py +112 -0
  312. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/scrollable_search_result_workflow_summary.py +99 -0
  313. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/search_result_handled_event_response.py +97 -0
  314. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/search_result_task_summary.py +97 -0
  315. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/search_result_workflow_schedule_execution_model.py +97 -0
  316. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/service_descriptor.py +121 -0
  317. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/service_descriptor_proto.py +158 -0
  318. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/service_descriptor_proto_or_builder.py +153 -0
  319. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/service_options.py +154 -0
  320. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/service_options_or_builder.py +147 -0
  321. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/skip_task_request.py +89 -0
  322. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/source_code_info.py +138 -0
  323. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/source_code_info_or_builder.py +133 -0
  324. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/start_workflow_request.py +122 -0
  325. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/state_change_event.py +89 -0
  326. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/sub_workflow_params.py +109 -0
  327. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/subject_ref.py +110 -0
  328. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/tag.py +91 -0
  329. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/target_ref.py +103 -0
  330. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/task.py +189 -0
  331. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/task_def.py +171 -0
  332. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/task_details.py +99 -0
  333. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/task_exec_log.py +91 -0
  334. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/task_list_search_result_summary.py +99 -0
  335. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/task_mock.py +103 -0
  336. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/task_result.py +125 -0
  337. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/task_summary.py +135 -0
  338. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/terminate_workflow.py +89 -0
  339. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/uninterpreted_option.py +164 -0
  340. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/uninterpreted_option_or_builder.py +159 -0
  341. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/unknown_field_set.py +100 -0
  342. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/update_workflow_variables.py +91 -0
  343. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/upgrade_workflow_request.py +93 -0
  344. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/upsert_group_request.py +113 -0
  345. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/upsert_user_request.py +102 -0
  346. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/webhook_config.py +139 -0
  347. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/webhook_execution_history.py +95 -0
  348. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow.py +183 -0
  349. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_def.py +165 -0
  350. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_run.py +127 -0
  351. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_schedule.py +127 -0
  352. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_schedule_execution_model.py +125 -0
  353. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_schedule_model.py +131 -0
  354. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_state_update.py +95 -0
  355. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_status.py +105 -0
  356. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_summary.py +137 -0
  357. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_task.py +236 -0
  358. conductor_python-1.2.0/src/conductor/asyncio_client/http/models/workflow_test_request.py +157 -0
  359. conductor_python-1.2.0/src/conductor/asyncio_client/http/rest.py +213 -0
  360. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_authorization_client.py +275 -0
  361. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_base_client.py +69 -0
  362. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_clients.py +294 -0
  363. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_integration_client.py +158 -0
  364. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_metadata_client.py +231 -0
  365. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_prompt_client.py +210 -0
  366. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_scheduler_client.py +260 -0
  367. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_schema_client.py +229 -0
  368. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_secret_client.py +84 -0
  369. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_task_client.py +169 -0
  370. conductor_python-1.2.0/src/conductor/asyncio_client/orkes/orkes_workflow_client.py +401 -0
  371. conductor_python-1.2.0/src/conductor/asyncio_client/telemetry/metrics_collector.py +316 -0
  372. conductor_python-1.2.0/src/conductor/asyncio_client/worker/worker.py +163 -0
  373. conductor_python-1.2.0/src/conductor/asyncio_client/worker/worker_interface.py +126 -0
  374. conductor_python-1.2.0/src/conductor/asyncio_client/worker/worker_task.py +88 -0
  375. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/conductor_workflow.py +470 -0
  376. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/executor/workflow_executor.py +335 -0
  377. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/do_while_task.py +65 -0
  378. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/dynamic_fork_task.py +37 -0
  379. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/dynamic_task.py +27 -0
  380. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/event_task.py +30 -0
  381. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/fork_task.py +53 -0
  382. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/get_document.py +21 -0
  383. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/http_poll_task.py +16 -0
  384. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/http_task.py +38 -0
  385. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/human_task.py +31 -0
  386. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/inline.py +22 -0
  387. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/javascript_task.py +33 -0
  388. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/join_task.py +28 -0
  389. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/json_jq_task.py +11 -0
  390. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/kafka_publish.py +20 -0
  391. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/llm_tasks/llm_chat_complete.py +55 -0
  392. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/llm_tasks/llm_generate_embeddings.py +29 -0
  393. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/llm_tasks/llm_index_documents.py +75 -0
  394. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/llm_tasks/llm_index_text.py +55 -0
  395. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/llm_tasks/llm_query_embeddings.py +32 -0
  396. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/llm_tasks/llm_search_index.py +38 -0
  397. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/llm_tasks/llm_text_complete.py +59 -0
  398. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/set_variable_task.py +9 -0
  399. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/simple_task.py +23 -0
  400. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/start_workflow_task.py +30 -0
  401. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/sub_workflow_task.py +58 -0
  402. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/switch_task.py +59 -0
  403. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/task.py +188 -0
  404. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/terminate_task.py +16 -0
  405. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/wait_for_webhook_task.py +45 -0
  406. conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/wait_task.py +40 -0
  407. conductor_python-1.2.0/src/conductor/client/CLIENT_REGENERATION_GUIDE.md +315 -0
  408. conductor_python-1.2.0/src/conductor/client/adapters/api/__init__.py +90 -0
  409. conductor_python-1.2.0/src/conductor/client/adapters/api/admin_resource_api_adapter.py +4 -0
  410. conductor_python-1.2.0/src/conductor/client/adapters/api/application_resource_api_adapter.py +5 -0
  411. conductor_python-1.2.0/src/conductor/client/adapters/api/authorization_resource_api_adapter.py +5 -0
  412. conductor_python-1.2.0/src/conductor/client/adapters/api/environment_resource_api_adapter.py +5 -0
  413. conductor_python-1.2.0/src/conductor/client/adapters/api/event_execution_resource_api_adapter.py +5 -0
  414. conductor_python-1.2.0/src/conductor/client/adapters/api/event_message_resource_api_adapter.py +5 -0
  415. conductor_python-1.2.0/src/conductor/client/adapters/api/event_resource_api_adapter.py +4 -0
  416. conductor_python-1.2.0/src/conductor/client/adapters/api/group_resource_api_adapter.py +4 -0
  417. conductor_python-1.2.0/src/conductor/client/adapters/api/incoming_webhook_resource_api_adapter.py +5 -0
  418. conductor_python-1.2.0/src/conductor/client/adapters/api/integration_resource_api_adapter.py +5 -0
  419. conductor_python-1.2.0/src/conductor/client/adapters/api/limits_resource_api_adapter.py +4 -0
  420. conductor_python-1.2.0/src/conductor/client/adapters/api/metadata_resource_api_adapter.py +5 -0
  421. conductor_python-1.2.0/src/conductor/client/adapters/api/metrics_resource_api_adapter.py +5 -0
  422. conductor_python-1.2.0/src/conductor/client/adapters/api/metrics_token_resource_api_adapter.py +5 -0
  423. conductor_python-1.2.0/src/conductor/client/adapters/api/prompt_resource_api_adapter.py +4 -0
  424. conductor_python-1.2.0/src/conductor/client/adapters/api/queue_admin_resource_api_adapter.py +5 -0
  425. conductor_python-1.2.0/src/conductor/client/adapters/api/scheduler_bulk_resource_api_adapter.py +5 -0
  426. conductor_python-1.2.0/src/conductor/client/adapters/api/scheduler_resource_api_adapter.py +5 -0
  427. conductor_python-1.2.0/src/conductor/client/adapters/api/schema_resource_api_adapter.py +4 -0
  428. conductor_python-1.2.0/src/conductor/client/adapters/api/secret_resource_api_adapter.py +4 -0
  429. conductor_python-1.2.0/src/conductor/client/adapters/api/service_registry_resource_api_adapter.py +5 -0
  430. conductor_python-1.2.0/src/conductor/client/adapters/api/tags_api_adapter.py +4 -0
  431. conductor_python-1.2.0/src/conductor/client/adapters/api/task_resource_api_adapter.py +4 -0
  432. conductor_python-1.2.0/src/conductor/client/adapters/api/token_resource_api_adapter.py +4 -0
  433. conductor_python-1.2.0/src/conductor/client/adapters/api/user_resource_api_adapter.py +4 -0
  434. conductor_python-1.2.0/src/conductor/client/adapters/api/version_resource_api_adapter.py +5 -0
  435. conductor_python-1.2.0/src/conductor/client/adapters/api/webhooks_config_resource_api_adapter.py +5 -0
  436. conductor_python-1.2.0/src/conductor/client/adapters/api/workflow_bulk_resource_api_adapter.py +5 -0
  437. conductor_python-1.2.0/src/conductor/client/adapters/api/workflow_resource_api_adapter.py +5 -0
  438. conductor_python-1.2.0/src/conductor/client/adapters/api_client_adapter.py +99 -0
  439. conductor_python-1.2.0/src/conductor/client/adapters/models/__init__.py +398 -0
  440. conductor_python-1.2.0/src/conductor/client/adapters/models/action_adapter.py +23 -0
  441. conductor_python-1.2.0/src/conductor/client/adapters/models/any_adapter.py +4 -0
  442. conductor_python-1.2.0/src/conductor/client/adapters/models/authorization_request_adapter.py +41 -0
  443. conductor_python-1.2.0/src/conductor/client/adapters/models/bulk_response_adapter.py +75 -0
  444. conductor_python-1.2.0/src/conductor/client/adapters/models/byte_string_adapter.py +4 -0
  445. conductor_python-1.2.0/src/conductor/client/adapters/models/cache_config_adapter.py +4 -0
  446. conductor_python-1.2.0/src/conductor/client/adapters/models/circuit_breaker_transition_response_adapter.py +6 -0
  447. conductor_python-1.2.0/src/conductor/client/adapters/models/conductor_application_adapter.py +6 -0
  448. conductor_python-1.2.0/src/conductor/client/adapters/models/conductor_user_adapter.py +4 -0
  449. conductor_python-1.2.0/src/conductor/client/adapters/models/connectivity_test_input_adapter.py +4 -0
  450. conductor_python-1.2.0/src/conductor/client/adapters/models/connectivity_test_result_adapter.py +4 -0
  451. conductor_python-1.2.0/src/conductor/client/adapters/models/correlation_ids_search_request_adapter.py +4 -0
  452. conductor_python-1.2.0/src/conductor/client/adapters/models/create_or_update_application_request_adapter.py +4 -0
  453. conductor_python-1.2.0/src/conductor/client/adapters/models/declaration_adapter.py +4 -0
  454. conductor_python-1.2.0/src/conductor/client/adapters/models/declaration_or_builder_adapter.py +4 -0
  455. conductor_python-1.2.0/src/conductor/client/adapters/models/descriptor_adapter.py +4 -0
  456. conductor_python-1.2.0/src/conductor/client/adapters/models/descriptor_proto_adapter.py +4 -0
  457. conductor_python-1.2.0/src/conductor/client/adapters/models/descriptor_proto_or_builder_adapter.py +4 -0
  458. conductor_python-1.2.0/src/conductor/client/adapters/models/edition_default_adapter.py +4 -0
  459. conductor_python-1.2.0/src/conductor/client/adapters/models/edition_default_or_builder_adapter.py +4 -0
  460. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_descriptor_adapter.py +4 -0
  461. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_descriptor_proto_adapter.py +4 -0
  462. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_descriptor_proto_or_builder_adapter.py +4 -0
  463. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_options_adapter.py +4 -0
  464. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_options_or_builder_adapter.py +4 -0
  465. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_reserved_range_adapter.py +4 -0
  466. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_reserved_range_or_builder_adapter.py +4 -0
  467. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_value_descriptor_adapter.py +4 -0
  468. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_value_descriptor_proto_adapter.py +4 -0
  469. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_value_descriptor_proto_or_builder_adapter.py +4 -0
  470. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_value_options_adapter.py +4 -0
  471. conductor_python-1.2.0/src/conductor/client/adapters/models/enum_value_options_or_builder_adapter.py +4 -0
  472. conductor_python-1.2.0/src/conductor/client/adapters/models/environment_variable_adapter.py +4 -0
  473. conductor_python-1.2.0/src/conductor/client/adapters/models/event_handler_adapter.py +4 -0
  474. conductor_python-1.2.0/src/conductor/client/adapters/models/event_log_adapter.py +4 -0
  475. conductor_python-1.2.0/src/conductor/client/adapters/models/event_message_adapter.py +5 -0
  476. conductor_python-1.2.0/src/conductor/client/adapters/models/extended_conductor_application_adapter.py +4 -0
  477. conductor_python-1.2.0/src/conductor/client/adapters/models/extended_event_execution_adapter.py +4 -0
  478. conductor_python-1.2.0/src/conductor/client/adapters/models/extended_secret_adapter.py +4 -0
  479. conductor_python-1.2.0/src/conductor/client/adapters/models/extended_task_def_adapter.py +4 -0
  480. conductor_python-1.2.0/src/conductor/client/adapters/models/extended_workflow_def_adapter.py +4 -0
  481. conductor_python-1.2.0/src/conductor/client/adapters/models/extension_range_adapter.py +4 -0
  482. conductor_python-1.2.0/src/conductor/client/adapters/models/extension_range_options_adapter.py +4 -0
  483. conductor_python-1.2.0/src/conductor/client/adapters/models/extension_range_options_or_builder_adapter.py +4 -0
  484. conductor_python-1.2.0/src/conductor/client/adapters/models/extension_range_or_builder_adapter.py +4 -0
  485. conductor_python-1.2.0/src/conductor/client/adapters/models/external_storage_location_adapter.py +6 -0
  486. conductor_python-1.2.0/src/conductor/client/adapters/models/feature_set_adapter.py +4 -0
  487. conductor_python-1.2.0/src/conductor/client/adapters/models/feature_set_or_builder_adapter.py +4 -0
  488. conductor_python-1.2.0/src/conductor/client/adapters/models/field_descriptor_adapter.py +4 -0
  489. conductor_python-1.2.0/src/conductor/client/adapters/models/field_descriptor_proto_adapter.py +4 -0
  490. conductor_python-1.2.0/src/conductor/client/adapters/models/field_descriptor_proto_or_builder_adapter.py +4 -0
  491. conductor_python-1.2.0/src/conductor/client/adapters/models/field_options_adapter.py +4 -0
  492. conductor_python-1.2.0/src/conductor/client/adapters/models/field_options_or_builder_adapter.py +4 -0
  493. conductor_python-1.2.0/src/conductor/client/adapters/models/file_descriptor_adapter.py +4 -0
  494. conductor_python-1.2.0/src/conductor/client/adapters/models/file_descriptor_proto_adapter.py +4 -0
  495. conductor_python-1.2.0/src/conductor/client/adapters/models/file_options_adapter.py +4 -0
  496. conductor_python-1.2.0/src/conductor/client/adapters/models/file_options_or_builder_adapter.py +4 -0
  497. conductor_python-1.2.0/src/conductor/client/adapters/models/generate_token_request_adapter.py +4 -0
  498. conductor_python-1.2.0/src/conductor/client/adapters/models/granted_access_adapter.py +4 -0
  499. conductor_python-1.2.0/src/conductor/client/adapters/models/granted_access_response_adapter.py +4 -0
  500. conductor_python-1.2.0/src/conductor/client/adapters/models/group_adapter.py +11 -0
  501. conductor_python-1.2.0/src/conductor/client/adapters/models/handled_event_response_adapter.py +4 -0
  502. conductor_python-1.2.0/src/conductor/client/adapters/models/health.py +156 -0
  503. conductor_python-1.2.0/src/conductor/client/adapters/models/health_check_status.py +157 -0
  504. conductor_python-1.2.0/src/conductor/client/adapters/models/incoming_bpmn_file_adapter.py +5 -0
  505. conductor_python-1.2.0/src/conductor/client/adapters/models/integration_adapter.py +154 -0
  506. conductor_python-1.2.0/src/conductor/client/adapters/models/integration_api_adapter.py +110 -0
  507. conductor_python-1.2.0/src/conductor/client/adapters/models/integration_api_update_adapter.py +8 -0
  508. conductor_python-1.2.0/src/conductor/client/adapters/models/integration_def_adapter.py +114 -0
  509. conductor_python-1.2.0/src/conductor/client/adapters/models/integration_def_api_adapter.py +210 -0
  510. conductor_python-1.2.0/src/conductor/client/adapters/models/integration_def_form_field_adapter.py +80 -0
  511. conductor_python-1.2.0/src/conductor/client/adapters/models/integration_update_adapter.py +25 -0
  512. conductor_python-1.2.0/src/conductor/client/adapters/models/json_node_adapter.py +5 -0
  513. conductor_python-1.2.0/src/conductor/client/adapters/models/location_adapter.py +4 -0
  514. conductor_python-1.2.0/src/conductor/client/adapters/models/location_or_builder_adapter.py +4 -0
  515. conductor_python-1.2.0/src/conductor/client/adapters/models/message_adapter.py +4 -0
  516. conductor_python-1.2.0/src/conductor/client/adapters/models/message_lite_adapter.py +4 -0
  517. conductor_python-1.2.0/src/conductor/client/adapters/models/message_options_adapter.py +4 -0
  518. conductor_python-1.2.0/src/conductor/client/adapters/models/message_options_or_builder_adapter.py +4 -0
  519. conductor_python-1.2.0/src/conductor/client/adapters/models/message_template_adapter.py +4 -0
  520. conductor_python-1.2.0/src/conductor/client/adapters/models/method_descriptor_adapter.py +4 -0
  521. conductor_python-1.2.0/src/conductor/client/adapters/models/method_descriptor_proto_adapter.py +4 -0
  522. conductor_python-1.2.0/src/conductor/client/adapters/models/method_descriptor_proto_or_builder_adapter.py +4 -0
  523. conductor_python-1.2.0/src/conductor/client/adapters/models/method_options_adapter.py +4 -0
  524. conductor_python-1.2.0/src/conductor/client/adapters/models/method_options_or_builder_adapter.py +4 -0
  525. conductor_python-1.2.0/src/conductor/client/adapters/models/metrics_token_adapter.py +4 -0
  526. conductor_python-1.2.0/src/conductor/client/adapters/models/name_part_adapter.py +4 -0
  527. conductor_python-1.2.0/src/conductor/client/adapters/models/name_part_or_builder_adapter.py +4 -0
  528. conductor_python-1.2.0/src/conductor/client/adapters/models/oneof_descriptor_adapter.py +4 -0
  529. conductor_python-1.2.0/src/conductor/client/adapters/models/oneof_descriptor_proto_adapter.py +4 -0
  530. conductor_python-1.2.0/src/conductor/client/adapters/models/oneof_descriptor_proto_or_builder_adapter.py +4 -0
  531. conductor_python-1.2.0/src/conductor/client/adapters/models/oneof_options_adapter.py +4 -0
  532. conductor_python-1.2.0/src/conductor/client/adapters/models/oneof_options_or_builder_adapter.py +4 -0
  533. conductor_python-1.2.0/src/conductor/client/adapters/models/option_adapter.py +4 -0
  534. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_adapter.py +5 -0
  535. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_any_adapter.py +5 -0
  536. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_declaration_adapter.py +6 -0
  537. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_descriptor_proto_adapter.py +6 -0
  538. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_edition_default_adapter.py +6 -0
  539. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_enum_descriptor_proto_adapter.py +6 -0
  540. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_enum_options_adapter.py +6 -0
  541. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_enum_reserved_range_adapter.py +6 -0
  542. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_enum_value_descriptor_proto_adapter.py +6 -0
  543. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_enum_value_options_adapter.py +6 -0
  544. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_extension_range_adapter.py +6 -0
  545. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_extension_range_options_adapter.py +6 -0
  546. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_feature_set_adapter.py +5 -0
  547. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_field_descriptor_proto_adapter.py +6 -0
  548. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_field_options_adapter.py +6 -0
  549. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_file_descriptor_proto_adapter.py +6 -0
  550. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_file_options_adapter.py +6 -0
  551. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_location_adapter.py +5 -0
  552. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_message_adapter.py +5 -0
  553. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_message_lite_adapter.py +6 -0
  554. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_message_options_adapter.py +6 -0
  555. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_method_descriptor_proto_adapter.py +6 -0
  556. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_method_options_adapter.py +6 -0
  557. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_name_part_adapter.py +5 -0
  558. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_oneof_descriptor_proto_adapter.py +6 -0
  559. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_oneof_options_adapter.py +6 -0
  560. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_reserved_range_adapter.py +6 -0
  561. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_service_descriptor_proto_adapter.py +6 -0
  562. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_service_options_adapter.py +6 -0
  563. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_source_code_info_adapter.py +6 -0
  564. conductor_python-1.2.0/src/conductor/client/adapters/models/parser_uninterpreted_option_adapter.py +6 -0
  565. conductor_python-1.2.0/src/conductor/client/adapters/models/permission_adapter.py +4 -0
  566. conductor_python-1.2.0/src/conductor/client/adapters/models/poll_data_adapter.py +13 -0
  567. conductor_python-1.2.0/src/conductor/client/adapters/models/prompt_template_adapter.py +4 -0
  568. conductor_python-1.2.0/src/conductor/client/adapters/models/prompt_template_test_request_adapter.py +4 -0
  569. conductor_python-1.2.0/src/conductor/client/adapters/models/prompt_test_request_adapter.py +6 -0
  570. conductor_python-1.2.0/src/conductor/client/adapters/models/proto_registry_entry_adapter.py +6 -0
  571. conductor_python-1.2.0/src/conductor/client/adapters/models/rate_limit_adapter.py +5 -0
  572. conductor_python-1.2.0/src/conductor/client/adapters/models/rate_limit_config_adapter.py +5 -0
  573. conductor_python-1.2.0/src/conductor/client/adapters/models/request_param_adapter.py +9 -0
  574. conductor_python-1.2.0/src/conductor/client/adapters/models/rerun_workflow_request_adapter.py +6 -0
  575. conductor_python-1.2.0/src/conductor/client/adapters/models/reserved_range_adapter.py +5 -0
  576. conductor_python-1.2.0/src/conductor/client/adapters/models/reserved_range_or_builder_adapter.py +6 -0
  577. conductor_python-1.2.0/src/conductor/client/adapters/models/response_adapter.py +13 -0
  578. conductor_python-1.2.0/src/conductor/client/adapters/models/role_adapter.py +5 -0
  579. conductor_python-1.2.0/src/conductor/client/adapters/models/save_schedule_request_adapter.py +15 -0
  580. conductor_python-1.2.0/src/conductor/client/adapters/models/schema_def_adapter.py +88 -0
  581. conductor_python-1.2.0/src/conductor/client/adapters/models/scrollable_search_result_workflow_summary_adapter.py +8 -0
  582. conductor_python-1.2.0/src/conductor/client/adapters/models/search_result_handled_event_response_adapter.py +6 -0
  583. conductor_python-1.2.0/src/conductor/client/adapters/models/search_result_task_adapter.py +5 -0
  584. conductor_python-1.2.0/src/conductor/client/adapters/models/search_result_task_summary_adapter.py +6 -0
  585. conductor_python-1.2.0/src/conductor/client/adapters/models/search_result_workflow_adapter.py +6 -0
  586. conductor_python-1.2.0/src/conductor/client/adapters/models/search_result_workflow_schedule_execution_model_adapter.py +8 -0
  587. conductor_python-1.2.0/src/conductor/client/adapters/models/search_result_workflow_summary_adapter.py +6 -0
  588. conductor_python-1.2.0/src/conductor/client/adapters/models/service_descriptor_adapter.py +6 -0
  589. conductor_python-1.2.0/src/conductor/client/adapters/models/service_descriptor_proto_adapter.py +6 -0
  590. conductor_python-1.2.0/src/conductor/client/adapters/models/service_descriptor_proto_or_builder_adapter.py +6 -0
  591. conductor_python-1.2.0/src/conductor/client/adapters/models/service_method_adapter.py +5 -0
  592. conductor_python-1.2.0/src/conductor/client/adapters/models/service_options_adapter.py +5 -0
  593. conductor_python-1.2.0/src/conductor/client/adapters/models/service_options_or_builder_adapter.py +6 -0
  594. conductor_python-1.2.0/src/conductor/client/adapters/models/service_registry_adapter.py +21 -0
  595. conductor_python-1.2.0/src/conductor/client/adapters/models/signal_response_adapter.py +31 -0
  596. conductor_python-1.2.0/src/conductor/client/adapters/models/skip_task_request_adapter.py +5 -0
  597. conductor_python-1.2.0/src/conductor/client/adapters/models/source_code_info_adapter.py +5 -0
  598. conductor_python-1.2.0/src/conductor/client/adapters/models/source_code_info_or_builder_adapter.py +6 -0
  599. conductor_python-1.2.0/src/conductor/client/adapters/models/start_workflow_adapter.py +5 -0
  600. conductor_python-1.2.0/src/conductor/client/adapters/models/start_workflow_request_adapter.py +75 -0
  601. conductor_python-1.2.0/src/conductor/client/adapters/models/state_change_event_adapter.py +139 -0
  602. conductor_python-1.2.0/src/conductor/client/adapters/models/sub_workflow_params_adapter.py +15 -0
  603. conductor_python-1.2.0/src/conductor/client/adapters/models/subject_ref_adapter.py +4 -0
  604. conductor_python-1.2.0/src/conductor/client/adapters/models/tag_adapter.py +12 -0
  605. conductor_python-1.2.0/src/conductor/client/adapters/models/tag_object_adapter.py +5 -0
  606. conductor_python-1.2.0/src/conductor/client/adapters/models/tag_string_adapter.py +5 -0
  607. conductor_python-1.2.0/src/conductor/client/adapters/models/target_ref_adapter.py +53 -0
  608. conductor_python-1.2.0/src/conductor/client/adapters/models/task_adapter.py +17 -0
  609. conductor_python-1.2.0/src/conductor/client/adapters/models/task_def_adapter.py +23 -0
  610. conductor_python-1.2.0/src/conductor/client/adapters/models/task_details_adapter.py +15 -0
  611. conductor_python-1.2.0/src/conductor/client/adapters/models/task_exec_log_adapter.py +5 -0
  612. conductor_python-1.2.0/src/conductor/client/adapters/models/task_list_search_result_summary_adapter.py +6 -0
  613. conductor_python-1.2.0/src/conductor/client/adapters/models/task_mock_adapter.py +5 -0
  614. conductor_python-1.2.0/src/conductor/client/adapters/models/task_result_adapter.py +91 -0
  615. conductor_python-1.2.0/src/conductor/client/adapters/models/task_summary_adapter.py +170 -0
  616. conductor_python-1.2.0/src/conductor/client/adapters/models/terminate_workflow_adapter.py +6 -0
  617. conductor_python-1.2.0/src/conductor/client/adapters/models/token_adapter.py +5 -0
  618. conductor_python-1.2.0/src/conductor/client/adapters/models/uninterpreted_option_adapter.py +6 -0
  619. conductor_python-1.2.0/src/conductor/client/adapters/models/uninterpreted_option_or_builder_adapter.py +6 -0
  620. conductor_python-1.2.0/src/conductor/client/adapters/models/unknown_field_set_adapter.py +5 -0
  621. conductor_python-1.2.0/src/conductor/client/adapters/models/update_workflow_variables_adapter.py +6 -0
  622. conductor_python-1.2.0/src/conductor/client/adapters/models/update_workflow_variables_adapters.py +6 -0
  623. conductor_python-1.2.0/src/conductor/client/adapters/models/upgrade_workflow_request_adapter.py +6 -0
  624. conductor_python-1.2.0/src/conductor/client/adapters/models/upsert_group_request_adapter.py +40 -0
  625. conductor_python-1.2.0/src/conductor/client/adapters/models/upsert_user_request_adapter.py +39 -0
  626. conductor_python-1.2.0/src/conductor/client/adapters/models/webhook_config_adapter.py +5 -0
  627. conductor_python-1.2.0/src/conductor/client/adapters/models/webhook_execution_history_adapter.py +6 -0
  628. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_adapter.py +54 -0
  629. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_def_adapter.py +167 -0
  630. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_run_adapter.py +120 -0
  631. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_schedule_adapter.py +72 -0
  632. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_schedule_execution_model_adapter.py +6 -0
  633. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_schedule_model_adapter.py +6 -0
  634. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_state_update_adapter.py +6 -0
  635. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_status_adapter.py +20 -0
  636. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_summary_adapter.py +51 -0
  637. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_tag_adapter.py +5 -0
  638. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_task_adapter.py +61 -0
  639. conductor_python-1.2.0/src/conductor/client/adapters/models/workflow_test_request_adapter.py +6 -0
  640. conductor_python-1.2.0/src/conductor/client/adapters/rest_adapter.py +351 -0
  641. conductor_python-1.2.0/src/conductor/client/ai/orchestrator.py +104 -0
  642. conductor_python-1.2.0/src/conductor/client/authorization_client.py +149 -0
  643. conductor_python-1.2.0/src/conductor/client/automator/task_handler.py +249 -0
  644. conductor_python-1.2.0/src/conductor/client/automator/task_runner.py +275 -0
  645. conductor_python-1.2.0/src/conductor/client/codegen/api/admin_resource_api.py +482 -0
  646. conductor_python-1.2.0/src/conductor/client/codegen/api/application_resource_api.py +1472 -0
  647. conductor_python-1.2.0/src/conductor/client/codegen/api/authorization_resource_api.py +316 -0
  648. conductor_python-1.2.0/src/conductor/client/codegen/api/environment_resource_api.py +688 -0
  649. conductor_python-1.2.0/src/conductor/client/codegen/api/event_execution_resource_api.py +207 -0
  650. conductor_python-1.2.0/src/conductor/client/codegen/api/event_message_resource_api.py +207 -0
  651. conductor_python-1.2.0/src/conductor/client/codegen/api/event_resource_api.py +1533 -0
  652. conductor_python-1.2.0/src/conductor/client/codegen/api/group_resource_api.py +987 -0
  653. conductor_python-1.2.0/src/conductor/client/codegen/api/incoming_webhook_resource_api.py +235 -0
  654. conductor_python-1.2.0/src/conductor/client/codegen/api/integration_resource_api.py +2482 -0
  655. conductor_python-1.2.0/src/conductor/client/codegen/api/limits_resource_api.py +106 -0
  656. conductor_python-1.2.0/src/conductor/client/codegen/api/metadata_resource_api.py +1201 -0
  657. conductor_python-1.2.0/src/conductor/client/codegen/api/metrics_resource_api.py +140 -0
  658. conductor_python-1.2.0/src/conductor/client/codegen/api/metrics_token_resource_api.py +106 -0
  659. conductor_python-1.2.0/src/conductor/client/codegen/api/prompt_resource_api.py +887 -0
  660. conductor_python-1.2.0/src/conductor/client/codegen/api/queue_admin_resource_api.py +191 -0
  661. conductor_python-1.2.0/src/conductor/client/codegen/api/scheduler_bulk_resource_api.py +215 -0
  662. conductor_python-1.2.0/src/conductor/client/codegen/api/scheduler_resource_api.py +1434 -0
  663. conductor_python-1.2.0/src/conductor/client/codegen/api/schema_resource_api.py +490 -0
  664. conductor_python-1.2.0/src/conductor/client/codegen/api/secret_resource_api.py +1125 -0
  665. conductor_python-1.2.0/src/conductor/client/codegen/api/service_registry_resource_api.py +1384 -0
  666. conductor_python-1.2.0/src/conductor/client/codegen/api/task_resource_api.py +1866 -0
  667. conductor_python-1.2.0/src/conductor/client/codegen/api/token_resource_api.py +207 -0
  668. conductor_python-1.2.0/src/conductor/client/codegen/api/user_resource_api.py +603 -0
  669. conductor_python-1.2.0/src/conductor/client/codegen/api/version_resource_api.py +106 -0
  670. conductor_python-1.2.0/src/conductor/client/codegen/api/webhooks_config_resource_api.py +777 -0
  671. conductor_python-1.2.0/src/conductor/client/codegen/api/workflow_bulk_resource_api.py +615 -0
  672. conductor_python-1.2.0/src/conductor/client/codegen/api/workflow_resource_api.py +3083 -0
  673. conductor_python-1.2.0/src/conductor/client/codegen/api_client.py +737 -0
  674. conductor_python-1.2.0/src/conductor/client/codegen/models/__init__.py +157 -0
  675. conductor_python-1.2.0/src/conductor/client/codegen/models/action.py +272 -0
  676. conductor_python-1.2.0/src/conductor/client/codegen/models/any.py +396 -0
  677. conductor_python-1.2.0/src/conductor/client/codegen/models/authorization_request.py +174 -0
  678. conductor_python-1.2.0/src/conductor/client/codegen/models/bulk_response.py +136 -0
  679. conductor_python-1.2.0/src/conductor/client/codegen/models/byte_string.py +136 -0
  680. conductor_python-1.2.0/src/conductor/client/codegen/models/cache_config.py +136 -0
  681. conductor_python-1.2.0/src/conductor/client/codegen/models/circuit_breaker_transition_response.py +55 -0
  682. conductor_python-1.2.0/src/conductor/client/codegen/models/conductor_application.py +228 -0
  683. conductor_python-1.2.0/src/conductor/client/codegen/models/conductor_user.py +318 -0
  684. conductor_python-1.2.0/src/conductor/client/codegen/models/connectivity_test_input.py +136 -0
  685. conductor_python-1.2.0/src/conductor/client/codegen/models/connectivity_test_result.py +162 -0
  686. conductor_python-1.2.0/src/conductor/client/codegen/models/correlation_ids_search_request.py +136 -0
  687. conductor_python-1.2.0/src/conductor/client/codegen/models/create_or_update_application_request.py +112 -0
  688. conductor_python-1.2.0/src/conductor/client/codegen/models/declaration.py +500 -0
  689. conductor_python-1.2.0/src/conductor/client/codegen/models/declaration_or_builder.py +422 -0
  690. conductor_python-1.2.0/src/conductor/client/codegen/models/descriptor.py +448 -0
  691. conductor_python-1.2.0/src/conductor/client/codegen/models/descriptor_proto.py +1020 -0
  692. conductor_python-1.2.0/src/conductor/client/codegen/models/descriptor_proto_or_builder.py +916 -0
  693. conductor_python-1.2.0/src/conductor/client/codegen/models/edition_default.py +402 -0
  694. conductor_python-1.2.0/src/conductor/client/codegen/models/edition_default_or_builder.py +324 -0
  695. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_descriptor.py +318 -0
  696. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_descriptor_proto.py +630 -0
  697. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_descriptor_proto_or_builder.py +552 -0
  698. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_options.py +552 -0
  699. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_options_or_builder.py +448 -0
  700. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_reserved_range.py +370 -0
  701. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_reserved_range_or_builder.py +292 -0
  702. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_value_descriptor.py +292 -0
  703. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_value_descriptor_proto.py +448 -0
  704. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_value_descriptor_proto_or_builder.py +370 -0
  705. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_value_options.py +526 -0
  706. conductor_python-1.2.0/src/conductor/client/codegen/models/enum_value_options_or_builder.py +422 -0
  707. conductor_python-1.2.0/src/conductor/client/codegen/models/environment_variable.py +162 -0
  708. conductor_python-1.2.0/src/conductor/client/codegen/models/event_handler.py +344 -0
  709. conductor_python-1.2.0/src/conductor/client/codegen/models/event_log.py +272 -0
  710. conductor_python-1.2.0/src/conductor/client/codegen/models/event_message.py +356 -0
  711. conductor_python-1.2.0/src/conductor/client/codegen/models/extended_conductor_application.py +266 -0
  712. conductor_python-1.2.0/src/conductor/client/codegen/models/extended_event_execution.py +434 -0
  713. conductor_python-1.2.0/src/conductor/client/codegen/models/extended_secret.py +136 -0
  714. conductor_python-1.2.0/src/conductor/client/codegen/models/extended_task_def.py +904 -0
  715. conductor_python-1.2.0/src/conductor/client/codegen/models/extended_workflow_def.py +872 -0
  716. conductor_python-1.2.0/src/conductor/client/codegen/models/extension_range.py +422 -0
  717. conductor_python-1.2.0/src/conductor/client/codegen/models/extension_range_options.py +584 -0
  718. conductor_python-1.2.0/src/conductor/client/codegen/models/extension_range_options_or_builder.py +480 -0
  719. conductor_python-1.2.0/src/conductor/client/codegen/models/extension_range_or_builder.py +344 -0
  720. conductor_python-1.2.0/src/conductor/client/codegen/models/external_storage_location.py +124 -0
  721. conductor_python-1.2.0/src/conductor/client/codegen/models/feature_set.py +536 -0
  722. conductor_python-1.2.0/src/conductor/client/codegen/models/feature_set_or_builder.py +432 -0
  723. conductor_python-1.2.0/src/conductor/client/codegen/models/field_descriptor.py +784 -0
  724. conductor_python-1.2.0/src/conductor/client/codegen/models/field_descriptor_proto.py +772 -0
  725. conductor_python-1.2.0/src/conductor/client/codegen/models/field_descriptor_proto_or_builder.py +694 -0
  726. conductor_python-1.2.0/src/conductor/client/codegen/models/field_options.py +863 -0
  727. conductor_python-1.2.0/src/conductor/client/codegen/models/field_options_or_builder.py +759 -0
  728. conductor_python-1.2.0/src/conductor/client/codegen/models/file_descriptor.py +486 -0
  729. conductor_python-1.2.0/src/conductor/client/codegen/models/file_descriptor_proto.py +1078 -0
  730. conductor_python-1.2.0/src/conductor/client/codegen/models/file_options.py +1260 -0
  731. conductor_python-1.2.0/src/conductor/client/codegen/models/file_options_or_builder.py +1156 -0
  732. conductor_python-1.2.0/src/conductor/client/codegen/models/generate_token_request.py +136 -0
  733. conductor_python-1.2.0/src/conductor/client/codegen/models/granted_access.py +169 -0
  734. conductor_python-1.2.0/src/conductor/client/codegen/models/granted_access_response.py +110 -0
  735. conductor_python-1.2.0/src/conductor/client/codegen/models/group.py +195 -0
  736. conductor_python-1.2.0/src/conductor/client/codegen/models/handled_event_response.py +214 -0
  737. conductor_python-1.2.0/src/conductor/client/codegen/models/incoming_bpmn_file.py +138 -0
  738. conductor_python-1.2.0/src/conductor/client/codegen/models/integration.py +454 -0
  739. conductor_python-1.2.0/src/conductor/client/codegen/models/integration_api.py +370 -0
  740. conductor_python-1.2.0/src/conductor/client/codegen/models/integration_api_update.py +162 -0
  741. conductor_python-1.2.0/src/conductor/client/codegen/models/integration_def.py +324 -0
  742. conductor_python-1.2.0/src/conductor/client/codegen/models/integration_def_form_field.py +304 -0
  743. conductor_python-1.2.0/src/conductor/client/codegen/models/integration_update.py +220 -0
  744. conductor_python-1.2.0/src/conductor/client/codegen/models/json_node.py +84 -0
  745. conductor_python-1.2.0/src/conductor/client/codegen/models/location.py +578 -0
  746. conductor_python-1.2.0/src/conductor/client/codegen/models/location_or_builder.py +500 -0
  747. conductor_python-1.2.0/src/conductor/client/codegen/models/message.py +292 -0
  748. conductor_python-1.2.0/src/conductor/client/codegen/models/message_lite.py +188 -0
  749. conductor_python-1.2.0/src/conductor/client/codegen/models/message_options.py +604 -0
  750. conductor_python-1.2.0/src/conductor/client/codegen/models/message_options_or_builder.py +500 -0
  751. conductor_python-1.2.0/src/conductor/client/codegen/models/message_template.py +370 -0
  752. conductor_python-1.2.0/src/conductor/client/codegen/models/method_descriptor.py +370 -0
  753. conductor_python-1.2.0/src/conductor/client/codegen/models/method_descriptor_proto.py +578 -0
  754. conductor_python-1.2.0/src/conductor/client/codegen/models/method_descriptor_proto_or_builder.py +500 -0
  755. conductor_python-1.2.0/src/conductor/client/codegen/models/method_options.py +532 -0
  756. conductor_python-1.2.0/src/conductor/client/codegen/models/method_options_or_builder.py +428 -0
  757. conductor_python-1.2.0/src/conductor/client/codegen/models/metrics_token.py +110 -0
  758. conductor_python-1.2.0/src/conductor/client/codegen/models/name_part.py +396 -0
  759. conductor_python-1.2.0/src/conductor/client/codegen/models/name_part_or_builder.py +318 -0
  760. conductor_python-1.2.0/src/conductor/client/codegen/models/oneof_descriptor.py +318 -0
  761. conductor_python-1.2.0/src/conductor/client/codegen/models/oneof_descriptor_proto.py +422 -0
  762. conductor_python-1.2.0/src/conductor/client/codegen/models/oneof_descriptor_proto_or_builder.py +344 -0
  763. conductor_python-1.2.0/src/conductor/client/codegen/models/oneof_options.py +474 -0
  764. conductor_python-1.2.0/src/conductor/client/codegen/models/oneof_options_or_builder.py +370 -0
  765. conductor_python-1.2.0/src/conductor/client/codegen/models/option.py +136 -0
  766. conductor_python-1.2.0/src/conductor/client/codegen/models/parser.py +84 -0
  767. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_any.py +84 -0
  768. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_declaration.py +84 -0
  769. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_descriptor_proto.py +84 -0
  770. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_edition_default.py +84 -0
  771. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_enum_descriptor_proto.py +84 -0
  772. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_enum_options.py +84 -0
  773. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_enum_reserved_range.py +84 -0
  774. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_enum_value_descriptor_proto.py +84 -0
  775. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_enum_value_options.py +84 -0
  776. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_extension_range.py +84 -0
  777. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_extension_range_options.py +84 -0
  778. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_feature_set.py +84 -0
  779. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_field_descriptor_proto.py +84 -0
  780. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_field_options.py +84 -0
  781. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_file_descriptor_proto.py +84 -0
  782. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_file_options.py +84 -0
  783. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_location.py +84 -0
  784. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_message.py +84 -0
  785. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_message_lite.py +84 -0
  786. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_message_options.py +84 -0
  787. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_method_descriptor_proto.py +84 -0
  788. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_method_options.py +84 -0
  789. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_name_part.py +84 -0
  790. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_oneof_descriptor_proto.py +84 -0
  791. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_oneof_options.py +84 -0
  792. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_reserved_range.py +84 -0
  793. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_service_descriptor_proto.py +84 -0
  794. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_service_options.py +84 -0
  795. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_source_code_info.py +84 -0
  796. conductor_python-1.2.0/src/conductor/client/codegen/models/parser_uninterpreted_option.py +84 -0
  797. conductor_python-1.2.0/src/conductor/client/codegen/models/permission.py +110 -0
  798. conductor_python-1.2.0/src/conductor/client/codegen/models/poll_data.py +188 -0
  799. conductor_python-1.2.0/src/conductor/client/codegen/models/prompt_template.py +350 -0
  800. conductor_python-1.2.0/src/conductor/client/codegen/models/prompt_template_test_request.py +266 -0
  801. conductor_python-1.2.0/src/conductor/client/codegen/models/proto_registry_entry.py +49 -0
  802. conductor_python-1.2.0/src/conductor/client/codegen/models/rate_limit.py +194 -0
  803. conductor_python-1.2.0/src/conductor/client/codegen/models/rate_limit_config.py +136 -0
  804. conductor_python-1.2.0/src/conductor/client/codegen/models/request_param.py +98 -0
  805. conductor_python-1.2.0/src/conductor/client/codegen/models/rerun_workflow_request.py +214 -0
  806. conductor_python-1.2.0/src/conductor/client/codegen/models/reserved_range.py +370 -0
  807. conductor_python-1.2.0/src/conductor/client/codegen/models/reserved_range_or_builder.py +292 -0
  808. conductor_python-1.2.0/src/conductor/client/codegen/models/response.py +73 -0
  809. conductor_python-1.2.0/src/conductor/client/codegen/models/role.py +136 -0
  810. conductor_python-1.2.0/src/conductor/client/codegen/models/save_schedule_request.py +371 -0
  811. conductor_python-1.2.0/src/conductor/client/codegen/models/schema_def.py +353 -0
  812. conductor_python-1.2.0/src/conductor/client/codegen/models/scrollable_search_result_workflow_summary.py +162 -0
  813. conductor_python-1.2.0/src/conductor/client/codegen/models/search_result_handled_event_response.py +136 -0
  814. conductor_python-1.2.0/src/conductor/client/codegen/models/search_result_task.py +141 -0
  815. conductor_python-1.2.0/src/conductor/client/codegen/models/search_result_task_summary.py +136 -0
  816. conductor_python-1.2.0/src/conductor/client/codegen/models/search_result_workflow.py +138 -0
  817. conductor_python-1.2.0/src/conductor/client/codegen/models/search_result_workflow_schedule_execution_model.py +136 -0
  818. conductor_python-1.2.0/src/conductor/client/codegen/models/search_result_workflow_summary.py +135 -0
  819. conductor_python-1.2.0/src/conductor/client/codegen/models/service_descriptor.py +266 -0
  820. conductor_python-1.2.0/src/conductor/client/codegen/models/service_descriptor_proto.py +500 -0
  821. conductor_python-1.2.0/src/conductor/client/codegen/models/service_descriptor_proto_or_builder.py +422 -0
  822. conductor_python-1.2.0/src/conductor/client/codegen/models/service_method.py +91 -0
  823. conductor_python-1.2.0/src/conductor/client/codegen/models/service_options.py +500 -0
  824. conductor_python-1.2.0/src/conductor/client/codegen/models/service_options_or_builder.py +396 -0
  825. conductor_python-1.2.0/src/conductor/client/codegen/models/service_registry.py +159 -0
  826. conductor_python-1.2.0/src/conductor/client/codegen/models/signal_response.py +575 -0
  827. conductor_python-1.2.0/src/conductor/client/codegen/models/skip_task_request.py +136 -0
  828. conductor_python-1.2.0/src/conductor/client/codegen/models/source_code_info.py +396 -0
  829. conductor_python-1.2.0/src/conductor/client/codegen/models/source_code_info_or_builder.py +318 -0
  830. conductor_python-1.2.0/src/conductor/client/codegen/models/start_workflow.py +223 -0
  831. conductor_python-1.2.0/src/conductor/client/codegen/models/start_workflow_request.py +377 -0
  832. conductor_python-1.2.0/src/conductor/client/codegen/models/state_change_event.py +138 -0
  833. conductor_python-1.2.0/src/conductor/client/codegen/models/sub_workflow_params.py +272 -0
  834. conductor_python-1.2.0/src/conductor/client/codegen/models/subject_ref.py +143 -0
  835. conductor_python-1.2.0/src/conductor/client/codegen/models/tag.py +162 -0
  836. conductor_python-1.2.0/src/conductor/client/codegen/models/tag_object.py +188 -0
  837. conductor_python-1.2.0/src/conductor/client/codegen/models/tag_string.py +180 -0
  838. conductor_python-1.2.0/src/conductor/client/codegen/models/target_ref.py +148 -0
  839. conductor_python-1.2.0/src/conductor/client/codegen/models/task.py +1208 -0
  840. conductor_python-1.2.0/src/conductor/client/codegen/models/task_def.py +852 -0
  841. conductor_python-1.2.0/src/conductor/client/codegen/models/task_details.py +214 -0
  842. conductor_python-1.2.0/src/conductor/client/codegen/models/task_exec_log.py +162 -0
  843. conductor_python-1.2.0/src/conductor/client/codegen/models/task_list_search_result_summary.py +162 -0
  844. conductor_python-1.2.0/src/conductor/client/codegen/models/task_mock.py +194 -0
  845. conductor_python-1.2.0/src/conductor/client/codegen/models/task_result.py +376 -0
  846. conductor_python-1.2.0/src/conductor/client/codegen/models/task_summary.py +610 -0
  847. conductor_python-1.2.0/src/conductor/client/codegen/models/terminate_workflow.py +136 -0
  848. conductor_python-1.2.0/src/conductor/client/codegen/models/token.py +21 -0
  849. conductor_python-1.2.0/src/conductor/client/codegen/models/uninterpreted_option.py +604 -0
  850. conductor_python-1.2.0/src/conductor/client/codegen/models/uninterpreted_option_or_builder.py +526 -0
  851. conductor_python-1.2.0/src/conductor/client/codegen/models/unknown_field_set.py +214 -0
  852. conductor_python-1.2.0/src/conductor/client/codegen/models/update_workflow_variables.py +162 -0
  853. conductor_python-1.2.0/src/conductor/client/codegen/models/upgrade_workflow_request.py +189 -0
  854. conductor_python-1.2.0/src/conductor/client/codegen/models/upsert_group_request.py +173 -0
  855. conductor_python-1.2.0/src/conductor/client/codegen/models/upsert_user_request.py +166 -0
  856. conductor_python-1.2.0/src/conductor/client/codegen/models/webhook_config.py +506 -0
  857. conductor_python-1.2.0/src/conductor/client/codegen/models/webhook_execution_history.py +214 -0
  858. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow.py +948 -0
  859. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_def.py +820 -0
  860. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_run.py +402 -0
  861. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_schedule.py +474 -0
  862. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_schedule_execution_model.py +428 -0
  863. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_schedule_model.py +526 -0
  864. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_state_update.py +162 -0
  865. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_status.py +220 -0
  866. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_summary.py +688 -0
  867. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_tag.py +99 -0
  868. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_task.py +974 -0
  869. conductor_python-1.2.0/src/conductor/client/codegen/models/workflow_test_request.py +429 -0
  870. conductor_python-1.2.0/src/conductor/client/configuration/configuration.py +195 -0
  871. conductor_python-1.2.0/src/conductor/client/event/event_client.py +30 -0
  872. conductor_python-1.2.0/src/conductor/client/event/queue/kafka_queue_configuration.py +36 -0
  873. conductor_python-1.2.0/src/conductor/client/event/queue/queue_configuration.py +24 -0
  874. conductor_python-1.2.0/src/conductor/client/exceptions/api_exception_handler.py +62 -0
  875. conductor_python-1.2.0/src/conductor/client/helpers/__init__.py +0 -0
  876. conductor_python-1.2.0/src/conductor/client/helpers/helper.py +192 -0
  877. conductor_python-1.2.0/src/conductor/client/http/__init__.py +0 -0
  878. conductor_python-1.2.0/src/conductor/client/http/api/__init__.py +75 -0
  879. conductor_python-1.2.0/src/conductor/client/http/api/admin_resource_api.py +6 -0
  880. conductor_python-1.2.0/src/conductor/client/http/api/application_resource_api.py +6 -0
  881. conductor_python-1.2.0/src/conductor/client/http/api/authorization_resource_api.py +6 -0
  882. conductor_python-1.2.0/src/conductor/client/http/api/environment_resource_api.py +6 -0
  883. conductor_python-1.2.0/src/conductor/client/http/api/event_execution_resource_api.py +6 -0
  884. conductor_python-1.2.0/src/conductor/client/http/api/event_message_resource_api.py +6 -0
  885. conductor_python-1.2.0/src/conductor/client/http/api/event_resource_api.py +6 -0
  886. conductor_python-1.2.0/src/conductor/client/http/api/group_resource_api.py +6 -0
  887. conductor_python-1.2.0/src/conductor/client/http/api/incoming_webhook_resource_api.py +6 -0
  888. conductor_python-1.2.0/src/conductor/client/http/api/integration_resource_api.py +6 -0
  889. conductor_python-1.2.0/src/conductor/client/http/api/limits_resource_api.py +6 -0
  890. conductor_python-1.2.0/src/conductor/client/http/api/metadata_resource_api.py +6 -0
  891. conductor_python-1.2.0/src/conductor/client/http/api/metrics_resource_api.py +6 -0
  892. conductor_python-1.2.0/src/conductor/client/http/api/metrics_token_resource_api.py +6 -0
  893. conductor_python-1.2.0/src/conductor/client/http/api/prompt_resource_api.py +6 -0
  894. conductor_python-1.2.0/src/conductor/client/http/api/queue_admin_resource_api.py +6 -0
  895. conductor_python-1.2.0/src/conductor/client/http/api/scheduler_bulk_resource_api.py +6 -0
  896. conductor_python-1.2.0/src/conductor/client/http/api/scheduler_resource_api.py +6 -0
  897. conductor_python-1.2.0/src/conductor/client/http/api/schema_resource_api.py +6 -0
  898. conductor_python-1.2.0/src/conductor/client/http/api/secret_resource_api.py +6 -0
  899. conductor_python-1.2.0/src/conductor/client/http/api/service_registry_resource_api.py +6 -0
  900. conductor_python-1.2.0/src/conductor/client/http/api/tags_api.py +5 -0
  901. conductor_python-1.2.0/src/conductor/client/http/api/task_resource_api.py +6 -0
  902. conductor_python-1.2.0/src/conductor/client/http/api/token_resource_api.py +6 -0
  903. conductor_python-1.2.0/src/conductor/client/http/api/user_resource_api.py +6 -0
  904. conductor_python-1.2.0/src/conductor/client/http/api/version_resource_api.py +6 -0
  905. conductor_python-1.2.0/src/conductor/client/http/api/webhooks_config_resource_api.py +6 -0
  906. conductor_python-1.2.0/src/conductor/client/http/api/workflow_bulk_resource_api.py +6 -0
  907. conductor_python-1.2.0/src/conductor/client/http/api/workflow_resource_api.py +6 -0
  908. conductor_python-1.2.0/src/conductor/client/http/api_client.py +7 -0
  909. conductor_python-1.2.0/src/conductor/client/http/models/__init__.py +406 -0
  910. conductor_python-1.2.0/src/conductor/client/http/models/action.py +5 -0
  911. conductor_python-1.2.0/src/conductor/client/http/models/any.py +5 -0
  912. conductor_python-1.2.0/src/conductor/client/http/models/authorization_request.py +6 -0
  913. conductor_python-1.2.0/src/conductor/client/http/models/bulk_response.py +6 -0
  914. conductor_python-1.2.0/src/conductor/client/http/models/byte_string.py +6 -0
  915. conductor_python-1.2.0/src/conductor/client/http/models/cache_config.py +6 -0
  916. conductor_python-1.2.0/src/conductor/client/http/models/circuit_breaker_transition_response.py +6 -0
  917. conductor_python-1.2.0/src/conductor/client/http/models/conductor_application.py +6 -0
  918. conductor_python-1.2.0/src/conductor/client/http/models/conductor_user.py +6 -0
  919. conductor_python-1.2.0/src/conductor/client/http/models/connectivity_test_input.py +6 -0
  920. conductor_python-1.2.0/src/conductor/client/http/models/connectivity_test_result.py +6 -0
  921. conductor_python-1.2.0/src/conductor/client/http/models/correlation_ids_search_request.py +6 -0
  922. conductor_python-1.2.0/src/conductor/client/http/models/create_or_update_application_request.py +6 -0
  923. conductor_python-1.2.0/src/conductor/client/http/models/declaration.py +6 -0
  924. conductor_python-1.2.0/src/conductor/client/http/models/declaration_or_builder.py +6 -0
  925. conductor_python-1.2.0/src/conductor/client/http/models/descriptor.py +6 -0
  926. conductor_python-1.2.0/src/conductor/client/http/models/descriptor_proto.py +6 -0
  927. conductor_python-1.2.0/src/conductor/client/http/models/descriptor_proto_or_builder.py +6 -0
  928. conductor_python-1.2.0/src/conductor/client/http/models/edition_default.py +6 -0
  929. conductor_python-1.2.0/src/conductor/client/http/models/edition_default_or_builder.py +6 -0
  930. conductor_python-1.2.0/src/conductor/client/http/models/enum_descriptor.py +6 -0
  931. conductor_python-1.2.0/src/conductor/client/http/models/enum_descriptor_proto.py +6 -0
  932. conductor_python-1.2.0/src/conductor/client/http/models/enum_descriptor_proto_or_builder.py +6 -0
  933. conductor_python-1.2.0/src/conductor/client/http/models/enum_options.py +6 -0
  934. conductor_python-1.2.0/src/conductor/client/http/models/enum_options_or_builder.py +6 -0
  935. conductor_python-1.2.0/src/conductor/client/http/models/enum_reserved_range.py +6 -0
  936. conductor_python-1.2.0/src/conductor/client/http/models/enum_reserved_range_or_builder.py +6 -0
  937. conductor_python-1.2.0/src/conductor/client/http/models/enum_value_descriptor.py +6 -0
  938. conductor_python-1.2.0/src/conductor/client/http/models/enum_value_descriptor_proto.py +6 -0
  939. conductor_python-1.2.0/src/conductor/client/http/models/enum_value_descriptor_proto_or_builder.py +6 -0
  940. conductor_python-1.2.0/src/conductor/client/http/models/enum_value_options.py +6 -0
  941. conductor_python-1.2.0/src/conductor/client/http/models/enum_value_options_or_builder.py +6 -0
  942. conductor_python-1.2.0/src/conductor/client/http/models/environment_variable.py +6 -0
  943. conductor_python-1.2.0/src/conductor/client/http/models/event_handler.py +6 -0
  944. conductor_python-1.2.0/src/conductor/client/http/models/event_log.py +5 -0
  945. conductor_python-1.2.0/src/conductor/client/http/models/event_message.py +6 -0
  946. conductor_python-1.2.0/src/conductor/client/http/models/extended_conductor_application.py +6 -0
  947. conductor_python-1.2.0/src/conductor/client/http/models/extended_event_execution.py +6 -0
  948. conductor_python-1.2.0/src/conductor/client/http/models/extended_secret.py +6 -0
  949. conductor_python-1.2.0/src/conductor/client/http/models/extended_task_def.py +6 -0
  950. conductor_python-1.2.0/src/conductor/client/http/models/extended_workflow_def.py +6 -0
  951. conductor_python-1.2.0/src/conductor/client/http/models/extension_range.py +6 -0
  952. conductor_python-1.2.0/src/conductor/client/http/models/extension_range_options.py +6 -0
  953. conductor_python-1.2.0/src/conductor/client/http/models/extension_range_options_or_builder.py +6 -0
  954. conductor_python-1.2.0/src/conductor/client/http/models/extension_range_or_builder.py +6 -0
  955. conductor_python-1.2.0/src/conductor/client/http/models/external_storage_location.py +6 -0
  956. conductor_python-1.2.0/src/conductor/client/http/models/feature_set.py +6 -0
  957. conductor_python-1.2.0/src/conductor/client/http/models/feature_set_or_builder.py +6 -0
  958. conductor_python-1.2.0/src/conductor/client/http/models/field_descriptor.py +6 -0
  959. conductor_python-1.2.0/src/conductor/client/http/models/field_descriptor_proto.py +6 -0
  960. conductor_python-1.2.0/src/conductor/client/http/models/field_descriptor_proto_or_builder.py +6 -0
  961. conductor_python-1.2.0/src/conductor/client/http/models/field_options.py +6 -0
  962. conductor_python-1.2.0/src/conductor/client/http/models/field_options_or_builder.py +6 -0
  963. conductor_python-1.2.0/src/conductor/client/http/models/file_descriptor.py +6 -0
  964. conductor_python-1.2.0/src/conductor/client/http/models/file_descriptor_proto.py +6 -0
  965. conductor_python-1.2.0/src/conductor/client/http/models/file_options.py +6 -0
  966. conductor_python-1.2.0/src/conductor/client/http/models/file_options_or_builder.py +6 -0
  967. conductor_python-1.2.0/src/conductor/client/http/models/generate_token_request.py +6 -0
  968. conductor_python-1.2.0/src/conductor/client/http/models/granted_access.py +6 -0
  969. conductor_python-1.2.0/src/conductor/client/http/models/granted_access_response.py +6 -0
  970. conductor_python-1.2.0/src/conductor/client/http/models/group.py +5 -0
  971. conductor_python-1.2.0/src/conductor/client/http/models/handled_event_response.py +6 -0
  972. conductor_python-1.2.0/src/conductor/client/http/models/health.py +3 -0
  973. conductor_python-1.2.0/src/conductor/client/http/models/health_check_status.py +4 -0
  974. conductor_python-1.2.0/src/conductor/client/http/models/incoming_bpmn_file.py +6 -0
  975. conductor_python-1.2.0/src/conductor/client/http/models/integration.py +6 -0
  976. conductor_python-1.2.0/src/conductor/client/http/models/integration_api.py +6 -0
  977. conductor_python-1.2.0/src/conductor/client/http/models/integration_api_update.py +6 -0
  978. conductor_python-1.2.0/src/conductor/client/http/models/integration_def.py +6 -0
  979. conductor_python-1.2.0/src/conductor/client/http/models/integration_def_api.py +4 -0
  980. conductor_python-1.2.0/src/conductor/client/http/models/integration_def_form_field.py +6 -0
  981. conductor_python-1.2.0/src/conductor/client/http/models/integration_update.py +6 -0
  982. conductor_python-1.2.0/src/conductor/client/http/models/json_node.py +5 -0
  983. conductor_python-1.2.0/src/conductor/client/http/models/location.py +5 -0
  984. conductor_python-1.2.0/src/conductor/client/http/models/location_or_builder.py +6 -0
  985. conductor_python-1.2.0/src/conductor/client/http/models/message.py +5 -0
  986. conductor_python-1.2.0/src/conductor/client/http/models/message_lite.py +6 -0
  987. conductor_python-1.2.0/src/conductor/client/http/models/message_options.py +6 -0
  988. conductor_python-1.2.0/src/conductor/client/http/models/message_options_or_builder.py +6 -0
  989. conductor_python-1.2.0/src/conductor/client/http/models/message_template.py +6 -0
  990. conductor_python-1.2.0/src/conductor/client/http/models/method_descriptor.py +6 -0
  991. conductor_python-1.2.0/src/conductor/client/http/models/method_descriptor_proto.py +6 -0
  992. conductor_python-1.2.0/src/conductor/client/http/models/method_descriptor_proto_or_builder.py +6 -0
  993. conductor_python-1.2.0/src/conductor/client/http/models/method_options.py +6 -0
  994. conductor_python-1.2.0/src/conductor/client/http/models/method_options_or_builder.py +6 -0
  995. conductor_python-1.2.0/src/conductor/client/http/models/metrics_token.py +6 -0
  996. conductor_python-1.2.0/src/conductor/client/http/models/name_part.py +5 -0
  997. conductor_python-1.2.0/src/conductor/client/http/models/name_part_or_builder.py +6 -0
  998. conductor_python-1.2.0/src/conductor/client/http/models/oneof_descriptor.py +6 -0
  999. conductor_python-1.2.0/src/conductor/client/http/models/oneof_descriptor_proto.py +6 -0
  1000. conductor_python-1.2.0/src/conductor/client/http/models/oneof_descriptor_proto_or_builder.py +6 -0
  1001. conductor_python-1.2.0/src/conductor/client/http/models/oneof_options.py +6 -0
  1002. conductor_python-1.2.0/src/conductor/client/http/models/oneof_options_or_builder.py +6 -0
  1003. conductor_python-1.2.0/src/conductor/client/http/models/option.py +5 -0
  1004. conductor_python-1.2.0/src/conductor/client/http/models/parser.py +5 -0
  1005. conductor_python-1.2.0/src/conductor/client/http/models/parser_any.py +6 -0
  1006. conductor_python-1.2.0/src/conductor/client/http/models/parser_declaration.py +6 -0
  1007. conductor_python-1.2.0/src/conductor/client/http/models/parser_descriptor_proto.py +6 -0
  1008. conductor_python-1.2.0/src/conductor/client/http/models/parser_edition_default.py +6 -0
  1009. conductor_python-1.2.0/src/conductor/client/http/models/parser_enum_descriptor_proto.py +6 -0
  1010. conductor_python-1.2.0/src/conductor/client/http/models/parser_enum_options.py +6 -0
  1011. conductor_python-1.2.0/src/conductor/client/http/models/parser_enum_reserved_range.py +6 -0
  1012. conductor_python-1.2.0/src/conductor/client/http/models/parser_enum_value_descriptor_proto.py +6 -0
  1013. conductor_python-1.2.0/src/conductor/client/http/models/parser_enum_value_options.py +6 -0
  1014. conductor_python-1.2.0/src/conductor/client/http/models/parser_extension_range.py +6 -0
  1015. conductor_python-1.2.0/src/conductor/client/http/models/parser_extension_range_options.py +6 -0
  1016. conductor_python-1.2.0/src/conductor/client/http/models/parser_feature_set.py +6 -0
  1017. conductor_python-1.2.0/src/conductor/client/http/models/parser_field_descriptor_proto.py +6 -0
  1018. conductor_python-1.2.0/src/conductor/client/http/models/parser_field_options.py +6 -0
  1019. conductor_python-1.2.0/src/conductor/client/http/models/parser_file_descriptor_proto.py +6 -0
  1020. conductor_python-1.2.0/src/conductor/client/http/models/parser_file_options.py +6 -0
  1021. conductor_python-1.2.0/src/conductor/client/http/models/parser_location.py +6 -0
  1022. conductor_python-1.2.0/src/conductor/client/http/models/parser_message.py +6 -0
  1023. conductor_python-1.2.0/src/conductor/client/http/models/parser_message_lite.py +6 -0
  1024. conductor_python-1.2.0/src/conductor/client/http/models/parser_message_options.py +6 -0
  1025. conductor_python-1.2.0/src/conductor/client/http/models/parser_method_descriptor_proto.py +6 -0
  1026. conductor_python-1.2.0/src/conductor/client/http/models/parser_method_options.py +6 -0
  1027. conductor_python-1.2.0/src/conductor/client/http/models/parser_name_part.py +6 -0
  1028. conductor_python-1.2.0/src/conductor/client/http/models/parser_oneof_descriptor_proto.py +6 -0
  1029. conductor_python-1.2.0/src/conductor/client/http/models/parser_oneof_options.py +6 -0
  1030. conductor_python-1.2.0/src/conductor/client/http/models/parser_reserved_range.py +6 -0
  1031. conductor_python-1.2.0/src/conductor/client/http/models/parser_service_descriptor_proto.py +6 -0
  1032. conductor_python-1.2.0/src/conductor/client/http/models/parser_service_options.py +6 -0
  1033. conductor_python-1.2.0/src/conductor/client/http/models/parser_source_code_info.py +6 -0
  1034. conductor_python-1.2.0/src/conductor/client/http/models/parser_uninterpreted_option.py +6 -0
  1035. conductor_python-1.2.0/src/conductor/client/http/models/permission.py +6 -0
  1036. conductor_python-1.2.0/src/conductor/client/http/models/poll_data.py +5 -0
  1037. conductor_python-1.2.0/src/conductor/client/http/models/prompt_template.py +6 -0
  1038. conductor_python-1.2.0/src/conductor/client/http/models/prompt_template_test_request.py +7 -0
  1039. conductor_python-1.2.0/src/conductor/client/http/models/proto_registry_entry.py +6 -0
  1040. conductor_python-1.2.0/src/conductor/client/http/models/rate_limit.py +6 -0
  1041. conductor_python-1.2.0/src/conductor/client/http/models/rate_limit_config.py +6 -0
  1042. conductor_python-1.2.0/src/conductor/client/http/models/request_param.py +6 -0
  1043. conductor_python-1.2.0/src/conductor/client/http/models/rerun_workflow_request.py +6 -0
  1044. conductor_python-1.2.0/src/conductor/client/http/models/reserved_range.py +6 -0
  1045. conductor_python-1.2.0/src/conductor/client/http/models/reserved_range_or_builder.py +6 -0
  1046. conductor_python-1.2.0/src/conductor/client/http/models/response.py +5 -0
  1047. conductor_python-1.2.0/src/conductor/client/http/models/role.py +5 -0
  1048. conductor_python-1.2.0/src/conductor/client/http/models/save_schedule_request.py +6 -0
  1049. conductor_python-1.2.0/src/conductor/client/http/models/schema_def.py +6 -0
  1050. conductor_python-1.2.0/src/conductor/client/http/models/scrollable_search_result_workflow_summary.py +6 -0
  1051. conductor_python-1.2.0/src/conductor/client/http/models/search_result_handled_event_response.py +6 -0
  1052. conductor_python-1.2.0/src/conductor/client/http/models/search_result_task.py +6 -0
  1053. conductor_python-1.2.0/src/conductor/client/http/models/search_result_task_summary.py +7 -0
  1054. conductor_python-1.2.0/src/conductor/client/http/models/search_result_workflow.py +7 -0
  1055. conductor_python-1.2.0/src/conductor/client/http/models/search_result_workflow_schedule_execution_model.py +8 -0
  1056. conductor_python-1.2.0/src/conductor/client/http/models/search_result_workflow_summary.py +6 -0
  1057. conductor_python-1.2.0/src/conductor/client/http/models/service_descriptor.py +6 -0
  1058. conductor_python-1.2.0/src/conductor/client/http/models/service_descriptor_proto.py +6 -0
  1059. conductor_python-1.2.0/src/conductor/client/http/models/service_descriptor_proto_or_builder.py +6 -0
  1060. conductor_python-1.2.0/src/conductor/client/http/models/service_method.py +6 -0
  1061. conductor_python-1.2.0/src/conductor/client/http/models/service_options.py +6 -0
  1062. conductor_python-1.2.0/src/conductor/client/http/models/service_options_or_builder.py +6 -0
  1063. conductor_python-1.2.0/src/conductor/client/http/models/service_registry.py +6 -0
  1064. conductor_python-1.2.0/src/conductor/client/http/models/signal_response.py +6 -0
  1065. conductor_python-1.2.0/src/conductor/client/http/models/skip_task_request.py +6 -0
  1066. conductor_python-1.2.0/src/conductor/client/http/models/source_code_info.py +6 -0
  1067. conductor_python-1.2.0/src/conductor/client/http/models/source_code_info_or_builder.py +6 -0
  1068. conductor_python-1.2.0/src/conductor/client/http/models/start_workflow.py +6 -0
  1069. conductor_python-1.2.0/src/conductor/client/http/models/start_workflow_request.py +8 -0
  1070. conductor_python-1.2.0/src/conductor/client/http/models/state_change_event.py +6 -0
  1071. conductor_python-1.2.0/src/conductor/client/http/models/sub_workflow_params.py +6 -0
  1072. conductor_python-1.2.0/src/conductor/client/http/models/subject_ref.py +6 -0
  1073. conductor_python-1.2.0/src/conductor/client/http/models/tag.py +5 -0
  1074. conductor_python-1.2.0/src/conductor/client/http/models/tag_object.py +7 -0
  1075. conductor_python-1.2.0/src/conductor/client/http/models/tag_string.py +7 -0
  1076. conductor_python-1.2.0/src/conductor/client/http/models/target_ref.py +6 -0
  1077. conductor_python-1.2.0/src/conductor/client/http/models/task.py +5 -0
  1078. conductor_python-1.2.0/src/conductor/client/http/models/task_def.py +5 -0
  1079. conductor_python-1.2.0/src/conductor/client/http/models/task_details.py +6 -0
  1080. conductor_python-1.2.0/src/conductor/client/http/models/task_exec_log.py +6 -0
  1081. conductor_python-1.2.0/src/conductor/client/http/models/task_list_search_result_summary.py +6 -0
  1082. conductor_python-1.2.0/src/conductor/client/http/models/task_mock.py +5 -0
  1083. conductor_python-1.2.0/src/conductor/client/http/models/task_result.py +6 -0
  1084. conductor_python-1.2.0/src/conductor/client/http/models/task_result_status.py +3 -0
  1085. conductor_python-1.2.0/src/conductor/client/http/models/task_summary.py +6 -0
  1086. conductor_python-1.2.0/src/conductor/client/http/models/terminate_workflow.py +6 -0
  1087. conductor_python-1.2.0/src/conductor/client/http/models/token.py +5 -0
  1088. conductor_python-1.2.0/src/conductor/client/http/models/uninterpreted_option.py +6 -0
  1089. conductor_python-1.2.0/src/conductor/client/http/models/uninterpreted_option_or_builder.py +6 -0
  1090. conductor_python-1.2.0/src/conductor/client/http/models/unknown_field_set.py +6 -0
  1091. conductor_python-1.2.0/src/conductor/client/http/models/update_workflow_variables.py +6 -0
  1092. conductor_python-1.2.0/src/conductor/client/http/models/upgrade_workflow_request.py +6 -0
  1093. conductor_python-1.2.0/src/conductor/client/http/models/upsert_group_request.py +6 -0
  1094. conductor_python-1.2.0/src/conductor/client/http/models/upsert_user_request.py +6 -0
  1095. conductor_python-1.2.0/src/conductor/client/http/models/webhook_config.py +6 -0
  1096. conductor_python-1.2.0/src/conductor/client/http/models/webhook_execution_history.py +6 -0
  1097. conductor_python-1.2.0/src/conductor/client/http/models/workflow.py +5 -0
  1098. conductor_python-1.2.0/src/conductor/client/http/models/workflow_def.py +6 -0
  1099. conductor_python-1.2.0/src/conductor/client/http/models/workflow_run.py +6 -0
  1100. conductor_python-1.2.0/src/conductor/client/http/models/workflow_schedule.py +6 -0
  1101. conductor_python-1.2.0/src/conductor/client/http/models/workflow_schedule_execution_model.py +6 -0
  1102. conductor_python-1.2.0/src/conductor/client/http/models/workflow_schedule_model.py +6 -0
  1103. conductor_python-1.2.0/src/conductor/client/http/models/workflow_state_update.py +6 -0
  1104. conductor_python-1.2.0/src/conductor/client/http/models/workflow_status.py +6 -0
  1105. conductor_python-1.2.0/src/conductor/client/http/models/workflow_summary.py +6 -0
  1106. conductor_python-1.2.0/src/conductor/client/http/models/workflow_tag.py +6 -0
  1107. conductor_python-1.2.0/src/conductor/client/http/models/workflow_task.py +6 -0
  1108. conductor_python-1.2.0/src/conductor/client/http/models/workflow_test_request.py +6 -0
  1109. conductor_python-1.2.0/src/conductor/client/integration_client.py +116 -0
  1110. conductor_python-1.2.0/src/conductor/client/metadata_client.py +70 -0
  1111. conductor_python-1.2.0/src/conductor/client/orkes/__init__.py +0 -0
  1112. conductor_python-1.2.0/src/conductor/client/orkes/api/__init__.py +0 -0
  1113. conductor_python-1.2.0/src/conductor/client/orkes/api/tags_api.py +934 -0
  1114. conductor_python-1.2.0/src/conductor/client/orkes/models/__init__.py +0 -0
  1115. conductor_python-1.2.0/src/conductor/client/orkes/models/access_key.py +69 -0
  1116. conductor_python-1.2.0/src/conductor/client/orkes/models/created_access_key.py +54 -0
  1117. conductor_python-1.2.0/src/conductor/client/orkes/models/granted_permission.py +62 -0
  1118. conductor_python-1.2.0/src/conductor/client/orkes/orkes_authorization_client.py +175 -0
  1119. conductor_python-1.2.0/src/conductor/client/orkes/orkes_base_client.py +40 -0
  1120. conductor_python-1.2.0/src/conductor/client/orkes/orkes_integration_client.py +195 -0
  1121. conductor_python-1.2.0/src/conductor/client/orkes/orkes_metadata_client.py +97 -0
  1122. conductor_python-1.2.0/src/conductor/client/orkes/orkes_prompt_client.py +56 -0
  1123. conductor_python-1.2.0/src/conductor/client/orkes/orkes_scheduler_client.py +91 -0
  1124. conductor_python-1.2.0/src/conductor/client/orkes/orkes_schema_client.py +26 -0
  1125. conductor_python-1.2.0/src/conductor/client/orkes/orkes_secret_client.py +38 -0
  1126. conductor_python-1.2.0/src/conductor/client/orkes/orkes_service_registry_client.py +70 -0
  1127. conductor_python-1.2.0/src/conductor/client/orkes/orkes_task_client.py +96 -0
  1128. conductor_python-1.2.0/src/conductor/client/orkes/orkes_workflow_client.py +221 -0
  1129. conductor_python-1.2.0/src/conductor/client/orkes_clients.py +57 -0
  1130. conductor_python-1.2.0/src/conductor/client/prompt_client.py +45 -0
  1131. conductor_python-1.2.0/src/conductor/client/scheduler_client.py +77 -0
  1132. conductor_python-1.2.0/src/conductor/client/schema_client.py +46 -0
  1133. conductor_python-1.2.0/src/conductor/client/secret_client.py +41 -0
  1134. conductor_python-1.2.0/src/conductor/client/service_registry_client.py +66 -0
  1135. conductor_python-1.2.0/src/conductor/client/task_client.py +73 -0
  1136. conductor_python-1.2.0/src/conductor/client/telemetry/__init__.py +0 -0
  1137. conductor_python-1.2.0/src/conductor/client/telemetry/metrics_collector.py +278 -0
  1138. conductor_python-1.2.0/src/conductor/client/telemetry/model/__init__.py +0 -0
  1139. conductor_python-1.2.0/src/conductor/client/worker/__init__.py +0 -0
  1140. conductor_python-1.2.0/src/conductor/client/worker/worker.py +167 -0
  1141. conductor_python-1.2.0/src/conductor/client/worker/worker_interface.py +127 -0
  1142. conductor_python-1.2.0/src/conductor/client/worker/worker_task.py +87 -0
  1143. conductor_python-1.2.0/src/conductor/client/workflow/__init__.py +0 -0
  1144. conductor_python-1.2.0/src/conductor/client/workflow/conductor_workflow.py +388 -0
  1145. conductor_python-1.2.0/src/conductor/client/workflow/executor/__init__.py +0 -0
  1146. conductor_python-1.2.0/src/conductor/client/workflow/executor/workflow_executor.py +288 -0
  1147. conductor_python-1.2.0/src/conductor/client/workflow/task/__init__.py +0 -0
  1148. conductor_python-1.2.0/src/conductor/client/workflow/task/do_while_task.py +59 -0
  1149. conductor_python-1.2.0/src/conductor/client/workflow/task/dynamic_fork_task.py +30 -0
  1150. conductor_python-1.2.0/src/conductor/client/workflow/task/dynamic_task.py +21 -0
  1151. conductor_python-1.2.0/src/conductor/client/workflow/task/event_task.py +31 -0
  1152. conductor_python-1.2.0/src/conductor/client/workflow/task/fork_task.py +46 -0
  1153. conductor_python-1.2.0/src/conductor/client/workflow/task/http_poll_task.py +77 -0
  1154. conductor_python-1.2.0/src/conductor/client/workflow/task/http_task.py +86 -0
  1155. conductor_python-1.2.0/src/conductor/client/workflow/task/human_task.py +49 -0
  1156. conductor_python-1.2.0/src/conductor/client/workflow/task/inline.py +20 -0
  1157. conductor_python-1.2.0/src/conductor/client/workflow/task/javascript_task.py +30 -0
  1158. conductor_python-1.2.0/src/conductor/client/workflow/task/join_task.py +26 -0
  1159. conductor_python-1.2.0/src/conductor/client/workflow/task/kafka_publish_input.py +79 -0
  1160. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/__init__.py +0 -0
  1161. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/llm_chat_complete.py +58 -0
  1162. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/llm_generate_embeddings.py +22 -0
  1163. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/llm_index_documents.py +67 -0
  1164. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/llm_index_text.py +46 -0
  1165. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/llm_query_embeddings.py +26 -0
  1166. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/llm_search_index.py +28 -0
  1167. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/llm_text_complete.py +52 -0
  1168. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/utils/__init__.py +0 -0
  1169. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/utils/embedding_model.py +32 -0
  1170. conductor_python-1.2.0/src/conductor/client/workflow/task/llm_tasks/utils/prompt.py +32 -0
  1171. conductor_python-1.2.0/src/conductor/client/workflow/task/simple_task.py +21 -0
  1172. conductor_python-1.2.0/src/conductor/client/workflow/task/start_workflow_task.py +24 -0
  1173. conductor_python-1.2.0/src/conductor/client/workflow/task/sub_workflow_task.py +52 -0
  1174. conductor_python-1.2.0/src/conductor/client/workflow/task/switch_task.py +62 -0
  1175. conductor_python-1.2.0/src/conductor/client/workflow/task/task.py +186 -0
  1176. conductor_python-1.2.0/src/conductor/client/workflow/task/task_type.py +36 -0
  1177. conductor_python-1.2.0/src/conductor/client/workflow/task/wait_for_webhook_task.py +45 -0
  1178. conductor_python-1.2.0/src/conductor/client/workflow/task/wait_task.py +46 -0
  1179. conductor_python-1.2.0/src/conductor/client/workflow_client.py +125 -0
  1180. conductor_python-1.2.0/src/conductor/shared/__init__.py +0 -0
  1181. conductor_python-1.2.0/src/conductor/shared/ai/__init__.py +0 -0
  1182. conductor_python-1.2.0/src/conductor/shared/ai/configuration/__init__.py +12 -0
  1183. conductor_python-1.2.0/src/conductor/shared/ai/configuration/azure_openai_config.py +14 -0
  1184. conductor_python-1.2.0/src/conductor/shared/ai/configuration/interfaces/__init__.py +4 -0
  1185. conductor_python-1.2.0/src/conductor/shared/ai/configuration/interfaces/integration_config.py +9 -0
  1186. conductor_python-1.2.0/src/conductor/shared/ai/configuration/openai_config.py +18 -0
  1187. conductor_python-1.2.0/src/conductor/shared/ai/configuration/pinecone_config.py +45 -0
  1188. conductor_python-1.2.0/src/conductor/shared/ai/configuration/weavite_config.py +15 -0
  1189. conductor_python-1.2.0/src/conductor/shared/ai/enums/__init__.py +7 -0
  1190. conductor_python-1.2.0/src/conductor/shared/ai/enums/llm_provider.py +8 -0
  1191. conductor_python-1.2.0/src/conductor/shared/ai/enums/vertor_db.py +6 -0
  1192. conductor_python-1.2.0/src/conductor/shared/automator/__init__.py +0 -0
  1193. conductor_python-1.2.0/src/conductor/shared/automator/utils.py +135 -0
  1194. conductor_python-1.2.0/src/conductor/shared/configuration/__init__.py +0 -0
  1195. conductor_python-1.2.0/src/conductor/shared/configuration/settings/__init__.py +0 -0
  1196. conductor_python-1.2.0/src/conductor/shared/configuration/settings/metrics_settings.py +39 -0
  1197. conductor_python-1.2.0/src/conductor/shared/event/__init__.py +0 -0
  1198. conductor_python-1.2.0/src/conductor/shared/event/configuration/__init__.py +14 -0
  1199. conductor_python-1.2.0/src/conductor/shared/event/configuration/kafka_queue.py +35 -0
  1200. conductor_python-1.2.0/src/conductor/shared/event/configuration/queue.py +25 -0
  1201. conductor_python-1.2.0/src/conductor/shared/event/configuration/queue_worker.py +6 -0
  1202. conductor_python-1.2.0/src/conductor/shared/http/__init__.py +0 -0
  1203. conductor_python-1.2.0/src/conductor/shared/http/enums/__init__.py +7 -0
  1204. conductor_python-1.2.0/src/conductor/shared/http/enums/idempotency_strategy.py +9 -0
  1205. conductor_python-1.2.0/src/conductor/shared/http/enums/subject_type.py +8 -0
  1206. conductor_python-1.2.0/src/conductor/shared/http/enums/target_type.py +12 -0
  1207. conductor_python-1.2.0/src/conductor/shared/http/enums/task_result_status.py +11 -0
  1208. conductor_python-1.2.0/src/conductor/shared/telemetry/__init__.py +0 -0
  1209. conductor_python-1.2.0/src/conductor/shared/telemetry/configuration/__init__.py +3 -0
  1210. conductor_python-1.2.0/src/conductor/shared/telemetry/configuration/metrics.py +57 -0
  1211. conductor_python-1.2.0/src/conductor/shared/telemetry/enums/__init__.py +6 -0
  1212. conductor_python-1.2.0/src/conductor/shared/telemetry/enums/metric_documentation.py +19 -0
  1213. conductor_python-1.2.0/src/conductor/shared/telemetry/enums/metric_label.py +11 -0
  1214. conductor_python-1.2.0/src/conductor/shared/telemetry/enums/metric_name.py +19 -0
  1215. conductor_python-1.2.0/src/conductor/shared/worker/__init__.py +0 -0
  1216. conductor_python-1.2.0/src/conductor/shared/workflow/__init__.py +0 -0
  1217. conductor_python-1.2.0/src/conductor/shared/workflow/enums/__init__.py +18 -0
  1218. conductor_python-1.2.0/src/conductor/shared/workflow/enums/assignment_completion_strategy.py +9 -0
  1219. conductor_python-1.2.0/src/conductor/shared/workflow/enums/evaluator_type.py +7 -0
  1220. conductor_python-1.2.0/src/conductor/shared/workflow/enums/http_method.py +10 -0
  1221. conductor_python-1.2.0/src/conductor/shared/workflow/enums/task_type.py +36 -0
  1222. conductor_python-1.2.0/src/conductor/shared/workflow/enums/timeout_policy.py +6 -0
  1223. conductor_python-1.2.0/src/conductor/shared/workflow/enums/trigger_type.py +13 -0
  1224. conductor_python-1.2.0/src/conductor/shared/workflow/enums/workflow_status.py +10 -0
  1225. conductor_python-1.2.0/src/conductor/shared/workflow/models/__init__.py +16 -0
  1226. conductor_python-1.2.0/src/conductor/shared/workflow/models/chat_message.py +9 -0
  1227. conductor_python-1.2.0/src/conductor/shared/workflow/models/embedding_model.py +9 -0
  1228. conductor_python-1.2.0/src/conductor/shared/workflow/models/http_input.py +23 -0
  1229. conductor_python-1.2.0/src/conductor/shared/workflow/models/http_poll_input.py +35 -0
  1230. conductor_python-1.2.0/src/conductor/shared/workflow/models/kafka_publish_input.py +20 -0
  1231. conductor_python-1.2.0/src/conductor/shared/workflow/models/prompt.py +11 -0
  1232. conductor_python-1.1.9/LICENSE +0 -201
  1233. conductor_python-1.1.9/PKG-INFO +0 -956
  1234. conductor_python-1.1.9/README.md +0 -929
  1235. conductor_python-1.1.9/setup.cfg +0 -41
  1236. conductor_python-1.1.9/setup.py +0 -10
  1237. conductor_python-1.1.9/src/conductor/client/ai/configuration.py +0 -13
  1238. conductor_python-1.1.9/src/conductor/client/ai/integrations.py +0 -85
  1239. conductor_python-1.1.9/src/conductor/client/ai/orchestrator.py +0 -102
  1240. conductor_python-1.1.9/src/conductor/client/authorization_client.py +0 -148
  1241. conductor_python-1.1.9/src/conductor/client/automator/task_handler.py +0 -236
  1242. conductor_python-1.1.9/src/conductor/client/automator/task_runner.py +0 -257
  1243. conductor_python-1.1.9/src/conductor/client/automator/utils.py +0 -126
  1244. conductor_python-1.1.9/src/conductor/client/configuration/configuration.py +0 -157
  1245. conductor_python-1.1.9/src/conductor/client/configuration/settings/metrics_settings.py +0 -37
  1246. conductor_python-1.1.9/src/conductor/client/event/event_client.py +0 -30
  1247. conductor_python-1.1.9/src/conductor/client/event/queue/kafka_queue_configuration.py +0 -36
  1248. conductor_python-1.1.9/src/conductor/client/event/queue/queue_configuration.py +0 -23
  1249. conductor_python-1.1.9/src/conductor/client/exceptions/api_exception_handler.py +0 -56
  1250. conductor_python-1.1.9/src/conductor/client/helpers/helper.py +0 -196
  1251. conductor_python-1.1.9/src/conductor/client/http/api/application_resource_api.py +0 -1390
  1252. conductor_python-1.1.9/src/conductor/client/http/api/authorization_resource_api.py +0 -316
  1253. conductor_python-1.1.9/src/conductor/client/http/api/event_resource_api.py +0 -878
  1254. conductor_python-1.1.9/src/conductor/client/http/api/group_resource_api.py +0 -788
  1255. conductor_python-1.1.9/src/conductor/client/http/api/integration_resource_api.py +0 -2235
  1256. conductor_python-1.1.9/src/conductor/client/http/api/metadata_resource_api.py +0 -1277
  1257. conductor_python-1.1.9/src/conductor/client/http/api/prompt_resource_api.py +0 -813
  1258. conductor_python-1.1.9/src/conductor/client/http/api/scheduler_resource_api.py +0 -1425
  1259. conductor_python-1.1.9/src/conductor/client/http/api/schema_resource_api.py +0 -485
  1260. conductor_python-1.1.9/src/conductor/client/http/api/secret_resource_api.py +0 -957
  1261. conductor_python-1.1.9/src/conductor/client/http/api/task_resource_api.py +0 -1732
  1262. conductor_python-1.1.9/src/conductor/client/http/api/token_resource_api.py +0 -203
  1263. conductor_python-1.1.9/src/conductor/client/http/api/user_resource_api.py +0 -495
  1264. conductor_python-1.1.9/src/conductor/client/http/api/workflow_bulk_resource_api.py +0 -519
  1265. conductor_python-1.1.9/src/conductor/client/http/api/workflow_resource_api.py +0 -3054
  1266. conductor_python-1.1.9/src/conductor/client/http/api_client.py +0 -723
  1267. conductor_python-1.1.9/src/conductor/client/http/models/__init__.py +0 -57
  1268. conductor_python-1.1.9/src/conductor/client/http/models/action.py +0 -210
  1269. conductor_python-1.1.9/src/conductor/client/http/models/authorization_request.py +0 -155
  1270. conductor_python-1.1.9/src/conductor/client/http/models/bulk_response.py +0 -125
  1271. conductor_python-1.1.9/src/conductor/client/http/models/conductor_application.py +0 -151
  1272. conductor_python-1.1.9/src/conductor/client/http/models/conductor_user.py +0 -282
  1273. conductor_python-1.1.9/src/conductor/client/http/models/correlation_ids_search_request.py +0 -121
  1274. conductor_python-1.1.9/src/conductor/client/http/models/create_or_update_application_request.py +0 -98
  1275. conductor_python-1.1.9/src/conductor/client/http/models/event_handler.py +0 -224
  1276. conductor_python-1.1.9/src/conductor/client/http/models/external_storage_location.py +0 -125
  1277. conductor_python-1.1.9/src/conductor/client/http/models/generate_token_request.py +0 -121
  1278. conductor_python-1.1.9/src/conductor/client/http/models/group.py +0 -151
  1279. conductor_python-1.1.9/src/conductor/client/http/models/health.py +0 -151
  1280. conductor_python-1.1.9/src/conductor/client/http/models/health_check_status.py +0 -151
  1281. conductor_python-1.1.9/src/conductor/client/http/models/integration.py +0 -393
  1282. conductor_python-1.1.9/src/conductor/client/http/models/integration_api.py +0 -330
  1283. conductor_python-1.1.9/src/conductor/client/http/models/integration_api_update.py +0 -151
  1284. conductor_python-1.1.9/src/conductor/client/http/models/integration_def.py +0 -310
  1285. conductor_python-1.1.9/src/conductor/client/http/models/integration_update.py +0 -209
  1286. conductor_python-1.1.9/src/conductor/client/http/models/permission.py +0 -99
  1287. conductor_python-1.1.9/src/conductor/client/http/models/poll_data.py +0 -177
  1288. conductor_python-1.1.9/src/conductor/client/http/models/prompt_template.py +0 -334
  1289. conductor_python-1.1.9/src/conductor/client/http/models/prompt_test_request.py +0 -256
  1290. conductor_python-1.1.9/src/conductor/client/http/models/rate_limit.py +0 -125
  1291. conductor_python-1.1.9/src/conductor/client/http/models/rerun_workflow_request.py +0 -204
  1292. conductor_python-1.1.9/src/conductor/client/http/models/response.py +0 -73
  1293. conductor_python-1.1.9/src/conductor/client/http/models/role.py +0 -125
  1294. conductor_python-1.1.9/src/conductor/client/http/models/save_schedule_request.py +0 -305
  1295. conductor_python-1.1.9/src/conductor/client/http/models/schema_def.py +0 -186
  1296. conductor_python-1.1.9/src/conductor/client/http/models/scrollable_search_result_workflow_summary.py +0 -125
  1297. conductor_python-1.1.9/src/conductor/client/http/models/search_result_task.py +0 -125
  1298. conductor_python-1.1.9/src/conductor/client/http/models/search_result_task_summary.py +0 -125
  1299. conductor_python-1.1.9/src/conductor/client/http/models/search_result_workflow.py +0 -125
  1300. conductor_python-1.1.9/src/conductor/client/http/models/search_result_workflow_schedule_execution_model.py +0 -125
  1301. conductor_python-1.1.9/src/conductor/client/http/models/search_result_workflow_summary.py +0 -125
  1302. conductor_python-1.1.9/src/conductor/client/http/models/skip_task_request.py +0 -125
  1303. conductor_python-1.1.9/src/conductor/client/http/models/start_workflow.py +0 -203
  1304. conductor_python-1.1.9/src/conductor/client/http/models/start_workflow_request.py +0 -342
  1305. conductor_python-1.1.9/src/conductor/client/http/models/state_change_event.py +0 -83
  1306. conductor_python-1.1.9/src/conductor/client/http/models/sub_workflow_params.py +0 -175
  1307. conductor_python-1.1.9/src/conductor/client/http/models/subject_ref.py +0 -139
  1308. conductor_python-1.1.9/src/conductor/client/http/models/tag_object.py +0 -159
  1309. conductor_python-1.1.9/src/conductor/client/http/models/tag_string.py +0 -159
  1310. conductor_python-1.1.9/src/conductor/client/http/models/target_ref.py +0 -139
  1311. conductor_python-1.1.9/src/conductor/client/http/models/task.py +0 -1169
  1312. conductor_python-1.1.9/src/conductor/client/http/models/task_def.py +0 -769
  1313. conductor_python-1.1.9/src/conductor/client/http/models/task_details.py +0 -177
  1314. conductor_python-1.1.9/src/conductor/client/http/models/task_exec_log.py +0 -151
  1315. conductor_python-1.1.9/src/conductor/client/http/models/task_result.py +0 -346
  1316. conductor_python-1.1.9/src/conductor/client/http/models/task_result_status.py +0 -11
  1317. conductor_python-1.1.9/src/conductor/client/http/models/task_summary.py +0 -578
  1318. conductor_python-1.1.9/src/conductor/client/http/models/token.py +0 -21
  1319. conductor_python-1.1.9/src/conductor/client/http/models/upsert_group_request.py +0 -132
  1320. conductor_python-1.1.9/src/conductor/client/http/models/upsert_user_request.py +0 -160
  1321. conductor_python-1.1.9/src/conductor/client/http/models/workflow.py +0 -850
  1322. conductor_python-1.1.9/src/conductor/client/http/models/workflow_def.py +0 -685
  1323. conductor_python-1.1.9/src/conductor/client/http/models/workflow_run.py +0 -445
  1324. conductor_python-1.1.9/src/conductor/client/http/models/workflow_schedule.py +0 -361
  1325. conductor_python-1.1.9/src/conductor/client/http/models/workflow_schedule_execution_model.py +0 -341
  1326. conductor_python-1.1.9/src/conductor/client/http/models/workflow_state_update.py +0 -153
  1327. conductor_python-1.1.9/src/conductor/client/http/models/workflow_status.py +0 -227
  1328. conductor_python-1.1.9/src/conductor/client/http/models/workflow_summary.py +0 -603
  1329. conductor_python-1.1.9/src/conductor/client/http/models/workflow_tag.py +0 -99
  1330. conductor_python-1.1.9/src/conductor/client/http/models/workflow_task.py +0 -914
  1331. conductor_python-1.1.9/src/conductor/client/http/models/workflow_test_request.py +0 -364
  1332. conductor_python-1.1.9/src/conductor/client/integration_client.py +0 -99
  1333. conductor_python-1.1.9/src/conductor/client/metadata_client.py +0 -66
  1334. conductor_python-1.1.9/src/conductor/client/orkes/api/tags_api.py +0 -934
  1335. conductor_python-1.1.9/src/conductor/client/orkes/models/access_key.py +0 -69
  1336. conductor_python-1.1.9/src/conductor/client/orkes/models/created_access_key.py +0 -54
  1337. conductor_python-1.1.9/src/conductor/client/orkes/models/granted_permission.py +0 -62
  1338. conductor_python-1.1.9/src/conductor/client/orkes/orkes_authorization_client.py +0 -177
  1339. conductor_python-1.1.9/src/conductor/client/orkes/orkes_base_client.py +0 -38
  1340. conductor_python-1.1.9/src/conductor/client/orkes/orkes_integration_client.py +0 -89
  1341. conductor_python-1.1.9/src/conductor/client/orkes/orkes_metadata_client.py +0 -96
  1342. conductor_python-1.1.9/src/conductor/client/orkes/orkes_prompt_client.py +0 -60
  1343. conductor_python-1.1.9/src/conductor/client/orkes/orkes_scheduler_client.py +0 -90
  1344. conductor_python-1.1.9/src/conductor/client/orkes/orkes_schema_client.py +0 -27
  1345. conductor_python-1.1.9/src/conductor/client/orkes/orkes_secret_client.py +0 -38
  1346. conductor_python-1.1.9/src/conductor/client/orkes/orkes_task_client.py +0 -95
  1347. conductor_python-1.1.9/src/conductor/client/orkes/orkes_workflow_client.py +0 -181
  1348. conductor_python-1.1.9/src/conductor/client/orkes_clients.py +0 -57
  1349. conductor_python-1.1.9/src/conductor/client/prompt_client.py +0 -48
  1350. conductor_python-1.1.9/src/conductor/client/scheduler_client.py +0 -76
  1351. conductor_python-1.1.9/src/conductor/client/schema_client.py +0 -51
  1352. conductor_python-1.1.9/src/conductor/client/secret_client.py +0 -41
  1353. conductor_python-1.1.9/src/conductor/client/task_client.py +0 -72
  1354. conductor_python-1.1.9/src/conductor/client/telemetry/metrics_collector.py +0 -278
  1355. conductor_python-1.1.9/src/conductor/client/worker/worker.py +0 -148
  1356. conductor_python-1.1.9/src/conductor/client/worker/worker_interface.py +0 -119
  1357. conductor_python-1.1.9/src/conductor/client/worker/worker_task.py +0 -48
  1358. conductor_python-1.1.9/src/conductor/client/workflow/conductor_workflow.py +0 -383
  1359. conductor_python-1.1.9/src/conductor/client/workflow/executor/workflow_executor.py +0 -244
  1360. conductor_python-1.1.9/src/conductor/client/workflow/task/do_while_task.py +0 -57
  1361. conductor_python-1.1.9/src/conductor/client/workflow/task/dynamic_fork_task.py +0 -30
  1362. conductor_python-1.1.9/src/conductor/client/workflow/task/dynamic_task.py +0 -21
  1363. conductor_python-1.1.9/src/conductor/client/workflow/task/event_task.py +0 -31
  1364. conductor_python-1.1.9/src/conductor/client/workflow/task/fork_task.py +0 -46
  1365. conductor_python-1.1.9/src/conductor/client/workflow/task/http_poll_task.py +0 -76
  1366. conductor_python-1.1.9/src/conductor/client/workflow/task/http_task.py +0 -85
  1367. conductor_python-1.1.9/src/conductor/client/workflow/task/human_task.py +0 -48
  1368. conductor_python-1.1.9/src/conductor/client/workflow/task/inline.py +0 -18
  1369. conductor_python-1.1.9/src/conductor/client/workflow/task/javascript_task.py +0 -28
  1370. conductor_python-1.1.9/src/conductor/client/workflow/task/join_task.py +0 -25
  1371. conductor_python-1.1.9/src/conductor/client/workflow/task/kafka_publish_input.py +0 -24
  1372. conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/llm_chat_complete.py +0 -54
  1373. conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/llm_generate_embeddings.py +0 -20
  1374. conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/llm_index_documents.py +0 -64
  1375. conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/llm_index_text.py +0 -43
  1376. conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/llm_query_embeddings.py +0 -25
  1377. conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/llm_search_index.py +0 -26
  1378. conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/llm_text_complete.py +0 -49
  1379. conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/utils/embedding_model.py +0 -30
  1380. conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/utils/prompt.py +0 -30
  1381. conductor_python-1.1.9/src/conductor/client/workflow/task/simple_task.py +0 -19
  1382. conductor_python-1.1.9/src/conductor/client/workflow/task/start_workflow_task.py +0 -22
  1383. conductor_python-1.1.9/src/conductor/client/workflow/task/sub_workflow_task.py +0 -51
  1384. conductor_python-1.1.9/src/conductor/client/workflow/task/switch_task.py +0 -62
  1385. conductor_python-1.1.9/src/conductor/client/workflow/task/task.py +0 -182
  1386. conductor_python-1.1.9/src/conductor/client/workflow/task/task_type.py +0 -36
  1387. conductor_python-1.1.9/src/conductor/client/workflow/task/wait_for_webhook_task.py +0 -44
  1388. conductor_python-1.1.9/src/conductor/client/workflow/task/wait_task.py +0 -45
  1389. conductor_python-1.1.9/src/conductor/client/workflow_client.py +0 -109
  1390. conductor_python-1.1.9/src/conductor_python.egg-info/PKG-INFO +0 -956
  1391. conductor_python-1.1.9/src/conductor_python.egg-info/SOURCES.txt +0 -204
  1392. conductor_python-1.1.9/src/conductor_python.egg-info/dependency_links.txt +0 -1
  1393. conductor_python-1.1.9/src/conductor_python.egg-info/requires.txt +0 -8
  1394. conductor_python-1.1.9/src/conductor_python.egg-info/top_level.txt +0 -1
  1395. {conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks/utils → conductor_python-1.2.0/src/conductor/asyncio_client}/__init__.py +0 -0
  1396. {conductor_python-1.1.9/src/conductor/client/workflow/task/llm_tasks → conductor_python-1.2.0/src/conductor/asyncio_client/adapters/api}/__init__.py +0 -0
  1397. {conductor_python-1.1.9/src/conductor/client/workflow/task → conductor_python-1.2.0/src/conductor/asyncio_client/ai}/__init__.py +0 -0
  1398. {conductor_python-1.1.9/src/conductor/client/workflow/executor → conductor_python-1.2.0/src/conductor/asyncio_client/automator}/__init__.py +0 -0
  1399. {conductor_python-1.1.9/src/conductor/client/workflow → conductor_python-1.2.0/src/conductor/asyncio_client/event}/__init__.py +0 -0
  1400. {conductor_python-1.1.9/src/conductor/client/worker → conductor_python-1.2.0/src/conductor/asyncio_client/http}/__init__.py +0 -0
  1401. {conductor_python-1.1.9/src/conductor/client/telemetry/model → conductor_python-1.2.0/src/conductor/asyncio_client/orkes}/__init__.py +0 -0
  1402. {conductor_python-1.1.9/src/conductor/client → conductor_python-1.2.0/src/conductor/asyncio_client}/telemetry/__init__.py +0 -0
  1403. {conductor_python-1.1.9/src/conductor/client/orkes/models → conductor_python-1.2.0/src/conductor/asyncio_client/worker}/__init__.py +0 -0
  1404. {conductor_python-1.1.9/src/conductor/client/orkes/api → conductor_python-1.2.0/src/conductor/asyncio_client/workflow}/__init__.py +0 -0
  1405. {conductor_python-1.1.9/src/conductor/client/orkes → conductor_python-1.2.0/src/conductor/asyncio_client/workflow/executor}/__init__.py +0 -0
  1406. {conductor_python-1.1.9/src/conductor/client/http/api → conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task}/__init__.py +0 -0
  1407. {conductor_python-1.1.9/src/conductor/client/http → conductor_python-1.2.0/src/conductor/asyncio_client/workflow/task/llm_tasks}/__init__.py +0 -0
  1408. {conductor_python-1.1.9/src/conductor/client/helpers → conductor_python-1.2.0/src/conductor/client}/__init__.py +0 -0
  1409. {conductor_python-1.1.9/src/conductor/client/exceptions → conductor_python-1.2.0/src/conductor/client/adapters}/__init__.py +0 -0
  1410. {conductor_python-1.1.9/src/conductor/client/event/queue → conductor_python-1.2.0/src/conductor/client/ai}/__init__.py +0 -0
  1411. {conductor_python-1.1.9/src/conductor/client/event → conductor_python-1.2.0/src/conductor/client/automator}/__init__.py +0 -0
  1412. {conductor_python-1.1.9/src/conductor/client/configuration/settings → conductor_python-1.2.0/src/conductor/client/codegen}/__init__.py +0 -0
  1413. {conductor_python-1.1.9/src/conductor/client/configuration → conductor_python-1.2.0/src/conductor/client/codegen/api}/__init__.py +0 -0
  1414. {conductor_python-1.1.9/src/conductor/client/http → conductor_python-1.2.0/src/conductor/client/codegen}/rest.py +0 -0
  1415. {conductor_python-1.1.9/src/conductor/client/http → conductor_python-1.2.0/src/conductor/client/codegen}/thread.py +0 -0
  1416. {conductor_python-1.1.9/src/conductor/client/automator → conductor_python-1.2.0/src/conductor/client/configuration}/__init__.py +0 -0
  1417. {conductor_python-1.1.9/src/conductor/client/ai → conductor_python-1.2.0/src/conductor/client/event}/__init__.py +0 -0
  1418. {conductor_python-1.1.9/src/conductor/client → conductor_python-1.2.0/src/conductor/client/event/queue}/__init__.py +0 -0
  1419. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/event/queue/queue_worker_configuration.py +0 -0
  1420. {conductor_python-1.1.9/src/conductor → conductor_python-1.2.0/src/conductor/client/exceptions}/__init__.py +0 -0
  1421. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/exceptions/api_error.py +0 -0
  1422. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/orkes/models/access_key_status.py +0 -0
  1423. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/orkes/models/access_type.py +0 -0
  1424. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/orkes/models/metadata_tag.py +0 -0
  1425. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/orkes/models/ratelimit_tag.py +0 -0
  1426. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/telemetry/model/metric_documentation.py +0 -0
  1427. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/telemetry/model/metric_label.py +0 -0
  1428. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/telemetry/model/metric_name.py +0 -0
  1429. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/workflow/task/get_document.py +0 -0
  1430. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/workflow/task/json_jq_task.py +0 -0
  1431. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/workflow/task/kafka_publish.py +0 -0
  1432. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/workflow/task/set_variable_task.py +0 -0
  1433. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/workflow/task/terminate_task.py +0 -0
  1434. {conductor_python-1.1.9 → conductor_python-1.2.0}/src/conductor/client/workflow/task/timeout_policy.py +0 -0
  1435. {conductor_python-1.1.9/src/conductor/client → conductor_python-1.2.0/src/conductor/shared}/configuration/settings/authentication_settings.py +0 -0
  1436. {conductor_python-1.1.9/src/conductor/client → conductor_python-1.2.0/src/conductor/shared}/worker/exception.py +0 -0
@@ -0,0 +1,1000 @@
1
+ Metadata-Version: 2.4
2
+ Name: conductor-python
3
+ Version: 1.2.0
4
+ Summary: Python SDK for working with https://github.com/conductor-oss/conductor
5
+ License: Apache-2.0
6
+ Author: Orkes
7
+ Author-email: developers@orkes.io
8
+ Requires-Python: >=3.9,<3.13
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Intended Audience :: System Administrators
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Dist: aiohttp (==3.12.15)
21
+ Requires-Dist: aiohttp-retry (==2.9.1)
22
+ Requires-Dist: astor (>=0.8.1)
23
+ Requires-Dist: certifi (>=14.05.14)
24
+ Requires-Dist: dacite (>=1.8.1)
25
+ Requires-Dist: deprecated (>=1.2.14)
26
+ Requires-Dist: httpx[http2] (>=0.28.1,<0.29.0)
27
+ Requires-Dist: prometheus-client (>=0.13.1)
28
+ Requires-Dist: pydantic (==2.11.7)
29
+ Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
30
+ Requires-Dist: requests (>=2.31.0)
31
+ Requires-Dist: shortuuid (>=1.0.11)
32
+ Requires-Dist: six (>=1.10)
33
+ Requires-Dist: typing-extensions (>=4.2.0)
34
+ Description-Content-Type: text/markdown
35
+
36
+ # Conductor OSS Python SDK
37
+ [![CI Status](https://github.com/conductor-oss/python-sdk/actions/workflows/pull_request.yml/badge.svg)](https://github.com/conductor-oss/python-sdk/actions/workflows/pull_request.yml)
38
+ [![codecov](https://codecov.io/gh/conductor-oss/python-sdk/branch/main/graph/badge.svg?token=K10D161X4R)](https://codecov.io/gh/conductor-oss/python-sdk)
39
+
40
+ Python SDK for working with https://github.com/conductor-oss/conductor.
41
+
42
+ [Conductor](https://www.conductor-oss.org/) is the leading open-source orchestration platform allowing developers to build highly scalable distributed applications.
43
+
44
+ Check out the [official documentation for Conductor](https://orkes.io/content).
45
+
46
+ ## ⭐ Conductor OSS
47
+
48
+ Show support for the Conductor OSS. Please help spread the awareness by starring Conductor repo.
49
+
50
+ [![GitHub stars](https://img.shields.io/github/stars/conductor-oss/conductor.svg?style=social&label=Star&maxAge=)](https://GitHub.com/conductor-oss/conductor/)
51
+
52
+ ## Content
53
+
54
+ <!-- START doctoc generated TOC please keep comment here to allow auto update -->
55
+ <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
56
+
57
+ - [Install Conductor Python SDK](#install-conductor-python-sdk)
58
+ - [Get Conductor Python SDK](#get-conductor-python-sdk)
59
+ - [Hello World Application Using Conductor](#hello-world-application-using-conductor)
60
+ - [Step 1: Create Workflow](#step-1-create-workflow)
61
+ - [Creating Workflows by Code](#creating-workflows-by-code)
62
+ - [(Alternatively) Creating Workflows in JSON](#alternatively-creating-workflows-in-json)
63
+ - [Step 2: Write Task Worker](#step-2-write-task-worker)
64
+ - [Step 3: Write _Hello World_ Application](#step-3-write-_hello-world_-application)
65
+ - [Running Workflows on Conductor Standalone (Installed Locally)](#running-workflows-on-conductor-standalone-installed-locally)
66
+ - [Setup Environment Variable](#setup-environment-variable)
67
+ - [Start Conductor Server](#start-conductor-server)
68
+ - [Execute Hello World Application](#execute-hello-world-application)
69
+ - [Running Workflows on Orkes Conductor](#running-workflows-on-orkes-conductor)
70
+ - [Learn More about Conductor Python SDK](#learn-more-about-conductor-python-sdk)
71
+ - [Create and Run Conductor Workers](#create-and-run-conductor-workers)
72
+ - [Writing Workers](#writing-workers)
73
+ - [Implementing Workers](#implementing-workers)
74
+ - [Managing Workers in Application](#managing-workers-in-application)
75
+ - [Design Principles for Workers](#design-principles-for-workers)
76
+ - [System Task Workers](#system-task-workers)
77
+ - [Wait Task](#wait-task)
78
+ - [Using Code to Create Wait Task](#using-code-to-create-wait-task)
79
+ - [JSON Configuration](#json-configuration)
80
+ - [HTTP Task](#http-task)
81
+ - [Using Code to Create HTTP Task](#using-code-to-create-http-task)
82
+ - [JSON Configuration](#json-configuration-1)
83
+ - [Javascript Executor Task](#javascript-executor-task)
84
+ - [Using Code to Create Inline Task](#using-code-to-create-inline-task)
85
+ - [JSON Configuration](#json-configuration-2)
86
+ - [JSON Processing using JQ](#json-processing-using-jq)
87
+ - [Using Code to Create JSON JQ Transform Task](#using-code-to-create-json-jq-transform-task)
88
+ - [JSON Configuration](#json-configuration-3)
89
+ - [Worker vs. Microservice/HTTP Endpoints](#worker-vs-microservicehttp-endpoints)
90
+ - [Deploying Workers in Production](#deploying-workers-in-production)
91
+ - [Create Conductor Workflows](#create-conductor-workflows)
92
+ - [Conductor Workflows](#conductor-workflows)
93
+ - [Creating Workflows](#creating-workflows)
94
+ - [Execute Dynamic Workflows Using Code](#execute-dynamic-workflows-using-code)
95
+ - [Kitchen-Sink Workflow](#kitchen-sink-workflow)
96
+ - [Executing Workflows](#executing-workflows)
97
+ - [Execute Workflow Asynchronously](#execute-workflow-asynchronously)
98
+ - [Execute Workflow Synchronously](#execute-workflow-synchronously)
99
+ - [Managing Workflow Executions](#managing-workflow-executions)
100
+ - [Get Execution Status](#get-execution-status)
101
+ - [Update Workflow State Variables](#update-workflow-state-variables)
102
+ - [Terminate Running Workflows](#terminate-running-workflows)
103
+ - [Retry Failed Workflows](#retry-failed-workflows)
104
+ - [Restart Workflows](#restart-workflows)
105
+ - [Rerun Workflow from a Specific Task](#rerun-workflow-from-a-specific-task)
106
+ - [Pause Running Workflow](#pause-running-workflow)
107
+ - [Resume Paused Workflow](#resume-paused-workflow)
108
+ - [Searching for Workflows](#searching-for-workflows)
109
+ - [Handling Failures, Retries and Rate Limits](#handling-failures-retries-and-rate-limits)
110
+ - [Retries](#retries)
111
+ - [Rate Limits](#rate-limits)
112
+ - [Task Registration](#task-registration)
113
+ - [Update Task Definition:](#update-task-definition)
114
+ - [Using Conductor in Your Application](#using-conductor-in-your-application)
115
+ - [Adding Conductor SDK to Your Application](#adding-conductor-sdk-to-your-application)
116
+ - [Testing Workflows](#testing-workflows)
117
+ - [Example Unit Testing Application](#example-unit-testing-application)
118
+ - [Workflow Deployments Using CI/CD](#workflow-deployments-using-cicd)
119
+ - [Versioning Workflows](#versioning-workflows)
120
+ - [Development](#development)
121
+ - [Client Regeneration](#client-regeneration)
122
+ - [Sync Client Regeneration](#sync-client-regeneration)
123
+ - [Async Client Regeneration](#async-client-regeneration)
124
+
125
+ <!-- END doctoc generated TOC please keep comment here to allow auto update -->
126
+
127
+ ## Install Conductor Python SDK
128
+
129
+ Before installing Conductor Python SDK, it is a good practice to set up a dedicated virtual environment as follows:
130
+
131
+ ```shell
132
+ virtualenv conductor
133
+ source conductor/bin/activate
134
+ ```
135
+
136
+ ### Get Conductor Python SDK
137
+
138
+ The SDK requires Python 3.9+. To install the SDK, use the following command:
139
+
140
+ ```shell
141
+ python3 -m pip install conductor-python
142
+ ```
143
+
144
+ ## Hello World Application Using Conductor
145
+
146
+ In this section, we will create a simple "Hello World" application that executes a "greetings" workflow managed by Conductor.
147
+
148
+ ### Step 1: Create Workflow
149
+
150
+ #### Creating Workflows by Code
151
+
152
+ Create [greetings_workflow.py](examples/helloworld/greetings_workflow.py) with the following:
153
+
154
+ ```python
155
+ from conductor.client.workflow.conductor_workflow import ConductorWorkflow
156
+ from conductor.client.workflow.executor.workflow_executor import WorkflowExecutor
157
+ from greetings_worker import greet
158
+
159
+ def greetings_workflow(workflow_executor: WorkflowExecutor) -> ConductorWorkflow:
160
+ name = 'greetings'
161
+ workflow = ConductorWorkflow(name=name, executor=workflow_executor)
162
+ workflow.version = 1
163
+ workflow >> greet(task_ref_name='greet_ref', name=workflow.input('name'))
164
+ return workflow
165
+
166
+
167
+ ```
168
+
169
+ #### (Alternatively) Creating Workflows in JSON
170
+
171
+ Create `greetings_workflow.json` with the following:
172
+
173
+ ```json
174
+ {
175
+ "name": "greetings",
176
+ "description": "Sample greetings workflow",
177
+ "version": 1,
178
+ "tasks": [
179
+ {
180
+ "name": "greet",
181
+ "taskReferenceName": "greet_ref",
182
+ "type": "SIMPLE",
183
+ "inputParameters": {
184
+ "name": "${workflow.input.name}"
185
+ }
186
+ }
187
+ ],
188
+ "timeoutPolicy": "TIME_OUT_WF",
189
+ "timeoutSeconds": 60
190
+ }
191
+ ```
192
+
193
+ Workflows must be registered to the Conductor server. Use the API to register the greetings workflow from the JSON file above:
194
+ ```shell
195
+ curl -X POST -H "Content-Type:application/json" \
196
+ http://localhost:8080/api/metadata/workflow -d @greetings_workflow.json
197
+ ```
198
+ > [!note]
199
+ > To use the Conductor API, the Conductor server must be up and running (see [Running over Conductor standalone (installed locally)](#running-over-conductor-standalone-installed-locally)).
200
+
201
+ ### Step 2: Write Task Worker
202
+
203
+ Using Python, a worker represents a function with the worker_task decorator. Create [greetings_worker.py](examples/helloworld/greetings_worker.py) file as illustrated below:
204
+
205
+ > [!note]
206
+ > A single workflow can have task workers written in different languages and deployed anywhere, making your workflow polyglot and distributed!
207
+
208
+ ```python
209
+ from conductor.client.worker.worker_task import worker_task
210
+
211
+
212
+ @worker_task(task_definition_name='greet')
213
+ def greet(name: str) -> str:
214
+ return f'Hello {name}'
215
+
216
+ ```
217
+ Now, we are ready to write our main application, which will execute our workflow.
218
+
219
+ ### Step 3: Write _Hello World_ Application
220
+
221
+ Let's add [helloworld.py](examples/helloworld/helloworld.py) with a `main` method:
222
+
223
+ ```python
224
+ from conductor.client.automator.task_handler import TaskHandler
225
+ from conductor.client.configuration.configuration import Configuration
226
+ from conductor.client.workflow.conductor_workflow import ConductorWorkflow
227
+ from conductor.client.workflow.executor.workflow_executor import WorkflowExecutor
228
+ from greetings_workflow import greetings_workflow
229
+
230
+
231
+ def register_workflow(workflow_executor: WorkflowExecutor) -> ConductorWorkflow:
232
+ workflow = greetings_workflow(workflow_executor=workflow_executor)
233
+ workflow.register(True)
234
+ return workflow
235
+
236
+
237
+ def main():
238
+ # The app is connected to http://localhost:8080/api by default
239
+ api_config = Configuration()
240
+
241
+ workflow_executor = WorkflowExecutor(configuration=api_config)
242
+
243
+ # Registering the workflow (Required only when the app is executed the first time)
244
+ workflow = register_workflow(workflow_executor)
245
+
246
+ # Starting the worker polling mechanism
247
+ task_handler = TaskHandler(configuration=api_config)
248
+ task_handler.start_processes()
249
+
250
+ workflow_run = workflow_executor.execute(name=workflow.name, version=workflow.version,
251
+ workflow_input={'name': 'Orkes'})
252
+
253
+ print(f'\nworkflow result: {workflow_run.output["result"]}\n')
254
+ print(f'see the workflow execution here: {api_config.ui_host}/execution/{workflow_run.workflow_id}\n')
255
+ task_handler.stop_processes()
256
+
257
+
258
+ if __name__ == '__main__':
259
+ main()
260
+ ```
261
+ ## Running Workflows on Conductor Standalone (Installed Locally)
262
+
263
+ ### Setup Environment Variable
264
+
265
+ Set the following environment variable to point the SDK to the Conductor Server API endpoint:
266
+
267
+ ```shell
268
+ export CONDUCTOR_SERVER_URL=http://localhost:8080/api
269
+ ```
270
+ ### Start Conductor Server
271
+
272
+ To start the Conductor server in a standalone mode from a Docker image, type the command below:
273
+
274
+ ```shell
275
+ docker run --init -p 8080:8080 -p 5000:5000 conductoross/conductor-standalone:3.15.0
276
+ ```
277
+ To ensure the server has started successfully, open Conductor UI on http://localhost:5000.
278
+
279
+ ### Execute Hello World Application
280
+
281
+ To run the application, type the following command:
282
+
283
+ ```
284
+ python helloworld.py
285
+ ```
286
+
287
+ Now, the workflow is executed, and its execution status can be viewed from Conductor UI (http://localhost:5000).
288
+
289
+ Navigate to the **Executions** tab to view the workflow execution.
290
+
291
+ <img width="1434" alt="Screenshot 2024-03-18 at 12 30 07" src="https://github.com/Srividhya-S-Subramanian/conductor-python-v1/assets/163816773/11e829b6-d46a-4b47-b2cf-0bf524a6ebdc">
292
+
293
+ ## Running Workflows on Orkes Conductor
294
+
295
+ For running the workflow in Orkes Conductor,
296
+
297
+ - Update the Conductor server URL to your cluster name.
298
+
299
+ ```shell
300
+ export CONDUCTOR_SERVER_URL=https://[cluster-name].orkesconductor.io/api
301
+ ```
302
+
303
+ - If you want to run the workflow on the Orkes Conductor Playground, set the Conductor Server variable as follows:
304
+
305
+ ```shell
306
+ export CONDUCTOR_SERVER_URL=https://play.orkes.io/api
307
+ ```
308
+
309
+ - Orkes Conductor requires authentication. [Obtain the key and secret from the Conductor server](https://orkes.io/content/how-to-videos/access-key-and-secret) and set the following environment variables.
310
+
311
+ ```shell
312
+ export CONDUCTOR_AUTH_KEY=your_key
313
+ export CONDUCTOR_AUTH_SECRET=your_key_secret
314
+ ```
315
+
316
+ Run the application and view the execution status from Conductor's UI Console.
317
+
318
+ > [!NOTE]
319
+ > That's it - you just created and executed your first distributed Python app!
320
+
321
+ ## Learn More about Conductor Python SDK
322
+
323
+ There are three main ways you can use Conductor when building durable, resilient, distributed applications.
324
+
325
+ 1. Write service workers that implement business logic to accomplish a specific goal - such as initiating payment transfer, getting user information from the database, etc.
326
+ 2. Create Conductor workflows that implement application state - A typical workflow implements the saga pattern.
327
+ 3. Use Conductor SDK and APIs to manage workflows from your application.
328
+
329
+ ## Create and Run Conductor Workers
330
+
331
+ ## Writing Workers
332
+
333
+ A Workflow task represents a unit of business logic that achieves a specific goal, such as checking inventory, initiating payment transfer, etc. A worker implements a task in the workflow.
334
+
335
+
336
+ ### Implementing Workers
337
+
338
+ The workers can be implemented by writing a simple Python function and annotating the function with the `@worker_task`. Conductor workers are services (similar to microservices) that follow the [Single Responsibility Principle](https://en.wikipedia.org/wiki/Single_responsibility_principle).
339
+
340
+ Workers can be hosted along with the workflow or run in a distributed environment where a single workflow uses workers deployed and running in different machines/VMs/containers. Whether to keep all the workers in the same application or run them as a distributed application is a design and architectural choice. Conductor is well suited for both kinds of scenarios.
341
+
342
+ You can create or convert any existing Python function to a distributed worker by adding `@worker_task` annotation to it. Here is a simple worker that takes `name` as input and returns greetings:
343
+
344
+ ```python
345
+ from conductor.client.worker.worker_task import worker_task
346
+
347
+ @worker_task(task_definition_name='greetings')
348
+ def greetings(name: str) -> str:
349
+ return f'Hello, {name}'
350
+ ```
351
+
352
+ A worker can take inputs which are primitives - `str`, `int`, `float`, `bool` etc. or can be complex data classes.
353
+
354
+ Here is an example worker that uses `dataclass` as part of the worker input.
355
+
356
+ ```python
357
+ from conductor.client.worker.worker_task import worker_task
358
+ from dataclasses import dataclass
359
+
360
+ @dataclass
361
+ class OrderInfo:
362
+ order_id: int
363
+ sku: str
364
+ quantity: int
365
+ sku_price: float
366
+
367
+
368
+ @worker_task(task_definition_name='process_order')
369
+ def process_order(order_info: OrderInfo) -> str:
370
+ return f'order: {order_info.order_id}'
371
+
372
+ ```
373
+
374
+ ### Managing Workers in Application
375
+
376
+ Workers use a polling mechanism (with a long poll) to check for any available tasks from the server periodically. The startup and shutdown of workers are handled by the `conductor.client.automator.task_handler.TaskHandler` class.
377
+
378
+ ```python
379
+ from conductor.client.automator.task_handler import TaskHandler
380
+ from conductor.client.configuration.configuration import Configuration
381
+
382
+ def main():
383
+ # points to http://localhost:8080/api by default
384
+ api_config = Configuration()
385
+
386
+ task_handler = TaskHandler(
387
+ workers=[],
388
+ configuration=api_config,
389
+ scan_for_annotated_workers=True,
390
+ import_modules=['greetings'] # import workers from this module - leave empty if all the workers are in the same module
391
+ )
392
+
393
+ # start worker polling
394
+ task_handler.start_processes()
395
+
396
+ # Call to stop the workers when the application is ready to shutdown
397
+ task_handler.stop_processes()
398
+
399
+
400
+ if __name__ == '__main__':
401
+ main()
402
+
403
+ ```
404
+
405
+ ### Design Principles for Workers
406
+
407
+ Each worker embodies the design pattern and follows certain basic principles:
408
+
409
+ 1. Workers are stateless and do not implement a workflow-specific logic.
410
+ 2. Each worker executes a particular task and produces well-defined output given specific inputs.
411
+ 3. Workers are meant to be idempotent (Should handle cases where the partially executed task, due to timeouts, etc, gets rescheduled).
412
+ 4. Workers do not implement the logic to handle retries, etc., that is taken care of by the Conductor server.
413
+
414
+ #### System Task Workers
415
+
416
+ A system task worker is a pre-built, general-purpose worker in your Conductor server distribution.
417
+
418
+ System tasks automate repeated tasks such as calling an HTTP endpoint, executing lightweight ECMA-compliant javascript code, publishing to an event broker, etc.
419
+
420
+ #### Wait Task
421
+
422
+ > [!tip]
423
+ > Wait is a powerful way to have your system wait for a specific trigger, such as an external event, a particular date/time, or duration, such as 2 hours, without having to manage threads, background processes, or jobs.
424
+
425
+ ##### Using Code to Create Wait Task
426
+
427
+ ```python
428
+ from conductor.client.workflow.task.wait_task import WaitTask
429
+
430
+ # waits for 2 seconds before scheduling the next task
431
+ wait_for_two_sec = WaitTask(task_ref_name='wait_for_2_sec', wait_for_seconds=2)
432
+
433
+ # wait until end of jan
434
+ wait_till_jan = WaitTask(task_ref_name='wait_till_jsn', wait_until='2024-01-31 00:00 UTC')
435
+
436
+ # waits until an API call or an event is triggered
437
+ wait_for_signal = WaitTask(task_ref_name='wait_till_jan_end')
438
+
439
+ ```
440
+ ##### JSON Configuration
441
+
442
+ ```json
443
+ {
444
+ "name": "wait",
445
+ "taskReferenceName": "wait_till_jan_end",
446
+ "type": "WAIT",
447
+ "inputParameters": {
448
+ "until": "2024-01-31 00:00 UTC"
449
+ }
450
+ }
451
+ ```
452
+ #### HTTP Task
453
+
454
+ Make a request to an HTTP(S) endpoint. The task allows for GET, PUT, POST, DELETE, HEAD, and PATCH requests.
455
+
456
+ ##### Using Code to Create HTTP Task
457
+
458
+ ```python
459
+ from conductor.client.workflow.task.http_task import HttpTask
460
+
461
+ HttpTask(task_ref_name='call_remote_api', http_input={
462
+ 'uri': 'https://orkes-api-tester.orkesconductor.com/api'
463
+ })
464
+ ```
465
+
466
+ ##### JSON Configuration
467
+
468
+ ```json
469
+ {
470
+ "name": "http_task",
471
+ "taskReferenceName": "http_task_ref",
472
+ "type" : "HTTP",
473
+ "uri": "https://orkes-api-tester.orkesconductor.com/api",
474
+ "method": "GET"
475
+ }
476
+ ```
477
+
478
+ #### Javascript Executor Task
479
+
480
+ Execute ECMA-compliant Javascript code. It is useful when writing a script for data mapping, calculations, etc.
481
+
482
+ ##### Using Code to Create Inline Task
483
+
484
+ ```python
485
+ from conductor.client.workflow.task.javascript_task import JavascriptTask
486
+
487
+ say_hello_js = """
488
+ function greetings() {
489
+ return {
490
+ "text": "hello " + $.name
491
+ }
492
+ }
493
+ greetings();
494
+ """
495
+
496
+ js = JavascriptTask(task_ref_name='hello_script', script=say_hello_js, bindings={'name': '${workflow.input.name}'})
497
+ ```
498
+ ##### JSON Configuration
499
+
500
+ ```json
501
+ {
502
+ "name": "inline_task",
503
+ "taskReferenceName": "inline_task_ref",
504
+ "type": "INLINE",
505
+ "inputParameters": {
506
+ "expression": " function greetings() {\n return {\n \"text\": \"hello \" + $.name\n }\n }\n greetings();",
507
+ "evaluatorType": "graaljs",
508
+ "name": "${workflow.input.name}"
509
+ }
510
+ }
511
+ ```
512
+
513
+ #### JSON Processing using JQ
514
+
515
+ [Jq](https://jqlang.github.io/jq/) is like sed for JSON data - you can slice, filter, map, and transform structured data with the same ease that sed, awk, grep, and friends let you play with text.
516
+
517
+ ##### Using Code to Create JSON JQ Transform Task
518
+
519
+ ```python
520
+ from conductor.client.workflow.task.json_jq_task import JsonJQTask
521
+
522
+ jq_script = """
523
+ { key3: (.key1.value1 + .key2.value2) }
524
+ """
525
+
526
+ jq = JsonJQTask(task_ref_name='jq_process', script=jq_script)
527
+ ```
528
+ ##### JSON Configuration
529
+
530
+ ```json
531
+ {
532
+ "name": "json_transform_task",
533
+ "taskReferenceName": "json_transform_task_ref",
534
+ "type": "JSON_JQ_TRANSFORM",
535
+ "inputParameters": {
536
+ "key1": "k1",
537
+ "key2": "k2",
538
+ "queryExpression": "{ key3: (.key1.value1 + .key2.value2) }",
539
+ }
540
+ }
541
+ ```
542
+
543
+ ### Worker vs. Microservice/HTTP Endpoints
544
+
545
+ > [!tip]
546
+ > Workers are a lightweight alternative to exposing an HTTP endpoint and orchestrating using HTTP tasks. Using workers is a recommended approach if you do not need to expose the service over HTTP or gRPC endpoints.
547
+
548
+ There are several advantages to this approach:
549
+
550
+ 1. **No need for an API management layer** : Given there are no exposed endpoints and workers are self-load-balancing.
551
+ 2. **Reduced infrastructure footprint** : No need for an API gateway/load balancer.
552
+ 3. All the communication is initiated by workers using polling - avoiding the need to open up any incoming TCP ports.
553
+ 4. Workers **self-regulate** when busy; they only poll as much as they can handle. Backpressure handling is done out of the box.
554
+ 5. Workers can be scaled up/down quickly based on the demand by increasing the number of processes.
555
+
556
+ ### Deploying Workers in Production
557
+
558
+ Conductor workers can run in the cloud-native environment or on-prem and can easily be deployed like any other Python application. Workers can run a containerized environment, VMs, or bare metal like you would deploy your other Python applications.
559
+
560
+ ## Create Conductor Workflows
561
+
562
+ ### Conductor Workflows
563
+
564
+ Workflow can be defined as the collection of tasks and operators that specify the order and execution of the defined tasks. This orchestration occurs in a hybrid ecosystem that encircles serverless functions, microservices, and monolithic applications.
565
+
566
+ This section will dive deeper into creating and executing Conductor workflows using Python SDK.
567
+
568
+
569
+ ### Creating Workflows
570
+
571
+ Conductor lets you create the workflows using either Python or JSON as the configuration.
572
+
573
+ Using Python as code to define and execute workflows lets you build extremely powerful, dynamic workflows and run them on Conductor.
574
+
575
+ When the workflows are relatively static, they can be designed using the Orkes UI (available when using Orkes Conductor) and APIs or SDKs to register and run the workflows.
576
+
577
+ Both the code and configuration approaches are equally powerful and similar in nature to how you treat Infrastructure as Code.
578
+
579
+ #### Execute Dynamic Workflows Using Code
580
+
581
+ For cases where the workflows cannot be created statically ahead of time, Conductor is a powerful dynamic workflow execution platform that lets you create very complex workflows in code and execute them. It is useful when the workflow is unique for each execution.
582
+
583
+ ```python
584
+ from conductor.client.automator.task_handler import TaskHandler
585
+ from conductor.client.configuration.configuration import Configuration
586
+ from conductor.client.orkes_clients import OrkesClients
587
+ from conductor.client.worker.worker_task import worker_task
588
+ from conductor.client.workflow.conductor_workflow import ConductorWorkflow
589
+
590
+ #@worker_task annotation denotes that this is a worker
591
+ @worker_task(task_definition_name='get_user_email')
592
+ def get_user_email(userid: str) -> str:
593
+ return f'{userid}@example.com'
594
+
595
+ #@worker_task annotation denotes that this is a worker
596
+ @worker_task(task_definition_name='send_email')
597
+ def send_email(email: str, subject: str, body: str):
598
+ print(f'sending email to {email} with subject {subject} and body {body}')
599
+
600
+
601
+ def main():
602
+
603
+ # defaults to reading the configuration using following env variables
604
+ # CONDUCTOR_SERVER_URL : conductor server e.g. https://play.orkes.io/api
605
+ # CONDUCTOR_AUTH_KEY : API Authentication Key
606
+ # CONDUCTOR_AUTH_SECRET: API Auth Secret
607
+ api_config = Configuration()
608
+
609
+ task_handler = TaskHandler(configuration=api_config)
610
+ #Start Polling
611
+ task_handler.start_processes()
612
+
613
+ clients = OrkesClients(configuration=api_config)
614
+ workflow_executor = clients.get_workflow_executor()
615
+ workflow = ConductorWorkflow(name='dynamic_workflow', version=1, executor=workflow_executor)
616
+ get_email = get_user_email(task_ref_name='get_user_email_ref', userid=workflow.input('userid'))
617
+ sendmail = send_email(task_ref_name='send_email_ref', email=get_email.output('result'), subject='Hello from Orkes',
618
+ body='Test Email')
619
+ #Order of task execution
620
+ workflow >> get_email >> sendmail
621
+
622
+ # Configure the output of the workflow
623
+ workflow.output_parameters(output_parameters={
624
+ 'email': get_email.output('result')
625
+ })
626
+ #Run the workflow
627
+ result = workflow.execute(workflow_input={'userid': 'user_a'})
628
+ print(f'\nworkflow output: {result.output}\n')
629
+ #Stop Polling
630
+ task_handler.stop_processes()
631
+
632
+
633
+ if __name__ == '__main__':
634
+ main()
635
+
636
+ ```
637
+
638
+ ```shell
639
+ >> python3 dynamic_workflow.py
640
+
641
+ 2024-02-03 19:54:35,700 [32853] conductor.client.automator.task_handler INFO created worker with name=get_user_email and domain=None
642
+ 2024-02-03 19:54:35,781 [32853] conductor.client.automator.task_handler INFO created worker with name=send_email and domain=None
643
+ 2024-02-03 19:54:35,859 [32853] conductor.client.automator.task_handler INFO TaskHandler initialized
644
+ 2024-02-03 19:54:35,859 [32853] conductor.client.automator.task_handler INFO Starting worker processes...
645
+ 2024-02-03 19:54:35,861 [32853] conductor.client.automator.task_runner INFO Polling task get_user_email with domain None with polling interval 0.1
646
+ 2024-02-03 19:54:35,861 [32853] conductor.client.automator.task_handler INFO Started 2 TaskRunner process
647
+ 2024-02-03 19:54:35,862 [32853] conductor.client.automator.task_handler INFO Started all processes
648
+ 2024-02-03 19:54:35,862 [32853] conductor.client.automator.task_runner INFO Polling task send_email with domain None with polling interval 0.1
649
+ sending email to user_a@example.com with subject Hello from Orkes and body Test Email
650
+
651
+ workflow output: {'email': 'user_a@example.com'}
652
+
653
+ 2024-02-03 19:54:36,309 [32853] conductor.client.automator.task_handler INFO Stopped worker processes...
654
+ ```
655
+ See [dynamic_workflow.py](examples/dynamic_workflow.py) for a fully functional example.
656
+
657
+ #### Kitchen-Sink Workflow
658
+
659
+ For a more complex workflow example with all the supported features, see [kitchensink.py](examples/kitchensink.py).
660
+
661
+ ### Executing Workflows
662
+
663
+ The [WorkflowClient](src/conductor/client/workflow_client.py) interface provides all the APIs required to work with workflow executions.
664
+
665
+ ```python
666
+ from conductor.client.configuration.configuration import Configuration
667
+ from conductor.client.orkes_clients import OrkesClients
668
+
669
+ api_config = Configuration()
670
+ clients = OrkesClients(configuration=api_config)
671
+ workflow_client = clients.get_workflow_client()
672
+ ```
673
+ #### Execute Workflow Asynchronously
674
+
675
+ Useful when workflows are long-running.
676
+
677
+ ```python
678
+ from conductor.client.http.models import StartWorkflowRequest
679
+
680
+ request = StartWorkflowRequest()
681
+ request.name = 'hello'
682
+ request.version = 1
683
+ request.input = {'name': 'Orkes'}
684
+ # workflow id is the unique execution id associated with this execution
685
+ workflow_id = workflow_client.start_workflow(request)
686
+ ```
687
+ #### Execute Workflow Synchronously
688
+
689
+ Applicable when workflows complete very quickly - usually under 20-30 seconds.
690
+
691
+ ```python
692
+ from conductor.client.http.models import StartWorkflowRequest
693
+
694
+ request = StartWorkflowRequest()
695
+ request.name = 'hello'
696
+ request.version = 1
697
+ request.input = {'name': 'Orkes'}
698
+
699
+ workflow_run = workflow_client.execute_workflow(
700
+ start_workflow_request=request,
701
+ wait_for_seconds=12)
702
+ ```
703
+
704
+
705
+ ### Managing Workflow Executions
706
+ > [!note]
707
+ > See [workflow_ops.py](examples/workflow_ops.py) for a fully working application that demonstrates working with the workflow executions and sending signals to the workflow to manage its state.
708
+
709
+ Workflows represent the application state. With Conductor, you can query the workflow execution state anytime during its lifecycle. You can also send signals to the workflow that determines the outcome of the workflow state.
710
+
711
+ [WorkflowClient](src/conductor/client/workflow_client.py) is the client interface used to manage workflow executions.
712
+
713
+ ```python
714
+ from conductor.client.configuration.configuration import Configuration
715
+ from conductor.client.orkes_clients import OrkesClients
716
+
717
+ api_config = Configuration()
718
+ clients = OrkesClients(configuration=api_config)
719
+ workflow_client = clients.get_workflow_client()
720
+ ```
721
+
722
+ ### Get Execution Status
723
+
724
+ The following method lets you query the status of the workflow execution given the id. When the `include_tasks` is set, the response also includes all the completed and in-progress tasks.
725
+
726
+ ```python
727
+ get_workflow(workflow_id: str, include_tasks: Optional[bool] = True) -> Workflow
728
+ ```
729
+
730
+ ### Update Workflow State Variables
731
+
732
+ Variables inside a workflow are the equivalent of global variables in a program.
733
+
734
+ ```python
735
+ update_variables(self, workflow_id: str, variables: Dict[str, object] = {})
736
+ ```
737
+
738
+ ### Terminate Running Workflows
739
+
740
+ Used to terminate a running workflow. Any pending tasks are canceled, and no further work is scheduled for this workflow upon termination. A failure workflow will be triggered but can be avoided if `trigger_failure_workflow` is set to False.
741
+
742
+ ```python
743
+ terminate_workflow(self, workflow_id: str, reason: Optional[str] = None, trigger_failure_workflow: bool = False)
744
+ ```
745
+
746
+ ### Retry Failed Workflows
747
+
748
+ If the workflow has failed due to one of the task failures after exhausting the retries for the task, the workflow can still be resumed by calling the retry.
749
+
750
+ ```python
751
+ retry_workflow(self, workflow_id: str, resume_subworkflow_tasks: Optional[bool] = False)
752
+ ```
753
+
754
+ When a sub-workflow inside a workflow has failed, there are two options:
755
+
756
+ 1. Re-trigger the sub-workflow from the start (Default behavior).
757
+ 2. Resume the sub-workflow from the failed task (set `resume_subworkflow_tasks` to True).
758
+
759
+ ### Restart Workflows
760
+
761
+ A workflow in the terminal state (COMPLETED, TERMINATED, FAILED) can be restarted from the beginning. Useful when retrying from the last failed task is insufficient, and the whole workflow must be started again.
762
+
763
+ ```python
764
+ restart_workflow(self, workflow_id: str, use_latest_def: Optional[bool] = False)
765
+ ```
766
+
767
+ ### Rerun Workflow from a Specific Task
768
+
769
+ In the cases where a workflow needs to be restarted from a specific task rather than from the beginning, rerun provides that option. When issuing the rerun command to the workflow, you can specify the task ID from where the workflow should be restarted (as opposed to from the beginning), and optionally, the workflow's input can also be changed.
770
+
771
+ ```python
772
+ rerun_workflow(self, workflow_id: str, rerun_workflow_request: RerunWorkflowRequest)
773
+ ```
774
+
775
+ > [!tip]
776
+ > Rerun is one of the most powerful features Conductor has, giving you unparalleled control over the workflow restart.
777
+ >
778
+
779
+ ### Pause Running Workflow
780
+
781
+ A running workflow can be put to a PAUSED status. A paused workflow lets the currently running tasks complete but does not schedule any new tasks until resumed.
782
+
783
+ ```python
784
+ pause_workflow(self, workflow_id: str)
785
+ ```
786
+
787
+ ### Resume Paused Workflow
788
+
789
+ Resume operation resumes the currently paused workflow, immediately evaluating its state and scheduling the next set of tasks.
790
+
791
+ ```python
792
+ resume_workflow(self, workflow_id: str)
793
+ ```
794
+
795
+ ### Searching for Workflows
796
+
797
+ Workflow executions are retained until removed from the Conductor. This gives complete visibility into all the executions an application has - regardless of the number of executions. Conductor has a powerful search API that allows you to search for workflow executions.
798
+
799
+ ```python
800
+ search(self, start, size, free_text: str = '*', query: str = None) -> ScrollableSearchResultWorkflowSummary
801
+ ```
802
+
803
+ * **free_text**: Free text search to look for specific words in the workflow and task input/output.
804
+ * **query** SQL-like query to search against specific fields in the workflow.
805
+
806
+ Here are the supported fields for **query**:
807
+
808
+ | Field | Description |
809
+ |-------------|-----------------|
810
+ | status |The status of the workflow. |
811
+ | correlationId |The ID to correlate the workflow execution to other executions. |
812
+ | workflowType |The name of the workflow. |
813
+ | version |The version of the workflow. |
814
+ |startTime|The start time of the workflow is in milliseconds.|
815
+
816
+
817
+ ### Handling Failures, Retries and Rate Limits
818
+
819
+ Conductor lets you embrace failures rather than worry about the complexities introduced in the system to handle failures.
820
+
821
+ All the aspects of handling failures, retries, rate limits, etc., are driven by the configuration that can be updated in real time without re-deploying your application.
822
+
823
+ #### Retries
824
+
825
+ Each task in the Conductor workflow can be configured to handle failures with retries, along with the retry policy (linear, fixed, exponential backoff) and maximum number of retry attempts allowed.
826
+
827
+ See [Error Handling](https://orkes.io/content/error-handling) for more details.
828
+
829
+ #### Rate Limits
830
+
831
+ What happens when a task is operating on a critical resource that can only handle a few requests at a time? Tasks can be configured to have a fixed concurrency (X request at a time) or a rate (Y tasks/time window).
832
+
833
+
834
+ #### Task Registration
835
+
836
+ ```python
837
+ from conductor.client.configuration.configuration import Configuration
838
+ from conductor.client.http.models import TaskDef
839
+ from conductor.client.orkes_clients import OrkesClients
840
+
841
+
842
+ def main():
843
+ api_config = Configuration()
844
+ clients = OrkesClients(configuration=api_config)
845
+ metadata_client = clients.get_metadata_client()
846
+
847
+ task_def = TaskDef()
848
+ task_def.name = 'task_with_retries'
849
+ task_def.retry_count = 3
850
+ task_def.retry_logic = 'LINEAR_BACKOFF'
851
+ task_def.retry_delay_seconds = 1
852
+
853
+ # only allow 3 tasks at a time to be in the IN_PROGRESS status
854
+ task_def.concurrent_exec_limit = 3
855
+
856
+ # timeout the task if not polled within 60 seconds of scheduling
857
+ task_def.poll_timeout_seconds = 60
858
+
859
+ # timeout the task if the task does not COMPLETE in 2 minutes
860
+ task_def.timeout_seconds = 120
861
+
862
+ # for the long running tasks, timeout if the task does not get updated in COMPLETED or IN_PROGRESS status in
863
+ # 60 seconds after the last update
864
+ task_def.response_timeout_seconds = 60
865
+
866
+ # only allow 100 executions in a 10-second window! -- Note, this is complementary to concurrent_exec_limit
867
+ task_def.rate_limit_per_frequency = 100
868
+ task_def.rate_limit_frequency_in_seconds = 10
869
+
870
+ metadata_client.register_task_def(task_def=task_def)
871
+ ```
872
+
873
+
874
+ ```json
875
+ {
876
+ "name": "task_with_retries",
877
+
878
+ "retryCount": 3,
879
+ "retryLogic": "LINEAR_BACKOFF",
880
+ "retryDelaySeconds": 1,
881
+ "backoffScaleFactor": 1,
882
+
883
+ "timeoutSeconds": 120,
884
+ "responseTimeoutSeconds": 60,
885
+ "pollTimeoutSeconds": 60,
886
+ "timeoutPolicy": "TIME_OUT_WF",
887
+
888
+ "concurrentExecLimit": 3,
889
+
890
+ "rateLimitPerFrequency": 0,
891
+ "rateLimitFrequencyInSeconds": 1
892
+ }
893
+ ```
894
+
895
+ #### Update Task Definition:
896
+
897
+ ```shell
898
+ POST /api/metadata/taskdef -d @task_def.json
899
+ ```
900
+
901
+ See [task_configure.py](examples/task_configure.py) for a detailed working app.
902
+
903
+ ## Using Conductor in Your Application
904
+
905
+ Conductor SDKs are lightweight and can easily be added to your existing or new Python app. This section will dive deeper into integrating Conductor in your application.
906
+
907
+ ### Adding Conductor SDK to Your Application
908
+
909
+ Conductor Python SDKs are published on PyPi @ https://pypi.org/project/conductor-python/:
910
+
911
+ ```shell
912
+ pip3 install conductor-python
913
+ ```
914
+
915
+ ### Testing Workflows
916
+
917
+ Conductor SDK for Python provides a complete feature testing framework for your workflow-based applications. The framework works well with any testing framework you prefer without imposing any specific framework.
918
+
919
+ The Conductor server provides a test endpoint `POST /api/workflow/test` that allows you to post a workflow along with the test execution data to evaluate the workflow.
920
+
921
+ The goal of the test framework is as follows:
922
+
923
+ 1. Ability to test the various branches of the workflow.
924
+ 2. Confirm the workflow execution and tasks given a fixed set of inputs and outputs.
925
+ 3. Validate that the workflow completes or fails given specific inputs.
926
+
927
+ Here are example assertions from the test:
928
+
929
+ ```python
930
+
931
+ ...
932
+ test_request = WorkflowTestRequest(name=wf.name, version=wf.version,
933
+ task_ref_to_mock_output=task_ref_to_mock_output,
934
+ workflow_def=wf.to_workflow_def())
935
+ run = workflow_client.test_workflow(test_request=test_request)
936
+
937
+ print(f'completed the test run')
938
+ print(f'status: {run.status}')
939
+ self.assertEqual(run.status, 'COMPLETED')
940
+
941
+ ...
942
+
943
+ ```
944
+
945
+ > [!note]
946
+ > Workflow workers are your regular Python functions and can be tested with any available testing framework.
947
+
948
+ #### Example Unit Testing Application
949
+
950
+ See [test_workflows.py](examples/test_workflows.py) for a fully functional example of how to test a moderately complex workflow with branches.
951
+
952
+ ### Workflow Deployments Using CI/CD
953
+
954
+ > [!tip]
955
+ > Treat your workflow definitions just like your code. Suppose you are defining the workflows using UI. In that case, we recommend checking the JSON configuration into the version control and using your development workflow for CI/CD to promote the workflow definitions across various environments such as Dev, Test, and Prod.
956
+
957
+ Here is a recommended approach when defining workflows using JSON:
958
+
959
+ * Treat your workflow metadata as code.
960
+ * Check in the workflow and task definitions along with the application code.
961
+ * Use `POST /api/metadata/*` endpoints or MetadataClient (`from conductor.client.metadata_client import MetadataClient`) to register/update workflows as part of the deployment process.
962
+ * Version your workflows. If there is a significant change, change the version field of the workflow. See versioning workflows below for more details.
963
+
964
+
965
+ ### Versioning Workflows
966
+
967
+ A powerful feature of Conductor is the ability to version workflows. You should increment the version of the workflow when there is a significant change to the definition. You can run multiple versions of the workflow at the same time. When starting a new workflow execution, use the `version` field to specify which version to use. When omitted, the latest (highest-numbered) version is used.
968
+
969
+ * Versioning allows safely testing changes by doing canary testing in production or A/B testing across multiple versions before rolling out.
970
+ * A version can also be deleted, effectively allowing for "rollback" if required.
971
+
972
+
973
+ ## Development
974
+
975
+ ### Client Regeneration
976
+
977
+ When updating to a new Orkes version, you may need to regenerate the client code to support new APIs and features. The SDK provides comprehensive guides for regenerating both sync and async clients:
978
+
979
+ #### Sync Client Regeneration
980
+
981
+ For the synchronous client (`conductor.client`), see the [Client Regeneration Guide](src/conductor/client/CLIENT_REGENERATION_GUIDE.md) which covers:
982
+
983
+ - Creating swagger.json files for new Orkes versions
984
+ - Generating client code using Swagger Codegen
985
+ - Replacing models and API clients in the codegen folder
986
+ - Creating adapters and updating the proxy package
987
+ - Running backward compatibility, serialization, and integration tests
988
+
989
+ #### Async Client Regeneration
990
+
991
+ For the asynchronous client (`conductor.asyncio_client`), see the [Async Client Regeneration Guide](src/conductor/asyncio_client/ASYNC_CLIENT_REGENERATION_GUIDE.md) which covers:
992
+
993
+ - Creating swagger.json files for new Orkes versions
994
+ - Generating async client code using OpenAPI Generator
995
+ - Replacing models and API clients in the http folder
996
+ - Creating adapters for backward compatibility
997
+ - Running async-specific tests and handling breaking changes
998
+
999
+ Both guides include detailed troubleshooting sections, best practices, and step-by-step instructions to ensure a smooth regeneration process while maintaining backward compatibility.
1000
+