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